<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* メインビジュアル */
#main-visual.wrapper {
    position: relative;
}

.vegas-content-scrollable {
    overflow: hidden !important;
}

#main-visual #slider {
    width: calc(100vw - 200px);
    height: calc(100vh - 125px);
    max-height: 750px;
    margin: 20px;
    border-radius: 50px 50px 0 50px;
    border: 1px solid #fff;
}

#main-visual #SliderInner div {
    width: 520px;
    padding: 50px 0 20px 40px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-radius: 50px 0 0 0;
}
#main-visual #SliderInner p {
    color: var(--blue);
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 0.08em;
    animation-name: slideIn;
    animation-timing-function: cubic-bezier(0.2, 1, 0.4, 1);
    animation-duration: 0.9s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes slideIn {
    0% {
    transform: translateX(100px);
    opacity: 0;
    }
    100% {
    transform: translateX(0);
    }
    40%,100% {
    opacity: 1;
    }
}
#main-visual #SliderInner p br {
    display: none;
}
#main-visual #SliderInner p span {
    width: 520px;
    margin: 20px 15px 0 0;
    display: block;
    font-size: 13px;
    font-family: var(--eng-font);
    font-style: italic;
    font-weight: normal;
    letter-spacing: 0.1em;
}

#main-visual #number div {
    width: 95px;
    color: #ccc;
    font-family: var(--eng-font);
    font-size: 12px;
    line-height: 2.5em;
    text-align: center;
    letter-spacing: 0.12em;
    border: 1px solid #ccc;
    border-radius: 50px;
    position: absolute;
    left: 30px;
    bottom: 20px;
    mix-blend-mode: luminosity;
}
#main-visual #number div p {
    display: inline;
    font-size: 130%;
}
#main-visual #number div span {
    width: 0.8em;
    height: 1px;
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
    background: #ccc;
    transform:rotate(-45deg);
}

#main-visual .corner01 {
    width: 45px;
    height: 45px;
    background: url(../index/corner.svg);
    position: absolute;
    right: 0;
    bottom: 144px;
}
#main-visual .corner02 {
    width: 45px;
    height: 45px;
    background: url(../index/corner.svg);
    position: absolute;
    right: 520px;
    bottom: 0;
}

.scroll {
    width: 55px;
    height: 180px;
    display: block;
    padding: 30px 15px;
    position: absolute;
    bottom: -15px;
    right: 0;
    z-index: 9;
}

.scroll span {
    color: #b7b7b7;
    font-size: 13px;
    font-family: var(--eng-font);
    letter-spacing: 0.08em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.scroll::before {
    content: "";
    width: 6px;
    height: 6px;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    background: #b7b7b7;
    animation:
    circlemove 2.5s ease-in-out infinite,
    cirlemovehide 2.5s ease-out infinite;
}
.scroll::after {
    content: "";
    width: 1px;
    height: 55px;
    margin: auto;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background:#b7b7b7;
}

@keyframes circlemove {
        0% {bottom: 70px;}
        100% {bottom: 20px;}
}
@keyframes cirlemovehide {
        0% {opacity: 0}
        50% {opacity: 1;}
        80% {opacity: 0.9;}
        100% {opacity: 0;}
}

/* 事業内容 */
#service .service-box {
    margin: 70px 0 0;
    display: flex;
    justify-content: space-between;
}
#service .service-txt {
    max-width: 470px;
}

#service .switch {
    margin-top: 40px;
}

#service .accordion {
    display: block;
    height: 80px;
    margin: 0;
    padding-left: 85px;
    color: var(--blue);
    border: none;
    cursor: pointer;
    transition: 0.5s ease-in;
    position: relative;
    background: #fff;
}
#service .accordion p {
    font-size: 20px;
    font-weight: 500;
    line-height: 80px;
}
#service .accordion br {
    display: none;
}
#service .accordion span {
    width: 67px;
    height: 67px;
    display: inline-block;
    font-family: var(--eng-font);
    line-height: 62px;
    vertical-align: middle;
    text-align: center;
    font-size: 29px;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.02em;
    border-radius: 50%;
    border: 2px solid var(--blue);
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    top: 50%;
    transition : all 0.5s ease 0s;
}
#service .accordion.active {
    margin-bottom: 0;
    pointer-events: none;
}
#service .accordion.active span {
    color: #fff;
    background: var(--blue);
}
#service .accordion .btn {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 0;
    top: 33%;
    background: var(--gray);
    border-radius: 50%;
    transition : all 0.3s ease 0s;
}
#service .accordion:hover .btn,
#service .accordion.active .btn {
    background: #ccc;
}
#service .accordion .btn::before,
#service .accordion .btn::after  {
    content: '';
    display: inline-block;
    width: 2px;
    height: 12px;
    background-color: #fff;
    position: absolute;
    right: 15px;
    top: 10px;
    transition : all 0.3s ease 0s;
}
#service .accordion .btn::after {
    transform: rotate(90deg);
}
#service .accordion.active .btn::before {
    opacity: 0;
}

