﻿:root {
    --color-red: #d7003a;
    --color-blue: #004f9d;
    --color-white: #fff;
    --border-gray: #4c4949;
    --table-gray: #727171;
    --table-border: #e6e5e5;
    --main-color-rgb:230,0,18;
    --main-color: rgba(var(--main-color-rgb), 1);
    --txt-color: #231815;
    --bg-gray: #e6e5e5;
    --bg-gradient: rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0);
    --gradient-top: to top;
    --gradient-right: to right;
    --gradient-bottom: to bottom;
    --gradient-left: to left;
    --gradient-top-left: to top left;
    --gradient-bottom-left: to bottom left;
    --bg-gradation-top: linear-gradient(var(--gradient-top), var(--bg-gradient));
    --bg-gradation-right: linear-gradient(var(--gradient-right), var(--bg-gradient));
    --bg-gradation-bottom: linear-gradient(var(--gradient-bottom), var(--bg-gradient));
    --bg-gradation-left: linear-gradient(var(--gradient-left), var(--bg-gradient));
    --bg-gradation-top-left: linear-gradient(var(--gradient-top-left), var(--bg-gradient));
    --bg-gradation-bottom-left: linear-gradient(var(--gradient-bottom-left), var(--bg-gradient));
    --font-jp: YakuHanJP, kozuka-gothic-pr6n, sans-serif;
    --font-en: YakuHanJP, din-2014, sans-serif;
    --font-weight-R: 400;
    --font-weight-M: 500;
    --font-weight-B: 700;
    --font-weight-H: 900;
    --z-gnav: 1000000;
    --z-over-wrap: 1000000000000;
    --main-color-alpha: rgba(var(--main-color-rgb), 0.2);
}

/*
--main-color HOL #d7003a →215,0,58
--main-color ENG #e60012 →230,0,18
--main-color ATT #dc5310 →220,83,16
--main-color EXT #006537 →0,101,55
--main-color ALT #abcd03 →171,205,3
*/


:root {
    font-size: 16px;
}
@media screen and (max-width: 1024px) {
    :root {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    :root {
        font-size: 12px;
    }
}
@media screen and (max-width: 480px) {
    :root {
        font-size: 10px;
    }
}

html,
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
th,
td,
dl,
dt,
dd {
    padding: 0;
    margin: 0;
    font-family: var(--font-jp);
    font-size: 14px;
    font-style: normal;
    font-weight: lighter;
    line-height: 1;
    line-height: 1.4;
    color: var(--txt-color);
    letter-spacing: 0.1rem;
    font-display: swap;
}

.open .Anime-left {
    opacity: 0;
    -webkit-animation: fadeIn-left 0.5s linear forwards;
    animation: fadeIn-left 0.5s linear forwards;
}
.open .Anime-floaty {
    opacity: 0;
    -webkit-animation: floaty 0.5s linear forwards;
    animation: floaty 0.5s linear forwards;
}
.open .Anime-right {
    opacity: 0;
    -webkit-animation: fadeIn-right 0.5s linear forwards;
    animation: fadeIn-right 0.5s linear forwards;
}
.open .Anime-bottom {
    opacity: 0;
    -webkit-animation: fadeIn-bottom 0.5s linear forwards;
    animation: fadeIn-bottom 0.5s linear forwards;
}
.open .Anime-top {
    opacity: 0;
    -webkit-animation: fadeIn-top 0.5s linear forwards;
    animation: fadeIn-top 0.5s linear forwards;
}
.open .delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.open .delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.open .delay-15s {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.open .delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.open .delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.is-show .Anime-left {
    opacity: 0;
    -webkit-animation: fadeIn-left 0.5s linear forwards;
    animation: fadeIn-left 0.5s linear forwards;
}
.is-show .Anime-floaty {
    opacity: 0;
    -webkit-animation: floaty 0.5s linear forwards;
    animation: floaty 0.5s linear forwards;
}
.is-show .Anime-right {
    opacity: 0;
    -webkit-animation: fadeIn-right 0.5s linear forwards;
    animation: fadeIn-right 0.5s linear forwards;
}
.is-show .Anime-bottom {
    opacity: 0;
    -webkit-animation: fadeIn-bottom 0.5s linear forwards;
    animation: fadeIn-bottom 0.5s linear forwards;
}
.is-show .Anime-top {
    opacity: 0;
    -webkit-animation: fadeIn-top 0.5s linear forwards;
    animation: fadeIn-top 0.5s linear forwards;
}
.is-show .delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.is-show .delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.is-show .delay-15s {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.is-show .delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.is-show .delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

html,
body {
    -ms-touch-action: manipulation !important;
    touch-action: manipulation !important;
    scroll-behavior: smooth;
}

ul,
ol,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    line-height: 0;
    vertical-align: bottom;
    border: none;
}

textarea {
    resize: none;
}

input[type=submit] {
    -webkit-appearance: none;
    border-radius: 0;
}

button {
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.example {
    display: block;
}

input[type=submit i],
input[type=reset i] {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    letter-spacing: 5px;
    cursor: pointer;
    background: none;
    border: none;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.clr-black {
    color: #464d55 !important;
}

.clr-white {
    color: #fff !important;
}

.clr-blue {
    color: #2f84c8;
}

.clr-red {
    color: #d0121b !important;
}

.bg-blown {
    background: #360609 !important;
}

.bg-white {
    background: #fff !important;
}

.bg-gray {
    background: var(--bg-gray) !important;
}

.bg-red {
    background: #d0121b !important;
}

.bg-green {
    background: #abcd03;
}

.bg-blue {
    background: #2f84c8;
}

.bg-sky {
    background: #00a0e9;
}

.bdr-top {
    border-top: solid 5px var(--main-color);
}

.bdr-red {
    border: solid 2px #db171e69;
}

.bdr-black {
    border-top: solid 4px var(--txt-color);
}

.bdr-btm {
    border-bottom: solid 2px rgba(0, 0, 0, 0.9);
}

.dsp-non {
    display: none;
}

.dsp-block {
    display: block;
}

.sp-only {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .sp-only {
        display: block !important;
    }
}


.tab-sp-only {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    .tab-sp-only {
        display: block !important;
    }
}


.tab-sp-flex {
    display: none !important;
}
@media screen and (max-width: 1024px) {
    .tab-sp-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

.sp-flex {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .sp-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

@media screen and (max-width: 767px) {
    .pc-tab-only {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .pc-only {
        display: none !important;
    }
}

@media screen and (min-width: 767px) {
    .br-pc {
        display: block;
    }

    .br-sp {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .br-pc {
        display: none;
    }

    .br-sp {
        display: block;
    }
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.pc-flex,
.pc-flex-wrap,
.pc-flex-space-between,
.pc-flex-space-around,
.pc-flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 767px) {
    .pc-flex,
    .pc-flex-wrap,
    .pc-flex-space-between,
    .pc-flex-space-around,
    .pc-flex-center {
        display: block !important;
    }
}
.pc-tablet-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 767px) {
    .pc-tablet-flex {
        display: block;
    }
}
.flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pc-flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between !important;
}

.flex-space-around {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.pc-flex-space-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pc-flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.float-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.mtb5 {
    margin: 5px 0 !important;
}

.mtb10 {
    margin: 10px 0 !important;
}

.mtb20 {
    margin: 20px 0 !important;
}

.mtb30 {
    margin: 30px 0 !important;
}

.mtb40 {
    margin: 40px 0 !important;
}

.mtb50 {
    margin: 50px 0 !important;
}

.mtb60 {
    margin: 60px 0 !important;
}

.mtb70 {
    margin: 70px 0 !important;
}

.mtb80 {
    margin: 80px 0 !important;
}

.mtb100 {
    margin: 100p 0x !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.mr40 {
    margin-right: 40px !important;
}

.mr50 {
    margin-right: 50px !important;
}

.mr60 {
    margin-right: 60px !important;
}

.ml5 {
    margin-left: 5px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml30 {
    margin-left: 30px !important;
}

.ml40 {
    margin-left: 40px !important;
}

.ml50 {
    margin-left: 50px !important;
}

.ml60 {
    margin-left: 60px !important;
}

.m-0-auto {
    margin: 0 auto !important;
}

.mr-auto {
    margin-right: auto !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mt-auto {
    margin-top: auto !important;
}

.pd0 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px !important;
}

.pd10 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px !important;
}

.pd20 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px !important;
}

.pd30 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px !important;
}

.pd40 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px !important;
}

.pt0 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 0px !important;
}

.pt5 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 5px !important;
}

.pt10 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 10px !important;
}

.pt20 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 20px !important;
}

.pt30 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 30px !important;
}

