@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-subject h2 {
    font-size: 350%;
}
.contact-content {
    font-size: 200%;
}

.h-logo,
.f-logo {
    font-size: 150%;
}
.slider-btn {
    font-size: 130%;
}
.h-logo span,
.f-logo span {
    font-size: 70%;
}
.section-subject h2 span {
    font-size: 50%;
}
.contact-content small {
    font-size: 40%;
}

header {
    font-size: 0.9rem;
}
/*===========================================================
    parts
===========================================================*/
/*wbr*/
.wbr {
word-break: keep-all;
overflow-wrap: break-word;
}

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

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

/* line-dots */
.line-dots {
    display: -webkit-box;
    text-box: unset;
    -webkit-box-orient: vertical;

    overflow: hidden;
}
.line-dots.one {
    -webkit-line-clamp: 1;
}
.line-dots.two {
    -webkit-line-clamp: 2;
}
.line-dots.three {
    -webkit-line-clamp: 3;
}

/* line-break */
.line-break {
    display: block;
    padding-top: 2em;
}

/* link-arrow */
.link-arrow {
    width: 2.25em;
    height: 2.25em;
    flex-shrink: 0;
    display: block;
    border-radius: 50%;
    position: relative;
}
.link-arrow::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-top: solid 2px var(--color-white);
    border-right: solid 2px var(--color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.link-arrow::after {
    content: "";
    width: 3em;
    height: 3em;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}
.link-arrow.back-main__light::after {
    border: solid 2px var(--color-main__light);
}
.link-arrow.back-base__light::after {
    border: solid 2px var(--color-base__light);
}
.link-arrow.back-accent__light::after {
    border: solid 2px var(--color-accent__light);
}

/* more-btn */
.more-btn {
    min-width: 12em;
    display: flex;
    align-items: center;
    gap: 1em;
    border-radius: 0.5em;
    padding: 1em 0.75em;
    padding-right: 0;
    position: relative;
}
.more-btn .link-arrow {
    position: absolute;
    top: 50%;
    right: calc(-3.5em / 2);
    transform: translateY(-50%);
}
@keyframes pulse-ring {
    0%   { width: 3.5em; height: 3.5em; opacity: 0.5; }
    50%  { width: 2.5em; height: 2.5em; opacity: 0; }
    100% { width: 3.5em; height: 3.5em; opacity: 0.5; }
}

.more-btn .link-arrow::after {
    animation: pulse-ring 3s ease-in-out infinite;
}
.more-btn:has(.link-arrow) {
    margin-right: 2em;
}

/* sticky-contents */
.sticky-contents {
    display: flex;
    align-items: flex-start;
    gap: 3em;
}
.sticky-content {
    position: sticky;
    top: 10em;
}

/* section-subject */
.section-subject {
    display: flex;
    flex-direction: column;
    gap: 7em;
}
.section-subject h2 {
    line-height: 1em;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.section-subject h2 span {
    line-height: 1em;
    font-weight: 600;
}

/* loop-slider */
.loop-slider {
    overflow: hidden; /* はみ出しを隠す */
    display: flex;
    align-items: flex-end;
    gap: 1.5em;
    width: 100%;
}

.loop-slider__list {
    display: flex;
    align-items: flex-end;
    gap: 1.5em;
    width: max-content; /* 中身の横幅に合わせる */
    list-style: none;
    padding: 0;
    margin: 0;
    /* アニメーション：名前 / 秒数 / 一定の速度 / 無限 */
    animation: loop-animation 50s linear infinite;
}

.loop-slider__list li {
    width: 300px; /* 画像1枚の横幅（適宜変更してください） */
    flex-shrink: 0;
}
/* 2, 5, 8, 11, 14, 17... 番目の要素 */
.loop-slider__list li:nth-child(3n+2) {
    margin-bottom: 1.5em;
}
/* 3, 6, 9, 12, 15, 18... 番目（ここを基準の0に） */
.loop-slider__list li:nth-child(3n) {
    width: 150px;
}

.loop-slider__list img {
    aspect-ratio: 4 / 5;
    border-radius: 1em;
    object-fit: cover;
}
.loop-slider__list li:nth-child(3n+1) img {
    aspect-ratio: 1 / 1;
}

/* 2, 5, 8, 11, 14, 17... 番目の要素 */
.loop-slider__list li:nth-child(3n+2) img {
    aspect-ratio: 4 / 3;
}

/* アニメーションの内容 */
@keyframes loop-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        /* 2セット並んでいるので、半分の位置（-50%）まで動かす */
        transform: translateX(-50%);
    }
}

/* マウスを乗せた時に止めたい場合（任意） */
.loop-slider:hover .loop-slider__list {
    animation-play-state: paused;
}

