@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Kosugi+Maru&display=swap');

/*-----------------
 全体共通
------------------*/
* {
    line-height: 1.8;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 17px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #fff;
    color: #333;
    letter-spacing: 1px;
}
a {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: 0.4s;
}
a:hover {
    opacity: 0.7;
}
img {
    max-width: 100%;
    height: auto;
}
main {
    overflow-x: hidden;
}
#top section {
    padding: 150px 0;
}
section {
    padding: 80px 0;
}
.container {
    margin: 0 auto;
}
.content {
    display: flex;
    gap: 30px;
}
.subsection_area:not(:last-of-type) {
    margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
    body{
        width: 767px;
        overflow: auto;
    }
}
@media screen and (min-width: 481px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}
@media screen and (max-width: 480px) {
    body{
        width: 100%;
    }
    .content {
        flex-direction: column;
    }
    #top section {
        padding: 100px 0;
    }
}


/* 見出し */
body:not(#top) .index {
    margin-bottom: 50px;
    text-align: center;
}
.headline {
    font-size: 40px;
    letter-spacing: 8px;
}
.subhead {
    font-size: 23px;
    letter-spacing: 3px;
    color: #FF7312;
}
#page_title {
    position: relative;
    height: 200px;
    padding: 0 10px;
    margin-top: 130px;
    background: url(images/profile_2.webp) center / cover no-repeat;
}
#page_title::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
#page_title .headline {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
}
.sub_index {
    font-size: 23px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #005BAB;
    display: flex;
    align-items: center;
}
.sub_index::after {
    display: block;
    content: '';
    flex-grow: 1;
    height: 3px;
    background-color: #005BAB;
    border-radius: 5px;
    margin-left: 10px;
}
@media screen and (max-width: 960px) {
     #page_title {
        margin-top: 70px;
    }
}
@media screen and (max-width: 480px) {
    #top .index {
        text-align: center;
    }
    .headline {
        font-size: 27px;
        letter-spacing: 5px;
    }
    .subhead {
        font-size: 20px;
    }
    #page_title {
        height: 150px;
        margin-top: 50px;
    }
    .sub_index {
        font-size: 20px;
    }
}


/* リスト・表 */
.common_dl {
    margin-bottom: 70px;
}
.common_dl > div{
    width: 100%;
    display: flex;
}
.common_dl > div:not(:last-of-type){
    margin-bottom: 10px;
}
.common_dl dt{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    border-radius: 20px;
    padding: 10px;
    background-color: #EEEEF2;
}
.common_dl dd{
    width: 80%;
    padding: 10px 10px 10px 20px;
}
@media screen and (max-width: 480px) {
    .common_dl > div {
        flex-direction: column !important;
    }
    .common_dl dt, .common_dl dd {
        width: 100%;
    }
    .common_dl > div:not(:last-of-type){
        margin-bottom: 15px;
    }
    .common_dl dd {
        padding-left: 10px;
    }
}

/* 詳細ボタン */
.more_btn {
    position: relative;
    display: block;
    width: 250px;
    background-color: #005BAB;
    border-radius: 50px;
    color: #fff;
    padding: 15px 10px;
    margin: 30px auto 0;
    text-align: center;
    text-decoration: none;
    border: 1px solid #005BAB;
    transition: 0.4s;
} 
.more_btn:hover {
    opacity: 1;
    background-color: #fff;
    color: #005BAB;
}
.btn_arrow {
    position: absolute;
    top: 15px;
    right: 20px;
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: 0.4s;
}
.more_btn:hover .btn_arrow {
    background-color: #005BAB;
}
.btn_arrow::before, .btn_arrow::after {
    position: absolute;
    display: inline-block;
    content: '';
    transition: 0.4s;
}
.btn_arrow::before {
    top: 14px;
    left: 6px;
    width: 15px;
    height: 2px;
    background-color: #005BAB;
}
.more_btn:hover .btn_arrow::before {
    background-color: #fff;
    transform: translateX(5px);
}
.btn_arrow::after {
    top: 11.5px;
    left: 14px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #005BAB;
    border-right: 2px solid #005BAB;
    transform: rotate(45deg);
}
.more_btn:hover .btn_arrow::after {
    border-color: #fff;
    transform: translateX(5px) rotate(45deg);
}
@media screen and (max-width: 480px) {
    .more_btn {
        width: 100%;
    }    
}

