@charset "UTF-8";

/*
theme Name: FUJI TECHNOLOGY
Description:　
*/

/* 共通 */
html {
    font-size: 62.5%;
}
 @media (min-width: 835px) {
    html {
        font-size: calc(1vw * 100 / 1920);
    }
}    
@media (max-width: 834px) and (min-width: 441px) {
    html {
        font-size: calc(1vw * 100 / 834);
    }
} 
@media (max-width: 440px) {
    html {
        font-size: calc(1vw * 100 / 440);
    }
}   
body {
    font-family: 'Albert Sans', 'ヒラギノ角ゴシック', sans-serif;
    color: #2E4053;
}
.top_common_title {
    padding-bottom: 20rem;
    margin-bottom: 30rem;
    border-bottom: 1.5px solid #2E4053;
    width: 500rem;
}
@media (max-width: 834px) {
    .top_common_title {
        width: 100%;
        margin-bottom: 20rem;
    }
}
.top_common_title p {
    font-size: 23rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    margin-bottom: 10rem;
}
@media (max-width: 834px) {
    .top_common_title p {
        font-size: 16rem;
    }
}
@media (max-width: 440px) {
    .top_common_title p {
        font-size: 14rem;
    }
}
.top_common_title h2 {
    font-size: 38rem;
    font-weight: bold;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .top_common_title h2 {
        font-size: 26rem;
    } 
}
@media (max-width: 440px) {
    .top_common_title h2 {
        font-size: 24rem;
    } 
}
.common_archive {
    width: 450rem;
    border: 1px solid #707070;
    border-radius: 5rem;
    /* position: sticky;
    top: 150rem;
    align-self: flex-start; 
    z-index: 10;  */
}
@media (max-width: 834px) {
    .common_archive {
        display: none;
    }
}
.common_title {
    background-color: #E42121;
    color: #fff;
    font-size: 28rem;
    letter-spacing: 0.03em;
    font-weight: bold;
    text-align: center;
    padding: 25rem;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    border-bottom: 1px solid #707070;
}
.common_sub_content li {
    border-bottom: 1px solid #707070;
    font-size: 25rem;
    letter-spacing: 0.03em;
}
.common_sub_content li:last-child {
    border-bottom: none;
}
.common_sub_content li a {
    display: block;
    padding: 25rem;
    position: relative;
}
.common_sub_content li a::after {
    content: "";
    display: inline-block;
    top: 50%;
    right: 60rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6.5px solid transparent;
    border-bottom: 6.5px solid transparent;
    border-left: 12px solid #2E4053; 
    position: absolute;
  }
  .common_sub_content li a:hover {
    background-color: #F7F7F7;
  }
