:root {
    --black: #000;
    --white: #fff;

    --main-color01: #3361ad;
    --main-hover-color01: #1B6CE2;

    --sub-color01: #e6f1ff;
    --sub-color02: #e2e8f0;
}

html {
    scroll-behavior: smooth;  
}

body {
    font-family:'Noto Sans JP',"メイリオ","Meiryo",verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    /* font-size: 15px; */
    line-height: 1.5;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    box-sizing: border-box;
}

.wide_lg {
    max-width: 1200px;
    margin: 0 auto;
}

#cornerName {
    text-align: center;
    background: url(./img/cornerName/bg_corner_other.png) no-repeat center right, 
    linear-gradient(-70deg, rgba(51, 97, 173, 1), rgba(87, 127, 206, 1) 50%, rgba(51, 97, 173, 1));
    background-size: 90%, cover;
}
#business #cornerName {
    background: linear-gradient(-70deg, rgba(51, 97, 173, 0.65), rgba(87, 127, 206, 0.65) 50%, rgba(51, 97, 173, 0.65)), 
    url(./img/cornerName/bg_corner_business.jpg) no-repeat center;
    background-size: cover;
}
#company #cornerName {
    background: linear-gradient(-70deg, rgba(51, 97, 173, 0.65), rgba(87, 127, 206, 0.65) 50%, rgba(51, 97, 173, 0.65)), 
    url(./img/cornerName/bg_corner_company.jpg) no-repeat center;
    background-size: cover;
}
#facility #cornerName {
    background: linear-gradient(-70deg, rgba(51, 97, 173, 0.65), rgba(87, 127, 206, 0.65) 50%, rgba(51, 97, 173, 0.65)), 
    url(./img/cornerName/bg_corner_facility.jpg) no-repeat center;
    background-size: cover;
}
#products #cornerName {
    background: linear-gradient(-70deg, rgba(51, 97, 173, 0.65), rgba(87, 127, 206, 0.65) 50%, rgba(51, 97, 173, 0.65)), 
    url(./img/cornerName/bg_corner_products.jpg) no-repeat center;
    background-size: cover;
}
#recruit #cornerName {
    background: linear-gradient(-70deg, rgba(51, 97, 173, 0.65), rgba(87, 127, 206, 0.65) 50%, rgba(51, 97, 173, 0.65)), 
    url(./img/cornerName/bg_corner_recruit.jpg) no-repeat center;
    background-size: cover;
}


#cornerName > .wide_lg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

#cornerName .title {
    font-size: 26px;
    color: var(--white);
}
#cornerName .title small {
    display: block;
    font-size: 1rem;
    animation-name: fadeInUp;
    animation-duration: 1s;
}
#cornerName .title span {
    display: block;
    animation-name: fadeInDown;
    animation-duration: 2s;
}

.flex {
    display: flex;
}

.floatL {
    float: left;
}

.tl_popup01 {
    font-size: 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.tl_popup01 span {
    letter-spacing: 0.1rem;
}

.tl_popup01 small {
    font-size: 1rem;
    color: var(--main-color01);
}

.tl_popup01 span {
    opacity: 0;
}
.tl_popup01 small {
    opacity: 0;
}
.tl_popup01.animate span {
    opacity: 1;
    animation-name: fadeInDown;
    animation-duration: 2s;
}
.tl_popup01.animate small {
    opacity: 1;
    animation-name: fadeInUp;
    animation-duration: 1s;
}

.tl_popup02 {
    font-size: 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.tl_popup02 small {
    display: inline-block;
    font-size: 15px;
    color: var(--white);
    max-width: 315px;
    width: 100%;
    background: var(--main-color01);
    padding: 20px 10px;
}

.tl_border01 {
    font-size: 19px;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
    position: relative;
}
.tl_border01::after {
    content: "";
    width: 40px;
    height: 4px;
    background: var(--main-color01);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.btn a {
    display: block;
    color: var(--white);
    text-align: center;
    width: fit-content;
    background: var(--main-color01);
    padding: 25px 50px 25px 30px;
    position: relative;
    transition: all .3s;
}
.btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 7.5px 0 7.5px 13px;
    border-color: transparent transparent transparent var(--white);
}
.btn a:hover {
    background: var(--main-hover-color01);
}

.textCenter {
    text-align: center;
    display: block;
}

.textCenter.btn a {
    margin-left: auto;
    margin-right: auto;
}

.border-top1 {
    position: relative;
}
.border-top1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 50px;
    background: var(--main-color01);
}

.border-center1 {
    position: relative;
}
.border-center1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--main-color01);
}

.border-bottom1 {
    position: relative;
}
.border-bottom1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 150px;
    background: var(--white);
}

.border-bottom2 {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--black);
}

i::before {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
}

.wp-pagenavi {
    text-align: center;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0;
    position: relative;
}

.wp-pagenavi a, 
.wp-pagenavi span {
    border: none;
}

.nextpostslink {
    position: absolute;
    right: 0;
}

.previouspostslink {
    position: absolute;
    left: 0;
}

.slickSliderContent {
    margin: 60px 0;
}

.slickSliderContent .slick-list {
  margin: 0 -7.5px;
}

.slickSliderContent .slick-slide {
  margin: 0 7.5px;
}

.slickSliderContent ul li img {
    width: 100%;
    height: 100%;
}

.pc-block {
    display: block;
}
.sp-block {
    display: none;
}

/* -----------------------------------------------------------
    header
----------------------------------------------------------- */
header {
    font-size: 15px;
}

header > .wide_lg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 20px 30px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
}

header .boxL h1 {
    max-width: 230px;
}

header .boxL h1 img {
    width: 100%;
}

header .boxR ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .boxR ul li.contact a {
    color: var(--white);
    background: var(--main-color01);
    padding: 10px 30px;
    transition: all .3s;
}
header .boxR ul li.contact a::after {
    content: none;
}
header .boxR ul li.contact a:hover {
    color: var(--white);
    background: var(--main-hover-color01);
}

header .boxR ul li a {
    position: relative;
    transition: all 0.3s ease;
}
header .boxR ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -10px;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-color01);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: all 0.3s ease;
}
header .boxR ul li a:hover {
    color: rgba(0, 0, 0, .6);
}
header .boxR ul li a:hover::after { 
    transform: scale(1, 1); 
}

