/******************************************************************
Theme Name: omni-int
Theme URI: davinciinc.co.jp
Author: DAVINCI inc.
Author URI: https://davinciinc.co.jp/
Version: 1.0
******************************************************************/

/* --------------------------------------------------
 common
--------------------------------------------------- */

/* font setting
--------------------------------------------------- */

@charset "UTF-8";

/* reset
--------------------------------------------------- */

*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul,ol,li{margin:0;padding:0;list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;border-radius:0;font:inherit;outline: none}textarea{resize:vertical}input[type='checkbox'],input[type='radio']{display:none}input[type='submit'],input[type='button'],label,button,select{cursor:pointer}select::-ms-expand{display:none}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

/* root setting
--------------------------------------------------- */

:root {
    --font-jp: '游ゴシック体', 'YuGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
    --font-min: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    --font-en: 'Montserrat', sans-serif;
    --fs: clamp(0.88rem, 0.614rem + 0.68vw, 1.125rem);
    --fs-head: calc(var(--fs) * 1.8);
    
    --color-bk: #262626;
    --color-dgy: #484848;
    --color-gy: #9e9e9e;
    --color-lgy: #e2e2e2;
    --color-wgy: #f9f9f9;
    --color-wh: #fff;
    
    --color-nv: #110338;
    --color-ngy: #53575b;
}
@media screen and (min-width: 768px) {
    :root {
        --fs-head: calc(var(--fs) * 1.9);
    }
}
@media screen and (min-width: 1024px) {
    :root {
        --fs-head: calc(var(--fs) * 2);
    }
}

/* layout
--------------------------------------------------- */

html {
    height: 100%;
    font-size: 97%;
}
@media screen and (max-width: 374px) {
    html {
        font-size: 92%;
    }
}
@media screen and (min-width: 768px) {
    html {
        font-size: 100%;
    }
}
@media screen and (min-width: 1024px) {
    html {
        font-size: 90%;
    }
}
@media screen and (min-width: 1280px) {
    html {
        font-size: 90%;
    }
}
body {
    height: 100%;
    font-family: var(--font-jp);
    font-weight: 500;
    font-size: var(--fs);
    line-height: 1.8;
    text-align: justify;
    color: var(--color-bk);
    background: var(--color-wh);
    overflow-y: scroll;
}
body::after {
    z-index: 9999;
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-nv);
    pointer-events: none;
    animation-name: fadeOut;
    animation-delay: 0;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}
body.viewtrans::after {
    animation-name: fadeIn;
    animation-delay: 0;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
a {
    display: block;
    color: var(--color-dgy);
    text-decoration: none;
    cursor: pointer;
}
img,
svg {
    width: 100%;
    height: auto;
}
#wrapper {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    margin: auto;
}
.mask {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.mask .mask-inner {
    width: inherit;
    height: inherit;
    opacity: 0;
}
.mask .mask-inner.inview {
    position: relative;
    animation-name: maskIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
    opacity: 1 !important;
}
.mask .mask-inner.inview:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-nv);
    animation-name: maskOut;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}

@keyframes maskIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes maskOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(101%);
    }
}
.fade {
    opacity: 0;
    transform: translate(0, 5px);
}
.fade.inview {
    position: relative;
    animation-name: fadeIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
    opacity: 0;
    transform: translate(0, 5px);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(0, 5px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}
@media screen and (max-width: 767px) {
    br.is-pc {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    br.is-sp {
        display: none;
    }
}

/* --------------------------------------------------
 header
--------------------------------------------------- */

.header {
    z-index: 94;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: .3s;
}
.header::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: -64px;
    left: 0;
    width: 100%;
    height: 64px;
    background: var(--color-nv);
    transition: .3s;
}
.header.scroll::before {
    top: 0;
}
.contents-header {
    background: var(--color-nv);
}
.header-inner {
    z-index: 95;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    align-items: center;
}
.header-inner .logo {
    z-index: 96;
    display: flex;
    position: relative;
    width: 174px;
    height: 64px;
    line-height: 64px;
    overflow: hidden;
    align-items: center;
}
.header-inner .logo .img {
    display: block;
    width: auto;
    height: 64px;
    overflow: hidden;
}
.header-inner .logo .img a {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 19px 20px 17px;
    align-items: center;
}
.menu-btn {
    z-index: 99;
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    cursor: pointer;
}
.menu-btn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-wh);
    transform: translate(-50%, -50%);
}
.menu-btn span:nth-of-type(1) {
    margin-top: -5px;
}
.menu-btn span:nth-of-type(3) {
    margin-top: 5px;
}
.g-navi-wrap {
    z-index: 999!important;
    display: block;
    position: fixed!important;
    top: 0!important;
    right: 0!important;
    width: 100vw!important;
    height: 100vh!important;
    padding-bottom: 60px;
    background: var(--color-nv);
    will-change: animation;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity;
    transition: .2s;
}
.g-navi-wrap::-webkit-scrollbar {
    display: none;
}
.g-navi-wrap.open {
    opacity: 1;
    visibility: visible;
    pointer-events: painted;
}
.menu-close {
    z-index: 101;
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    background: var(--color-wh);
}
.menu-close span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35px;
    height: 1px;
    background: var(--color-nv);
}
.menu-close span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(-30deg);
}
.menu-close span:nth-of-type(2) {
    transform: translate(-50%, -50%) rotate(30deg);
}
.g-navi {
    position: relative;
    width: 100%;
    padding-top: 90px;
}
.g-navi-list {
    position: relative;
    width: 100%;
}
.g-navi-list ul {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
}
.g-navi-list ul li {
    width: 100%;
    border-bottom: 1px solid var(--color-dgy);
}
.g-navi-list ul li a {
    position: relative;
    height: 40px;
    line-height: 40px;
    padding: 0 20px 0 30px;
    letter-spacing: .05em;
    font-family: var(--font-en);
    font-size: calc(var(--fs) * 1.1);
    color: var(--color-wh);
}
.g-navi-list ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 23px;
    width: 6px;
    height: 6px;
    border-color: var(--color-wh);
    border-top: 1px solid;
    border-right: 1px solid;
    transform: translate(0, -50%) rotate(45deg);
}
.g-navi-list ul li.is-blank a::after {
    width: 20px;
    height: 20px;
    background-image: url('assets/images/icon-outlink-wh.svg');
    background-size: 16px 16px;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0;
    transform: translate(8px, -50%);
}
.g-logo {
    width: 160px;
    height: auto;
    margin: auto;
    padding: 70px 10px 10px;
}
@media screen and (min-width: 768px) {
    .header::before {
        top: -90px;
        height: 90px;
    }
    .header-inner .logo {
        width: 252px;
        height: 90px;
        line-height: 90px;
    }
    .header-inner .logo .img {
        height: 90px;
    }
    .header-inner .logo .img a {
        padding: 29px 30px 21px;
    }
    .menu-btn {
        width: 90px;
        height: 90px;
    }
    .menu-btn span {
        width: 46px;
        height: 1px;
    }
    .menu-btn span:nth-of-type(1) {
        margin-top: -7px;
    }
    .menu-btn span:nth-of-type(3) {
        margin-top: 7px;
    }
    .g-navi-wrap {
        padding-bottom: 90px;
    }
    .menu-close {
        width: 90px;
        height: 90px;
    }
    .menu-close span {
        width: 40px;
    }
    .g-navi {
        padding-top: 110px;
    }
    .g-navi-list ul {
        padding-top: 45px;
    }
    .g-navi-list ul li a {
        height: 52px;
        line-height: 52px;
        padding: 0 30px 0 60px;
        font-size: calc(var(--fs) * 1);
    }
    .g-navi-list ul li a::after {
        right: 50px;
        width: 7px;
        height: 7px;
    }
    .g-logo {
        width: 136px;
        padding: 80px 20px 10px;
    }
}
@media screen and (min-width: 1024px) {
    .header::before {
        top: -80px;
        height: 80px;
    }
    .header-inner .logo {
        width: 204px;
        height: 80px;
        line-height: 80px;
    }
    .header-inner .logo .img {
        height: 80px;
    }
    .header-inner .logo .img a {
        padding: 27px 30px 23px;
    }
    .menu-btn {
        width: 90px;
        height: 80px;
    }
    .menu-btn span {
        width: 36px;
        height: 1px;
    }
    .menu-btn span:nth-of-type(1) {
        margin-top: -7px;
    }
    .menu-btn span:nth-of-type(3) {
        margin-top: 7px;
    }
    .menu-close {
        width: 90px;
        height: 80px;
    }
    .menu-close span {
        width: 40px;
    }
    .g-navi-list {
        display: flex;
        flex-wrap: wrap;
        padding: 160px 35px 0;
    }
    .g-navi-list {
        width: 33.3333%;
        padding: 25px;
    }
    .g-navi-list ul li a {
        height: 46px;
        line-height: 46px;
        padding: 0 20px 0 5px;
        font-size: calc(var(--fs) * 0.9);
    }
    .g-navi-list ul li a::after {
        right: 10px;
    }
    .g-logo {
        width: 136px;
        padding: 40px 20px 0;
    }
}
@media screen and (min-width: 1280px) {
    .menu-btn {
        display: none;
    }
    .menu-close {
        display: none;
    }
    .g-navi-wrap {
        display: flex;
        align-items: center;
        position: relative!important;
        top: auto!important;
        right: auto!important;
        width: auto!important;
        height: 100%!important;
        margin-left: auto;
        padding: 0!important;
        background: none;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: painted;
        transition: .2s;
    }
    .g-navi {
        padding: 0;
    }
    .g-navi-list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: auto;
        height: 100%;
        padding: 0;
    }
    .g-navi-list ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: auto;
        padding: 0 50px;
    }
    .g-navi-list ul li {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: auto;
        padding: 0;
        border: 0;
    }
    .g-navi-list ul li a {
        height: auto;
        line-height: normal;
        padding: 12px 10px 8px;
        font-size: calc(var(--fs) * 0.9);
    }
    .g-navi-list ul li a::after {
        display: none;
    }
    .g-logo {
        display: none;
    }
}
@media screen and (min-width: 1600px) {
    .header-inner {
        max-width: 1800px;
        margin: auto;
    }
}

