@charset "utf-8";


/*
Theme Name: 池田電装株式会社
Theme URI: https://webtry-test.net
Description: 池田電装株式会社
Version: 1.0
Author: Webtry_Hachisuga
Author URI: https://webtry.net
*/

/*body*/
.wrapper {
    margin: 0 3%;
}
/*フォント*/
.noto-sans-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
/*ヘッダー*/
#name {
    display: flex;
    align-items: center;
}
#name img {
    width: auto;
    height: 40px;
}
.header_container {
    display: flex;
    justify-content: space-between;
}
.btn-menu img {
    width: 50px;
}
.btn-menu {
    width: 50px;
    height: 50px;
    background-color: #0539b3; /* 青地 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 8000;
}
.btn-menu span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
/* ×（バツ）に変形 */
.btn-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .btn-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .btn-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/*モバイルメニュー*/
#menu-panel {
    background-color: #0539b3;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4000;
    padding: 2rem;
    width: max(32vw, 20rem);
    height: 92vh;
    box-shadow: 0 0 2rem black;
    translate: 100vw;
}
.menu-list {
    list-style: none;
    margin-top: 5rem;
}
.menu-list li {
    margin: 1rem 0.5rem;
}
.menu-list li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bolder;
    line-height: 3rem;
}
.menu-list li a:hover {
    color: #d0a900;
}
/*トップイメージ*/
.top-image {
    width: 100%;
    height: 65vh;
    overflow: hidden;
}
.top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*h1タイトル*/
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/*製品情報*/
#product-top {
    background: linear-gradient(120deg, #0539b3 55%, #9dd4fc 45%);
    padding-bottom: 70px;
}
.product_image-top img {
    width: 100%;
    height: 100%;
    aspect-ratio:  3 /2 ;
}
.product_container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(4,auto);
    gap: 10px;
    padding: 30px 30px 50px 30px;
}
#product-top h2 {
    text-align: center;
    padding-top: 80px;
    color: white;
}
#product-top h2 span {
    font-size: 1rem;
}
/*当社の強み*/
#production-top h2 {
    text-align: center;
}
#production-top h2 span {
    font-size: 1rem;
}
#production-top {
    margin-top: 80px;
}
.production_image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}
.production_image {
    aspect-ratio: 16/9;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto 20px auto;
    position: relative;
}
.more-btn {
    display: block;
    padding: 0.6rem 1rem;
    background-color: #0539b3;
    width: 9rem;
    text-align: center;
    margin: 0 auto;
    white-space: nowrap;
}
.more-btn a button {
    color: white;
}
.production_container {
    padding: 50px 0;
}
.inner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    color: white;
}
.inner-text p {
    font-size: 2.5rem;
    padding: 1rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}