header .boxR ul li a.active::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -10px;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-color01);
    transform-origin: center top;
    transition: all 0.3s ease;
}
header .boxR ul li.contact a.active::before {
    content: none;
}

.menuBtn {
    display: none;
}

/* -----------------------------------------------------------
    top
----------------------------------------------------------- */
/* ----- mainv ----- */
.mainv {
    position: relative;
}

.mainv .slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.mainv .slider span img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    animation-name: fadeIn;
    animation-duration: 2s;
}

.mainvBtn {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    display: flex;
    gap: 30px;
}

.mainvBtn li {
    color: var(--white);
    text-align: center;
    background: var(--main-color01);
    width: calc((100% - 60px) / 3);
    animation-name: fadeInUp;
}
.mainvBtn li:first-of-type {
    animation-duration: 1s;
}
.mainvBtn li:nth-of-type(2) {
    animation-duration: 2s;
}
.mainvBtn li:last-of-type {
    animation-duration: 3s;
}

.mainvBtn li a {
    display: block;
    padding: 20px 10px;
    transition: all .3s;
}
.mainvBtn li a:hover {
    background: var(--main-hover-color01);
}

.mainvBtn li span {
    display: block;
}

.mainv .slogan {
    position: absolute;
    width: fit-content;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-60%);
    padding: 0 30px;
}

.mainv .slogan img {
    width: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, .4));
}

/* ----- newsList ----- */
.newsList {
    font-size: 15px;
    background: var(--sub-color01);
    padding: 80px 0;
}

.newsList ul {
    margin: 40px 0;
}

.newsList ul li {
    padding: 30px 0;
    border-top: 1px solid var(--black);
}

.newsList ul li .inBox.flex {
    gap: 50px;
}
.newsList ul li .inBox.flex:hover {
    opacity: 0.6;
}

.newsList ul li .inBox.flex > div {
    flex: 1;
}

.newsList ul li .inBox.flex .flex {
    align-items: center;
    margin-bottom: 15px;
}

.newsList ul li .cats {
    display: flex;
    gap: 10px;
    margin-right: 30px;
}

.newsList ul li .cats .cat {
    background: var(--main-color01);
    color: var(--white);
    padding: 5px 15px;
}

.newsList ul li h3 {
    flex: 1;
}

/* ----- aboutContent ----- */
.aboutContent {
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 180px 100px 0;
}

.aboutContent .flex {
    gap: 40px;
}

.aboutContent figure {
    flex: 0 1 56%;
}

.aboutContent figure img {
    width: 100%;
}

.aboutContent .inBox {
    flex: 1 1 44%;
}

.aboutContent .tl_popup01 {
    text-align: left;
}

.aboutContent .inBox p {
    text-align: justify;
    margin: 30px 0 60px;
}

.aboutContent .inBox h3 {
    color: var(--main-color01);
    margin: 30px 0;
}

.aboutContent .inBox ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.aboutContent .inBox ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: calc((100% - 20px) / 2);
    background: #E6F1FF;
    padding: 20px;
}
.aboutContent .inBox ul li span {
    display: contents;
}

/* ----- bg_top01 ----- */
.bg_top01 {
    width: 100%;
    height: 560px;
    background: url(./img/top/bg_top01.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

/* ----- strongPointContent ----- */
.strongPointContent {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(./img/top/bg_strongPointContent.jpg) no-repeat center;
    background-size: cover;
    margin: 100px 40px 0;
    padding: 100px 0 70px;
}

.strongPointContent.border-top1::after {
    background: var(--white);
}

.strongPointContent .tl_popup01, 
.strongPointContent .tl_popup01 small {
    color: var(--white);
}

.strongPointList {
    display: flex;
    font-size: 26px;
    color: var(--white);
    text-align: center;
    margin: 70px auto;
}

.strongPointList li {
    width: calc(100% / 3);
    padding: 20px 0;
}
.strongPointList li:nth-of-type(2) {
    border-left: 1px solid var(--white);
    border-right: 1px solid var(--white);
}

/* ----- topPickupContent ----- */
.topPickupContent {
    padding: 100px 0 70px;
}

.topPickupContentList {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 60px;
}

.topPickupContentList li {
    font-size: 26px;
    color: var(--white);
    letter-spacing: 0.1rem;
    width: calc((100% - 5px) / 2);
}
.topPickupContent01 {
    background: url(./img/pickup/bg_pickupContent01.jpg) no-repeat center;
    background-size: cover;
}
.topPickupContent02 {
    background: url(./img/pickup/bg_pickupContent02.jpg) no-repeat center;
    background-size: cover;
}
.topPickupContent03 {
    background: url(./img/pickup/bg_pickupContent03.jpg) no-repeat center;
    background-size: cover;
}
.topPickupContent04 {
    background: url(./img/pickup/bg_pickupContent04.jpg) no-repeat center;
    background-size: cover;
}

.topPickupContentList li a {
    background: rgba(51, 97, 173, 0.65);
    transition: all .3s;
}
.topPickupContentList li a:hover {
    background: rgba(51, 97, 173, 0);
}

.topPickupContentList li small {
    display: block;
    font-size: 1rem;
    letter-spacing: normal;
}

.topPickupContentList li a {
    display: block;
    padding: 8rem 0 1rem 1rem;
}

/* -----------------------------------------------------------
    business
----------------------------------------------------------- */
/* ----- businessList ----- */
.businessList {
    display: flex;
    gap: 20px;
    padding: 80px 0;
}

.businessList li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    width: calc((100% - 40px) / 3);
    min-height: 360px;
    padding: 110px 24px 40px;
    background: url(./img/business/bg_businessList.png) no-repeat center var(--main-color01);
    counter-increment: number;
    position: relative;
}
.businessList li::after {
    content: counter(number, decimal-leading-zero);
    font-size: 50px;
    position: absolute;
    top: 40px;
    margin: 0 auto;
}

.businessList li h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.businessList li p {
    line-height: 2;
}

/* ----- processContent ----- */
.processContent {
    background: var(--sub-color01);
    padding: 80px 0;
}

.processContent > .inner > figure {
    width: 100%;
    height: 450px;
}

.processContent > .inner > figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.processContent > .inner > .flex {
    gap: 90px;
    padding: 0 50px;
}

.processContent h2 {
    font-size: 26px;
    color: var(--white);
    line-height: 1.7;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color01);
    width: 280px;
    height: 280px;
    transform: translateY(-50%);
    opacity: 0;
}