.contents {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* --------------------------------------------------
 front page
--------------------------------------------------- */

/**
 * Swiper 7.0.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 4, 2021
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}

/* --------------------------------------------------
 visual
--------------------------------------------------- */

.visual {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--color-bk);
}

.visual .inner {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
}

/* slider
--------------------------------------------------- */

.mv-slider {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #222;
    overflow: hidden;
}
.mv-slider .swiper-container {
    z-index: 3;
    position: relative;
    width: 100%!important;
    height: 100%!important;
}
.mv-slider .slider-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mv-slider .slider-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    overflow: hidden;
}
.visual .text {
    z-index: 7;
    position: absolute;
    top: calc(50% + 20px);
    left: 50%;
    width: 100%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    text-align: center;
}
.visual .text h2 {
    position: relative;
    padding: 0 30px 10px;
}
.visual .text h2 .catch-anim {
    fill: none;
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: DASH 3s ease-in 2.5s forwards;
    -webkit-animation: DASH 3s ease-in 2.5s forwards;
}

@keyframes DASH {
	0%  { stroke-dashoffset: 3000; fill: rgba(255, 255, 255, 0);}
	50% { stroke-dashoffset: 2000; fill: rgba(255, 255, 255, 0);}
	80% { stroke-dashoffset: 1000; fill: rgba(255, 255, 255, 0);}
	90% { stroke-dashoffset: 0; fill: rgba(255, 255, 255, 0);}
	100%{ stroke-dashoffset: 0; fill: rgba(255, 255, 255, 1);}
}
@-webkit-keyframes DASH {
	0%  { stroke-dashoffset: 3000; fill: rgba(255, 255, 255, 0);}
	50% { stroke-dashoffset: 2000; fill: rgba(255, 255, 255, 0);}
	80% { stroke-dashoffset: 1000; fill: rgba(255, 255, 255, 0);}
	90% { stroke-dashoffset: 0; fill: rgba(255, 255, 255, 0);}
	100%{ stroke-dashoffset: 0; fill: rgba(255, 255, 255, 1);}
}

.visual .text p {
    font-family: var(--font-en);
    font-size: calc(var(--fs)*1.05);
    font-weight: 700;
    color: var(--color-wh);
}

.visual .mvslide-pagination {
    z-index: 9;
    display: block;
    position: absolute;
    top: inherit;
    left: inherit;
    right: 35px;
    bottom: 50px;
    width: 22px;
    margin: 0;
    padding: 0;
    color: var(--color-wh);
    transform: translate(0, 0);
}
.visual .mvslide-pagination span {
    display: block;
    text-align: center;
}
.visual .mvslide-pagination span.line {
    width: 100%;
    height: 1px;
    background: var(--color-wh);
}
.visual .mvslide-btn {
    z-index: 10;
    display: flex;
    position: absolute;
    top: inherit;
    left: inherit;
    right: 15px;
    bottom: 20px;
    width: 60px;
    height: 30px;
    margin: 0;
    padding: 0;
    transform: translate(0, 0);
}
.visual .mvslide-btn .mvslide-button-prev,
.visual .mvslide-btn .mvslide-button-next {
    position: relative;
    width: 30px;
    height: 30px;
}
.visual .mvslide-btn .mvslide-button-prev::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 10px;
    background: var(--color-wh);
    transform: translate(0, -50%);
}
.visual .mvslide-btn .mvslide-button-prev::before,
.visual .mvslide-btn .mvslide-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--color-wh);
}
.visual .mvslide-btn .mvslide-button-prev::before {
    border-left: 1px solid var(--color-wh);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.visual .mvslide-btn .mvslide-button-next::before {
    border-right: 1px solid var(--color-wh);
    transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
    .visual .text h2 {
        width: 600px;
        margin: auto;
        padding: 0 30px 15px;
    }
    .visual .text p {
        padding: 12px 30px 0;
        font-size: calc(var(--fs) * 1.4);
    }
    .visual .mvslide-pagination {
        right: 50px;
        bottom: 80px;
        width: 22px;
    }
    .visual .mvslide-btn {
        right: 25px;
        bottom: 50px;
        width: 70px;
        height: 30px;
    }
    .visual .mvslide-btn .mvslide-button-prev,
    .visual .mvslide-btn .mvslide-button-next {
        width: 35px;
        height: 35px;
    }
    .visual .mvslide-btn .mvslide-button-prev::after {
        height: 13px;
    }
    .visual .mvslide-btn .mvslide-button-prev::before,
    .visual .mvslide-btn .mvslide-button-next::before {
        width: 8px;
        height: 8px;
    }
}
@media screen and (min-width: 1024px) {
    
}
@media screen and (min-width: 1280px) {
    .visual .text h2 {
        width: 900px;
    }
}

/* --------------------------------------------------
 top mission
--------------------------------------------------- */

.top-mission {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.top-mission::before {
    z-index: 2;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--color-nv);
}
.top-mission .inner {
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}
.top-mission .inner .image {
    z-index: 4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    padding: 30px 60px 0 0;
}
.top-mission .inner .image .mask,
.top-mission .inner .image .mask-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.top-mission .inner .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-mission .inner .text {
    z-index: 5;
    position: relative;
    width: 100%;
    padding: 230px 0 0 40px;
}
.top-mission .inner .text-inner {
    padding: 30px;
    background: var(--color-wh);
}
.top-mission .inner .text h2 {
    padding-bottom: 15px;
    font-size: calc(var(--fs) * 1.2);
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--color-nv);
}
.top-mission .inner .text h2 span {
    color: var(--color-nv);
}
.top-mission .inner .text p {
    font-size: calc(var(--fs) * 0.95);
    font-weight: 400;
    line-height: 2;
}
@media screen and (min-width: 768px) {
    .top-mission .inner .image {
        height: 450px;
        padding: 60px 80px 0 0;
    }
    .top-mission .inner .text {
        padding: 380px 0 0 100px;
    }
    .top-mission .inner .text-inner {
        padding: 40px 60px;
    }
    .top-mission .inner .text h2 {
        padding-bottom: 20px;
        font-size: calc(var(--fs) * 1.3);
    }
    .top-mission .inner .text p {
        font-size: calc(var(--fs) * 1.05);
    }
}
@media screen and (min-width: 1024px) {
    .top-mission .inner .image {
        width: 660px;
        height: 450px;
        padding: 60px 60px 0 60px;
    }
    .top-mission .inner .text {
        padding: 300px 0 0 calc(100% - 600px);
    }
    .top-mission .inner .text p {
        font-size: calc(var(--fs) * 1);
    }
}
@media screen and (min-width: 1280px) {
    .top-mission .inner {
        max-width: 1600px;
        margin: auto;
        padding: 0 60px;
    }
    .top-mission::before {
        height: 150px;
    }
    .top-mission .inner .image {
        width: 50%;
        height: 450px;
        padding: 60px 60px 0 60px;
    }
    .top-mission .inner .text {
        padding: 240px 0 0 50%;
    }
    .top-mission .inner .text p {
        font-size: calc(var(--fs) * 1);
    }
}

/* --------------------------------------------------
 top services
--------------------------------------------------- */

