@charset "UTF-8";

/* header */
.header {
    display: flex;
    top: 0;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    z-index: 1001;
    width: 100%;
    height: 5.5rem;
}
.header-contents {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    height: 5.5rem;
    width: 100%;
    max-width: 100vw;
}

/* nav-menu */
.nav-button {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 30px;
    cursor: pointer;
    z-index: 1000;
}
.nav-button span {
    display: block;
    height: 1px;
    width: 100%;
    background: #222831;
    margin: 5px 0;
    transition: 0.4s;
}
.nav-button span:nth-child(1) {
    margin: 0;
}
.nav-button span:nth-child(2) {
    margin: 7px 0 7px 0;
}
.nav-button span:nth-child(3) {
    margin: 0;
}
.sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #222831;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease; /* フェードインのアニメーション */
    padding: 10rem 0;
    box-sizing: border-box;
    z-index: 100;
}
/* nav-button open */
.sp-nav.open {
    display: flex;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
}
/* nav-button close */
.nav-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #F6F6F6;
}
.nav-button.active span:nth-child(2) {
    opacity: 0;
}
.nav-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #F6F6F6;
}

/* SP nav-menu */
.sp-nav-menu {
    display: flex;
    justify-content: center;
    height: auto;
}
.sp-nav-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    list-style: none;
    font-size: 26px;
}
.sp-nav-list li {
    margin-bottom: 2rem;
}
.sp-nav-list li a {
    color: #F6F6F6;
    transition-property: opacity;
    transition-duration: 0.5s;
    font-weight: 300;
}
.sp-nav-list li a:hover {
    opacity: 0.6;
}
.nav-button.sub span {
    background: #FFFFFF;/* 通常：白（darkセクション） */
}
.nav-button.sub.black span {
    background: #222831;/* 通常：黒（lightセクション） */
}
.nav-button.sub.black.open span {
    background: #FFFFFF;/* 開いたら：白 */
}

/* PC nav-menu */
.pc-nav {
    display: none;
}

/* common */
.mbt {
    margin-bottom: 50px;
}
.pad {
    padding: 40px 0 50px;
}
.mt {
    margin-top: 50px;
}
.pt {
    padding-top: 120px;
}
.container {
    padding: 0 2rem;
    position: relative;
}
.viewall {
    display: flex;
    justify-content: flex-end;
}
.viewall-btn {
    display: flex;
    position: relative;
    align-items: center;
    width: 180px;
    height: auto;
    color: #393E46;
    background-color: transparent;
    border: 1px solid #393E46;
    border-radius: 30px;
    overflow: hidden;
    transition: color 0.5s ease;
    cursor: pointer;
}
.viewall-btn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 35px;
}
.viewall-btn:hover {
    color: #ffffff;
}
.viewall-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #393E46;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: 90;
}
.viewall-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.viewall-text {
    position: relative;
    font-size: 1.15rem;
    z-index: 90;
    line-height: 1;
    left: 30%;
}
.viewall-text a {
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 90;
}
.viewall-btn:hover .viewall-text {
    color: #FFFFFF;
}
.viewall-arrow {
    position: relative;
    z-index: 90;
    display: flex;
    align-items: center;
    margin-right: 5px;

    img {
        width: 25px;
        height: 25px;
    }
}
.viewall-btn:hover .viewall-arrow img {
    content: url('../img/icon/arrow_white.png');
}
.contents-title {
    display: flex;
    flex-direction: column;
}
.contents-title.eng {
    font-weight: 200;
    line-height: 3rem;
}
.contents-title.jpn {
    font-weight: normal;
    font-size: 1rem;
    margin: 10px 0 15px;
    font-weight: bold;
}
.contents-title p {
    padding-left: 2px;
}
.subline {
    height: 1px;
    transform: scaleY(0.5);
    background-color: #222831;
    margin: 10px auto 20px;
    width: calc(100% - 4rem);
}
.hidden {
    display: none;
}
br {
	display: none;
}