.pt40 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 40px !important;
}

.pt50 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 50px !important;
}

.pt60 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 60px !important;
}

.pb0 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 0px !important;
}

.pb5 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 5px !important;
}

.pb10 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 10px !important;
}

.pb20 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 20px !important;
}

.pb30 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 30px !important;
}

.pb40 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 40px !important;
}

.pb80 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 80px !important;
}

.pb120 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 120px !important;
}

.pl20 {
    padding-left: 20px !important;
}

.ptb5 {
    padding: 5px 0 !important;
}

.ptb10 {
    padding: 10px 0 !important;
}

.ptb20 {
    padding: 20px 0 !important;
}

.ptb30 {
    padding: 30px 0 !important;
}

.ptb40 {
    padding: 40px 0 !important;
}

.ptb50 {
    padding: 50px 0 !important;
}

.ptb60 {
    padding: 60px 0 !important;
}

.ptb70 {
    padding: 70px 0 !important;
}

.ptb80 {
    padding: 80px 0 !important;
}

.ptb100 {
    padding: 100p 0x !important;
}

.font-10 {
    font-size: 10px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-40 {
    font-size: 40px !important;
}

.font-60 {
    font-size: 60px !important;
}

.maxwidth-1024 {
    max-width: 1024px !important;
    margin: 0 auto;
}

.maxwidth-767 {
    max-width: 767px !important;
    margin: 0 auto;
}

.width-100p {
    width: 100% !important;
}

.bold {
    font-weight: 700 !important;
}

.lighter {
    font-weight: lighter !important;
}

.small-txt {
    font-size: 10px !important;
}

.link-color {
    color: #1c23b8;
}

.link-color:hover {
    opacity: 0.4;
}

.main-color {
    color: #47b8e0;
}

.color-light_gray {
    color: #aaa;
}

.pointer {
    cursor: pointer !important;
}

.pointer-events-none {
    pointer-events: none;
}

.size-16 {
    font-size: 16px !important;
}

.size-18 {
    font-size: 18px !important;
}

.size-20 {
    font-size: 20px !important;
}

.size-30 {
    font-size: 30px !important;
}

.size-40 {
    font-size: 40px !important;
}

.size-50 {
    font-size: 50px !important;
}

.size-60 {
    font-size: 60px !important;
}

.lh-1_4 {
    line-height: 1.4;
}

.lh-1_7 {
    line-height: 1.7;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.width-100 {
    width: 100% !important;
}

.width-50 {
    width: 50% !important;
}

.width-33 {
    width: 33.33% !important;
}

.width-25 {
    width: 25% !important;
}

.pc-width-30 {
    width: 30% !important;
}

@media screen and (max-width: 767px) {
    .pc-width-30 {
        width: 100% !important;
    }
}
.pc-width-50 {
    width: 50% !important;
}

@media screen and (max-width: 767px) {
    .pc-width-50 {
        width: 100% !important;
    }
}
.pc-width-auto {
    width: auto !important;
}

@media screen and (max-width: 767px) {
    .pc-width-auto {
        width: 100% !important;
    }
}
.z-index-0 {
    z-index: 0 !important;
}

.z-index-10 {
    z-index: 10 !important;
}

.z-index-100 {
    z-index: 100 !important;
}

.position-rel {
    position: relative !important;
}

.position-abs {
    position: absolute !important;
}

.position-fix {
    position: fixed !important;
}

.abs-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.scroll {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

.yscroll {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.xscroll {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.yscroll-non {
    overflow-y: hidden !important;
}

.xscroll-non {
    overflow-y: hidden !important;
}

@media screen and (max-width: 1024px) {
    .tab-sp-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
}

.items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.algin-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.header {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 800px;
    background: transparent no-repeat center/cover;
}

.header__ttlArea {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.header__ttlArea .header__ttl {
    font-size: 46px;
    font-weight: var(--font-weight-B);
    color: var(--color-white);
    text-shadow: 0 0 4px #333;
}
.header__ttlArea .header__txt {
    margin-top: 20px;
    font-size: 28px;
    font-weight: var(--font-weight-B);
    color: var(--color-white);
    text-shadow: 0 0 4px #333;
}

.header-link {
    position: absolute;
    top: 80%;
    right: 6%;
    width: 264px;
    height: 60px;
    text-align: end;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.header-link::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 78px;
    height: 100%;
    -webkit-clip-path: polygon(5% 0, 10% 50%, 5% 100%, 0% 100%, 0 50%, 0% 0%);
    clip-path: polygon(5% 0, 10% 50%, 5% 100%, 0% 100%, 0 50%, 0% 0%);
    content: "";
    background: var(--color-red);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.header-link:hover {
    background: var(--color-red);
}
.header-link:hover::before {
    background: #fff;
}
.header-link:hover .txt {
    color: #fff;
}
.header-link:hover .arrow {
    background: #fff;
}
.header-link:hover .image {
    visibility: hidden;
    opacity: 0;
}
.header-link:hover .image-wh {
    visibility: visible;
    opacity: 1;
}
.header-link .image,
.header-link .image-wh {
    position: absolute;
    top: 40%;
    left: 45%;
    width: 65%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.header-link .image {
    visibility: visible;
    opacity: 1;
}
.header-link .image-wh {
    visibility: hidden;
    opacity: 0;
}
.header-link .txt {
    position: absolute;
    top: 60%;
    left: 20%;
    font-size: 11px;
    font-weight: var(--font-weight-B);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.header-link .arrow {
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    -webkit-clip-path: polygon(55% 0, 100% 50%, 55% 100%, 35% 100%, 80% 50%, 35% 0);
    clip-path: polygon(55% 0, 100% 50%, 55% 100%, 35% 100%, 80% 50%, 35% 0);
    background: var(--color-red);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.header-link .arrow.one {
    left: 85%;
}
.header-link .arrow.two {
    left: 88%;
}

.sub__page--header {
    padding-bottom: 463px;
}
.sub__page--header .header__ttlArea {
    width: auto;
}

.footer {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 50px 0;
    background: #4c4949;
    border-top: solid 5px var(--main-color);
}
.footer p,
.footer a {
    color: var(--color-white);
}
.footer a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.footer a:hover {
    opacity: 0.5;
}
.footer .container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.footer__ttl {
    font-size: 16px;
    font-weight: var(--font-weight-H);
    margin: 10px 50px 10px;
}

.footer__flexBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 10px 40px 0px;

}

.footer__infoArea {
    font-size: 12px;
    margin: 20px 30px 0px;
}

.footer__addres {
    font-size: 12px;
}

.footer__links {
    margin-top: 30px;
}
.footer__links .footer__link {
    display: block;
}
.footer__links .footer__link + .footer__link {
    margin-top: 10px;
}

.footer__info--column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.footer__info--column .footer__info--ttl {
    font-size: 16px;
    line-height: 1.5;
}
.footer__info--column .footer__info--link {
    margin-top: 12px;
    font-size: 12px;
}

.flex__direction--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.gnav {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 12%);
    height: 80px;
    padding: 0 40px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.gnav__logo img {
    height: 30px;
    margin-right: 50px;
}

.gnav__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gnav__list {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 30px;
    font-size: 15px;
    font-weight: var(--font-weight-B);
    letter-spacing: 0;
    border-left: 1px solid #595757;
}
.gnav__list::before {
    position: absolute;
    top: 150%;
    left: 50%;
    width: 80%;
    height: 2.7px;
    content: "";
    background: var(--color-white);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.gnav__list.bdr-right {
    border-right: 1px solid #595757;
}

.gnav__list:hover::before {
    background: var(--main-color);
}

main {
    overflow: hidden;
}

.main__section {
    position: relative;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.w-container {
    width: calc(100% - 12%);
    margin: 0 auto;
}

.main__section {
    background: transparent no-repeat center/cover;
}

.main__section--ttlArea {
    position: relative;
    text-align: center;
}

.main__section--mini_ttlArea {
    position: relative;
    width: 90%;
    padding-top: 10px;
    padding-left: 20px;
    margin-left: 20px;
    text-align: left;
}

.main__section--enttl {
    font-family: var(--font-en);
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    word-break: keep-all;
}

.main__section--jattl {
    font-size: 16px;
    font-weight: var(--font-weight-R);
    letter-spacing: 0;
}


.ttl-bdr {
    width: 15%;
    margin: 0 auto;
}

.ttl-triangle {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background: var(--main-color);
}

.main__section--minttl {
    font-size: 20px;
    font-weight: var(--font-weight-B);
}

.ttl-min-bdr {
    width: 10%;
    border-top: solid 2px var(--main-color);
}

.main__navArea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 62px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1024px;
    padding: 20px 60px;
    margin: 0 auto;
}

.main__navBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc((100% - 20px) / 2);
    height: 160px;
    background: #efeeed;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.main__navBox::before {
    display: block;
    width: 10px;
    height: 100%;
    content: "";
    background: #d3d3d4;
}
.main__navBox:hover {
    opacity: 0.5;
}

.main__nav--txtBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40%;
    height: 100%;
    text-align: center;
    background: #efeeed;
}
.main__nav--txtBox .main__nav--ttl {
    font-size: 14px;
    font-weight: var(--font-weight-H);
}
.main__nav--txtBox .main__nav--sttl {
    font-size: 12px;
    font-weight: var(--font-weight-M);
    overflow: auto;
}

.main__nav--imgBox {
    width: 60%;
    height: 100%;
}
.main__nav--imgBox#imgMaiho {
    background: url(../img/top-page/main__nav/main__nav-reorder.jpg) no-repeat;
    background-size: cover;
}
.main__nav--imgBox#imgRecruit {
    background: url(../img/top-page/main__nav/main__nav-recruit.jpg) no-repeat;
    background-size: cover ;
}






.main__section--crsBox {
    padding: 45px 94px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.8);
}

.message--txt {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0;
}

.sub__message--box {
    max-height: 210px;
    padding-right: 16px;
    overflow-y: scroll;
}

.triangle {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: block;
    width: 15px;
    height: 15px;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background: var(--main-color);
}

.constraction-area {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.constraction-area .message {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 16px;
    margin-top: 35px;
    overflow-y: scroll;
}
.constraction-area .message .txt {
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 0.03rem;
}

#home .main__section--newsArea {
    position: relative;
    margin-top: 20px;
}
.mintxt {
    margin-top: 10px;
    font-size: 16px;
}
#home .newsArea__brackets {
    position: absolute;
    top: -25px;
    z-index: 2;
    width: 50px;
    height: calc(100% + 50px);
    background: transparent;
    border: 1px solid #4c4949;
}
@media screen and (max-width: 1024px) {
    #home .newsArea__brackets {
        display: none;
    }
}
#home .newsArea__brackets.left {
    left: 0;
    border-right: transparent;
}
#home .newsArea__brackets.right {
    right: 0;
    border-left: transparent;
}
.news-gradation {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 450px;
    -webkit-clip-path: polygon(100% 50%, 0% 100%, 100% 100%);
    clip-path: polygon(100% 50%, 0% 100%, 100% 100%);
    background: var(--bg-gradation-left);
}
#home .main__section--newsBox {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 90%;
    padding: 30px 40px;
    margin: 0 auto;
    background: var(--main-color-alpha);

}
#home .news__type--txt {
    font-family: var(--font-en);
    font-size: 23px;
    font-weight: var(--font-weight-B);
}

