@charset "utf-8";
/*---------------------------------------------------------------------
Parts Style
style.css
-----------------------------------------------------------------------
Copyright 2026 (c) linkpath Allrights Reserved.
Created: linkpath
Created url: https://linkpath.jp/
Coding: Hinako Hayashi
Last Update: 2026.04.07
---------------------------------------------------------------------*/
/*===========================================================
    font-size
===========================================================*/
.section-title {
    font-size: 200%;
}
.h-menu__link a span {
    font-size: 75%;
}
.section-title span {
    font-size: 60%;
}

/*===========================================================
    parts
===========================================================*/
/* br */
br.sp {
    display: none;
}

/*wbr*/
.wbr {
word-break: keep-all;
overflow-wrap: break-word;
}

/* none */
.pc-none {
    display: none;
}

/* flowing-slider */
.flowing-slider {
    width: 100%;
    overflow: hidden;
}

.flowing-slider__wrap {
    display: flex;
    width: max-content;
}

.flowing-slider__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: flowing-logo 40s linear infinite;
}

.flowing-slider__list li {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--color-main);
    margin-left: 2em;
}

.flowing-slider__list img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.flowing-slider__wrap:hover .flowing-slider__list {
    animation-play-state: paused;
}

@keyframes flowing-logo {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* scroll-slider */
.scroll-slider {
    width: 100%;
    padding-bottom: 5em;
    position: relative;
}
.scroll-item-wrap {
    position: static !important;
}
.scroll-slider.is-centered {
    padding-bottom: 0;
}
.scroll-slider.is-centered .scroll-item-wrap {
    width: fit-content;
    margin: 0 auto;
}
.scroll-slide {
    transition: opacity 0.3s;
}
/*slider-scrollbar*/
.scroll-slider .slider-scrollbar {
    max-width: 1350px;
    width: 90% !important;
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 2em;
    z-index: 2;
}
.scroll-slider .slider-scrollbar::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.scroll-slider .slider-btn {
    aspect-ratio: 1 / 1;
    background-color: var(--color-accent);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

/* scroll-bar */
.scroll-bar {
    writing-mode: vertical-rl;
    position: relative;
    padding-bottom: 110px;
    margin: 0 auto;
}
.scroll-bar::before {
    animation: scroll 2s infinite;
    background: var(--color-accent);
    bottom: 0;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/* a */
a {
    cursor: pointer;
    transition: all 0.3s;
}
a:hover {
    opacity: 0.7;
}

/* link-btn */
.link-btn {
    width: fit-content;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    border-radius: 0.75em;
    padding: 1em 2em;
}

/*===========================================================
    header
===========================================================*/
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    padding: 1em 2em;
    padding-bottom: 1.5em;
    position: fixed;
    left: 0;
    top: 0;
    transition: all 0.3s;
    z-index: 97;
}
header.s-active {
    padding: 0.5em 2em;
    padding-bottom: 1em;
}

/* logo */
.logo {
    display: block;
    position: relative;
    z-index: 99;
}
.logo img {
    width: auto;
    height: 2.5em;
    display: block;
}

/* h-menu */
.h-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2em 2.5em;
}
.h-menu__link a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 0.1em 2em;
}
.h-menu__link a span {
    letter-spacing: 0.1em;
}


/*===========================================================
    wrap
===========================================================*/
/* section */
section:not(.section-first) {
    padding: 8em 0;
}

/* section-content */
.section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
}
.section-title {
    letter-spacing: 0.1em;
    line-height: 1.25em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25em;
}
.section-title span {
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1em;
}
.section-message {
    letter-spacing: 0.01em;
    line-height: 1.8em;
    padding: 2em 0;
    padding-left: 3em;
}
.section-message span {
    display: block;
    padding-top: 2em;
}
.section-content .link-btn {
    margin: 0 0 0 auto;
}

/* section-sticky */
.section-sticky {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5em;
}
.section-sticky > * {
    width: calc(50% - 2.5em);
}
.section-sticky__left {
    position: sticky;
    top: 10em;
    left: 0;
}
.section-sticky__right {
    position: sticky;
    top: 10em;
    right: 0;
}

/*===========================================================
    article-division
===========================================================*/
.article-division > div {
    display: flex;
    align-items: flex-start;
    gap: 2.5em;
}
.article-division section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3em;
    padding: 3em 0;
    margin: 5em 0;
}

