@charset "UTF-8";
/** @format */
header {
  background-color: white;
}
@media screen and (max-width: 990px) {
  header .header_content {
    width: 100%;
  }
}
header .nav_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
header .nav_wrap .sub_menus {
  margin-right: 40px;
}
@media screen and (max-width: 990px) {
  header .nav_wrap .sub_menus {
    display: none;
  }
}
header .nav_wrap .sub_menus .sub_menu_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
header .nav_wrap .sub_menus .sub_menu_lists .sub_menu_item {
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #2d2d2d;
}
header .nav_wrap .sub_menus .sub_menu_lists .sub_menu_item .sub_menu_item_title.sub_menu_item_title_search a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
header .nav_wrap .sub_menus .sub_menu_lists .sub_menu_item .sub_menu_item_title.sub_menu_item_title_search a:hover {
  opacity: 0.7;
}
header .nav_wrap .sub_menus .sub_menu_lists .sub_menu_item a.btn {
  line-height: 2.5rem;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
}
header .nav_wrap .sub_menus .sub_menu_lists .sub_menu_item.lang.active a {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #2960d3;
  position: relative;
}
header .nav_wrap .sub_menus .sub_menu_lists .sub_menu_item.lang.active a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background: #2960d3;
}
header .nav_wrap .nav_lists_mobile {
  display: none;
}
@media screen and (max-width: 990px) {
  header .nav_wrap .nav_lists_mobile {
    display: block;
  }
}
header .nav_wrap .nav_lists_mobile ul {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .nav_wrap .nav_lists_mobile ul li a {
  font-size: 14px;
  letter-spacing: 0.15em;
  display: block;
  border: 1px solid #2d2d2d;
  padding: 10px 20px;
  border-radius: 40px;
}

/* モーダルのスタイル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal .modal_content {
  position: relative;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.modal .modal_content .modal_content_inner {
  padding: 0;
  position: relative;
}
.modal .modal_content .modal_content_inner .modal_content_inner_close {
  position: absolute;
  top: -40px;
  right: 0;
}
.modal .modal_content .modal_content_inner .modal_content_inner_close a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.modal .modal_content .modal_content_inner .modal_content_inner_close a:hover {
  background: #e0e0e0;
}
.modal .modal_content .modal_content_inner .modal_content_inner_close a img {
  width: 30px;
  height: 30px;
}
.modal .modal_content .modal_content_inner .modal_content_inner_search .modal_content_inner_search_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #e0e0e0;
  background: #fff;
}
.modal .modal_content .modal_content_inner .modal_content_inner_search .modal_content_inner_search_form input[type=text] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #2d2d2d;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.modal .modal_content .modal_content_inner .modal_content_inner_search .modal_content_inner_search_form input[type=text]:focus {
  outline: none;
  border-color: #2960d3;
}
.modal .modal_content .modal_content_inner .modal_content_inner_search .modal_content_inner_search_form input[type=text]::-webkit-input-placeholder {
  color: #888;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: left;
  color: rgba(45, 45, 45, 0.5);
}
.modal .modal_content .modal_content_inner .modal_content_inner_search .modal_content_inner_search_form input[type=text]::-moz-placeholder {
  color: #888;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: left;
  color: rgba(45, 45, 45, 0.5);
}
.modal .modal_content .modal_content_inner .modal_content_inner_search .modal_content_inner_search_form input[type=text]:-ms-input-placeholder {
  color: #888;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: left;
  color: rgba(45, 45, 45, 0.5);
}
.modal .modal_content .modal_content_inner .modal_content_inner_search .modal_content_inner_search_form input[type=text]::-ms-input-placeholder {
  color: #888;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: left;
  color: rgba(45, 45, 45, 0.5);
}
.modal .modal_content .modal_content_inner .modal_content_inner_search .modal_content_inner_search_form input[type=text]::placeholder {
  color: #888;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: left;
  color: rgba(45, 45, 45, 0.5);
}
.modal.is-active .modal_content {
  -webkit-transform: scale(1);
          transform: scale(1);
}

section.kv .kv_img_box .kvSwiper {
  height: 100vh;
  height: 100dvh;
}
@media screen and (max-width: 990px) {
  section.kv .kv_img_box .kvSwiper {
    height: auto;
  }
}
section.kv .kv_img_box .kvSwiper .swiper-slide .kv_content_1 {
  width: 100%;
  max-width: 1200px;
  text-align: left;
  top: 43%;
}
@media screen and (max-width: 990px) {
  section.kv .kv_img_box .kvSwiper .swiper-slide .kv_content_1 {
    display: none;
  }
}
section.kv .kv_img_box .kvSwiper .swiper-slide .kv_content_1 img {
  width: auto;
  height: auto;
  max-width: auto;
}
section.kv .kv_img_box .kvSwiper .swiper-slide .kv_content_2 {
  width: 100%;
  max-width: 1200px;
  text-align: left;
  top: 43%;
}
@media screen and (max-width: 990px) {
  section.kv .kv_img_box .kvSwiper .swiper-slide .kv_content_2 {
    display: none;
  }
}
section.kv .kv_img_box .kvSwiper .swiper-slide .kv_content_2 img {
  width: auto;
  height: auto;
  max-width: auto;
}
section.kv .kv_img_box .kvSwiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  border: 1px solid #2960d3;
}
@media screen and (max-width: 990px) {
  section.kv .kv_img_box .kvSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
section.kv .kv_img_box .kvSwiper .swiper-pagination-bullet-active {
  background: #2960d3;
  opacity: 1;
}
section.kv .kv_img_box .kvSwiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
section.kv .kv_img_box .kvSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 12px);
}

section.products {
  margin-top: 67px;
}
@media screen and (max-width: 990px) {
  section.products {
    margin-top: 0;
    padding-top: 0;
  }
}
section.products .tabs_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  section.products .tabs_lists {
    gap: 6px;
  }
}
section.products .tabs_lists li {
  -ms-flex-preferred-size: calc(20% - 25px);
      flex-basis: calc(20% - 25px);
  text-align: center;
  background: #fafafa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  margin: 0 12.5px;
}
section.products .tabs_lists li a {
  width: 100%;
  display: block;
  padding: 8px 0;
}
section.products .tabs_lists li img {
  display: none;
}
@media screen and (max-width: 990px) {
  section.products .tabs_lists li img {
    display: block;
  }
}
section.products .tabs_lists li a {
  padding: 10px;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #2d2d2d;
  display: block;
  border: 1px solid #ed964c;
  border-bottom: 10px solid #ed964c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.products .tabs_lists li a:hover {
  opacity: 0.6;
}
section.products .tabs_lists li.active a {
  background: #ed964c;
  color: #fff;
}
@media screen and (max-width: 990px) {
  section.products .tabs_lists li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 990px) and (max-width: 990px) {
  section.products .tabs_lists li a {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6px;
    padding-bottom: 0;
    border: 1px solid #ed964c;
    border-bottom: 7px solid #ed964c;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #181818;
  }
}

.side_bar_nav {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  z-index: 30;
}
@media screen and (max-width: 990px) {
  .side_bar_nav {
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    border: 5px solid #d8d8d8;
  }
}
.side_bar_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 990px) {
  .side_bar_nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.side_bar_nav ul li {
  background: #2960d3;
}
@media screen and (max-width: 990px) {
  .side_bar_nav ul li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.side_bar_nav ul li:first-child {
  margin-bottom: 15px;
}
@media screen and (max-width: 990px) {
  .side_bar_nav ul li:first-child {
    background: #2960d3;
    margin-bottom: 0;
    color: #fff;
  }
  .side_bar_nav ul li:first-child a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #2960d3;
    color: #fff;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .side_bar_nav ul li:first-child a img {
    margin-top: 5px;
    max-height: 17px;
  }
}
@media screen and (max-width: 990px) {
  .side_bar_nav ul li:nth-child(2) a img {
    margin-top: 5px;
    max-height: 18px;
  }
}
@media screen and (max-width: 990px) {
  .side_bar_nav ul li:nth-child(3).pc {
    display: none;
  }
  .side_bar_nav ul li:nth-child(3) a img {
    max-height: 27px;
  }
}
@media screen and (max-width: 990px) {
  .side_bar_nav ul li:nth-child(5) a img {
    max-height: 27px;
  }
}
.side_bar_nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  background: #2960d3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 6px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: left;
  color: #fff;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 990px) {
  .side_bar_nav ul li a {
    background: #fff;
    width: 100%;
    color: #181818;
    top: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  .side_bar_nav ul li a img {
    height: 30px;
    width: auto;
  }
}
.side_bar_nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #fff;
  opacity: 0.15;
  z-index: 10;
}
@media screen and (max-width: 990px) {
  .side_bar_nav ul li a::after {
    content: none;
  }
}
.side_bar_nav ul li a.qr-code-btn {
  cursor: pointer;
}
.side_bar_nav ul li a.qr-code-btn:hover .qr_code {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.side_bar_nav ul li a.qr-code-btn:hover .qr_code img {
  opacity: 1;
}
.side_bar_nav ul li a.qr-code-btn .qr_code {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  left: 0;
  width: 162px;
  height: 150px;
}
@media screen and (max-width: 990px) {
  .side_bar_nav ul li a.qr-code-btn .qr_code {
    top: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    left: 0;
  }
}
.side_bar_nav ul li a.qr-code-btn .qr_code img {
  width: 162px;
  height: 150px;
}

section.page_products .tabs_lists {
  list-style: none;
  padding-left: 0;
}
section.page_products .tabs_lists li {
  list-style: none;
}
@media screen and (max-width: 990px) {
  section.page_products .tabs_lists li:first-child {
    background: #2960d3;
  }
  section.page_products .tabs_lists li:first-child a {
    color: #181818;
    background: #fff;
  }
}
section.page_products .tabs_lists li::after {
  content: none;
}
section.page_products .tabs_lists li a {
  border: 1px solid #2960d3;
  border-bottom: 10px solid #2960d3;
}
section.page_products .tabs_lists li.active {
  background: #2960d3;
}
section.page_products .tabs_lists li.active a {
  background: #2960d3;
  color: #fff;
}

.btn_wrap_style2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn_wrap_style2 a.btn2 {
  position: relative;
  font-weight: normal;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-align: center;
  color: #2d2d2d;
  display: block;
  line-height: 5.7rem;
  text-decoration: none;
  width: 100%;
  max-width: 256px;
  background: #fafafa;
  border: 1px solid #2960d3;
  margin-top: 25px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
@media screen and (max-width: 990px) {
  .btn_wrap_style2 a.btn2 {
    font-size: 1.4rem;
    line-height: 4rem;
    margin-top: 20px;
  }
}
.btn_wrap_style2 a.btn2::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2960d3;
  -webkit-transform: scaleX(0.04);
          transform: scaleX(0.04);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.btn_wrap_style2 a.btn2:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.btn_wrap_style2 a.btn2:hover {
  color: #fafafa;
}
.btn_wrap_style2 a.btn2:hover span::after {
  content: "";
  position: absolute;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.162 9.07"><g id="Arrow---Right" transform="translate(-1.821 11.664) rotate(-90)" fill="%23ffffff"><path id="Combined-Shape" d="M4.535,0a.541.541,0,0,1,.5.517l0,.081V11.115l3.175-3.8a.447.447,0,0,1,.71,0,.686.686,0,0,1,.05.779l-.048.067L4.891,12.986a.533.533,0,0,1-.083.08l-.027.019-.025.016-.037.019-.029.013-.038.012-.026.007-.04.007-.031,0H4.515l-.03,0,.049,0a.426.426,0,0,1-.093-.01l-.022-.005-.044-.015-.022-.009L4.311,13.1l-.02-.013-.032-.023-.022-.019-.006-.005a.545.545,0,0,1-.05-.052h0L.146,8.16a.682.682,0,0,1,0-.846A.444.444,0,0,1,.8,7.257l.056.058,3.175,3.8V.6A.557.557,0,0,1,4.535,0Z" transform="translate(2.594 1.821)" /></g></svg>');
}
.btn_wrap_style2 a.btn2 span {
  z-index: 10;
  position: relative;
  margin-right: 33px;
}
.btn_wrap_style2 a.btn2 span::after {
  content: "";
  position: absolute;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.162 9.07"><g id="Arrow---Right" transform="translate(-1.821 11.664) rotate(-90)"><path id="Combined-Shape" d="M4.535,0a.541.541,0,0,1,.5.517l0,.081V11.115l3.175-3.8a.447.447,0,0,1,.71,0,.686.686,0,0,1,.05.779l-.048.067L4.891,12.986a.533.533,0,0,1-.083.08l-.027.019-.025.016-.037.019-.029.013-.038.012-.026.007-.04.007-.031,0H4.515l-.03,0,.049,0a.426.426,0,0,1-.093-.01l-.022-.005-.044-.015-.022-.009L4.311,13.1l-.02-.013-.032-.023-.022-.019-.006-.005a.545.545,0,0,1-.05-.052h0L.146,8.16a.682.682,0,0,1,0-.846A.444.444,0,0,1,.8,7.257l.056.058,3.175,3.8V.6A.557.557,0,0,1,4.535,0Z" transform="translate(2.594 1.821)" /></g></svg>');
  width: 13.16px;
  height: 9.07px;
  background-size: cover;
  top: 50%;
  right: -33px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (max-width: 990px) {
  header .header_content .logo {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  header .header_content .logo img {
    height: 29px;
  }
}

@media screen and (max-width: 990px) {
  main > section:first-child {
    padding-top: 48px;
  }
}

@media screen and (max-width: 990px) {
  section.products .products_cards {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 18px;
  }
  section.products .products_cards .products_card {
    width: calc(50% - 7.5px);
    padding: 15px 15px 70px 15px;
    margin-right: 0;
  }
  section.products .products_cards .products_card .porducts_text .products_desc p {
    text-align: left;
  }
}
@media screen and (max-width: 990px) {
  section.footer .footer_contents .footer_navi_wrap .footer_navi ul.flex li {
    width: calc(50% - 10px);
  }
}

section.footer .footer_contents .footer_navi_wrap .footer_navi:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

body.home header {
  background-color: #fff;
}
body.home section.kv {
  padding-top: 106px;
}
@media screen and (max-width: 990px) {
  body.home section.kv {
    padding-top: 48px;
  }
}

.accordion .accordion_body .ab_content .ab_content_content {
  overflow-x: auto;
}