.top-service {
    z-index: 1;
    position: relative;
    width: 100%;
}
.top-service::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    background: var(--color-nv);
}
.top-service .inner {
    z-index: 3;
    position: relative;
    width: 100%;
}
.top-service .inner h2 {
    padding: 60px 30px 20px;
    font-family: var(--font-en);
    font-weight: 700;
    text-align: center;
    color: var(--color-wh);
    letter-spacing: .2em;
    text-indent: -.2em;
}
.top-service .inner ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 15px;
}
.top-service .inner ul li {
    width: 100%;
    padding: 15px 30px;
}
.top-service .inner ul li .image {
    z-index: 4;
    position: relative;
    width: 100%;
    height: 200px;
}
.top-service .inner ul li .image .mask,
.top-service .inner ul li .image .mask-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.top-service .inner ul li .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-service .inner ul li .text {
    padding: 15px 0 0;
}
.top-service .inner ul li .text h3 {
    display: flex;
    align-items: center;
    font-size: calc(var(--fs)*1.2);
    font-weight: 700;
    letter-spacing: .1em;
}
.top-service .inner ul li .text h3 span {
    padding-left: 10px;
    font-family: var(--font-en);
    font-size: calc(var(--fs)*0.9);
    font-weight: 500;
    letter-spacing: normal;
    color: var(--color-gy);
}
@media screen and (min-width: 768px) {
    .top-service::before {
        height: 360px;
    }
    .top-service .inner h2 {
        padding: 120px 60px 40px;
        font-size: calc(var(--fs)*1.6);
    }
    .top-service .inner ul {
        padding: 0 15px 15px;
    }
    .top-service .inner ul li {
        width: 33.3333%;
        padding: 15px 15px;
    }
    .top-service .inner ul li .image {
        height: 230px;
    }
    .top-service .inner ul li .text {
        padding: 15px 0 0;
    }
    .top-service .inner ul li .text h3 {
        padding-bottom: 8px;
        font-size: calc(var(--fs)*1.2);
    }
    .top-service .inner ul li .text h3 span {
        padding-left: 15px;
        font-size: calc(var(--fs)*0.9);
    }
    .top-service .inner ul li .text p {
        font-size: calc(var(--fs)*0.9);
        line-height: 1.5;
    }
}
@media screen and (min-width: 1024px) {
    .top-service .inner ul {
        padding: 0 40px 15px;
    }
    .top-service .inner ul li {
        width: 33.3333%;
        padding: 15px 20px;
    }
    .top-service .inner ul li .text {
        padding: 20px;
        background: var(--color-nv);
        color: var(--color-wh);
    }
    .top-service .inner ul li .text h3 {
        padding-bottom: 8px;
        font-size: calc(var(--fs)*1.1);
    }
    .top-service .inner ul li .text h3 span {
        padding-left: 15px;
        font-size: calc(var(--fs)*0.9);
    }
    .top-service .inner ul li .text p {
        font-size: calc(var(--fs)*0.9);
        line-height: 1.5;
    }
}
@media screen and (min-width: 1280px) {
    .top-service .inner ul {
        max-width: 1600px;
        margin: auto;
        padding: 0 60px 30px;
    }
    .top-service .inner ul li {
        z-index: 1;
        position: relative;
        width: 33.3333%;
        padding: 0;
    }
    .top-service .inner ul li .image {
        z-index: 2;
        position: relative;
        height: 400px;
    }
    .top-service .inner ul li .text {
        z-index: 3;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60%;
        padding: 20px;
        background: var(--color-nv);
        color: var(--color-wh);
    }
    .top-service .inner ul li .text h3 {
        padding-bottom: 8px;
        font-size: calc(var(--fs)*1.1);
    }
    .top-service .inner ul li .text h3 span {
        padding-left: 15px;
        font-size: calc(var(--fs)*0.9);
    }
    .top-service .inner ul li .text p {
        font-size: calc(var(--fs)*0.9);
        line-height: 1.5;
    }
}

/* --------------------------------------------------
 top eventitems
--------------------------------------------------- */

.top-eventitems {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.top-eventitems .inner {
    z-index: 3;
    position: relative;
    padding: 10px 30px 0;
}
.top-eventitems .inner a {
    z-index: 1;
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--color-wgy);
    font-family: var(--font-en);
    font-size: calc(var(--fs)*1.1);
    font-weight: 500;
    text-align: center;
}
.top-eventitems .inner a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-eventitems .inner a span.title {
    z-index: 2;
    display: block;
    position: absolute;
    padding-left: 30px;
    bottom: 20px;
    right: 20px;
    line-height: 1;
    font-family: var(--font-en);
    font-size: calc(var(--fs)*1.2);
    color: var(--color-wh);
}
.top-eventitems .inner a span.title::before,
.top-eventitems .inner a span.title::after {
    z-index: 3;
    content: "";
    position: absolute;
    top: 50%;
}
.top-eventitems .inner a span.title::before {
    left: 6px;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--color-wh);
    border-right: 1px solid var(--color-wh);
    transform: translate(0, -50%) rotate(45deg);
}
.top-eventitems .inner a span.title::after {
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-wh);
    border-radius: 100%;
    transform: translate(0, -50%);
}

@media screen and (min-width: 1024px) {
    .top-eventitems .inner {
        padding: 25px 60px 0;
    }
    .top-eventitems .inner a {
        height: 280px;
        line-height: 280px;
    }
    .top-eventitems .inner a span.title {
        padding-left: 45px;
        bottom: 40px;
        right: 40px;
        font-size: calc(var(--fs)*1.4);
    }
    .top-eventitems .inner a span.title::before {
        left: 9px;
        width: 7px;
        height: 7px;
    }
    .top-eventitems .inner a span.title::after {
        left: 0;
        width: 30px;
        height: 30px;
    }
}
@media screen and (min-width: 1280px) {
    .top-eventitems .inner {
        max-width: 1600px;
        margin: auto;
        padding: 40px 60px 0;
    }
    .top-eventitems .inner a {
        height: 330px;
        line-height: 330px;
    }
}

/* --------------------------------------------------
 top gallery
--------------------------------------------------- */

.top-gallery {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.top-gallery .inner {
    z-index: 3;
    position: relative;
}
.top-gallery .inner h2 {
    padding: 60px 30px 20px;
    font-family: var(--font-en);
    font-weight: 700;
    text-align: center;
    color: var(--color-nv);
    letter-spacing: .2em;
    text-indent: -.2em;
}
.gallery-slider {
    z-index: 4;
    position: relative;
    width: 100%;
    height: 100%;
}
.gallery-slider .swiper-container {
    z-index: 3;
    position: relative;
    width: 100%!important;
    height: 100%!important;
    padding: 0 50px;
}
.gallery-slider .swiper-wrapper {
    transition-timing-function: linear;
}
.gallery-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 160px;
    padding: 0;
    overflow: hidden;
}
.gallery-slider .slider-image {
    width: 100%;
    height: 100%;
}
.gallery-slider .slider-image .image {
    z-index: 2;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.gallery-slider .slider-image .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    overflow: hidden;
}
.top-gallery .inner .link {
    padding: 30px 30px 50px;
}
.top-gallery .inner .link a {
    display: block;
    position: relative;
    padding: 15px;
    font-family: var(--font-en);
    font-weight: 700;
    text-align: center;
    color: var(--color-wh);
    transition: .3s;
    border: 2px solid var(--color-nv);
}
.top-gallery .inner .link a::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--color-nv);
    transition: .3s;
}
.top-gallery .inner .link a:hover {
    color: var(--color-nv);
}
.top-gallery .inner .link a:hover::before {
    width: 0;
}

@media screen and (min-width: 768px) {
    .top-gallery .inner h2 {
        padding: 80px 30px 20px;
        font-size: calc(var(--fs)*1.6);
    }
    .gallery-slider .swiper-slide {
        height: 220px;
    }
    .top-gallery .inner .link {
        padding: 50px 60px 70px;
    }
    .top-gallery .inner .link a {
        padding: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .top-gallery .inner .link {
        max-width: 600px;
        margin: auto;
        padding: 50px 60px 70px;
    }
}
@media screen and (min-width: 1280px) {
    .top-gallery .inner h2 {
        padding: 100px 30px 40px;
        font-size: calc(var(--fs)*1.6);
    }
    .gallery-slider .swiper-slide {
        height: 300px;
    }
    .top-gallery .inner .link {
        padding: 60px 60px 120px;
    }
}

/* --------------------------------------------------
 page common
--------------------------------------------------- */

.page-contents {
    padding-top: 64px;
}

.page-title {
    padding-top: 50px;
}
.page-title .text {
    z-index: 1;
    position: relative;
    width: 100%;
    padding: 25px 30px 30px;
}
.page-title .text h1 span {
    display: block;
    line-height: 1.7;
}
.page-title .text h1 span.en {
    font-size: calc(var(--fs) * 1.5);
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: .05em;
}
.page-title .text h1 span.jp {
    font-size: calc(var(--fs) * 0.9);
    font-weight: 700;
    letter-spacing: .1em;
}
.section-title span {
    display: block;
}
.section-title span.en {
    color: var(--color-nv);
    font-size: calc(var(--fs) * 1.2);
    font-family: var(--font-en);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .05em;
}
.section-title span.jp {
    font-size: calc(var(--fs) * 0.9);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
    .page-title {
        padding-top: 80px;
    }
    .page-title .text {
        padding: 50px 60px 40px;
    }
    .page-title .text h1 {
        display: flex;
        align-items: center;
    }
    .page-title .text h1 span.en {
        font-size: calc(var(--fs) * 1.5);
        margin-right: 1em;
    }
}
@media screen and (min-width: 1280px) {
    .page-title {
        padding: 100px 0 0;
    }
    .page-title .text {
        max-width: 1600px;
        margin: auto;
        padding: 70px 100px 40px;
    }
    .page-title .text h1 span.en {
        font-size: calc(var(--fs) * 1.7);
    }
}


.page-title .text p {
    padding-top: 15px;
    font-size: calc(var(--fs) * 1.2);
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--color-nv);
}
@media screen and (min-width: 768px) {
    .page-title .text p {
        font-size: calc(var(--fs) * 1.3);
    }
}

/* --------------------------------------------------
 page services
--------------------------------------------------- */