.page_fv_wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh; 
    min-height: calc(var(--vh, 1vh) * 60);
}
@media (max-width: 834px) {
    .page_fv_wrapper {
        min-height: calc(var(--vh, 1vh) * 40);
    }
}
.page_fv {
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh; 
    min-height: calc(var(--vh, 1vh) * 60);
    width: 100%;
    position: absolute;
    background-image: url(http://fujitech.co.jp/wp-content/uploads/2025/06/banner1.png);
}
@media (max-width: 834px) {
    .page_fv {
        min-height: calc(var(--vh, 1vh) * 40);
    }
}
.page_fv::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.15);
    top: 0;
    left: 0;
}
.page_fv_message {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.page_fv_message h1 {
    font-size: 60rem;
    font-weight: bold;
	margin-bottom:15rem;
	letter-spacing: 0.03em;
    color: #fff;
    text-shadow: 8px 8px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 834px) {
    .page_fv_message h1 {
        font-size: 44rem;
        margin-bottom: 0;
        margin-top: 30rem;
    }
}
@media (max-width: 440px) {
    .page_fv_message h1 {
        font-size: 32rem;
    }
}
/* 共通 */

/* ヘッダー */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 3rem solid #ebebeb;
}
/* .header.change-color {
    border-bottom: 3rem solid #ebebeb;
    transition: 0.2s ease;
} */
.header_content {
    display: flex;
    justify-content: space-between;
    align-items:center;    
    height: 110rem;
    background-color: #fff;
    padding: 0 8% 0 4%;
}
@media (max-width: 834px) {
    .header_content {  
        height: 85rem;
        padding: 0 14% 0 4%;
    }
}
@media (max-width: 440px) {
    .header_content {  
        height: 65rem;
        padding: 0 20% 0 4%;
    }
}
.header_logo {
    width: 450rem;
}
@media (max-width: 834px) {
    .header_logo {
        width: 280rem;
    } 
}
@media (max-width: 440px) {
    .header_logo {
        width: 200rem;
    } 
}
.header_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header_nav {
    display: flex;
    align-items: center;
    margin-left: 80rem;
}
@media (max-width: 834px) {
    .header_nav {
        display: none;
    }
}
.header_nav_item {
    font-size: 25rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    padding: 0 25rem;
}
.header_nav_item.current,
.header_nav_jp.current,
.header_nav_en.current {
    color: #E42121;
}
.header_pull {
    padding: 10rem 25rem;
}
.header_nav_item a {
    padding: 10rem 25rem;
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.header_nav_item a span {
    position: relative;
    display: inline-block;
  }
.header_nav_item a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13rem;
    width: 0;
    height: 2.5px;
    background: #E42121; 
    transition: width 0.3s ease;
}
.header_nav_item a:hover span::after {
    width: 100%;
}
.header_item_contact_link {
    padding: 10rem 25rem;
}
.header_item_contact_link a {
    background-color: #E42121;
    width: 220rem;
    border-radius: 50rem;
    color: #fff;
    padding: 20rem 0;
    display: inline-block;
    text-align: center;
    font-size: 23rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    border: 2px solid #E42121;
    transition: 0.5s ease;
}
.header_item_contact_link a:hover {
    background-color: #fff;
    color: #E42121;
}
.header_nav_jp_en {
    font-size: 30rem;
    font-weight: bold;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .header_nav_jp_en {
        font-size: 22rem;
    }
}
@media (max-width: 440px) {
    .header_nav_jp_en {
        font-size: 20rem;
    }
}
/* ハンバーガー */
.open {
    position: fixed;
    top: 20rem;
    right: 4%; 
    z-index: 1000;
    display: flex;
}
@media (max-width: 834px) {
    .open {
        top: 22rem;
    }
}
@media (max-width: 440px) {
    .open {
        top: 17rem;
    }
}
@media (min-width: 835px) {
.open {
    display: none;
}
}
.open_btn {
    position: relative;
    cursor: pointer;
    width: 50rem;
    height: 50rem;
    border-radius: 3rem;
}
.open_btn::before {
    content: "Menu";
    position: absolute;
    top: 25rem;
    right: 14rem;
    color: #2E4053;
    font-size: 10rem;
    font-weight: bold;
	transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
	}
    @media (max-width: 834px) {
        .open_btn::before {
            right: 14rem;
            }
		_::-webkit-full-page-media, _:future, :root .open_btn::before {
            right: 10rem;
            }
    }
 @media (max-width: 375px) {
_::-webkit-full-page-media, _:future, :root .open_btn::before {
        right: 9.5rem;
    }
} 
.open_btn.active::before {
    content: "Close";
    bottom: -7rem;
    right: 13rem;
}
@media (max-width: 834px) {
    .open_btn.active::before {
        right: 11.5rem;
    }
	_::-webkit-full-page-media, _:future, :root .open_btn.active::before {
        right: 10.5rem;
    }
}
@media (max-width: 440px) {
    .open_btn.active::before {
        right: 12.5rem;
    }
}
  .open_btn span {
    display: inline-block;
	  transition: 0.2s ease;
	  -webkit-transition: 0.3s ease;
    position: absolute;
    left: 10rem;
    height: 2.5rem;
    background: #2E4053;
  }
  .open_btn span.change-color_sp {
    background: #2E4053;
  }
  .open_btn span:nth-of-type(1) {
    top: 6rem;
    width: 35rem;
  }
  .open_btn span:nth-of-type(2) {
    top: 12rem;
    width: 30rem;
    display: none;
  }
  .open_btn span:nth-of-type(3) {
    top: 16rem;
    width: 25rem;
  }
  .open_btn.active span:nth-of-type(1) {
    top: 4rem;
    left: 9rem;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30rem;
  }
  @media (max-width: 390px) {
    .open_btn.active span:nth-of-type(1) {
        top: 3rem;
      }
  }
  @media (max-width: 375px) {
    .open_btn.active span:nth-of-type(1) {
        top: 2rem;
      }
  }
  .open_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .open_btn.active span:nth-of-type(3) {
    top: 16rem;
    left: 9rem;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30rem;
  }
