@charset "UTF-8"; /*
*/
html.fixed {
    height: 100%;
    overflow: hidden;
    touch-action: none;
}

body {
    position: relative;
}

a {
    text-decoration: none;
    transition: opacity 0.3s, color 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.gBody {
    /* background-color: #f7f6ed; */
}

.contents a.link {
    color: var(--c-sub-dark);
    font-weight: var(--w-m);
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.3;
    display: inline-block;
    font-size: var(--f-s);
    word-break: break-all;
}

.contents a:not.link:hover {
    color: var(--c-accent);
    text-decoration: underline;
}

section.center {
    text-align: center;
}

[class^="ph-"]:before, [class*=" ph-"]:before {
}

@keyframes dash {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes anim-scroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes pop-up {
    0% {
        transform: translateY(1rem);
    }

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

@keyframes MenuIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes MenuOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

section .column {
    display: flex;
}

section .column.fix-l {
    margin-left: var(--m-fix);
    padding-left: var(--m-xxs);
}

section .column.fix-r {
    margin-right: var(--m-fix);
    padding-left: var(--m-xxs);
}

.box {
    display: block;
}

.box.white {
    padding: var(--m-s);
    background: #fff;
}

.box.gray {
    padding: var(--m-s);
    background: #f9ddf9;
}

.wyp, .column, section {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.wyp.enter, .column.enter, section.enter {
    opacity: 1;
    animation: pop-up 0.7s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 160%;
    font-weight: 400;
}

h1 {
    line-height: 1.2;
}

h2, h3 {
    line-height: 1.7;
}

h4, h5, h6 {
    line-height: 1.4;
}

p {
    line-height: 2;
}

section h3.copy {
    font-size: var(--f-l);
    color: var(--c-01);
    margin-bottom: var(--m-s);
    /* font-family: var(--f-serif); */
}

.text_box h3 + p, .text_box h4 + p {
    margin-top: 0;
}

.text_box p {
    margin-top: var(--m-r);
}

.text_box .column {
    margin-top: var(--m-m);
}

.text_box .column.box {
    background-color: var(--c-05);
    padding: var(--m-s);
    border-radius: var(--m-xxs);
}

.contents section {
    padding-top: var(--m-xl);
    padding-bottom: var(--m-xxxl);
    position: relative;
}

h3.catch {
    font-size: var(--f-xl);
    margin-bottom: var(--m-m);
    color: #222;
}

p.read {
    font-size: var(--f-r);
}

.text_box p + p {
    margin-top: var(--m-xs);
}

.text_box .column {
    margin-top: var(--m-m);
}

.text_box .column.box {
    background-color: var(--c-05);
    padding: var(--m-s);
    border-radius: var(--m-xxs);
}

section h2.title {
    font-size: var(--f-xxl);
    margin-bottom: var(--m-l);
    display: flex;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    flex-direction: column-reverse;
}

section h2 em {
    font-style: normal;
    font-weight: 100;
}

section.center {
    text-align: center;
    position: relative;
}

section h2 small {
    display: block;
    font-size: 0.35em;
    margin-left: 3px;
    color: #666;
}

section[class^="section-"] {
    position: relative;
    padding-block-start: clamp(3rem, 6vw, 8rem); padding-block-end: clamp(4rem, 8vw, 10rem); }

section[class^="section-"]:last-of-type {
    padding-block-end: clamp(5rem, 10vw, 12rem); }

/* =========================
   Padding utilities
========================= */
.pad-m {
    padding-block-start: clamp(3rem, 6vw, 8rem); padding-block-end: clamp(4rem, 8vw, 10rem); }

.pad-s {
    padding-block-start: clamp(2rem, 4vw, 5rem); padding-block-end: clamp(2rem, 4vw, 5rem); }

.pad-l {
    padding-block-start: clamp(4rem, 8vw, 12rem); padding-block-end: clamp(5rem, 10vw, 14rem); }

.pad-none {
    padding-block: 0; }

.pad-bottom-none {
    padding-block-end: 0; }

/* =========================
   Margin utilities
========================= */
.space-l {
    margin-block: clamp(4rem, 8vw, 10rem); }

.space-m {
    margin-block: clamp(3rem, 6vw, 6rem); }

.space-s {
    margin-block: clamp(1.5rem, 3vw, 3rem); }

.space-none {
    margin-block: 0; }

.space-bottom-none {
    margin-block-end: 0; }

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes anim-scroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

:root {
    --c-accent: #89a7d3;
    --c-accent-dark: #0c78c3;
    --c-sub: #ffd067;
    --c-sub-dark: #d1b478;
    --c-gray-light: #f1f0ef;
    --c-gray: #c7c8dd;
    --c-dark: #444444;
    --c-subtext: #555;
    --c-bg: #f7f8ff;
    --c-muted: #91959a;
    --c-link: #91d2e3;
    --c-link-hover: var(--c-muted);
    --c-01: #b08403;
    --c-02: #f4d067;
    --c-03: #9ca835;
    --c-04: #89a7d3;
    --c-05: #3c8281;
    --c-06: #222;
    --c-07: #f8f4af;
    --c-08: #555;
    --c-09: #31271f;
    --f-icon: mini-icon;
    --f-sans: "Noto Sans JP", sans-serif;
    --f-serif: "Noto Serif JP", serif;
    --f-hand: "Zen Kurenaido", sans-serif;
    --f-en: "Plus Jakarta Sans", sans-serif;
    --f-cursive: "Oooh Baby", cursive;
    --bg-light: #fafafa;
    --f-max: clamp(2.8rem, 2.2vw, 32px);
    --f-xxl: clamp(2.2rem, 2vw, 28px);
    --f-xl: clamp(1.6rem, 1.4vw, 24px);
    --f-l: clamp(1.2rem, 1.4vw, 17px);
    --f-m: 1.066rem;
    --f-r: 1rem;
    --f-s: 0.933rem;
    --f-xs: 0.8rem;
    --w-r: 400;
    --w-m: 500;
    --w-b: 700;
    --w-eb: 800;
    --m-xxxl: 12vmax;
    --m-xxl: 8vmax;
    --m-xl: 6vmax;
    --m-l: 4vmax;
    --m-m: 2.5vmax;
    --m-r: 1.8vmax;
    --m-s: 1.2vmax;
    --m-xs: 0.8vmax;
    --m-xxs: 0.3vmax;
    --m-fix: calc(50% - 50vw);
    --max-w: 1280px;
    --l-m: 1.7;
    --transition: cubic-bezier(0.25, 0.1, 0.25, 1);
    --line-height: 1em;
}

.loader-wrap {
    opacity: 1;
    transition: opacity 0.3s ease;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: var(--bg-light);
    z-index: 99;
    flex-direction: column;
    left: 0;
    top: 0;
    gap: 1vw;
    pointer-events: none;
}

.loader-wrap.hide {
    opacity: 0;
}

.loader-wrap p {
    display: block;
    font-size: 11px;
    font-family: system-ui;
    margin-bottom: 5rem;
}

.loader-wrap svg {
    fill: none;
    stroke: dodgerblue;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-dasharray: 118 118;
    animation: loader 1.4s infinite cubic-bezier(0.4, 0, 0.3, 1), loading 1.2s infinite linear, colors 5.6s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes loader {
    from {
        stroke-dashoffset: 118;
    }

    to {
        stroke-dashoffset: -118;
    }
}

@keyframes loading {
    from {
        transform: none;
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes colors {
    0% {
        stroke: #4285f4;
    }

    25% {
        stroke: #de3e35;
    }

    50% {
        stroke: #f7c223;
    }

    75% {
        stroke: #1b9a59;
    }

    100% {
        stroke: #4285f4;
    }
}

.header {
    position: relative;
    width: 100%;
    /* z-index: 9; */
    padding: min(5%, 30px);
    /* margin: max(3vw, 25px); */
}

.header_title {
    position: relative;
}

.gHeader_title {
    position: relative;
    width: clamp(110px, 18%, 160px);
    display: flex;
    flex-direction: column;
    transition: --type 0.3s, color 0.3s;
    --type: #12c0dd;
    margin-right: 1vw;
    margin-top: 1vmax;
    gap: 0.5rem;
}

.gHeader_title a {
    display: block;
}

.gHeader_title a:hover {
    opacity: 1;
}

.gHeader_title svg {
    vertical-align: top;
}

.gHeader_title .coname {
    font-size: 10px;
    color: var(--c-muted);
    display: block;
    text-align: center;
    white-space: nowrap;
    text-indent: -15%;
}

.header:before {
    content: "";
    width: 100%;
    height: 0%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    pointer-events: none;
    transition: height 0.2s var(--transition);
    z-index: 0;
    background: rgb(255 255 255 / 80%);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

.header .u-inner {
    margin: initial;
    max-width: initial;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    flex-direction: row-reverse;
}

.fixed .header:before {
    pointer-events: all;
    height: 100vh;
}

.fixed body.on .header {
    mix-blend-mode: initial;
    position: fixed;
}

.fixed body.on .header:after {
    height: 100%;
}

body.on .header:after {
    height: 0%;
    transition: all 0.3s var(--transition);
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
}

.fixed body.on .header_title {
    animation: MenuIn 0.6s ease-in-out 0.3s forwards;
    opacity: 0;
}

.header::after {
    content: "";
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(0 0 0 / 50%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: -1;
    opacity: 0;
    display: none;
}

.header_title .logo {
    font-size: var(--f-xxxl);
    line-height: 1;
    transform: rotate(-5deg);
    text-align: center;
}

.header_title p {
    font-size: var(--f-xxxs);
    font-weight: var(--w-b);
    white-space: nowrap;
    margin-top: 0.4rem;
    text-align: center;
}

.logo span {
    -webkit-text-stroke: 0.3px currentColor;
}

.logo span:nth-of-type(1) {
    color: var(--c-accent-dark);
}

.logo span:nth-of-type(2) {
    letter-spacing: -0.25em;
    font-size: 80%;
    color: var(--c-accent);
}

.logo span:nth-of-type(3) {
    color: var(--c-accent-dark);
}

.logo span:nth-of-type(4) {
    letter-spacing: -0.25em;
    font-size: 80%;
    color: var(--c-accent);
}

.header_title a {
    display: block;
    opacity: 1;
}

.header_title svg {
    height: auto;
    width: 100%;
    display: block;
    border: none;
    margin: 0;
    --type: #222;
}

.header_title a:hover svg {
    color: var(--c-04);
}

.header .menu {
    display: flex;
    flex: 1;
    max-width: 750px;
    flex-direction: column;
}

.menu-list {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    /* flex-basis: 100%; */
    font-family: var(--f-en);
    align-items: flex-end;
    flex: 1;
    font-size: var(--f-s);
}

.menu .menu-list > li {
    position: relative;
    padding: var(--m-s) 0;
    width: 100%;
}

.menu-list > li > a {
    position: relative;
    display: block;
    transition: all 0.3s;
    /* font-size: var(--f-s); */
    text-align: center;
    /* width: 100%; */
}

.menu-list > li > a:hover {
    color: rgb(0 0 0 / 0%);
    opacity: 1;
}

.menu-list > li a:before {
    position: absolute;
    content: attr(data-hover);
    transition: color 0.3s;
    color: rgb(0 0 0 / 0%);
    white-space: nowrap;
    transform: translate(-50%, -50%);
    top: 47%;
    left: 50%;
    font-family: var(--f-sans);
    font-size: 0.9em;
    font-weight: var(--w-m);
}

.menu .menu-list > li > a:hover:before,/**/
.menu .menu-list > li > a.active:before {
    color: var(--c-accent-dark);
}

.menu .menu-list > li > a:not(:before) {
    color: rgb(255 255 255 / 0%);
}

.p-about .menu-list > li > a.-about,/**/
.p-menu .menu-list > li > a.-menu,/**/
.p-products .menu-list > li > a.-products,/**/
.p-access .menu-list > li > a.-access,/**/
.p-contact .menu-list > li > a.-contact,/**/
.p-news .menu-list > li > a.-news {
    color: rgb(0 0 0 / 0%);
}

.p-about .menu-list > li > a.-about:before,/**/
.p-menu .menu-list > li > a.-menu:before,/**/
.p-products .menu-list > li > a.-products:before,/**/
.p-access .menu-list > li > a.-access:before,/**/
.p-contact .menu-list > li > a.-contact:before,/**/
.p-news .menu-list > li > a.-news:before {
    color: var(--c-03);
}

.util_nav {
    display: flex;
    list-style: none;
    font-family: var(--f-en);
    color: var(--c-08);
    align-items: flex-start;
    font-size: var(--f-r);
    gap: var(--m-xs) var(--m-r);
    line-height: 1.3;
    flex-wrap: wrap;
    margin: 1em 0;
}

.util_nav li:nth-child(1) {
    /* color: var(--c-01); */
    /* font-family: var(--f-en); */
}

.util_nav li:nth-child(2) {
}

.util_nav li a {
    display: block;
    transition: color 0.3s;
}

.util_nav li a:hover {
    opacity: 1;
    color: var(--c-04);
}

.util_nav li:nth-child(1) a:before {
    content: "\e90e";
    font-family: var(--f-icon);
    font-size: 0.8em;
    margin-right: 0.3em;
    margin-left: 0.1em;
    font-weight: var(--w-b);
    /* color: var(--c-05); */
}

.util_nav li:nth-child(2) a:before {
    content: "\e932";
    font-family: var(--f-icon);
    font-size: 0.8em;
    margin-right: 0.3em;
    color: #06c755;
}

.util_nav li:nth-child(2) span {
    font-family: var(--f-sans);
    font-size: 0.875em;
    top: -0.1em;
    position: relative;
    /* vertical-align: top; */
}

[class$="-list"] {
}

.p-about a.-about,/**/
.p-menu a.-menu,/**/
.p-products a.-products,/**/
.p-access a.-access,/**/
.p-news a.-news,/**/
.p-contact a.-contact {
    color: var(--c-accent);
    transform: scale(1, 1);
}

.menu-trigger {
    position: relative;
    display: flex;
    width: 19px;
    height: 15px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    pointer-events: all;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 14px 12px;
    box-sizing: content-box;
    color: var(--c-dark);
    align-self: flex-start;
    z-index: 2;
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: none;
}

.menu-trigger span {
    width: 100%;
    height: 2px;
    transition: all 0.3s;
    text-indent: -9999em;
    background-color: currentColor;
    color: currentColor;
    display: block;
}

.menu-trigger::before, .menu-trigger::after {
    content: "";
    width: 100%;
    height: 2px;
    transition: all 0.3s;
    background-color: currentColor;
}

.fixed .menu-trigger span {
    background-color: transparent;
}

.fixed .menu-trigger::before {
    transform: rotate(45deg);
    transform-origin: left top;
}

.fixed .menu-trigger::after {
    transform: rotate(-45deg);
    transform-origin: left bottom;
}

@keyframes MenuIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes MenuOut {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gPageTop {
    position: fixed;
    z-index: 9;
    opacity: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 1;
    pointer-events: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    right: 2.4%;
    transition: opacity 0.3s;
    mix-blend-mode: difference;
    display: flex;
    justify-content: center;
    mix-blend-mode: multiply;
}

.on .gPageTop {
    opacity: 1;
    pointer-events: all;
}

.gPageTop.absolute {
    position: absolute;
    bottom: auto;
}

.gPageTop_button {
    text-decoration: none;
    display: flex;
    z-index: 1;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.gPageTop_button:hover {
    opacity: 1;
}

.gPageTop_button > .lnr:before {
    font-family: "Linearicons-Free";
    font-size: 1.6rem;
    margin: 0;
    font-style: normal;
    font-weight: bold;
    position: relative;
}

.gPageTop_button b {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-top: 0.6em;
    white-space: nowrap;
    color: #666;
}

.gPageTop_button b::-moz-selection {
    background: #fff;
    background-color: rgba(255, 255, 255, 0.8);
}

.gPageTop_button b::selection {
    background: #fff;
    background-color: rgba(255, 255, 255, 0.8);
}

.gPageTop_button i {
    height: 5em;
    width: 1px;
    background-color: rgb(102 102 102 / 10%);
    position: relative;
    overflow: hidden;
}

.gPageTop_button i:before {
    content: none;
}

.gPageTop_button i::after {
    content: "";
    background-color: #666;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    -webkit-animation: anim-scroll 1.5s ease-in-out 0s reverse infinite;
    animation: anim-scroll 1.5s ease-in-out 0s reverse infinite;
}

.section-title {
    display: flex;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    flex-direction: column-reverse;
}

.section-title .title-jp {
    display: block;
    font-size: var(--f-xs);
    color: currentColor;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.section-title .title-en {
    font-size: var(--f-max);
    /* font-family: var(--f-cursive); */
    /* color: var(--c-subtext); */
    transform: rotate(-1deg);
    width: fit-content;
    display: block;
    text-indent: -0.2rem;
}

.page-title {
    margin-bottom: var(--m-xl);
    display: flex;
    position: relative;
    z-index: 1;
    flex-direction: column-reverse;
}

.page-title .title-jp {
    display: block;
    font-size: var(--f-s);
    color: currentColor;
    font-weight: var(--w-m);
}

.page-title .title-en {
    font-family: var(--f-en);
    /* color: var(--c-accent-dark); */
    width: fit-content;
    font-size: var(--f-xxl);
}

section h2.title + .text_box {
    margin-bottom: var(--m-xxl);
}

section.center {
    text-align: center;
    position: relative;
}

.gFooter_title .tagline {
    flex-basis: 52%;
}

.gFooter_title .tagline svg {
    margin: 0;
}

.gFooter_title .tagline b {
    font-size: 0.8em;
    line-height: 1;
}

.gFooter_title {
    position: relative;
}

.gFooter_title svg {
    height: auto;
    width: 100%;
    display: block;
    border: none;
    margin: 0;
}

.gFooter_title .coname {
    font-size: 12px;
    color: var(--c-muted);
    text-align: center;
}

.section-news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 6%) 0%, rgb(0 0 0 / 0%) 50%);
    z-index: -1;
    margin: 0 var(--m-fix);
    background: var(--c-gray-light);
}

.section-news .overflow {
    overflow: hidden;
    width: 100%;
}

.section-news .section-title {
    grid-column: 1 / 2;
}

.section-news .list {
    margin-right: var(--m-fix);
    position: absolute;
    width: 100vw;
    transition: opacity 0.5s;
}

.section-news .swiper-wrapper.active {
    animation: 1s ease-in-out 0s 1 normal none running appear;
    visibility: visible;
    opacity: 1;
    position: relative;
    display: flex;
}

.section-news .u-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.section-news h2.title {
    margin-bottom: var(--m-m);
    width: initial;
}

.section-news .nav {
    list-style: none;
    display: flex;
    gap: 0.5vmax;
    flex-wrap: wrap;
    color: #fff;
    font-size: var( --f-xs);
    align-self: center;
    grid-column: 2 / -1;
    justify-content: flex-end;
}

.section-news .nav li a {
    display: block;
    background-color: var(--c-gray);
    padding: 0.4rem 0.8rem;
    line-height: 1;
    border-radius: 0.1rem;
    vertical-align: middle;
    border-radius: 1rem;
}

.section-news .nav li a.active {
    background-color: var(--c-sub-dark);
}

.section-news .splide {
    padding: var(--m-m) 0 var(--m-xl);
    width: 100%;
    min-width: 100%;
    grid-column: -1 / 1;
}

.section-news .splide__arrows {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
}

.section-news .splide__arrow {
    top: initial;
}

.section-news .splide__track {
    overflow: visible;
}

#dynamic-slides {
    transition: opacity 0.4s ease;
}

.section-news .splide__list {
    transition: opacity 0.6s ease;
}

.section-news .swiper-wrapper {
    box-sizing: border-box;
}

.section-news .swiper_nav {
    display: flex;
    margin: var(--m-l) auto 0;
    width: fit-content;
    background-color: #eee;
    border-radius: 5rem;
}

.section-news .swiper-container .swiper-pagination {
    position: relative;
    inset: inherit;
    display: flex;
    align-items: center;
}

.section-news .swiper-container .swiper-pagination-bullet-active {
    background: #888;
}

.section-news .swiper-container .swiper-button-prev, .news .swiper-container .swiper-button-next {
    position: initial;
    height: initial;
    margin: initial;
}

.section-news .swiper-container .swiper-button-prev {
    left: 0.3rem;
    right: auto;
    padding: 1em;
}

.section-news .swiper-container .swiper-button-next {
    right: 0.3rem;
    left: auto;
    padding: 1em;
}

.section-news .swiper-container .swiper-button-next::after, .news .swiper-container .swiper-button-prev::after {
    font-family: swiper-icons;
    font-size: 10px;
    letter-spacing: 0px;
    font-variant: initial;
    color: rgb(34, 34, 34);
    display: block;
    text-transform: none !important;
}

.section-news .swiper-container .swiper-button-next.swiper-button-disabled, .news .swiper-container .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.section-news .swiper-pagination-bullet {
    background: #fff;
    opacity: initial;
}

.section-news a.active {
    --d: 100%;
    opacity: 1;
}

.section-news .splide__slide {
    height: initial;
    padding-right: var(--m-m);
    flex-basis: calc(100vw / 3.5);
    max-width: 400px;
    display: flex;
}

.section-news .splide__slide a {
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    padding: 1.5em;
    display: flex;
    gap: 1.5vmax;
    flex-direction: column;
    height: 100%;
    width: 100%;
    border-radius: var(--m-xxs);
    box-shadow: 0 20px 30px rgb(0 0 0 / 10%);
    transition: box-shadow 0.3s cubic-bezier(0.08, 0.78, 0.08, 0.98);
}

.section-news .splide__slide a:hover {
    box-shadow: 0 0 2px rgb(0 0 0 / 10%);
}

.section-news .splide__slide a:hover {
    opacity: 1;
}

.section-news .splide__slide a figure {
    margin-top: -1.5em;
    margin-right: -1.5em;
    margin-left: -1.5em;
    margin-bottom: initial;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, rgb(247 242 242) 0%, rgb(247 242 242 / 10%) 50%);
}

.section-news .splide__slide a figure img {
    filter: brightness(1);
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: filter 0.2s;
    aspect-ratio: 4 / 3;
}

.section-news .splide__slide a figure img.nopt {
    object-position: center center;
}

.section-news .splide__slide a .text_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-news .splide__slide a h4 {
    font-size: var(--f-r);
    margin: 0.5rem 0;
    font-weight: var(--w-b);
    line-height: 1.3;
    min-height: 2.6rem;
}

.section-news .splide__slide a p {
    font-size: var(--f-xs);
    margin-bottom: auto;
}

.section-news .splide__slide a time {
    width: fit-content;
    font-size: var(--f-xs);
    margin-left: auto;
    color: var(--c-subtext);
    display: block;
    font-weight: bold;
    line-height: 1;
    margin-top: var(--m-l);
    font-weight: var(--w-r);
}

.section-news .splide__pagination__page.is-active {
    background: var(--c-accent);
    opacity: 1;
}

/*
## クロージング
*/
section.section-closing {
    position: relative;
    color: #fff;
    display: flex;
    justify-content: center;
}

.section-closing figure {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100%;
    margin: 0 var(--m-fix);
}

.section-closing figure img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.4);
    width: 100vw;
}

.section-closing > .u-inner {
    justify-content: center;
    align-items: center;
    display: flex;
}

.section-closing .text_box {
    position: relative;
    z-index: 1;
    margin: initial;
    text-align: center;
}

.section-closing h3 {
    font-size: var(--f-xl);
    margin-bottom: var(--m-r);
    color: #fff;
}

.section-closing dl.line {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.section-closing dl.line dt {
    font-size: calc(var(--f-max) * 1.5);
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: var(--m-r);
    font-family: var(--f-cursive);
    transform: rotate(-1deg);
}

.section-closing dl.line dd {
    display: flex;
    justify-content: center;
    gap: 1.5vmax;
}

.section-closing dl.line dd a {
    margin: initial;
}

.section-closing dl.line dd a:last-child {
    background-color: #00c300;
}

.section-closing dl.line dd a:last-child:hover {
    color: #00c300;
}

.section-closing dl.line dd img {
    width: 20px;
    margin-right: 0.4rem;
    height: auto;
    position: relative;
}

.section-closing h2 em {
    font-size: max(5vw, 2.2em);
    font-weight: 900;
    line-height: 0.9;
    display: block;
    font-style: normal;
    font-size: var(--f-xxxl);
    font-family: var(--f-en);
    letter-spacing: -0.02em;
}

. .section-closing .text_box p.note {
    font-family: var(--f-en);
    margin: 0.5rem auto 2rem;
    font-size: var(--f-r);
}

.section-closing .text_box p.note small {
    display: block;
}

.section-closing ul {
    list-style: none;
    margin: 0 auto;
    width: fit-content;
    margin-top: var(--m-r);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.section-closing .title-en::before {
    content: "\e215";
    font-family: var(--f-icon);
    margin-right: 0.2em;
    position: relative;
    top: 2.7px;
}

.section-closing a .title-en {
    font-size: var(--f-xxl);
    font-family: var(--f-en);
}

.section-closing a small {
    padding: 0 1em;
    display: block;
    width: 100%;
}

/*
## フッター
*/
.gFooter {
    overflow: hidden;
    background: var(--c-09);
}

.gFooter::before {
    /* content: ""; */
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    z-index: -1;
    margin: 0 var(--m-fix);
}

.gFooter .map {
    position: relative;
    display: flex;
    /* margin-right: var(--m-fix); */
    /* margin-right: var(--m-fix); */
    padding: 5vmax clamp(1.2rem, 4vw, 5rem);
    width: 100%;
    gap: 3rem;
    justify-content: space-between;
    /* margin: 0 var(--m-fix); */
}

.gFooter .map iframe {
    flex: 1;
    vertical-align: top;
    -webkit-filter: grayscale(1) brightness(0.8);
    filter: grayscale(1) brightness(0.8);
    mix-blend-mode: luminosity;
    height: initial;
    min-height: 480px;
    /* margin-bottom: 5vmax; */
    border-radius: var(--m-xs);
    width: 100%;
}

.gFooter .map:before {
    /* content: ""; */
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, transparent 60%, #fff 100%);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gFootNav {
    /* margin: 5vmax var(--m-fix) 0; */
    padding: var(--m-s);
    background: var(--c-08);
    width: 100%;
}

.gFootNav_list {
    display: flex;
    justify-content: space-around;
    list-style: none;
    flex-wrap: wrap;
    font-family: var(--f-en);
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.gFootNav_list li ul {
    list-style: none;
}

.gFootNav_list li ul li {
    display: flex;
    align-items: center;
    flex-basis: 50%;
    margin-top: 0.2em;
}

.gFootNav_list li ul li a {
    text-decoration: none;
    color: #999;
}

.gFootNav_list li ul li:before {
    content: "";
    display: block;
    width: 3px;
    height: 1px;
    background-color: #999;
    margin: 0.4em;
}

.gFootNav > ul > li > a {
    display: flex;
    padding: var(--m-s);
    align-items: center;
    justify-content: space-between;
    /* color: var(--c-04); */
}

.gFooter .copyright {
    background-color: var(--c-06);
    padding: var(--m-r);
    color: #fff;
    font-size: var(--f-s);
    font-family: var(--f-en);
    text-align: center;
}

.gFooter section.section-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 100vw; */
    /* border-top: 1px solid #f1f1f1; */
    padding-block: initial; margin: 0 var(--m-fix);
}

.gFooter .co_id {
    display: flex;
    color: #fff;
    flex-direction: column;
    align-items: center;
    flex-basis: 35%;
    /* margin: 3vmax; */
}

.gFooter .co_id dt {
    width: 90%;
    margin-bottom: 2vmax;
}

.gFooter .co_id a.gHeader_title {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    /* width: fit-content; */
    flex-wrap: wrap;
    transition: color 0.3s;
    align-items: flex-end;
    gap: 0 1rem;
    /* justify-content: center; */
    width: 100%;
}

.gFooter .co_id a.gHeader_title svg:nth-child(1) {
    flex: 0.6;
    /* position: relative; */
    /* display: block; */
    /* grid-column: 1 / 2; */
    /* grid-row: span 3; */
}

.gFooter .logotype {
    flex: 1;
    /* grid-column: 2 / -1; */
    text-align: center;
}

.gFooter .co_id a.gHeader_title svg:nth-child(2) {
    flex: 2;
    /* grid-column: 2 / -1; */
    /* align-self: self-start; */
}

.gFooter .co_id a.gHeader_title:hover {
    color: var(--c-02);
    opacity: 1;
}

.gFooter .co_id dt small {
    font-weight: bold;
    /* margin-top: -3%; */
    /* margin-left: 36%; */
    width: 100%;
    text-align: center;
    grid-column: 2 / -1;
}

.gFooter address {
    font-style: normal;
    font-size: 0.8em;
    /* margin-top: 1rem; */
    /* width: 100%; */
    text-align: center;
    /* color: var(--c-05); */
    grid-column: 2 / -1;
}

.gFooter .co_id dd {
    text-align: center;
    width: 100%;
    line-height: 1.7;
}

.gFooter .co_id dd:nth-of-type(1) {
}

.gFooter .co_id dd:nth-of-type(1) b {
    display: block;
}

.gFooter .co_id dd:nth-of-type(1) small {
    margin: 0 0.5vw;
}

.gFooter .co_id dd:nth-of-type(1) a {
    font-size: var(--f-xl);
    color: var(--c-02);
    margin-left: -0.4em;
}

.gFooter .co_id dd:nth-of-type(2) {
    margin-top: 1em;
    font-size: var(--f-xs);
}

.gFooter .co_id dd:nth-of-type(2) small {
    display: block;
    margin-top: 0.5em;
}

.gFooter .co_id dd:nth-of-type(3) a {
    margin: var(--m-r) auto;
    display: flex;
    /* position: relative; */
    font-size: var(--f-m);
    color: var(--c-03);
    font-weight: var(--w-l);
    font-family: var(--f-en);
    align-items: center;
    width: fit-content;
}

.gFooter .co_id dd:nth-of-type(3) a:before {
    content: "\e900";
    font-family: var(--f-icon);
    margin-right: 0.3em;
    display: inline-block;
}

.gFooter .co_id dd:nth-of-type(3) a small {
    font-size: 14px;
    line-height: 1;
    margin-left: 0.5em;
    /* display: block; */
}

.gFooter .menu-list {
    font-size: var(--f-s);
    display: flex;
    position: relative;
    line-height: 1;
    width: 100%;
    justify-content: space-evenly;
    max-width: 800px;
}

.gFooter .menu-list li {
    position: relative;
}

.gFooter .menu-list li a {
    padding: 0.7rem;
    display: block;
    display: flex;
    justify-content: space-between;
}

.gFooter a:hover {
    opacity: 1;
    color: var(--c-accent);
}

.gFooter .sns_list {
    font-size: var(--f-s);
    display: flex;
    gap: 2rem;
    font-weight: bold;
    margin: var(--m-r) 0 var(--m-xl);
    line-height: 1;
}

.gFooter .copyright {
    padding: var(--m-m);
    line-height: 1;
    text-align: center;
    margin: 0;
    color: var(--c-muted);
    font-size: var(--f-s);
    width: 100%;
}

/*
## コンテンツ
*/
.contents a.link:hover {
    color: var(--c-link-hover);
    text-decoration: underline;
    opacity: 1;
}

.contents a.link[target="_blank"]:after {
    font-family: var(--f-icon);
    font-weight: bold;
    margin-left: 0.2em;
    display: inline-block;
    line-height: 1;
    vertical-align: baseline;
}

.contents figure img {
    border-radius: var(--m-xxs);
    display: block;
}

.gBody aside ul {
    width: 100%;
}

.gVisual {
    position: relative;
    /* margin-right: 4vw; */
    /* position: relative; */
    margin-right: max(5vw, 25px);
    /* margin-bottom: var(--m-l); */
    margin-left: var(--m-xs);
    margin-left: calc(var(--m-fix) + 1rem);
    margin-right: calc(var(--m-fix) + max(5vw, 25px));
    /* width: 100%; */
}

.gVisual figure {
    position: relative;
    padding-top: 35%;
    overflow: hidden;
    border-radius: var(--m-xs);
    min-height: 420px;
}

.gVisual figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% 70%;
    position: absolute;
    top: 0;
    z-index: 0;
}

.gVisual h1 {
    position: absolute;
    bottom: 25%;
    right: 7%;
    transform: translateY(-50%);
    z-index: 1;
    /* align-items: flex-end; */
    /* font-size: var(--f-xxxl); */
    line-height: 1.3;
    color: #fff;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
}

.gVisual .title em {
    font-style: normal;
    font-family: var(--f-en);
    font-weight: var(--w-m);
}

.gVisual .title small {
    display: block;
    margin-right: 3px;
    font-size: var(--f-xs);
}

.pnkz {
    z-index: 1;
    left: 0;
    bottom: 0;
    text-align: right;
}

.pnkz > .list {
    list-style: none;
    color: #666;
    display: flex;
    font-size: var(--f-xs);
    line-height: 1;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    padding: var(--m-s);
    font-family: var(--f-en);
}

.pnkz > .list > li:not(:first-of-type):before {
    content: "\e925";
    margin: 0 var(--m-xs);
    font-family: var(--f-icon);
    font-size: 0.8em;
}

.introduction {
    position: relative;
    padding: var(--m-l) 0 var(--m-xl);
    display: block;
    width: 100%;
    /* background: #fff; */
    font-size: var(--f-m);
}

.introduction .copy {
    margin-bottom: var(--m-r);
    font-size: var(--f-m);
    font-weight: var(--w-l);
    line-height: 1.6;
}

.contents header {
    text-align: center;
}

.page_title {
    margin-bottom: 3em;
}

.page_title {
    margin-bottom: 3em;
}

/*
## 共通パーツ（仮）
*/
body:not(.p-home) .contents section .column table {
    width: 100%;
    margin-bottom: 2rem;
}

body:not(.p-home) .contents section .column table th {
    width: 20%;
    text-align: left;
    padding: 1rem;
    vertical-align: top;
    white-space: nowrap;
}

body:not(.p-home) .contents section .column table td {
    padding: 1rem;
}

body:not(.p-home) .contents section .column table td strong {
    display: block;
    margin-top: 1rem;
}

.contents section .column table td strong:first-of-type {
    margin-top: 0;
}

section ul {
    list-style: none;
    position: relative;
}

.contents section h4 {
    font-size: var(--f-l);
    font-weight: var(--w-m);
    margin: 0 0 var(--m-s);
    width: fit-content;
}

.contents section h4 strong {
    color: var(--c-05);
}

.contents section h5 {
    font-size: var(--f-m);
    font-weight: var(--w-b);
    margin-bottom: var(--m-s);
    display: flex;
    align-items: baseline;
    line-height: 1;
}

/*
## ここまで 共通パーツ（仮）
*/
.contents > section > .column:not(:first-of-type) {
    margin-top: var(--m-xl);
}

section h3.title {
    width: 100%;
    font-size: var(--f-l);
    margin-bottom: var(--m-s);
    margin-top: var(--m-xs);
    line-height: 1.3;
}

section h3.title em {
    font-style: normal;
}

section h4.title:after {
    content: "";
    background-color: #ddd;
    display: block;
    height: 2px;
    width: 110%;
    border-radius: 2.5rem;
    margin-top: 0.3rem;
}

.wp-pagenavi {
    line-height: 1;
    display: flex;
    margin: 2rem auto;
    font-size: 12px;
    font-family: var(--f-en);
    gap: 0.5rem;
    width: fit-content;
}

.wp-pagenavi a, .wp-pagenavi span {
    padding: 0 1em;
    white-space: nowrap;
    border-radius: 5em;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
}

.wp-pagenavi .extend {
    display: none;
}

.wp-pagenavi a {
    background: #fff;
}

.wp-pagenavi .pages {
    width: initial;
    background: #ddd;
}

.wp-pagenavi a:hover {
    background-color: #ddd;
}

.wp-pagenavi span.current {
    color: #fff;
    background-color: var(--c-04);
    width: 30px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .gBody {
    }
}

@media screen and (max-width: 767px) {
    .gBody {
        overflow: hidden;
    }

    .header {
        z-index: 8;
        position: absolute;
    }

    .header:after {
        content: "";
        opacity: 0;
        background-color: #fff;
        transition: all 0.2s ease;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 0;
    }

    .fixed .header {
        /* position: relative; */
        overflow: visible;
    }

    .fixed .header:after {
        opacity: 1;
    }

    .header .menu {
        flex: 1;
        flex-direction: row-reverse;
        justify-content: flex-end;
        /* align-items: flex-start; */
        /* position: relative; */
        /* flex-direction: column; */
    }

    .gHeader_title > a > img {
        height: auto;
        width: 100%;
        display: block;
    }

    .menu-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1;
        /* transform-origin: center top; */
        opacity: 0;
        /* transition: all 0.2s ease; */
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        pointer-events: none;
        justify-content: flex-start;
        margin-top: var(--m-r);
        /* width: 100%; */
    }

    .menu li.tel small {
        display: block;
        margin-top: .5em;
    }

    .fixed .menu-list {
        opacity: 1;
        pointer-events: all;
    }

    .menu-list > li > a {
        display: flex;
        align-items: center;
    }

    .menu-list > li > a:hover {
        color: var(--c-03);
    }

    .p-about .menu-list > li > a.-about,/**/
    .p-menu .menu-list > li > a.-menu,/**/
    .p-products .menu-list > li > a.-products,/**/
    .p-access .menu-list > li > a.-access,/**/
    .p-contact .menu-list > li > a.-contact,/**/
    .p-news .menu-list > li > a.-news {
        color: var(--c-03);
    }

    .menu-list > li a:before {
        position: initial;
        opacity: 1;
        order: 1;
        color: var(--c-04);
        margin-left: var(--m-s);
        font-size: 10px;
        transform: initial;
        /* color: currentColor; */
    }

    .menu-list > li > a:after {
        content: "\e925";
        font-family: var(--f-icon);
        font-weight: normal;
        font-size: 0.8rem;
        order: 3;
        margin-left: auto;
    }

    .util_nav {
        /* display: flex; */
        /* list-style: none; */
        /* font-family: var(--f-en); */
        /* color: var(--c-01); */
        /* align-items: flex-start; */
        /* font-size: var(--f-r); */
        /* gap: 1vmax; */
        flex-direction: column;
        /* margin: 1em 0; */
        /* order: 2; */
    }

    .menu-trigger {
        display: block;
        position: relative;
        top: 0;
        left: -0.5rem;
        width: 30px;
        height: 30px;
        z-index: 1;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        /* order: 1; */
    }

    .menu-trigger span {
        background-color: currentColor;
        width: 24px;
        height: 2px;
        border-radius: 5px;
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        transition: background-color .3s;
        font-size: 0;
        line-height: 0;
        color: var(--c-09);
    }

    .menu-trigger span:before {
        content: "";
        width: 100%;
        height: 2px;
        background-color: currentColor;
        display: block;
        position: absolute;
        top: -8px;
        border-radius: 5px;
        margin: 0;
        transition: all .5s;
    }

    .menu-trigger span:after {
        content: "";
        width: 100%;
        height: 2px;
        background-color: currentColor;
        display: block;
        position: absolute;
        bottom: -8px;
        border-radius: 5px;
        margin: 0;
        transition: all .5s;
    }

    .fixed .menu-trigger span {
        background-color: transparent;
    }

    .fixed .menu-trigger span:before {
        transform: rotate(45deg);
        top: 0;
    }

    .fixed .menu-trigger span:after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .spMenuButton {
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        width: 77px;
        height: 77px;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
        text-align: center;
        z-index: 1;
    }

    .spMenuButton .icon:before {
        font-size: 2em;
        margin: 0;
        font-family: 'Linearicons-Free';
        content: "\e871";
        font-style: normal;
        color: #324e7b;
    }

    .spMenuButton:hover {
        opacity: 1;
    }

    .fixed .spMenuButton .icon:before {
        content: "\e870";
    }

    .gVisual {
        margin: var(--m-xs) calc(var(--m-fix) + var(--m-xs));
    }


    section .column {
        flex-direction: column;
        margin: 0 auto;
    }

    section .column.fix-l {
        margin-right: initial;
        padding-left: initial;
    }

    section .column.fix-r {
        margin-right: var(--m-fix);
    }

    .gFooter .map {
        flex-direction: column;
        /* padding: 0; */
    }

    .gFooter .map .co_id {
        order: 2;
    }

    .access .u-inner {
        flex-direction: column;
    }

    .access .u-inner .text_box {
        padding: 1.5em;
        margin: 0;
    }

    .access .u-inner iframe {
        flex: initial;
        margin: 0;
        height: 400px;
    }

    .section-closing figure img {
        object-position: right top;
    }

    .section-closing > .u-inner {
        z-index: 2;
    }

    .gFooter .u-inner {
        flex-direction: column;
    }

    .gFooter .menu-list {
        flex-direction: column;
        width: 100%;
    }

    .gFooter .menu-list li:first-child {
        border-top: 1px solid rgb(0 0 0 / 6%);
    }

    .gFooter .menu-list li {
        border-bottom: 1px solid rgb(0 0 0 / 6%);
    }

    .gFooter .menu-list li a:after {
        content: "\f31c";
        font-family: "Phosphor";
        font-size: 0.8rem;
        display: block;
    }

    .pnkz .list li:first-child span {
        display: none;
    }

    .page_title {
        margin-bottom: 2em;
    }

    .contents > section .text_box {
        flex-direction: column;
        top: 0;
    }

    .section-news .splide__slide {
        flex-basis: calc(100vw / 1.1);
    }

    .gFootNav_list {
        flex-direction: column;
        font-size: var(--f-xs);
    }

    .gFootNav_list li:not(:last-child) {
        border-bottom: 1px solid #484848;
    }

    .gFootNav_list li a:after {
        content: "\e925";
        font-family: var(--f-icon);
        font-weight: bold;
        font-size: 0.8rem;
    }

    .pnkz .list li:first-child span {
        display: none;
    }
}

@media print {
    body {
        width: 1080px;
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform-origin: 0 0;
    }

    .gHeader {
        position: static;
    }

    .wyp, .column, .u-inner, .box {
        opacity: 1;
    }
}