/* パンくずリスト */
#breadcrumb {
    margin-bottom: 50px;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#breadcrumb ul li {
    position: relative;
    padding-right: 20px;
    list-style-type: none;
    font-size: 15px;
}
#breadcrumb ul li:not(:last-child):after {
    position: absolute;
    top: 2px;
    right: 0;
    display: inline-block;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FF7312;
}

/* フェードインアニメーション */
.fade-in {
    opacity: 0;
    transition: all 2s ease;
    transform: translateY(50px);
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
.cut-in {
    opacity: 0;
    transition: all 1s ease;
    transition-delay: 1s;
    transform: translateY(50px);
}
.cut-in.show {
    opacity: 1;
    transform: translateY(0);
}



/* ヘッダー */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 15;
    background-color: #fff;
}
#header .container{
    max-width: 1280px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}
.logo img {
    width: 220px;
    min-width: 220px;
}
.language {
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.language a {
    display: block;
    padding: 5px 20px;
    border: 1px solid #005BAB;
    text-decoration: none;
    background-color: #fff;
}
.language li:first-of-type a {
    border-radius: 10px 0 0 10px;
    border-right: none;
}
.language li:last-of-type a {
    border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 1300px) {
    #header .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 960px) {
    #header {
        height: 70px;
    }
    #header .language {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    #header {
        height: 50px;
    }
    header .container {
        height: 50px;
        margin: 0 10px;
    }
    .logo img {
        width: 150px;
        min-width: 150px;
    }    
}
@media screen and (max-width: 365px) {
    .logo a {
        flex-direction: column;
        gap: 0;
        font-size: 12px;
    }
}