.article-division section:first-child {
    border-right: solid 1px var(--color-main);
    padding-right: 2.5em !important;
}
/* section-access */
.section-access {
    width: 50%;
}
.access-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
}
.access-content iframe {
    width: 100%;
    aspect-ratio: 16 / 7;
}
.access-address {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.access-address dl {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.access-address dt {
    width: fit-content;
    text-align: center;
    border-radius: 200px;
    padding: 0.25em 1em;
}

.section-access .link-btn {
    margin: 0 auto;
}

/* section-contact */
.section-contact {
    width: calc(50% - 2.5em);
}
.contact-content img {
    width: 100%;
    aspect-ratio: 16 / 7;
}
.contact-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
}
.contact-content p span {
    display: block;
    padding-top: 1em;
}

.section-contact .link-btn {
    margin: 0 auto;
}

/* sectionが1つの場合 */
.article-division div > section:only-child {
    width: 100%;
    border-right: none;
}
.article-division div > section:only-child .contact-content {
    flex-direction: row;
    flex-wrap: wrap;
}
.article-division div > section:only-child .contact-content img,
.article-division div > section:only-child .contact-content p {
    max-width: 600px;
    width: calc(50% - 1em);
}

/*===========================================================
    footer
===========================================================*/
.f-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5em;
    padding: 5em 0;
}
.f-logo {
    max-width: 450px;
    width: 35%;
}
.f-nav {
    width: calc(65% - 5em);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 3em;
}
.f-menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 2em;
}
.f-menu__child {
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-left: solid 1px var(--color-accent);
    padding: 0.5em 1em;
    padding-right: 0;
    margin-top: 1em;
}
.f-other {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1em;
}
.f-other li a {
    display: flex;
    align-items: center;
    gap: 1em;
}
.f-other li a svg {
    height: 1.25em;
}

@media screen and (max-width: 959px) {
/*===========================================================
    font-size
===========================================================*/
.h-access dt {
    font-size: 120%;
}

/*===========================================================
    parts
===========================================================*/
/* none */
.pc-none {
    display: block;
}
.sp-none {
    display: none;
}

/*===========================================================
    header
===========================================================*/
/* h-nav */
.h-nav {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: var(--color-base);
    padding: 4em 2em;
    padding-top: 7em;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
    overflow-y: scroll;
    z-index: 98;
}
header.h-active .h-nav {
    opacity: 1;
    pointer-events: auto;
}
/* h-menu */
.h-menu {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.h-menu__link {
    width: 100%;
    border-bottom: solid 1px var(--color-main);
    padding-bottom: 2em;
}
.h-menu__link a {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.h-menu__link a::before {
    content: "";
    width: 1em;
    height: 1em;
    background: var(--color-main);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* h-access */
.h-access {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
    padding-top: 2em;
}
.h-access iframe {
    width: 100%;
    aspect-ratio: 4 / 3;
}
.h-access dl {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-bottom: solid 1px var(--color-main);
    padding-bottom: 2em;
}
.h-access dl:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

/* h-btn */
.h-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
}

/* h-icon__link */
.h-icon__link {
    width: 2.5em;
    height: 2.5em;
    display: flex ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.h-icon__link svg {
    height: 1.5em;
}

/* hb */
.hb {
    width: 2.5em;
    height: 2.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4em;
    border-radius: 50%;
    transition: background-color 0.5s ease;
    z-index: 99;
}
.hb li {
    width: 1.5em;
    height: 1.5px;
    border-radius: 100px;
    transition: all 0.3s;
    transform-origin: left;
}
header.h-active .hb li:nth-child(1) {
    transform: rotate(45deg) translate(-0.1em, -0.4em);
}
header.h-active .hb li:nth-child(2) {
    transform: rotate(-45deg)  translate(-0em, 0.3em);
}

/*===========================================================
    wrap
===========================================================*/
/* section-content */
.section-message {
    width: 90%;
    padding: 0;
    padding-top: 1em;
    margin: 0 auto;
}

/* section-sticky */
.section-sticky {
    gap: 3em;
}
.section-sticky > * {
    width: 100%;
}
.section-sticky__left {
    position: static;
}
.section-sticky__right {
    position: static;
}
.section-sticky .link-btn {
    max-width: 20em;
    min-width: 10em;
    text-align: center;
    margin: 0 auto;
}

/*===========================================================
    article-division
===========================================================*/
.article-division > div {
    flex-direction: column;
    gap: 0;
}
.article-division section {
    width: 100%;
    padding: 8em 0;
    margin: 0;
}
.article-division section:first-child {
    border-right: none;
    border-bottom: solid 1px var(--color-main);
    padding-right: 0 !important;
}

/* section-access */
.access-address {
    gap: 2em;
}
.article-division div > section:only-child .contact-content img,
.article-division div > section:only-child .contact-content p {
    width: 100%;
}

/*===========================================================
    footer
===========================================================*/
.f-inner {
    flex-direction: column;
}

/* f-logo */
.f-logo {
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
}

/* f-nav */
.f-nav {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.f-menu {
    width: 100%;
    flex-direction: column;
    justify-content: center;
}
.f-menu__link {
    width: 100%;
    border-bottom: solid 1px var(--color-accent__transparent);
    padding-bottom: 2em;
}
}

@media screen and (max-width: 482px) {
/*===========================================================
    font-size
===========================================================*/

/*===========================================================
    parts
===========================================================*/
/* br */
br.sp {
    display: block;
}
br.pc {
    display: none;
}

/* flowing-slider */
.flowing-slider__list li {
    width: 150px;
    margin-left: 1em;
}

/*===========================================================
    header
===========================================================*/
header {
    padding: 1em;
}
header.s-active {
    padding: 0.75em 1em;
}

/* logo */
.logo img {
    height: 2em;
}

/* h-btn */
.h-btn {
    gap: 0.75em;
}

/*===========================================================
    wrap
===========================================================*/
/* section */
section:not(.section-first) {
    padding: 5em 0;
}

/*===========================================================
    article-division
===========================================================*/
.article-division section {
    padding: 5em 0;
}

/*===========================================================
    footer
===========================================================*/
}
