@charset "UTF-8";

/*
theme Name: 
Description:　
*/f

/* 共通 */
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', 'Noto SansJP',sans-serif; */
    /* font-family: 'Albert Sans', 'ヒラギノ角ゴシック', sans-serif; */
    font-family: 'ヒラギノ角ゴシック', sans-serif;
    color: #2E4053;
}
/* 共通 */

/* ヘッダー */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110rem;
    padding: 15rem 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
}
@media (max-width: 834px) {
    .header {
        height: 80rem;
        padding: 15rem 17% 15rem 4%;
        justify-content: space-between;
    }
}
@media (max-width: 440px) {
    .header {
        height: 55rem;
        padding: 10rem 20% 10rem 4%;
    }
}
.header.change-color {
    border-bottom: 3rem solid #dcdcdc;
    transition: 0.2s ease;
}
.header_item a span {
    position: relative;
    display: inline-block;
  }
.header_item a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13rem;
    width: 0;
    height: 2.5px;
    background: #2799CA; 
    transition: width 0.3s ease;
}
.header_item a:hover span::after {
    width: 100%;
}
.header_logo {
    width: 250rem;
}
@media (max-width: 834px) {
    .header_logo {
        width: 190rem;
    }
}
@media (max-width: 440px) {
    .header_logo {
        width: 135rem;
    }
}
.header_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header_list {
    display: flex;
    align-items: center;
}
@media (max-width: 834px) {
    .header_list {
        display: none;
    }
}
.header_list_en {
    margin-left: 10rem;
}
.header_item {
    padding: 0 20rem;
    font-size: 25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.header_item_en {
    padding: 0 10rem;
}
.header_item a {
    padding: 5rem 15rem;
}
.header_search_en {
  margin-left: 20rem;
}
.header_search span {
    font-size: 25rem;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .header_search span {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .header_search span {
        font-size: 16rem;
    }
}
.header_search img {
    width: 30rem;
    object-fit: cover;
}
@media (max-width: 834px) {
    .header_search img {
        width: 20rem;
    }
}
@media (max-width: 440px) {
    .header_search img {
        width: 15rem;
    }
}
.header_jp_en {
    display: flex;
    font-size: 25rem;
    font-weight: 600;
    letter-spacing: 0.03em;    
    border: 1rem solid #2E4053;
    border-radius: 3rem;
    margin-left: 70rem;
}
@media (max-width: 834px) {
    .header_jp_en {
        font-size: 20rem;
        margin-left: 60rem;
    }
}
@media (max-width: 440px) {
    .header_jp_en {
        font-size: 18rem;
    }
}
.header_nav_jp {
    padding: 15rem 20rem;
}
.header_nav_en {
    padding: 15rem 20rem;
}
@media (max-width: 440px) {
    .header_nav_jp {
        padding: 8rem 12rem;
    }
    .header_nav_en {
        padding: 8rem 12rem;
    }
}
/* ハンバーガー */

.open {
    position: fixed;
    top: 0;
    right: 0; 
    z-index: 1000;
    display: flex;
}
@media (min-width: 835px) {
.open {
    display: none;
}
}
.open_btn {
    width: 90rem;
    height: 80rem;
}
@media (max-width: 440px) {
    .open_btn {
        width: 65rem;
        height: 55rem;
    } 
}
.open_btn {
    position: relative;
    background-color: #2E4053;
}
.open_btn::before {
    content: "Menu";
    position: absolute;
    bottom: 10rem;
    right: 22rem;
    color: #fff;
    font-size: 14rem;
    font-weight: bold;
	transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
	}
    @media (max-width: 440px) {
        .open_btn::before {
            font-size: 12rem;
            bottom: 6rem;
            right: 13rem;
            } 
    }
  .open_btn span {
    display: inline-block;
	  transition: 0.2s ease;
	  -webkit-transition: 0.3s ease;
    position: absolute;
    right: 19rem;
    height: 2rem;
    background: #fff;
  }
  @media (max-width: 440px) {
    .open_btn span {
        right: 15rem;
        height: 1.5rem;
      }
  }
  .open_btn span.change-color_sp {
    background: #2E4053;
  }
  .open_btn span:nth-of-type(1) {
    top: 16rem;
    width: 48rem;
  }
  @media (max-width: 440px) {
    .open_btn span:nth-of-type(1) {
        width: 34rem;
        top: 11rem;
      }
  }
  .open_btn span:nth-of-type(2) {
    top: 30rem;
    width: 48rem;
  }
  @media (max-width: 440px) {
    .open_btn span:nth-of-type(2) {
        width: 34rem;
        top: 20rem;
      }
  }
  .open_btn span:nth-of-type(3) {
    top: 44rem;
    width: 48rem;
  }
  @media (max-width: 440px) {
    .open_btn span:nth-of-type(3) {
        width: 34rem;
        top: 29rem;
      }
  }
  .open_btn.active span:nth-of-type(1) {
    top: 25rem;
    right: 22rem;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 46rem;
  }
  @media (max-width: 440px) {
    .open_btn.active span:nth-of-type(1) {
        width: 32rem;
        top: 14rem;
        right: 16rem;
      }
  }
@media (max-width: 402px) {
    .open_btn.active span:nth-of-type(1) {
        top: 13rem;
      }
  }
@media (max-width: 320px) {
    .open_btn.active span:nth-of-type(1) {
        top: 12rem;
      }
  }
  .open_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .open_btn.active span:nth-of-type(3) {
    top: 37rem;
    right: 22rem;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 46rem;
  }
  @media (max-width: 440px) {
    .open_btn.active span:nth-of-type(3) {
        width: 32rem;
        top: 26rem;
        right: 16rem;
      }
  }
@media (max-width: 390px) {
    .open_btn.active span:nth-of-type(3) {
        top: 27rem;
      }
  }
@media (max-width: 320px) {
    .open_btn.active span:nth-of-type(3) {
        top: 29rem;
      }
  }
.overlay {
    width: 100%;
    position: fixed;
    top: 0;
	 right: 0;
     background: linear-gradient(to bottom, #2799CA 85%, #5DB3D7 100%);
    height: 100%;
    z-index: -1;
    display: block;
     transition: right 0.2s ease; 
    padding-top: 30rem;
    margin-top: 80rem;
	display: none;
}
@media (max-width: 440px) {
    .overlay {
        margin-top: 55rem;
        padding-top: 10rem;
    } 
}
.sp_header_list {
    width: 70%;
    margin: 10rem auto 0;
}
@media (max-width: 440px) {
    .sp_header_list {
        width: 90%;
    }
}
.sp_header_item {
   color: #fff;
   font-size: 20rem;
   letter-spacing: 0.08em;
   font-weight: 600;
   padding: 25rem 0 25rem 10rem;
   border-bottom: 2px solid #fff;
}
@media (max-width: 440px) {
    .sp_header_item {
		border-bottom: 1.5px solid #fff;
        font-size: 18rem;
     }
}
.sp_header_item a {
    display: block;
}
.sp_header_item_list li {
    font-size: 20rem;
    margin-top: 20rem;
    margin-left: 30rem;
    position: relative;
}
.sp_header_item_list li::before {
    content: "";
    position: absolute;
    height: 2rem;
    width: 15rem;
    background-color: #fff;
    top: 10rem;
    left: -22rem;
}
/* ハンバーガー */
/* 検索窓 */
.header_search {
    position: relative;
  }
  .header_search .search_toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    cursor: pointer;
    width: 210rem;
    height: 63rem;
    border: 1.5rem solid #2E4053;
    border-radius: 35rem;
    margin-left: 35rem;
  }
  @media (max-width: 834px) {
    .header_search .search_toggle {
        width: 160rem;
        height: 50rem;
        margin-left: 120rem;
        display: none;
      }
  }
  .header_search .search_form {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fafafa;
    border: 1px solid #808080;
    border-radius: 3rem;
    display: none;
    align-items: center;
    z-index: 100;
    font-size: 28rem;
    width: 800rem;
    padding: 10rem;
  }
  .header_search .search_form_tb {
    background: #fafafa;
    border: 1px solid #808080;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    z-index: 100;
    font-size: 22rem;
    width: 70%;
    margin: 30rem auto 0;
    padding: 10rem;
  }
  @media (max-width: 440px) {
    .header_search .search_form_tb {
        font-size: 19rem;
        width: 90%;
        margin: 20rem auto 0;
        padding: 10rem;
      }
  }
  .header_search .search_form input[type="search"] {
    width: 580rem;
    height: 70rem;
    border: 0.5px solid #696969;
    padding: 0 20rem;
    background-color: #fff;
  }
  .header_search .search_form_tb input[type="search"] {
    width: 400rem;
    height: 50rem;
    border: 0.5px solid #696969;
    padding: 0 20rem;
    background-color: #fff;
  }
  @media (max-width: 440px) {
    .header_search .search_form_tb input[type="search"] {
        width: 280rem;
        padding: 0 10rem;
      }
  }
  .header_search .search_form.active {
    display: flex;
  }
  .header_search .search_form_tb.active {
    display: flex;
  }
.search_form input::placeholder { 
    color: #D3D3D3; 
}
.search_form_tb input::placeholder { 
    color: #D3D3D3; 
}
.search_submit_image img {
    width: 30rem;
    object-fit: cover;
}
.search_submit_button {
    flex: 1;
    height: 70rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
}
@media (max-width: 834px) {
    .search_submit_button {
        height: 50rem;
    }
}
@media (max-width: 440px) {
    .search_submit_button {
        gap: 8rem;
    }
}
.search_submit_content {
    color: #fff;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 70rem;
    background-color: #2799CA;
    margin: 10rem;
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
}
@media (max-width: 834px) {
    .search_submit_content {
        height: 50rem;
        margin: 0;
    }
}
@media (max-width: 440px) {
    .search_submit_content {
        margin: 0;
    }
}
/* ▼ iOSズーム＆高さずれ防止 */
.header_search .search_form input[type="search"],
.header_search .search_form_tb input[type="search"] {
  font-size: 16px; /* ← iPhoneで拡大防止 */
  box-sizing: border-box; /* ← 枠線変化で高さがズレない */
  transition: border-color 0.2s ease;
}

/* ▼ フォーカス時の見た目調整（高さを変えず枠色だけ変える） */
.header_search input[type="search"]:focus {
  outline: none;
  border: 0.5px solid #2799CA;
  box-shadow: none;
}
/* 検索窓 */
/* 言語切り替えカレント */
.jp_lang .header_nav_jp,
.en_lang .header_nav_en {
    background-color: #2799CA;
    color: #fff; 
}
/* 言語切り替えカレント */
/* ヘッダー */

/* フッター */
.footer {
    background-color: #F5F5F5;
    padding: 60rem 0 20rem 0;
}
@media (max-width: 834px) {
    .footer {
        padding: 40rem 0 20rem 0;
    }
}
@media (max-width: 440px) {
    .footer {
        padding: 25rem 0 20rem 0;
    }
}
@media (max-width: 834px) {
.footer_content {
    display: flex;
    flex-direction: column-reverse;
    width: 85%;
    margin: 0 auto;
}
}
.footer_list {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 834px) {
    .footer_list {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 25rem;
        margin-bottom: 60rem;
    }
}
.footer_item {
    padding: 0 20rem;
    font-size: 25rem;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .footer_item {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .footer_item {
        font-size: 16rem;
        padding: 0;
    }
}
.footer_item a {
    padding: 5rem 15rem;
} 
.footer_logo {
    width: 250rem;
    margin: 70rem auto;
}
@media (max-width: 834px) {
    .footer_logo {
        margin: 0 auto 50rem;
        margin-left: 0;
    } 
}
@media (max-width: 834px) {
    .footer_logo {
        width: 150rem;
        margin: 0 auto 30rem;
        margin-left: 0;
    } 
}
.footer_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer_end {
    font-size: 20rem;
    letter-spacing: 0.03em;
    text-align: center;
}
@media (max-width: 834px) {
    .footer_end {
        font-size: 16rem;
    }
}
@media (max-width: 440px) {
    .footer_end {
        font-size: 14rem;
    }
}
/* フッター */

/* ファーストビュー */
@media (min-width: 835px) {
.fv-wrapper {
    margin-top: 110rem;
  }
}
@media (max-width: 834px) {
    .fv-wrapper {
        margin-top: 80rem;
      }
    }
    @media (max-width: 440px) {
        .fv-wrapper {
            margin-top: 55rem;
          }
        }
  .top_fv {
    width: 92%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0 auto;
    border-radius: 3rem;
    box-sizing: border-box; 
  }
  @media (min-width: 835px) {
    .top_fv {
      min-height: calc(var(--vh, 1vh) * 85); 
    }
  }
  @media (max-width: 834px) {
    .top_fv {
      min-height: calc(var(--vh, 1vh) * 38); 
      width: 100%;
      border-radius: 0;
    }
  }
@media (max-width: 440px) {
    .top_fv {
       min-height: 230rem;
    } 
}
.slider-img {
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 92%;
    margin: 0 auto;
    border-radius: 3rem;
    box-sizing: border-box; 
}
@media (min-width: 835px) {
    .slider-img {
      min-height: calc(var(--vh, 1vh) * 85); 
    }
  }
  @media (max-width: 834px) {
    .slider-img {
      min-height: calc(var(--vh, 1vh) * 38); 
      width: 100%;
      border-radius: 0;
    }
  }
@media (max-width: 440px) {
    .slider-img {
       min-height: 230rem;
    } 
}
 .main_image1 {
    background-image: url("http://shizumaglobal.com/wp-content/uploads/2025/10/1.png");
    position: relative;
}
.main_image2 {
    background-image: url("http://shizumaglobal.com/wp-content/uploads/2025/10/2-scaled.png");
  	display:none; 
}
.main_image3 {
    background-image: url("http://shizumaglobal.com/wp-content/uploads/2025/10/3-scaled.png");
  	display:none; 
} 
/* ファーストビュー */

/* ホーム */
.product_bg {
    background-color: #F5F5F5;
    padding: 120rem 0;
    margin-top: 60rem;
}
@media (max-width: 834px) {
    .product_bg {
        padding: 80rem 0;
        margin-top: 0;
    }
}
@media (max-width: 440px) {
    .product_bg {
        padding: 50rem 0;
    }
}
.product_wrapper {
    width: 1700rem;
    margin: 0 auto;
}
@media (max-width: 834px) {
    .product_wrapper {
        width: 80%;
    }
}
.section_title {
    text-align: center;
    margin-bottom: 80rem;
}
@media (max-width: 834px) {
    .section_title {
        margin-bottom: 50rem;
    }
}
@media (max-width: 440px) {
    .section_title {
        margin-bottom: 40rem;
    }
}
.section_title h2 {
    font-size: 50rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
}
@media (max-width: 834px) {
    .section_title h2 {
        font-size: 36rem;
    }
}
@media (max-width: 440px) {
    .section_title h2 {
        font-size: 28rem;
    }
}
.section_title h2::before {
    content: "";
    position: absolute;
    background-color: #2799CA;
    height: 3rem;
    width: 30rem;
    top: 50%;
    left: -60rem;
}
@media (max-width: 440px) {
    .section_title h2::before {
        height: 2rem;
        width: 20rem;
        top: 50%;
        left: -35rem;
        display: none;
    }
}
.section_title h2::after {
    content: "";
    position: absolute;
    background-color: #2799CA;
    height: 3rem;
    width: 30rem;
    top: 50%;
    right: -60rem;
}
@media (max-width: 440px) {
    .section_title h2::after {
        height: 2rem;
        width: 20rem;
        top: 50%;
        right: -35rem;
        display: none;
    }
}
.common_section_text {
    font-size: 25rem;
    line-height: 1.7;
    letter-spacing: 0.03em;
    width: 980rem;
    margin: 40rem auto 0;
    text-align: left;
}
.support_wrapper .common_section_text {
    margin-left: 0;
}
@media (max-width: 834px) {
    .common_section_text {
        font-size: 20rem;
        width: 100%;
        margin: 40rem auto 0;
    }
}
@media (max-width: 440px) {
    .common_section_text {
        font-size: 18rem;
    }
}
.product_item_title {
    text-align: center;
    margin-bottom: 40rem;
}
@media (max-width: 834px) {
    .product_item_title {
        margin-bottom: 25rem;
    }
}
.product_item_title p {
    font-size: 34rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
}
@media (max-width: 834px) {
    .product_item_title p {
        font-size: 30rem;
    }
}
@media (max-width: 440px) {
    .product_item_title p {
        font-size: 22rem;
    }
}
.product_item_title p::before {
    content: "";
    position: absolute;
    background-color: #2799CA;
    border-radius: 50%;
    width: 20rem;
    height: 20rem;
    top: 25%;
    left: -35rem;
}
@media (max-width: 440px) {
    .product_item_title p::before {
        width: 10rem;
        height: 10rem;
        top: 31%;
        left: -18rem;
    }
}
.product_list {
    display: flex;
    width: calc(100% + 60rem);
}
@media (max-width: 834px) {
    .product_list {
        flex-direction: column;
        width: calc(100%);
        margin: 0 auto;
    }
}
.product_item {
    width: calc(33.3333% - 60rem);
    margin: 0 60rem 0 0;
}
@media (max-width: 834px) {
    .product_item {
        width: calc(100%);
        margin: 0 0 60rem 0;
    }
}
@media (max-width: 440px) {
    .product_item {
        margin: 0 0 50rem 0;
    }
}
@media (min-width: 835px) {
.product_item:last-child {
    margin-right: 0;
}
}
@media (max-width: 834px) {
    .product_item:last-child {
        margin-bottom: 0;
    }
    }
.product_image {
    width: 530rem;
    height: 530rem;
    border: 1rem solid #707070;
}
@media (max-width: 834px) {
    .product_image {
        width: 100%;
        height: 667rem;
    }
}
@media (max-width: 440px) {
    .product_image {
        height: 350rem;
    }
}
.product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_btn {
    text-align: center;
}
.product_btn a {
    display: inline-block;
    background-color: #2799CA;
    font-size: 25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    color: #fff;
    padding: 20rem 80rem;
    border-radius: 3rem;
    margin-top: 40rem;
}
@media (max-width: 834px) {
    .product_btn a {
        font-size: 20rem;
        padding: 20rem 100rem;
    }
}
@media (max-width: 440px) {
    .product_btn a {
        font-size: 18rem;
        padding: 15rem 100rem;
        margin-top: 30rem;
    }
}
.product_btn a::before {
    content: ">";
    font-size: 35rem;
    font-weight: normal;
    position: absolute;
    color: #fff;
    top: 17%;
    right: 20rem;
}
@media (max-width: 834px) {
    .product_btn a::before {
        font-size: 30rem;
        top: 18%;
    }
}
@media (max-width: 440px) {
    .product_btn a::before {
        font-size: 26rem;
        right: 30rem;
        top: 16%;
    }
}
.page_info {
    margin: 120rem auto;
    width: 1740rem;
}
@media (max-width: 834px) {
    .page_info {
        margin: 80rem auto;
        width: 100%;
    }
}
@media (max-width: 440px) {
    .page_info {
        margin: 50rem auto;
    }
}
.page_info_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40rem;
}
@media (max-width: 834px) {
    .page_info_list {
        flex-direction: column;
        gap: 20rem;
    }
}
@media (max-width: 440px) {
    .page_info_list {
        gap: 10rem;
    }
}
.page_info_item {
  width: 850rem;
  height: 425rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 3rem;
}
.page_info_item_ft {
    background-image: url("http://shizumaglobal.com/wp-content/uploads/2025/10/4-1.png");
}
.page_info_item_sec {
    background-image: url("http://shizumaglobal.com/wp-content/uploads/2025/10/5-1.png");
}
.page_info_item_th {
    background-image: url("http://shizumaglobal.com/wp-content/uploads/2025/10/6-1.png");
}
.page_info_item_fo {
    background-image: url("http://shizumaglobal.com/wp-content/uploads/2025/10/7-1.png");
}
@media (max-width: 834px) {
    .page_info_item {
        width: 100%;
        height: 300rem;
      }
}
@media (max-width: 440px) {
    .page_info_item {
        height: 220rem;
      }
}
/* .page_info_item::before {
    background-color: rgba(51, 51, 51, 0.5);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
} */
.page_info_content {
    z-index: 1;
    position: absolute;
    top: 35%;
    left: 10%;
}
@media (max-width: 440px) {
    .page_info_content {
        left: 5%;
    }
}
.page_info_content h2 {
    font-size: 44rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 40rem;
    color: #fff;
}
@media (max-width: 834px) {
    .page_info_content h2 {
        font-size: 34rem;
        margin-bottom: 40rem;
    }
}
@media (max-width: 440px) {
    .page_info_content h2 {
        font-size: 24rem;
        margin-bottom: 20rem;
    }
}
.page_info_content p {
    font-size: 25rem;
    letter-spacing: 0.03em;
    color: #fff;
    padding-right: 20rem;
    line-height: 1.5;
}
@media (max-width: 834px) {
    .page_info_content p {
        font-size: 20rem;
        }
}
@media (max-width: 440px) {
    .page_info_content p {
        font-size: 16rem;
        }
}
.page_info_circle {
    border-radius: 50%;
    background-color: #fff;
    width: 60rem;
    height: 60rem;
    z-index: 1;
    position: absolute;
    top: 34%;
    right: 7%;
}
@media (max-width: 834px) {
    .page_info_circle {
        right: 10%;
    }
}
@media (max-width: 440px) {
    .page_info_circle {
        width: 30rem;
        height: 30rem;
        top: 33%;
        right: 25%;
    }
    .page_info_circle_en {
        right: 10%;
    }
}
.page_info_circle p {
    color: #2799CA;
    font-size: 40rem;
    text-align: center;
    margin-top: 4rem;
    margin-left: 4rem;
}
@media (max-width: 440px) {
    .page_info_circle p {
        font-size: 21rem;
        margin-top: 1.5rem;
        margin-left: 1.5rem;
    }
}
/* ホーム */

/* 会社概要 */
.page_fv {
    background-color: #2799CA;
    height: 310rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110rem;
}
@media (max-width: 834px) {
    .page_fv {
        height: 250rem;
        margin-top: 80rem;
    }
}
@media (max-width: 440px) {
    .page_fv {
        height: 150rem;
        margin-top: 55rem;
    }
}
.page_fv h1 {
    font-size: 50rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .page_fv h1 {
        font-size: 40rem;
    }
}
@media (max-width: 440px) {
    .page_fv h1 {
        font-size: 32rem;
    }
}
.vision_wrapper {
    width: 1600rem;
    margin: 120rem auto;
}
@media (max-width: 834px) {
    .vision_wrapper {
        width: 90%;
        margin: 80rem auto;
    } 
}
@media (max-width: 440px) {
    .vision_wrapper {
        margin: 50rem auto;
    } 
}
.vision_content {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 834px) {
    .vision_content {
       flex-direction: column-reverse;
    }
}
.vision_left {
    width: 640rem;
    margin-top: 100rem;
}
@media (max-width: 834px) {
    .vision_left {
        width: 100%;
        margin-top: 0;
    }
}
.vision_left h3 {
    font-size: 40rem;
    font-weight: 600;
    color: #2799CA;
    letter-spacing: 0.03em;
    margin-bottom: 40rem;
    line-height: 1.5;
}
@media (max-width: 834px) {
    .vision_left h3 {
        font-size: 30rem;
        margin-bottom: 30rem;
    }
}
@media (max-width: 440px) {
    .vision_left h3 {
        font-size: 24rem;
        margin-bottom: 20rem;
    }
}
.vision_left p {
    font-size: 25rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .vision_left p {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .vision_left p {
        font-size: 18rem;
    }
}
.vision_image_box {
    width: 620rem;
}
@media (max-width: 834px) {
    .vision_image_box {
        width: 450rem;
        margin-right: 7%;
        margin-left: auto;
        margin-bottom: 60rem;
    }
}
@media (max-width: 440px) {
    .vision_image_box {
        width: 250rem;
        margin-right: 6%;
        margin-bottom: 40rem;
    }
}
.vision_image_ft {
    width: 620rem;
    height: 620rem;
}
@media (max-width: 834px) {
    .vision_image_ft {
        width: 450rem;
        height: 450rem;
    }
}
@media (max-width: 440px) {
    .vision_image_ft {
        width: 250rem;
        height: 250rem;
    }
}
.vision_image_ft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vision_image_sec {
    width: 400rem;
    height: 400rem;
    margin-left: -200rem;
    margin-top: -250rem;
}
@media (max-width: 834px) {
    .vision_image_sec {
        width: 300rem;
        height: 300rem;
    }
}
@media (max-width: 440px) {
    .vision_image_sec {
        width: 170rem;
        height: 170rem;
        margin-left: -100rem;
        margin-top: -140rem;
    }
}
.vision_image_sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.businesses_bg {
    background-color: #F5F5F5;
    padding: 120rem 0;
}
@media (max-width: 834px) {
    .businesses_bg {
        padding: 80rem 0;
    }
}
@media (max-width: 440px) {
    .businesses_bg {
        padding: 50rem 0;
    }
}
.businesses_wrapper {
    margin: 0 auto;
    width: 1580rem;
}
@media (max-width: 834px) {
    .businesses_wrapper {
        width: 90%;
    }
}
.businesses_list {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 834px) {
    .businesses_list {
       flex-direction: column;
    }
}
.businesses_item {
    width: 500rem;
    height: 500rem;
    border-radius: 50%;
    background: linear-gradient(
  to right bottom,
  #2799ca 0%,   
  #3caedc 100%  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 834px) {
    .businesses_item {
        width: 500rem;
        height: 500rem;
        margin: 0 auto;
        margin-bottom: 40rem;
    }
    .businesses_item:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 440px) {
    .businesses_item {
        width: 300rem;
        height: 300rem;
        margin-bottom: 20rem;
    }
}
@media (min-width: 835px) {
.businesses_item:nth-child(1),
.businesses_item:nth-child(3) {
    margin-top: 80rem;
}
.businesses_item:nth-child(3) {
    padding-top: 60rem;
}
}
.businesses_item h4 {
    font-size: 40rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 50rem;
}
@media (max-width: 834px) {
    .businesses_item h4 {
        font-size: 34rem;
        margin-bottom: 30rem;
    }
}
@media (max-width: 440px) {
    .businesses_item h4 {
        font-size: 24rem;
        margin-bottom: 20rem;
        margin-top: 20rem;
    }
}
.businesses_item_text li {
    font-size: 25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    text-align: center;
}
@media (max-width: 834px) {
    .businesses_item_text li {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .businesses_item_text li {
        font-size: 16rem;
    }
}
.businesses_item_text li:nth-child(2) {
    margin-top: 20rem;
}
@media (max-width: 440px) {
    .businesses_item_text li:nth-child(2) {
        margin-top: 10rem;
    }
}
.businesses_image_list {
    display: flex;
    gap: 35rem;
    margin-top: 50rem;
}
@media (max-width: 834px) {
    .businesses_image_list {
        margin-top: 30rem;
    }
}
@media (max-width: 440px) {
    .businesses_image_list {
        margin-top: 20rem;
    }
}
.businesses_image_item {
    height: 90rem;
}
@media (max-width: 834px) {
    .businesses_image_item {
        height: 70rem;
    }
}
@media (max-width: 440px) {
    .businesses_image_item {
        height: 50rem;
    }
}
.businesses_image_item img {
    width: auto;
    height: 100%;
}
.company {
    width: 1300rem;
    margin: 120rem auto;
}
@media (max-width: 834px) {
    .company {
        width: 90%;
        margin: 80rem auto;
    }
}
@media (max-width: 440px) {
    .company {
        margin: 50rem auto;
    }
}
.company_content {
    width: 900rem;
    margin: 0 auto;
}
@media (max-width: 834px) {
    .company_content {
        width: 60%;
    }
}
@media (max-width: 440px) {
    .company_content {
        width: 100%;
    }
}
.company_list {
    display: flex;
    border-bottom: 1px solid #707070;
    border-right: 1px solid #707070;
    border-left: 1px solid #707070;
}
@media (max-width: 834px) {
    .company_list {
        flex-direction: column;
    }
}
.company_list_first {
    border-top: 1px solid #707070;
}
.company_list dt {
    width: 300rem;
    color: #fff;
    background-color: #2799CA;
    padding: 25rem;
    text-align: center;
    font-size: 23rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .company_list dt {
        padding: 25rem;
        font-size: 20rem;
        width: 100%;
        text-align: left;
    }
}
@media (max-width: 440px) {
    .company_list dt {
        padding: 15rem;
        font-size: 16rem;
    }
}
.company_list dd {
    flex: 1;
    padding: 25rem;
    font-size: 23rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
}
@media (max-width: 834px) {
    .company_list dd {
        padding: 25rem;
        font-size: 20rem;
        text-align: left;
    }
}
@media (max-width: 440px) {
    .company_list dd {
        padding: 15rem;
        font-size: 16rem;
    }
}
/* 会社概要 */

/* 製品 */
.page_product_wrapper {
    width: 1700rem;
    margin: 120rem auto;
}
@media (max-width: 834px) {
    .page_product_wrapper {
        width: 80%;
        margin: 80rem auto;
    } 
}
@media (max-width: 440px) {
    .page_product_wrapper {
        margin: 50rem auto;
    } 
}
/* 製品 */

/* 施工 */
.cases_wrapper {
    width: 1700rem;
    margin: 120rem auto 40rem;
}
@media (max-width: 834px) {
    .cases_wrapper {
        width: 80%;
        margin: 80rem auto;
    }
}
@media (max-width: 440px) {
    .cases_wrapper {
        margin: 50rem auto;
        width: 90%;
    }
}
.cases_list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 50rem);
    margin-top: 80rem;
}
@media (max-width: 834px) {
    .cases_list {
       flex-direction: column;
        width: 100%;
        margin-top: 60rem;
    }
}
@media (max-width: 440px) {
    .cases_list {
        margin-top: 40rem;
    }
}
.cases_item {
    width: calc(33.3333% - 60rem);
    margin: 0 50rem 80rem 0;
}
@media (max-width: 834px) {
    .cases_item {
        width: 100%;
        margin: 0 0 60rem 0;
    }
    .cases_item:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 440px) {
    .cases_item {
        margin: 0 0 40rem 0;
    }
}
/* @media (min-width: 835px) {
.cases_item:nth-last-child(-n+3) {
    margin-bottom: 0;
}
} */
.cases_link {
    display: block;
}
.cases_image {
    width: 530rem;
    height: 530rem;
    border: 1rem solid #707070;
    border-radius: 3rem;
}
@media (max-width: 834px) {
    .cases_image {
        width: 667rem;
        height: 667rem;
    }
}
@media (max-width: 440px) {
    .cases_image {
        width: 350rem;
        height: 350rem;
        margin: 0 auto;
    }
}
.cases_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cases_content {
    margin-top: 25rem;
}
.cases_content span {
    font-size: 25rem;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .cases_content span {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .cases_content span {
        font-size: 16rem;
    }
}
.cases_content h3 {
    font-size: 34rem;
    font-weight: 600;
    color: #2799CA;
    letter-spacing: 0.03em;
    margin-top: 20rem;
}
@media (max-width: 834px) {
    .cases_content h3 {
        font-size: 28rem;
        margin-top: 20rem;
    }
}
@media (max-width: 440px) {
    .cases_content h3 {
        font-size: 22rem;
        margin-top: 10rem;
    }
}
.cases_content p {
    font-size: 25rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 20rem;
    word-break: break-word;
}
@media (max-width: 834px) {
    .cases_content p {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .cases_content p {
        font-size: 18rem;
        margin-top: 10rem;
    }
}
.video_sec {
    width: 1200rem;  
    height: 675rem;  
    border: none;   
    display: block;
    margin: 0 auto; 
    border-radius: 3rem;
  }
  @media (max-width: 834px) {
    .video_sec {
        width: 90%;  
        height: 422rem; 
        margin: 0 auto;
      }
  }
  @media (max-width: 440px) {
    .video_sec {
        height: 223rem; 
      }
  }
  .video video {
    width: 1200rem;  
    height: 675rem;  
    border: none;   
    display: block;
    margin: 0 auto; 
    border-radius: 3rem;
  }
  @media (max-width: 834px) {
    .video video {
        width: 100%;  
        height: 422rem; 
        margin: 0 auto;
      }
      .video_sec video {
        width: 90%;
        margin: 0 auto;
    }
  }
  @media (max-width: 440px) {
    .video video {
        height: 223rem; 
      }
    _::-webkit-full-page-media, _:future, :root .video video {
        border: 1px solid #ccc; 
        }
    }
.works_wrapper {
    width: 1770rem;
    margin: 120rem auto;
}
@media (max-width: 834px) {
    .works_wrapper {
        width: 80%;
        margin: 80rem auto;
    }
}
@media (max-width: 440px) {
    .works_wrapper {
        width: 85%;
        margin: 50rem auto;
    }
}
.works_info_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30rem;
}
@media (max-width: 834px) {
    .works_info_list {
        flex-direction: column;
        gap: 30rem;
      }
}
@media (max-width: 440px) {
    .works_info_list {
        gap: 10rem;
      }
}
.works_info_item {
  width: 570rem;
  height: 430rem;
  background-image: url("../img/24921216_m.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 3rem;
}
@media (max-width: 834px) {
    .works_info_item {
        width: 100%;
        height: 375rem;
      }
}
@media (max-width: 440px) {
    .works_info_item {
        height: 200rem;
      }
}
.works_info_item::before {
    background-color: rgba(51, 51, 51, 0.5);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.works_info_item h4 {
    font-size: 44rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 20rem;
    word-break: break-word;
    line-height: 1.4;
}
@media (max-width: 834px) {
    .works_info_item h4 {
        font-size: 32rem;
    } 
}
@media (max-width: 440px) {
    .works_info_item h4 {
        font-size: 26rem;
    } 
}
/* 施工 */

/* 製品紹介 */
.single_wrapper {
    width: 1560rem;
    margin: 120rem auto;
}
@media (max-width: 834px) {
    .single_wrapper {
        width: 90%;
        margin: 80rem auto;
    }
}
@media (max-width: 440px) {
    .single_wrapper {
        margin: 50rem auto;
    }
}
.single_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 834px) {
    .single_content {
        flex-direction: column;
    } 
}
.single_image {
    width: 500rem;
    /* height: 500rem; */
    border: 1rem solid #707070;
}
@media (max-width: 834px) {
    .single_image {
        width: 90%;
        /* height: 673rem; */
    }
}
@media (max-width: 440px) {
    .single_image {
        /* height: 356rem; */
    }
}
.single_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3rem;
}
.single_text_content {
   width: 940rem;
}
@media (max-width: 834px) {
    .single_text_content {
        width: 100%;
        margin-top: 30rem;
     }
}
.single_text_content h2 {
    font-size: 44rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 40rem;
}
@media (max-width: 834px) {
    .single_text_content h2 {
        font-size: 28rem;
        margin-bottom: 20rem;
    }
}
@media (max-width: 440px) {
    .single_text_content h2 {
        font-size: 22rem;
        margin-bottom: 15rem;
    }
}
.single_text_content p {
    font-size: 25rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
@media (max-width: 834px) {
    .single_text_content p {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .single_text_content p {
        font-size: 18rem;
    }
}
.single_section {
    width: 100%;
    margin: 80rem auto;
}
@media (max-width: 834px) {
    .single_section {
        margin: 60rem auto;
    } 
}
@media (max-width: 440px) {
    .single_section {
        margin: 40rem auto;
    } 
}
.single_section_box {
    background-color: #2799CA;
    border-radius: 3rem;
    font-size: 30rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    text-align: center;
    padding: 20rem;
    width: 300rem;
    margin-bottom: 45rem;
}
@media (max-width: 834px) {
    .single_section_box {
        font-size: 24rem;
        margin-bottom: 25rem;
    }
}
@media (max-width: 440px) {
    .single_section_box {
        font-size: 20rem;
        margin-bottom: 25rem;
        padding: 15rem;
    }
}
.single_section_title {
    font-size: 36rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 30rem;
    line-height: 1.4;
}
@media (max-width: 834px) {
    .single_section_title {
        font-size: 28rem;
        margin-bottom: 20rem;
    }
}
@media (max-width: 440px) {
    .single_section_title {
        font-size: 22rem;
        margin-bottom: 15rem;
    }
}
.single_section_text {
    font-size: 25rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .single_section_text {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .single_section_text {
        font-size: 18rem;
    }
}
.sp_swipe {
    display: none;
}
@media (max-width: 440px) {
    .sp_swipe {
        font-size: 14rem;
        margin-bottom: 10rem;
        display: inline-block;
        position: relative;
    }
}
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
 } 
  @media (max-width: 440px) {
	  .table-scroll {
	padding-bottom: 15rem;
 } 
}
table {
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px 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: 25rem; 
    font-weight: 600;
    letter-spacing: 0.03em;
  }
  @media (max-width: 834px) {
    th {
        font-size: 18rem; 
      }
  }
  @media (max-width: 440px) {
    th {
        font-size: 15rem; 
      }
  }
  th span {
    font-size: 21rem; 
    font-weight: normal;
  }
  @media (max-width: 834px) {
    th span {
        font-size: 16rem; 
      }
  }
  @media (max-width: 440px) {
    th span {
        font-size: 14rem; 
      }
  }
th span {
	margin-top:5rem;
	display:block;
}
  td {
    font-size: 23rem; 
    letter-spacing: 0.03em;
    padding: 15rem;
    width: 180rem;
    line-height: 1.3;
  }
  @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: 20rem;
  }
  @media (max-width: 834px) {
    .table_top {
        padding-top: 15rem;
      }
  } 
td {
    border-left: 1px solid #2E4053;
    border-bottom: 1px solid #2E4053;
}
th {
    border-bottom: 1px solid #2E4053;
}
/* 製品紹介 */

/* 技術サポート */
.support_wrapper {
    width: 1500rem;
    margin: 120rem auto;
}
@media (max-width: 834px) {
    .support_wrapper {
        width: 90%;
        margin: 80rem auto;
    } 
}
@media (max-width: 440px) {
    .support_wrapper {
        margin: 50rem auto;
    } 
}
.support_content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100rem;
}
@media (max-width: 834px) {
    .support_content {
        margin-bottom: 60rem;
        flex-direction: column;
    }
}
.support_text_content {
    width: 870rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 834px) {
    .support_text_content {
        width: 100%;
    }
}
.support_text_content .section_title {
    margin-bottom: 0;
    text-align: left;
}
@media (max-width: 834px) {
    .support_text_content .section_title {
        text-align: center;
    }
}
.support_text_content .section_title h2 {
    margin-left: 65rem;
}
@media (max-width: 834px) {
    .support_text_content .section_title h2 {
        margin-left: 0;
    }
}
.support_text_content p {
    width: 870rem;
}
@media (max-width: 834px) {
    .support_text_content p {
        width: 100%;
        margin-bottom: 40rem;
    }
}
@media (max-width: 440px) {
    .support_text_content p {
        margin-bottom: 20rem;
    }
}
.support_image {
    width: 500rem;
    height: 500rem;
}
@media (max-width: 834px) {
    .support_image {
        margin: 0 auto;
    }
}
@media (max-width: 440px) {
    .support_image {
        width: 350rem;
        height: 350rem;
    }
}
.support_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3rem;
}
.support_form_content {
    display: flex;
   justify-content: space-between;
}
@media (max-width: 834px) {
    .support_form_content {
       flex-direction: column-reverse;
    }
}
.support_form_text_content .section_title {
    margin-bottom: 0;
    text-align: left;
}
@media (max-width: 834px) {
    .support_form_text_content .section_title {
        text-align: center;
    } 
}
.support_form_text_content .section_title h2 {
    margin-left: 65rem;
}
@media (max-width: 834px) {
    .support_form_text_content .section_title h2 {
        margin-left: 0;
    } 
}
.support_form_image {
    width: 500rem;
    height: 500rem;
    margin-right: 80rem;
}
@media (max-width: 834px) {
    .support_form_image {
       margin: 0 auto;
    }
}
@media (max-width: 440px) {
    .support_form_image {
        width: 350rem;
        height: 350rem;
    }
}
.support_form_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3rem;
}
.support_form_text_content {
    width: 870rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 834px) {
    .support_form_text_content {
        width: 100%;
        margin-bottom: 30rem;
    } 
}
.support_form_text_content p {
    width: 750rem;
}
@media (max-width: 834px) {
    .support_form_text_content p {
        width: 100%;
    } 
}
.support_form_text_content .product_btn {
    text-align: left;
}
@media (max-width: 834px) {
    .support_form_text_content .product_btn {
        text-align: center;
    }
}
.faq {
    width: 1400rem;
    margin: 0 auto 120rem;
}
@media (max-width: 834px) {
    .faq {
        width: 90%;
        margin: 0 auto 80rem;
    }
}
.accordion-area li {
    margin-bottom: 30rem;
    border: 3px solid #2799CA;
    border-radius: 5rem;
}
@media (min-width: 835px) {
	.accordion-area li:hover {
		cursor: pointer;
	}
}
@media (max-width: 440px) {
    .accordion-area li {
        margin-bottom: 15rem;
        border: 2px solid #2799CA;
    }
}
.accordion-area li:last-child {
    margin-bottom: 0;
}
.question_box {
    padding: 25rem 20rem 25rem 30rem;
    background-color: #2799CA;
    display: flex;
    transition: all .5s ease;
    position: relative;
}
@media (max-width: 834px) {
    .question_box {
        padding: 15rem 15rem 15rem 20rem;
    }
}
@media (max-width: 440px) {
    .question_box {
        padding: 12rem 5rem 12rem 10rem;
    }
}
/* プラスマイナスの挙動 */
.question_acd_open::before,.question_acd_open::after  {
    content: '';
    display: inline-block;
    width: 30rem;
    height: 3rem;
    background-color: #fff;
    position: absolute;
	right: 5%;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
}
@media (max-width: 834px) {
    .question_acd_open::before,.question_acd_open::after  {
        width: 20rem;
        height: 2rem;
    }
}
@media (max-width: 440px) {
    .question_acd_open::before,.question_acd_open::after  {
        width: 16rem;
        right: 3%;
    }
}
.question_acd_open::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s;
}
.question_acd_open.show::before {
    opacity: 0;
}
.question_acd_open.show::after {
    transform: translateY(-50%) rotate(180deg);
}
/* プラスマイナスの挙動 */
.question_title {
    font-weight: 600;
    font-size: 28rem;
    line-height: 1.6;
    width: 85%;
    padding-right: 40rem;
	letter-spacing: 0.08em;
    color: #fff;
    margin-top: 13rem;

    word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 834px) {
    .question_title {
        font-size: 20rem;
        width: 85%;
        margin-top: 6rem;
    } 
}
@media (max-width: 440px) {
    .question_title {
        font-size: 16rem;
        width: 88%;
        margin-top: 4rem;
        padding-right: 30rem;
    } 
}
.question {
    color: #fff;
    font-size: 32rem;
    font-weight: 600;
    margin-right: 30rem;
    letter-spacing: 0.03em;
    width: 65rem;
    height: 65rem;
    border-radius: 50%;
    background-color: #fff;
    color: #2799CA;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 834px) {
    .question {
        font-size: 20rem;
        margin-right: 20rem;
        width: 40rem;
        height: 40rem;
    }
}
@media (max-width: 440px) {
    .question {
        font-size: 15rem;
        margin-right: 7rem;
        width: 32rem;
        height: 32rem;
    }
}
.answer {
    color: #fff;
    font-size: 36rem;
    font-weight: 600;
    margin-right: 25rem;
    width: 65rem;
    height: 65rem;
    border-radius: 50%;
    background-color: #E94709;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 834px) {
    .answer {
        font-size: 20rem;
        margin-right: 18rem;
        width: 40rem;
        height: 40rem;
    }
}
@media (max-width: 440px) {
    .answer {
        font-size: 15rem;
        margin-right: 7rem;
        width: 32rem;
        height: 32rem;
    }
}
.answer_content {
    display: none;
}
.answer_box {
    padding: 25rem 80rem 25rem 30rem;
    display: flex;
    transition: all .5s ease;
    position: relative;
}
@media (max-width: 834px) {
    .answer_box {
        padding: 15rem 35rem 15rem 20rem;
    }
}
@media (max-width: 440px) {
    .answer_box {
        padding: 10rem 8rem 10rem 10rem;
    }
}
.answer_box p {
    font-size: 25rem;
    line-height: 1.6;
    width: 90%;
    margin-top: 13rem;
    letter-spacing: 0.03em;
}
@media (max-width: 834px) {
    .answer_box p {
        font-size: 20rem;
       margin-top: 3rem;
    }
}
@media (max-width: 440px) {
    .answer_box p {
        font-size: 16rem;
    }
}
/* 技術サポート */

/* 製品一覧 */
.industrial_wrapper {
    width: 1720rem;
    margin: 120rem auto;
}
@media (max-width: 834px) {
    .industrial_wrapper {
        width: 90%;
        margin: 80rem auto;
    }
}
@media (max-width: 440px) {
    .industrial_wrapper {
        margin: 50rem auto;
    }
}
.industrial_content_ft {
    margin-bottom: 120rem;
}
@media (max-width: 834px) {
    .industrial_content_ft {
        margin-bottom: 60rem;
    } 
}
@media (max-width: 440px) {
    .industrial_content_ft {
        margin-bottom: 50rem;
    } 
}
.industrial_section_box {
    background-color: #2799CA;
    border-radius: 3rem;
    font-size: 30rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    text-align: center;
    padding: 20rem;
    width: 380rem;
    margin: 0 auto 80rem;
}
@media (max-width: 834px) {
    .industrial_section_box {
        font-size: 24rem;
        margin: 0 auto 60rem;
    }
}
@media (max-width: 440px) {
    .industrial_section_box {
        font-size: 20rem;
        margin: 0 auto 40rem;
        width: 330rem;
        padding: 15rem;
    }
}
.industrial_list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 55rem);
}
@media (max-width: 834px) {
    .industrial_list {
        flex-direction: column;
        width: calc(100%);
    }
}
  .industrial_item {
    width: calc(25% - 60rem);
    margin: 0 55rem 80rem 0;
  }
  @media (max-width: 834px) {
    .industrial_item {
        width: calc(80%);
        margin: 0 auto;
        margin-bottom: 60rem;
      }
      .industrial_item:last-child {
        margin-bottom: 0;
      }
  }
  @media (max-width: 440px) {
    .industrial_item {
        width: calc(90%);
        margin-bottom: 40rem;
      }
  }
  @media (min-width: 835px) {
  .industrial_item:nth-last-child(-n+4) {
    margin-bottom: 0;
}
  }
  .industrial_link {
    display: block;
  }
  .industrial_image {
    width: 100%;
    height: 310rem;
    border: 1rem solid #707070;
    border-radius: 3rem;
  }
  @media (max-width: 834px) {
    .industrial_image {
        height: 450rem;
      }
  }
  @media (max-width: 440px) {
    .industrial_image {
        height: 250rem;
      }
  }
  .industrial_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page_product_name {
    font-size: 25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-top: 25rem;
    line-height: 1.3;
    /* text-align: center; */
  }
  @media (max-width: 834px) {
    .page_product_name {
        font-size: 28rem;
      }
  }
  @media (max-width: 440px) {
    .page_product_name {
        font-size: 20rem;
        margin-top: 20rem;
      }
  }