/* グローバルナビメニュー */
.menu {
    height: 60px;
    background-color: #005BAB;
    padding: 15px 10px;
}
.menu .container {
    max-width: 1280px !important;
}
.menu_list {
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.menu_list > li {
    padding: 0 30px;
}
.menu_list > li:not(:last-of-type) {
    border-right: 1px solid #fff;
}
.menu_list > li a {
    color: #fff;
    text-decoration: none;
}
.has_child {
    position: relative;
}
.has_child a {
    padding-right: 10px;
}
.has_child::after {
    position: absolute;
    top: 12px;
    display: inline-block;
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
    z-index: 1;
    transition: 0.4s;
}
.has_child.active::after {
    transform: rotate(-45deg);
}
.child_menu {
    position: absolute;
	left:0;
	top:40px;
	width: 100% !important;
    display: flex;
    flex-direction: column;
	visibility: hidden;
	opacity: 0;
	display: block;
    transition: all 0.3s;
    padding: 5px;
    background-color: #005BAB;
    list-style-type: none;
}
.has_child:hover > ul,
.has_child ul li:hover > ul,
.has_child:active > ul,
.has_child ul li:active > ul {
    visibility: visible;
    opacity: 1;
}
.child_menu li {
    width: 100%;
    padding: 10px !important;
}
.child_menu li:not(:last-child) {
    border-bottom: 1px dotted #fff;
}
.child_menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    font-size: 15px;
}
@media screen and (max-width: 1300px) {
    .menu .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 960px) {
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: 0.4s;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 0;
    }
    .menu_list{
        display: flex;
        flex-direction: column;
        padding: 80px 0 50px;
    }
    .menu::-webkit-scrollbar {
        display:none;
    }
    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        transition: 0.4s;
    }
    .menu_list li {
        width: 100%;
        padding: 0;
    }
    .menu_list > li {
        border-bottom: 1px solid #fff;
    }
    .menu_list > li a {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px 10px;
    }
    .menu_list > li:first-of-type > a {
        border-top: 1px solid #fff;
    }
    .menu_list > li:not(:last-of-type) {
        border-right: none;
    }
    .child_menu {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: none;
        background: transparent;
        padding: 0 15px !important;
    }
    .child_menu li a {
        align-items: flex-start;
        padding: 10px;
    }
    .has_child::after {
        top: 30px;
        right: 20px;
        transform: rotate(135deg);
    }
    .menu .language {
        padding-bottom: 50px;
    }
}
@media screen and (min-width: 960px) {
    .menu .language {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .menu {
        width: 100% !important;
    }
}


/* ハンバーガーメニュー */
.hamburger {
    position: fixed;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background-color:  #005BAB;
    border: none;
    transition: 0.4s;
    cursor: pointer;
    z-index: 20;
}
.line {
    display: inline-block;
    position: absolute;
    top: 34px;
    left: 17px;
    width: 35px;
    height: 1px;
    background-color: #fff;
    transition: 0.4s;
}
.line::before, .line::after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: #fff;
    transition: 0.4s;
}
.line::before {
    top: -12px;
}
.line::after {
    bottom: -12px;
}
.hamburger.active .line {
    background: transparent;
    transform: translateX(20px);
}
.hamburger.active .line::before, .hamburger.active .line::after {
    left: 0;
    width: 100%;
}
.hamburger.active .line::before {
    top: -5px;
    transform: translate(-20px,5px) rotate(-45deg) !important;
}
.hamburger.active .line::after {
    top: 5px;
    transform: translate(-20px,-5px) rotate(45deg) !important;
}
@media print, screen and (min-width: 961px) {
    .hamburger {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .hamburger {
        width: 50px;
        height: 50px;
    }
    .line {
        top: 25px;
        left: 12px;
        width: 25px;
    }
    .line::before, .line::after {
        width: 25px;
    }
    .line::before {
        top: -8px;
    }
    .line::after {
        bottom: -8px;
    }    
}


/* トップ画像*/
#mainvisual {
    position: relative;
    width: 100%;
    height: 100dvh;
}
.topimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeimg 3s ease forwards;
}
@keyframes fadeimg {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.catchphrase_wrapper {
    position: absolute;
    top: 75%;
    width: 100%;
}
.catchprase {
    position: absolute;
    background-color: #000;
    color: #fff;
    font-size: 50px;
    padding: 0 10px;
}
.line1 {
    bottom: 0;
    right: 100px;
}
.line2 {
    top: 0;
    right: 50px;
}
@media screen and (max-width: 960px) {
    .catchprase {
        font-size: 40px;
    }
}
@media screen and (max-width: 480px) {
    #mainvisual {
        height: 100vw;
        margin-top: 50px;
    }
    .catchprase {
        font-size: 20px;
    }
    .line1 {
        right: 30px;
    }
    .line2 {
        right: 10px;
    }
}
@media screen and (max-width: 375px) {
    .catchprase {
        font-size: 18px;
    }
}

/* 生産機械*/
#production-top .container {
    max-width: 1280px;
}
#production-top .content {
    justify-content: center;
    margin-bottom: 50px;
}
#production-top .content p {
    line-height: 2.3;
    width: 40%;
}
.product_list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    list-style-type: none;
}
.product_list li {
    width: 45%;
    overflow: hidden;
}
.product_list li img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
    vertical-align: bottom;
    transition: 0.4s;
}
.product_list li a {
    position: relative;
    text-decoration: none;
}
.product_list li a:hover {
    opacity: 1;
}
.product_list li img:hover {
    transform: scale(1.1);
}
.grayscale {
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 10px;
    font-size: 25px;
    color: #fff;
    text-align: center;
}
.catalog_list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin-top: 50px;
}
.catalog_list li{
    width: 23%;
}
@media screen and (max-width: 1300px) {
    #production-top .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 1280px) {
    .product_list li {
        width: 48%;
    }
}
@media screen and (max-width: 960px) {
    #production-top .content p {
        width: 65%;
    }
    .grayscale {
        padding: 10px;
        font-size: 20px;
    }
}
@media screen and (max-width: 480px) {
    #production-top .content, .product_list {
        flex-direction: column;
    }
    #production-top .content p, .product_list li {
        width: 100%;
    }
    .grayscale {
        padding: 5px 10px;
        font-size: 18px;
    }
    .catalog_list {
        flex-direction: column;
    }
    .catalog_list li {
        width: 80%;
        margin: 0 auto;
    }
}