.overlay {
    width: 100%;
    position: fixed;
    top: 0;
	 right: 0;
	background-color: #E42121;
    height: 100%;
    z-index: -1;
    padding-top: 10rem;
    display: block;
     transition: right 0.2s ease; 
    padding-top: 85rem;
	display: none;
}
@media (max-width: 440px) {
    .overlay {
        padding-top: 65rem;
    } 
}
.sp_header_list {
    width: 100%;
    margin: 20rem auto 0;
}
@media (max-width: 440px) {
    .sp_header_list {
		margin: 10rem auto 0;
    }
}
.sp_header_list li {
    border-bottom: 2rem solid #fff;
    padding: 30rem 80rem 30rem 40rem;
}
@media (max-width: 440px) {
    .sp_header_list li {
        border-bottom: 2rem solid #fff;
        padding: 25rem 40rem;
    }
}
.sp_header_item {
    color: #fff;
    font-size: 20rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 440px) {
    .sp_header_item {
        font-size: 18rem;
    }
}
.sp_header_item span {
    color: #fff;
    font-size: 20rem;
    font-weight: bold;
    letter-spacing: 0.03em;
}
@media (max-width: 440px) {
    .sp_header_item span {
        font-size: 18rem;
    }
}
.arrow-right {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    transform: rotate(135deg);
}
@media (max-width: 440px) {
    .arrow-right {
        border-top: 3px solid #fff;
        border-left: 3px solid #fff;
    }
}
/* ハンバーガー */
/* ヘッダー  */


/* ファーストビュー */
.top_fv_wrapper {
    position: relative;
    width: 100%;
    min-height: calc((var(--vh, 1vh) * 100) - 110rem);
    margin-top: 110rem;
}
@media (max-width: 834px) {
    .top_fv_wrapper {
        min-height: calc(var(--vh, 1vh) * 60 - 85rem);
        margin-top: 85rem;
}
}
@media (max-width: 440px) {
    .top_fv_wrapper {
        min-height: calc(var(--vh, 1vh) * 55 - 65rem);
        margin-top: 65rem;
}
}
.slider-img {
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: calc((var(--vh, 1vh) * 100) - 110rem);
    width: 100%;
}
@media (max-width: 834px) {
    .slider-img {
        min-height: calc(var(--vh, 1vh) * 60 - 85rem);
}
}
@media (max-width: 440px) {
    .slider-img {
        min-height: calc(var(--vh, 1vh) * 55 - 65rem);
}
}
 .main_image1 {
    background-image: url("http://fujitech.co.jp/wp-content/uploads/2025/06/banner1.png");
    position: relative;
}
.main_image1::before {
    content: '';
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh; 
    min-height: calc(var(--vh, 1vh) * 100);
    z-index: -1; 
 }
.main_image2 {
    background-image: url(http://fujitech.co.jp/wp-content/uploads/2025/06/名称未設定-45.png);
  	display:none; 
}
.main_image3 {
    background-image: url(http://fujitech.co.jp/wp-content/uploads/2025/06/名称未設定-47.png);
  	display:none; 
} 
/* ファーストビュー */

/* フッター */
footer {
    background-color: #F7F7F7;
}
.footer {
    padding-top: 60rem;
    width: 1400rem;
    margin: 0 auto;
}
@media (max-width: 834px) {
    .footer {
        width: 85%;
    }
}
@media (max-width: 440px) {
    .footer {
        width: 90%;
        padding-top: 40rem;
    }
}
.footer_content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120rem;
}
@media (max-width: 834px) {
    .footer_content {
        flex-direction: column;
        margin-bottom: 40rem;
    }
}
.footer_left {
    width: 500rem;
}
@media (max-width: 834px) {
    .footer_left {
        width: 100%;
    } 
}
.footer_logo {
    width: 400rem;
    margin-bottom: 50rem;
}
@media (max-width: 834px) {
    .footer_logo {
        width: 300rem;
        margin-bottom: 40rem;
    } 
}
@media (max-width: 440px) {
    .footer_logo {
        width: 220rem;
        margin-bottom: 30rem;
    } 
}
.footer_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.address_content, .tel_content {
    margin-bottom: 20rem;
}
@media (max-width: 440px) {
    .address_content, .tel_content {
        margin-bottom: 15rem;
    } 
}
.footer_title {
    display: flex;
    align-items: center;
    margin-bottom: 8rem;
}
.footer_title img {
    width: 28rem;
    height: 28rem;
}
@media (max-width: 834px) {
    .footer_title img {
        width: 20rem;
        height: 20rem;
    }
}
.footer_title p {
    font-size: 28rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    margin-left: 10rem;
}
@media (max-width: 834px) {
    .footer_title p {
        font-size: 20rem;
    }
}
@media (max-width: 834px) {
    .footer_title p {
        font-size: 18rem;
    }
}
address, .tel_content a, .mail_content p {
    font-size: 25rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
}
@media (max-width: 834px) {
    address, .tel_content a, .mail_content p {
        font-size: 18rem;
    } 
}
@media (max-width: 440px) {
    address, .tel_content a, .mail_content p {
        font-size: 16rem;
    } 
}
iframe {
    width: 750rem;
    height: 420rem;
    border-radius: 5rem;
}
@media (max-width: 834px) {
    iframe {
        width: 100%;
        height: 350rem;
        margin-top: 40rem;
    }
}
@media (max-width: 440px) {
    iframe {
        height: 250rem;
        margin-top: 30rem;
    }
}
.footer_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 80rem;
    margin-bottom: 30rem;
}
@media (max-width: 834px) {
    .footer_nav {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        margin-left: 0;
    }
}
@media (max-width: 440px) {
    .footer_nav {
        margin-bottom: 20rem;
    }
}
.footer_nav_item {
    font-size: 25rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    padding: 0 25rem;
    border-left: 1.5px solid #2E4053;
}
.footer_nav_item:last-child {
    border-right: 1.5px solid #2E4053;
}
@media (max-width: 834px) {
    .footer_nav_item {
        border-left: none;
        padding: 0;
        margin-bottom: 25rem;
        font-size: 18rem;
    }
    .footer_nav_item:last-child {
        border-right: none;
    }
}
@media (max-width: 440px) {
    .footer_nav_item {
        font-size: 16rem;
        margin-bottom: 20rem;
    }
}
.footer_nav_item a {
    padding: 10rem 25rem;
    position: relative;
    display: inline-block;
    text-decoration: none;
}
@media (max-width: 834px) {
    .footer_nav_item a {
        padding: 0;
    }
}
.footer_end {
    background-color: #2E4053;
    text-align: center;
    color: #fff;
    font-size: 20rem;
    letter-spacing: 0.03em;
    padding: 25rem;
}
@media (max-width: 834px) {
    .footer_end {
        font-size: 14rem;
        padding: 20rem;
    }
}
@media (max-width: 440px) {
    .footer_end {
        font-size: 14rem;
        padding: 15rem;
    }
}
/* フッター */

