@charset "UTF-8";
@media screen and (max-width: 1200px) {
  .inner_wrap {
    width: 100%;
    padding: 0 3%;
  }
}
/*==============================================================
　タブレット〜スマホ
===============================================================*/
@media screen and (max-width: 1024px) {
  .inner_wrap_s {
    width: 100%;
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  .pc_el {
    display: none !important;
  }
  .sp_el {
    display: inline-block !important;
  }
  section {
    padding: 70px 0 50px;
  }
  /*==============================================================
   header : ヘッダー
  ===============================================================*/
  header {
    height: 59px;
    display: flex;
    align-items: center;
  }
  header .head_logo {
    padding-left: 10px;
  }
  header .logo {
    width: 30px;
    margin-right: 10px;
  }
  header .logo_txt_box {
    border-top: 2px solid #192e8e;
    border-bottom: 2px solid #192e8e;
  }
  header .logo_txt {
    font-size: clamp(13px, 4vw, 14px);
    border-top: 2px solid #b8c74f;
    border-bottom: 2px solid #b8c74f;
  }
  header .nav_box {
    display: none;
  }
  header nav {
    display: none;
  }
  header .tel_btn {
    width: 100%;
  }
  header .contact_btn {
    width: 100%;
    padding: 20px 0;
  }
  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: absolute;
    z-index: 999;
    right: 0;
    top: 0px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background-color: #192e8e;
    /* ナビ開いてる時のボタン */
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 15px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 18px;
  }
  .hamburger span:nth-child(2) {
    top: 28px;
  }
  .hamburger span:nth-child(3) {
    top: 38px;
  }
  .hamburger.active span:nth-child(1) {
    top: 30px;
    left: 15px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 30px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #globalMenuSp {
    height: 100vh;
    padding-top: 60px;
    display: none;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: #fff;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  #globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: block;
  }
  #globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    height: auto;
    transition: 0.4s all;
    border-top: 1px solid #192e8e;
  }
  #globalMenuSp ul li::before {
    content: none;
  }
  #globalMenuSp ul li a {
    display: block;
    color: #192e8e;
    font-size: clamp(16px, 2vw, 18px);
    width: 100%;
    padding: 15px 0;
  }
  #globalMenuSp ul li a::before {
    content: none;
  }
  #globalMenuSp ul li a::before {
    content: none;
  }
  #globalMenuSp ul li a.current::before {
    content: none;
  }
  #globalMenuSp ul li:last-child {
    border-bottom: 1px solid #eee;
  }
  #globalMenuSp.active {
    opacity: 100;
    z-index: 998;
    display: block;
  }
  /*==============================================================
  modal : モーダル
  ===============================================================*/
  #headline {
    padding: 20px 0;
    font-size: clamp(18px, 2vw, 18px);
    position: relative;
    overflow: hidden;
  }
  #headline::before {
    content: "";
    background-color: #192e8e;
    width: 100px;
    height: 200px;
    position: absolute;
    left: -50px;
    top: -100px;
    transform: rotate(45deg);
  }
  #headline::after {
    content: "";
    background-color: #192e8e;
    width: 100px;
    height: 200px;
    position: absolute;
    right: -50px;
    bottom: -100px;
    transform: rotate(45deg);
  }
  .pan_menu li {
    font-size: 14px;
  }
  /*==============================================================
  　footer : フッター共通
  ===============================================================*/
  footer .ft_wrap {
    flex-wrap: wrap;
  }
  footer .ft_logo {
    margin-bottom: 10px;
    font-size: clamp(18px, 5vw, 18px);
  }
  footer .ft_box {
    width: 100%;
  }
  footer .nav_ul {
    margin-top: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid;
    border-right: 1px solid;
  }
  footer .nav_ul li {
    width: 50%;
    padding: 10px;
    margin-right: 0px;
    border-top: 1px solid;
    border-left: 1px solid;
    text-align: center;
  }
  footer .nav_ul li a {
    display: block;
  }
  footer .nav_ul li:last-child {
    width: 100%;
  }
  footer .nav_ul li::before {
    content: none;
  }
  /*==============================================================
  	#pageTitle : 見出し共通
  ===============================================================*/
  .base_tl {
    font-size: clamp(24px, 8vw, 42px);
    margin-bottom: 40px;
    line-height: 1.2;
  }
  .base_tbl th,
  .base_tbl td {
    padding: 10px;
    font-size: clamp(16px, 2vw, 16px);
  }
  .base_tbl th {
    width: 100px;
    text-align: left;
  }
  .base_tbl2 th,
  .base_tbl2 td {
    padding: 10px;
    font-size: clamp(16px, 2vw, 16px);
  }
  #toTop {
    right: 0px;
    bottom: 10px;
    font-size: 14px;
  }
  /*==============================================================
  　#home : トップ
  ===============================================================*/
  #home .mv_area {
    padding: 15vw 0 0;
  }
  #home .mv_area .tl_box {
    margin-bottom: 15vw;
  }
  #home .mv_area .tl_box .sub_tl_box {
    font-size: clamp(20px, 2vw, 22px);
    padding: 7px 20px;
  }
  #home .mv_area .tl_box h1 {
    font-size: clamp(37px, 10vw, 48px);
  }
  #home .mv_area .consultation {
    font-size: clamp(24px, 2vw, 30px);
  }
  #home .merit_area {
    padding: 30px 0;
  }
  #home .merit_area .menu {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  #home .merit_area .menu li {
    margin-bottom: 10px;
  }
  #home .merit_area .menu li a {
    border: 3px solid #192e8e;
    font-size: clamp(18px, 2vw, 24px);
    padding: 5px 5px 20px;
  }
  #home .merit_area .menu li a::before {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    border: 20px solid transparent;
    border-top: 10px solid #b8c74f;
  }
  #home .merit_area .merit_list {
    flex-wrap: wrap;
  }
  #home .merit_area .merit_list li {
    width: 90%;
    margin: 0 auto 10px;
  }
  #home .size_area .size_box {
    flex-wrap: wrap;
  }
  #home .size_area .size_box .box {
    width: 100%;
    margin-bottom: 20px;
  }
  #home .size_area .size_box .tl {
    font-size: clamp(32px, 2vw, 32px);
  }
  #home .size_area .size_box .fig {
    width: 200px;
    height: auto;
  }
  #home .size_area .size_box .txt_box {
    border-top: 2px solid #c1c5c8;
    padding-top: 10px;
    height: auto;
    font-size: clamp(20px, 2vw, 20px);
  }
  #home .size_area .note {
    text-align: left;
    margin-top: 10px;
  }
  #home .material_area .material_list {
    flex-wrap: wrap;
  }
  #home .material_area .material_list .box {
    width: 80%;
    margin: 0 auto 50px;
    border-radius: 10px;
    padding: 30px 30px 20px;
  }
  #home .material_area .material_list .box .tl {
    font-size: clamp(24px, 2vw, 24px);
    width: 70%;
  }
  #home .material_area .material_list .box .list li {
    padding: 8px 0;
    font-size: clamp(16px, 2vw, 16px);
  }
  #home .material_area .con_btn {
    width: 100%;
    max-width: 600px;
    margin: 0px auto;
    font-size: clamp(18px, 2vw, 18px);
    padding: 20px 0;
  }
  #home .surface_aea .box {
    padding: 20px;
    border-radius: 10px;
    flex-wrap: wrap;
  }
  #home .surface_aea .list {
    width: 49%;
  }
  #home .surface_aea .list li {
    padding: 10px 0 10px 0px;
    font-size: clamp(15px, 2vw, 15px);
    border-bottom: 1px solid #c1c5c8;
  }
  #home .surface_aea .list li:last-child {
    border-bottom: 1px solid #c1c5c8;
  }
  #home .order_area {
    padding-bottom: 0;
  }
  #home .order_area .fig {
    width: 100%;
  }
  #home .order_area .txt {
    font-size: clamp(20px, 2vw, 20px);
    margin-bottom: 20px;
  }
  #home .reason_area .con_box {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  #home .reason_area .con_box:nth-child(odd) .photo {
    order: 1;
  }
  #home .reason_area .con_box:nth-child(odd) .txt_box {
    order: 2;
  }
  #home .reason_area .con_box:last-child {
    margin-bottom: 0;
  }
  #home .reason_area .photo {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 20px;
  }
  #home .reason_area .txt_box {
    width: 100%;
  }
  #home .reason_area .num {
    font-size: clamp(31px, 2vw, 31px);
  }
  #home .reason_area .tl {
    font-size: clamp(24px, 2vw, 24px);
    width: calc(100% - 80px);
    line-height: 1.2;
  }
  #home .reason_area .txt {
    font-size: clamp(18px, 2vw, 18px);
    padding-left: 0px;
  }
  .contact_area .sub_tl {
    padding: 8px 20px;
    font-size: clamp(24px, 2vw, 24px);
  }
  .contact_area .tl {
    font-size: clamp(35px, 2vw, 35px);
    margin-bottom: 20px;
  }
  .contact_area .txt {
    font-size: clamp(20px, 2vw, 20px);
    margin-bottom: 10px;
  }
  .contact_area .con_box {
    border-radius: 10px;
    padding: 20px;
    flex-wrap: wrap;
  }
  .contact_area .box {
    width: 100%;
  }
  .contact_area .box:last-child {
    margin-top: 10px;
    padding-top: 10px;
    border-left: none;
    border-top: 1px solid #192e8e;
  }
  .contact_area .s_tl {
    font-size: clamp(24px, 2vw, 24px);
  }
  .contact_area .tel {
    font-size: clamp(30px, 9vw, 34px);
  }
  .contact_area .tel img {
    width: 30px;
    margin-right: 10px;
  }
  .contact_area .fax {
    font-size: clamp(14px, 2vw, 14px);
    margin-top: 5px;
  }
  .sub_contact_area {
    padding: 50px 0;
  }
  .sub_contact_area .sub_tl {
    padding: 0 10px;
    font-size: clamp(24px, 2vw, 24px);
  }
  .sub_contact_area .sub_tl span:before {
    width: 24px;
    height: 22px;
  }
  .sub_contact_area .sub_tl span::after {
    width: 24px;
    height: 22px;
  }
  .sub_contact_area .tl {
    font-size: clamp(28px, 2vw, 28px);
    margin-bottom: 20px;
  }
  /*==============================================================
  　#business 
  ===============================================================*/
  #business .parts_area {
    padding: 50px 0 0;
  }
  #business .parts_area .con_box {
    flex-wrap: wrap;
  }
  #business .parts_area .con_box .txt_box {
    width: 100%;
    order: 2;
  }
  #business .parts_area .con_box .photo {
    width: 100%;
    order: 1;
    margin-bottom: 10px;
  }
  #business .trial_area .con_box {
    flex-wrap: wrap;
  }
  #business .trial_area .con_box .txt_box {
    width: 100%;
    order: 2;
  }
  #business .trial_area .con_box .photo {
    width: 100%;
    order: 1;
    margin-bottom: 10px;
  }
  #business .overseas_area .con_box {
    flex-wrap: wrap;
  }
  #business .overseas_area .con_box:last-child {
    margin-bottom: 0;
  }
  #business .overseas_area .photo {
    width: 100%;
    order: 1;
    border-radius: 20px 20px 0 0;
  }
  #business .overseas_area .photo img {
    height: auto;
  }
  #business .overseas_area .txt_box {
    width: 100%;
    order: 2;
    padding: 20px;
    height: auto;
  }
  #business .overseas_area .num {
    font-size: clamp(31px, 2vw, 31px);
  }
  #business .overseas_area .tl {
    font-size: clamp(24px, 2vw, 24px);
    width: calc(100% - 80px);
    line-height: 1.2;
  }
  #business .overseas_area .txt {
    font-size: clamp(18px, 2vw, 18px);
    padding-left: 0px;
  }
  /*==============================================================
  　#about
  ===============================================================*/
  #product .product_box .box {
    width: 48%;
    margin-bottom: 20px;
  }
  #product .product_box .box .name {
    font-size: clamp(18px, 2vw, 18px);
  }
  #product .parts_area {
    padding: 50px 0;
  }
  #product .parts_area .txt {
    margin-top: 20px;
    font-size: clamp(20px, 2vw, 20px);
  }
  /*==============================================================
  　#company
  ===============================================================*/
  #company .overview_area {
    padding: 50px 0 0;
  }
  #company .access_area .con_box {
    flex-wrap: wrap;
  }
  #company .access_area .txt_box {
    width: 100%;
    order: 2;
  }
  #company .access_area .txt_box address {
    font-size: clamp(16px, 2vw, 16px);
    line-height: 1.5;
    margin-bottom: 20px;
    padding-left: 0px;
  }
  #company .access_area .txt_box .box:last-child {
    margin-bottom: 0;
  }
  #company .access_area .map {
    width: 100%;
    order: 1;
    margin-bottom: 10px;
  }
  /*==============================================================
  	#3d
  ===============================================================*/
  #manufacturing section {
    padding: 70px 0 0;
  }
  #manufacturing .about_area .con_box {
    flex-wrap: wrap;
  }
  #manufacturing .about_area .con_box .photo {
    width: 100%;
    margin-bottom: 30px;
  }
  #manufacturing .about_area .con_box .txt_box {
    width: 100%;
  }
  #manufacturing .about_area .con_box .txt_box .txt {
    font-size: clamp(18px, 2vw, 18px);
  }
  #manufacturing .list {
    grid-template-columns: inherit;
  }
  #manufacturing .list .tl {
    margin-bottom: 20px;
    font-size: clamp(22px, 2vw, 22px);
  }
  #manufacturing .list .txt {
    font-size: clamp(16px, 2vw, 16px);
  }
  #manufacturing .file_area {
    padding-bottom: 70px;
  }
  #manufacturing .file_area .tl {
    font-size: clamp(24px, 2vw, 24px);
  }
  #manufacturing .contact_area {
    padding-bottom: 50px;
  }
  /*==============================================================
  　#contact : お問い合わせ
  ===============================================================*/
  #contact .form_area {
    padding: 50px 0;
  }
  #contact .form_area .base_tbl tr:nth-child(even) th {
    background-color: #c7d4ff;
  }
  #contact .form_area .base_tbl tr:nth-child(odd) td {
    background-color: #fff;
  }
  #contact .form_area .base_tbl th {
    width: 100%;
    display: block;
    border-right: none;
    border-bottom: 1px solid #192e8e;
    padding: 15px 10px;
  }
  #contact .form_area .base_tbl th span {
    font-size: clamp(14px, 2vw, 14px);
  }
  #contact .form_area .base_tbl td {
    display: block;
    width: 100%;
    border: none;
  }
  #contact .form_area .base_tbl .required {
    position: relative;
    display: inline-block;
    transform: none;
    margin-left: 0;
    margin-right: 5px;
  }
  #contact .form_area #submit-btn {
    padding: 15px;
    font-size: 20px;
    margin: 30px auto 40px;
  }
  #contact .note {
    font-size: 14px;
  }
  #contact .tel_area .con_box {
    width: 100%;
    padding: 20px;
  }
  #contact .tel_area .s_tl {
    margin-bottom: 10px;
  }
  #contact .tel_area .tel {
    font-size: clamp(30px, 9vw, 34px);
  }
  #contact .tel_area .tel img {
    width: 30px;
    margin-right: 10px;
  }
  #contact .thanks_area {
    padding: 50px 0;
  }
}/*# sourceMappingURL=sp.css.map */