/* slider-btns */
.swiper:has(.slider-btns) {
    position: relative;
}
.slider-btns {
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.slider-btn {
    width: 2em;
    height: 4em;
    border-radius: 0.5em;
    border: none;
    position: relative;
}
.slider-btn.prev {
    transform: scale(-1, 1);
}
.slider-btn::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-top: solid 2px var(--color-white);
    border-right: solid 2px var(--color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-75%, -50%) rotate(45deg);
}
.slider-btn.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* read-more */
.hide-text {
    display: none;
    cursor: pointer;
}
.read-btn {
    cursor: pointer;
}

/*===========================================================
    header
===========================================================*/
header {
    max-width: 1400px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.5em;
    position: fixed;
    top: 2em;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
    opacity: 0;
    z-index: 96;
}
header.s-active {
    opacity: 1;
}
/* h-logo */
.h-logo {
    width: 12.5rem;
    height: 2.25em;
    display: flex;
    align-items: flex-end;
    margin: 0.5em 0;
    margin-left: 1em;
}
.h-logo span {
    font-weight: 700;
    white-space: nowrap;
    padding-bottom: 0.25em;
}
.h-logo img {
    width: auto;
    height: 100%;
}

/* h-nav */
.h-nav {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

/* h-menu */
.h-menu {
    display: flex;
    gap: 1.5vw;
    gap: 1.5svw;
}
.h-menu__link {
    border-right: solid 1px var(--color-black);
    padding: 0.5em 0;
    padding-right: 1.5vw;
    padding-right: 1.5svwd;
}
.h-menu__link:last-child {
    border-right: none;
    padding-right: 0;
}
.h-menu__link a {
    font-weight: 600;
    letter-spacing: 0.1em;
}
.h-menu__link a:hover {
    color: var(--color-main__light);
}

/* h-contact */
.h-contact__btn {
    width: 12.5rem;
    height: stretch;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    padding: 0.5em 1em;
    padding-right: 0;
}
.h-contact__btn:hover {
    background: var(--color-main__light);
}

/*===========================================================
    wrap
===========================================================*/
/* section */
.wrap section:not(.section-first) {
    padding: 7em 0;
}
.wrap article section + section {
    padding-top: 0 !important;
}

/* article-contact */
.article-contact {
    background-image: linear-gradient(180deg, rgba(0, 83, 148, 0.5), rgb(86, 217, 219, 0.5));
}
.section-contact .section-subject {
    gap: 2em;
}
.section-contact .section-subject h2 {
    line-height: 1.5em;
    text-align: center;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5em 3em;
    padding-top: 4em;
}
.contact-item {
    max-width: 600px;
    min-width: 475px;
    flex: 1;
}
.contact-item a {
    display: flex;
}
.contact-content {
    width: 100%;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5em 0 0 0.5em;
    padding: 1rem;
}
.contact-content svg {
    height: 1.5em;
}
.contact-content small {
    width: 100%;
    text-align: center;
}

.contact-arrow {
    flex-shrink: 0;
    width: 2em;
    height: stretch;
    border-radius: 0 0.5em 0.5em 0;
    position: relative;
}
.contact-arrow::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-top: solid 2px var(--color-white);
    border-right: solid 2px var(--color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-75%, -50%) rotate(45deg);
}

/* contact-other */
.contact-other {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2em;
    padding-top: 3em;
}
.contact-other__link {
    display: flex;
    align-items: center;
    gap: 1em;
    border-radius: 200px;
    padding: 0.5em 1.5em;
    padding-right: 1em;
}
.contact-other__link .link-arrow::after {
    content: none;
}

/* fixed-img */
.fixed-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: -10;
}
.fixed-img::before {
    content: "";
    width: 100%;
    height: 100px;
    background-image: linear-gradient(180deg, var(--color-white) 50%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.fixed-img img,
.fixed-img video {
    width: 100%;
    min-height: calc(100vh - 260px);
    min-height: calc(100svh - 260px);
    aspect-ratio: 20 / 19;
    display: block;
    object-fit: cover;
    object-position: bottom;
}

/* scroll-margin */
#work, #company {
    scroll-margin-top: 7em;
}

/*===========================================================
    footer
===========================================================*/
.f-inner {
    display: flex;
    flex-direction: column;
    gap: 3em;
    padding: 3em 0;
}

/* f-top */
.f-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3em 2em;
}

.f-logo {
    height: 2em;
    display: flex;
    align-items: flex-end;
}
.f-logo span {
    font-weight: 700;
    white-space: nowrap;
    padding-bottom: 0.25em;
}
.f-logo img {
    width: auto;
    height: 100%;
}

.f-menu {
    display: flex;
    align-items: center;
    gap: 2em 1.5em;
}
.f-menu__link {
    border-right: solid 1px var(--color-black);
    padding-right: 2em;
}
.f-menu__link:last-child {
    border-right: none;
    padding-right: 0;
}