#service hr {
    height: 1px;
    border: none;
    background: #ccc;
    margin: 20px 0;
}

#service .panel {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
}
#service .panel p {
    margin-top: 10px;
    position: relative;
    font-size: 95%;
}
#service .panel span {
    margin: 20px 0 0;
    display: block;
    text-align: right;
}
#service .panel a {
    color: var(--blue);
    font-family: var(--eng-font);
    font-size: 15px;
    font-weight: 600;
}

#service #service-img {
    width: 450px;
    height: 570px;
    margin-left: 6%;
    position: relative;
    background: #f9f9f9;
    border-radius: 50px;
    overflow: hidden;
}
#service #service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition : all 0.5s ease 0s;
}

#service .loader {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 製品紹介 */
#products {
    padding: 80px 3% 120px;
    background: var(--lightgray);
    border-radius: 70px;
    --scroll-gap: 30px;
}

#products .products-box {
    display: flex;
    justify-content: space-between;
}
#products .products-box p.read {
    width: 470px;
    margin-top: 30px;
}

.box-02 {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slides-wrapper {
    display: flex;
    gap: 30px;
    width: calc(100% - 50px);
    margin: 0 auto;
    overflow: hidden;
}
.slides-wrapper img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

#products .auto-scroll {
    width: 98vw;
    margin: 20px calc(50% - 50vw) 30px;
    display: flex;
    overflow: hidden;
}
#products .auto-scroll ul {
    display: flex;
    align-items: center;
   /* animation: loop 20s infinite linear 0.5s both; */
}
@keyframes loop {
    from {transform: translateX(0);}
    to {transform: translateX(-100%);}
}
#products .auto-scroll:hover ul {
    animation-play-state: paused;
}
#products .auto-scroll ul li {
    width: calc(100vw / 6);
    transition: all 0.3s;
    opacity: 0;
}
/* #products .auto-scroll ul li:hover {
    transform: translateY(-15px);
    transform: scale(1.08,1.08);
    cursor: pointer;
} */
#products .auto-scroll ul li::after {
    background: none;
}
#products .auto-scroll ul li img {
    width: 80%;
    height: 210px;
    object-fit: contain;
}

#products .more-btn {
    width: 320px;
    height: 60px;
    margin: auto;
    border: 2px solid var(--blue);
    border-radius: 50px;
    background: #fff;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
}
#products .more-btn a {
    width: 100%;
    display: block;
    color: var(--blue);
    font-size: 16px;
    font-family: var(--eng-font);
    font-weight: 600;
    line-height: 60px;
    text-align: center;
}
#products .more-btn a::after {
    background: none;
}
#products .more-btn::after {
    content: "";
    width: 100%;
    display: block;
    margin: auto;
    background: var(--blue);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
}
#products .more-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .6s, transform .4s ease-in-out;
}
#products .more-btn:hover a {
    color: #fff;
}

/* リクルート */
#recruit {
    margin: 120px 0;
}
#recruit .section-box {
    position: relative;
}
#recruit .recruit-title {
    max-width: 530px;
    margin: auto;
    text-align: center;
}
#recruit .recruit-title img {
    width: 100%;
}
#recruit .recruit-title p {
    width: 500px;
    margin: 20px 0 0;
    color: var(--r-pink);
    font-size: 33px;
    font-weight: 700;
    text-align-last: justify;
}
#recruit .recruit-title p span {
    font-size: 100%;
    color: var(--r-blue);
}

#recruit .read {
    margin: 40px auto 0;
    text-align: center;
}

#recruit .recruit-btn {
    margin-top: 40px;
}

#recruit .recruit-btn .comment {
    width: 210px;
    height: 40px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 99;
    background: var(--r-pink);
    border-radius: 50px;
    animation: floating 1s ease-in-out infinite alternate-reverse;
}
@keyframes floating {
    0% {transform: translateY(-10%);}
    100% {transform: translateY(10%);}
}
#recruit .recruit-btn .comment:before {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    margin-left: -10px;
    border: 9px solid transparent;
    border-top: 10px solid var(--r-pink);
}
#recruit .recruit-btn .comment p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 40px;
}