.service {
    z-index: 1;
    position: relative;
    width: 100%;
}
.service .inner {
    z-index: 2;
    position: relative;
    width: 100%;
}
.service .inner .block {
    z-index: 3;
    position: relative;
    width: 100%;
    padding: 50px 30px;
}
.service .inner .block:nth-child(1) {
    padding-top: 20px;
}
.service .inner .block:nth-child(2n+2) {
    background: var(--color-lgy);
}
.service .inner .block .service-title {
    padding-bottom: 20px;
}
.service .inner .block .service-title span {
    display: block;
    line-height: 1.5;
    text-align: center;
}
.service .inner .block .service-title span.jp {
    font-family: var(--font-jp);
    font-size: calc(var(--fs)*1.2);
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--color-nv);
}
.service-pc {
    display: none;
}
.service .inner .block .service-mv {
    width: 100%;
    height: 250px;
}
.service .inner .block .service-mv .mask,
.service .inner .block .service-mv .mask-inner {
    width: 100%;
    height: 100%;
}
.service .inner .block .service-mv img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service .inner .block .service-sub .text {
    padding: 20px 0;
    font-size: calc(var(--fs)*0.95);
}
.service .inner .block .service-sub .image ul {
    display: flex;
    flex-wrap: nowrap;
}
.service .inner .block .service-sub .image ul li {
    width: 50%;
    height: 160px;
}
.service .inner .block .service-sub .image ul li .mask,
.service .inner .block .service-sub .image ul li .mask-inner {
    width: 100%;
    height: 100%;
}
.service .inner .block .service-sub .image ul li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
    .service .inner .block {
        padding: 60px 60px 70px;
    }
    .service .inner .block .service-mv {
        height: 350px;
    }
    .service .inner .block .service-sub .text {
        padding: 30px 0;
    }
    .service .inner .block .service-sub .image ul li {
        height: 220px;
    }
}
@media screen and (min-width: 1024px) {
    .service .inner .block .desc {
        display: flex;
        flex-wrap: wrap;
        max-width: 1400px;
        margin: auto;
        padding-top: 30px;
    }
    .service .inner .block:nth-child(2n+2) .desc {
        flex-direction: row-reverse;
    }
    .service .inner .block .desc .service-mv {
        width: 50%;
        height: auto;
        padding-right: 40px;
    }
    .service .inner .block:nth-child(2n+2) .desc .service-mv {
        padding-right: 0;
        padding-left: 40px;
    }
    .service .inner .block .desc .service-sub {
        width: 50%;
    }
    .service .inner .block .service-sub .text {
        padding: 0 0 30px;
        font-size: calc(var(--fs)*1);
    }
}
@media screen and (min-width: 1280px) {
    .service-sp {
        display: none;
    }
    .service-pc {
        display: block;
    }
    .service .inner .block .service-pc {
        display: flex;
        align-items: center;
        padding-bottom: 40px;
    }
    .service .inner .block .service-pc span {
        text-align: left;
    }
    .service .inner .block .service-pc span.jp {
        font-size: calc(var(--fs)*1.4);
    }
    
    .service .inner .block {
        padding: 80px 100px;
    }
    .service .inner .block:nth-child(1) {
        padding-top: 20px;
    }
    .service .inner .block .desc {
        padding-top: 0;
        align-items: flex-end;
    }
    .service .inner .block .desc .service-mv {
        width: 55%;
        height: 500px;
        padding-right: 80px;
    }
    .service .inner .block:nth-child(2n+2) .desc .service-mv {
        padding-right: 0;
        padding-left: 80px;
    }
    .service .inner .block .desc .service-sub {
        display: flex;
        flex-wrap: wrap;
        width: 45%;
    }
    .service .inner .block .service-sub .text {
        padding: 0 0 20px;
        font-size: calc(var(--fs)*1);
    }
}

/* --------------------------------------------------
 page eventitems
--------------------------------------------------- */

.eventitems {
    z-index: 1;
    position: relative;
    width: 100%;
}
.eventitems .ei-main {
    z-index: 2;
    position: relative;
    width: 100%;
}
.eventitems .ei-main .inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.eventitems .image {
    width: 100%;
}
.eventitems .image .mask,
.eventitems .image .mask-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.eventitems .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eventitems .ei-main .inner .image {
    height: 250px;
}
.eventitems .ei-main .inner .text {
    padding: 30px;
}
.eventitems .ei-main .inner .text .head {
    padding-bottom: 15px;
}
.eventitems .ei-main .inner .text .head h2 {
    display: block;
    font-family: var(--font-jp);
    font-size: calc(var(--fs)*1.2);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .1em;
    color: var(--color-nv);
}

.eventitems .ei-main .inner .text p {
    line-height: 1.7;
}
.eventitems .ei-main .inner .text table {
    width: 100%;
    margin: 20px 0;
    border-top: 1px solid var(--color-lgy);
    border-left: 1px solid var(--color-lgy);
}
.eventitems .ei-main .inner .text table tr td {
    padding: 8px;
    border-bottom: 1px solid var(--color-lgy);
    border-right: 1px solid var(--color-lgy);
}

.eventitems .ei-menu {
    z-index: 2;
    position: relative;
    width: 100%;
}
.eventitems .ei-menu .inner {
    width: 100%;
}
.eventitems .ei-menu .inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    width: 100%;
    padding: 0 30px 30px;
}
.eventitems .ei-menu .inner ul li {
    width: calc(33.3333% - calc(1px * 2 / 3));
}
.eventitems .ei-menu .inner ul li a {
    position: relative;
    padding: 15px 15px 30px;
    background: var(--color-lgy);
}
.eventitems .ei-menu .inner ul li a::before {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid var(--color-bk);
    border-right: 1px solid var(--color-bk);
    transform: translate(-50%, 0) rotate(45deg);
}
.eventitems .ei-menu .inner ul li a img {
    display: block;
    width: 80%;
    margin: auto;
}
.eventitems .ei-menu .inner ul li a span {
    display: block;
    text-align: center;
    font-family: var(--font-en);
}
.eventitems .ei-block {
    margin-top: -64px;
    padding-top: 64px;
}
.eventitems .ei-block .head {
    width: 100%;
    padding: 30px 0 20px;
}
.eventitems .ei-block .head h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    font-family: var(--font-en);
    font-size: calc(var(--fs)*1.2);
    font-weight: 500;
    border-top: 1px solid var(--color-gy);
    border-bottom: 1px solid var(--color-gy);
}
.eventitems .ei-block .head h2 span {
    margin-left: 15px;
    font-family: var(--font-jp);
    font-size: calc(var(--fs)*0.9);
}
.eventitems .ei-block-1 .image {
    height: 250px;
}
.eventitems .ei-block-1 .text {
    padding: 20px 30px;
}
.eventitems .ei-block-1 .ei-block-table {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 30px;
    font-size: calc(var(--fs)*0.9);
    text-align: center;
}
.eventitems .ei-block-1 .ei-block-table .pc-table {
    display: none;
}
.eventitems .ei-block-1 .ei-block-table .sp-table {
    width: 100%;
    border-top: 1px solid var(--color-lgy);
    border-left: 1px solid var(--color-lgy);
}
.eventitems .ei-block-1 .ei-block-table .sp-table tr td {
    padding: 5px;
    line-height: 1.6;
    border-bottom: 1px solid var(--color-lgy);
    border-right: 1px solid var(--color-lgy);
}
.eventitems .ei-block-1 .ei-block-table tr:nth-child(1) td {
    background: var(--color-wgy);
}
.eventitems .ei-block-1 .ei-block-table .sp-table tr td:nth-child(1) {
    width: 90px;
    background: var(--color-wgy);
}
.eventitems .ei-block-1 .ei-block-table .pc-table tr td:nth-child(1) {
    background: var(--color-wgy);
}
.eventitems .ei-block-1 .sub-text {
    padding: 20px 30px;
}
.eventitems .ei-block-1 .sub-image {
    padding: 0 30px 30px;
}
.eventitems .ei-block-1 .sub-image .sub-l-image {
    width: 100%;
    height: 220px;
    padding-bottom: 1px;
}
.eventitems .ei-block-1 .sub-image .sub-s-image ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
}
.eventitems .ei-block-1 .sub-image .sub-s-image ul li {
    width: calc(33.3333% - (1px * 2 / 3));
    height: 100px;
}