/* 生産機械　個別ページ*/
#product [id] {
    scroll-margin-top: 150px;
}
#product .container, .category-peelingline .container, .category-dryingline .container, .category-building .container, .category-various .container{
    max-width: 960px;
}
@media screen and (max-width: 1024px) {
    #product .container, .category-peelingline .container, .category-dryingline .container, .category-building .container, .category-various .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 960px) {
    #product [id] {
        scroll-margin-top: 90px;
    }
}
@media screen and (max-width: 480px) {
    #product [id] {
        scroll-margin-top: 70px;
    }
}



/* お知らせ */
#news-top {
    background-color: #EEEEF2;
}
#news-top .container {
    max-width: 960px;
}
#news-top .index {
    text-align: center;
    margin-bottom: 50px;
}
.news_list {
    position: relative;
    background-color: #fff;
    padding: 30px 50px;
    list-style-type: none;
}
.news_list::before, .news_list::after {
    display: block;
    content: '';
    position: absolute;
    border: 30px solid transparent;
    transform: rotate(45deg);
}
.news_list::before {
    top: -30px;
    left: -30px;
    border-right: 30px solid #EEEEF2;
}
.news_list::after {
    bottom: -30px;
    right: -30px;
    border-left: 30px solid #EEEEF2;
}
.news_list li {
    padding: 20px 0;
}
.news_list li:not(:last-of-type) {
    border-bottom: 1px solid #333;
}
.news_list li a {
    display: flex;
    gap: 50px;
    text-decoration: none;
    padding: 0 20px;
}
.news_list li a time {
    color: #005BAB;
}
@media screen and (max-width: 1024px) {
    #news-top .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 480px) {
    .news_list {
        padding: 30px 20px;
    }
    .news_list li a {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }

}
/* お知らせ　個別ページ */
.category-news .container, .single .container{
    max-width: 960px;
}
.category-news .news_list {
    position: static;
    padding: 0;
}
.category-news .news_list::before, .category-news .news_list::after {
    display: none;
}
.category-news .news_list li:first-of-type {
    padding-top: 0;
}
.category-news .news_list li:last-of-type {
    padding-bottom: 0;
}
.article_header {
    position: relative;
    margin-bottom: 50px;
    padding: 10px 15px;
    border-bottom: 2px solid #bbb;
}
.article_title {
    font-weight: 500;
    font-size: 22px;
}
.article_date {
    color: #005BAB;
}
.article_text {
    padding: 0 15px;
}
.article_text > ul li, .article_text > ol li {
    margin-left: 25px;
}
.article_text p:not(:last-of-type) {
    margin-bottom: 20px;
}
.article_text p .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.article_text p .alignright {
    display: block;
    margin-left: auto;
}
@media screen and (max-width: 1024px) {
    .category-news .container, .single .container {
        margin: 0 20px;
    }
}
/* 一覧ページネーション */
.nav-links .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
}
.nav-links .page-numbers li {
    list-style-type: none;
}
.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next {
    position: relative;
    display: block;
    content: '';
    width: 40px;
    height: 40px;
    background-color: #005BAB;
    border: 1px solid #005BAB;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    margin-top: 0;
    text-decoration: none;
}
.nav-links a.page-numbers:hover {
    opacity: 1;
    background-color: #fff;
    color: #005BAB;
}
.nav-links .current {
    background-color: #eee;
    border-color: #eee;
    color: #6e6e6e;
}
.nav-links a.prev {
    margin-right: 5px;
}
.nav-links a.next {
    margin-left: 5px;
}
.nav-links .dots {
    margin-top: 0;
}
.prev_arrow, .next_arrow {
    position: absolute;
    top: 14.5px;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
}
.prev_arrow {
    left: 16px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
}
.next_arrow {
    right: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.nav-links a.page-numbers:hover .prev_arrow,
.nav-links a.page-numbers:hover .next_arrow {
    border-color: #005BAB;
}
.current .prev_arrow, .current .next_arrow {
    border-color: #6e6e6e;
}
/* 個別ページネーション */
.article_pagenation {
    display: flex;
    justify-content: space-between;
    gap: 15px 30px;
    margin: 70px auto 0;
    width: 90%;
}
.nav-prev-link, .nav-next-link {
    position: relative;
    width: auto;
    min-width: 50%;
    display: flex;
    gap: 10px;
    border-radius: 5px;
    padding: 10px;
    text-decoration: none;
    border: 1px solid #5C9FDA;
    background-color: #fff;
}
.article_pagenation:has(.nav-prev-link):not(:has(.nav-next-link)) {
    justify-content: flex-start; 
}
.article_pagenation:has(.nav-next-link):not(:has(.nav-prev-link)) {
    justify-content: flex-end; 
}
.nav-prev-link:hover, .nav-next-link:hover {
    opacity: 1;
}
.nav-next-link {
    text-align: right;
    flex-direction: row-reverse;
}
.nav-prev-title, .nav-next-title {
    font-size: 15px;
    margin: 0;
}
.nav-prev-title {
    padding-left: 20px;
}
.nav-next-title {
    padding-right: 20px;
}
.nav-prev-arrow, .nav-next-arrow {
    position: absolute;
    top: 20.8px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #5C9FDA;
    transition: 0.3s;
}
.nav-next-arrow {
    right: 15px;
    border-right: 2px solid #5C9FDA;
    transform: rotate(45deg);
}
.nav-next-link:hover .nav-next-arrow {
    transform: rotate(45deg) translate(3px, -3px);
}
.nav-prev-arrow {
    left: 15px;
    border-left: 2px solid #5C9FDA;
    transform: rotate(-45deg);
}
.nav-prev-link:hover .nav-prev-arrow {
    transform: rotate(-45deg) translate(-3px, -3px);
}
@media screen and (max-width: 480px) {
    .article_pagenation {
        flex-direction: column;
    }
    .nav-prev-link, .nav-next-link {
        width: 100%;
    }    
}


  
/* 会社案内・部署一覧 */
#company-top {
    position: relative;
    background: url(images/profile_1.webp) center / cover no-repeat;
}
#company-top::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 1px;
    left: 0;
    background: linear-gradient(360deg, #ffffff, transparent);
}
#company-top .container{
    position: relative;
    z-index: 1;
    max-width: 960px;
}
#company-top .headline, #company-top .subhead{
    color: #fff;
}
#company-top .content {
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
#company-top .content:first-of-type {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #fff;
}
#company-top .content:last-of-type .index{
    text-align: right;
}
.gray_bg {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px 30px;
}
.link_list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style-type: none;
}
.link_list li{
    width: 45%;
}
.link_list .long {
    width: 100%;
}
.link_list a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.link_list a:hover {
    opacity: 1;
}
.link_list a .btn_arrow{
    top: 0;
    right: -40px;
}
.link_list a .btn_arrow::before {
    background-color: #333;
}
.link_list a .btn_arrow::after {
    border-color: #333;
}
.link_list a:hover .btn_arrow::before {
    transform: translateX(5px);
}
.link_list a:hover .btn_arrow::after {
    transform: translateX(5px) rotate(45deg);
}
@media screen and (max-width: 1024px) {
    #company-top .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 480px) {
    #company-top .content:last-of-type{
        flex-direction: column-reverse;
    }
    .gray_bg {
        padding: 50px 20px;
    }
    .link_list a {
        font-size: 18px;
    }
}
@media screen and (max-width: 450px) {
    .link_list li{
        width: 100%;
        text-align: center;
    }
}