/* トップ */
.main_wrapper {
    margin: 120rem auto;
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media (max-width: 834px) {
    .main_wrapper {
        margin: 100rem auto;
        width: 85%;
    }
}
@media (max-width: 440px) {
    .main_wrapper {
        margin: 60rem auto;
        width: 90%;
    }
}
.top_contents {
    width: 900rem;
}
@media (max-width: 834px) {
    .top_contents {
        width: 100%;
    }
}
.top_content {
    display: block;
    overflow: hidden;
  }
.top_content:first-of-type {
    margin-bottom: 80rem;
}
@media (max-width: 834px) {
    .top_content:first-of-type {
        margin-bottom: 60rem;
    }
}
.top_content_title {
    background-color: #333333;
    color: #fff;
    padding: 20rem 80rem;
    border-top-left-radius: 5rem;
    border-top-right-radius: 5rem;
}
@media (max-width: 834px) {
    .top_content_title {
        padding: 15rem 60rem;
    }
}
.top_content_title_en {
    padding: 39rem 80rem;
}
@media (max-width: 834px) {
    .top_content_title_en {
        padding: 29rem 60rem;
    }
}
@media (max-width: 440px) {
    .top_content_title_en {
        padding: 22rem 40rem 22rem 60rem;
    }
}
.top_content_title p {
    font-size: 23rem;
    letter-spacing: 0.03em;
    margin-bottom: 10rem;
}
@media (max-width: 834px) {
    .top_content_title p {
        font-size: 16rem;
    }
}
@media (max-width: 440px) {
    .top_content_title p {
        font-size: 14rem;
    }
}
.top_content_title h2 {
    font-size: 38rem;
    letter-spacing: 0.03em;
    position: relative;
}
@media (max-width: 834px) {
    .top_content_title h2 {
        font-size: 26rem;
    }
}
@media (max-width: 440px) {
    .top_content_title h2 {
        font-size: 24rem;
    }
}
.top_content_title h2::before {
    content: "";
    position: absolute;
    transform: rotate(125deg);
    transition: 0.5s ease;
    width: 10rem;
    height: 25rem;
    border-left: 2px solid white;
    bottom: 32%;
    right: 313rem;
}
@media (max-width: 834px) {
    .top_content_title h2::before {
        bottom: 20%;
        right: 308rem;
    }
}
@media (max-width: 440px) {
    .top_content_title h2::before {
        bottom: 27%;
        right: 85rem;
        height: 16rem;
    }
}
.top_content_title h2::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    background: white;
    transition: 0.5s ease;
    width: 110rem;
    height: 3rem;
    right: 250rem;
}
@media (max-width: 834px) {
    .top_content_title h2::after {
        width: 80rem;
        right: 260rem;
    }
}
@media (max-width: 440px) {
    .top_content_title h2::after {
        width: 60rem;
        right: 52rem;
        height: 2rem;
    }
}
.top_content_image {
    width: 100%;
    height: 450rem;
    overflow: hidden;
}
@media (max-width: 834px) {
    .top_content_image {
        height: 400rem;
    } 
}
@media (max-width: 440px) {
    .top_content_image {
        height: 225rem;
    } 
}
.top_content_image  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
    display: block;
    transition: 0.4s ease;
}
@media (min-width: 835px) {
.top_content:hover .top_content_image img {
    transform: scale(1.05); 
    opacity: .8;
  }
}
/* トップ */