.processContent h2.animate {
    animation-name: fadeInLeft;
    animation-duration: 2s;
    opacity: 1;
}

.processContent .inBox {
    flex: 1 1 56%;
}

.processContent .inBox .caption {
    margin: 40px 0 70px;
}

.processContent .inBox h3 {
    font-weight: bold;
    color: var(--main-color01);
}

.processList {
    margin-top: 30px;
}

.processList li {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    counter-increment: number;
}

.processList li > figure {
    flex: 0 1 44%;
}

.processList li > figure img {
    width: 100%;
}

.processList h4 {
    font-weight: bold;
    color: var(--main-color01);
    margin-bottom: 1rem;
}
.processList h4::before {
    content: counter(number, decimal-leading-zero);
    margin-right: 10px;
}

/* ----- bg_business ----- */
.bg_business {
    width: 100%;
    height: 560px;
    position: relative;
}
.bg_business div {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
}
.bg_business01 {
    background: url('./img/business/bg_business01.jpg') no-repeat center;
    animation: slide1 25s infinite;
}
.bg_business02 {
    background: url('./img/business/bg_business02.jpg') no-repeat center;
    animation: slide2 25s infinite;
}
.bg_business03 {
    background: url('./img/business/bg_business03.jpg') no-repeat center;
    animation: slide3 25s infinite;
}
.bg_business04 {
    background: url('./img/business/bg_business04.jpg') no-repeat center;
    animation: slide4 25s infinite;
}
.bg_business05 {
    background: url('./img/business/bg_business05.jpg') no-repeat center;
    animation: slide5 25s infinite;
}

/* ----- qualityContent ----- */
.qualityContent {
    padding: 100px 0;
}

.qualityContent .flex {
    gap: 30px;
    justify-content: space-between;
}

.qualityContent .tl_popup01 {
    text-align: left;
}

.qualityContent .inBox {
    max-width: 800px;
    width: 100%;
}

.qualityContent .inBox h3 {
    display: inline-block;
    font-size: 19px;
    color: var(--white);
    background: var(--main-color01);
    padding: 15px;
    margin-bottom: 20px;
}

.qualityContent .inBox p {
    font-size: 19px;
}

.qualityList {
    font-size: 15px;
    margin: 30px 0;
}

.qualityList li {
    position: relative;
    padding: 1rem 0 1rem 25px;
    border-bottom: 1px solid #C9CACA;
}

.qualityList li:last-of-type {
    border-bottom: none;
}