/* 採用情報 */
#recruit-top .container {
    max-width: 1280px;
}
#recruit-top .content {
    justify-content: center;
    margin-bottom: 50px;
}
#recruit-top .content p {
    line-height: 2.3;
    width: 40%;
}
.work_slider {
    width: 100%;
    list-style-type: none;
}
.work_slider li {
    margin: 0 20px;
}
.work_slider img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.btn_list {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style-type: none;
    margin-top: 50px;
}
.btn_list .more_btn{
    width: 350px;
    margin-top: 0;
}
.btn_list a i{
    margin-left: 5px;
}
@media screen and (max-width: 1300px) {
    #recruit-top .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 960px) {
    #recruit-top .content p {
        width: 65%;
    }
}
@media screen and (max-width: 480px) {
    #recruit-top .content p {
        width: 100%;
    }
    .btn_list {
        flex-direction: column;
        gap: 20px;
        margin: 50px 20px 0;
    }
    .btn_list .more_btn{
        width: 100%;
    }
}



/* お問い合わせ */
#contact-top {
    padding: 0 !important;
}
#contact-top .flex{
    display: flex;
}
.tel-fax, .contact-form {
    width: 50%;
    padding: 50px 30px;
    color: #fff;
    text-align: center;
    font-size: 20px;
}
.tel-fax p, .contact-form p {
    margin-bottom: 10px;
}
.tel-fax img, .contact-form img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}
.tel-fax img{
    vertical-align: -7px;
}
.contact-form img{
    vertical-align: -15px;
}
.tel-fax {
    background-color: #FFA05D;
}
.tel-fax span, .tel-fax a {
    display: block;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 2px;
}
.tel-fax a {
    color: #fff;
    text-decoration: none;
}
.contact-form {
    background-color: #5C9FDA;
}
.contact_btn {
    display: block;
    width: 430px;
    height: 100px;
    background-color: #fff;
    color: #5C9FDA;
    padding: 15px 10px;
    margin: 35px auto 0;
    text-decoration: none;
    font-size: 25px;
    line-height: 70px;
    border-radius: 10px;
}
@media screen and (max-width: 960px) {
    .tel-fax, .contact-form {
        padding: 50px 25px;
    }
    .tel-fax img, .contact-form img{
        width: 40px;
        height: 40px;
    }
    .contact-form img{
        vertical-align: -10px;
    }
    .tel-fax span, .tel-fax a {
        font-size: 35px;
    }
    .contact_btn {
        width: 100%;
        margin: 30px auto 0;
        font-size: 22px;
    }
}
@media screen and (max-width: 480px) {
    #contact-top .flex{
        flex-direction: column;
    }
    .tel-fax, .contact-form {
        width: 100%;
        padding: 50px 20px;
        font-size: 17px;
    }
    .tel-fax img, .contact-form img{
        width: 35px;
        height: 35px;
        margin-right: 5px;
    }
    .tel-fax span, .tel-fax a {
        font-size: 30px;
    }
    .contact_btn {
        width: 100%;
        height: 70px;
        line-height: 40px;
        margin: 20px auto 0;
        font-size: 20px;
    }
}
@media screen and (max-width: 370px) {
    .tel-fax img, .contact-form img{
        width: 35px;
        height: 35px;
        margin-right: 5px;
    }
    .tel-fax span, .tel-fax a {
        font-size: 27px;
    }
    .contact_btn {
        font-size: 17px;
    }
}