/* お問い合わせ */
.contact_wrapper {
    width: 65%;
    margin: 120rem auto;
}
@media (max-width: 834px) {
    .contact_wrapper {
        width: 85%;
        margin: 100rem auto;
    } 
}
@media (max-width: 440px) {
    .contact_wrapper {
        width: 90%;
        margin: 60rem auto;
    } 
}
.page_contact_bg {
    padding: 80rem 10%;
    background-color: #F7F7F7;
    border-radius: 5rem;
}
@media (max-width: 834px) {
    .page_contact_bg {
        padding: 60rem 4% 40rem 4%;
    }
}
@media (max-width: 440px) {
    .page_contact_bg {
        padding: 40rem 4% 20rem 4%;
    }
}
.page_contact_message p {
    font-size: 25rem;
    line-height: 1.8;
	letter-spacing: 0.03em;
    inline-size: fit-content;
    margin-inline: auto;
}
@media (max-width: 834px) {
    .page_contact_message p {
        font-size: 18rem;
    }
}
@media (max-width: 440px) {
    .page_contact_message p {
        font-size: 16rem;
        text-align: left;
    }
}
/* contact7 */
.contact_form {
    margin-top: 80rem;
}
@media (max-width: 834px) {
    .contact_form {
        margin-top: 50rem;
    } 
}
@media (max-width: 440px) {
    .contact_form {
        margin-top: 40rem;
    } 
}
.contact_item {
    display: flex;
    flex-direction: column;
    padding: 35rem 0 35rem 15rem;
    border-top: 1rem solid #707070;
}
@media (max-width: 834px) {
    .contact_item {
        flex-direction: column;
        align-items: start;
        padding: 35rem 0;
    }
}
@media (max-width: 440px) {
    .contact_item {
        padding: 20rem 0;
    }
}
.required {
    color: #dc3232;
    font-size: 25rem;
    margin-left: 5rem;
}
@media (max-width: 834px) {
    .required {
        font-size: 18rem;
    }
}
@media (max-width: 440px) {
    .required {
        font-size: 16rem;
    }
}
.form_section_title {
    font-size: 25rem;
    font-weight: 600;
    width: 350rem;
	letter-spacing: 0.03em;
    margin-bottom: 20rem;
}
@media (max-width: 834px) {
    .form_section_title {
        font-size: 18rem;
        width: 100%;
        margin-bottom: 20rem;
    }
}
@media (max-width: 440px) {
    .form_section_title {
        margin-bottom: 15rem;
    }
}
.contact_item_textarea {
    border-bottom: 2rem solid #C0C0C0;
}
.contact_item_textarea .form_section_title {
    margin-top: 10rem;
}
.wpcf7-form-control {
    background-color: #fff;
    width: 100%;
     height: 85rem; 
    font-size: 25rem;
    padding: 30rem;
    border-radius: 5rem;
	letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .wpcf7-form-control {
        width: 650rem;
        font-size: 18rem;
        height: 60rem;
    }
}
@media (max-width: 440px) {
    .wpcf7-form-control {
        width: 100%;
        height: 50rem; 
        padding: 20rem;
    }
}
.wpcf7-textarea {
    background-color: #fff;
    width: 100%;
    height: 400rem;
    padding: 30rem;
    border-radius: 5rem;
	line-height:1.6;
}
@media (max-width: 834px) {
    .wpcf7-textarea {
        width: 650rem;
        height: 250rem;
    }
}
@media (max-width: 440px) {
    .wpcf7-textarea {
        width: 100%;
        height: 180rem;
        padding: 20rem;
    }
}
.wpcf7-submit {
    font-size: 28rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: block;
    width: 400rem;
    background-color: #E42121;
    border-radius: 50rem;
    margin-top: 60rem;
    margin: 60rem auto 40rem;
    transition: all 0.4s;
    border: 4rem solid #E42121;
    padding-top: 24rem;
	letter-spacing: 0.03em;
 }
 @media (max-width: 834px) {
    .wpcf7-submit {
        font-size: 20rem;
        width: 400rem;
		padding-top: 15rem;
     }
 }
 @media (max-width: 440px) {
    .wpcf7-submit {
        font-size: 18rem;
        width: 260rem;
        margin-top: 60rem;
        margin: 40rem auto 0;
		height:50rem;
		padding-top: 12rem;
     }
 }
 @media (min-width: 835px) {
    .wpcf7-submit:hover {
        background-color: #ffffff;
        color: #E42121;
    }
}
.screen-reader-response {
    display: none;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { 
    color: #D3D3D3; 
}
.wpcf7-list-item:first-child {
    margin-left: 0;
} 
.wpcf7-not-valid-tip {
    margin-top: 12rem;
    font-size: 20rem!important;
    display: block;
    color: #E42121;
}
@media (max-width: 834px) {
    .wpcf7-not-valid-tip {
        font-size: 14rem!important;
    }
}
@media (max-width: 440px) {
    .wpcf7-not-valid-tip {
        font-size: 12rem!important;
    }
}
.wpcf7 form .wpcf7-response-output {
    padding: 20rem!important;
	border-color: #dc3232!important;
	font-size: 20rem!important;
    line-height: 1.8;
    border: none!important;
    color: #dc3232;
}
@media (max-width: 834px) {
    .wpcf7 form .wpcf7-response-output {
        font-size: 14rem!important;
    }
}
@media (max-width: 440px) {
    .wpcf7 form .wpcf7-response-output {
        padding: 0!important;
    }
}
.wpcf7 form.sent .wpcf7-response-output {
    font-size: 25rem;
    line-height: 1.5;
	text-align: justify;
    word-break: break-all;
    border: none;
	color: #2E4053!important;
} 
@media (max-width: 834px) {
    .wpcf7 form.sent .wpcf7-response-output {
        font-size: 18rem;
    } 
}
.recaptcha {
	inline-size: fit-content;
   margin-inline: auto;
}
.recaptcha p {
	font-size:22rem;
	line-height:1.8;
	margin-bottom:5rem;
}
@media (max-width: 834px) {
    .recaptcha p {
        font-size: 14rem;
    }
}
@media (max-width: 440px) {
    .recaptcha p {
        font-size: 12rem;
    }
}
.recaptcha a {
    text-decoration: underline;
    color: #34A853;
}
.grecaptcha-badge {
	visibility: hidden; 
}
/* contact7 */
/* お問い合わせ */

/* 会社概要 */
.page_company_wrapper {
    width: 900rem;
}
@media (max-width: 834px) {
    .page_company_wrapper {
        width: 100%;
    }
}
.company_section_title {
    padding-bottom: 20rem;
    border-bottom: 2px solid #2E4053;
    display: flex;
    align-items: center;
    gap: 10rem;
    margin-bottom: 40rem;
}
@media (max-width: 834px) {
    .company_section_title {
        margin-bottom: 30rem;
    }
}
@media (max-width: 440px) {
    .company_section_title {
        margin-bottom: 25rem;
    }
}
.company_section_title span {
    background-color: #E42121;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
}
@media (max-width: 834px) {
    .company_section_title span {
        width: 15rem;
        height: 15rem;
    }
}
.company_section_title h2 {
    font-size: 38rem;
    font-weight: bold;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .company_section_title h2 {
        font-size: 26rem;
    }
}
@media (max-width: 440px) {
    .company_section_title h2 {
        font-size: 24rem;
    }
}
.about_company_image {
    width: 100%;
}
.about_company_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5rem;
}
.about_company_ft {
    margin-top: 40rem;
}
@media (max-width: 440px) {
    .about_company_ft {
        margin-top: 25rem;
    }
}
.about_company_subtitle {
    font-size: 32rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    color: #E42121;
    margin-bottom: 20rem;
}
@media (max-width: 834px) {
    .about_company_subtitle {
        font-size: 24rem;
    }
}
@media (max-width: 440px) {
    .about_company_subtitle {
        font-size: 20rem;
        margin-bottom: 10rem;
    }
}
.about_company_text {
    font-size: 25rem;
    letter-spacing: 0.03em;
    line-height: 1.7;
}
@media (max-width: 834px) {
    .about_company_text {
        font-size: 18rem;
    }
}
@media (max-width: 440px) {
    .about_company_text {
        font-size: 16rem;
    }
}
.about_company_list {
    margin-top: 15rem;
    margin-left: 15rem;
    margin-bottom: 50rem;
}
@media (max-width: 834px) {
    .about_company_list {
        margin-top: 10rem;
    }
}
@media (max-width: 440px) {
    .about_company_list {
        margin-left: 5rem;
        margin-bottom: 25rem;
    }
}
.about_company_list li {
    margin-bottom: 10rem;
    display: flex;
    align-items: center;
    gap: 10rem;
}
@media (max-width: 440px) {
    .about_company_list li {
        gap: 5rem;
        margin-bottom: 5rem;
    }
}
.about_company_list img {
    width: 25rem;
    height: 25rem;
    object-fit: cover;
}
@media (max-width: 834px) {
    .about_company_list img {
        width: 16rem;
        height: 16rem;
    }
}
.about_company_list p {
    font-size: 23rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
}
@media (max-width: 834px) {
    .about_company_list p {
        font-size: 16rem;
    }
}
@media (max-width: 440px) {
    .about_company_list p {
        font-size: 14rem;
    }
}
.reason_company_list {
    display: flex;
    justify-content: space-between;
    padding: 0 20rem;
    margin-top: 30rem;
}
@media (max-width: 440px) {
    .reason_company_list {
        flex-direction: column;
        padding: 0 10rem;
        margin-top: 20rem;
        gap: 8rem;
    }
}
.reason_company_list li {
    display: flex;
    align-items: center;
}
.reason_company_list img {
    width: 40rem;
    height: 40rem;
    object-fit: cover;
    margin-right: 10rem;
}
@media (max-width: 834px) {
    .reason_company_list img {
        width: 30rem;
        height: 30rem;
    }
}
@media (max-width: 440px) {
    .reason_company_list img {
        width: 25rem;
        height: 25rem;
    }
}
.reason_company_list p {
    font-size: 25rem;
    font-weight: bold;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .reason_company_list p {
        font-size: 18rem;
    } 
}
@media (max-width: 440px) {
    .reason_company_list p {
        font-size: 16rem;
    } 
}
.company_info_title {
    padding: 0 0 25rem 0;
    border-bottom: 2px solid #2E4053;
}
@media (max-width: 834px) {
    .company_info_title {
        padding: 0 0 15rem 0;
        border-bottom: 2px solid #2E4053;
    }
}
.company_profile {
    background-color: #FAFAFA;
    border: 1.5px solid #C0C0C0;
    padding: 60rem 40rem;
    border-radius: 5rem;
}
@media (max-width: 834px) {
    .company_profile {
        padding: 40rem 30rem;
    }
}
@media (max-width: 440px) {
    .company_profile {
        padding: 30rem 15rem;
    }
}
.company_profile_content {
    display: flex;
    align-items: center;
    padding: 35rem 0;
    border-bottom: 1.5px solid #C0C0C0;
}
@media (max-width: 834px) {
    .company_profile_content {
       flex-direction: column;
       gap: 10rem;
       padding: 20rem 0;
    }
}
@media (max-width: 440px) {
    .company_profile_content {
       gap: 5rem;
    }
}
.company_profile_content:first-of-type {
    padding-top: 0;
}
.company_profile_content:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.company_profile_content dt {
    font-size: 25rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #E42121;
    width: 25%;
}
@media (max-width: 834px) {
    .company_profile_content dt {
        font-size: 18rem;
        width: 100%;
    }
}
@media (max-width: 440px) {
    .company_profile_content dt {
        font-size: 16rem;
    }
}
.company_profile_content dd {
    font-size: 25rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
    width: 60%;
}
@media (max-width: 834px) {
    .company_profile_content dd {
        font-size: 18rem;
        width: 100%;
    }
}
@media (max-width: 440px) {
    .company_profile_content dd {
        font-size: 16rem;
    }
}
/* 会社概要 */