#recruit .recruit-btn .btn {
    width: 340px;
    height: 70px;
    margin: 5px auto 0;
    background: var(--r-blue);
    border-radius: 50px;
    box-shadow: 0 8px rgb(37, 30, 28, 0.2);
    position: relative;
    top: 0;
    z-index: 9;
    transition: .2s ease-in-out;
}
#recruit .recruit-btn .btn:hover {
    top: 8px;
    box-shadow: 0 0 #adadad;
}
#recruit .recruit-btn .btn a {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-family: var(--r-font);
    line-height: 70px;
}
#recruit .recruit-btn .btn a::after {
    background: none;
}

#recruit .back-txt {
    width: 100vw;
    margin: -20px calc(50% - 50vw) 0;
}
#recruit .back-txt div {
    color: var(--lightgray);
    font-size: 110px;
    font-family: var(--r-font);
}
#recruit .back-txt .swiper-wrapper {
    transition-timing-function: linear;
}
#recruit .back-txt .swiper-wrapper .swiper-slide {
    width: 1400px;
    height: 100%;
    color: var(--lightgray);
    font-size: 110px;
    font-family: var(--r-font);
    line-height: 110px;
}

#recruit .recruit-img .mask {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 100%;
    position: absolute;
}
#recruit .recruit-img .mask div img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
#recruit .recruit-img .mask.img01 {
    width: 24%;
    max-width: 260px;
    bottom: 130px;
    left: -100px;
}
#recruit .recruit-img .mask.img02 {
    width: 28%;
    max-width: 300px;
    top: 10px;
    right: -90px;
}
#recruit .recruit-img div.color {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--r-blue);
}

@container (max-width: 1024px) {
/* メインビジュアル */
#main-visual #slider {
    width: calc(100vw - 160px);
    height: 470px;
}
#main-visual #SliderInner div {
    width: 320px;
    padding: 30px 20px 20px 40px;
}
#main-visual #SliderInner p {
    font-size: 36px;
    line-height: 1.3em;
}
#main-visual #SliderInner p br {
    display: block;
}
#main-visual #SliderInner p span {
    margin-top: 0;
}

#main-visual .corner01 {
    bottom: 190px;
}
#main-visual .corner02 {
    right: 320px;
}

/* 事業内容 */
#service .section-box {
    margin: 0 0 0 auto;
}

#service .read br {
    display: none;
}

#service #service-img {
    border-radius: 50px 0 0 50px !important;
}

#service .service-txt {
    width: 400px;
}

#service .switch {
    margin-top: 25px;
}
#service .accordion {
    padding: 13px 0 0 75px;
}
#service .accordion p {
    font-size: 18px;
    line-height: 1.8rem;
}
#service .accordion br {
    display: block;
}
#service .accordion span {
    width: 60px;
    height: 60px;
    font-size: 26px;
    line-height: 57px;
}

/* 製品紹介 */
#products {
    padding: 60px 3% 100px;
}
#products .products-box p.read {
    max-width: 400px;
    margin-left: 20px;
}
#products .auto-scroll ul li img {
    width: 85%;
    max-height: 150px;
}

/* リクルート */
#recruit .recruit-title {
    max-width: 400px;
}
#recruit .recruit-title p {
    width: 370px;
    font-size: 24px;
}
#recruit .recruit-btn .btn a {
    font-size: 29px;
}
#recruit .back-txt p {
    font-size: 90px;
}

#recruit .recruit-img .mask.img01 {
    top: 0;
    left: -60px;
}
#recruit .recruit-img .mask.img02 {
    right: -70px;
}

#recruit .back-txt .swiper-wrapper .swiper-slide {
    width: 1150px;
    font-size: 90px;
}
}

@container (max-width: 667px) {
/* メインビジュアル */
#main-visual #slider {
    width: 90%;
    height: calc(100svh - 100px);
    max-height: 600px;
    border-radius: 30px 30px 0 30px;
}
#main-visual #SliderInner p {
    font-size: 22px;
}
#main-visual #SliderInner p span {
    font-size: 9px;
}
#main-visual #SliderInner div {
    width: 200px;
    padding: 20px 20px 0 20px;
    border-radius: 30px 0 0 0;
}

#main-visual #number div {
    width: 80px;
    font-size: 10px;
    line-height: 2em;
    top: 20px;
    left: 20px;
    bottom: auto;
}
#main-visual #number div p {
    font-size: 120%;
}
#main-visual .corner01 {
    width: 30px;
    height: 30px;
    bottom: 104px;
}
#main-visual .corner02 {
    width: 30px;
    height: 30px;
    right: 200px;
}

.scroll {
    width: 50px;
    height: 140px;
    padding: 30px 12px;
}
.scroll::before {
    width: 4px;
    height: 4px;
    animation:
    circlemove-sp 2.5s ease-in-out infinite,
    cirlemovehide 2.5s ease-out infinite;
    ;
}
.scroll::after {
    width: 1px;
    height: 40px;
}
.scroll span {
    font-size: 9px;
}
@keyframes circlemove-sp {
    0% {bottom: 55px;}
    100% {bottom: 20px;}
}