/* お問い合わせ　個別ページ */
#contact .container {
    max-width: 960px;
}
#contact .tel-fax {
    width: 100%;
    background: none;
    padding: 0;
}
#contact .tel-fax span, #contact .tel-fax a {
    color: #FF7312;
}
#contact .common_dl dt {
    width: 300px;
}
.required, .optional {
    display: inline-block;
    color: #fff;
    padding: 2px 5px;
    font-size: 12px;
    margin-left: 10px;
    border-radius: 5px;
    width: 43px;
    text-align: center;
}
.required {
    background-color: #dd2e2e;
}
.optional {
    background-color: #6e6e6e;
}
input[type="text"], input[type="tel"], input[type="email"], textarea {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #aaa;
    border-radius: 3px;
    font-size: 16px;
    background-color: #f5f9ff;
}
input[type="text"], input[type="tel"], input[type="email"] {
    height: 40px;
}
textarea {
    display: block;
    height: 200px;
    font-family: 'Noto Sans JP', sans-serif;
}
.middle-box {
    width: 350px !important;
}
.privacy_check {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    font-size: 18px;
}
.privacy_check a {
    margin: 0 5px;
}
.privacy_check input{
    width: 18px !important;
    height: 18px !important;
}
.submit_btn input{
    display: block;
    width: 250px;
    border: 1px solid #005BAB;
    border-radius: 50px;
    background-color: #005BAB;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    margin: 0 auto;
    transition: 0.4s;
    cursor: pointer;
}
.submit_btn input:hover{
    background-color: #fff;
    color: #005BAB;
}

#contact [id] {
    scroll-margin-top: 150px;
}
@media screen and (max-width: 1024px) {
    #contact .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 960px) {
    #contact [id] {
        scroll-margin-top: 90px;
    }
}
@media screen and (max-width: 480px) {
    #contact .common_dl dt {
        width: 100%;
    }
    .middle-box {
        width: 100% !important;
    }
    #contact [id] {
        scroll-margin-top: 70px;
    }
}