/* 製品一覧 */
.product_wrapper {
    margin: 120rem auto;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media (max-width: 834px) {
    .product_wrapper {
        margin: 100rem auto;
        width: 85%;
    }
}
@media (max-width: 440px) {
    .product_wrapper {
        margin: 60rem auto;
        width: 90%;
    }
}
.page_product_wrapper {
    width: 1000rem;
}
@media (max-width: 834px) {
    .page_product_wrapper {
        width: 100%;
    }
}
.product_content {
    display: block;
    overflow: hidden;
  }
.product_list {
    display: flex;
    width: calc(100%);
}
@media (max-width: 834px) {
    .product_list {
       flex-direction: column;
    }
}
.product_list li {
    width: calc(33.3333%);
    margin-right: 30rem;
    border: 1px solid #333333;
    border-radius: 5rem;
}
@media (max-width: 834px) {
    .product_list li {
        width: calc(100%);
        margin-right: 0;
        margin-bottom: 40rem;
    }
}
@media (max-width: 440px) {
    .product_list li {
        margin-bottom: 30rem;
    }
}
.product_list li:last-child {
    margin-right: 0;
}
@media (max-width: 834px) {
    .product_list li:last-child {
        margin-bottom: 0;
    }
}
.product_content_title {
    background-color: #333333;
    color: #fff;
    padding: 20rem 10rem;
}
@media (max-width: 834px) {
    .product_content_title {
        padding: 25rem 60rem;
    }
}
@media (max-width: 440px) {
    .product_content_title {
        padding: 20rem 60rem;
    }
}
.product_content_title h2 {
    font-size: 23rem;
    letter-spacing: 0.03em;
    position: relative;
    text-align: center;
}
@media (max-width: 834px) {
    .product_content_title h2 {
        font-size: 26rem;
    }
}
@media (max-width: 834px) {
    .product_content_title h2 {
        font-size: 20rem;
    }
}
.product_content_title_en h2 {
    font-size: 20rem;
}
.product_content_title h2::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2.5px solid #fff;
    border-right: 2.5px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media (max-width: 440px) {
    .product_content_title h2::before {
        right: 0;
    }
}
.product_content_image {
    width: 100%;
    /* height: 180rem; */
    overflow: hidden;
	padding: 5%;
}
@media (max-width: 834px) {
    .product_content_image {
        /* height: 400rem; */
    }
}
@media (max-width: 440px) {
    .product_content_image {
        /* height: 225rem; */
    }
}
.product_content_image  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
}
@media (min-width: 835px) {
.product_content:hover .product_content_image img {
    transform: scale(1.05); 
    opacity: .8;
  }
}
/* 製品一覧 */