.eventitems .ei-block-1 .sub-image .sub-l-image .mask,
.eventitems .ei-block-1 .sub-image .sub-l-image .mask-inner,
.eventitems .ei-block-1 .sub-image .sub-s-image .mask,
.eventitems .ei-block-1 .sub-image .sub-s-image .mask-inner {
    width: 100%;
    height: 100%;
}
.eventitems .ei-block-1 .sub-image .sub-l-image img,
.eventitems .ei-block-1 .sub-image .sub-s-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eventitems .ei-block-2 .image {
    height: 250px;
}
.eventitems .ei-block-2 .text {
    padding: 20px 30px;
}
.ei-block-table-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 30px;
}
.ei-block-table-2 p {
    width: 100%;
    padding-top: 20px;
    text-align: right;
    font-size: calc(var(--fs)*0.9);
}
.ei-block-table-2 .ei-block-item {
    width: 100%;
    border-top: 1px solid var(--color-lgy);
    border-left: 1px solid var(--color-lgy);
}
.ei-block-table-2 .ei-block-item .ei-item-fl {
    padding: 8px;
    border-bottom: 1px solid var(--color-lgy);
    border-right: 1px solid var(--color-lgy);
    text-align: center;
}
.ei-block-table-2 .ei-block-item .ei-item-name {
    background: var(--color-wgy);
}
.ei-block-table-2 .ei-block-item .ei-item-size table {
    width: 100%;
    border-top: 1px solid var(--color-gy);
    border-left: 1px solid var(--color-gy);
}
.ei-block-table-2 .ei-block-item .ei-item-size table tr td {
    width: 20%;
    padding: 8px;
    border-bottom: 1px solid var(--color-gy);
    border-right: 1px solid var(--color-gy);
    font-size: calc(var(--fs) * 0.9);
    line-height: 1;
    text-align: center;
}
.ei-block-table-2 .ei-block-item .ei-item-size table thead tr td {
    background: var(--color-nv);
    color: var(--color-wh);
}
.ei-block-table-2 .ei-block-item .ei-item-size table tbody tr td {
    font-family: var(--font-en);
}
.eventitems .ei-block-3 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 0 0 40px;
}
.eventitems .ei-block-3 ul li {
    width: 100%;
}
.eventitems .ei-block-3 .image {
    height: 220px;
}
.eventitems .ei-block-3 .text {
    padding: 15px 30px 0;
}
.eventitems .ei-block-3 .text h3 {
    font-size: calc(var(--fs)*1.1);
    font-weight: 700;
    letter-spacing: .05em;
}
.eventitems .ei-block-3 .text p {
    line-height: 1.6;
}
.eventitems .ei-foot {
    padding: 30px 30px 40px;
    border-top: 1px solid var(--color-lgy);
    text-align: center;
}
.eventitems .ei-foot .btn {
    padding-top: 15px;
}
.eventitems .ei-foot .btn a {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: auto;
    padding: 15px;
    font-family: var(--font-en);
    font-size: calc(var(--fs)*1.1);
    font-weight: 700;
    text-align: center;
    line-height: 1;
    background: var(--color-nv);
    color: var(--color-wh);
    border-radius: 4px;
    transition: .3s;
}
.eventitems .ei-foot .btn a:hover {
    opacity: 0.8;
}

@media screen and (min-width: 768px) {
    .eventitems .ei-main .inner .image {
        height: 350px;
    }
    .eventitems .ei-main .inner .text {
        padding: 50px 60px;
    }
    .eventitems .ei-menu .inner ul {
        gap: 1px;
        padding: 0 60px 30px;
    }
    .eventitems .ei-menu .inner ul li {
        width: calc(33.3333% - calc(1px * 2 / 3));
    }
    .eventitems .ei-menu .inner ul li a {
        padding: 25px 20px 40px;
    }
    .eventitems .ei-menu .inner ul li a::before {
        bottom: 20px;
        width: 6px;
        height: 6px;
    }
    .eventitems .ei-menu .inner ul li a img {
        max-width: 90px;
    }
    .eventitems .ei-block {
        margin-top: -80px;
        padding-top: 80px;
    }
    .eventitems .ei-block .head {
        padding: 30px 0 20px;
    }
    .eventitems .ei-block .cont-wrap {
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        width: 100%;
    }
    .eventitems .ei-block-2 .cont-wrap {
        flex-direction: row-reverse;
    }
    .eventitems .ei-block-1 .ei-block-table {
        gap: 30px;
        padding: 0 60px;
    }
    .eventitems .ei-block-1 .ei-block-table .sp-table tr td {
        padding: 8px;
    }
    .eventitems .ei-block-1 .ei-block-table .sp-table tr td:nth-child(1) {
        width: 150px;
    }
    .eventitems .ei-block-1 .sub-text {
        padding: 30px 60px;
        text-align: center;
    }
    .eventitems .ei-block-1 .sub-image {
        padding: 0 60px 30px;
    }
    .eventitems .ei-block-1 .sub-image .sub-l-image {
        height: 300px;
        padding-bottom: 5px;
    }
    .eventitems .ei-block-1 .sub-image .sub-s-image ul {
        gap: 5px;
    }
    .eventitems .ei-block-1 .sub-image .sub-s-image ul li {
        width: calc(33.3333% - (5px * 2 / 3));
        height: 180px;
    }
    .eventitems .ei-block .cont-wrap .image {
        z-index: 2;
        position: relative;
        width: 100%;
        height: 450px;
    }
    .eventitems .ei-block .cont-wrap .text {
        z-index: 3;
        width: 100%;
        padding: 40px 60px;
        background: var(--color-wh);
        text-align: center;
    }
    .ei-block-table-2 {
        gap: 0;
        padding: 0 60px;
    }
    .ei-block-table-2 .ei-block-item {
        width: 33.3333%;
        border-bottom: 1px solid var(--color-lgy);
    }
    .ei-block-table-2 .ei-block-item:nth-last-of-type(1) {
        border-right: 1px solid var(--color-lgy);
    }
    .ei-block-table-2 .ei-block-item .ei-item-fl {
        padding: 8px;
        border-bottom: 0;
        border-right: 0;
    }
    .ei-block-table-2 .ei-block-item .ei-item-desc {
        font-size: calc(var(--fs) * 0.8);
    }
    .ei-block-table-2 .ei-block-item .ei-item-image {
        padding: 0;
    }
    .ei-block-table-2 .ei-block-item .ei-item-size table tbody tr td {
        font-size: calc(var(--fs) * 0.7);
    }
    .eventitems .ei-block-3 ul {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding: 20px 60px 40px;
    }
    .eventitems .ei-block-3 ul li {
        width: calc(33.3333% - calc(30px * 2 / 3));
    }
    .eventitems .ei-block-3 .text {
        padding: 15px 0 0;
    }
    .eventitems .ei-foot {
        padding: 60px 60px 80px;
    }
    .eventitems .ei-foot .btn {
        padding-top: 20px;
    }
    .eventitems .ei-foot .btn a {
        max-width: 280px;
        padding: 25px;
        font-size: calc(var(--fs)*1.2);
        border-radius: 6px;
    }
}
@media screen and (min-width: 1024px) {
    .eventitems .ei-main .inner .image {
        height: 400px;
    }
    .eventitems .ei-block .cont-wrap .image {
        height: 550px;
    }
    .eventitems .ei-block .cont-wrap .text {
        padding: 50px 100px;
    }
    .eventitems .ei-block-1 .ei-block-table {
        display: block;
        padding: 0 60px;
        font-size: calc(var(--fs)*0.85);
    }
    .eventitems .ei-block-1 .ei-block-table .sp-table {
        display: none;
    }
    .eventitems .ei-block-1 .ei-block-table .pc-table {
        display: block;
        width: 100%;
        border-top: 1px solid var(--color-lgy);
        border-left: 1px solid var(--color-lgy);
    }
    .eventitems .ei-block-1 .ei-block-table .pc-table tr td {
        padding: 8px;
        line-height: 1.6;
        border-bottom: 1px solid var(--color-lgy);
        border-right: 1px solid var(--color-lgy);
    }
    .eventitems .ei-block-1 .ei-block-table .pc-table tr td:nth-child(1) {
        width: 150px;
    }
    .eventitems .ei-block-1 .sub-text {
        padding: 50px 60px;
        text-align: center;
    }
    .eventitems .ei-block-1 .sub-image {
        display: flex;
        flex-wrap: wrap;
        padding: 0 60px 30px;
    }
    .eventitems .ei-block-1 .sub-image .sub-l-image {
        width: 70%;
        height: 500px;
        padding-bottom: 0;
        padding-right: 5px;
    }
    .eventitems .ei-block-1 .sub-image .sub-s-image {
        width: 30%;
        height: 500px;
    }
    .eventitems .ei-block-1 .sub-image .sub-s-image ul {
        gap: 5px;
        height: 100%;
    }
    .eventitems .ei-block-1 .sub-image .sub-s-image ul li {
        width: 100%;
        height: calc(33.3333% - (5px * 2 / 3));
    }
    .ei-block-table-2 .ei-block-item .ei-item-fl {
        padding: 10px;
    }
    .ei-block-table-2 .ei-block-item .ei-item-desc {
        font-size: calc(var(--fs) * 0.9);
    }
    .ei-block-table-2 .ei-block-item .ei-item-image {
        padding: 0;
    }
    .ei-block-table-2 .ei-block-item .ei-item-size table tbody tr td {
        font-size: calc(var(--fs) * 0.8);
    }
    .eventitems .ei-block-3 ul {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding: 20px 60px 40px;
    }
    .eventitems .ei-block-3 ul li {
        width: calc(33.3333% - calc(30px * 2 / 3));
    }
    .eventitems .ei-block-3 .text {
        padding: 15px 0 0;
    }
    .eventitems .ei-block-3 .image {
        height: 260px;
    }
}
@media screen and (min-width: 1280px) {
    .eventitems .ei-main .inner {
        align-items: center;
        max-width: 1600px;
        margin: auto;
        padding: 0 100px;
    }
    .eventitems .ei-main .inner .image {
        width: 55%;
        height: 450px;
    }
    .eventitems .ei-main .inner .text {
        width: 45%;
        padding-right: 0;
    }
    .eventitems .ei-menu .inner {
        align-items: center;
        max-width: 1600px;
        margin: auto;
        padding: 0 100px;
    }
    .eventitems .ei-menu .inner ul {
        gap: 1px;
        padding: 60px 0;
    }
    .eventitems .ei-menu .inner ul li a img {
        max-width: 80px;
    }
    .eventitems .ei-block .inner {
        max-width: 1600px;
        margin: auto;
        padding-left: 100px;
        padding-right: 100px;
    }
    .eventitems .ei-block .cont-wrap {
        padding-bottom: 30px;
    }
    .eventitems .ei-block .cont-wrap::before {
        display: none;
    }
    .eventitems .ei-block .cont-wrap .image {
        z-index: 2;
        position: relative;
        width: 100%;
        height: 650px;
    }
    .eventitems .ei-block .cont-wrap .text {
        position: relative;
        width: 100%;
        padding: 30px 0 0;
        text-align: center;
    }
    .eventitems .ei-block-1 .sub-image {
        padding: 0 0 30px;
    }
    .eventitems .ei-block-3 ul {
        padding: 20px 0 80px;
    }
    .eventitems .ei-block-3 .image {
        height: 300px;
    }
}
@media screen and (min-width: 1600px) {
    
}