.inner-text-description {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0.2rem 0.4rem;
    background-color: rgba(255 , 255, 255, 0.5);
    border-radius: 10px;
    white-space: nowrap;
}
.inner-text-description p {
    font-size: 0.9rem;
}
/*ニュース＆コンタクト*/
#news h2 {
    text-align: center;
}
#news h2 span {
    font-size: 1rem;
}
#news {
    margin-top: 60px;
    margin-bottom: 100px;
}
.news_text {
    margin: 2rem;
    border-bottom: solid 1px #c0c0c0;
    font-size: 0.9rem;
    padding-bottom: 0.2rem;
}
/*お問い合わせ*/
#contact {
    background-color: #0539b3;
    padding-bottom: 80px;
}
#contact h2 {
    text-align: center;
    color: white;
    padding-top: 80px;
    padding-bottom: 60px;
    font-size: 1.2rem;
}
.contact-btn {
    display: block;
    padding: 0.5rem 0.9rem;
    background-color: white;
    width: 9rem;
    text-align: center;
    margin: 0 auto;
}
.contact-btn a button {
    color: #0539b3;
    font-size: 0.9rem;
}
/*フッター*/
footer {
    padding-top: 50px;
}
#footer-menu ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0 5px;
}
#footer-menu ul li {
    font-size: 0.7rem;
    list-style: none;
    white-space: nowrap;
}
#footer-menu ul li a {
    text-decoration: none;
    color: black;
}
#footer-menu ul li a:hover {
    color: #0539b3;
}
#footer-menu ul li+ li {
    border-left: solid 1px;
    padding-left: 0.5rem;
}
#copyright {
    text-align: center;
    padding: 2rem 0;
    font-size: small;
}
/*******/
/*当社の強み*/
#quality-and-people {
    margin-top: 60px;
}
#quality-and-people h1 {
    text-align: center;
    margin-bottom: 30px;
}
#quality-and-people h1 span {
    font-size: 1rem;
}
.quality-and-people_title-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 10vw;
}
.line-title_container-2 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: right;
    padding: 2px 15px;
    background-color: #0539b3;
}
.line-title-2 {
    font-size: 1rem;
    color: white;
}
.line-title_image img {
    width: 50px;
}
.number p {
    font-size: 5rem;
    color: rgba(5, 57, 179, 0.3);
}
.quality-and-people_image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
#production_title-image img {
    object-position: 50% 35%;
}
#quality_title-image img {
    object-position: 50% 80%;
}
.quality-and-people_image {
    position: relative;
}
.quality-and-people_inner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    padding: 0.7rem 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    width: 80%;
    border-radius: 10px;
}
.quality-and-people_inner-text p {
    color: white;
    line-height: 1.7rem;
}
.quality-and-people_description {
    padding: 0.8rem;
}
.production-flow {
    margin-top: 70px;
}
.production-flow_image img {
    width: 100%;
}
.production-flow_image {
    width: 60%;
    display: block;
    margin: 0 auto;
    position: relative;
}
.flow_inner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255 , 255, 255, 0.7);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
}
.flow_inner-text p {
    color: #0539b3;
    font-size: 1.3rem;
    font-family: sans-serif;
    font-weight: bold;
    white-space: nowrap;
}
/*設備紹介*/
#facilities-sec {
    margin-top: 150px;
}
#facilities-sec h1 {
    text-align: center;
    padding: 2rem;
    margin-top: 80px;
}
#facilities-sec h1 span {
    font-size: 1rem;
}
.facilities_container {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(8,auto);
    gap: 10px;
    padding: 0 30px;
}
.facilities {
    margin-bottom: 50px;
}
.facilities_title {
    font-size: 1.2rem;
    padding: 0.9rem 0;
}
.specs table {
    border-collapse: collapse;
    line-height: 1.5rem;
    font-size: 0.9rem;
    width: 100%;
}
.specs table th {
    background-color: #f0f8ff;
    padding: 0.5rem 0.7rem;
    border: solid 1px #b4d9fa;
    white-space: nowrap;
}
.specs table td {
    padding: 0.5rem 0.7rem;
    border: solid 1px #b4d9fa;
    white-space: nowrap;
}
.input {
    background-color: yellow;
}
.facilities_image {
    display: flex;
    padding-top: 15px;
}
.facilities_image img {
    width: 100%;
}
.facilities_image-2 {
    padding-top: 15px;
}
.facilities_image-2 img {
    width: 50%;
    margin: 0 auto;
    display: block;
}
/*人・品質*/
#people {
    margin-top: 140px;
}
#people-btn {
    margin-top: 1rem;
}
#quality {
    margin-top: 140px;
}
.quality_container {
    width: 60%;
    display: block;
    margin: 40px auto;
}
.quality-description {
    padding: 25px 0;
}
.quality-description_image img {
    width: 100%;
    padding: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    overflow: hidden;
}
/**********/
/*会社情報*/
#company {
    margin-top: 60px;
}
#company h1 {
    text-align: center;
}
#company h1 span {
    font-size: 1rem;
}
.company-top {
    padding-top: 30px;
    position: relative;
}
.company-top_image img {
    height: 180vw;
    width: 100%;
    object-fit: cover;
}
.company-top_text {
    padding: 2rem 0;
}
.company-top_text p {
    padding: 1rem;
    font-size: 1.1rem;
    line-height: 2.2rem;
    color: #4d4d4d;
}
.fade-line {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.3s ease, transform 2.6s ease;
}
.fade-line.visible {
    opacity: 1;
    transform: translateY(0);
}
/*会社概要*/
.company-profile {
    margin-top: 20px;
}
.company-profile h2 {
    text-align: center;
}
.company-profile h2 span {
    font-size: 1rem;
}
.company-table {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}
.company-table table {
    border-collapse: collapse;
    line-height: 1.5rem;
    font-size: 0.9rem;
}
.company-table table th {
    background-color: #f0f8ff;
    width: 6rem;
    padding: 0.5rem 0.7rem;
    border: solid 1px #b4d9fa;
}
.company-table table td {
    padding: 0.5rem 0.7rem;
    border: solid 1px #b4d9fa;
}
/*マップ*/
#map h2 {
    text-align: center;
}
#map h2 span {
    font-size: 1rem;
}
#map {
    margin-top: 80px;
}
.g-map iframe {
    width: 100%;
    height: 90vw;
}
.g-map {
    display: block;
    width: 90%;
    margin: 1.5rem auto;
}
/*******/
/*リクルート*/
#recruit {
    margin-top: 60px;
}
#recruit h1 {
    text-align: center;
}
#recruit h1 span {
    font-size: 1rem;
}
.recruit-message {
    padding: 0.7rem;
    border: solid 2px #9dd4fc;
    margin: 2rem 0.5rem;
    font-size: 0.9rem;
    line-height: 1.7rem;
}
.greeting {
    margin: 60px 0;
    padding: 40px 1rem;
    display: block;
    background-image: url(images/koshi.jpg);
    background-size: cover;
}
.greeting h2 {
    text-align: center;
    padding-bottom: 30px;
}
.greeting h2 span {
    font-size: 1rem;
}
.president {
    padding: 3rem;
}
.president img {
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 上品な影 */
}
.greeting-text {
    font-size: 0.95rem;
    line-height: 1.8rem;
}
.signature {
    text-align: right;
    padding-right: 1rem;
    padding-top: 1.8rem;
    font-size: 1rem;
    font-family: serif;
}
.signature p span {
    font-size: 1.4rem;
}
/******/
/*製品情報*/
#product-page {
    margin-top: 60px;
}
#product-page h1 {
    text-align: center;
}
#product-page h1 span {
    font-size: 1rem;
}
.product-page_outer {
    background-color: #0539b3;
    padding-bottom: 60px;
}
.product-content img {
    width: 100%;
    transition: transform 0.3s ease;
    aspect-ratio: 3 / 2;
}
.product-content img:hover {
    transform: scale(1.2);
}
.product-content {
    padding: 3rem;
}
.product-page-top {
    padding: 1rem;
    margin: 3rem auto;
}
.product-page_outer h2 {
    color: white;
    text-align: center;
    padding: 5rem 1rem 1rem 1rem;
}
.product-content h3 {
    color: white;
    text-align: center;
    padding: 1.3rem 0 0.5rem 0;
}
.product-content p {
    color: white;
    font-size: 0.9rem;
}
/*****/
/*お問い合わせ*/
#contact-page {
    margin-top: 60px;
}
#contact-page h1 {
    text-align: center;
}
#contact-page h1 span {
    font-size: 1rem;
}
.contact-page_text {
    padding: 1rem;
    margin: 2rem auto;
}
#contactform {
    padding: 1rem;
    margin: 2rem auto;
}
/*コンタクトフォーム*/
.contactform label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    display: block;
}
.contactform input[type="text"],
.contactform input[type="email"],
.contactform input[type="tel"],
.contactform textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contactform input[type="text"]:focus,
.contactform input[type="email"]:focus,
.contactform input[type="tel"]:focus,
.contactform textarea:focus {
    background: #FFC0CB;
    border: 2px solid #FF1493;
    outline: none;
}
.contact-button {
    width: 100%;
    padding: 10px;
    background-color: #fedfe4;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 auto;
    border: 1px solid #ccc;
    color: black;
}