/* contact form */
#contact .wpcf7-list-item {
    margin: 0 !important;
}
#contact .wpcf7-list-item label{
    display: flex;
    align-items: center;
    gap: 5px;
}
.wpcf7 form .wpcf7-response-output {
    border-color: transparent !important;
    color: #dc3232;
    text-align: center;
}
.wpcf7-not-valid-tip {
    font-size: 15px !important;
}
.wpcf7 form.sent .wpcf7-response-output{
    display: none;
}  



/* 会社概要 */
#company .container {
    max-width: 960px;
}
.outline_gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    list-style-type: none;
}
.outline_gallery li{
    position: relative;
    width: 40%;
    overflow: hidden;
}
.outline_gallery li a:hover {
    opacity: 1;
}
.outline_gallery img {
    vertical-align: bottom;
    transition: 0.4s;
}
.outline_gallery img:hover {
    transform: scale(1.1);
}
.outline_gallery .grayscale {
    bottom: 0;
    font-size: 17px;
    padding: 5px 10px;
}
#company .subsection_area p {
    margin-bottom: 20px;
}
#company .flex {
    display: flex;
    gap: 30px;
}
#company .flex img{
    width: 50%;
    object-fit: contain;
}
.customer_list {
    width: 50%;
    list-style-type: none;
}
.customer_list li {
   position: relative;
   padding-left: 20px;
}
.customer_list li:not(:last-of-type) {
    padding-bottom: 5px;
}
.customer_list li::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 11.5px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #FF7312;
    transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
    #company .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 480px) {
    .outline_gallery {
        flex-direction: column;
    }
    .outline_gallery li{
        width: 100%;
    }
    #company iframe {
        height: 400px;
    }
    #company .flex {
        flex-direction: column;
    }
    #company .flex img, .customer_list {
        width: 100%;
    }
}

/* 事業紹介 */
#business .container {
    max-width: 960px;
}
#business .flex {
    display: flex;
    gap: 30px;
}
#business .flex div{
    width: 70%;
}
#business .flex img{
    width: 30%;
    object-fit: contain;
}
.equipment_list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    list-style-type: none;
    margin-top: 50px;
}
.equipment_list li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32.4%;
    padding: 15px 10px;
    border-radius: 20px;
    background-color: #EEEEF2;
    line-height: 1.5;
}
.equipment_list span{
    display: block;
    font-weight: 700;
    color: #005BAB;
    margin-bottom: 5px;
    line-height: 1.5;
}
.textbox {
    position: relative;
    width: 80%;
    border: 1px solid #cecfd3;
    padding: 50px 30px 40px 40px;
    margin: 0 auto;
}
.textbox::after {
    display: block;
    content: '';
    position: absolute;
    top: 10px;
    right: -10px;
    width: 100%;
    height: 100%;
    background: rgba(232, 231, 240, 0.8);
    z-index: -1;
}
.business_gallery {
    display: flex;
    gap: 20px;
    margin-top: 70px;
    list-style-type: none;
}
.business_gallery li{
    width: 40%;
}
.business_gallery img{
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
    #business .container {
        margin: 0 20px;
    }
}
@media screen and (min-width: 481px) {
    .equipment_list li br{
        display: none;
    }
}
@media screen and (max-width: 480px) {
    #business .flex {
        flex-direction: column;
    }
    #business .flex div{
        width: 100%;
    }
    #business .flex img{
        width: 60%;
        margin: 0 auto;
    }
    .equipment_list li{
        width: 48%;
        padding: 10px;
        font-size: 15px;
    }
    .textbox {
        width: 100%;
        padding: 40px 20px 30px 30px;
    }
    .business_gallery {
        margin-top: 60px;
    }
    .business_gallery .slick-slide{
        padding: 10px;
    }
}

/* GX,DXの取り組み */
#gx-dx .container {
    max-width: 960px;
}
#gx-dx .flex, .single .flex {
    display: flex;
    gap: 30px;
}
#gx-dx .flex a, #gx-dx .flex .text_area,
.single .flex a, .single .flex .text_area{
    width: 50%;
}