/* --------------------------------------------------
 page aboutus
--------------------------------------------------- */

.about-main {
    padding-bottom: 10px;
}
.about-main .inner {
    padding: 0 30px 30px;
    border-bottom: 1px solid var(--color-lgy);
}
.about-main .inner h2 {
    padding-bottom: 15px;
    font-size: calc(var(--fs) * 1.2);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .1em;
    color: var(--color-nv);
}
.about-main .inner p {
    line-height: 1.6;
}
.about-main .inner p .pc-br {
    display: none;
}

.about-company .inner {
    padding: 0 30px 30px;
}
.about-company .inner dl {
    padding-top: 20px;
}
.about-company .inner dl dt {
    padding-bottom: 2px;
    font-weight: 700;
    line-height: 1.5;
}
.about-company .inner dl dd {
    padding-top: 2px;
    line-height: 1.5;
}
.about-company .inner dl.company-name dd span {
    display: block;
}
.about-company .inner dl.company-address dd span {
    display: block;
}
.about-company .inner dl dl {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
    border-top: 1px solid var(--color-lgy);
}
.about-company .inner dl dl dt {
    width: 110px;
    font-weight: 500;
    padding: 5px;
    border-left: 1px solid var(--color-lgy);
    border-right: 1px solid var(--color-lgy);
    border-bottom: 1px solid var(--color-lgy);
    text-align: center;
}
.about-company .inner dl dl dd {
    width: calc(100% - 110px);
    padding: 5px;
    border-right: 1px solid var(--color-lgy);
    border-bottom: 1px solid var(--color-lgy);
}
.about-company .inner dl.company-member dl {
        font-size: calc(var(--fs)*0.95);
    }
.about-company .inner dl.company-member dl dd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about-company .inner dl.company-member dl dd span.jp {
    width: 70px;
}
.about-company .inner dl.company-member dl dd span.en {
    width: calc(100% - 70px);
    padding-left: .8em;
    font-size: calc(var(--fs)*0.85);
    color: var(--color-gy);
}
@media screen and (max-width: 375px) {
    .about-company .inner dl.company-member dl {
        font-size: calc(var(--fs)*0.9);
    }
    .about-company .inner dl.company-member dl dd {
        font-size: calc(var(--fs)*0.95);
    }
}
@media screen and (min-width: 414px) {
    .about-company .inner dl dl dt {
        width: 130px;
        padding: 4px 8px;
    }
    .about-company .inner dl dl dd {
        width: calc(100% - 130px);
        padding: 4px 8px;
    }
}
@media screen and (min-width: 768px) {
    .about-main {
        padding-bottom: 20px;
    }
    .about-main .inner {
        padding: 30px 60px 40px;
    }
    .about-main .inner h2 .sp-br {
        display: none;
    }
    .about-main .inner p {
        padding-top: 10px;
        line-height: 1.7;
    }
    
    .about-company .inner {
        padding: 0 60px 60px;
    }
    .about-company .inner dl {
        display: flex;
        flex-wrap: wrap;
        padding: 20px 0;
        border-bottom: 1px solid var(--color-lgy);
    }
    .about-company .inner dl:nth-last-child(1) {
        border-bottom: 0;
    }
    .about-company .inner dl dt {
        width: 200px;
        padding-bottom: 0;
        font-weight: 500;
        line-height: 1.5;
    }
    .about-company .inner dl dd {
        width: calc(100% - 200px);
        padding-top: 0;
        line-height: 1.5;
    }
    .about-company .inner dl dl {
        max-width: 600px;
        padding: 0;
        border-bottom: 0;
        font-size: calc(var(--fs)*0.95);
    }
    .about-company .inner dl dl dt {
        width: 160px;
        padding: 10px 25px;
    }
    .about-company .inner dl dl dd {
        width: calc(100% - 160px);
        padding: 10px 25px;
    }
    .about-company .inner dl.company-member dl dd span.jp {
        width: 90px;
    }
    .about-company .inner dl.company-member dl dd span.en {
        width: calc(100% - 90px);
    }
}
@media screen and (min-width: 1024px) {
    .about-main {
        padding-bottom: 20px;
    }
    .about-main .inner {
        padding: 30px 60px 40px;
    }
    .about-main .inner p {
        padding-top: 10px;
        line-height: 1.9;
    }
    .about-main .inner p .pc-br {
        display: block;
    }
}
@media screen and (min-width: 1280px) {
    .about-main .inner {
        max-width: 1600px;
        margin: auto;
        padding: 30px 100px 40px;
        border-bottom: 0;
    }
    .about-company {
        background: var(--color-wgy);
    }
    .about-company .inner {
        max-width: 1600px;
        margin: auto;
        padding: 80px 100px;
    }
    .about-company .inner .outline {
        padding: 80px;
        background: var(--color-wh);
    }
    .about-company .inner dl dl {
        border-top: 1px solid var(--color-gy);
    }
    .about-company .inner dl dl dt {
        width: 220px;
        padding: 10px 25px;
        border-left: 1px solid var(--color-gy);
        border-right: 1px solid var(--color-gy);
        border-bottom: 1px solid var(--color-gy);
    }
    .about-company .inner dl dl dd {
        width: calc(100% - 220px);
        padding: 10px 25px;
        border-right: 1px solid var(--color-gy);
        border-bottom: 1px solid var(--color-gy);
    }
    .about-company .inner dl.company-bank dl dd {
        text-align: center;
    }
}

/* --------------------------------------------------
 page gallery
--------------------------------------------------- */

.gallery-list ul {
    display: flex;
    flex-wrap: wrap;
}
.gallery-list ul li {
    width: 50%;
}
.gallery-list ul li .image {
    width: 100%;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}
.gallery-list ul li .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
}
.gallery-list ul li .image img:hover {
    opacity: .9;
}
@media screen and (min-width: 768px) {
    .gallery-list ul li {
        width: 25%;
    }
}
@media screen and (min-width: 1280px) {
    .gallery-list ul li {
        width: 16.6666%;
    }
}

.pager {
    padding: 2em 0;
    text-align: center;
    font-family: var(--font-en);
    font-size: calc(var(--fs)*0.9);
    font-weight: 400;
}
.pager a {
    color: var(--color-dgy);
    transition: .3s;
}
.pager a:hover {
    color: var(--color-bk);
}
.pager .page-numbers {
    display: inline-block;
    width: 35px;
    padding: 5px;
    text-align: center;
}
.pager .prev, .pager .next {
    width: 50px;
}
.pager .current {
    position: relative;
    color: var(--color-bk);
}
.pager .current:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background-color: var(--color-dgy);
}

#modalImage {
    z-index: 10000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100% !important;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
#modalImage img {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    height: 90%;
    object-fit: contain;
}

/* --------------------------------------------------
 page recruit
--------------------------------------------------- */

.recruit {
    z-index: 1;
    position: relative;
    width: 100%;
}
.recruit-main {
    z-index: 2;
    position: relative;
    width: 100%;
}
.recruit-main .head {
    z-index: 3;
    position: relative;
    width: 100%;
}
.recruit-main .head .image {
    z-index: 4;
    position: relative;
    width: 100%;
    height: 340px;
}
.recruit-main .head .image .mask,
.recruit-main .head .image .mask-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.recruit-main .head .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recruit-main .head .title {
    z-index: 6;
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation-name: recFade;
    animation-delay: 1s;
    animation-duration: .7s;
    animation-fill-mode: forwards;
}
@-webkit-keyframes recFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.recruit-main .head .title h2 {
    padding: 30px;
    text-align: center;
    line-height: 1;
    color: var(--color-wh);
}
.recruit-main .desc {
    padding: 40px 30px;
}
.recruit-main .desc p {
    line-height: 1.8;
}
.recruit-section {
    z-index: 2;
    position: relative;
    width: 100%;
}
.recruit-section ul {
    z-index: 3;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}
.recruit-section ul li {
    width: 50%;
    height: 180px;
}
.recruit-section ul li .mask,
.recruit-section ul li .mask-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.recruit-section ul li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-sw {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: calc(100% - 60px);
    max-width: 1400px;
    margin: 40px auto 0;
}
.recruit-sw-item {
    display: block;
    width: calc(50% - 5px);
    height: 40px;
    background-color: var(--color-lgy);
    line-height: 40px;
    text-align: center;
    color: var(--color-nv);
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
    border-radius: 30px;
}
input[name="recruit-sw-item"] {
    display: none;
}
.recruit-sw-cont {
    display: none;
    width: 100%;
    padding: 30px 0;
    clear: both;
    overflow: hidden;
}
#job01:checked ~ #job01_content,
#job02:checked ~ #job02_content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.recruit-sw input:checked + .recruit-sw-item {
    background-color: var(--color-nv);
    color: var(--color-wh);
}
.recruit-sw-cont dl {
    width: 100%;
}
.recruit-sw-cont dt {
    padding-bottom: 5px;
    font-weight: 700;
    line-height: 1.6;
    border-bottom: 1px solid var(--color-lgy);
}
.recruit-sw-cont dd {
    padding-top: 5px;
    line-height: 1.6;
}