.catalog_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1100rem;
    margin: 0 auto;
}
@media (max-width: 834px) {
    .catalog_content {
        width: 80%;
        flex-direction: column-reverse;
    }
}
@media (max-width: 440px) {
    .catalog_content {
        width: 100%;
    }
}
.catalog_left {
    width: auto;
}
@media (max-width: 834px) {
    .catalog_left {
        width: 100%;
    } 
}
.catalog_list {
    display: flex;
    align-items: center;
    border-bottom: 1rem solid #707070;
    padding: 25rem;
	gap: 10rem
}
@media (max-width: 440px) {
    .catalog_list {
        padding: 15rem;
        flex-direction: column;
        align-items: start;
    }
}
.catalog_list dt {
    font-size: 25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    width: 300rem;
}
@media (max-width: 834px) {
    .catalog_list dt {
        font-size: 22rem;
    }
}
@media (max-width: 440px) {
    .catalog_list dt {
        font-size: 18rem;
        width: 210rem;
    }
}
.catalog_list_en dt {
    width: 320rem;
}
.catalog_list dd {
    font-size: 25rem;
    letter-spacing: 0.03em;
   flex: 1;
}
@media (max-width: 834px) {
    .catalog_list dd {
        font-size: 22rem;
    }
}
@media (max-width: 440px) {
    .catalog_list dd {
        font-size: 18rem;
    }
}
.catalog_image {
    width: 380rem;
    height: 537rem;
}
@media (max-width: 834px) {
    .catalog_image {
        width: 450rem;
        height: 636rem;
        margin-bottom: 30rem;
    }
}
@media (max-width: 440px) {
    .catalog_image {
        width: 200rem;
        height: 243rem;
    }
}
.catalog_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3rem;
}
.catalog_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 330rem;
    padding: 20rem;
    background-color: #2E4053;
    border-radius: 50rem;
    position: relative;
    margin: 30rem auto 0;
}
@media (max-width: 440px) {
    .catalog_link {
        width: 320rem;
        padding: 15rem;
        margin: 20rem auto 0;
    }
}
.catalog_link_en {
    width: 440rem;
}
@media (max-width: 440px) {
    .catalog_link_en {
        width: 80%;
    }
}
.catalog_link p {
    font-size: 23rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    text-align: center;
}
@media (max-width: 834px) {
    .catalog_link p {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .catalog_link p {
        font-size: 18rem;
    }
}
.catalog_link img {
    width: 20rem;
    object-fit: cover;
    position: absolute;
    top: 33%;
    right: 50rem;
}
@media (max-width: 440px) {
    .catalog_link img {
        width: 15rem;
        right: 65rem;
    }
    .catalog_link_en img {
        right: 30rem;
    }
}
/* 製品一覧 */

/* 検索結果 */
.search_title_content {
    margin-top: 40rem;
}
@media (max-width: 440px) {
    .search_title_content {
        margin-top: 20rem;
    }
}
.search_title_content p {
    font-size: 36rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
    inline-size: fit-content;
    margin-inline: auto;
}
@media (max-width: 834px) {
    .search_title_content p {
        font-size: 25rem;
        text-align: left;
    }
}
@media (max-width: 440px) {
    .search_title_content p {
        font-size: 20rem;
    }
}
.search_title_content span {
    font-weight: 600;
    color: #2799CA;
}
.page_product_text {
    font-size: 25rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 20rem;
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
@media (max-width: 834px) {
    .page_product_text {
        font-size: 20rem;
    }
}
/* 検索結果 */

/* お問合せ */
.contact_bg {
    background-color: #F5F5F5;
   padding-bottom: 120rem;
}
@media (max-width: 834px) {
    .contact_bg {
       padding-bottom: 80rem;
    }
}
@media (max-width: 440px) {
    .contact_bg {
       padding-bottom: 50rem;
    }
}
.contact_wrapper {
    width: 1180rem;
    margin: 120rem auto 0;
}
@media (max-width: 834px) {
    .contact_wrapper {
        width: 90%;
        margin: 80rem auto 0;
    }
}
@media (max-width: 440px) {
    .contact_wrapper {
        margin: 50rem auto 0;
    }
}
.contact_section_text {
    font-size: 25rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
    inline-size: fit-content;
    margin-inline: auto;
    text-align: left;
    margin-top: 40rem;
}
@media (max-width: 834px) {
    .contact_section_text {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .contact_section_text {
        font-size: 18rem;
        margin-top: 30rem;
    }
}
.access {
    width: 1300rem;
    margin: 120rem auto;
}
@media (max-width: 834px) {
    .access {
        width: 80%;
        margin: 80rem auto;
    } 
}
@media (max-width: 440px) {
    .access {
        width: 90%;
        margin: 50rem auto;
    } 
}
.access_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 834px) {
    .access_content {
        flex-direction: column;
    }
}
.access_left {
    width: 550rem;
}
@media (max-width: 834px) {
    .access_left {
        width: 100%;
        margin-bottom: 30rem;
    }
}
.access_list:first-of-type {
    margin-bottom: 30rem;
}
@media (max-width: 834px) {
    .access_list:first-of-type {
        margin-bottom: 20rem;
    }
}
.access_list img {
    height: 30rem;
    object-fit: cover;
}
@media (max-width: 834px) {
    .access_list img {
        height: 20rem;
    }
}
.access_list dt {
    font-size: 25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 10rem;
}
@media (max-width: 834px) {
    .access_list dt {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .access_list dt {
        font-size: 18rem;
    }
}
.access_list dd {
    font-size: 25rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 5rem;
}
@media (max-width: 834px) {
    .access_list dd {
        font-size: 20rem;
    }
}
@media (max-width: 440px) {
    .access_list dd {
        font-size: 18rem;
    }
}
.access_map iframe {
    width: 700rem;
    height: 438rem;
}
@media (max-width: 440px) {
    .access_map iframe {
        width: 100%;
        height: 250rem;
    }
}
/* お問合せ */

/* 戻るボタン */
#page_top {
    position: fixed;
    bottom: 10%;
    right: -0.5%;
    z-index: 1;
  }
  @media (max-width: 834px) {
    #page_top {
        bottom: 11%;
      }
  }
  @media (max-width: 440px) {
    #page_top {
        right: -4%;
        bottom: 10%;
      }
  }
  @media (min-width: 835px) {
  #page_top:hover {
    cursor: pointer;
  }
}
  #page_top::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 5rem;
    width: 60rem;
    height: 60rem;
    border-radius: 3rem;
    transform: translate(-50%,-50%);
    background-color: #2799CA;
	border: 1px solid #fff;
}
@media (max-width: 834px) {
    #page_top::before {
        width: 45rem;
        height: 45rem;
    }
}
@media (max-width: 440px) {
    #page_top::before {
        width: 35rem;
        height: 35rem;
    }
}
#page_top::after {
    content: "";
    margin: auto;
    position: absolute;
    top: -5rem;
    right: 56rem;
    width: 18rem;
    height: 18rem;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(45deg);
}
@media (max-width: 834px) {
    #page_top::after {
        right: 44rem;
        width: 12rem;
        height: 12rem;
		top: -4rem;
    }
}
@media (max-width: 440px) {
    #page_top::after {
        right: 35rem;
        width: 10rem;
        height: 10rem;
         top: -3rem;
		 border-top: 2px solid #fff;
    	border-left: 2px solid #fff;
    }
}
/* 戻るボタン */