#home .news__bdr {
    display: block;
    width: 1px;
    height: 100px;
    margin-left: 20px;
    background: #595757;
}


#home .news__box {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 80%;
    margin-left: 20px;
}
#home .news__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
#home .news__link:hover {
    opacity: 0.6;
}
#home .news__link .news__box--time {
    font-size: 16px;
}
#home .news__link .news__clr {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: baseline;
    align-self: baseline;
    width: 70px;
    padding: 2px 3px;
    margin-left: 10px;
    font-size: 11px;
    font-weight: var(--font-weight-M);
    color: var(--color-white);
    text-align: center;
}
#home .news__link .news__clr.bg-blue {
    background: var(--color-blue);
}
#home .news__link .news__clr.bg-red {
    background: var(--color-red);
}
#home .news__link .news__box--txt {
    margin-left: 10px;
    font-size: 16px;
}
#home .news__link + .news__link {
    margin-top: 20px;
}
#home .news__list--link {
    position: absolute;
    top: 10px;
    right: 20px;
    width: auto;
    font-size: 8px;
    border-bottom: 1px solid var(--txt-color);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
#home .news__list--link:hover {
    opacity: 0.5;
}

#home .main__section--newsBox + .main__section--newsBox {
    margin-top: 20px;
}

#home .constraction-area {
    background: url(../img/top-page/bg/top-page-construction-bg.png) no-repeat center/cover
}

#home .related-services {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 60px;
    margin-top: 40px;
}
#home .related-services .box {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc((100% - 20px) / 2);
    padding: 20px 15px 40px;

    background: #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
#home .related-services .box:hover {
    opacity: 0.7;
}
#home .related-services .box .image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: center;
    align-self: center;
    width: 100px;
    text-align: center;
}
#home .related-services .box .image > img {
    width: 100%;
}
#home .related-services .box .txt-area .ttl {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
}
#home .related-services .box .txt-area .sttl {
    position: relative;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0;
}
#home .related-services .box .txt-area .sttl:after {
    display: block;
    width: 30%;
    height: 3px;
    margin-top: 10px;
    content: "";
    background: #4c4949;
}
#home .main__column--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 60px;
}
#home .main__bdr {
    border-top: 1px solid var(--border-gray);
}
#home .main__bdr:first-child {
    border-top: 2px solid var(--border-gray);
}
#home .main__bdr:first-child::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 30%;
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color);
}
#home .main__bdr:last-child {
    border-bottom: 2px solid var(--border-gray);
}
#home .main__bdr:last-child::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 30%;
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color);
}
#home .main__data {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
}
#home .main__data--ttl {
    width: 15%;
    font-size: 16px;
}
#home .main__data--contents {
    width: 30%;
    overflow: auto;  
}
#home .main__data--content {
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0;
}
.info__img--area {
    max-width: 400px;
}
#home .collaboration-section {
    position: relative;
    padding-top: 60px;
    background: var(--bg-gray);
}
#home .collaboration-section .collaboration-gradation {
    position: absolute;
    right: 0;
    bottom: 40px;
    z-index: 0;
    width: 60%;
    height: 860px;
    -webkit-clip-path: polygon(100% 0, 100% 25%, 70% 100%, 0 75%);
    clip-path: polygon(100% 0, 100% 25%, 70% 100%, 0 75%);
    background: var(--bg-gradation-right);
}
#home .collaboration-section .content-wrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding-right: 80px;
    padding-left: 60px;
    margin-top: 40px;
}
#home .collaboration-section .content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#home .collaboration-section .content .left {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25%;
    padding: 20px 10px;
    background: var(--main-color);
}
#home .collaboration-section .content .left .txt {
    font-size: 18px;
    font-weight: var(--font-weight-M);
    color: var(--color-white);
    text-align: center;
}
#home .collaboration-section .content .right {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 75%;
    padding: 10px 40px;
    background: var(--color-white);
}
#home .collaboration-section .content .right .txt {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
}
#home .collaboration-section .content .right .triangle {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: block;
    width: 15px;
    height: 15px;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background: var(--main-color);
}
#home .collaboration-section .content + .content {
    margin-top: 5px;
}
#home .collaboration-section .gray-triangle {
    position: absolute;
    top: -1px;
    left: 0;
    display: block;
    width: 15px;
    height: 15px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background: #e6e5e5;
}

.segmentmap-gradation-left {
    position: absolute;
    top: -200px;
    left: -30px;
    z-index: 0;
    width: 80%;
    height: 900px;
    -webkit-clip-path: polygon(25% 0, 100% 20%, 0 100%, 0 70%);
    clip-path: polygon(25% 0, 100% 20%, 0 100%, 0 70%);
    background: var(--bg-gradation-left)
}