/* f-bottom */
.f-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2em;
}
.f-access {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.f-access li a {
    display: inline;
}
.f-bottom > a {
    display: flex;
    align-items: center;
    gap: 1em;
}
.f-bottom > a svg {
    height: 1.25em;
}

footer .c-copy {
    text-align: center;
}
@media screen and (max-width: 1080px) {
/*===========================================================
    font-size
===========================================================*/

/*===========================================================
    header
===========================================================*/
header .pc-none {
    display: flex;
}
header .sp-none {
    display: none;
}
header {
    max-width: 100%;
    width: 100%;
    border-radius: 0 0 1.5em 1.5em;
    padding: 2.5em 0;
    top: 0;
}
/* h-logo */
.h-logo {
    margin: 0;
    position: fixed;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    z-index: 99;
}

/* h-nav */
.h-nav {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3em;
    background: var(--color-white);
    padding: 3em;
    padding-top: 7em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    overflow-y: scroll;
    transition: all 0.3s;
}
header.h-active .h-nav {
    opacity: 1;
    pointer-events: auto;
}

.h-nav h2 {
    display: block;
    padding-bottom: 1rem;
}

/* h-cta */
.h-cta {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin: 0 auto;
}
.h-cta__link a {
    border-radius: 1em;
    padding: 1.5em;
}
.h-cta__link a dl {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.h-cta__link a dt {
    width: fit-content;
    border-radius: 200px;
    padding: 0.5em 1em;
}
.h-cta__link a dd {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.h-cta__link a dd span {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.h-cta__link a dd svg {
    height: 1.5em;
}

/* h-menu */
.h-menu__wrap {
    max-width: 500px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0 auto;
}
.h-menu {
    width: 100%;
    flex-direction: column;
    gap: 1.25rem;
    border-top: solid 2px var(--color-base);
    padding-top: 1.5rem;
}
.h-menu__link {
    border-right: none;
    padding: 0;
}
.h-contact {
    display: none;
}

/* h-access */
.h-access__wrap {
    max-width: 500px;
    width: 100%;
    flex-direction: column;
    margin: 0 auto;
}
.h-access {
    border-top: solid 2px var(--color-accent);
    padding-top: 1.5rem;
}
.h-access__link {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1em;
    border-radius: 200px;
    border: solid 1px var(--color-accent);
    padding: 0 1em;
}
.h-access__link svg {
    height: 1em;
}
.h-address {
    padding: 1rem 0;
}

/* hb */
.hb {
    width: 3em;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5em;
    border-radius: 50%;
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 99;
    transition: all 0.3s;
}
.hb:hover {
    opacity: 0.6;
}
.hb li {
    width: 1.5em;
    height: 2px;
    border-radius: 200px;
    transform-origin: left;
    transition: all 0.3s;
}
.hb li:nth-child(2) {
    width: 1em;
}
header.h-active .hb li:nth-child(1) {
    transform: rotate(45deg) translate(0, -0.3em);
}
header.h-active .hb li:nth-child(2) {
    width: 1.5em;
    transform: rotate(-45deg)  translate(0, 0.3em);
}
}

@media screen and (max-width: 959px) {
/*===========================================================
    font-size
===========================================================*/
.section-subject h2 {
    font-size: 250%;
}
.contact-content {
    font-size: 180%;
}

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

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

/* sticky-contents */
.sticky-contents {
    flex-direction: column;
    gap: 3em;
}
.sticky-content {
    position: relative;
    top: auto;
}

/*===========================================================
    header
===========================================================*/

/*===========================================================
    wrap
===========================================================*/
/* article-contact */


/*===========================================================
    footer
===========================================================*/
/* f-top */
.f-top {
    flex-direction: column;
    align-items: center;
}
.f-nav {
    max-width: 600px;
    width: 100%;
}
.f-menu {
    flex-direction: column;
}
.f-menu__link {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px var(--color-lightgrey);
    padding-right: 0;
    padding-bottom: 1.5em;
}
.f-menu__link:first-child {
    border-top: solid 1px var(--color-lightgrey);
    padding-top: 1.5em;
}

/* f-bottom */
.f-bottom {
    flex-direction: column;
    align-items: center;
}
.f-access {
    text-align: center;
}
}

@media screen and (max-width: 482px) {
/*===========================================================
    font-size
===========================================================*/
.contact-content {
    font-size: 5.5vw;
    font-size: 5.5svw;
}

.section-subject h2 {
    font-size: 220%;
}

.section-contact .section-subject h2 {
    font-size: 200%;
}
.slider-btn {
    font-size: 100%;
}

/*===========================================================
    parts
===========================================================*/


/*===========================================================
    header
===========================================================*/
/* h-nav */
.h-nav {
    padding: 1.5em;
    padding-top: 7em;
}

/*===========================================================
    wrap
===========================================================*/
/* article-contact */
.contact-item {
    min-width: 100%;
}
.contact-content svg {
    height: 1.25em;
}

/*===========================================================
    footer
===========================================================*/
/* f-top */

/* f-bottom */
}