/* パンくず */
.fbc-page .fbc-wrap .fbc-items {
	padding: 15rem 4% 0 4%!important;
	 line-height: 1!important;
}
.fbc-page .fbc-wrap .fbc-items {
    background-color: transparent!important;
}
.fbc-page .fbc-wrap .fbc-items li {
	padding:0!important;
	 margin-right: 4px!important;
	 margin-left: 4px!important;
}
.fbc-page .fbc-wrap .fbc-items li:first-child {
    margin-right: 4px!important;
}
 .fbc-separator {
	color:#000036!important;
}
.fbc-page .fbc-wrap .fbc-items li.active span, .fbc-page .fbc-wrap .fbc-items li .fbc-end-text {
    line-height: 1.5;
}
.fbc-page .fbc-wrap .fbc-items li a {
    color: #2799CA;
}
.fbc-page .fbc-wrap .fbc-items {
    font-size: 16px;
    display: flex;
    align-items: center;
}
.fbc-page strong {
    display: none;
}
/* パンくず */





/* contact7 */
.contact_item {
    display: flex;
    margin-bottom: 40rem;
}
@media (max-width: 834px) {
    .contact_item {
        margin-bottom: 30rem;
    }
}
@media (max-width: 440px) {
    .contact_item {
        margin-bottom: 20rem;
    }
}
.contact_item:last-child {
    margin-bottom: 0;
}
@media (max-width: 834px) {
    .contact_item {
        flex-direction: column;
        align-items: start;
    }
}
.required {
    color: #2799CA;
    font-size: 25rem;
    margin-left: 5rem;
    font-weight: 600;
}
@media (max-width: 440px) {
    .required {
        font-size: 18rem;
    }
}
.form_section_title {
    font-size: 25rem;
    font-weight: 600;
    width: 350rem;
	letter-spacing: 0.03em;
    display: flex;
    align-items: center;
}
@media (max-width: 834px) {
    .form_section_title {
        font-size: 20rem;
        width: 100%;
        margin-bottom: 20rem;
    }
}
@media (max-width: 440px) {
    .form_section_title {
        font-size: 18rem;
        margin-bottom: 10rem;
    }
}
.radio_item .form_section_title {
	margin-bottom: 0;
}
.radio_item .wpcf7-form-control-wrap {
	margin-top: -12rem;
    display: block;
}
@media (max-width: 834px) {
	.radio_item .wpcf7-form-control-wrap {
	margin-top: -5rem;
}
}
@media (max-width: 440px) {
	.radio_item .wpcf7-form-control-wrap {
	margin-top: 15rem;
}
}
.contact_item_textarea {
    align-items: start;
    margin-bottom: 0;
}
.wpcf7-form-control {
    background-color: #fff;
    width: 900rem;
    height: 60rem; 
    font-size: 25rem;
    padding: 35rem 20rem;
    border-radius: 3rem;
	letter-spacing: 0.03em;
    border: 1rem solid #707070;
}
@media (max-width: 834px) {
    .wpcf7-form-control {
        font-size: 20rem;
        width: 750rem;
        height: 50rem;
        padding: 30rem 20rem;
    }
}
@media (max-width: 440px) {
    .wpcf7-form-control {
        width: 400rem;
        height: 50rem; 
        padding: 20rem 10rem;
    }
}
.wpcf7-textarea {
    background-color: #fff;
    width: 900rem;
    height: 400rem;
    padding: 20rem;
    border-radius: 3rem;
	resize: vertical;
}
@media (max-width: 834px) {
    .wpcf7-textarea {
        height: 250rem;
        width: 750rem;
    }
}
@media (max-width: 440px) {
    .wpcf7-textarea {
        width: 400rem;
        padding: 10rem;
    }
}
.wpcf7-submit {
    font-size: 23rem;
    font-weight: 600;
    color: #fff;
    display: block;
    width: 300rem;
    height: 80rem;
    background-color: #2799CA;
    border-radius: 3rem;
    margin: 50rem auto 0;
    transition: all 0.4s;
    border: 4rem solid #2799CA;
	letter-spacing: 0.03em;
    line-height: 0.2;
    text-align: center;
 }
 @media (max-width: 834px) {
    .wpcf7-submit {
        font-size: 20rem;
        width: 400rem;
        height: 65rem;
        margin: 40rem auto 0;
     }
 }
 @media (max-width: 440px) {
    .wpcf7-submit {
        font-size: 18rem;
        margin: 30rem auto 0;
		height:60rem;
        width: 85%;
     }
 }
 @media (min-width: 835px) {
    .wpcf7-submit:hover {
        background-color: #ffffff;
        color: #0090E9;
    }
}
.wpcf7-spinner {
	display: none!important;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { 
    color: #D3D3D3; 
}
.wpcf7-list-item {
    display: flex!important;
    align-items: center;
}
.wpcf7-list-item:first-child {
    margin-left: 0;
} 
.wpcf7-not-valid-tip {
    margin-top: 12rem;
    font-size: 18rem!important;
    display: block;
    color: #dc3232!important;
}
@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 {
    margin: 1em 0.5em 0!important;
	border-color: #dc3232!important;
	font-size: 23rem!important;
    line-height: 1.5;
    border: none!important;
    color: #dc3232;
    text-align: center;
}
@media (max-width: 834px) {
    .wpcf7 form .wpcf7-response-output {
        font-size: 16rem!important;
    }
}
@media (max-width: 440px) {
    .wpcf7 form .wpcf7-response-output {
        padding: 0!important;
        text-align: left;
    }
}
.wpcf7 form.sent .wpcf7-response-output {
    font-size: 25rem!important;
    line-height: 1.5;
    border: none;
	color: #2E4053!important;
} 
@media (max-width: 834px) {
    .wpcf7 form.sent .wpcf7-response-output {
        font-size: 18rem!important;
    } 
}
/* turnstile〜中央&css */
div.cf-turnstile {
    display: flex!important;
    justify-content: center!important;
	margin-top:40rem!important;
	margin-bottom: 20rem!important;
}
@media (max-width: 834px) {
	div.cf-turnstile {
	margin-bottom: 10rem!important;
}
}
@media (max-width: 440px) {
	div.cf-turnstile {
	margin-bottom: 5rem!important;
	margin-top: 20rem!important;
}
}
/* turnstile〜中央&css */
/* contact7 */


  /* ページナビ */
.wp-pagenavi {
    text-align: center;
    margin-top: 60rem;
    display: flex;
    justify-content: center;
  }
@media (max-width: 440px) {
    .wp-pagenavi {
        margin-top: 40rem;
      }
  }
  span.current {
      background: #2799CA;
      color: #fff;
      border-radius: 50%;
      width: 60rem;
      height: 60rem;
      display: inline-block;
      border: 3rem solid #2799CA;
      margin: 0 10rem;
      font-size: 30rem;
      line-height: 1.8;
      font-weight: bold;
  }
  @media (max-width: 834px) {
    span.current {
        width: 50rem;
        height: 50rem;
        font-size: 24rem;
    }
  }
  @media (max-width: 440px) {
      span.current {
          width: 30rem;
          height: 30rem;
          margin: 0 5rem;
          font-size: 16rem;
          padding-top: 4rem;
          line-height: 1;
      }
  }
  a.larger,
  a.smaller  {
      background: #ffffff;
      color: #2E4053;
      border-radius: 50%;
      width: 60rem;
      height: 60rem;
      display: inline-block;
      border: 3rem solid #DCDCDC;
      margin: 0 10rem;
      font-size: 30rem;
      transition: 0.4s ease;
      line-height: 1.8;
  }
  @media (max-width: 834px) {
    a.larger,
    a.smaller  {
      width: 50rem;
      height: 50rem;
      font-size: 24rem;
  }
  }
  @media (max-width: 440px) {
      a.larger,
      a.smaller {
          width: 30rem;
          height: 30rem;
          margin: 0 5rem;
          font-size: 16rem;
          line-height: 1.5;
      }
  }
  a.first {
      font-size: 28rem;
      font-weight: bold;
      margin-right: 10rem;
      transition: 0.4s ease;
      margin-top: 10rem;
  }
  @media (max-width: 834px) {
    a.first {
        font-size: 20rem;
    }
  }
  a.last {
      font-size: 28rem;
      font-weight: bold;
      margin-left: 10rem;
      transition: 0.4s ease;
      margin-top: 10rem;
  }
  a.last {
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 1rem;
}
  @media (max-width: 440px) {
      a.first,
      a.last {
      margin-top: 5rem;
  }
  }
  @media (max-width: 440px) {
      a.last {
          width: 30rem;
          height: 30rem;
          margin-left: 4rem;
  }
  }
  @media (min-width: 835px) {
  a.larger:hover,
  a.smaller:hover {
      background: #fff;
      color: #2E4053;
      transition: 0.4s ease;
  }
  a.last:hover,
  a.first:hover {
      color: #2E4053;
      transition: 0.4s ease;
  }
}
  /* ページナビ */

  .company_other_content {
    width: 100%;
    margin-top: 0;
    margin-bottom: 60rem;
  }
  @media (max-width: 834px) {
    .company_other_content {
        margin-bottom: 40rem;
      }
  }
  @media (max-width: 440px) {
    .company_other_content {
        margin-bottom: 40rem;
      }
  }
  .company_other_content h3 {
    inline-size: fit-content;
    margin-inline: auto;
  }
  