.segmentmap-gradation-right {
    position: absolute;
    top: 160px;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 700px;
    -webkit-clip-path: polygon(100% 0, 0 0, 100% 45%);
    clip-path: polygon(100% 0, 0 0, 100% 45%);
    background: var(--bg-gradation-top-left)
}

 .company-gradation {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    -webkit-clip-path: polygon(0 95%, 100% 100%, 100% 0);
    clip-path: polygon(0 95%, 100% 100%, 100% 0);
    background: var(--bg-gradation-bottom-left)
}

#company .qualified-persons {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    margin-top: 10px
}

.company__qualified--box {
    width: 50%;
    padding: 25px 0;
    border-top: 2px solid var(--border-gray);
    border-bottom: 2px solid var(--border-gray)
}

#company .qualified-persons .company__qualified--box:nth-child(1) {
    padding-left: 20px;
    border-top: 2px solid var(--main-color)
}

#company .qualified-persons .company__qualified--box:nth-child(2) {
    padding-left: 20px;
    border-bottom: 2px solid var(--main-color)
}

#company .qualified-persons .company__qualified--box .qualified-inner {
    border-left: 1px solid var(--border-gray)
}

#company .qualified-persons .qualified__person--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px
}

#company .qualified-persons .qualified__person--box + .qualified__person--box {
    margin-top: 20px
}
/* ↑２個「qualified__person--box」が続くと間が広くなる */

#company .qualified-persons .person__list--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px
}
/* ↑２個でも「person__list--box」だと広くならない */

#company .qualified-persons .person__list--box + .qualified__person--box {
    margin-top: 20px
}
/* ↑２個でも「person__list--box」+「qualified__person--box」続くと間が広くなる */

#company .qualified__person--ttl {
    font-size: 16px;
    font-weight: var(--font-weight-B)
}

#company .qualified__person--txt {
    padding-left: 15px;
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .05rem
}

#company .qualified__person--txt-right {
    margin: 0 0 0 auto;
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .05rem
}

#company .qualified-gradation-right {
    position: absolute;
    right: 0;
    bottom: -190px;
    z-index: 1;
    width: 50%;
    height: 530px;
    -webkit-clip-path: polygon(0 95%, 100% 100%, 100% 0);
    clip-path: polygon(0 95%, 100% 100%, 100% 0);
    background: linear-gradient(20deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0.05))
}


.locations-gradation-left {
    position: absolute;
    top: -450px;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 1400px;
    -webkit-clip-path: polygon(100% 9%, 0 40%, 0 79%);
    clip-path: polygon(100% 9%, 0 40%, 0 79%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.05)), color-stop(20%, rgba(0, 0, 0, 0.05)), color-stop(75%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 20%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0))
}

.locations-gradation-bottom {
    position: absolute;
    right: 0;
    bottom: -60px;
    z-index: 1;
    width: 100%;
    height: 50%;
    -webkit-clip-path: polygon(100% 26%, 0 0, 100% 100%);
    clip-path: polygon(100% 26%, 0 0, 100% 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.05)), color-stop(20%, rgba(0, 0, 0, 0.05)), color-stop(75%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 20%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0))
}

#company .company__locations {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    margin-top: 10px
}

#company .company__locations .company__locations--box {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border-top: 2px solid var(--border-gray);
    border-bottom: 2px solid var(--border-gray)
}

#company .company__locations .company__locations--box:before,
#company .company__locations .company__locations--box:after {
    position: absolute;
    width: 35%;
    height: 2px;
    content: "";
    background: var(--main-color)
}

#company .company__locations .company__locations--box:before {
    top: -2px;
    left: 0;
    width: 35%
}

#company .company__locations .company__locations--box:after {
    right: 0;
    bottom: -2px;
    width: 45%
}

#company .company__locations .company__location--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0 10px 25px;
    border-top: 1px solid var(--border-gray)
}

#company .company__locations .company__location--box:first-child {
    border-top: none
}

#company .company__locations .company__location--box li {
    margin-left: 20px;
    list-style: none
}

#company .company__locations .location--ttl--area {
    width: 20%
}

#company .company__locations .location--address--area {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% - 265px - 20%);
    text-align: left
}

#company .company__locations .location__tell--box {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 265px
}

#company .company__location--txt {
    font-size: 16px;
    font-weight: var(--font-weight-R);
    line-height: 1.7
}

#company .company__bdr {
    border-top: 1px solid var(--border-gray)
}

#company .company__bdr:first-child {
    border-top: 2px solid var(--border-gray)
}

#company .company__bdr:first-child::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 30%;
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color)
}

#company .company__bdr:last-child {
    border-bottom: 2px solid var(--border-gray)
}

#company .company__bdr:last-child::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 30%;
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color)
}

#company .company__data {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20px
}

#company .company__data--ttl {
    width: 30%;
    font-size: 16px
}

#company .company__data--contents {
    width: 70%;
    font-size: 16px
}

#company .company__data--content {
    font-size: 16px
}

#company .company__bdr--top {
    position: relative;
    border-top: 2px solid var(--border-gray)
}

#company .company__bdr--top::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 30%;
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color)
}

#company .company__bdr--bottom {
    position: relative;
    border-bottom: 2px solid var(--border-gray)
}

#company .company__bdr--bottom::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 30%;
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color)
}

.history-gradation-left {
    position: absolute;
    top: -190px;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 1020px;
    -webkit-clip-path: polygon(0 45%, 0 100%, 100% 0);
    clip-path: polygon(0 45%, 0 100%, 100% 0);
    background: linear-gradient(-30deg, rgba(0, 0, 0, 0.08) 30%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0))
}

.history-gradation-right {
    position: absolute;
    right: 0;
    bottom: 170px;
    z-index: 1;
    width: 100%;
    height: 500px;
    -webkit-clip-path: polygon(0 0, 100% 60%, 100% 0);
    clip-path: polygon(0 0, 100% 60%, 100% 0);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, rgba(0, 0, 0, 0.08)), color-stop(99%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.08) 60%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0))
}

#company .history__data {
    --padding-size: 20px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    padding: 0 var(--padding-size)
}

#company .history__data:first-child {
    padding-top: 30px;
    border-top: 2px solid var(--border-gray)
}

#company .history__data:first-child::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color)
}

#company .history__data:first-child .history__data--ttl,
#company .history__data:first-child .history__data--content {
    padding-top: 10px
}

#company .history__data:last-child {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-gray)
}

#company .history__data:last-child::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color)
}

#company .history__data--ttl,
#company .history__data--content {
    padding-bottom: 46px;
    font-size: 17px;
    font-weight: var(--font-weight-R)
}

#company .history__data--ttl {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 99px;
    padding-right: var(--padding-size);
    text-align: left;
    letter-spacing: 0;
    border-right: 1px solid #595757
}

#company .history__data--content {
    width: 100%;
    padding-left: var(--padding-size)
}

#company .company__flex--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 30px 0
}

#company .company__top--bdr {
    position: relative;
    border-top: 2px solid var(--border-gray)
}

#company .company__top--bdr::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 30%;
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color)
}

#company .company__bottom--bdr {
    position: relative;
    border-bottom: 2px solid var(--border-gray)
}

#company .company__bottom--bdr:last-child {
    border-bottom: 2px solid var(--border-gray)
}

#company .company__bottom--bdr:last-child::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 30%;
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color)
}

#company .bdr__left {
    border-left: 2px solid var(--border-gray)
}