/* top */
.top {
    position: relative;
    height: 100vh;
}
.top-cover {
    background-color: #F6F6F6;
    height: auto;
    z-index: 1000;
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.line {
    position: absolute;
    background-color: #28A7E1;
    pointer-events: none;
}
/* 縦ライン */
.line.vertical {
    left: 45%;
    top: 0;
    width: 6px;
    height: 0;
    z-index: 500;
    animation: growVertical 1s ease-out forwards;
}
/* 横ライン */
.line.beside {
    top: 45%;
    left: 0;
    width: 0;
    height: 6px;
    z-index: 500;
    animation: growHorizontal 1s ease-out forwards;
    animation-delay: 0.5s;
}
@keyframes growVertical {
    from { height: 0; }
    to { height: 100%; }
}
@keyframes growHorizontal {
    from { width: 0; }
    to { width: 100%; }
}
.top-logo-t {
    z-index: 900;
    position: absolute;
    width: auto;
    left:1.5%;
    top: calc(45% - 45px - 0px);
}
.top-logo-t img {
    width: auto;
    height: 45px;
}

/* catchphrase */
.catchphrase {
    height: auto;
    display: flex;
    position: relative;
    margin-top: 0;
    padding: 50px 0 30px 0;
    background-color: #FFFFFF;
    border-radius: 50px;
}

.catch-body {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 0 1rem;
}
.catch {
    align-items: flex-start;
    padding: 20px 0;
}
.catch.main {
    font-size: 30px;
    align-items: flex-start;
}
.catch-text {
    margin-bottom: 60px;
}
.catch.main.nowrap br {
    display: none;
}
.catch-kerning {
    padding-left: 12px;
    font-weight: 300;
}

/* service */
.service {
    display: flex;
    position: relative;
    flex-direction: column;
    flex-wrap: nowrap;
}
.service-body {
    position: relative;
}
.service-body hr {
    border: solid 1px;
    border-color: #222831;
    margin-top: 0;
    margin-bottom: 6px;
}
.service-text {
    margin-bottom: 20px;
}
.service-img {
    width: 100%;
    margin-bottom: 40px;
}
.service-img img {
    display: block;
    margin-bottom: 40px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-bottom-left-radius: 50px;
}
.pc-service-img {
    display: none;
}
.service-body .subline {
    width: 100%;
}
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 2.0s;
    &.fadein-bottom{
        transform: translate(0,50px);
    }
    &.scrollin{
        opacity: 1 !important;
        transform: translate(0, 0) !important;
}
}

/* works */
.works-body {
    position: relative;
}
.works .contents-title {
    padding: 0 0 0 1rem;
}
.works .contents-title p {
    padding-left: 3px;
}
.works-carousel {
    position: relative;
    box-sizing: content-box;
    z-index: 500;
    overflow: hidden;
    margin-bottom: 40px;
}
.works-carousel-list {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    max-height: 250px;
}
.works-carousel-item {
    height: 200px;
    background: #FFFFFF;
    border: solid 1px #393E46;
    margin-right: 30px;
    border-radius: 10px;
    overflow: hidden;
    width: 280px;
}
.works-item-head {
    height: 35px;
    background-color: #393E46;
    border-radius: 9px 9px 0 0;
}
.item-box {
    padding: 15px;
    height: auto;
}
.item-title {
    height: 20%;
    padding-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: normal;
}
.item-detail {
    height: 70%;
}
.item-date {
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 3px;
    font-size: 11px;
}
.slick-list {
    padding: 0 20% 0 2rem !important;
}
.works .viewall {
    padding-right: 2rem;
}

/* about */
.about {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    margin-right: auto;
    margin-left: 0;
    width: 87%;
    border-top-right-radius: 50px;
}
.about .container {
    padding: 0;
}
.about-cover {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
}
.about-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    /* background: rgba(57, 62, 70, 0.6); */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px 2rem 2rem;
}
.about-text {
    margin-bottom: 40px;
}
.viewall.left {
    justify-content: flex-start;
    margin-top: 25px;
}
.about-body .eng,
.about-body .jpn,
.about-body p,
.about-body a,
.about-body .viewall-btn,
.equipment-body .jpn,
.equipment-body p,
.equipment-body .eng,
.equipment-body .file-dl-btn {
    color: #FFFFFF !important;
}
.about-body .viewall-btn {
    border: 1px solid #FFFFFF;
}
.about-body .viewall-btn::before {
    background-color: #FFFFFF;
}
.about-body .viewall-btn:hover .viewall-text {
    color: #222831 !important;
}
.about-body .viewall-btn:hover .viewall-arrow img {
        content: url(../img/icon/arrow.png);
}