@media screen and (max-width: 1024px) {
    #gx-dx .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 480px) {
    #gx-dx .flex, .single .flex {
        flex-direction: column;
        gap: 10px;
    }
    #gx-dx .flex a, #gx-dx .flex .text_area,
    .single .flex a, .single .flex .text_area{
        width: 100%;
    }
}


/* フッター */
footer {
    margin-top: auto;
    padding: 50px 0 0;
    background-color: #fff;
    border-top: 10px solid #005BAB;
}
#top footer {
    border-top: none;
}
footer .logo img{
    width: 300px;
    min-width: 300px;
}
footer .container {
    max-width: 1280px !important;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.footer_menu ul{
    list-style-type: none;
}
.footer_menu > ul{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer_menu > ul > li{
    width: 30%;
}
.footer_menu ul li a{
    text-decoration: none;
}
.footer_parent > a {
    position: relative;
    padding-left: 15px;
}
.footer_parent > a::before{
    display: inline-block;
    content: '';
    position: absolute;
    top: 9.5px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #FF7312;
    transform: rotate(45deg);
}
.footer_child li {
    position: relative;
    font-size: 15px;
    padding-left: 20px;
}
.footer_child li::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 13px;
    left: 5px;
    width: 10px;
    height: 2px;
    background-color: #6e6e6e;
    border-radius: 5px;
}
.not_link {
    pointer-events: none;
}
.copyright {
    background-color: #005BAB;
    color: #fff;
    padding: 10px;
    font-size: 13px;
    margin-top: 50px;
    text-align: center;
    letter-spacing: 0;
}
@media screen and (max-width: 1300px) {
    footer .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 960px) {
    footer .container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .footer_menu > ul{
        justify-content: flex-start;
    }
}
@media screen and (max-width: 480px) {
    footer .logo img{
        width: 220px;
        min-width: 220px;
    }
    .footer_menu > ul > li{
        width: 47%;
    }
}
@media screen and (max-width: 400px) {
    .footer_menu > ul {
        flex-direction: column;
    }
    .footer_menu > ul > li{
        width: 100%;
    }
}

/* ページトップボタン */
.page_top {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    z-index: 10;
    background-color: #005BAB;
}
.arrow {
    position: absolute;
    top: 27px;
    left: 22px;
    display: block;
    width: 70px;
    height: 70px;
    width: 25px;
    height: 25px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(315deg);
    transition: 0.4s;
}
.page_top:hover {
    opacity: 1;
}
.page_top:hover .arrow{
    transform: translateY(-3px) rotate(315deg);
}
@media screen and (max-width: 480px) {
    .page_top {
        width: 50px;
        height: 50px;
    }
    .arrow {
        top: 22px;
        left: 15px;
        width: 20px;
        height: 20px;
    }
}


/* 個人情報保護方針 */
.num_list {
    padding-left: 20px;
}
.num_list li {
    padding: 0 0 15px 5px;
}
.num_list li::marker {
    font-weight: 700;
    color: #FF7312;
}
.num_list li > ol {
    padding-left: 30px;
}
.num_list li > ol li {
    padding-bottom: 10px;
}
.num_list > li:last-of-type, .num_list li > ol li:last-of-type {
    padding-bottom: 0;
}
.numlist_title {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}
#privacy .container {
    max-width: 960px;
}
@media screen and (max-width: 1024px) {
    #privacy .container {
        margin: 0 20px;
    }
}


/* お問い合わせの完了 */
#thanks .container {
    max-width: 960px;
}
#thanks .more_btn {
    margin-top: 50px;
}
@media screen and (max-width: 1024px) {
    #thanks .container {
        margin: 0 20px;
    }
}

/* 404 */
.error404 .container {
    max-width: 960px;
}
.error404 .more_btn {
    margin-top: 50px;
}
@media screen and (max-width: 1024px) {
    .error404 .container {
        margin: 0 20px;
    }
}



/* reCAPTCHA */
#contact .grecaptcha-badge {
    width: 70px !important;
    visibility: visible;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
  }
 #contact .grecaptcha-badge:hover {
    width: 256px !important;
    visibility: visible;
  }
.grecaptcha-badge {
    visibility: hidden;

}
.grecaptcha-badge:hover {
    visibility: hidden;
}



.loading {
    opacity: 0;
    visibility: hidden;
}
.loading.slick-initialized {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}