#company .main__section {
    position: relative;
}
#company .company__column--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px;
    margin-top: 10px
}
#company .company__bdr {
    --padding-size: 20px;
    border-top: 1px solid var(--border-gray);
}
#company .company__bdr:first-child {
    border-top: 2px solid var(--border-gray);
}
#company .company__bdr:first-child::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color);
}
#company .company__bdr:last-child {
    border-bottom: 2px solid var(--border-gray);
}
#company .company__bdr:last-child::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color);
}
#company .company__data {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
}
#company .company__data--ttl {
    width: 25%;
    font-size: 16px;
}
#company .company__data--contents {
    width: 75%;
    font-size: 16px;
}
#company .company__data--content {
    font-size: 16px;
    letter-spacing: 0;
}
#company .company__history--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px;
    margin-top: 10px
}
#company .history__data {
    --padding-size: 20px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    padding: 0 var(--padding-size);
}
#company .history__data:first-child {
    padding-top: 30px;
    border-top: 2px solid var(--border-gray);
}
#company .history__data:first-child::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color);
}
#company .history__data:first-child .history__data--ttl,
#company .history__data:first-child .history__data--content {
    padding-top: 10px;
}
#company .history__data:last-child {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-gray);
}
#company .history__data:last-child::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color);
}
#company .history__data--ttl,
#company .history__data--content {
    padding-bottom: 30px;
    font-size: 17px;
    font-weight: var(--font-weight-R);
    letter-spacing: 0;
}
#company .history__data--ttl {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 99px;
    padding-right: var(--padding-size);
    text-align: left;
    letter-spacing: 0;
    border-right: 1px solid #595757;
}
#company .history__data--content {
    width: 100%;
    padding-left: var(--padding-size);
}
#company .content-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#company .content-flex .circle {
    display: block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: var(--main-color);
    border-radius: 50%;
}
#company .company__flex--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 30px 0;
}
.info__navArea0 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 15px;
    z-index: 7;
}
.info__navArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 10px;
    z-index: 8;
}
.info__navBtn {
    width: 221px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 20px;
    background: #dcdddd;
    border-radius: 10px;
    -webkit-box-shadow: 1.93px 2.42px 6.29px rgba(4, 0, 0, 0.3);
    box-shadow: 1.93px 2.42px 6.29px rgba(4, 0, 0, 0.3);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    z-index: 9;
}
.info__navBtn:hover {
    background: var(--main-color);
}
.info__navBtn:hover .info__nav--txt {
    color: var(--color-white);
}
.info__navBtn.current {
    background: var(--main-color);
}
.info__navBtn.current .info__nav--txt {
    color: var(--color-white);
}
.info__nav--txt {
    font-size: 16px;
    font-weight: var(--font-weight-M);
    text-align: center;
    color: var(--txt-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

#information .info__navArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 40px 10px
}
#information .info__navBtn {
    width: 221px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 20px;
    background: #dcdddd;
    border-radius: 10px;
    -webkit-box-shadow: 1.93px 2.42px 6.29px rgba(4, 0, 0, 0.3);
    box-shadow: 1.93px 2.42px 6.29px rgba(4, 0, 0, 0.3);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
#information .info__navBtn:hover {
    background: var(--main-color);
}
#information .info__navBtn:hover .info__nav--txt {
    color: var(--color-white);
}
#information .info__navBtn.current {
    background: var(--main-color);
}
#information .info__navBtn.current .info__nav--txt {
    color: var(--color-white);
}
#information .info__nav--txt {
    font-size: 16px;
    font-weight: var(--font-weight-M);
    text-align: center;
    color: var(--txt-color);
}
#information .info__flex--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 60px;
}
#information .info__img--area {
    width: 50%;
}


#information .info__txt--area {
    width: 50%;
    margin-left: 20px; 
}
#information .info__txt {
    font-size: 18px;
    font-weight: var(--font-weight-R);
    line-height: 1.7;
}
#information .info__segment {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 60px;
}
#information .info__imgArea,
#information .info__txtArea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 60px;
}
#information .info__ttl {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 30px;
    font-size: 19px;
    font-weight: var(--font-weight-M);
    border: 1px solid #000;
}
#information .info__ttl::before {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: block;
    width: 15px;
    height: 15px;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    content: "";
    background: var(--main-color);
}
#information .qualified-persons {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 40px 60px 0;
}
#information .qualified-persons .company__qualified--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 60px;
}
#information .qualified-persons .company__qualified--box .qualified-inner {
    border-left: 1px solid var(--border-gray);
}
#information .qualified-persons .qualified__person--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 60px;
}
#information .qualified-persons .qualified__person--box + .qualified__person--box {
    margin-top: 40px;
}
#information .qualified-persons .qualified__person--ttl {
    font-size: 16px;
    font-weight: var(--font-weight-B);
}
#information .qualified-persons .qualified__person--txt {
    padding-left: 15px;
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.05rem;
}
#information .info__bdr-top {
    --padding-size: 20px;
    border-top: 2px solid var(--border-gray);
}
#information .info__bdr-top::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color);
}
#information .info__bdr-bottom {
    --padding-size: 20px;
    border-bottom: 2px solid var(--border-gray);
}
#information .info__bdr-bottom::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color);
}
.info__floorArea {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px;
    margin: 20px auto;
}
.info__floor--box {
    position: relative;
    width: calc((100% / 3) - 20px);
    border: 1px solid var(--border-gray);
}
.floor__txtArea {
    position: relative;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 0;
    border-right: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}
.floor__txt {
    font-size: 16px;
    font-weight: var(--font-weight-B);
    text-align: center;
}
 .floor__imgArea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
}
.floor__img {
    padding-bottom: 71.1%;
    background: no-repeat center/contain;
    background-size: 100%;
    background-repeat: no-repeat;
}
.history__data {
    --padding-size: 20px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    padding: 0 var(--padding-size);
}
.history__data:first-child {
    padding-top: 30px;
    border-top: 2px solid var(--border-gray);
}
.history__data:first-child::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color);
}
.history__data--ttl {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 99px;
    padding-right: var(--padding-size);
    text-align: left;
    letter-spacing: 0;
    border-right: 1px solid #595757
}

/*# information ENG追加ここから ::::::::::::::::::::::::::::::::::::::::::*/

.performance-gradation {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 260px;
    -webkit-clip-path: polygon(0 95%, 100% 100%, 100% 0);
    clip-path: polygon(0 95%, 100% 100%, 100% 0);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(20%, rgba(0, 0, 0, 0.05)), color-stop(75%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 20%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0));
}

.compensation-gradation-left {
    position: absolute;
    top: 260px;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 260px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(20%, rgba(0, 0, 0, 0.05)), color-stop(75%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 20%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0));
}

.compensation-gradation-right {
    position: absolute;
    top: -130px;
    right: 0;
    z-index: 0;
    width: 60%;
    height: 860px;
    -webkit-clip-path: polygon(100% 0, 100% 25%, 70% 100%, 0 75%);
    clip-path: polygon(100% 0, 100% 25%, 70% 100%, 0 75%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.05)), color-stop(20%, rgba(0, 0, 0, 0.05)), color-stop(75%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 20%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0));
}


#information input[type=checkbox]:checked + .neumo-btn {
    -webkit-box-shadow: inset -6px -6px 10px 0px #fff, inset 6px 6px 10px 0px #c8c9cc;
    box-shadow: inset -6px -6px 10px 0px #fff, inset 6px 6px 10px 0px #c8c9cc;
}

#information input[type=checkbox]:checked + .neumo-btn + .content-box {
    display: block;
}

#information .content-box {
    display: none;
}

.content-gradation {
    position: absolute;
    right: 0;
    bottom: 140px;
    z-index: 1;
    width: 100%;
    height: 50%;
    -webkit-clip-path: polygon(0 0, 100% 60%, 100% 0);
    clip-path: polygon(0 0, 100% 60%, 100% 0);
    background: var(--bg-gradation);
}

#information .neumo-btn {
    position: relative;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding: 20px 10px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    background: var(--bg-gray);
    border-radius: 10px;
    -webkit-box-shadow: -6px -6px 10px 0px #fff, 6px 6px 10px 0px #c8c9cc;
    box-shadow: -6px -6px 10px 0px #fff, 6px 6px 10px 0px #c8c9cc;
}

#information .neumo-btn:hover {
    -webkit-box-shadow: inset -6px -6px 10px 0px #fff, inset 6px 6px 10px 0px #c8c9cc;
    box-shadow: inset -6px -6px 10px 0px #fff, inset 6px 6px 10px 0px #c8c9cc;
}

#information .neumo-btn p {
    font-size: 16px;
    font-weight: var(--font-weight-B);
}

#information .table-title {
    margin-top: 40px;
    font-size: 16px;
}

#information .table-title + .table {
    margin-top: 10px;
}

#information .table {
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    margin-top: 40px;
    visibility: visible;
    table-layout: fixed;
    border-collapse: collapse;
    background: #fff;
    border-bottom: 5px solid var(--table-gray);
    opacity: 1;
}

#information .table .thead,
#information .table .thead_hatsushi{
    display: block;
    background: var(--table-gray);
}