/* 事業内容 */
#service .section-box {
    margin: auto;
}
#service .service-box {
    display: block;
    margin: 40px 0 0;
}
#service .service-txt {
    width: 100%;
}

#service .switch {
    width: 100vw;
    margin: 40px calc(50% - 43vw) 0;
}
#service .switch hr {
    display: none;
}

#service .accordion {
    pointer-events: none;
}
#service .accordion.one {
    padding-top: 220px;
    background: url("../index/service01.jpg") center center / cover no-repeat;
    border-radius: 40px 0 0 0;
}
#service .accordion.two {
    margin-top: 50px;
    padding-top: 220px;
    background: url("../index/service02.jpg") center bottom -20px / cover no-repeat;
    border-radius: 40px 0 0 0;
}
#service .accordion.three {
    margin-top: 50px;
    padding-top: 220px;
    background: url("../index/service03.jpg") center bottom -20px / cover no-repeat;
    border-radius: 40px 0 0 0;
}
#service .accordion p {
    padding: 15px 0 0 70px;
    font-size: 17px;
    position: absolute;
    left: -5px;
}
#service .accordion br {
    display: none;
}
#service .accordion span {
    width: 53px;
    height: 53px;
    font-size: 23px;
    line-height: 53px;
    border: 6px solid #fff;
    box-sizing: content-box;
    left: -2px;
    top: 35%;
    color: #fff;
    background: var(--blue);
}

#service .panel {
    width: calc(100vw - 14.5vw);
    max-height: 100% !important;
    overflow: auto;
    margin-top: 45px;
}
#service .panel p {
    text-align: justify;
}
#service .panel span {
    width: 235px;
    height: 50px;
    margin: 25px auto 0;
    padding: 0 30px;
    display: block;
    text-align: left;
    background: var(--gray);
    border-radius: 50px;
    position: relative;
}
#service .panel span::before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #fff;
    background-image: url(../index/icon-plus.svg);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    top: 10px;
}
#service .panel span a {
    width: 100%;
    font-size: 14px;
    line-height: 50px;
    display: block;
}
#service .panel span a::after {
    background: none;
}

#service .accordion .btn,
#service #service-img {
    display: none;
}

/* 製品紹介 */
#products {
    width: 100%;
    padding: 40px 0 70px;
    border-radius: 40px;
}
#products .products-box {
    display: block;
}
#products .section-box {
    width: 85%;
}
#products .products-box p.read {
    width: 100%;
    max-width: 100%;
    margin: 40px 0 0;
}
#products .more-btn {
    width: 235px;
    height: 50px;
}
#products .more-btn a {
    font-size: 14px;
    line-height: 50px;
}
#products .auto-scroll {
    width: 100%;
    margin: 20px auto;
    display: block;
}
#products .auto-scroll ul {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
}
#products .auto-scroll ul:last-child {
    display: none;
}
#products .auto-scroll ul li {
    width: 33.333%;
    text-align: center;
}
#products .auto-scroll ul li:last-child {
    display: none;
}
#products .auto-scroll ul li img {
    width: 90%;
    max-height: none;
    height: auto;
}

/* リクルート */
#recruit {
    width: 100%;
    margin: 70px 0 90px;
}
#recruit .recruit-title {
    width: 95%;
    max-width: 320px;
}
#recruit .recruit-title p {
    width: 100%;
    font-size: 21px;
    margin: 10px 0 0;
}

#recruit .recruit-btn .btn {
    width: 85%;
    height: 60px;
    max-width: 400px;
    box-shadow: 0 0;
    border-radius: 30px 30px 0 0;
}
#recruit .recruit-btn .btn:hover {
    top: 0;
}
#recruit .recruit-btn .btn a {
    font-size: 25px;
}

#recruit .read {
    margin: 25px auto 0;
    text-align: justify;
}

#recruit .back-txt p {
    font-size: 75px;
}

#recruit .recruit-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    display: flex;
}
#recruit .recruit-img .mask {
    height: 280px;
    width: 50% !important;
    max-width: 50% !important;
    position: inherit;
    border-radius: 0;
}
#recruit .recruit-img .mask div {
    height: 100%;
}
#recruit .recruit-img .mask div img {
    height: 100%;
}

#recruit .back-txt {
    margin-top: 20px;
}

#recruit .back-txt .swiper-wrapper .swiper-slide {
    width: 1030px;
    font-size: 80px;
}

}</pre></body></html>