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

/* 共通 */
html {
    font-size: 62.5%;
}

body {
    min-height: 100vh;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

ul {
    list-style: none;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.d-flex  {
    display: flex;
}

.flex-between-center {
    justify-content: space-between;
    align-items: center;
}

.contents-width {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 1296px) {
    .contents-width {
        padding-right: 4.8rem;
        padding-left: 4.8rem;
    }
}

/*
| テキスト
*/
.text-center {
    text-align: center;
}

/*
| 背景色
*/
.bg-white {
    background-color: #fff;
}

.bg-black {
    background-color: black;
}

/*
| ボタン
*/
.box-btn {
    margin-top: 3.2rem;
}

.box-btn div {
    position: relative;
}

.box-btn div::after {
    content: "+";
    display: block;
    position: absolute;
    top: 0;
    right: -40px;
}

.cmn-btn {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    border: solid 1px #1D1D1D;
    padding: 20px 73px;
    text-decoration: none;
    vertical-align: middle;
    color: #000;
}

.cmn-btn:hover {
    background-color: #1D1D1D;
    color: #fff;
}

/* 
| ヘッダー
*/
.header {
    width: 100%;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    box-sizing: border-box;
    position: fixed;
}

.header-flex {
    display: flex;
}

.header-block {
    justify-content: space-between;
    align-items: center;
    height: 12.8rem;
}

.h-logo {
    position: relative;
    display: block;
    max-width: 48px;
    z-index: 2;
}

.header-nav-group {
    display: flex;
    column-gap: 64px;
}

/* スマホサイズ */
@media screen and (max-width: 600px) {
    .header-nav-group {
        font-size: 1rem;
        column-gap: 1.6rem;
    }
}

.item-list {
    position: relative;
    z-index: 2;
}

/* 
| TOPmain
*/
.top-main-img {
    position: relative;
    background-image: url(../image/back_photo.png);
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.top-logo {
    position: absolute;
    background-image: url(../image/top_logo.png);
    background-size: 167px auto;
    height: 100vh;
    width: 20%;
    background-repeat: no-repeat;
    background-position: top center;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* タブレットサイズ */
@media screen and (max-width: 834px) {
    .top-logo {
        background-size: 150px auto;
    }
}

@media screen and (max-width: 746px) {
    .top-logo {
        background-size: 120px auto;
    }
}

/* スマホサイズ */
@media screen and (max-width: 600px) {
    .top-logo {
        background-size: 75px auto;
    }
}

.circle {
    overflow-x: hidden;
    position: absolute;
    width: 160px;
    height: 160px;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 0.4px #1D1D1D;
    border-radius: 50%;
    animation: expandAnimation 1.2s ease-in-out forwards;
    z-index: 1;
}

@keyframes expandAnimation {
    0% {
        transform: translateX(-50%) scale(1);
    }
    100% {
        transform: translateX(-50%) scale(3.6);
    }
}

/* タブレットサイズ */
@media screen and (max-width: 834px) {
    .circle {
        width: 120px;
        height: 120px;
    }
}

/* スマホサイズ */
@media screen and (max-width: 600px) {
    .circle {
        width: 80px;
        height: 80px;
    }
}

.top-scroll {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.top-scroll::after {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    animation: to-down 1.5s infinite ease-out;
    content: "";
}

@keyframes to-down {
    0% {
      transform: translateY(0) rotate(45deg);
    }
    30% {
      transform: translateY(.5em) rotate(45deg);
    }
    60% {
      transform: translateY(0) rotate(45deg);
    }
  }

/* 
| TOP横スライドテキスト
*/
.top-about {
    position: relative;
    height: 200vh;
}

.top-about-inner {
    position: fixed;
    z-index: 10;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: none;
    white-space: nowrap;
}

.top-about-txt-first-l {
    padding-right: 12rem;
}

.top-about-txt-first {
    font-size: 12rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.top-about-txt-second-r {
    padding-left: 12rem;
}

.top-about-txt-second {
    font-size: 4.8rem;
    font-family: 'Arial', sans-serif;
    margin-top: 20rem;
    color: #fff;
}

/* タブレットサイズ */
@media screen and (max-width: 834px) {
    .top-about-txt-second {
        margin-top: 10rem;
    }
}

/* スマホサイズ */
@media screen and (max-width: 600px) {

    .top-about-txt-first-l {
        padding-right: 1.4rem;
    }
    
    .top-about-txt-first {
        font-size: 8rem;
    }
    
    .top-about-txt-second-r {
        padding-left: 1.4rem;
    }
    
    .top-about-txt-second {
        font-size: 2rem;
        margin-top: 5rem;
    }
}

/* 
| TOP-business
*/
.top-business-group {
    /* padding-top: 20%; */
    display: flex;
    align-items: center;
}

.top-business-ttl {
    position: relative;
}

.top-business-ttl::before {
    content: url(../image/back_logo.png);
    position: absolute;
    top: -20rem;
    right: 12rem;
    transform: scale(0.5);
}

/* タブレットサイズ */
@media screen and (max-width: 834px) {
    .top-business-ttl::before {
        top: -16rem;
        right: -12rem;
        transform: scale(0.4);
    }
}

@media screen and (max-width: 600px) {
    .top-business-ttl::before {
        top: -16rem;
        right: -13rem;
        transform: scale(0.3);
    }
}

.top-business-txt {
    margin-top: 2.4rem;
    text-align: center;
}

/* 
| TOP-recruit,contact,info
*/
.top-recruit-group {
    /* padding-top: 16%; */
    position: relative;
    display: flex;
    align-items: center;
}

.top-recruit-group .flex-between-center{
    column-gap: 3.2rem;
}

/* タブレットサイズ */
@media screen and (max-width: 834px) {
    .top-recruit-group-item {
        width: 50%;
    }
}

/* スマホサイズ */
@media screen and (max-width: 600px) {
    .top-recruit-group {
        text-align: center;
    }
    .top-recruit-group .d-flex {
        flex-direction: column;
    }
    .top-recruit-group-item {
        width: unset;
    }
    .vertical-line {
        transform: rotate(90deg);
        height: 12rem;
    }
}

.top-sub-txt {
    margin-top: 2.4rem;
}

.vertical-line {
    width: 0.1rem;
    height: 18rem;
    background-color: #000;
}

/* スマホサイズ */
@media screen and (max-width: 600px) {
    .vertical-line {
        transform: rotate(90deg);
        height: 12rem;
    }
}

.top-info {
    width: 100%;
    background-color: #f0f0f0;
    padding: 4.2rem 0;
    position: absolute;
    bottom: 0;
}

.top-info-box {
    vertical-align: middle;
}

.top-info-date {
    position: absolute;
    top: 5rem;
    padding-left: 19.4rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    color: #9FA2A8;
}

.top-info-line {
    width: 3%;
    height: 0.2rem;
    position: absolute;
    left: 54.5rem;
    top: 5.4rem;
    background-color: #fff;
}

.top-info-txt {
    position: absolute;
    left: 60.5rem;
    top: 4.4rem;
    white-space: nowrap;
}

/* 
| フッター
*/
.footer {
    top: 100vh;
    position: sticky;
    padding: 6rem 0 5rem;
    color: #fff;
}

.footer-block {
    justify-content: space-between;
    height: 12.8rem;
}

.f-logo {
    width: 7.2rem;
}

.f-adress {
    margin-left: 4rem;
}

.f-adress-name {
    font-size: 2.4rem;
    font-weight: 600;
}

.f-adress-txt {
    margin-top: 2.4rem;
}

.footer-nav-group {
    column-gap: 64px;
}

.footer-nav-sub {
    font-size: 1rem;
    margin-top: 3.2rem;
}

.f-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    margin-left: 28.4rem;
}

.f-privacy img {
    width: 50px;
    height: 50px;
}

.footer-copywriter {
    font-size: 0.8rem;
    text-align: right;
    margin-top: 2.4rem;
}

.footer-no-pc {
    display: none;
}

/* タブレットサイズ */
@media screen and (max-width: 1100px) {
    .footer-block {
        column-gap: 32px;
        height: unset;
    }
    .footer-no-sp {
        display: none;
    }
    .footer-no-pc {
        display: block;
    }
    .f-adress-txt {
        white-space: nowrap;
    }
    .footer-nav-group {
        column-gap: 24px;
        row-gap: 8px;
        flex-wrap: wrap;
    }
    .f-privacy {
        margin-left: unset;
    }
    .f-privacy img {
        margin-left: unset;
    }
    .footer-nav-sub {
        justify-content: space-between;
    }
}

.f-adress-txt-no-pc {
    display: none;
}

/* スマホサイズ */
@media screen and (max-width: 726px) {
    .footer-block {
        flex-direction: column;
    }
    .f-adress {
        margin-left: 0;
    }
    .f-adress-txt-no-pc {
        display: block;
    }
    .f-adress-txt-no-sp {
        display: none;
    }
    .f-company-info {
        flex-wrap: wrap;
        align-items: center;
        column-gap: 2.4rem;
    }
    .f-logo {
        width: 4.8rem;
    }
    .footer-nav {
        margin-top: 2.4rem;
    }
    .footer-nav-group {
        column-gap: 2rem;
    }
    .footer-nav-sub {
        margin-top: 2.4rem;
    }
}

/* タブレットサイズ */
@media screen and (max-width: 834px) {
    .contents-width {
        padding-right: 3.6rem;
        padding-left: 3.6rem;
    }
}

/* スマホサイズ */
@media screen and (max-width: 600px) {
    .contents-width {
        padding-right: .8rem;
        padding-left: .8rem;
    }
}

/* タブレットサイズ */
@media screen and (max-width: 834px) {}

/* スマホサイズ */
@media screen and (max-width: 600px) {}</pre></body></html>