.qualityList li::after {
    content: "";
    width: 15px;
    height: 15px;
    background: var(--main-color01);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* -----------------------------------------------------------
    products
----------------------------------------------------------- */
/* ----- productsContent ----- */
.productsContent {
    background: var(--sub-color01);
    padding: 120px 0 100px;
}

.productsContent figure {
    width: 100%;
    height: 500px;
}

.productsContent figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productsContent .slickSliderContent {
    margin: 30px 0 120px;
}

.productsCatList {
    display: flex;
    gap: 20px;
}

.productsCatList li {
    position: relative;
    width: calc((100% - 40px) / 3);
    background: var(--white);
    padding: 70px 20px 30px;
}

.productsCatList li h3 {
    font-size: 30px;
    color: var(--white);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
    max-width: 320px;
    padding: 20px 10px;
    background: var(--main-color01);
}

.productsCatList li p {
    font-size: 15px;
}

/* -----------------------------------------------------------
    facility
----------------------------------------------------------- */
/* ----- facilityContent ----- */
.facilityContent {
    font-size: 15px;
    width: 100%;
    margin-bottom: 100px;
}

.facilityContent th, 
.facilityContent td {
    padding: 20px 10px;
    border: 1px solid var(--main-color01);
    vertical-align: middle;
}

.facilityContent th {
    font-weight: normal;
}

.facilityContent td {
    text-align: center;
}

.facilityContent thead th {
    color: var(--white);
    text-align: center;
    background: var(--main-color01);
    border-right: 1px solid var(--white);
}
.facilityContent thead th:last-of-type {
    border-right: 1px solid var(--main-color01);
}

.inner.flex:has(.facilityContent) {
    gap: 20px;
}

/* -----------------------------------------------------------
    company
----------------------------------------------------------- */
/* ----- companyBtnList ----- */
.companyBtnList {
    display: flex;
    gap: 30px;
    padding: 80px 0;
}

.companyBtnList li {
    color: var(--white);
    text-align: center;
    background: var(--main-color01);
    width: calc((100% - 90px) / 4);
}

.companyBtnList li h3 {
    font-size: 26px;
}

.companyBtnList li h3 small {
    font-size: 15px;
    display: block;
}

.companyBtnList li a {
    display: block;
    padding: 20px 10px;
    transition: all .3s;
}
.companyBtnList li a:hover {
    background: var(--main-hover-color01);
}

/* ----- greetingContent ----- */
.greetingContent {
    background: var(--sub-color01);
    padding: 100px 0;
}

.greetingContent .flex {
    gap: 40px;
}

.greetingContent .msgPhoto {
    flex: 0 1 50%;
}

.greetingContent .msgPhoto img {
    width: 100%;
}

.greetingContent .msgText {
    flex: 1 1 50%;
}

.greetingContent .msgText .tl_popup01 {
    text-align: left;
    margin-bottom: 30px;
}

.greetingContent .msgText p {
    font-size: 15px;
    line-height: 2;
    text-align: justify;
}

.greetingContent .msgText p.ceoName {
    margin-top: 30px;
}

.greetingContent .msgText p.ceoName small {
    font-size: 12px;
}

/* ----- bg_greeting ----- */
.bg_greeting {
    width: 100%;
    height: 560px;
    background: url(./img/company/bg_greeting.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

/* ----- philosophyContent ----- */
.bg_philosophy01 {
    display: block;
    width: 100%;
    height: 40px;
    border: 2px solid var(--main-color01);
    border-bottom: none;
    position: relative;
}
.bg_philosophy01::before {
    content: "";
    width: 2px;
    height: 40px;
    background: var(--main-color01);
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
}

.bg_philosophy02 {
    display: block;
    width: 100%;
    height: 40px;
    border: 2px solid var(--main-color01);
    border-top: none;
    position: relative;
}

.philosophyContent {
    padding: 100px 0;
}

.philosophyContent .tl_popup01 {
    margin-bottom: 50px;
}

.philosophyContent .tl_popup02 {
    margin-bottom: 80px;
}

.managementContent .inBox {
    padding: 0 30px 50px;
}

.managementContent .vision {
    margin-bottom: 50px;
}

.managementContent .vision p {
    font-size: 26px;
    text-align: center;
}

.managementContent .action .flex {
    gap: 70px;
    background: var(--sub-color01);
    padding: 50px 30px;
    margin-top: 40px;
}

.managementContent .actionImg {
    flex: 0 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.managementContent .actionImg img {
    width: 100%;
    height: auto;
}

.managementContent .actionList {
    font-size: 26px;
    flex: 1 1 70%;
}

.managementContent .actionList li {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--white);
    padding: 30px 0;
}

.managementContent .actionList li:last-of-type {
    border-bottom: none;
}

.managementContent .actionList li span {
    color: var(--main-color01);
}

.environment {
    margin-top: 150px;
}

.environmentContent .inBox {
    padding: 0 30px 50px;
}

.environmentContent .inBox p {
    font-size: 19px;
    text-align: center;
}

.environmentContent .environmentList {
    font-size: 15px;
    max-width: 815px;
    width: 100%;
    margin: 80px auto 0;
}

.environmentContent .environmentList > li {
    margin-bottom: 50px;
    padding-left: 25px;
    position: relative;
    counter-increment: number-1;
}
.environmentContent .environmentList > li::before {
    content: counter(number-1, decimal-leading-zero);
    font-weight: bold;
    color: var(--main-color01);
    position: absolute;
    left: 0;
}

.environmentContent .environmentList > li:last-of-type {
    margin-bottom: 0;
}

.environmentContent .environmentList > li > ol {
    margin-top: 30px;
}

.environmentContent .environmentList > li > ol > li {
    position: relative;
    border-bottom: 1px solid #C9CACA;
    padding: 20px 0 20px 25px;
    margin-left: -25px;
    counter-increment: number-2;
}
.environmentContent .environmentList > li > ol > li::before {
    content: counter(number-2)".";
    position: absolute;
    left: 0;
}

.environmentContent .environmentList > li > ol > li:last-of-type {
    border-bottom: none;
}

/* ----- outlineContent ----- */
.outlineContent {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url(./img/company/bg_outline01.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.outlineContent .flex {
    gap: 30px;
    justify-content: space-between;
}

.outlineContent .tl_popup01 {
    text-align: left;
    color: var(--white);
}

.outlineContent .tl_popup01 small {
    color: var(--white);
}

.outlineTable {
    font-size: 15px;
    color: var(--white);
    max-width: 880px;
    width: 100%;
}

.outlineTable th, 
.outlineTable td {
    padding: 20px 0;
    border-bottom: 1px solid var(--white);
}

.outlineTable tr:last-of-type th, 
.outlineTable tr:last-of-type td {
    border-bottom: none;
}

.outlineTable th {
    font-weight: normal;
    padding-right: 10px;
    width: 18%;
}

#history .outlineTable th {
    width: 25%;
}

/* ----- sdgsContent ----- */
.sdgsContent {
    padding: 100px 0;
}

.sdgsContent .flex {
    gap: 30px;
    justify-content: space-between;
}

.sdgsContent .tl_popup01 {
    text-align: left;
}

.sdgsContent .rightBox {
    max-width: 700px;
    width: 100%;
}

.sdgsContent .sdgsTitle h3 {
    max-width: 400px;
    margin-bottom: 20px;
}

.sdgsContent .sdgsTitle h3 img {
    width: 100%;
}

.sdgsContent .sdgsList {
    margin: 50px 0;
}

.sdgsContent .sdgsList figure {
    margin-bottom: 20px;
}

.sdgsContent .sdgsClear {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sdgsContent .sdgsClear figure {
    flex: 0 1 30%;
}

.sdgsContent .sdgsClear .inBox {
    flex: 1 1 70%;
}

.sdgsContent .sdgsClear h4 {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ----- accessContent ----- */
.accessContent {
    padding: 100px 0;
}

.accessContent .tl_popup01 {
    margin-bottom: 30px;
}

.accessContent .comPhoto {
    width: 100%;
    height: 450px;
}

.accessContent .comPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accessContent .inBox {
    padding: 0 30px 40px;
    background: #E2E8F0;
}

.accessContent .inBox h3 {
    font-size: 15px;
    color: var(--white);
    background: var(--main-color01);
    padding: 20px;
    transform: translateY(-50%);
}

.accessContent .inBox .flex {
    gap: 50px;
    justify-content: space-between;
}

.accessContent .rightBox {
    flex: 1 1 50%;
}

.accessContent .rightBox p {
    padding: 20px 0;
}

.accessContent .rightBox p.add {
    padding-top: 0;
    border-bottom: 1px solid #808080;
}

.accessContent .leftBox {
    flex: 0 1 50%;
}

.accessContent .leftBox iframe {
    width: 100%;
    height: 250px;
}

.accessContent .leftBox .mapBtn {
    text-align: right;
}

.accessContent .leftBox .mapBtn a {
    color: var(--white);
    text-align: center;
    display: inline-block;
    background: var(--main-color01);
    max-width: 200px;
    width: 100%;
    padding: 10px;
    transition: all .3s;
}
.accessContent .leftBox .mapBtn a:hover {
    background: var(--main-hover-color01);
}

.accessContent .slickSliderContent {
    margin-bottom: 0;
}

/* -----------------------------------------------------------
    recruit
----------------------------------------------------------- */
/* ----- recruitMsgContent ----- */
.recruitMsgContent {
    background: var(--main-color01);
    padding: 100px 30px;
}

.recruitMsgContent .inner {
    background: var(--white);
    padding: 60px 30px;
    max-width: 1140px;
}

.recruitMsgContent figure {
    max-width: 800px;
    margin: 30px auto 0;
}
.recruitMsgContent figure img {
    width: 100%;
}

.recruitMsgContent p {
    font-size: 15px;
    max-width: 550px;
    text-align: justify;
    margin: 30px auto 0;
}

/* ----- bg_message ----- */
.bg_message {
    width: 100%;
    height: 560px;
    background: url(./img/recruit/bg_message.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

/* ----- recruitPointContent ----- */
.recruitPointContentList {
    display: flex;
    gap: 30px;
    transform: translateY(-60px);
}

.recruitPointContentList li h3 {
    font-size: 24px;
    color: var(--white);
    background: var(--main-color01);
    padding: 30px;
}

.recruitPointContentList li h3 small {
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}

.recruitPointContentList li p {
    font-size: 15px;
    background: var(--sub-color01);
    padding: 30px;
}

.recruitPointContent .slickSliderContent {
    margin: 0 0 120px;
}

/* ----- welfareContent ----- */
.welfareContent {
    padding-bottom: 100px;
}

.welfareContent .tl_popup01 {
    position: relative;
}
.welfareContent .tl_popup01::before {
    content: "";
    width: 200px;
    height: 100%;
    background: var(--white);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}
.welfareContent .tl_popup01::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--main-color01);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -2;
}

.welfareContentList {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.welfareContentList li {
    color: var(--white);
    background: var(--main-color01);
    padding: 30px;
}

.welfareContentList li figure {
    width: fit-content;
    margin: 0 auto;
}

.welfareContentList li h3 {
    font-size: 26px;
    text-align: center;
    margin: 20px 0;
}

/* ----- guidelineContent ----- */
.guidelineContent {
    background: var(--sub-color01);
    padding: 100px 0;
}

.guidelineBtnList {
    display: flex;
    gap: 30px;
    padding: 60px 0;
    max-width: 750px;
    margin: 0 auto;
}

.guidelineBtnList li {
    font-size: 19px;
    color: var(--white);
    text-align: center;
    background: var(--main-color01);
    width: calc((100% - 30px) / 2);
}

.guidelineBtnList li a {
    display: block;
    padding: 30px 10px;
    transition: all .3s;
}
.guidelineBtnList li a:hover {
    background: var(--main-hover-color01);
}

.guidelineTable {
    font-size: 15px;
    width: 100%;
    background: var(--white);
}

#fullTime {
    margin-bottom: 90px;
}

.guidelineTable th {
    width: 20%;
}

.guidelineTable th, 
.guidelineTable td {
    border-bottom: 1px solid #4D4D4D;
    padding: 20px;
}
.guidelineTable tr:first-of-type th, 
.guidelineTable tr:first-of-type td {
    padding-top: 60px;
}
.guidelineTable tr:last-of-type th, 
.guidelineTable tr:last-of-type td {
    border-bottom: none;
}

/* ----- applicationContent ----- */
.applicationContent {
    text-align: center;
    background: var(--main-color01);
    padding: 100px 0;
}

.applicationContent .tl_popup01, 
.applicationContent .tl_popup01 small {
    color: var(--white);
}

.applicationContent p {
    font-size: 15px;
    color: var(--white);
    margin-top: 30px;
}

.applicationBtnList {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 0 0;
    max-width: 750px;
    margin: 0 auto;
}

.applicationBtnList li {
    font-size: 15px;
    font-weight: 500;
    color: var(--main-color01);
    text-align: center;
    background: var(--white);
    width: calc((100% - 30px) / 2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.applicationBtnList li.tel {
    padding: 20px 10px;
}

.applicationBtnList li a {
    display: block;
    padding: 20px 10px;
    transition: all .3s;
}
.applicationBtnList li a:hover {
    opacity: .6;
}

/* ----- bg_application ----- */
.bg_application {
    width: 100%;
    height: 560px;
    background: url(./img/recruit/bg_application.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

/* -----------------------------------------------------------
    news
----------------------------------------------------------- */
#news .newsList {
    background: none;
    padding: 100px 0;
}

#news .newsList ul {
    margin: 0;
}

#news .newsList ul li {
    border-top: 1px solid #ccc;
}

#news .newsList ul li:first-of-type {
    border-top: none;
}

/* ----- single ----- */
.singleNews {
    padding: 100px 0;
    position: relative;
}
.singleNews::before {
    content: "";
    width: 100%;
    height: 30px;
    background: #3A75BB;
    position: absolute;
    top: 0;
}

.singleNews h2 {
    font-size: 18px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 10px;
}

.singleDetail {
    padding: 30px 0;
}

/* .singleDetail h3 {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
    color: var(--white);
    background: var(--main-color01);
    margin-bottom: 1.5rem;
}

.singleDetail h4 {
    font-size: 1.4rem;
    font-weight: bold;
    padding: 10px 20px;
    background: var(--sub-color01);
    margin-bottom: 1.5rem;
}

.singleDetail h5 {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    border: var(--main-color01) double;
    border-width: 2px 0;
    margin-bottom: 1.5rem;
}

.singleDetail h6 {
    font-weight: bold;
    padding: 10px 20px;
    border-bottom: var(--main-color01) dotted 2px;
    margin-bottom: 1.5rem;
}

.singleDetail blockquote {
    background: var(--sub-color01);
    padding: 20px;
    margin-bottom: 1.5rem;

    p {
        margin-bottom: 0;
    }
}

.singleDetail ul {
    margin-bottom: 1.5rem;
}

.singleDetail ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}
.singleDetail ul li::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    content: "";
    border-radius: 100%;
    width: 10px;
    height: 10px;
    background: var(--main-color01);
}

.singleDetail ol {
    margin-bottom: 1.5rem;
}
.singleDetail ul li::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    content: "";
    border-radius: 100%;
    width: 10px;
    height: 10px;
    background: var(--main-color01);
}

.singleDetail ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    counter-increment: olct;
}
.singleDetail ol li::before {
    content: counter(olct);
    line-height: 23px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    border-radius: 100%;
    width: 24px;
    height: 24px;
    background: var(--main-color01);
} */

.singleDetail p {
    margin-bottom: 1.5rem;
}

.singleDetail img {
    max-width: 100%;
}

.singleDetail a {
    color: var(--main-color01);
    text-decoration: underline;
}
.singleDetail a:hover {
    opacity: 0.6;
}

#news.single .newsList ul {
    margin-top: 10px;
}

#news.single .newsList ul li:first-of-type {
    border-top: 1px solid var(--black);
}

/* -----------------------------------------------------------
    contact
----------------------------------------------------------- */
.contactContent {
    padding: 100px 0;
}

.contactContent .head {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 2px solid #E6E6E6;
}

.contactContent .head p {
    font-size: 15px;
    margin-top: 20px;
}

.contactContent .tel {
    font-weight: bold;
    color: var(--main-color01);
    margin: 5px 0 20px;
}

.contactContent .tel-link {
    font-size: 45px;
    display: block;
}

.contactContent .add {
    font-size: 14px;
}

.contactContent a {
    color: var(--main-color01);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s;
}
.contactContent a:hover {
    opacity: 0.6;
}

/* -----------------------------------------------------------
    privacy
----------------------------------------------------------- */
#privacy #main {
    margin: 100px auto;
}

.privacyContent {
    padding-bottom: 100px;
}

.privacyContent h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color01);
    margin: 50px 0 30px;
}

.privacyContent ol li {
    border-bottom: 1px solid var(--black);
    padding: 20px 0 20px 100px;
    counter-increment: number;
    position: relative;
}
.privacyContent ol li::before {
    content: counter(number, decimal-leading-zero)".";
    position: absolute;
    left: 0;
}

.privacyContent ol li:last-of-type {
    border-bottom: none;
}

.privacyContent ol li h4 {
    margin-bottom: 10px;
}

.privacyContent ol li p {
    margin: 0;
}

.privacyContent p {
    margin: 20px 0;
    clear: both;
}

.privacyContent p small {
    display: block;
    font-size: 14px;
}

.privacyContent a {
    font-weight: 500;
    color: var(--main-color01);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacyContent a:hover {
    opacity: .6;
}

.privacyContent a i {
    color: var(--black);
}

.privacyContent .floatL {
    padding-right: 50px;
}

.privacyContent .floatL p {
    margin-top: 0;
    padding-left: 20px;
}

/* -----------------------------------------------------------
    pickupContent
----------------------------------------------------------- */
.pickupContent {
    padding: 100px 0;
    background: #4C5459;
}

.pickupContentList {
    display: flex;
    gap: 15px;
}

.pickupContentList li {
    font-size: 26px;
    color: var(--white);
    letter-spacing: 0.1rem;
    width: calc((100% - 30px) / 3);
}
.pickupContent00 {
    background: url(./img/pickup/bg_pickupContent00.jpg) no-repeat center;
    background-size: cover;
}
.pickupContent01 {
    background: url(./img/pickup/bg_pickupContent01.jpg) no-repeat center;
    background-size: cover;
}
.pickupContent02 {
    background: url(./img/pickup/bg_pickupContent02.jpg) no-repeat center;
    background-size: cover;
}
.pickupContent03 {
    background: url(./img/pickup/bg_pickupContent03.jpg) no-repeat center;
    background-size: cover;
}

.pickupContentList li a {
    background: rgba(0, 0, 0, 0.65);
    transition: all .3s;
}
.pickupContentList li a:hover {
    background: rgba(0, 0, 0, 0);
}

.pickupContentList li small {
    font-size: 15px;
    letter-spacing: normal;
    display: block;
}

.pickupContentList li a {
    display: block;
    padding-top: 8rem;
    padding-left: 1rem;
    padding-bottom: 1rem;
}

/* -----------------------------------------------------------
    footer
----------------------------------------------------------- */
footer {
    font-size: 15px;
    color: var(--white);
    background: #1a1a1a;
    padding-top: 50px;
}

.footerMenu {
    width: calc((100% / 12) * 6);
}
.footerAdd, 
.footerContact {
    width: calc((100% / 12) * 3);
}

.footerAdd {
    font-size: 12px;
}

.footerAdd figure {
    max-width: 185px;
    margin-bottom: 5px;
    transition: all 0.3s;
}
.footerAdd figure:hover {
    opacity: 0.6;
}

.footerAdd figure img {
    width: 100%;
}

.footerMenuList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
    max-width: 360px;
    margin: 0 auto;
}

.footerMenuList li {
    width: fit-content;
}

.footerMenuList li a {
    transition: all .3s;
}
.footerMenuList li a:hover {
    opacity: .6;
}

.footerMenuList li small {
    display: block;
}

.footerContact .contact {
    display: block;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--main-color01);
    margin-bottom: 1rem;
    transition: all .3s;
}
.footerContact .contact:hover {
    opacity: 1;
    background: var(--main-hover-color01);
}