#information .table .thead tr,
#information .table .thead_hatsushi tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#information .table .thead th,
#information .table .thead_hatsushi th {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    text-align: left;
}

#information .table .thead th:nth-child(1) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 6%;
    text-align: right;
}

#information .table .thead th:nth-child(2) {
    width: 34%;
}

#information .table .thead th:nth-child(3) {
    width: 60%;
}
#information .table .thead_hatsushi th:nth-child(1) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 30%;
    text-align: left;
}

#information .table .thead_hatsushi th:nth-child(2) {
    width: 15%;
}

#information .table .thead_hatsushi th:nth-child(3) {
    width: 55%;
}

#information .table .thead th + th,
#information .table .thead_hatsushi th + th{
    border-left: 1px solid var(--table-border)
}

#information .table .tbody,
#information .table .tbody_hatsushi {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    background: #fff;
}

#information .table .tbody tr,
#information .table .tbody_hatsushi tr {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#information .table .tbody tr:after
#information .table .tbody_hatsushi tr:after {
    position: absolute;
    right: 10px;
    bottom: 0;
    display: block;
    width: calc(100% - 20px);
    height: 1px;
    content: "";
    background: var(--border-gray);
}

#information .table .tbody td ,
#information .table .tbody_hatsushi td{
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: 5px 10px;
    font-size: 14px;
    color: var(--txt-color);
    text-align: left;
}

#information .table .tbody td:nth-child(1) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 6%;
    font-family: var(--font-en);
    text-align: right;
}

#information .table .tbody td:nth-child(2) {
    width: 34%;
}

#information .table .tbody td:nth-child(3) {
    width: 60%;
}
#information .table .tbody_hatsushi td:nth-child(1) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 30%;
    font-family: var(--font-en);
    text-align: left;
}

#information .table .tbody_hatsushi td:nth-child(2) {
    width: 15%;
}

#information .table .tbody_hatsushi td:nth-child(3) {
    width: 55%;
}

#information .table .tbody td + td:after,
#information .table .tbody_hatsushi td + td:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 1px;
    height: 5px;
    content: "";
    background: var(--border-gray);
}

#information .arrow {
    position: absolute;
    top: 55%;
    right: 5%;
    display: inline-block;
    padding: 0 0 0 16px;
    font-size: 15px;
    color: var(--txt-color);
    text-decoration: none;
    vertical-align: middle;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#information .arrow::before,
#information .arrow ::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
}

#information .ku::before {
    left: 3px;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--border-gray);
    border-right: 2px solid var(--border-gray);
    -webkit-transition: .1s;
    transition: .1s;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#information .acd-check {
    display: none;
}

#information .acd-label {
    display: block;
}

#information .acd-content {
    height: 0;
    visibility: hidden;
    background: #fff;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
}

#information .acd-check:checked + .acd-label .arrow {
    top: 45%;
}

#information .acd-check:checked + .acd-label .ku::before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

#information .acd-check:checked + .acd-label + .acd-content {
    height: auto;
    margin: 40px 0;
    visibility: visible;
    opacity: 1;
}

.compensation-gradation-bottom {
    position: absolute;
    top: 1250px;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 500px;
    -webkit-clip-path: polygon(0 0, 100% 60%, 100% 0);
    clip-path: polygon(0 0, 100% 60%, 100% 0);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.05)), color-stop(60%, rgba(0, 0, 0, 0.05)), color-stop(75%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 60%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0));
}



/*# information ENG追加ここまで ::::::::::::::::::::::::::::::::::::::::::*/
/*# sourceMappingURL=style.css.map ::::::::::::::::::::::::::::::::::::::::::*/

#contact .main__section {
    position: relative;
}
#contact .company__column--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 60px;
}
#contact .company__bdr {
    --padding-size: 20px;
    border-top: 1px solid var(--border-gray);
}
#contact .company__bdr:first-child {
    border-top: 2px solid var(--border-gray);
}
#contact .company__bdr:last-child {
    border-bottom: 2px solid var(--border-gray);
}

#contact .company__history--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px;
    margin-top: 10px
}
#contact .history__data {
    --padding-size: 20px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    padding: 0 var(--padding-size);
}
#contact .history__data:first-child {
    padding-top: 30px;
    border-top: 2px solid var(--border-gray);
}
#contact .history__data:first-child::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color);
}
#contact .history__data:first-child .history__data--ttl,
#contact .history__data:first-child .history__data--content {
    padding-top: 10px;
}
#contact .history__data:last-child {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-gray);
}
#contact .history__data:last-child::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color);
}
#contact .history__data--ttl,
#contact .history__data--content {
    padding-bottom: 20px;
    font-size: 17px;
    font-weight: var(--font-weight-R);
    letter-spacing: 0;
}
#contact .history__data--ttl {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 250px;
    padding-right: var(--padding-size);
    text-align: left;
    letter-spacing: 0;
    border-right: 1px solid #595757;
}
#contact .history__data--content {
    width: 100%;
    padding-left: var(--padding-size);
}
#contact .content-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#contact .content-flex .circle {
    display: block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: var(--main-color);
    border-radius: 50%;
}
#contact .company__flex--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 30px 0;
}

#recruit .info__flex--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 60px;
}
#recruit .info__img--area {
    width: 50%;
}
#recruit .info__txt--area {
    margin-left: 20px;
    width: 50%;
}
#recruit .info__txt {
    font-size: 20px;
    font-weight: var(--font-weight-R);
    line-height: 1.7;
}
#recruit .info__segment {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 60px;
}
#recruit .info__imgArea,
#recruit .info__txtArea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 60px;
}
#recruit .info__ttl {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 30px;
    font-size: 19px;
    font-weight: var(--font-weight-M);
    border: 1px solid #000;
}
#recruit .info__ttl::before {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: block;
    width: 15px;
    height: 15px;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    content: "";
    background: var(--main-color);
}
#recruit .qualified-persons {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 40px 60px 0;
}
#recruit .qualified-persons .company__qualified--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 60px;
}
#recruit .qualified-persons .company__qualified--box .qualified-inner {
    border-left: 1px solid var(--border-gray);
}
#recruit .qualified-persons .qualified__person--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 60px;
}
#recruit .qualified-persons .qualified__person--box + .qualified__person--box {
    margin-top: 40px;
}
#recruit .qualified-persons .qualified__person--ttl {
    font-size: 16px;
    font-weight: var(--font-weight-B);
}
#recruit .qualified-persons .qualified__person--txt {
    padding-left: 15px;
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.05rem;
}
#recruit .info__bdr-top {
    --padding-size: 20px;
    border-top: 2px solid var(--border-gray);
}
#recruit .info__bdr-top::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color);
}
#recruit .info__bdr-bottom {
    --padding-size: 20px;
    border-bottom: 2px solid var(--border-gray);
}
#recruit .info__bdr-bottom::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: calc(20% + var(--padding-size));
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color);
}
#recruit .info__floorArea {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px;
}
#recruit .info__floor--box {
    position: relative;
    width: calc((100% / 3) - 20px);
    border: 1px solid var(--border-gray);
}
#recruit .floor__txtArea {
    position: relative;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 0;
    border-right: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}
#recruit .floor__txt {
    font-size: 18px;
    font-weight: var(--font-weight-B);
    text-align: center;
}
#recruit .floor__imgArea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
}
#recruit .floor__img {
    padding-bottom: 71.1%;
    background: no-repeat center/contain;
    background-size: 100%;
    background-repeat: no-repeat;
}
#recruit .company__data--ttl {
    width: 75%;
    font-size: 16px
}
/*アルト対応-----------------------------------------------------------*/

#home .related-services_alttop {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 60px;
    margin-top: 40px
}

#home .related-services_alttop .box {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc((100% - 60px) / 2);
    padding: 20px 15px;
    background: #fff
}

#home .related-services_alttop .box .txt-area .ttl {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: 0
}

#home .related-services_alttop .box .txt-area .sttl {
    position: relative;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0
}

#home .related-services_alttop .box .txt-area .sttl:after {
    display: block;
    width: 30%;
    height: 3px;
    margin-top: 10px;
    content: "";
    background: var(--main-color)
}

#home .related-services_alttop .box .image-wrap {
    position: relative;
    width: 100%;
    height: 128px;
    margin: 0 auto;
    margin-top: 20px;
    overflow: hidden
}