.contact-button:hover {
    background-color: #FFC0CB;
    color: white;
    border: solid 2px #FF1493;
}
.required {
    font-size: 0.8em;
    padding: 3px;
    background: #cc0000;
    color: #ffffff;
    border-radius: 2px;
    margin-right: 10px;
    margin-bottom: 2px;
    display: inline-block;
}
@media (max-width: 767px) {
    .pc {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .mb {
        display: none !important;
    }
    /*ヘッダー*/
    
    #name img {
        height: 3rem;
        width: auto;
    }
    /*メインメニュー*/
    #main-menu nav ul {
        display: flex;
        justify-content: center;
        gap: 2rem;
        line-height: 70px;
    }
    #main-menu nav ul li {
        list-style: none;
        font-size: 1rem;
        white-space: nowrap;
    }
    #main-menu nav ul li a {
        text-decoration: none;
        color: black;
    }
    #main-menu nav ul li a:hover {
        color: #0539b3;
    }
    #contact-top-button {
        display: block;
        background-color: #0539b3;
        width: 8rem;
        text-align: center;
        line-height: 70px;
    }
    #contact-top-button a {
        color: white;
        font-size: 1rem;
        text-decoration: none;
    }
    .contact-top_image img {
        width: 20px;
    }
    .contact-top_image {
        display: flex;
        align-items: center;
        line-height: 70px;
        background-color: #0539b3;
        padding-left: 2rem;
    }
    .contact-top_container {
        display: flex;
    }
    /*ヘッダー固定*/
    .menubar-fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999; /* 必要に応じて調整（他要素より前面に） */
        background-color: rgba(255 , 255, 255, 0.7); /* 任意。透過を避けるために追加推奨 */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 任意：見た目強調用 */
    }
    /*トップイメージ*/
    .top-image {
        height: 65vh;
    }
    /*製品情報*/
    .product_container {
        grid-template-columns: repeat(4,1fr);
        grid-template-rows: repeat(2,auto);
        gap: 50px;
        padding: 4vw;
    }
    #product-top h2 {
        font-size: 3rem;
    }
    #product-top h2 span {
        font-size: 1.3rem;
    }
    /*当社の強み*/
    #production-top {
        margin: 150px auto;
    }
    #production-top h2 {
        font-size: 3rem;
    }
    #production-top h2 span {
        font-size: 1.3rem;
    }
    .production_container {
        display: flex;
        margin: 0 auto;
        gap: 50px;
        align-items: center;
        padding: 80px 10%;
    }
    .inner-text p {
        font-size: 3.5rem;
    }
    .inner-text-description p {
        font-size: 1rem;
    }
    #blue-back {
        flex-direction: row-reverse;
    }
    .line-title_container {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 50px;
        width: 12vw;
    }
    .line-title {
        font-size: 1.3rem;
        color: #0539b3;
    }
    .line-title_image img {
        width: 70px;
    }
    /*お知らせ・問い合わせ*/
    #news h2 {
        font-size: 2.5rem;
    }
    #news h2 span {
        font-size: 1.3rem;
    }
    #news {
        margin: 130px 20%;
    }
    #contact {
        margin-top: 180px;
    }
    .contact-btn a button {
        font-size: 1.1rem;
    }
    .contact-btn {
        width: 11rem;
    }
    /*フッター*/
    #footer-menu ul li {
        font-size: 1rem;
    }
    /*******/
    /*当社の強み*/
    #quality-and-people {
        margin-top: 150px;
    }
    #quality-and-people h1 {
        font-size: 2rem;
    }
    #quality-and-people h1 span {
        font-size: 1.3rem;
    }
    .number p {
        font-size: 7rem;
    }
    .quality-and-people_title h2 {
        font-size: 2rem;
        padding-left: 1rem;
        white-space: nowrap;
    }
    .quality-and-people_outer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .line-title_container-2 {
        width: 45%;
        height: 1.5rem;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .line-title-2 {
        font-size: 1rem;
        padding-right: 4rem;
    }
    .quality-and-people_image img {
        height: 50vh;
        object-fit: cover;
        overflow: hidden;
    }
    .quality-and-people_inner-text {
        width: 70%;
    }
    .quality-and-people_inner-text p {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
    .quality-and-people_description {
        text-align: center;
        font-size: 1.3rem;
        line-height: 2.5rem;
        padding-top: 3rem;
    }
    .production-flow {
        display: flex;
        justify-content: space-between;
        margin: 100px auto;
        width: 90%;
        padding-left: 2%;
    }
    .flow_inner-text {
        left: 40%;
        transform: translate(-40%, -50%);
    }
    /*設備紹介・人・品質*/
    #facilities-sec h1 {
        font-size: 2rem;
        padding: 3rem;
    }
    #facilities-sec h1 span {
        font-size: 1.3rem;
    }
    .facilities_container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        width: 80%;
        margin: 0 auto;
        gap: 50px;
    }
    #people-btn {
        font-size: 1.3rem;
        width: 13rem;
        margin-top: 4em;
    }
    .quality_container {
        display: flex;
        justify-content: center;
        gap: 50px;
        margin: 70px auto;
        width: 80%;
    }
    .quality-description {
        width: 28%;
    }
    /*********/
    /*会社情報*/
    #company {
        margin-top: 150px;
    }
    #company h1 {
        font-size: 2rem;
    }
    #company h1 span {
        font-size: 1.3rem;
    }
    .company-top_image img {
        height: 80vh;
    }
    .company-top_text {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .company-top_text p {
        font-size: 1.5rem;
        line-height: 3rem;
    }
    /*会社概要*/
    .company-profile {
        margin-top: 50px;
    }
    .company-profile h2 {
        font-size: 2rem;
    }
    .company-profile h2 span {
        font-size: 1.3rem;
    }
    .company-table {
        margin-top: 3rem;
    }
    .company-table table {
        width: 70%;
        font-size: 1.2rem;
        line-height: 2.4rem;
    }
    .company-table table th {
        width: 10rem;
        padding: 1.3rem 1.3rem;
    }
    .company-table table td {
        padding: 1.3rem 1.3rem;
    }
    /*マップ*/
    #map {
        margin-top: 180px;
        margin-bottom: 180px;
    }
    #map h2 {
        font-size: 2rem;
    }
    #map h2 span {
        font-size: 1.3rem;
    }
    .g-map {
        margin: 3rem auto;
        width: 60%;
    }
    .g-map iframe {
        height: 40vw;
    }
    /******/
    /*リクルート*/
    #recruit {
        margin-top: 150px;
    }
    #recruit h1 {
        font-size: 2rem;
    }
    #recruit h1 span {
        font-size: 1.3rem;
    }
    .recruit-message {
        width: 80%;
        display: block;
        margin: 3rem auto;
        font-size: 1.4rem;
        line-height: 3.5rem;
        padding: 3rem;
    }
    .greeting {
        margin: 140px 0;
        padding: 120px 10%;
    }
    .greeting h2 {
        font-size: 2rem;
        padding-bottom: 80px;
    }
    .greeting h2 span {
        font-size: 1.3rem;
    }
    .president img {
        width: 300px;
        display: block;
        margin: 0 auto;
        margin-bottom: 4rem;
    }
    .greeting-text {
        font-size: 1.2rem;
        line-height: 2.9rem;
    }
    .signature {
        padding-top: 5rem;
        font-size: 1.2rem;
        line-height: 3rem;
    }
    .signature p span {
        font-size: 1.7rem;
    }
    /*****/
    /*製品情報*/
    #product-page {
        margin-top: 150px;
    }
    #product-page h1 {
        font-size: 2rem;
    }
    #product-page h1 span {
        font-size: 1.3rem;
    }
    .product-page_outer {
        padding-bottom: 100px;
    }
    .product-page-top {
        font-size: 1.2rem;
        margin: 6rem auto;
    }
    .product-page_container {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .product-page_outer h2 {
        font-size: 2rem;
        padding-top: 8rem;
        padding-bottom: 3rem;
    }
    .product-content h3 {
        font-size: 1.2rem;
    }
    .product-content p {
        font-size: 1rem;
    }
    /*****/
    /*お問い合わせ*/
    #contact-page {
        margin-top: 150px;
    }
    #contact-page h1 {
        font-size: 2rem;
    }
    #contact-page h1 span {
        font-size: 1.3rem;
    }
    /*コンタクトフォーム*/
    .contact-button {
        width: 40%;
        display: block;
    }
}
@media (min-width: 1024px) {
    /*メインメニュー*/
    #main-menu nav ul {
        gap: 3rem;
    }
    #main-menu nav ul li {
        font-size: 1.3rem;
    }
    #contact-top-button {
        width: 11rem;
    }
    #contact-top-button a {
        font-size: 1.3rem;
    }
    .contact-top_image img {
        width: 30px;
    }
    /*製品情報*/
    .product_container {
        padding: 4vw 25vw;
    }
    .production_container {
        padding: 80px 20%;
    }
    /*******/
    /*当社の強み*/
    .number p {
        font-size: 10rem;
    }
    .quality-and-people_title h2 {
        font-size: 3rem;
    }
    .line-title_container-2 {
        width: 55%;
    }
    .quality-and-people_inner-text {
        width: 30%;
    }
    /*設備紹介・人・品質*/
    .facilities_container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    /*********/
    /*会社概要*/
    .company-table table {
        width: 40%;
    }
    /*マップ*/
    .g-map {
        width: 50%;
    }
    .g-map iframe {
        height: 30vw;
    }
    /******/
    /*リクルート*/
    .recruit-message {
        width: 60%;
    }
    .greeting {
        padding: 120px 20%;
    }
    .president img {
        width: 400px;
    }
    /*****/
    /*製品情報*/
    .product-page-top {
        text-align: center;
    }
    .product-page_container {
        grid-template-columns: repeat(4,1fr);
        padding: 2rem 50px;
    }
    /****/
    /*お問い合わせ*/
    .contact-page_text {
        text-align: center;
        font-size: 1.1rem;
        padding: 3rem;
    }
    #contactform {
        width: 50%;
        display: block;
        margin: 100px auto;
    }
}