.footerContact a {
    transition: all .3s;
}
.footerContact a:hover {
    opacity: .6;
}

.footerBnr {
    justify-content: space-between;
    margin-top: 50px;
    padding: 25px 30px;
    border-top: 1px solid var(--white);
    position: relative;
}
.footerBnr::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -100%;
    width: 100%;
    height: 1px;
    background: var(--white);
}

.footerBnrList {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 840px;
    width: 100%;
}

.footerBnrList li {
    width: calc((100% - 45px) / 4);
}

.footerBnrList li img {
    width: 100%;
}

p.copyRight {
    margin-left: 20px;
}

#page-top {
    position: fixed;
    right: 0;
    z-index: 500;
    opacity: 0;
    transform: translateY(100px);
}

#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color01);
    width: 80px;
    height: 80px;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 2rem;
    position: relative;
    transition: all 0.3s;
    z-index: 1;
}
#page-top a:hover {
    opacity: .6;
}

#page-top.UpMove {
    animation: UpAnime 1s forwards;
}
#page-top.DownMove {
    animation: DownAnime 1s forwards;
}

#err #main {
    padding: 100px 0;
}

#err #main .btn {
    margin-top: 50px;
}

/* -----------------------------------------------------------
    animation
----------------------------------------------------------- */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -50%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