#home .related-services_alttop .box .image-wrap > .image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 100%;
    background-size: cover;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

#home .related-services_alttop .box .triangle {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 18px;
    height: 18px;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background: var(--main-color)
}
#company .info__segment {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 60px
}

#company .info__txt {
    font-size: 20px
}
#recruit .main__section {
    position: relative
}

#recruit .company__column--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 60px
}

#recruit .company__bdr {
    border-top: 1px solid var(--border-gray)
}

#recruit .company__bdr:first-child {
    border-top: 2px solid var(--border-gray)
}

#recruit .company__bdr:first-child::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 20%;
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color)
}

#recruit .company__bdr:last-child {
    border-bottom: 2px solid var(--border-gray)
}

#recruit .company__bdr:last-child::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 20%;
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color)
}

#recruit .company__data {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20px
}

#recruit .company__data--ttl {
    width: 25%;
    font-size: 16px;

}

#recruit .company__data--contents {
    width: 75%;
    font-size: 16px;

}

#recruit .company__data--content {
    font-size: 16px;
    letter-spacing: 0
}

#recruit .company__history--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px 60px
}

#recruit .history__data {
    --padding-size: 20px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    padding: 0 0 0 var(--padding-size)
}


#recruit .history__data:last-child {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-gray)
}

#recruit .history__data:last-child::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: calc(25% + var(--padding-size));
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color)
}

#recruit .history__ttl {
    width: 100%;
    margin: 10px 0
}

#recruit .history__ttl > p {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 136px;
    padding: 5px 10px;
    margin: 5px 0;
    font-size: 17px;
    font-weight: var(--font-weight-B);
    text-align: center;
    border: 1px solid #000
}

#recruit .history__data--ttl,
#recruit .history__data--content {
    font-size: 16px;
    line-height: 1.7;
    font-weight: var(--font-weight-R)
}

#recruit .history__data--ttl {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 25%;
    padding-right: var(--padding-size);
    text-align: left;
    border-right: 1px solid #595757
}

#recruit .history__data--ttl.pt20 {
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
    padding-top: 20px !important
}

#recruit .history__data--ttl > dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px
}

#recruit .history__data--ttl > dt::before {
    display: block;
    width: 10px;
    margin-right: 10px;
    content: "";
    background: var(--main-color)
}

#recruit .history__data--ttl .without-square::before {
    content: none
}

#recruit .history__data--contents {
    width: 60%;
    padding-left: var(--padding-size)
}

#recruit .history__data--contents.max-width {
    width: 70.6%
}

#recruit .history__data--content {
    padding-top: 10px;
    letter-spacing: 0;
}

#recruit .content-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#recruit .content-flex .circle {
    display: block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: var(--main-color);
    border-radius: 50%;
}

#recruit .company__flex--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 30px 0
}


#recruit .company__data--ttl {
    width: 75%;
    font-size: 16px;
}
#recruit .company__data--ttl25 {
    font-size: 16px;
    width: 25%;
    border-right: 1px solid #595757
}
#recruit .company__data--contents {
    width: 25%;
    font-size: 16px;
}
#recruit .company__data--contents75 {
    width: 75%;
    margin-left: 15px;
}



#recruit .company__data--content {
    font-size: 16px;
    letter-spacing: 0
}

.recruit_alt iframe {
    width: 100%;
    margin-top: -56px;
    margin-left: -3px;
}


#information .company__column--box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}
#information .company__data--ttl {
    width: 25%;
    font-size: 16px;
}

#information .company__bdr {
    border-top: 1px solid var(--border-gray)
}

#information .company__bdr:first-child {
    border-top: 2px solid var(--border-gray)
}

#information .company__bdr:first-child::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 20%;
    height: inherit;
    content: "";
    border-bottom: 2px solid var(--main-color)
}

#information .company__bdr:last-child {
    border-bottom: 2px solid var(--border-gray)
}

#information .company__bdr:last-child::before {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 20%;
    height: inherit;
    content: "";
    border-top: 2px solid var(--main-color)
}
#contact .info__imgArea,
#contact .info__txtArea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 60px;
}
#contact .info__navArea {
    display: none;
    margin: 20px 10px;
}

.map_alt {
    border: 4px solid #abcd03;
    background-color: #eee;
    width: 600px;
    height: 394px;
    border-radius: 5px;
    overflow: hidden;
    margin:auto;
}

/*アルト対応ここまで-----------------------------------------------------*/

/*レスポン追加ここから--------------------------------------@header*/
.header .gnav_SP .gnav__sp{
    display: none;  
    position: fixed;
    overflow: hidden;
    background: rgba(0,0,0,0.7);
    padding: 30px;
    z-index: 8;
    top: 70px;
    right: 0px;
    width: 30%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    overflow-y: scroll;
    -ms-touch-action: none;
    touch-action: none;
}

.header .gnav_SP .gnav__sp.is-show {
    display: block;
}

.gnav_SP {
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    padding: 0 40px;
    margin: 0 auto;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

/*1024--------------------------------------------------*/

@media screen and (max-width: 1024px) {
    .header {
        width: 100%;
        padding-bottom: 350px;
    }
    .gnav_SP  {
        display: flex;
    }
    .gnav__logo img {
        height: 30px;
        max-width: 95%;
        margin-right: 50px;
    }
    .gnav_SP .gnav__hamburger {
        display: block;
        position: absolute;
        z-index: 9;
        top: 50%;
        right: 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transform-origin: top;
        transform-origin: top;
        width: 40px;
        height: 40px;
        display: block;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        background-size: cover;
    }
    .gnav_SP .gnav__hamburger.open {
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    .header .gnav_SP .gnav__hamburger .menu-toggle {
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 100%;
        padding-bottom: 25%;
        position: relative;
        z-index: 9;
        cursor: pointer;
        background-color: #a7a7a7;
    }
    .header .gnav_SP .gnav__hamburger .menu-toggle::before, body .header .gnav_SP .gnav__hamburger .menu-toggle::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #a7a7a7;
    }
    .header .gnav_SP .gnav__hamburger .menu-toggle::before {
        top: 15px;
    }
    .header .gnav_SP .gnav__hamburger .menu-toggle::after {
        top: -15px;
    }
    .header .gnav_SP .gnav__sp .menu--list {
        display: block;
        margin: 20px;
        font-size: 15px;
        font-weight: 400;
        color: #fff;
    }
    .header .gnav_SP .gnav__sp .menu--list a:hover{
        color: gray;   

    }
    .header__ttlArea {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80%;
        margin: 0 auto;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .sub__page--header .header__ttlArea {
        width: 80%;
        text-align: center;
    }
    .header-link {
        position: absolute;
        top: 80%;
        right: 6%;
        width: 174px;
        height: 40px;
        text-align: end;
        background: rgba(255, 255, 255, 0.8);
        -webkit-transition: 0.2s;
        transition: 0.2s;
    }
    .header-link .txt {
        position: absolute;
        top: 60%;
        left: 15%;
        font-size: 8px;
        font-weight: var(--font-weight-B);
        -webkit-transition: 0.2s;
        transition: 0.2s;
    }
}

/*960--------------------------------------------------*/

@media screen and (max-width: 960px){
    .main__section--crsBox {
        padding: 20px;
        margin: auto;
        background: rgba(255, 255, 255, 0.8);
    }
    .main__nav--imgBox#imgRecruit {
        background: url(../img/top-page/main__nav/main__nav-recruit_tate.jpg) no-repeat;
        background-size: cover ;
    }
    .main__section--enttl {
        font-family: var(--font-en);
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        word-break: keep-all;
    }
    .main__section--jattl {
        font-size: 14px;
        font-weight: var(--font-weight-R);
        letter-spacing: 0;
    }
    .constraction-area .message .txt {
        font-size: 12px;
        line-height: 2.2;
        letter-spacing: 0.03rem;
    }
    .main__section--minttl {
        font-size: 16px;
        font-weight: var(--font-weight-B);
    }
    #home .main__column--box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-left: 20px;
        padding-right: 20px;
    }    
    .mintxt {
        margin-top: 10px;
        margin-right: 10px;
        font-size: 14px;
        word-break:break-all ;
    }
    .message--txt {
        font-size: 12px;
        line-height: 2;
        letter-spacing: 0;
    }
    .info__navArea0 {
        display: block;
    }
    #company .company__column--box { 
        padding-left: 40px;
    }
    #company .company__data--content{
        font-size: 12px;
    }
    #company .company__data--ttl {
        font-size: 12px;
    }
    #company .history__data--content{
        font-size: 12px;
    }
    #company .history__data--ttl {
        font-size: 12px;
    }
    #company .qualified__person--ttl {
        font-size: 12px;
    }
    #company .qualified__person--txt {
        font-size: 12px;
    }  
    #company .company__location--txt{
        font-size: 12px;
    }
    #company .company__locations .company__location--box{
        display: block;
    }
    #company .company__locations .location--ttl--area{
        width: 90%;
    }
    #company .company__locations .location--address--area{
        width: 90%;
    }
    #company .company__locations .location__tell--box {
        width: 90%;
        text-align: right;
    }
    #information .info__ttl {
        padding: 10px 15px;
        font-size: 16px;
    }
    #company .info__txt {
        font-size: 14px
    }
    #company.info__floorArea {
        width: 80%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: block;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
        margin: 30px ;
    }
    #contact .info__imgArea,
    #contact .info__txtArea {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 30px;
    }
    #contact .history__data--content{
        font-size: 12px;
        margin-right: 10px;
    }
    #contact .history__data--ttl {
        font-size: 12px;
        width: 30%;
    }
    #contact .company__column--box { 
        margin-right: 20px;
        padding-left: 30px;
    }
    #contact .info__txt {
        font-size: 14px
    }
    #recruit .info__txt {
        font-size: 16px;
    }
    #information .info__txt {
        font-size: 14px;
    }

}