.recruit-entry {
    padding: 15px 30px 30px;
}
.recruit-entry a {
    max-width: 250px;
    margin: auto;
    padding: 15px;
    font-size: calc(var(--fs)*1.2);
    font-family: var(--font-en);
    font-weight: 500;
    text-align: center;
    background: var(--color-nv);
    color: var(--color-wh);
    line-height: 1;
    border: 2px solid var(--color-nv);
    border-radius: 25px;
    transition: .2s;
}
.recruit-entry a:hover {
    background: var(--color-wh);
    color: var(--color-nv);
}

.recruit-selection .inner {
    padding: 15px 30px 30px;
}
.recruit-selection .inner .head {
    background: var(--color-lgy);
    padding: 15px 15px 13px;
    line-height: 1;
}
.recruit-selection .inner .text {
    padding: 20px;
    line-height: 1.6;
    border: 1px solid var(--color-lgy);
}

@media screen and (min-width: 768px) {
    .recruit-main .desc {
        padding: 40px 60px 50px;
    }
    .recruit-section ul li {
        height: 220px;
    }
    .recruit-sw {
        width: calc(100% - 120px);
        margin: 70px auto 0;
    }
    .recruit-entry {
        padding: 30px 60px;
    }
    .recruit-selection .inner {
        padding: 30px 60px 50px;
    }
}
@media screen and (min-width: 1024px) {
    .recruit-main .head .image {
        height: 70vh;
    }
    .recruit-main .head .title {
        top: calc(50% + 20px);
    }
    .recruit-main .head .title h2 {
        font-size: calc(var(--fs)*1.8);
        letter-spacing: .1em;
    }
    .recruit-section ul li {
        height: 40vh;
    }
    .recruit-sw {
        gap: 20px;
    }
    .recruit-sw-item {
        width: calc(30% - 10px);
        height: 50px;
        line-height: 50px;
    }
    .recruit-sw-cont dl {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        border-top: 1px solid var(--color-lgy);
        border-left: 1px solid var(--color-lgy);
    }
    .recruit-sw-cont dt {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 100%;
        padding: 15px;
        border-bottom: 1px solid var(--color-lgy);
        border-right: 1px solid var(--color-lgy);
    }
    .recruit-sw-cont dd {
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 150px);
        height: 100%;
        padding: 15px;
        border-bottom: 1px solid var(--color-lgy);
        border-right: 1px solid var(--color-lgy);
    }
}
@media screen and (min-width: 1280px) {
    .recruit-main .head .image {
        height: 75vh;
    }
    .recruit-main .head .title h2 {
        font-size: calc(var(--fs)*2.2);
    }
    .recruit-main .desc {
        max-width: 1600px;
        margin: auto;
        padding: 80px 100px;
        text-align: center;
    }
    .recruit-section ul li {
        height: 60vh;
    }
    .recruit-sw {
        width: calc(100% - 200px);
    }
    .recruit-sw-cont dl {
        font-size: calc(var(--fs)*0.95);
    }
    .recruit-sw-cont dt {
        width: 250px;
    }
    .recruit-sw-cont dd {
        width: calc(100% - 250px);
    }
    .recruit-selection .inner {
        max-width: 1600px;
        margin: auto;
        padding: 30px 100px 50px;
        text-align: center;
    }
    .recruit-selection .inner .text {
        padding: 50px;
    }
}

/*.recruit {
    z-index: 1;
    position: relative;
    width: 100%;
}
.recruit .inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 40px 30px;
}
.recruit .inner .block {
    padding: 40px 0 0;
    font-weight: 400;
}
.recruit .inner .block-1 {
    padding-top: 25px;
}
.recruit .inner .block h3 {
    margin-bottom: 10px;
    padding: 15px 5px;
    font-size: calc(var(--fs) * 1.05);
    font-weight: 700;
    line-height: 1;
    border-top: 1px solid var(--color-bk);
    border-bottom: 1px solid var(--color-bk);
}
.recruit .inner .block dl {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-wgy);
    line-height: 1.6;
}
.recruit .inner .block dl dt {
    width: 100px;
}
.recruit .inner .block dl dd {
    width: calc(100% - 100px);
}
.recruit .inner .block dl.sp-100 dt {
    width: 100%;
    padding-bottom: 10px;
}
.recruit .inner .block dl.sp-100 dd {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .recruit .inner {
        padding: 70px 60px 40px;
    }
    .recruit .inner .block {
        padding: 60px 0 0;
    }
    .recruit .inner .block-1 {
        padding-top: 40px;
    }
    .recruit .inner .block h3 {
        margin-bottom: 15px;
        padding: 25px 10px;
        font-size: calc(var(--fs) * 1.1);
        text-align: center;
    }
    .recruit .inner .block dl {
        padding: 20px 0;
    }
    .recruit .inner .block dl dt {
        width: 150px;
        padding: 0 15px;
    }
    .recruit .inner .block dl dd {
        width: calc(100% - 150px);
        padding: 0 15px;
    }
    .recruit .inner .block dl.sp-100 dt {
        width: 150px;
        padding-bottom: 0;
    }
    .recruit .inner .block dl.sp-100 dd {
        width: calc(100% - 150px);
    }
}
@media screen and (min-width: 1280px) {
    .recruit .inner {
        max-width: 1600px;
        margin: auto;
        padding: 70px 100px 40px;
    }
    .recruit .inner .block h3 {
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 1600px) {
    .recruit .block-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        width: 100%;
    }
    .recruit .inner .block {
        width: 50%;
        padding: 40px 0 0;
        font-size: calc(var(--fs) * 0.9);
    }
    .recruit .inner .block-1 {
        padding-top: 40px;
    }
    .recruit .inner .block-wrap .block:nth-child(2n+1) {
        padding-right: 40px;
    }
    .recruit .inner .block-wrap .block:nth-child(2n+2) {
        padding-left: 40px;
    }
    .recruit .inner .block dl:nth-last-child(1) {
        border-bottom: 0;
    }
}*/

/* --------------------------------------------------
 page form common
--------------------------------------------------- */

.form .inner {
    z-index: 1;
    position: relative;
    width: 100%;
    font-weight: 400;
}
.form .inner h2 {
    padding: 15px 30px;
}

.form-wrap {
    position: relative;
    width: 100%;
}
.form-text {
    width: 100%;
    padding: 30px 30px 15px;
}
.form-desc {
    width: 100%;
}
.form-item {
    padding: 20px 30px;
    border-bottom: 1px solid var(--color-wgy);
}
.form-head {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
}
.form-head span {
    width: 50px;
    margin-right: 10px;
    font-family: var(--font-jp);
    font-size: calc(var(--fs)*0.8);
    line-height: 1;
    padding: 5px 0;
    text-align: center;
}
.form-head span.req {
    background: var(--color-nv);
    color: var(--color-wh);
}
.form-head span.any {
    background: var(--color-gy);
    color: var(--color-wh);
}
.form-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
.form-item input[type="text"],
.form-item input[type="tel"],
.form-item input[type="email"],
.form-item input[type="date"],
.form-item select,
.form-item textarea {
    display: block;
    width: 100%;
    padding: 0.7em;
    background: var(--color-wgy);
    color: var(--color-bk);
    font-size: 16px;
    line-height: 1;
}
.form-item .birth {
    flex-wrap: nowrap;
    gap: 5px;
}
.form-item .birth select {
    text-align: center;
}
.form-foot span.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.form-item input[type="date"] {
    height: 2.4em;
    margin-bottom: 15px;
}
.form-wrap .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
}
.form-wrap span.wpcf7-list-item {
    display: inline;
    position: relative;
    width: 100%;
    align-items: center;
    margin: 0 0 0 3px;
}
.form-wrap .wpcf7-list-item-label {
    padding: 0;
    color: var(--color-bk);
    cursor: pointer;
}
.form-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
.form-wrap .wpcf7-list-item-label:before {
    content: '';
    display: inline-block;
    position: relative;
    top: -2px;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 1px solid var(--color-bk);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}
.form-wrap input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 6px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 2px solid var(--color-bk);
    border-right: 2px solid var(--color-bk);
}
.form-wrap .form-foot input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    top: 5px;
}
.form-attention {
    padding: 30px;
}
.form-attention p a {
    display: inline;
    text-decoration: underline;
}
.form-attention .checkbox {
    padding: 20px 0 0;
    text-align: center;
}
.form-wrap .submit {
    padding: 0 30px 30px;
}
.form-wrap input[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--color-gy);
    color: var(--color-bk);
    text-align: center;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
    border: none;
    transition: opacity 0.2s ease-in-out;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.form-wrap input[type="submit"]:hover {
    background: var(--color-bk);
    color: var(--color-wh);
}
.form .sent .form-wrap {
    display: none;
}