@keyframes slide1 {
    0% {opacity: 1;}
    16% {opacity: 1;}
    20% {opacity: 0;}
    96% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes slide2 {
    0% {opacity: 0;}
    16% {opacity: 0;}
    20% {opacity: 1;}
    36% {opacity: 1;}
    40% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes slide3 {
    0% {opacity: 0;}
    36% {opacity: 0;}
    40% {opacity: 1;}
    56% {opacity: 1;}
    60% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes slide4 {
    0% {opacity: 0;}
    56% {opacity: 0;}
    60% {opacity: 1;}
    76% {opacity: 1;}
    80% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes slide5 {
    0% {opacity: 0;}
    76% {opacity: 0;}
    80% {opacity: 1;}
    96% {opacity: 1;}
    100% {opacity: 0;}
}

/* -----------------------------------------------------------
    media screen
----------------------------------------------------------- */
@media screen and (max-width: 1320px) {
    p.copyRight {
        margin: 0 60px 0 20px;
    }
}
@media screen and (max-width: 960px) {
    header {
        font-size: 16px;
    }
    header .boxL h1 img {
        width: 80%;
    }
    header .boxR {
        display: none;
    }
    header .boxR ul {
        display: flex;
        gap: 0;
        justify-content: center;
        flex-direction: column;
        color: var(--white);
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(69, 69, 69, 0.98);
    }
    header .boxR ul li {
        width: 100%;
    }
    header .boxR ul li a {
        display: block;
        padding: 1.5rem 0 1.5rem 2rem;
        border-bottom: 1px solid var(--white);
    }
    header .boxR ul li a {
        position: relative;
        transition: all 0.3s ease;
    }
    header .boxR ul li a::after {
        content: none;
    }
    header .boxR ul li a:hover {
        color: var(--white);
    }
    header .boxR ul li a.active::before {
        content: none;
    }
    header .boxR ul li.contact a {
        background: none;
        padding: 1.5rem 0 1.5rem 2rem;
    }
    header .boxR ul li.contact a:hover {
        background: none;
    }
    .menuBtn {
        display: block;
        position: absolute;
        top: 0.5rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        z-index: 1000;
        border: none;
        background: none;
        outline: none;
        padding: 10px;
    }
    .btn-line {
        display: block;
        position: relative;
        width: 100%;
        height: 2px;
        background-color: var(--main-color01);
        transition: 0.2s;
    }
    .btn-line::before, 
    .btn-line::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--main-color01);
        transition: 0.5s;
    }
    .btn-line::before {
        transform: translateY(-10px);
        right: 0;
    }
    .btn-line::after {
        transform: translateY(10px);
        left: 0;
    }
    .btn-line.open {
        background-color: transparent !important;
    }
    .btn-line.open::before, 
    .btn-line.open::after {
        content: "";
        background-color: var(--white);
        transition: 0.2s;
    }
    .btn-line.open::before {
        transform: rotate(45deg);
    }
    .btn-line.open::after {
        transform: rotate(-45deg);
    }
    .mainvBtn {
        gap: 10px;
    }
    .mainvBtn li {
        width: calc((100% - 20px) / 3);
    }
    .aboutContent {
        padding-right: 50px;
    }
    .bg_top01 {
        height: 250px;
        background-attachment: scroll;
    }
    .strongPointList {
        font-size: 20px !important;
    }
    .processContent > .inner > .flex {
        gap: 30px;
        padding: 0 30px;
    }
    .processList li {
        flex-direction: column;
    }
    .processList li > figure {
        width: 100%;
    }
    .businessList {
        gap: 10px;
    }
    .businessList li {
        width: calc((100% - 20px) / 3);
    }
    .bg_business {
        height: 250px;
    }
    .bg_business div {
        background-attachment: scroll;
    }
    .productsCatList li h3 {
        font-size: 24px;
    }
    .companyBtnList {
        gap: 10px;
    }
    .companyBtnList li {
        width: calc((100% - 30px) / 4);
    }
    .companyBtnList li h3 {
        font-size: 20px;
    }
    .bg_greeting {
        height: 250px;
        background-attachment: scroll;
    }
    .managementContent .action .flex {
        flex-direction: column;
        gap: 0;
        padding: 30px 30px 0;
        margin-top: 30px;
    }
    .managementContent .actionImg {
        width: 40%;
        margin: 0 auto;
    }
    .outlineContent {
        background-attachment: scroll;
    }
    .bg_message {
        height: 250px;
        background-attachment: scroll;
    }
    .bg_application {
        height: 250px;
        background-attachment: scroll;
    }
    .footerBnr::before {
        content: none;
    }
    .footerBnrList li {
        width: calc((100% - 15px) / 2);
    }
    p.copyRight {
        margin: 0 0 0 20px;
    }
}
@media screen and (max-width: 630px) {
    .facilityContent {
        font-size: 8.5px;
    }
    .facilityContent th, 
    .facilityContent td {
        padding: 10px 5px;
    }
    .greetingContent .flex {
        flex-direction: column;
        gap: 20px;
    }
    .managementContent .actionImg {
        width: 60%;
    }
    .accessContent .inBox .flex {
        flex-direction: column;
        gap: 0;
    }
    .footerBnrList {
        gap: 20px;
    }
    .footerBnrList li {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .inner {
        width: 100%;
        padding: 0 20px;
    }
    #cornerName > .wide_lg {
        height: 250px;
    }
    .tl_popup02 {
        font-size: 20px;
    }
    .border-bottom1::after {
        height: 75px;
    }
    .border-bottom2 {
        padding-bottom: 20px
    }
    .slickSliderContent {
        margin: 30px 0;
    }
    .pc-block {
        display: none;
    }
    .sp-block {
        display: block;
    }
    header > .wide_lg {
        padding: 20px;
        position: relative;
    }
    #top header > .wide_lg {
        position: absolute;
    }
    .menuBtn {
        right: 10px;
    }
    .mainv .slider {
        height: 90vh;
    }
    .mainv .slogan img {
        filter: none;
    }
    .mainv .slogan {
        transform: translateY(-100%);
    }
    .mainvBtn {
        flex-direction: column;
        bottom: 20px;
    }
    .mainvBtn li {
        width: 100%;
        font-size: 12px;
    }
    .mainvBtn li a {
        padding: 10px;
    }
    .newsList {
        padding: 50px 0;
    }
    .newsList ul {
        margin-bottom: 20px;
    }
    .newsList ul li {
        padding: 20px 0;
    }
    .newsList ul li .inBox.flex {
        flex-direction: column;
        gap: 10px;
    }
    .newsList ul li .cats {
        margin-right: 10px;
    }
    .aboutContent {
        width: 100%;
        padding: 50px 20px;
    }
    .aboutContent .flex {
        flex-direction: column;
        gap: 20px;
    }
    .aboutContent .inBox p {
        margin: 20px 0 40px;
    }
    .aboutContent .inBox ul li span {
        display: none;
    }
    .strongPointContent {
        margin: 50px 20px 0;
    }
    .strongPointList {
        flex-direction: column;
        margin: 20px auto;
    }
    .strongPointList li {
        width: 100%;
    }
    .strongPointList li:nth-of-type(2) {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--white);
        border-bottom: 1px solid var(--white);
    }
    .topPickupContent {
        padding-bottom: 50px;
    }
    .topPickupContentList {
        flex-direction: column;
        margin-top: 30px;
    }
    .topPickupContentList li {
        width: 100%;
    }
    .businessList {
        flex-direction: column;
        padding: 50px 0;
    }
    .businessList li {
        width: 100%;
    }
    .processContent {
        padding: 50px 0 30px;
    }
    .processContent > .inner > figure {
        height: 250px;
    }
    .processContent > .inner > .flex {
        flex-direction: column;
        gap: 0;
        align-items: center;
        padding: 0;
    }
    .processContent h2 {
        font-size: 20px;
        width: calc(100% - 60px);
        height: 120px;
        margin-bottom: 50px;
        opacity: 1;
    }
    .processContent .inBox .caption {
        margin: -70px 0 30px;
    }
    .processList li {
        gap: 20px;
    }
    .qualityContent {
        padding: 50px 0;
    }
    .qualityContent .flex {
        flex-direction: column;
    }
    .qualityList {
        margin: 20px 0;
    }
    .pickupContent {
        padding: 50px 0;
    }
    .pickupContentList {
        flex-direction: column;
        gap: 10px;
    }
    .pickupContentList li {
        width: 100%;
    }
    .companyBtnList {
        flex-direction: column;
        padding: 50px 0;
    }
    .companyBtnList li {
        width: 100%;
    }
    .greetingContent {
        padding: 50px 0;
    }
    .philosophyContent {
        padding: 50px 0;
    }
    .philosophyContent .tl_popup01 {
        margin-bottom: 20px;
    }
    .philosophyContent .tl_popup02 {
        gap: 20px;
    }
    .managementContent .inBox {
        padding: 0 20px 30px;
    }
    .managementContent .vision {
        margin-bottom: 0;
    }
    .managementContent .vision p {
        font-size: 20px;
    }
    .managementContent .action .flex {
        padding: 20px 20px 0;
    }
    .managementContent .actionList {
        font-size: 20px;
    }
    .managementContent .actionList li {
        padding: 20px 0;
    }
    .environment {
        margin-top: 50px;
    }
    .environmentContent .inBox {
        padding: 0 20px 30px;
    }
    .environmentContent .environmentList > li {
        margin-bottom: 30px;
    }
    .environmentContent .environmentList > li > ol {
        margin-top: 20px;
    }
    .outlineContent {
        padding: 50px 0;
    }
    .outlineContent .flex {
        flex-direction: column;
        gap: 10px;
    }
    .outlineTable {
        font-size: 12px;
    }
    .outlineTable th {
        width: 27% !important;
    }
    .sdgsContent {
        padding: 50px 0;
    }
    .sdgsContent .flex {
        flex-direction: column;
    }
    .sdgsContent .sdgsList {
        margin: 30px 0;
    }
    .sdgsContent .sdgsClear {
        flex-direction: column;  
        align-items: baseline;     
    }
    .sdgsContent .sdgsClear figure {
        width: 40%;
    }
    .accessContent {
        padding: 50px 0;
    }
    .accessContent .comPhoto {
        height: 200px;
    }
    .accessContent .inBox {
        padding: 0 20px 30px;
    }
    .overflow-scr {
        margin: 0 20px;
    }
    .overflow-scr > .inner {
        padding: 0;
    }
    .facilityContent {
        margin-bottom: 50px;
        white-space: nowrap;
    }
    .inner.flex:has(.facilityContent) {
        gap: 5px;
    }
    #news .newsList {
        padding: 50px 0;
    }
    .singleNews {
        padding: 70px 0 50px;
    }
    .singleDetail {
        padding: 20px 0;
    }
    .productsContent {
        padding: 50px 0;
    }
    .productsContent figure {
        height: 200px;
    }
    .productsContent .slickSliderContent {
        margin: 20px 0 80px;
    }
    .productsCatList {
        flex-direction: column;
        gap: 70px;
    }
    .productsCatList li {
        width: 100%;
    }
    .productsCatList li h3 {
        max-width: 300px;
    }
    .recruitMsgContent {
        padding: 50px 20px;
    }
    .recruitMsgContent .inner {
        padding: 30px;
    }
    .recruitMsgContent figure {
        margin-top: 20px;
    }
    .recruitMsgContent p {
        margin-top: 20px;
    }
    .recruitPointContentList {
        flex-direction: column;
        gap: 20px;
    }
    .recruitPointContentList li h3 {
        padding: 20px;
        font-size: 19px;
    }
    .recruitPointContentList li p {
        padding: 20px;
    }
    .recruitPointContent .slickSliderContent {
        margin: 0 0 60px;
    }
    .welfareContent {
        padding-bottom: 50px;
    }
    .welfareContentList {
        flex-direction: column;
        margin-top: 30px;
    }
    .guidelineContent {
        padding: 50px 0;
    }
    .guidelineBtnList {
        gap: 10px;
        padding: 30px 0;
    }
    .guidelineBtnList li {
        width: 100%;
    }
    .guidelineBtnList li a {
        padding: 20px 10px;
    }
    .guidelineTable tbody {
        display: block;
        padding: 20px;
    }
    .guidelineTable tr:first-of-type th, 
    .guidelineTable tr:first-of-type td {
        padding-top: 10px;
    }
    .guidelineTable th, 
    .guidelineTable td {
        display: block;
        width: 100%;
    }
    .guidelineTable th {
        border-bottom: none;
        padding: 15px 0 0;
    }
    .guidelineTable td {
        padding: 10px 0 15px;
    }
    #fullTime {
        margin-bottom: 30px;
    }
    .applicationContent {
        padding: 50px 0;
    }
    .applicationBtnList {
        flex-direction: column;
        gap: 10px;
    }
    .applicationBtnList li {
        width: 100%;
    }
    .contactContent .tel-link {
        font-size: 30px;
    }
    #privacy #main {
        margin: 50px auto;
    }
    .privacyContent {
        padding-bottom: 30px;
    }
    .privacyContent h3 {
        margin: 30px 0 20px;
    }
    .privacyContent ol li {
        padding-left: 50px;
    }
    .footerMenuContent {
        flex-direction: column;
        gap: 45px;
    }
    .footerAdd, 
    .footerContact {
        width: 100%;
    }
    .footerMenu {
        width: 100%;
    }
    .footerMenuList {
        max-width: none;
        width: 100%;
        gap: 20px;
    }
    .footerBnr {
        flex-direction: column;
        margin-top: 30px;
        padding: 20px;
    }
    .footerBnrList {
        gap: 10px;
    }
    p.copyRight {
        margin: 20px auto 0;
    }
    #page-top a {
        width: 60px;
        height: 60px;
    }
}