/* news */
.news-body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.news-text {
    margin-bottom: 20px;
}
.insta-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    max-width: 100%;
    padding: 0;
    margin-bottom: 3rem;
}
.insta-list-item {
    width: 25%;
    overflow: hidden;
}
.insta-list-item img {
    /* transition-property: opacity;
    transition-duration: 0.5s; */
    transition: opacity 0.5s, transform 0.5s;
    width:100%;
    display:block;
}
.insta-list-item img:hover {
    opacity: 0.6;
    transform: scale(1.08);
}
.viewall.center {
    justify-content: center;
}
.viewall.center .viewall-text {
    left: 27%;
}
/* contact */
.contact-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}
.contact-body .contents-title,
.contact-body .contact-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px auto 0;
}
.contact-body .contents-title .eng {
    font-size: 2.5rem;
    margin-bottom: 3px;
}
.contact-text {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}
.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 0;
    width: 250px;
}
.tel,
.mail {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 20px;
    width: 100%;
    height: 80px;
    transition: background-color 0.3s ease;
}
.mail:hover {
    background-color: rgba(57, 62, 70, 0.6);
}
.mail-text {
    font-size: 18px;
    color: #FFFFFF;
}
.tel {
    flex-direction: column;
    background-color: #FFFFFF;
    margin-bottom: 30px;
}
.telno {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 1rem;
    text-decoration: none;

    img {
        width: 23px;
        height: 23px;
        margin-right: 5px;
    }
}
.teltime {
    display: inline-block;
    font-size: 12px;
    margin: 0;
    vertical-align: text-top;
    line-height: 1rem;
    padding-top: 5px;
}
.mail {
    flex-direction: row;
    background-color: #393E46;
    gap: 7px;
}
.mail-icon {
    width: 23px;
    height: 23px;
}
.mail-text a {
    color: #FFFFFF;
    font-size: 18px;
}

/* info */
.info {
    background-color: #28A7E1;
    margin-top: 0;
    height: auto;

    a {
        color: #FFFFFF;
    }
}
.info-body {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
}
.info-nav {
    display: flex;
}
.info-nav-list {
    list-style: none;
    font-weight: 300;
    font-size: 1.8rem;
}
.info-nav-list li {
    margin-bottom: 10px;
}
.info-nav-list li a {
    cursor: pointer;
    transition: color .3s;
    font-weight: 300;
}
.info-nav-list li a:hover {
    color: #222831;
}
.insta-icon {
    width: 35px;
    height: 35px;
    margin: 23px 0 40px 0;
}
.insta-icon img {
    transition: 0.3s ease;
}
.insta-icon:hover img {
    content: url("../img/icon//instagram_black.png");
}
.info-logo img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}
.info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    span {
        margin-bottom: 5px;
        color: #FFFFFF;
        font-size: 12px;
        line-height: 1.5;
        text-decoration: none;
        pointer-events: none;
    }
}
.colon {
    position: relative;
    top: -0.1em;
}
.hyphen {
    margin: 0 1px;
}
.hyphen-right{
    margin: 0 -1px 0 1px;
}

/* footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 40px;
    background-color: #393E46;
}

/* 20260305-追加-「WORKS非表示」 */
.works-hidden {
    padding: 40px 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.works-hidden p {
    font-size: 22px;
}
.hidden {
    display: none;
}


/* ------- TABLET ------- */
/* ------- 768px以上1023px以下 ------- */
@media (min-width: 768px) and (max-width: 1023px) {

/* header */
.header-contents {
    padding: 1.2rem 2rem;
}
.nav-button {
    display: block;
}
.pc-nav {
    display: none;
}
.sp-nav-list {
    padding: 2rem;
    gap: 1.5rem;
}
.sp-nav-list li {
    margin-bottom: 1rem;
}

/* common */
.mb {
    margin-bottom: 100px;
}
.contents-title.eng {
    line-height: 5rem;
}
.contents-title.jpn {
    font-size: 1.2rem;
}
/* .viewall-btn {
    width: 250px;
}
.viewall-text {
    padding-left: 80px;
} */
.contents-title.eng {
    margin-bottom: 8px;
    line-height: 5rem;
}

/* top */
.top-logo-t {
    left:1.5%;
    top: calc(45% - 95px - -11px);
}
.top-logo-t img {
    height: 95px;
}

/* catchphrase */
.catchphrase {
    border-radius: 40px;
}
.catch-body {
    padding: 0 8rem;
    gap: 2rem;
    align-items: flex-start;
}
.catch {
    text-align: start;
}
.catch.main {
    font-size: 48px;
}
.catch-text {
    font-size: 1rem;
}

/* service */
.service-body {
    height: auto;
}
.service-img img {
    height: 350px;
}
.pc-service-img {
    padding: 0;
}

/* works */
.item-title {
    font-size: 1.1rem;
    font-weight: bold;
}
.item-date {
    font-size: 13px;
}

/* about */
.about-cover {
    height: 450px;
}
.about-body {
    padding: 50px 2rem 20px 2rem;
}
.viewall.left {
    margin-top: 105px;
}

/* news */
.viewall.center {
    margin-bottom: 100px;
}

/* contact */
.contact-body {
    max-width: 1000px;
    margin: auto;
}
.contact-body .contents-title.eng {
    font-size: 3rem;
    margin-bottom: 6px;
}
.contact-body .contact-text {
    flex-direction: row;
    font-size: 1.2rem;
}
.sub-contact .subline {
    margin: 20px auto 20px;
}
.contact-btn {
    width: 350px;
}
.tel,
.mail {
    height: 100px;
}
.telno {
    font-size: 27px;
    img {
        width: 30px;
        height: 30px;
    }
}
.teltime {
    font-size: 14px;
    padding-top: 6px;
}
.mail {
    gap: 10px;
}
.mail-icon {
    width: 30px;
    height: 30px;
}
.mail-text {
    font-size: 20px;
}

/* info */
.nowrap br {
    display: none;
}

/* 20260305-追加-「WORKS非表示」 */
.works-hidden {
    padding: 150px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.works-hidden p {
    font-size: 28px;
}

}

@media (min-width: 768px) and (max-width: 1240px) {
.contact .container,
.info .container {
    padding: 0 50px;
}
#sub-contents .contact .container,
#sub-contents .info .container {
    padding: 0 50px;
}

}

/* ------- PC ------- */
/* ------- 1024px以上 ------- */

@media (min-width: 1024px) {

/* header */
.header {
    height: 100px;
    justify-content: flex-end;
}
.header-contents {
    height: 100px;
    max-width: 100%;
}
.nav-button {
    display: none;
}
.nav-button span {
    display: none;
}

/* PCナビメニュー */
.pc-nav {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    z-index: 1000;
    padding-right: 50px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeSlideDown 1.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.8s;
}
.pc-nav-list {
    display: flex;
    flex-direction: row;
    font-weight: 300;
}
.pc-nav-list li {
    margin-left: 30px;
}
.pc-nav-list li a {
    cursor: pointer;
    transition: color .3s;
    font-size: 30px;
    font-weight: 300;
}
.pc-nav-list.dark a {
    color: #222831;
}
.pc-nav-list a {
    color: #FFFFFF;
}
.nav-dark {
    color: #222831 !important;
}
.pc-nav-list li a:hover {
    color: #94A1B6 !important;
}
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* common */
.container {
    padding: 0 220px;
    width: 100%;
}
.viewall {
    padding: 0;
}
.viewall.ct {
    width: 100%;
}
.viewall-btn {
    width: 250px;
    padding: 5px 0;
}
.viewall-btn a {
    height: auto;
}
.viewall-text {
    font-size: 1.4rem;
    letter-spacing: 1.2px;
}
.viewall-arrow {
    right: 3%;
    margin: 0;
    img {
        width: 30px;
        height: 35px;
    }
}
.mbt {
    margin-bottom: 130px;
    width: 100%;
    max-width: 100vw;
}
.sidepad {
    padding: 0 50px;
}
.contents-title.eng {
    line-height: 7rem;
    margin-bottom: 10px;
}
.contents-title.jpn {
    font-size: 1.3rem;
    margin-bottom: 30px;
    margin-top: 0;
}
.contents-title p {
    padding-left: 5px;
}
.pad {
    padding: 60px 0 80px;
}
br {
	display: block;
}

/* top */
.top-logo-t {
    left:1.5%;
    top: calc(45% - 128px - -15px);
}
.top-logo-t img {
    height: 128px;
}

/* catchphrase */
.catchphrase {
    padding: 200px 0;
    margin-right: auto;
    margin-left: auto;
    border-radius: 120px;
}
.catch-body {
    flex-direction: row;
    padding: 0;
    justify-content: space-between;
}
.catch {
    padding: 0;
}
.catch.main {
    width: 48%;
    font-size: clamp(3.125rem, -1.875rem + 7.8vw, 6.5rem);
    font-weight: 300;
    padding-right: 10px;
    line-height: 1.7;
}
.catch.sub {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width:48%;
    padding: 30px 0;
    padding-left: 10px;
}
.catch-text{
    height: 50%;
    font-size: 1.15rem;
    padding: 0;
}
.catch.main.nowrap br {
    display: block;
}
.catch-kerning {
    letter-spacing: 3.3px;
    padding: 0;
    font-weight: 300;
}

/* service */
.service .container.main{
    margin: 0;
    box-sizing: border-box;
    padding: 0 0 0 220px;
}
.service-body {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.service-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    padding-right: 50px;
    width: 40%;
}
.subline {
    margin-bottom: 30px;
}
.service-text {
    margin-bottom: 100px;
}
.service-img {
    display: none;
}
.pc-service-img {
    display: block;
    width: 60%;
    padding-left: 50px;
}
.pc-service-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-bottom-left-radius: 120px;
}

/* works */
.works .contents-title {
    padding-left: 110px;
}
.works .contents-title p {
    padding-left: 10px;
}
.works-carousel-item {
    height: 250px;
    width: 300px;
}
.item-title {
    font-weight: bold;
    font-size: 1.3rem;
}
.item-date {
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.works .viewall {
    justify-content: flex-start;
    padding-left: 220px;
}
.slick-list {
    padding: 0 13% !important;
}

/* about */
.about-cover {
    border-top-right-radius: 120px;
    height: 700px;
}
.about .container{
    position: relative;
    margin: 0;
    width: calc(100% - 220px);
    height: auto;
}
.about-body {
    border-top-right-radius: 120px;
    padding: 100px 0 100px 220px;
}
.about .viewall.left {
    margin-top: 110px;
}

/* news */
.news {
    margin-bottom: 60px;
}
.viewall.center {
    margin-bottom: 160px
}
.subline {
    width: calc(100% - 100px);
}

/* contact */
.contact-body {
    max-width: 1550px;
    margin: auto;
}
.contact-body .contents-title .eng{
    font-size: 4rem;
}
.contact-body .contact-text {
    flex-direction: row;
    font-size: 1.3rem;
}
.contact-btn {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
.tel, .mail {
    width: 500px;
    max-width: 100%;
    min-width: 200px;
    height: 110px;
}
.tel {
    margin: 0 40px 0 0;
    padding: 1.5rem 2.5rem;
    white-space: nowrap;
}
.telno {
    display: flex;
    align-items: center;
    font-size: clamp(1.344rem, 0.879rem + 1.3vw, 2.2rem);

    img {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
}
.teltime {
    font-size: clamp(0.656rem, 0.263rem + 1vw, 1rem);
    font-size: 15px;
    padding-top: 8px;
}
.mail {
    margin-left: 40px;
    padding: 1.5rem 2.5rem;
    white-space: nowrap;
}
.mail-icon {
    width: 35px;
    height: 35px;
}
.mail-text {
    font-size: 22px;
}

/* info */
.footer-nav, .info-left {
    width: 500px;
    max-width: 100%;
    min-width: 200px;
}
.info-body {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 80px 0;
    width: 100%;
    max-width: 1550px;
    margin: auto;
}
.footer-nav {
    margin-left: 40px;
}
.info-nav-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;

    li {
        font-size: clamp(1rem, 0.714rem + 1.45vw, 1.85rem);
    }
}
.info-left {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
}
.insta-icon {
    order: 3;
    width: 38px;
    height: 38px;
}
.info-logo {
    order: 1;

    img {
        width: 280px;
    }
}
.info-text {
    order: 2;
    span {
        font-size: 14px;
    }
}
.nowrap br {
    display: none;
}
.catch-body .nowrap br {
    display: block;
}

/* footer */
.info-nav-list li a {
    cursor: pointer;
    transition: color .3s;
}
.info-nav-list li a:hover {
    color: #222831;
}

/* 20260305-追加-「WORKS非表示」 */
.works-hidden {
    padding: 110px 0;
}
.works-hidden p {
    font-size: 32px;
}
.hidden {
    display: none;
}
}