/* 製品詳細 */
.single_product_wrapper {
    width: 900rem;
}
@media (max-width: 834px) {
    .single_product_wrapper {
        width: 100%;
    }
}
.single_content_image {
    width: 100%;
    overflow: hidden;
    border: 1.5px solid #c0c0c0;
    border-radius: 5rem;
	padding: 5%;
}
.single_content_image  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5rem;
}
.sp_swipe {
    display: none;
}
@media (max-width: 440px) {
    .sp_swipe {
        font-size: 14rem;
        margin-top: 40rem;
        margin-bottom: 10rem;
        display: inline-block;
        position: relative;
    }
}
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 70rem;
  }
  @media (max-width: 834px) {
    .table-scroll {
        margin-top: 50rem;
      }
  }
  @media (max-width: 440px) {
    .table-scroll {
        margin-top: 0;
		margin-bottom: 15rem;
        padding-bottom: 15rem;
      }
  }
table {
    border-collapse: collapse;
    table-layout: fixed;
    border: 2px solid #2E4053;
	width: 100%;
  }
  @media (max-width: 440px) {
    table {
        min-width: 680rem; 
      }
    }
    .control_table {
        margin: 0 auto;
      }
      @media (max-width: 440px) {
        .control_table {
             min-width: 544rem; 
            width: 100%;
          }
        }
  th {
    padding: 15rem 5rem;
    text-align: center;
    border-right: 1px solid #2E4053;
  }
  @media (max-width: 834px) {
    th {
        padding: 12rem 5rem;
      }
  }
  th {
    background-color: #f2f2f2;
    font-size: 21rem; 
    font-weight: bold;
    letter-spacing: 0.03em;
  }
  @media (max-width: 834px) {
    th {
        font-size: 18rem; 
      }
  }
  @media (max-width: 440px) {
    th {
        font-size: 15rem; 
      }
  }
  th span,td {
    font-size: 18rem; 
    font-weight: normal;
  }
  @media (max-width: 834px) {
    th span,td {
        font-size: 16rem; 
      }
  }
  @media (max-width: 440px) {
    th span,td {
        font-size: 14rem; 
      }
  }
th span {
	margin-top:5rem;
	display:block;
}
  td {
    font-size: 19rem; 
    letter-spacing: 0.03em;
    padding: 15rem 5rem;
    border: 1px solid #2E4053;
    text-align: center;
    width: 180rem;
  }
  @media (max-width: 834px) {
    td {
        font-size: 16rem; 
        width: 142rem;

      }
  }
  @media (max-width: 440px) {
    td {
        font-size: 14rem; 
        padding: 12rem 5rem;
      }
  }
  .table_top {
    padding-top: 27rem;
  }
  @media (max-width: 834px) {
    .table_top {
        padding-top: 23rem;
      }
  }
/* 製品詳細 */

/* その他エディター設定 */
.other_product_content {
    font-size: 18px;
    letter-spacing: 0.03em;
}
@media (max-width: 440px) {
    .other_product_content {
        font-size: 16px;
    } 
}
.other_product_content p {
    line-height: 1.4;
}
.wp-block-image img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  /* その他エディター設定 */
  