/*640--------------------------------------------------*/

@media screen and (max-width: 640px){
    #home .related-services {
        padding: 0 30px;
        margin-top: 20px;
    }
    #home .related-services .box {
        width: calc(100% - 5px);
        padding: 10px 5px 10px;
    }
    .info__navBtn {
        display: flex;
        justify-content: center;
        margin: 20px auto;
        z-index: 9;
    }
    .gnav__logo img {
        max-width: 90%;
    }
    .gnav_SP .gnav__hamburger {
        width: 30px;
        height: 30px;
    }
    .header .gnav_SP .gnav__hamburger .menu-toggle::before {
        top: 10px;
    }
    .header .gnav_SP .gnav__hamburger .menu-toggle::after {
        top: -10px;
    }
    .header__ttlArea .header__ttl {
        font-size: 32px;
    }
    .header__ttlArea .header__txt {
        margin-top: 10px;
        font-size: 20px;
    }
    #home .related-services_alttop {
        display: block;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 30px;
        margin-top: 20px
    }
    #home .related-services_alttop .box {
        position: relative;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 90%;
        padding: 20px 15px;
        background: #fff
    }
    .main__navArea{
        display: block;
        width: 100%;
    }
    .main__navBox{
        width: 100%;
        margin-top: 10px;
    }
    .main__nav--txtBox .main__nav--ttl {
        font-size: 12px;
        font-weight: var(--font-weight-H);
    }
    .main__nav--txtBox .main__nav--sttl {
        font-size: 10px;
        font-weight: var(--font-weight-M);
    }
    #home .news__type--txt,
    #home .news__bdr,
    #home .news__link .news__clr ,
    #home .main__section--jattl
    {
        display: none
    }
    #home .main__section--newsBox{
        padding: 10px 10px;
        justify-content: left;
    }
    #home .news__link{
        display: block;
    }
    #home .news__link .news__box--txt {
        margin-left: 20px;
        margin-top: 20px;
        margin-bottom: 40px;
        font-size: 12px;
    }
    #home .news__link .news__box--time {
        font-size: 12px;
    }
    #home .related-services .box .txt-area .ttl{
        font-size: 12px;
    }
    #home .related-services .box .image > img {
        width: 80%;
    }
    #home .related-services .box .txt-area .sttl {
        font-size: 12px;
        line-height: 1.7;
        letter-spacing: 0;
    }
    .info__nav--txt {
        font-size: 14px;
        font-weight: var(--font-weight-M);
        text-align: center;
        color: var(--txt-color);
    }
    #information .info__flex--box {
        display: block;
        padding: 0 40px;
    }
    #information .info__segment {
        padding: 0 30px;
    }
    #information .info__img--area {
        width: 100%;
        margin-left: 20px;
    }
    #information .info__txt--area {
        width: 100%;
        margin-top: 20px;
    }
    #information .info__txt {
        font-size: 14px;
        font-weight: var(--font-weight-R);
        line-height: 1.7;
    }
    #information .info__imgArea,
    #information .info__txtArea {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 10px;
    }

    #recruit .qualified-persons {
        margin: 20px 20px 0;
    }
    #recruit .history__data {
        --padding-size: 10px;
        padding: 0 0 0 var(--padding-size)
    }
    #information .qualified-persons .company__qualified--box {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 10px 20px;
    }
    #information .qualified-persons .company__qualified--box .qualified-inner {
        border-left: 1px solid var(--border-gray);
    }
    #information .qualified-persons .qualified__person--box {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        padding: 0 20px;
    }
    #information .qualified-persons .qualified__person--ttl {
        margin-top: 15px;
        font-size: 12px;
        font-weight: var(--font-weight-B);
    }
    #information .qualified-persons .qualified__person--txt {
        padding-left: 15px;
        margin-top: 15px;
        font-size: 12px;
        line-height: 1.7;
        letter-spacing: 0.05rem;
    }
    .floor__txt {
        font-size: 14px;
    }
     .info__floorArea {
        width: 80%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: block;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
         margin: 10px auto ;
    }
     .info__floor--box {
        position: relative;
        width: 95%;
        margin-top: 15px;
        border: 1px solid var(--border-gray);
    }
    #recruit .info__segment {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 20px;
    }
    #recruit .company__history--box {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 10px 0 10px 10px
    }
    #recruit .history__ttl > p{
        font-size: 16px;
    }
    #recruit .info__imgArea,
    #recruit .info__txtArea {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 25px;
    }

    #recruit .info__ttl {
        padding: 10px 15px;
        font-size: 16px;
    }

    #recruit .info__nav--txt {
        font-size: 14px;
        font-weight: var(--font-weight-M);
        text-align: center;
        color: var(--txt-color);
    }
    #recruit .info__txt {
        font-size: 14px;
        font-weight: var(--font-weight-R);
        line-height: 1.7;
    }
    #recruit .info__flex--box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: block;
        padding: 0 40px;
    }
    #recruit .info__img--area {
        width: 100%;

    }
    #recruit .info__txt--area {
        margin-left: 0px;
        width: 100%;
    }
    #recruit .company__column--box {
        padding-left: 10px
    }
    #recruit .company__data--ttl {
        width: 75%;
        font-size: 14px
    }
    #recruit .company__data--contents {
        width: 25%;
        font-size: 14px
    }
    #recruit .company__data--content {
        font-size: 14px;
    }
    #recruit .history__data--ttl,
    #recruit .history__data--content,
    #recruit .history__data--ttl > dt{
        font-size: 14px;
    }
    .recruit_alt {
        display: none;
    }
    #information .neumo-btn p {
        font-size: 14px;
    }
    
    #information .table {

        width: 95%;
        height: auto;
        padding-bottom: 10px;
        margin: 20px auto;
        border-bottom: 5px solid var(--table-gray);
        opacity: 1;
    }
    #information .table .thead th,
    #information .table .tbody td{
        font-size: 12px;
    }
    #information .table .thead th:nth-child(1){
        width: 15%;
    }
    #information .table .tbody td:nth-child(1) {
        width: 15%;
    }
    .footer__flexBox {
        display: block;
        margin: 40px;
    }

}
/*480--------------------------------------------------*/

@media screen and (max-width: 480px){
    .info__navArea {
        display: block;
        justify-content: center;
    }
}

#Btn1,#Btn2,#Btn3,#Btn4,#Btn5,#pagetop ::before {
    display: block;
    margin-top:-100px;
    padding-top:100px;
    content: "";
}

/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 20px;
    height: 20px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color:  var(--main-color);
    padding: 0 0 0 20px;
    border-top: solid 2px;
    z-index: 15;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

/***トップへ戻るボタンここまで***/
/*レスポン追加ここまで-----------------------------------------@info&rec*/