.form-captcha {
    width: 100%;
    max-width: 200px;
    margin: auto;
}
.form-captcha .captcha-img {
    width: 100%;
    max-width: 140px;
    padding: 10px;
    margin: auto;
    border: 1px solid var(--color-gy);
}
.form-captcha .captcha-input {
    padding-top: 10px;
}
.form-captcha .captcha-input input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--color-gy);
}

@media screen and (min-width: 768px) {
    .form .inner {
        padding: 40px 0 80px;
    }
    .form .inner h2 {
        padding: 0 60px 15px;
    }
    .form-text {
        padding: 30px 60px 15px;
    }
    .form-item {
        display: flex;
        flex-wrap: wrap;
        padding: 25px 60px;
    }
    .form-head {
        width: 100%;
    }
    .form-foot {
        width: 100%;
    }
    .form-attention {
        padding: 40px 60px;
    }
    .form-attention .checkbox {
        padding: 30px 0 0;
    }
    .form-wrap .submit {
        padding: 0 90px 30px;
    }
    .form .form-thanks {
        padding: 60px 60px 30px;
    }
}
@media screen and (min-width: 1024px) {
    .form-head {
        width: 340px;
        padding: 0 50px 0 0;
        font-size: calc(var(--fs)*0.9);
    }
    .form-foot {
        width: calc(100% - 340px);
    }
    .form-attention {
        padding: 70px 60px 40px;
        text-align: center;
    }
    .form-wrap .submit {
        max-width: 700px;
        margin: auto;
    }
}
@media screen and (min-width: 1280px) {
    .form .inner {
        padding: 30px 40px 55px;
    }
    .form-head {
        width: 340px;
    }
    .form-foot {
        width: calc(100% - 340px);
    }
}
@media screen and (min-width: 1600px) {
    .form {
        background: var(--color-wgy);
        padding: 80px 0;
    }
    .form .inner {
        max-width: 1400px;
        margin: auto;
        padding: 100px;
        background: var(--color-wh);
    }
}

/* --------------------------------------------------
 page privacy
--------------------------------------------------- */

.privacy .inner {
    padding: 20px 0 40px;
    font-size: calc(var(--fs)*0.97);
    letter-spacing: .03em;
    line-height: 1.6;
}
.privacy-text {
    padding: 0 30px;
    font-weight: 400;
}
.privacy .inner .list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    padding: 30px 0;
}
.privacy .inner .list dl {
    width: 100%;
    padding: 0 30px;
}
.privacy .inner .list dl dt {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-wgy);
    font-family: var(--font-min);
    font-size: calc(var(--fs)*1.05);
    font-weight: 700;
}
.privacy .inner .list dl dd {
    padding-top: 5px;
    font-weight: 400;
}
.privacy-sign {
    padding: 0 30px;
    font-weight: 400;
    text-align: right;
}
.privacy a {
    display: inline;
}
@media screen and (min-width: 768px) {
    .privacy .inner {
        padding: 20px 0 80px;
    }
    .privacy-text {
        padding: 0 60px;
    }
    .privacy .inner .list dl {
        padding: 0 60px;
    }
    .privacy-sign {
        padding: 0 60px;
    }
}
@media screen and (min-width: 1280px) {
    .privacy .inner {
        padding: 30px 100px 55px;
    }
    .privacy-text {
        padding: 0;
    }
    .privacy .inner .list dl {
        padding: 0;
    }
    .privacy .inner .list dl dt {
        font-size: calc(var(--fs)*1);
    }
    .privacy-sign {
        padding: 0;
    }
}
@media screen and (min-width: 1600px) {
    .privacy {
        background: var(--color-wgy);
        padding: 110px 0;
    }
    .privacy .inner {
        max-width: 1400px;
        margin: auto;
        padding: 100px 200px;
        background: var(--color-wh);
    }
}

/* --------------------------------------------------
 footer
--------------------------------------------------- */

.footer {
    z-index: 1;
    position: relative;
    width: 100%;
}
.footer-inner {
    z-index: 2;
    position: relative;
    width: 100%;
}

/* f-navi
--------------------------------------------------- */

.f-navi {
    background: var(--color-nv);
}
.f-navi .inner {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 30px;
}
.f-navi .inner .menu {
    width: 100%;
}
.f-navi .inner .menu ul {
    display: flex;
    flex-wrap: wrap;
}
.f-navi .inner .menu ul li {
    width: 100%;
    border-bottom: 1px solid var(--color-ngy);
}
.f-navi .inner .menu ul li a {
    position: relative;
    height: 40px;
    line-height: 40px;
    padding: 0 20px 0 30px;
    letter-spacing: .05em;
    font-family: var(--font-en);
    font-size: calc(var(--fs) * 1);
    color: var(--color-wh);
}
.f-navi .inner .menu ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 23px;
    width: 6px;
    height: 6px;
    border-color: var(--color-wh);
    border-top: 1px solid;
    border-right: 1px solid;
    transform: translate(0, -50%) rotate(45deg);
}
.f-navi .inner .overview {
    z-index: 1;
    position: relative;
    width: 100%;
    padding-top: 50px;
}
.f-navi .inner .overview .logo {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}
.f-navi .inner .overview .logo .image {
    width: 170px;
    padding-left: 30px;
}
.f-navi .inner .overview .logo .text {
    width: 100%;
    padding: 10px 30px;
    font-size: calc(var(--fs)*0.9);
    font-weight: 400;
    color: var(--color-wh);
}
.f-navi .inner .overview .location {
    padding: 0 30px;
    color: var(--color-wh);
}
.f-navi .inner .overview .location-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-ngy);
}
.f-navi .inner .overview .location-item:nth-last-child(1) {
    border-bottom: 0
}
.f-navi .inner .overview .location-item h3 {
    padding-bottom: 5px;
    font-size: calc(var(--fs) * 0.95);
    line-height: 1.5;
}
.f-navi .inner .overview .location-item p {
    font-size: calc(var(--fs) * 0.85);
    line-height: 1.5;
}
.f-navi .inner .overview .location-item p span {
    padding-right: 1em;
}
.copy {
    padding: 35px 0 10px;
    font-family: var(--font-en);
    font-weight: 400;
    color: var(--color-wh);
    font-size: calc(var(--fs) * 0.85);
    text-align: center;
    letter-spacing: .15em;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .f-navi .inner {
        padding: 80px 0 60px;
    }
    .f-navi .inner .menu ul {
        padding: 0 60px;
    }
    .f-navi .inner .menu ul li {
        width: 33.3333%;
        border-bottom: 0;
    }
    .f-navi .inner .menu ul li a {
        height: 50px;
        line-height: 50px;
        font-size: calc(var(--fs) * 0.9);
    }
    .f-navi .inner .overview {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 60px 60px 0;
    }
    .f-navi .inner .overview .logo {
        width: 300px;
        padding-top: 15px;
    }
    .f-navi .inner .overview .logo .text {
        padding-top: 15px;
    }
    .f-navi .inner .overview .location {
        width: calc(100% - 300px);
        padding: 0 30px;
    }
    .f-navi .inner .overview .location-item p span {
        display: block;
        padding-right: 1em;
    }
    .copy {
        width: 100%;
        padding: 35px 0 10px;
    }
}
@media screen and (min-width: 1280px) {
    .f-navi .inner {
        flex-direction: row-reverse;
        max-width: 1600px;
        margin: auto;
        padding: 140px 0 120px;
    }
    .f-navi .inner .menu {
        width: 400px;
        padding-right: 30px;
    }
    .f-navi .inner .menu ul li {
        width: 100%;
        border-bottom: 0;
    }
    .f-navi .inner .menu ul li a {
        height: auto;
        padding: 8px 0;
        line-height: normal;
    }
    .f-navi .inner .overview {
        width: calc(100% - 400px);
        padding-top: 10px;
    }
    .f-navi .inner .overview .location-item p {
        font-size: calc(var(--fs) * 0.9);
    }
    .f-navi .inner .overview .location-item p span {
        display: inline;
    }
    .copy {
        margin-top: 35px;
        padding-left: 30px;
        padding-bottom: 0;
        text-align: left;
    }
}

/* --------------------------------------------------
 notfound
--------------------------------------------------- */

.notfound {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 80vh;
}
.notfound .bg {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.notfound .bg::before {
    z-index: 3;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bk);
    opacity: 0.6;
}
.notfound .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.notfound-inner {
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    position: relative;
    width: 100%;
    height: 100%;
}
.notfound-inner .image {
    width: 50%;
    max-width: 300px;
}
.notfound-inner .text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-wh);
}
.notfound-inner .link a {
    position: relative;
    width: 220px;
    padding: 10px;
    background: var(--color-bk);
    color: var(--color-wh);
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}
.notfound-inner .link a::before,
.notfound-inner .link a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
}
.notfound-inner .link a::before {
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--color-wh);
    border-left: 1px solid var(--color-wh);
    transform: translate(0, -50%) rotate(-45deg);
}
.notfound-inner .link a::after {
    width: 25px;
    height: 1px;
    background: var(--color-wh);
    transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
    .notfound-inner {
        gap: 40px;
    }
    .notfound-inner .text {
        font-size: 1.2rem;
    }
}
@media screen and (min-width: 1024px) {
    .notfound-inner {
        gap: 60px;
    }
    .notfound-inner .link a {
        width: 240px;
        font-size: 1.3rem;
    }
}