@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/ :root {
  --view-size: 1920;
}
@media screen and (max-width: 768px) {
  :root {
    --view-size: 375;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}
/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  font-size: calc(16 / var(--view-size) * 100vw);
  color: #251E1C;
}
body.open {
  overflow: hidden;
}
body.no-scroll {
  overflow: hidden;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  color: #251E1C;
  cursor: pointer;
}
a:hover {
  opacity: .7;
}
/* パンくずリスト */
@media (max-width: 768px) {
  .bread_inner.inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.bread {
  width: 100%;
  padding-top: calc(130 / var(--view-size) * 100vw);
  margin-bottom: calc(100 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .bread {
    padding-top: calc(72 / var(--view-size) * 100vw);
    margin-bottom: calc(48 / var(--view-size) * 100vw);
  }
  .bread .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.bread li {
  padding: calc(5 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .bread li {
    padding: 0;
  }
}
.bread li a {
  color: #fff;
  font-size: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .bread li a {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.bread li a:hover {
  opacity: 0.7;
}
.bread li:after {
  content: '\003e';
  margin-left: calc(10 / var(--view-size) * 100vw);
  margin-right: calc(10 / var(--view-size) * 100vw);
  color: #fff;
}
.bread li:last-child:after {
  content: "";
}
/* flex */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align_start {
  align-items: flex-start;
}
.align_center {
  align-items: center;
}
.align_end {
  align-items: flex-end;
}
.flex_center {
  justify-content: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_end {
  justify-content: flex-end;
}
.stretch {
  align-items: stretch;
}
.reverse {
  flex-direction: row-reverse;
}
/* inner */
.inner {
  width: calc(1330 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner {
    width: calc(315 / var(--view-size) * 100vw);
  }
}
/* display */
@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
}
.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}
@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}
.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}
.common_ttl {
  font-size: calc(50 / var(--view-size) * 100vw);
  color: #fff;
  text-align: center;
  margin-bottom: calc(20 / var(--view-size) * 100vw);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .common_ttl {
    font-size: calc(24 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.common_ttl.common_ttl_blue {
  color: #004ea2;
}
.common_ttl.common_ttl_black {
  color: #000;
}
.text_red {
  color: #d42729;
}
.text_yellow {
  color: #f5a83e;
}
.common_text {
  font-size: calc(25 / var(--view-size) * 100vw);
  text-align: center;
}
@media (max-width: 768px) {
  .common_text {
    font-size: calc(16/ var(--view-size) * 100vw);
    text-align: left;
  }
}
.common_text.common_text_black {
  color: #040000;
}
.common_btn {
  width: calc(278 / var(--view-size) * 100vw);
  display: block;
  font-weight: bold;
  font-size: calc(20 / var(--view-size) * 100vw);
  margin: 0 auto;
  border: calc(1 / var(--view-size) * 100vw) solid #fff;
  color: #fff;
  text-align: center;
  padding: calc(15 / var(--view-size) * 100vw) 0;
}
@media (max-width: 768px) {
  .common_btn {
    font-size: calc(16 / var(--view-size) * 100vw);
    width: 100%;
  }
}
.common_btn:hover {
  background-color: #fff;
  color: #004ea2;
  opacity: 1;
}
.common_btn.common_btn_black {
  color: #251E1C;
  border: calc(1 / var(--view-size) * 100vw) solid #251E1C;
}
.common_btn.common_btn_black:hover {
  background-color: #251E1C;
  color: #fff;
  opacity: 1;
}
.common_btn.common_btn_blue {
  color: #004ea2;
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
}
.common_btn.common_btn_blue:hover {
  background-color: #004ea2;
  color: #fff;
  opacity: 1;
}
.common_top_btn {
  position: fixed;
  bottom: calc(50 / var(--view-size) * 100vw);
  right: calc(60 / var(--view-size) * 100vw);
  width: calc(40 / var(--view-size) * 100vw);
  z-index: 900;
}
@media (max-width: 768px) {
  .common_top_btn {
    right: 0;
    width: calc(30 / var(--view-size) * 100vw);
  }
}
.slick-dots {
  bottom: calc(80 / var(--view-size) * 100vw);
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  right: calc(80 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .slick-dots {
    bottom: calc(110 / var(--view-size) * 100vw);
    right: calc(20 / var(--view-size) * 100vw);
  }
}
.slick-dots li.slick-active button::before {
  color: #fff;
  opacity: 1;
}
.slick-dots li button:before {
  font-size: calc(88 / var(--view-size) * 100vw);
  opacity: 0.5;
  color: #fff;
}
@media (max-width: 768px) {
  .slick-dots li button:before {
    font-size: calc(40 / var(--view-size) * 100vw);
  }
}
.top_case_item {
  width: calc(360 / var(--view-size) * 100vw);
  margin-bottom: calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case_item {
    width: calc(163 / var(--view-size) * 100vw);
    margin-bottom: calc(28 / var(--view-size) * 100vw);
  }
}
.top_case_item img {
  margin-bottom: calc(14 / var(--view-size) * 100vw);
  height: calc(232 / var(--view-size) * 100vw);
  object-fit: cover;
}
@media (max-width: 768px) {
  .top_case_item img {
    height: calc(100 / var(--view-size) * 100vw);
  }
}
.top_case_item .case_item_tag {
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
.top_case_item .case_item_tag li {
  background-color: #cdcdcd;
  padding: calc(3 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw);
  text-align: center;
  margin-right: calc(4 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case_item .case_item_tag li {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.top_case_item .case_item_ttl {
  font-size: calc(32 / var(--view-size) * 100vw);
  color: #004ea2;
  margin-bottom: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case_item .case_item_ttl {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.top_case_item .case_item_info {
  font-size: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case_item .case_item_info {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.common_mv {
  background: url(../images/common_mv_pc.jpg) center/cover no-repeat;
  padding: calc(0 / var(--view-size) * 100vw) 0 calc(160 / var(--view-size) * 100vw);
  height: calc(475 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .common_mv {
    background: url(../images/common_mv_sp.jpg) center/cover no-repeat;
    padding: calc(0 / var(--view-size) * 100vw) 0 calc(70 / var(--view-size) * 100vw);
    height: calc(254 / var(--view-size) * 100vw);
  }
}
.common_mv .common_mv_ttl {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: calc(50 / var(--view-size) * 100vw);
  line-height: 1;
  text-shadow:
     0 3px 3px rgba(0, 0, 0, 0.5),   /* 下方向の影 */
     0 -3px 3px rgba(0, 0, 0, 0.5),  /* 上方向の影 */
     3px 0 3px rgba(0, 0, 0, 0.5),   /* 右方向の影 */
    -3px 0 3px rgba(0, 0, 0, 0.5);  /* 左方向の影 */
}
@media (max-width: 768px) {
  .common_mv .common_mv_ttl {
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}
.common_mv .common_mv_ttl .text_small {
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .common_mv .common_mv_ttl .text_small {
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}
.page_case_search {
  padding: calc(120 / var(--view-size) * 100vw) 0 calc(100 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case_search {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}
.page_case_search .inner {
  width: calc(1090 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(20 / var(--view-size) * 100vw);
  border-radius: calc(20 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .page_case_search .inner {
    width: calc(345 / var(--view-size) * 100vw);
    padding: calc(24 / var(--view-size) * 100vw) calc(14 / var(--view-size) * 100vw);
  }
}
.page_case_search .case_search_ttl {
  font-size: calc(28 / var(--view-size) * 100vw);
  font-weight: bold;
  position: relative;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page_case_search .case_search_ttl {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_case_search .case_search_ttl .close {
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  position: absolute;
  top: calc(0 / var(--view-size) * 100vw);
  right: calc(20 / var(--view-size) * 100vw);
  transition: .3s;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .page_case_search .case_search_ttl .close {
    width: calc(25 / var(--view-size) * 100vw);
    height: calc(25 / var(--view-size) * 100vw);
  }
}
.page_case_search .case_search_ttl .close span {
  width: calc(16 / var(--view-size) * 100vw);
  height: calc(1 / var(--view-size) * 100vw);
  background-color: #004ea2;
  position: absolute;
  top: 50%;
  transition: .3s;
}
@media (max-width: 768px) {
  .page_case_search .case_search_ttl .close span {
    width: calc(12 / var(--view-size) * 100vw);
  }
}
.page_case_search .case_search_ttl .close span:nth-child(1) {
  left: calc(5 / var(--view-size) * 100vw);
  transform: translateY(-50%) rotate(35deg);
}
@media (max-width: 768px) {
  .page_case_search .case_search_ttl .close span:nth-child(1) {
    left: calc(2 / var(--view-size) * 100vw);
    transform: translateY(-50%) rotate(40deg);
  }
}
.page_case_search .case_search_ttl .close span:nth-child(2) {
  right: calc(5 / var(--view-size) * 100vw);
  transform: translateY(-50%) rotate(-35deg);
}
@media (max-width: 768px) {
  .page_case_search .case_search_ttl .close span:nth-child(2) {
    right: calc(2 / var(--view-size) * 100vw);
    transform: translateY(-50%) rotate(-40deg);
  }
}
.page_case_search .case_search_ttl.active .close {
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
}
.page_case_search .case_search_ttl.active .close span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.page_case_search .case_search_ttl.active .close span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.page_case_search .case_search_cont {
  padding: calc(36 / var(--view-size) * 100vw);
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .page_case_search .case_search_cont {
    padding: 0;
    margin-top: calc(28 / var(--view-size) * 100vw);
  }
}
.page_case_search .case_search_item {
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  margin-bottom: calc(20 / var(--view-size) * 100vw);
  padding-bottom: calc(20 / var(--view-size) * 100vw);
}
.page_case_search .case_search_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .page_case_search .case_search_item .case_search_row {
    display: block;
  }
}
.page_case_search .case_search_item .case_search_row .case_search_name {
  font-size: calc(24 / var(--view-size) * 100vw);
  font-weight: bold;
  margin-right: calc(32 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case_search .case_search_item .case_search_row .case_search_name {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-right: 0;
    text-align: center;
    margin-bottom: calc(12 / var(--view-size) * 100vw);
  }
}
.page_case_search .case_search_item .case_search_row .case_search_tags .case_search_tag {
  background-color: #fff;
  color: #004ea2;
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  border-radius: calc(40 / var(--view-size) * 100vw);
  text-align: center;
  padding: calc(3 / var(--view-size) * 100vw) calc(16 / var(--view-size) * 100vw);
  margin-right: calc(20 / var(--view-size) * 100vw);
  cursor: pointer;
  transition: .3s;
  font-size: calc(18 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case_search .case_search_item .case_search_row .case_search_tags .case_search_tag {
    font-size: calc(12 / var(--view-size) * 100vw);
    padding: calc(2 / var(--view-size) * 100vw) calc(12 / var(--view-size) * 100vw);
    margin-right: calc(8 / var(--view-size) * 100vw);
    margin-bottom: calc(8 / var(--view-size) * 100vw);
  }
}
.page_case_search .case_search_item .case_search_row .case_search_tags .case_search_tag:hover {
  background-color: #004ea2;
  color: #fff;
}
.page_case_search .case_search_item .case_search_row .case_search_tags .case_search_tag.active {
  background-color: #004ea2;
  color: #fff;
}
header {
  background-color: #fff;
  padding: calc(15 / var(--view-size) * 100vw) calc(15 / var(--view-size) * 100vw) 0;
  position: fixed;
  top: calc(-300 / var(--view-size) * 100vw);
  width: 100%;
  transition: .3s;
  z-index: 1000;
  /*.header_btn_link {
    font-size: calc(15 / var(--view-size) * 100vw);
    color: $blue_01;
    margin-right: calc(20 / var(--view-size) * 100vw);
    font-weight: 600;
  }*/
  /*.header_btn_link_blank {
    margin-right: 0;
    padding-right: calc(20 / var(--view-size) * 100vw);
    position: relative;
    padding-left: calc(12 / var(--view-size) * 100vw);
    border-left: calc(1 / var(--view-size) * 100vw) solid $blue_01;
    &::after {
      content: "";
      background: url(../images/icon_blank.png) center / cover no-repeat;
      width: calc(15 / var(--view-size) * 100vw);
      height: calc(14 / var(--view-size) * 100vw);
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }*/
}
header.page_active {
  top: 0;
}
@media (max-width: 768px) {
  header {
    padding: calc(10 / var(--view-size) * 100vw) calc(13 / var(--view-size) * 100vw);
  }
}
header.active {
  top: 0;
}
header .header_logo {
  width: calc(267 / var(--view-size) * 100vw);
  margin-right: calc(30 / var(--view-size) * 100vw);
  z-index: 1000;
  padding-bottom: calc(15 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  header .header_logo {
    padding-bottom: 0;
    margin-right: 0;
    width: calc(138 / var(--view-size) * 100vw);
  }
}
header .header_logo img {
  vertical-align: baseline;
}
header .header_nav_pc {
  position: relative;
  padding-bottom: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  header .header_nav_pc {
    display: none;
  }
}
header .header_nav_pc li {
  margin-right: calc(24 / var(--view-size) * 100vw);
}
header .header_nav_pc li:last-child {
  margin-right: 0;
}
header .header_nav_pc li a, header .header_nav_pc li .popup_trigger_text {
  font-size: calc(20 / var(--view-size) * 100vw);
  font-weight: bold;
  cursor: pointer;
  padding-bottom: calc(15 / var(--view-size) * 100vw);
}
header .header_nav_pc li a.active {
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  color: #004ea2;
}
header .header_nav_pc li .popup_trigger_text.active {
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  color: #004ea2;
}
header .header_nav_pc .popup_content {
  background-color: #004ea2;
  padding: calc(16 / var(--view-size) * 100vw);
  width: calc(250 / var(--view-size) * 100vw);
  position: absolute;
  left: calc(94 / var(--view-size) * 100vw);
  top: calc(54 / var(--view-size) * 100vw);
  border-radius: calc(8 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  header .header_nav_pc .popup_content {
    display: none;
  }
}
header .header_nav_pc .popup_content::before {
  content: "";
  position: absolute;
  top: calc(-30 / var(--view-size) * 100vw);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: calc(20 / var(--view-size) * 100vw) solid transparent;
  border-left: calc(20 / var(--view-size) * 100vw) solid transparent;
  border-bottom: calc(30 / var(--view-size) * 100vw) solid #004ea2;
  border-top: 0;
}
header .header_nav_pc .popup_content .row {
  display: block;
}
header .header_nav_pc .popup_content a {
  color: #fff;
  font-weight: bold;
  display: block;
  font-size: calc(20 / var(--view-size) * 100vw);
}
header .header_btns {
  padding-bottom: calc(15 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  header .header_btns .header_btn_contacts {
    display: none;
  }
}
header .header_btn_telarea {
  border: calc(2 / var(--view-size) * 100vw) solid #251E1C;
  padding: calc(15 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw);
  border-radius: calc(6 / var(--view-size) * 100vw);
  margin-right: calc(10 / var(--view-size) * 100vw);
  transition: .3s;
}
header .header_btn_telarea:hover {
  background-color: #251E1C;
}
header .header_btn_telarea:hover .header_btn_tel {
  color: #fff;
}
header .header_btn_telarea:hover .header_btn_tel::before {
  background: url(../images/icon_tel_white.png) center/cover no-repeat;
}
header .header_btn_telarea .header_btn_tel {
  font-size: calc(18 / var(--view-size) * 100vw);
  position: relative;
  padding-left: calc(32 / var(--view-size) * 100vw);
  font-weight: bold;
  line-height: 1.2;
  margin-right: calc(20 / var(--view-size) * 100vw);
  display: block;
  transition: .3s;
  cursor: pointer;
}
header .header_btn_telarea .header_btn_tel::before {
  content: "";
  background: url(../images/icon_tel.png) center/cover no-repeat;
  width: calc(23 / var(--view-size) * 100vw);
  height: calc(23 / var(--view-size) * 100vw);
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
header .header_btn_telarea .header_btn_tel .header_btn_time {
  font-size: calc(14 / var(--view-size) * 100vw);
  padding-left: calc(10 / var(--view-size) * 100vw);
}
header .header_btn_contactarea .header_btn_contact {
  font-size: calc(15 / var(--view-size) * 100vw);
  color: #004ea2;
  font-weight: bold;
  text-align: center;
  border-radius: calc(6 / var(--view-size) * 100vw);
  display: block;
  width: calc(125 / var(--view-size) * 100vw);
  border: calc(2 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(14 / var(--view-size) * 100vw) 0;
  margin-right: calc(5 / var(--view-size) * 100vw);
}
header .header_btn_contactarea .header_btn_contact:hover {
  background-color: #004ea2;
  color: #fff;
  opacity: 1;
}
header .header_btn_contactarea .header_btn_contact.header_btn_contact_02 {
  color: #fff;
  background-color: #004ea2;
}
header .header_btn_contactarea .header_btn_contact.header_btn_contact_02:hover {
  background-color: #fff;
  color: #004ea2;
}
header .header_btn_contactarea .row a:first-child {
  font-size: calc(15 / var(--view-size) * 100vw);
  color: #004ea2;
  font-weight: bold;
  text-align: center;
  border-radius: calc(6 / var(--view-size) * 100vw);
  display: block;
  width: calc(125 / var(--view-size) * 100vw);
  border: calc(2 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(14 / var(--view-size) * 100vw) 0;
  margin-right: calc(5 / var(--view-size) * 100vw);
}
header .header_btn_contactarea .row a:first-child:hover {
  background-color: #004ea2;
  color: #fff;
  opacity: 1;
}
header .header_btn_contactarea .row a:nth-child(2) {
  font-size: calc(15 / var(--view-size) * 100vw);
  color: #fff;
  background-color: #004ea2;
  font-weight: bold;
  text-align: center;
  border-radius: calc(6 / var(--view-size) * 100vw);
  display: block;
  width: calc(125 / var(--view-size) * 100vw);
  border: calc(2 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(14 / var(--view-size) * 100vw) 0;
  margin-right: calc(5 / var(--view-size) * 100vw);
}
header .header_btn_contactarea .row a:nth-child(2):hover {
  background-color: #fff;
  color: #004ea2;
  opacity: 1;
}
header .header_btn_links {
  margin-bottom: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  header .header_btn_links {
    display: none;
  }
}
header .header_btn_links a {
  font-size: calc(15 / var(--view-size) * 100vw);
  color: #004ea2;
  margin-right: calc(20 / var(--view-size) * 100vw);
  font-weight: 600;
}
header .header_btn_links a:last-child {
  margin-right: 0;
  padding-right: calc(20 / var(--view-size) * 100vw);
  position: relative;
  padding-left: calc(12 / var(--view-size) * 100vw);
  border-left: calc(1 / var(--view-size) * 100vw) solid #004ea2;
}
header .header_btn_links a:last-child::after {
  content: "";
  background: url(../images/icon_blank.png) center/cover no-repeat;
  width: calc(15 / var(--view-size) * 100vw);
  height: calc(14 / var(--view-size) * 100vw);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu_btn {
  display: none;
}
@media (max-width: 768px) {
  .menu_btn {
    display: block;
    width: calc(22 / var(--view-size) * 100vw);
    height: calc(16 / var(--view-size) * 100vw);
    position: relative;
    margin-top: calc(10 / var(--view-size) * 100vw);
    z-index: 4000;
  }
  .menu_btn span {
    display: inline-block;
    height: calc(2 / var(--view-size) * 100vw);
    width: calc(22 / var(--view-size) * 100vw);
    background-color: #251E1C;
    position: absolute;
    top: calc(0 / var(--view-size) * 100vw);
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
  }
  .menu_btn span:nth-child(1) {
    top: calc(0 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(2) {
    top: calc(8 / var(--view-size) * 100vw);
  }
  .menu_btn span:nth-child(3) {
    top: calc(16 / var(--view-size) * 100vw);
  }
}
.header_menu_inner {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 500;
  overflow: scroll;
  transition: 500ms ease-out;
  padding: calc(60 / var(--view-size) * 100vw) calc(40 / var(--view-size) * 100vw);
}
.header_menu_inner .header_nav_sp {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
.header_menu_inner .header_nav_sp li {
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #ddd;
}
.header_menu_inner .header_nav_sp li a, .header_menu_inner .header_nav_sp li.acc_trigger {
  font-size: calc(15 / var(--view-size) * 100vw);
  font-weight: 600;
  cursor: pointer;
}
.header_menu_inner .header_nav_sp li.acc_trigger {
  position: relative;
}
.header_menu_inner .header_nav_sp li.acc_trigger::after {
  content: "";
  background: url(../images/header_menu_arrow.png) center/cover no-repeat;
  width: calc(15 / var(--view-size) * 100vw);
  height: calc(8 / var(--view-size) * 100vw);
  position: absolute;
  top: 28px;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  transition: .3s;
}
.header_menu_inner .header_nav_sp li.acc_trigger.active::after {
  transform: translateY(-50%);
}
.header_menu_inner .header_nav_sp li.acc_trigger a {
  display: inline-block;
  padding: calc(16 / var(--view-size) * 100vw) 0;
}
.header_menu_inner .header_nav_sp li a {
  display: block;
  padding: calc(16 / var(--view-size) * 100vw) 0;
}
.header_menu_inner .header_nav_sp .acc_content a {
  padding: calc(16 / var(--view-size) * 100vw) 0;
  padding-left: calc(18 / var(--view-size) * 100vw);
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #ddd;
  display: block;
  font-weight: 600;
}
.header_menu_inner .header_btn_contactarea {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
.header_menu_inner .header_btn_contactarea .header_btn_contact {
  font-size: calc(14 / var(--view-size) * 100vw);
  width: calc(142 / var(--view-size) * 100vw);
  padding: calc(15 / var(--view-size) * 100vw) 0;
  margin-right: 0;
}
.header_menu_inner .header_menu_telarea {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
.header_menu_inner .header_menu_telarea .header_menu_tel {
  font-size: calc(14 / var(--view-size) * 100vw);
  text-align: center;
  font-weight: bold;
}
.header_menu_inner .header_menu_telarea .header_menu_tel .text_large {
  font-size: calc(20 / var(--view-size) * 100vw);
}
.header_menu_inner .header_btn_link {
  font-size: calc(14 / var(--view-size) * 100vw);
  margin-right: calc(40 / var(--view-size) * 100vw);
}
.header_menu_inner .header_btn_link:nth-child(3) {
  margin-right: 0;
}
.header_menu_inner .header_btn_link.header_btn_link_blank {
  padding-left: 0;
  border-left: none;
  margin-top: calc(12 / var(--view-size) * 100vw);
}
.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}
.open .header_menu_inner {
  opacity: 1 !important;
  left: 0 !important;
}
/* footer */
footer {
  background-color: #004ea2;
  padding: calc(36 / var(--view-size) * 100vw) 0 calc(18 / var(--view-size) * 100vw);
}
footer .footer_inner {
  width: calc(1663 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer .footer_inner {
    width: calc(315 / var(--view-size) * 100vw);
  }
}
footer .footer_info .footer_logo {
  width: calc(260 / var(--view-size) * 100vw);
  margin-bottom: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  footer .footer_info .footer_logo {
    width: 100%;
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
footer .footer_info .footer_address {
  font-size: calc(19 / var(--view-size) * 100vw);
  color: #fff;
  font-weight: bold;
}
@media (max-width: 768px) {
  footer .footer_info .footer_address {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
footer .footer_links {
  width: calc(678 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  footer .footer_links {
    display: none;
  }
}
footer .footer_links .footer_link {
  width: calc(208 / var(--view-size) * 100vw);
}
footer .footer_links .footer_nav li a {
  font-size: calc(19 / var(--view-size) * 100vw);
  color: #fff;
  font-weight: bold;
}
footer .footer_copyright {
  font-size: calc(16 / var(--view-size) * 100vw);
  color: #fff;
}
@media (max-width: 768px) {
  footer .footer_copyright {
    font-size: calc(13 / var(--view-size) * 100vw);
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}
.top_mv {
  position: relative;
}
.top_mv .mv_bg_slide {
  margin-bottom: 0;
  background-color: #004ea2;
}
.top_mv .mv_bg_slide .slick-dots {
  bottom: calc(80 / var(--view-size) * 100vw);
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  right: calc(80 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_mv .mv_bg_slide .slick-dots {
    bottom: calc(110 / var(--view-size) * 100vw);
    right: calc(20 / var(--view-size) * 100vw);
  }
}
.top_mv .mv_bg_slide .slick-dots li.slick-active button::before {
  color: #fff;
  opacity: 1;
}
.top_mv .mv_bg_slide .slick-dots li button:before {
  font-size: calc(88 / var(--view-size) * 100vw);
  opacity: 0.5;
  color: #fff;
}
@media (max-width: 768px) {
  .top_mv .mv_bg_slide .slick-dots li button:before {
    font-size: calc(40 / var(--view-size) * 100vw);
  }
}
.top_mv .mv_textarea {
  position: absolute;
  top: calc(188 / var(--view-size) * 100vw);
  left: calc(270 / var(--view-size) * 100vw);
  width: calc(700 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_mv .mv_textarea {
    top: calc(70 / var(--view-size) * 100vw);
    width: calc(345 / var(--view-size) * 100vw);
    left: calc(15 / var(--view-size) * 100vw);
  }
}
.top_mv .mv_textarea .mv_ttl_wrap {
  margin-bottom: calc(30 / var(--view-size) * 100vw);
  overflow: hidden;
}
@media (max-width: 768px) {
  .top_mv .mv_textarea .mv_ttl_wrap {
    margin-bottom: calc(212 / var(--view-size) * 100vw);
  }
}
.top_mv .mv_textarea .mv_ttl {
  overflow: hidden;
  font-size: calc(42 / var(--view-size) * 100vw);
  font-weight: bold;
  padding: calc(12 / var(--view-size) * 100vw) calc(18 / var(--view-size) * 100vw);
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-bottom: calc(20 / var(--view-size) * 100vw);
  display: inline-block;
}
@media (max-width: 768px) {
  .top_mv .mv_textarea .mv_ttl {
    font-size: calc(21 / var(--view-size) * 100vw);
    padding: calc(3 / var(--view-size) * 100vw) calc(10 / var(--view-size) * 100vw);
    margin-bottom: calc(4 / var(--view-size) * 100vw);
    line-height: 150%;
  }
}
.top_mv .mv_textarea .mv_ttl::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top_mv .mv_textarea .mv_text {
  display: inline-block;
  background-color: rgba(102, 103, 102, 0.6);
  color: #fff;
  line-height: 1.2;
  font-size: calc(30 / var(--view-size) * 100vw);
  font-weight: bold;
  padding: calc(20 / var(--view-size) * 100vw) calc(18 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_mv .mv_textarea .mv_text {
    padding: 0;
    background-color: transparent;
    font-size: calc(16 / var(--view-size) * 100vw);
    text-align: right;
    display: block;
    line-height: 150%;
  }
}
.top_mv .mv_cont {
  background-color: #004ea2;
  padding: calc(60 / var(--view-size) * 100vw) 0 calc(260 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .top_mv .mv_cont {
    padding: 0;
  }
  .top_mv .mv_cont .mv_row {
    display: none;
  }
}
.top_mv .mv_cont .mv_logo {
  width: calc(647 / var(--view-size) * 100vw);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(-108 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_mv .mv_cont .mv_logo {
    width: calc(345 / var(--view-size) * 100vw);
    top: calc(-90 / var(--view-size) * 100vw);
  }
}
.top_mv .mv_cont .mv_nav li {
  margin-right: calc(92 / var(--view-size) * 100vw);
}
.top_mv .mv_cont .mv_nav li a {
  font-size: calc(30 / var(--view-size) * 100vw);
  color: #fff;
  font-weight: bold;
}
.top_mv .mv_cont .mv_contact {
  width: calc(220 / var(--view-size) * 100vw);
  background-color: #fff;
  color: #004ea2;
  padding: calc(6 / var(--view-size) * 100vw) 0;
  text-align: center;
  border-radius: calc(6 / var(--view-size) * 100vw);
  font-size: calc(30 / var(--view-size) * 100vw);
  font-weight: bold;
}
.top_about {
  padding-bottom: calc(70 / var(--view-size) * 100vw);
  background-color: #004ea2;
}
@media (max-width: 768px) {
  .top_about {
    padding: calc(90 / var(--view-size) * 100vw) 0;
  }
}
.top_about .top_about_text {
  margin-bottom: calc(20 / var(--view-size) * 100vw);
  color: #fff;
}
.top_works {
  padding-bottom: calc(270 / var(--view-size) * 100vw);
  background-color: #004ea2;
}
@media (max-width: 768px) {
  .top_works {
    padding-bottom: calc(90 / var(--view-size) * 100vw);
  }
}
.top_works .splide__track {
  padding-top: calc(80 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_works .splide__track {
    padding-top: calc(16 / var(--view-size) * 100vw);
  }
}
.top_works .top_works_item {
  position: relative;
}
.top_works .top_works_item:nth-child(even) {
  padding-top: calc(96 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_works .top_works_item:nth-child(even) {
    padding-top: calc(20 / var(--view-size) * 100vw);
  }
}
.top_works .top_works_item:nth-child(even) .top_works_cate {
  top: calc(51 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_works .top_works_item:nth-child(even) .top_works_cate {
    top: calc(10 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .top_works .top_works_item:first-child {
    margin-left: calc(40 / var(--view-size) * 100vw);
  }
}
.top_works .top_works_item img {
  border-radius: calc(10 / var(--view-size) * 100vw);
  /*border: calc(2 / var(--view-size) * 100vw) solid #fff;*/
  margin-bottom: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_works .top_works_item img {
    margin-bottom: calc(6 / var(--view-size) * 100vw);
  }
}
.top_works .top_works_item .top_works_text {
  color: #fff;
  font-size: calc(28 / var(--view-size) * 100vw);
  font-weight: bold;
}
@media (max-width: 768px) {
  .top_works .top_works_item .top_works_text {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.top_works .top_works_item .top_works_cate {
  font-size: calc(30 / var(--view-size) * 100vw);
  color: #fff;
  position: absolute;
  top: calc(-45 / var(--view-size) * 100vw);
  left: calc(-30 / var(--view-size) * 100vw);
  z-index: 1;
  padding-left: calc(20 / var(--view-size) * 100vw);
  padding-top: calc(26 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_works .top_works_item .top_works_cate {
    font-size: calc(12 / var(--view-size) * 100vw);
    padding-left: calc(3 / var(--view-size) * 100vw);
    padding-top: calc(8 / var(--view-size) * 100vw);
    top: calc(-10 / var(--view-size) * 100vw);
    left: calc(-20 / var(--view-size) * 100vw);
  }
}
.top_works .top_works_item .top_works_cate::before {
  content: "";
  position: absolute;
  top: calc(0 / var(--view-size) * 100vw);
  left: calc(0 / var(--view-size) * 100vw);
  width: calc(101 / var(--view-size) * 100vw);
  height: calc(136 / var(--view-size) * 100vw);
  z-index: -1;
}
@media (max-width: 768px) {
  .top_works .top_works_item .top_works_cate::before {
    width: calc(33 / var(--view-size) * 100vw);
    height: calc(46 / var(--view-size) * 100vw);
  }
}
.top_works .top_works_item .top_works_cate.top_works_cate_green::before {
  background: url(../images/top/works_cate_green.png) center/cover no-repeat;
}
.top_works .top_works_item .top_works_cate.top_works_cate_orange::before {
  background: url(../images/top/works_cate_orange.png) center/cover no-repeat;
}
.top_works .common_btn {
  margin-top: calc(80 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_works .common_btn {
    display: none;
  }
}
.top_works .splide__pagination__page {
  background-color: #004ea2;
  width: calc(10 / var(--view-size) * 100vw);
  height: calc(10 / var(--view-size) * 100vw);
  border-radius: 50%;
  border: calc(1 / var(--view-size) * 100vw) solid #fff;
  margin-right: calc(8 / var(--view-size) * 100vw);
  margin-top: calc(36 / var(--view-size) * 100vw);
}
.top_works .splide__pagination__page.is-active {
  background-color: #fff;
}
.top_product {
  background-color: #004ea2;
  padding-bottom: calc(190 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_product {
    padding-bottom: calc(100 / var(--view-size) * 100vw);
  }
  .top_product .inner {
    width: calc(333 / var(--view-size) * 100vw);
  }
}
.top_product .common_text {
  margin-bottom: calc(40 / var(--view-size) * 100vw);
  color: #fff;
}
.top_product .top_product_row .top_product_item {
  width: calc(400 / var(--view-size) * 100vw);
  position: relative;
  margin-bottom: calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_product .top_product_row .top_product_item {
    width: calc(157 / var(--view-size) * 100vw);
    margin-bottom: calc(18 / var(--view-size) * 100vw);
  }
}
.top_product .top_product_row .top_product_item.top_product_item_last:hover img {
  transform: scale(1);
}
.top_product .top_product_row .top_product_item.top_product_item_last .top_product_img {
  margin-bottom: calc(57 / var(--view-size) * 100vw);
  overflow: hidden;
  border-radius: calc(10 / var(--view-size) * 100vw);
  display: block;
}
@media (max-width: 768px) {
  .top_product .top_product_row .top_product_item.top_product_item_last .top_product_img {
    margin-bottom: 0;
  }
}
.top_product .top_product_row .top_product_item.top_product_item_last .top_product_img:hover {
  opacity: 1;
}
.top_product .top_product_row .top_product_item.top_product_item_last .top_product_img:hover img {
  transform: scale(1.1);
}
.top_product .top_product_row .top_product_item img {
  transition: .3s;
}
@media (max-width: 768px) {
  .top_product .top_product_row .top_product_item img {
    height: calc(114 / var(--view-size) * 100vw);
    width: auto;
    object-fit: cover;
  }
}
.top_product .top_product_row .top_product_item:hover img {
  transform: scale(1.1);
}
.top_product .top_product_row .top_product_item .top_product_img {
  border-radius: calc(10 / var(--view-size) * 100vw);
  position: relative;
  overflow: hidden;
  border-radius: calc(10 / var(--view-size) * 100vw);
}
.top_product .top_product_row .top_product_item .top_product_img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.3;
  z-index: 100;
}
.top_product .top_product_row .top_product_item .top_product_img img {
  position: relative;
}
.top_product .top_product_row .top_product_item .top_product_name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: calc(30 / var(--view-size) * 100vw);
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
  z-index: 200;
}
@media (max-width: 768px) {
  .top_product .top_product_row .top_product_item .top_product_name {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.top_product .common_btn.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .top_product .common_btn.sp_db {
    display: block;
    margin-top: calc(30 / var(--view-size) * 100vw);
    width: calc(315 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .top_product .common_btn.sp_dn {
    display: none;
  }
}
.top_product .top_product_quality {
  margin-top: calc(80 / var(--view-size) * 100vw);
  color: #fff;
}
.top_product .top_product_quality .product_quality_ttl {
  font-size: calc(50 / var(--view-size) * 100vw);
  text-align: center;
  margin-bottom: calc(10 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_product .top_product_quality .product_quality_ttl {
    font-size: calc(28 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.top_product .top_product_quality .product_quality_text {
  font-size: calc(25 / var(--view-size) * 100vw);
  text-align: center;
  margin-bottom: calc(10 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_product .top_product_quality .product_quality_text {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-bottom: calc(45 / var(--view-size) * 100vw);
  }
}
.top_product .top_product_quality .product_quality_box {
  border: calc(1 / var(--view-size) * 100vw) solid #fff;
  padding: calc(24 / var(--view-size) * 100vw);
  padding-left: calc(100 / var(--view-size) * 100vw);
  padding-bottom: calc(4 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_product .top_product_quality .product_quality_box {
    padding: calc(15 / var(--view-size) * 100vw) calc(12 / var(--view-size) * 100vw);
  }
}
.top_product .top_product_quality .product_quality_box li {
  width: 25%;
  font-size: calc(20 / var(--view-size) * 100vw);
  margin-bottom: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_product .top_product_quality .product_quality_box li {
    font-size: calc(14 / var(--view-size) * 100vw);
    width: 50%;
    margin-bottom: calc(12 / var(--view-size) * 100vw);
  }
}
.top_movie {
  padding-top: calc(240 / var(--view-size) * 100vw);
  border-radius: calc(10 / var(--view-size) * 100vw) calc(10 / var(--view-size) * 100vw) 0 0;
  margin-bottom: calc(150 / var(--view-size) * 100vw);
  transform: translateY(calc(-10 / var(--view-size) * 100vw));
  z-index: 100;
  background-color: #fff;
}
@media (max-width: 768px) {
  .top_movie {
    padding-top: calc(80 / var(--view-size) * 100vw);
    margin-bottom: calc(90 / var(--view-size) * 100vw);
    border-radius: calc(20 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw) 0 0;
    transform: translateY(calc(-20 / var(--view-size) * 100vw));
  }
}
.top_equipment {
  margin-bottom: calc(247 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_equipment {
    margin-bottom: calc(90 / var(--view-size) * 100vw);
  }
}
.top_equipment .common_text {
  margin-bottom: calc(60 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_equipment .common_text {
    margin-bottom: calc(90 / var(--view-size) * 100vw);
  }
}
.top_equipment .top_equipment_request .equipment_request_ttl {
  font-size: calc(40 / var(--view-size) * 100vw);
  margin-bottom: calc(10 / var(--view-size) * 100vw);
  color: #004ea2;
  text-align: center;
}
@media (max-width: 768px) {
  .top_equipment .top_equipment_request .equipment_request_ttl {
    font-size: calc(28 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box {
  display: block;
  border: calc(2 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(10 / var(--view-size) * 100vw) calc(64 / var(--view-size) * 100vw);
  margin-bottom: calc(10 / var(--view-size) * 100vw);
  transition: .3s;
}
@media (max-width: 768px) {
  .top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box {
    padding: calc(12 / var(--view-size) * 100vw);
  }
}
.top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_img {
  width: calc(270 / var(--view-size) * 100vw);
  display: block;
}
@media (max-width: 768px) {
  .top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_img {
    width: calc(234 / var(--view-size) * 100vw);
    margin-bottom: calc(20 / var(--view-size) * 100vw);
    margin: 0 auto calc(20 / var(--view-size) * 100vw);
  }
}
.top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_img:hover img {
  transform: scale(1.1);
}
.top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_img .equipment_request_img_wrap {
  overflow: hidden;
  border-radius: calc(10 / var(--view-size) * 100vw);
  box-shadow: calc(10 / var(--view-size) * 100vw) calc(10 / var(--view-size) * 100vw) 0px 0px #004ea2;
}
.top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_img img {
  height: calc(180 / var(--view-size) * 100vw);
  transition: .3s;
}
@media (max-width: 768px) {
  .top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_img img {
    height: calc(147 / var(--view-size) * 100vw);
  }
}
.top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_textarea {
  width: calc(736 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_textarea {
    width: 100%;
  }
}
.top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_textarea .equipment_request_name {
  font-size: calc(50 / var(--view-size) * 100vw);
  margin-bottom: calc(20 / var(--view-size) * 100vw);
  font-weight: normal;
}
@media (max-width: 768px) {
  .top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_textarea .equipment_request_name {
    font-size: calc(20 / var(--view-size) * 100vw);
    margin-bottom: calc(4 / var(--view-size) * 100vw);
  }
}
.top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_textarea .equipment_request_text {
  font-size: calc(25 / var(--view-size) * 100vw);
  margin-bottom: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_textarea .equipment_request_text {
    font-size: calc(14 / var(--view-size) * 100vw);
    margin-bottom: calc(4 / var(--view-size) * 100vw);
  }
}
.top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_textarea .equipment_request_size {
  font-size: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_equipment .top_equipment_request .equipment_request_cont .equipment_request_box .equipment_request_textarea .equipment_request_size {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.top_equipment .top_equipment_request .equipment_request_cont .common_btn {
  margin-top: calc(20 / var(--view-size) * 100vw);
}
.top_equipment .common_btn {
  margin-top: calc(24 / var(--view-size) * 100vw);
}
.top_case {
  padding-bottom: calc(220 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case {
    padding-bottom: calc(70 / var(--view-size) * 100vw);
  }
}
.top_case .inner {
  width: calc(1570 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.top_case .top_case_text {
  font-size: calc(40 / var(--view-size) * 100vw);
  margin-bottom: calc(20 / var(--view-size) * 100vw);
  text-align: center;
}
@media (max-width: 768px) {
  .top_case .top_case_text {
    font-size: calc(20 / var(--view-size) * 100vw);
    margin-bottom: calc(28 / var(--view-size) * 100vw);
  }
}
.top_case .top_case_item {
  width: calc(360 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case .top_case_item {
    width: calc(163 / var(--view-size) * 100vw);
    margin-bottom: calc(28 / var(--view-size) * 100vw);
  }
}
.top_case img {
  margin-bottom: calc(14 / var(--view-size) * 100vw);
  border-radius: calc(10 / var(--view-size) * 100vw);
}
.top_case .case_item_tag {
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
.top_case .case_item_tag li {
  background-color: #cdcdcd;
  padding: calc(3 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw);
  text-align: center;
  margin-right: calc(4 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case .case_item_tag li {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.top_case .case_item_ttl {
  font-size: calc(32 / var(--view-size) * 100vw);
  color: #004ea2;
  margin-bottom: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case .case_item_ttl {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.top_case .case_item_info {
  font-size: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case .case_item_info {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.top_case .common_btn {
  margin-top: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_case .common_btn {
    margin-top: calc(12 / var(--view-size) * 100vw);
  }
}
.top_company {
  padding: calc(120 / var(--view-size) * 100vw) 0;
  background-color: #004ea2;
  border-radius: calc(20 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw) 0 0;
}
@media (max-width: 768px) {
  .top_company {
    padding: calc(60 / var(--view-size) * 100vw) 0;
    border-radius: calc(30 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw) 0 0;
  }
}
.top_company .top_company_row {
  width: calc(1287 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top_company .top_company_row {
    width: 100%;
  }
}
.top_company .top_company_row .top_company_item {
  width: 50%;
  padding: 0 calc(130 / var(--view-size) * 100vw);
  color: #fff;
  border-left: calc(1 / var(--view-size) * 100vw) solid #fff;
  border-right: calc(1 / var(--view-size) * 100vw) solid #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .top_company .top_company_row .top_company_item {
    width: 100%;
    border-left: none;
    border-right: none;
    border-top: calc(1 / var(--view-size) * 100vw) solid #fff;
    border-bottom: calc(1 / var(--view-size) * 100vw) solid #fff;
    padding: calc(24 / var(--view-size) * 100vw) 0 calc(32 / var(--view-size) * 100vw);
  }
}
.top_company .top_company_row .top_company_item:first-child {
  border-right: none;
}
@media (max-width: 768px) {
  .top_company .top_company_row .top_company_item:first-child {
    border-bottom: none;
  }
}
.top_company .top_company_row .top_company_item:first-child .common_btn {
  margin-top: calc(30 / var(--view-size) * 100vw);
}
.top_company .top_company_row .top_company_item .top_company_ttl {
  font-size: calc(35 / var(--view-size) * 100vw);
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_company .top_company_row .top_company_item .top_company_ttl {
    font-size: calc(20 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.top_company .top_company_row .top_company_item .top_company_text {
  font-size: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_company .top_company_row .top_company_item .top_company_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.top_company .top_company_row .top_company_item .common_btn {
  margin-top: calc(67 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_company .top_company_row .top_company_item .common_btn {
    margin-top: calc(20 / var(--view-size) * 100vw);
  }
}
.top_news {
  padding: calc(140 / var(--view-size) * 100vw) 0;
  background-color: #fff;
  transform: translateY(calc(-20 / var(--view-size) * 100vw));
  border-radius: calc(20 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw) 0 0;
}
@media (max-width: 768px) {
  .top_news {
    padding: calc(70 / var(--view-size) * 100vw) 0;
  }
}
.top_news .news_cont .news_item {
  border-top: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(32 / var(--view-size) * 100vw) 0;
  padding-left: calc(16 / var(--view-size) * 100vw);
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  .top_news .news_cont .news_item {
    padding: calc(24 / var(--view-size) * 100vw) 0;
    padding-left: 0;
  }
}
.top_news .news_cont .news_item:last-child {
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #004ea2;
}
.top_news .news_cont .news_item::after {
  content: "＞";
  position: absolute;
  right: calc(64 / var(--view-size) * 100vw);
  top: 50%;
  font-size: calc(30 / var(--view-size) * 100vw);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_news .news_cont .news_item::after {
    content: none;
  }
}
.top_news .news_cont .news_item .news_item_info {
  margin-right: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_news .news_cont .news_item .news_item_info {
    margin-bottom: calc(4 / var(--view-size) * 100vw);
  }
}
.top_news .news_cont .news_item .new {
  font-size: calc(30 / var(--view-size) * 100vw);
  padding: calc(1 / var(--view-size) * 100vw) calc(3 / var(--view-size) * 100vw);
  background-color: #9a9a9b;
  margin-right: calc(14 / var(--view-size) * 100vw);
  display: inline-block;
}
@media (max-width: 768px) {
  .top_news .news_cont .news_item .new {
    font-size: calc(12 / var(--view-size) * 100vw);
    margin-right: calc(16 / var(--view-size) * 100vw);
  }
}
.top_news .news_cont .news_item .date {
  font-size: calc(30 / var(--view-size) * 100vw);
  margin-right: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_news .news_cont .news_item .date {
    font-size: calc(12 / var(--view-size) * 100vw);
    margin-right: calc(16 / var(--view-size) * 100vw);
  }
}
.top_news .news_cont .news_item .cate {
  padding: calc(6 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  font-size: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_news .news_cont .news_item .cate {
    font-size: calc(12 / var(--view-size) * 100vw);
    padding: calc(2 / var(--view-size) * 100vw) calc(12 / var(--view-size) * 100vw);
  }
}
.top_news .news_cont .news_item .news_item_ttl {
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_news .news_cont .news_item .news_item_ttl {
    width: 100%;
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.top_news .common_btn {
  margin-top: calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_news .common_btn {
    margin-top: calc(30 / var(--view-size) * 100vw);
  }
}
.top_blog {
  padding: calc(48 / var(--view-size) * 100vw) 0 calc(30 / var(--view-size) * 100vw);
  background-color: #004ea2;
}
@media (max-width: 768px) {
  .top_blog {
    overflow: hidden;
  }
}
.top_blog .inner {
  width: calc(1467 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_blog .inner {
    width: 100%;
  }
}
.top_blog .blog_cont .slick-list {
  padding: 0 20% 0 0 !important;
}
.top_blog .blog_cont .slick-dots {
  left: calc(20 / var(--view-size) * 100vw);
  right: auto;
  bottom: calc(-60 / var(--view-size) * 100vw);
  justify-content: start;
}
.top_blog .blog_cont .blog_item {
  width: calc(337 / var(--view-size) * 100vw);
  font-size: calc(24 / var(--view-size) * 100vw);
  color: #fff;
}
@media (max-width: 768px) {
  .top_blog .blog_cont .blog_item {
    margin: 0 0.6%;
    width: auto;
  }
}
.top_blog .blog_cont .blog_item img {
  height: auto;
  object-fit: cover;
  border: calc(1 / var(--view-size) * 100vw) solid #fff;
  border-radius: calc(10 / var(--view-size) * 100vw);
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .top_blog .blog_cont .blog_item img {
    width: 100%;
    height: auto;
  }
}
.top_blog .blog_cont .blog_item .date {
  font-size: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_blog .blog_cont .blog_item .date {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.top_blog .blog_cont .blog_item .blog_item_ttl {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
  font-weight: normal;
}
@media (max-width: 768px) {
  .top_blog .blog_cont .blog_item .blog_item_ttl {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-bottom: 0;
  }
}
.top_blog .blog_cont .blog_item .blog_item_tags .blog_item_tag {
  margin-right: calc(10 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_blog .blog_cont .blog_item .blog_item_tags li {
    margin-right: calc(2 / var(--view-size) * 100vw);
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.top_blog .common_btn {
  margin-top: calc(50 / var(--view-size) * 100vw);
  margin-right: calc(190 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_blog .common_btn {
    width: calc(156 / var(--view-size) * 100vw);
    margin-right: calc(30 / var(--view-size) * 100vw);
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}
.top_btn_wrap {
  background-color: #fff;
  padding: calc(8 / var(--view-size) * 100vw) 0;
  padding-right: calc(50 / var(--view-size) * 100vw);
}
.top_btn_wrap .top_btn {
  width: calc(47 / var(--view-size) * 100vw);
  margin-left: auto;
  display: block;
}
@media (max-width: 768px) {
  .top_btn_wrap .top_btn {
    width: calc(54 / var(--view-size) * 100vw);
  }
}
.top_contact {
  background-color: #2f2f2f;
  padding: calc(54 / var(--view-size) * 100vw) 0;
}
@media (max-width: 768px) {
  .top_contact {
    padding: calc(105 / var(--view-size) * 100vw) 0 calc(84 / var(--view-size) * 100vw);
  }
}
.top_contact .inner {
  position: relative;
}
@media (max-width: 768px) {
  .top_contact .inner {
    width: calc(347 / var(--view-size) * 100vw);
  }
}
.top_contact .inner::before {
  content: "";
  background: url(../images/contact_bg.png) center/cover no-repeat;
  width: calc(350 / var(--view-size) * 100vw);
  height: calc(240 / var(--view-size) * 100vw);
  position: absolute;
  left: calc(-20 / var(--view-size) * 100vw);
  top: calc(-20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact .inner::before {
    width: calc(253 / var(--view-size) * 100vw);
    height: calc(174 / var(--view-size) * 100vw);
    top: calc(-26 / var(--view-size) * 100vw);
    left: 0;
  }
}
.top_contact .top_contact_ttl {
  font-size: calc(30 / var(--view-size) * 100vw);
  margin-bottom: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact .top_contact_ttl {
    font-size: calc(20 / var(--view-size) * 100vw);
    margin-bottom: calc(8 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_ttl .text_large {
  font-size: calc(40 / var(--view-size) * 100vw);
  color: #fff;
}
@media (max-width: 768px) {
  .top_contact .top_contact_ttl .text_large {
    font-size: calc(28 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_text {
  font-size: calc(20 / var(--view-size) * 100vw);
  color: #fff;
}
@media (max-width: 768px) {
  .top_contact .top_contact_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_cont {
  width: calc(820 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .top_contact .top_contact_cont {
    width: 100%;
    margin-bottom: calc(78 / var(--view-size) * 100vw);
  }
  .top_contact .top_contact_cont .contact_cont_telarea {
    width: 100%;
  }
}
.top_contact .top_contact_cont .contact_cont_row {
  margin-top: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact .top_contact_cont .contact_cont_row {
    margin-top: calc(28 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .top_contact .top_contact_cont .contact_cont_row .contact_cont_telarea {
    width: calc(345 / var(--view-size) * 100vw);
    margin: 0 auto;
  }
}
.top_contact .top_contact_cont .contact_cont_row .contact_cont_telarea .contact_cont_teltext {
  color: #fff;
  font-size: calc(6 / var(--view-size) * 100vw);
  position: relative;
  padding-left: calc(64 / var(--view-size) * 100vw);
  font-weight: bold;
}
@media (max-width: 768px) {
  .top_contact .top_contact_cont .contact_cont_row .contact_cont_telarea .contact_cont_teltext {
    font-size: calc(16 / var(--view-size) * 100vw);
    padding-left: calc(40 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_cont .contact_cont_row .contact_cont_telarea .contact_cont_teltext::before {
  content: "";
  background: url(../images/icon_tel_white.png) center/cover no-repeat;
  position: absolute;
  top: calc(7 / var(--view-size) * 100vw);
  left: 0;
  width: calc(45 / var(--view-size) * 100vw);
  height: calc(43 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact .top_contact_cont .contact_cont_row .contact_cont_telarea .contact_cont_teltext::before {
    width: calc(33 / var(--view-size) * 100vw);
    height: calc(33 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_cont .contact_cont_row .contact_cont_telarea .contact_cont_teltext .text_large {
  font-size: calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact .top_contact_cont .contact_cont_row .contact_cont_telarea .contact_cont_teltext .text_large {
    font-size: calc(28 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_cont .contact_cont_row .contact_cont_telarea .contact_cont_teltext .text_small {
  font-size: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact .top_contact_cont .contact_cont_row .contact_cont_telarea .contact_cont_teltext .text_small {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_cont .contact_cont_row .contact_cont_telbtn {
  width: calc(278 / var(--view-size) * 100vw);
  margin-left: 0;
  margin-top: 0;
  cursor: pointer;
  transition: .3s;
}
@media (max-width: 768px) {
  .top_contact .top_contact_cont .contact_cont_row .contact_cont_telbtn {
    width: 100%;
    margin-top: calc(37 / var(--view-size) * 100vw);
    margin-left: 0;
  }
}
.top_contact .top_contact_cont .contact_cont_row .contact_cont_telbtn:hover {
  background-color: #fff;
  color: #4c4b4c;
}
.top_contact .top_contact_cont .contact_cont_row .top_contact_btn {
  background-color: #f5a83e;
  color: #4c4b4c;
  margin: 0 auto;
  position: relative;
  padding-right: calc(28 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #f5a83e;
}
@media (max-width: 768px) {
  .top_contact .top_contact_cont .contact_cont_row .top_contact_btn {
    margin-top: calc(28 / var(--view-size) * 100vw);
    width: calc(312 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_cont .contact_cont_row .top_contact_btn::after {
  content: "";
  background: url(../images/icon_blank_black.svg) center/cover no-repeat;
  width: calc(20 / var(--view-size) * 100vw);
  height: calc(20 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(28 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
.top_contact .top_contact_cont .contact_cont_row .top_contact_btn:hover {
  background-color: #4c4b4c;
  color: #f5a83e;
}
.top_contact .top_contact_cont .contact_cont_row .top_contact_btn:hover::after {
  background: url(../images/icon_blank_yellow.svg) center/cover no-repeat;
}
.top_contact .top_contact_useful {
  width: calc(323 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact .top_contact_useful {
    width: 100%;
  }
}
.top_contact .top_contact_useful .top_contact_btn {
  margin-left: 0;
  margin-top: calc(20 / var(--view-size) * 100vw);
  background-color: #f5a83e;
  border: calc(1 / var(--view-size) * 100vw) solid #f5a83e;
  color: #4c4b4c;
}
@media (max-width: 768px) {
  .top_contact .top_contact_useful .top_contact_btn {
    margin: 0 auto;
    margin-top: calc(30 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_useful .top_contact_btn:hover {
  background-color: #4c4b4c;
  color: #f5a83e;
}
.top_contact .top_contact_useful .contact_useful_btn {
  font-size: calc(16 / var(--view-size) * 100vw);
  width: calc(200 / var(--view-size) * 100vw);
  margin-top: calc(20 / var(--view-size) * 100vw);
  margin-left: 0;
}
@media (max-width: 768px) {
  .top_contact .top_contact_useful .contact_useful_btn {
    margin: 0 auto;
    margin-top: calc(30 / var(--view-size) * 100vw);
  }
}
.top_contact .top_contact_useful .contact_useful_btn:hover {
  background-color: #fff;
  color: #4c4b4c;
}
@media (max-width: 768px) {
  .top_contact .top_contact_useful .common_btn {
    width: calc(315 / var(--view-size) * 100vw);
  }
}
.top_contact_popup {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.top_contact_popup .top_contact_popup_bg {
  width: 100%;
  height: 100%;
  z-index: 10001;
}
.top_contact_popup .contact_popup_box {
  width: calc(900 / var(--view-size) * 100vw);
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  border-radius: calc(20 / var(--view-size) * 100vw);
  padding: calc(60 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw);
  z-index: 10002;
}
@media (max-width: 768px) {
  .top_contact_popup .contact_popup_box {
    border-radius: calc(10 / var(--view-size) * 100vw);
    width: 90%;
    overflow: scroll;
    height: 90%;
    padding: calc(30 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw);
  }
}
.top_contact_popup .contact_popup_box .contact_popup_cont {
  width: calc(470 / var(--view-size) * 100vw);
  margin: 0 auto calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact_popup .contact_popup_box .contact_popup_cont {
    width: 100%;
    margin-bottom: calc(30 / var(--view-size) * 100vw);
    overflow: scroll;
  }
}
.top_contact_popup .contact_popup_box .contact_popup_text {
  text-align: center;
  font-size: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact_popup .contact_popup_box .contact_popup_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.top_contact_popup .contact_popup_ttl {
  font-size: calc(40 / var(--view-size) * 100vw);
  text-align: center;
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact_popup .contact_popup_ttl {
    font-size: calc(20 / var(--view-size) * 100vw);
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
}
.top_contact_popup .contact_popup_item {
  font-size: calc(25 / var(--view-size) * 100vw);
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .top_contact_popup .contact_popup_item {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
}
.top_contact_popup .contact_popup_item:last-child {
  margin-bottom: 0;
}
.top_contact_popup .contact_popup_item .popup_item_ttl {
  margin-bottom: calc(10 / var(--view-size) * 100vw);
}
.top_contact_popup .close {
  background-color: #004ea2;
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  border-radius: 50%;
  position: absolute;
  top: calc(30 / var(--view-size) * 100vw);
  right: calc(20 / var(--view-size) * 100vw);
  cursor: pointer;
}
@media (max-width: 768px) {
  .top_contact_popup .close {
    width: calc(30 / var(--view-size) * 100vw);
    height: calc(30 / var(--view-size) * 100vw);
    top: calc(20 / var(--view-size) * 100vw);
    right: calc(10 / var(--view-size) * 100vw);
  }
}
.top_contact_popup .close span {
  width: calc(20 / var(--view-size) * 100vw);
  height: calc(2 / var(--view-size) * 100vw);
  background-color: #fff;
  border-radius: calc(4 / var(--view-size) * 100vw);
  position: absolute;
  left: 50%;
  top: 50%;
}
@media (max-width: 768px) {
  .top_contact_popup .close span {
    width: calc(16 / var(--view-size) * 100vw);
  }
}
.top_contact_popup .close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.top_contact_popup .close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.op_anime {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10000;
  transition: .3s;
}
.op_anime.active {
  opacity: 0;
  z-index: -100;
}
.op_anime .op_anime_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(640 / var(--view-size) * 100vw);
  opacity: 0;
}
@media (max-width: 768px) {
  .op_anime .op_anime_logo {
    width: calc(315 / var(--view-size) * 100vw);
  }
}
/* 2025.05.10 add */
@media screen and (min-width: 1536px) {
  .slick-dots li {
    margin: 0 0.5vw;
  }
}
@media screen and (max-width: 768px) {
  .top_product .top_product_row .top_product_item.bottomin1.active:nth-of-type(4) {
    animation: 0.8s forwards 0.4s bottomin;
  }
}
.mv_ttl {
  transform: translateX(-100%);
}
.mv_ttl.mv_ttl_01 {
  animation: .8s forwards mv_ttl;
}
.mv_ttl.mv_ttl_01 .mv_ttl_text {
  opacity: 0;
  animation: .8s forwards .2s leftin;
}
.mv_ttl.mv_ttl_02 {
  animation: .8s forwards .6s mv_ttl;
}
.mv_ttl.mv_ttl_02 .mv_ttl_text {
  opacity: 0;
  animation: .8s forwards .8s leftin;
}
.mv_ttl.mv_ttl_03 {
  animation: .8s forwards 1.2s mv_ttl;
}
.mv_ttl.mv_ttl_03 .mv_ttl_text {
  opacity: 0;
  animation: .8s forwards 1.4s leftin;
}
.mv_text {
  opacity: 0;
  transform: translateY(5%);
  animation: .8s forwards 1.6s bottomin;
}
body.firstday .mv_ttl {
  transform: translateX(-100%);
}
body.firstday .mv_ttl.mv_ttl_01 {
  animation: .8s forwards 2.3s mv_ttl;
}
body.firstday .mv_ttl.mv_ttl_01 .mv_ttl_text {
  opacity: 0;
  animation: .8s forwards 2.5s leftin;
}
body.firstday .mv_ttl.mv_ttl_02 {
  animation: .8s forwards 2.9s mv_ttl;
}
body.firstday .mv_ttl.mv_ttl_02 .mv_ttl_text {
  opacity: 0;
  animation: .8s forwards 3.1s leftin;
}
body.firstday .mv_ttl.mv_ttl_03 {
  animation: .8s forwards 3.5s mv_ttl;
}
body.firstday .mv_ttl.mv_ttl_03 .mv_ttl_text {
  opacity: 0;
  animation: .8s forwards 3.7s leftin;
}
body.firstday .mv_text {
  opacity: 0;
  transform: translateY(5%);
  animation: .8s forwards 3.9s bottomin;
}
@keyframes mv_ttl {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.bottomin1 {
  opacity: 0;
  transform: translateY(5%);
}
.bottomin1.active {
  animation: .8s forwards bottomin;
}
.bottomin2 {
  opacity: 0;
  transform: translateY(5%);
}
.bottomin2.active {
  animation: .8s forwards .2s bottomin;
}
.bottomin3 {
  opacity: 0;
  transform: translateY(5%);
}
.bottomin3.active {
  animation: .8s forwards .4s bottomin;
}
.bottomin4 {
  opacity: 0;
  transform: translateY(5%);
}
.bottomin4.active {
  animation: .8s forwards .6s bottomin;
}
.leftin1 {
  opacity: 0;
  transform: translateX(2%);
}
.leftin1.active {
  animation: .8s forwards leftin;
}
.leftin2 {
  opacity: 0;
  transform: translateX(2%);
}
.leftin2.active {
  animation: .8s forwards .2s leftin;
}
.leftin3 {
  opacity: 0;
  transform: translateX(2%);
}
.leftin3.active {
  animation: .8s forwards .4s leftin;
}
.leftin4 {
  opacity: 0;
  transform: translateX(2%);
}
.leftin4.active {
  animation: .8s forwards .6s leftin;
}
.right1 {
  opacity: 0;
  transform: translateY(5%);
}
.right1.active {
  animation: .8s forwards rightin;
}
.right2 {
  opacity: 0;
  transform: translateY(5%);
}
.right2.active {
  animation: .8s forwards .2s rightin;
}
.right3 {
  opacity: 0;
  transform: translateY(5%);
}
.right3.active {
  animation: .8s forwards .4s rightin;
}
.right4 {
  opacity: 0;
  transform: translateY(5%);
}
.right4.active {
  animation: .8s forwards .6s rightin;
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .page_case .common_mv .common_mv_ttl {
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .page_case .page_case_cont .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_case .page_case_cont .top_case_item {
  width: calc(414 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case .page_case_cont .top_case_item {
    width: calc(160 / var(--view-size) * 100vw);
    margin-bottom: calc(26 / var(--view-size) * 100vw);
  }
}
.page_case .page_case_cont .top_case_item .case_item_ttl {
  text-align: center;
}
.page_case .case_point {
  padding-top: calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case .case_point {
    padding-top: calc(32 / var(--view-size) * 100vw);
  }
}
.page_case_wrap {
  padding-bottom: calc(70 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case_wrap {
    padding-bottom: calc(42 / var(--view-size) * 100vw);
    padding-top: calc(30 / var(--view-size) * 100vw);
  }
}
.page_case_wrap .page_case_pagenation .current, .page_case_wrap .page_case_pagenation a {
  width: calc(51 / var(--view-size) * 100vw);
  height: calc(51 / var(--view-size) * 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(22 / var(--view-size) * 100vw);
  margin-right: calc(15 / var(--view-size) * 100vw);
  border: calc(2 / var(--view-size) * 100vw) solid #004ea2;
  border-radius: calc(3 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case_wrap .page_case_pagenation .current, .page_case_wrap .page_case_pagenation a {
    width: calc(30 / var(--view-size) * 100vw);
    height: calc(30 / var(--view-size) * 100vw);
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-right: calc(10 / var(--view-size) * 100vw);
    border-radius: calc(4 / var(--view-size) * 100vw);
  }
}
.page_case_wrap .page_case_pagenation .current {
  background-color: #004ea2;
  color: #fff;
}
.page_case_wrap .page_case_pagenation a {
  background-color: #fff;
  color: #004ea2;
}
.page_case_wrap .page_case_pagenation a:hover {
  background-color: #004ea2;
  color: #fff;
  opacity: 1;
}
.page_case_wrap .page_case_pagenation .extend {
  font-size: calc(21 / var(--view-size) * 100vw);
  margin-right: calc(15 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case_wrap .page_case_pagenation .extend {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-right: calc(10 / var(--view-size) * 100vw);
  }
}
.page_case_wrap .page_case_pagenation .nextpostslink {
  margin-left: calc(32 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case_wrap .page_case_pagenation .nextpostslink {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .page_case_detail .common_mv .common_mv_ttl {
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}
.page_case_detail .common_mv .common_mv_tags {
  margin-top: calc(8 / var(--view-size) * 100vw);
}
.page_case_detail .common_mv .common_mv_tags li {
  padding: calc(3 / var(--view-size) * 100vw) calc(10 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #fff;
  color: #fff;
  margin-right: calc(10 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_case_detail .common_mv .common_mv_tags li {
    font-size: calc(14 / var(--view-size) * 100vw);
    margin-right: calc(2 / var(--view-size) * 100vw);
  }
}
.page_case_detail .common_mv .common_mv_tags li:last-child {
  margin-right: 0;
}
.case_detail_cont {
  padding: calc(120 / var(--view-size) * 100vw) 0;
}
@media (max-width: 768px) {
  .case_detail_cont {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}
.case_detail_cont .inner {
  width: calc(1640 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_detail_cont .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.case_detail_cont .detail_cont_imgs {
  width: calc(912 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_detail_cont .detail_cont_imgs {
    width: 100%;
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
}
.case_detail_cont .detail_cont_imgs .detail_cont_main {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_detail_cont .detail_cont_imgs .detail_cont_main {
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.case_detail_cont .detail_cont_imgs .detail_cont_img {
  width: calc(312 / var(--view-size) * 100vw);
  margin-right: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_detail_cont .detail_cont_imgs .detail_cont_img {
    width: calc(111 / var(--view-size) * 100vw);
    margin-right: calc(8 / var(--view-size) * 100vw);
  }
}
.case_detail_cont .detail_cont_imgs .detail_cont_img img {
  height: calc(175 / var(--view-size) * 100vw);
  object-fit: cover;
}
@media (max-width: 768px) {
  .case_detail_cont .detail_cont_imgs .detail_cont_img img {
    height: calc(66 / var(--view-size) * 100vw);
  }
}
.case_detail_cont .detail_cont_info {
  width: calc(587 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_detail_cont .detail_cont_info {
    width: 100%;
  }
}
.case_detail_cont .detail_cont_info .detail_cont_item {
  margin-bottom: calc(30 / var(--view-size) * 100vw);
}
.case_detail_cont .detail_cont_info .detail_cont_item:last-child {
  margin-bottom: 0;
}
.case_detail_cont .detail_cont_info .detail_cont_item .detail_cont_ttl {
  font-size: calc(30 / var(--view-size) * 100vw);
  color: #004ea2;
}
@media (max-width: 768px) {
  .case_detail_cont .detail_cont_info .detail_cont_item .detail_cont_ttl {
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}
.case_detail_cont .detail_cont_info .detail_cont_item .detail_cont_text {
  font-size: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_detail_cont .detail_cont_info .detail_cont_item .detail_cont_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.case_contact {
  padding: calc(50 / var(--view-size) * 100vw) 0 calc(20 / var(--view-size) * 100vw);
  background-color: #2f2f2f;
}
@media (max-width: 768px) {
  .case_contact {
    padding: calc(72 / var(--view-size) * 100vw) 0;
  }
}
.case_contact .case_contact_subttl {
  font-size: calc(30 / var(--view-size) * 100vw);
  color: #f5a83e;
  font-weight: 600;
  margin-bottom: calc(8 / var(--view-size) * 100vw);
  text-align: center;
}
@media (max-width: 768px) {
  .case_contact .case_contact_subttl {
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}
.case_contact .inner {
  color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .case_contact .inner {
    width: calc(347 / var(--view-size) * 100vw);
  }
}
.case_contact .inner::before {
  content: "";
  background: url(../images/contact_bg.png) center/cover no-repeat;
  width: calc(350 / var(--view-size) * 100vw);
  height: calc(240 / var(--view-size) * 100vw);
  position: absolute;
  left: calc(-20 / var(--view-size) * 100vw);
  top: calc(-20 / var(--view-size) * 100vw);
  z-index: 1;
}
@media (max-width: 768px) {
  .case_contact .inner::before {
    width: calc(253 / var(--view-size) * 100vw);
    height: calc(174 / var(--view-size) * 100vw);
    top: calc(-26 / var(--view-size) * 100vw);
    left: 0;
  }
}
.case_contact .case_contact_cont {
  position: relative;
  z-index: 10;
}
.case_contact .case_contact_subtext {
  font-size: calc(20 / var(--view-size) * 100vw);
  text-align: center;
  margin-bottom: calc(36 / var(--view-size) * 100vw);
  font-weight: 500;
}
@media (max-width: 768px) {
  .case_contact .case_contact_subtext {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-bottom: calc(24 / var(--view-size) * 100vw);
    text-align: left;
  }
}
.case_contact .case_contact_contact {
  background-color: #f5a83e;
  color: #4c4b4c;
  position: relative;
  margin-bottom: calc(32 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #f5a83e;
}
.case_contact .case_contact_contact::after {
  content: "";
  background: url(../images/icon_contact.png) center/cover no-repeat;
  width: calc(28 / var(--view-size) * 100vw);
  height: calc(19 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(18 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
}
.case_contact .case_contact_contact:hover {
  background-color: #2f2f2f;
  color: #f5a83e;
}
.case_contact .case_contact_contact:hover::after {
  background: url(../images/icon_contact_yellow.png) center/cover no-repeat;
}
.case_contact .case_contact_telarea {
  padding-left: calc(50 / var(--view-size) * 100vw);
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_contact .case_contact_telarea {
    padding-left: 0;
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
}
.case_contact .case_contact_telarea .case_contact_tel {
  font-size: calc(50 / var(--view-size) * 100vw);
  font-weight: bold;
  position: relative;
  padding-left: calc(64 / var(--view-size) * 100vw);
  margin-right: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_contact .case_contact_telarea .case_contact_tel {
    font-size: calc(32 / var(--view-size) * 100vw);
    padding-left: calc(50 / var(--view-size) * 100vw);
    margin-right: 0;
  }
}
.case_contact .case_contact_telarea .case_contact_tel::before {
  content: "";
  background: url(../images/icon_tel_white.png) center/cover no-repeat;
  position: absolute;
  top: calc(14 / var(--view-size) * 100vw);
  left: 0;
  width: calc(45 / var(--view-size) * 100vw);
  height: calc(43 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_contact .case_contact_telarea .case_contact_tel::before {
    width: calc(33 / var(--view-size) * 100vw);
    height: calc(33 / var(--view-size) * 100vw);
  }
}
.case_contact .case_contact_telarea .case_contact_tel_text {
  font-size: calc(20 / var(--view-size) * 100vw);
  text-align: right;
  margin-right: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_contact .case_contact_telarea .case_contact_tel_text {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-right: 0;
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
}
.case_contact .case_contact_telarea .case_contact_tel_text .text_large {
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_contact .case_contact_telarea .case_contact_tel_text .text_large {
    font-size: calc(28 / var(--view-size) * 100vw);
  }
}
.case_contact .case_contact_telarea .contact_cont_telbtn {
  margin: 0;
  transition: .3s;
  cursor: pointer;
  position: relative;
}
.case_contact .case_contact_telarea .contact_cont_telbtn:hover {
  background-color: #fff;
  color: #2f2f2f;
}
.case_contact .case_contact_telarea .contact_cont_telbtn::before {
  content: "";
  background: url(../images/icon_tel_white.png) center/cover no-repeat;
  position: absolute;
  top: calc(7 / var(--view-size) * 100vw);
  left: calc(-55 / var(--view-size) * 100vw);
  width: calc(45 / var(--view-size) * 100vw);
  height: calc(43 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_contact .case_contact_telarea .contact_cont_telbtn::before {
    left: calc(-43 / var(--view-size) * 100vw);
    width: calc(33 / var(--view-size) * 100vw);
    height: calc(33 / var(--view-size) * 100vw);
  }
}
.case_contact .case_contact_product {
  background-color: #4c4b4c;
  padding: calc(20 / var(--view-size) * 100vw);
  width: calc(980 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .case_contact .case_contact_product {
    width: 100%;
    padding: calc(16 / var(--view-size) * 100vw);
  }
}
.case_contact .case_contact_product .contact_product_text {
  font-size: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_contact .case_contact_product .contact_product_text {
    font-size: calc(16 / var(--view-size) * 100vw);
    text-align: center;
    margin-bottom: calc(20 / var(--view-size) * 100vw);
    width: 100%;
  }
}
.case_contact .case_contact_product .contact_product_text .text_orange {
  font-size: calc(30 / var(--view-size) * 100vw);
  color: #f5a83e;
  margin-right: calc(64 / var(--view-size) * 100vw);
  font-weight: bold;
}
@media (max-width: 768px) {
  .case_contact .case_contact_product .contact_product_text .text_orange {
    font-size: calc(28 / var(--view-size) * 100vw);
    margin-right: 0;
  }
}
.case_contact .case_contact_product .contact_product_btn {
  margin: 0;
  border: calc(1 / var(--view-size) * 100vw) solid #f5a83e;
  color: #f5a83e;
}
.case_process {
  padding: calc(160 / var(--view-size) * 100vw) 0 calc(100 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_process {
    padding: calc(80 / var(--view-size) * 100vw) 0;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .case_process .inner {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .case_process .common_ttl {
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}
.case_process .case_process_cont {
  margin-top: calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_process .case_process_cont {
    margin-top: calc(20 / var(--view-size) * 100vw);
  }
}
.case_process .case_process_cont .slick-list {
  padding: 0 20% 0 0 !important;
}
.case_process .case_process_cont .slick-dots {
  left: calc(20 / var(--view-size) * 100vw);
  right: auto;
  bottom: calc(-60 / var(--view-size) * 100vw);
  justify-content: start;
}
.case_process .case_process_cont .slick-dots li button:before {
  border: calc(1 / var(--view-size) * 100vw) solid #4c4b4c;
  width: calc(10 / var(--view-size) * 100vw);
  height: calc(10 / var(--view-size) * 100vw);
  border-radius: 50%;
  font-family: none;
}
.case_process .case_process_cont .slick-dots .slick-active button:before {
  background-color: #004ea2;
}
.case_process .case_process_cont .top_case_item {
  width: calc(414 / var(--view-size) * 100vw);
  font-size: calc(24 / var(--view-size) * 100vw);
  color: #fff;
}
@media (max-width: 768px) {
  .case_process .case_process_cont .top_case_item {
    margin: 0 0.6%;
    width: auto;
  }
}
.case_process .case_process_cont .top_case_item .case_item_info {
  color: #4c4b4c;
}
.case_process .case_process_cont .top_case_item img {
  height: calc(230 / var(--view-size) * 100vw);
  object-fit: cover;
  border: calc(1 / var(--view-size) * 100vw) solid #fff;
  margin-bottom: calc(10 / var(--view-size) * 100vw);
  width: auto;
}
@media (max-width: 768px) {
  .case_process .case_process_cont .top_case_item img {
    height: calc(160 / var(--view-size) * 100vw);
    object-fit: cover;
  }
}
.case_process .case_process_cont .top_case_item .date {
  font-size: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_process .case_process_cont .top_case_item .date {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.case_process .case_process_cont .top_case_item .blog_item_ttl {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
  font-weight: normal;
}
@media (max-width: 768px) {
  .case_process .case_process_cont .top_case_item .blog_item_ttl {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-bottom: 0;
  }
}
.case_process .case_process_cont .top_case_item .blog_item_tags .blog_item_tag {
  margin-right: calc(10 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_process .case_process_cont .top_case_item .blog_item_tags .blog_item_tag {
    margin-right: calc(2 / var(--view-size) * 100vw);
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .case_process .common_btn {
    width: calc(156 / var(--view-size) * 100vw);
    margin-right: calc(31 / var(--view-size) * 100vw);
  }
}
.case_point {
  padding-bottom: calc(100 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_point {
    padding-bottom: calc(70 / var(--view-size) * 100vw);
  }
}
.case_point .common_ttl {
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_point .common_ttl {
    margin-bottom: calc(20 / var(--view-size) * 100vw);
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}
.case_point .case_point_text {
  font-size: calc(20 / var(--view-size) * 100vw);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 768px) {
  .case_point .case_point_text {
    font-size: calc(16 / var(--view-size) * 100vw);
    font-weight: bold;
  }
}
.case_point .inner {
  width: calc(1200 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_point .inner {
    width: calc(315 / var(--view-size) * 100vw);
  }
}
.case_point .case_point_item {
  width: calc(577 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(32 / var(--view-size) * 100vw) 0;
  padding-left: calc(20 / var(--view-size) * 100vw);
  color: #004ea2;
  font-size: calc(24 / var(--view-size) * 100vw);
  margin-bottom: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .case_point .case_point_item {
    width: 100%;
    padding: calc(15 / var(--view-size) * 100vw) 0;
    text-align: center;
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.case_point .case_point_item:hover {
  opacity: 1;
  background-color: #004ea2;
}
.case_point .case_point_item:hover .case_point_item_text {
  color: #fff;
}
.case_point .case_point_item .case_point_item_text {
  font-size: calc(24 / var(--view-size) * 100vw);
  color: #004ea2;
  font-weight: 500;
  transition: .3s;
}
@media (max-width: 768px) {
  .case_point .case_point_item .case_point_item_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_search {
  margin-top: calc(100 / var(--view-size) * 100vw);
  margin-bottom: calc(220 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_search {
    margin: calc(40 / var(--view-size) * 100vw) 0;
  }
}
.page_useful .page_usefull_search .inner {
  border-top: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(20 / var(--view-size) * 100vw) 0;
  width: calc(1589 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_search .inner {
    width: calc(345 / var(--view-size) * 100vw);
    padding-bottom: calc(8 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_search .usefull_search_row {
  width: calc(1200 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page_useful .page_usefull_search .usefull_search_row {
    width: 100%;
  }
}
.page_useful .page_usefull_search .usefull_search_name {
  font-size: calc(24 / var(--view-size) * 100vw);
  margin-right: calc(150 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_search .usefull_search_name {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-right: 0;
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_search .usefull_search_list .usefull_search_item {
  margin-right: calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_search .usefull_search_list .usefull_search_item {
    width: 50%;
    margin-right: 0;
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_search .usefull_search_list .usefull_search_item:last-child {
  margin-right: 0;
}
.page_useful .page_usefull_search .usefull_search_list .usefull_search_item input {
  display: none;
}
.page_useful .page_usefull_search .usefull_search_list .usefull_search_item label {
  font-size: calc(24 / var(--view-size) * 100vw);
  padding-left: calc(50 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .page_useful .page_usefull_search .usefull_search_list .usefull_search_item label {
    font-size: calc(14 / var(--view-size) * 100vw);
    padding-left: calc(28 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_search .usefull_search_list .usefull_search_item label::before {
  content: "";
  transition: .3s;
  position: absolute;
  left: 0;
  top: calc(-5 / var(--view-size) * 100vw);
  width: calc(34 / var(--view-size) * 100vw);
  height: calc(34 / var(--view-size) * 100vw);
  border: calc(2 / var(--view-size) * 100vw) solid #004ea2;
}
@media (max-width: 768px) {
  .page_useful .page_usefull_search .usefull_search_list .usefull_search_item label::before {
    width: calc(16 / var(--view-size) * 100vw);
    height: calc(16 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_search .usefull_search_list .usefull_search_item label::after {
  content: "";
  opacity: 0;
  position: absolute;
  top: calc(2 / var(--view-size) * 100vw);
  bottom: 0;
  margin: auto;
  left: calc(11 / var(--view-size) * 100vw);
  display: block;
  width: calc(11 / var(--view-size) * 100vw);
  height: calc(17 / var(--view-size) * 100vw);
  border-right: calc(3 / var(--view-size) * 100vw) solid #fff;
  border-bottom: calc(3 / var(--view-size) * 100vw) solid #fff;
  transform: translateY(calc(-2 / var(--view-size) * 100vw)) rotate(45deg);
  transition: opacity 0.2s linear;
  background-color: transparent;
  border-radius: 0;
}
@media (max-width: 768px) {
  .page_useful .page_usefull_search .usefull_search_list .usefull_search_item label::after {
    width: calc(4 / var(--view-size) * 100vw);
    height: calc(10 / var(--view-size) * 100vw);
    left: calc(8 / var(--view-size) * 100vw);
    top: calc(-2 / var(--view-size) * 100vw);
    border-right: calc(2 / var(--view-size) * 100vw) solid #fff;
    border-bottom: calc(2 / var(--view-size) * 100vw) solid #fff;
  }
}
.page_useful .page_usefull_search .usefull_search_list .usefull_search_item input[type="checkbox"]:checked + label:before {
  background-color: #004ea2;
}
.page_useful .page_usefull_search .usefull_search_list .usefull_search_item input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
@media (max-width: 768px) {
  .page_useful .page_usefull_cont .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_cont .usefull_item {
  width: calc(417 / var(--view-size) * 100vw);
  margin-bottom: calc(144 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_cont .usefull_item {
    width: calc(163 / var(--view-size) * 100vw);
    margin-bottom: calc(28 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_cont .usefull_item .usefull_item_img {
  margin-bottom: calc(14 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_cont .usefull_item .usefull_item_img {
    margin-bottom: calc(8 / var(--view-size) * 100vw);
    height: calc(100 / var(--view-size) * 100vw);
    object-fit: cover;
  }
}
.page_useful .page_usefull_cont .usefull_item .usefull_item_textarea {
  padding: 0 calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_cont .usefull_item .usefull_item_textarea {
    padding: 0;
  }
}
.page_useful .page_usefull_cont .usefull_item .usefull_item_ttl_wrap {
  margin-bottom: calc(10 / var(--view-size) * 100vw);
}
.page_useful .page_usefull_cont .usefull_item .usefull_item_ttl_wrap .usefull_item_ttl {
  display: inline;
  color: #004ea2;
  font-size: calc(30 / var(--view-size) * 100vw);
  font-weight: 600;
  position: relative;
  padding-right: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_cont .usefull_item .usefull_item_ttl_wrap .usefull_item_ttl {
    font-size: calc(14 / var(--view-size) * 100vw);
    margin-bottom: calc(8 / var(--view-size) * 100vw);
    padding-right: calc(20 / var(--view-size) * 100vw);
    display: inline-block;
  }
}
.page_useful .page_usefull_cont .usefull_item .usefull_item_ttl_wrap .usefull_item_ttl::after {
  content: "";
  background: url(../images/icon_useful.png) center/cover no-repeat;
  width: calc(26 / var(--view-size) * 100vw);
  height: calc(26 / var(--view-size) * 100vw);
  position: absolute;
  right: 0;
  top: calc(0 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_cont .usefull_item .usefull_item_ttl_wrap .usefull_item_ttl::after {
    top: calc(3 / var(--view-size) * 100vw);
    width: calc(16 / var(--view-size) * 100vw);
    height: calc(16 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_cont .usefull_item .usefull_item_cate {
  margin-bottom: calc(10 / var(--view-size) * 100vw);
}
.page_useful .page_usefull_cont .usefull_item .usefull_item_cate li {
  background-color: #cdcdcd;
  padding: calc(4 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw);
  text-align: center;
  display: inline;
  margin-right: calc(4 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_usefull_cont .usefull_item .usefull_item_cate li {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.page_useful .page_usefull_cont .usefull_item p {
  font-size: calc(24 / var(--view-size) * 100vw);
  font-weight: 600;
}
@media (max-width: 768px) {
  .page_useful .page_usefull_cont .usefull_item p {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.page_useful .page_case_wrap {
  padding-bottom: calc(164 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_useful .page_case_wrap {
    padding-bottom: 70px;
  }
}
.page_useful .case_point {
  padding-top: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
}
.page_feature .common_mv .common_mv_ttl {
  line-height: 1;
}
.page_feature .feature_read {
  padding: calc(40 / var(--view-size) * 100vw) 0 calc(80 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_read {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
}
.page_feature .feature_read .feature_read_group {
  width: calc(910 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page_feature .feature_read .feature_read_group {
    width: 100%;
  }
}
.page_feature .feature_read .feature_read_group {
  margin-bottom: calc(72 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_read .feature_read_group {
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_read .feature_read_group:last-child {
  margin-bottom: 0;
}
.page_feature .feature_read .feature_read_group .feature_read_text {
  font-size: calc(25 / var(--view-size) * 100vw);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .page_feature .feature_read .feature_read_group .feature_read_text {
    font-size: calc(16 / var(--view-size) * 100vw);
    text-align: left;
  }
}
.page_feature .feature_read .feature_read_group .feature_read_list li {
  font-size: calc(25 / var(--view-size) * 100vw);
  font-weight: 600;
  margin-bottom: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_read .feature_read_group .feature_read_list li {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_read .feature_read_group .feature_read_list li:last-child {
  margin-bottom: 0;
}
.page_feature .feature_check {
  background-color: #004ea2;
  padding: calc(40 / var(--view-size) * 100vw) 0;
}
.page_feature .feature_check .inner {
  width: calc(910 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page_feature .feature_check .inner {
    width: calc(360 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_check .common_ttl .text_small {
  font-size: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_check .common_ttl .text_small {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .page_feature .feature_check .feature_check_list {
    width: calc(345 / var(--view-size) * 100vw);
    margin: 0 auto;
  }
}
.page_feature .feature_check .feature_check_list li {
  font-size: calc(25 / var(--view-size) * 100vw);
  color: #fff;
  position: relative;
  padding-left: calc(64 / var(--view-size) * 100vw);
  margin-bottom: calc(60 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_check .feature_check_list li {
    font-size: calc(16 / var(--view-size) * 100vw);
    padding-left: calc(40 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_check .feature_check_list li::before {
  content: "";
  background: url(../images/icon_check_white.png) center/cover no-repeat;
  width: calc(47 / var(--view-size) * 100vw);
  height: calc(47 / var(--view-size) * 100vw);
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .page_feature .feature_check .feature_check_list li::before {
    width: calc(31 / var(--view-size) * 100vw);
    height: calc(31 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_check .feature_check_list li:last-child {
  margin-bottom: 0;
}
.page_feature .feature_point {
  padding: calc(140 / var(--view-size) * 100vw) 0 calc(80 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_point {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
  .page_feature .feature_point .inner {
    width: 100%;
  }
}
.page_feature .feature_point .feature_point_row {
  margin-bottom: calc(90 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_point .feature_point_row {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
    flex-direction: column-reverse;
  }
  .page_feature .feature_point .feature_point_row:nth-child(2) .feature_point_img {
    margin-left: auto;
  }
}
.page_feature .feature_point .feature_point_row:last-child {
  margin-bottom: 0;
}
.page_feature .feature_point .feature_point_row .feature_point_img, .page_feature .feature_point .feature_point_row .feature_point_textarea {
  width: 49%;
}
@media (max-width: 768px) {
  .page_feature .feature_point .feature_point_row .feature_point_img {
    width: 90%;
    margin-bottom: calc(13 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .page_feature .feature_point .feature_point_row .feature_point_textarea {
    width: 90%;
    margin: 0 auto;
  }
}
.page_feature .feature_point .feature_point_row .feature_point_textarea .feature_point_ttl {
  font-size: calc(30 / var(--view-size) * 100vw);
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_point .feature_point_row .feature_point_textarea .feature_point_ttl {
    font-size: calc(20 / var(--view-size) * 100vw);
    margin-bottom: calc(18 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_point .feature_point_row .feature_point_textarea .feature_point_ttl .text_small {
  font-size: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_point .feature_point_row .feature_point_textarea .feature_point_ttl .text_small {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_point .feature_point_row .feature_point_textarea .feature_point_text {
  font-size: calc(25 / var(--view-size) * 100vw);
  font-weight: 600;
}
@media (max-width: 768px) {
  .page_feature .feature_point .feature_point_row .feature_point_textarea .feature_point_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_flow {
  margin-bottom: calc(132 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_flow {
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_flow .common_ttl {
  line-height: 1;
  color: #000;
}
@media (max-width: 768px) {
  .page_feature .feature_flow .common_ttl {
    line-height: 1.2;
  }
}
.page_feature .feature_flow .common_ttl .text_small {
  font-size: calc(14 / var(--view-size) * 100vw);
}
.page_feature .feature_flow .feature_flow_box {
  width: calc(1660 / var(--view-size) * 100vw);
  margin: 0 auto;
  background-color: #e9ecf6;
  padding: calc(80 / var(--view-size) * 100vw) 0 calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_flow .feature_flow_box {
    width: 100%;
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
  .page_feature .feature_flow .feature_flow_box .feature_flow_img {
    width: 90%;
    margin: 0 auto;
  }
}
.page_feature .feature_activity {
  padding: 0 0 calc(164 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_activity {
    padding: 0 0 calc(72 / var(--view-size) * 100vw);
  }
  .page_feature .feature_activity .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_activity .feature_activity_box {
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(32 / var(--view-size) * 100vw);
  padding-bottom: calc(8 / var(--view-size) * 100vw);
  margin-bottom: calc(28 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_activity .feature_activity_box {
    border: none;
    padding: 0;
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_activity .feature_activity_list li {
  width: 50%;
  font-size: calc(25 / var(--view-size) * 100vw);
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_activity .feature_activity_list li {
    width: 100%;
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_activity .feature_activity_row .feature_activity_item {
  width: calc(420 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_activity .feature_activity_row .feature_activity_item {
    width: 100%;
    margin-bottom: calc(24 / var(--view-size) * 100vw);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .page_feature .feature_activity .feature_activity_row .feature_activity_item:last-child {
    margin-bottom: 0;
  }
}
.page_feature .feature_activity .feature_activity_row .feature_activity_item .feature_activity_img {
  margin-bottom: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_activity .feature_activity_row .feature_activity_item .feature_activity_img {
    width: calc(158 / var(--view-size) * 100vw);
    margin-bottom: 0;
  }
}
.page_feature .feature_activity .feature_activity_row .feature_activity_item .feature_activity_img img {
  border-radius: calc(8 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_activity .feature_activity_row .feature_activity_item .feature_activity_textarea {
    width: calc(180 / var(--view-size) * 100vw);
  }
}
.page_feature .feature_activity .feature_activity_row .feature_activity_item .feature_activity_ttl {
  font-size: calc(32 / var(--view-size) * 100vw);
  padding-left: calc(32 / var(--view-size) * 100vw);
  color: #004ea2;
  margin-bottom: calc(10 / var(--view-size) * 100vw);
  font-weight: 600;
}
@media (max-width: 768px) {
  .page_feature .feature_activity .feature_activity_row .feature_activity_item .feature_activity_ttl {
    font-size: calc(16 / var(--view-size) * 100vw);
    padding-left: 0;
  }
}
.page_feature .feature_activity .feature_activity_row .feature_activity_item .feature_activity_text {
  font-size: calc(24 / var(--view-size) * 100vw);
  font-weight: 600;
  padding-left: calc(32 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_feature .feature_activity .feature_activity_row .feature_activity_item .feature_activity_text {
    font-size: calc(12 / var(--view-size) * 100vw);
    padding-left: 0;
  }
}
.page_feature .case_point {
  padding-top: calc(24 / var(--view-size) * 100vw);
}
.page_blog .page_case_search .case_search_row .case_search_tags {
  width: calc(778 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_case_search .case_search_row .case_search_tags {
    width: 100%;
  }
}
.page_blog .page_case_search .case_search_row .case_search_tags .case_search_tag {
  margin-bottom: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_case_search .case_search_row .case_search_tags .case_search_tag {
    margin-bottom: calc(10 / var(--view-size) * 100vw);
  }
}
.page_blog .page_case_search .case_search_row .case_search_select select {
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(8 / var(--view-size) * 100vw);
  color: #004ea2;
  font-size: calc(18 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_case_search .case_search_row .case_search_select select {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.page_blog .page_case_search .case_search_row .case_search_select_text {
  margin: 0 calc(8 / var(--view-size) * 100vw);
  color: #004ea2;
  font-size: calc(18 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_case_search .case_search_row .case_search_select_text {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .page_blog .page_case_search .case_search_item_date .case_search_row {
    display: flex;
  }
  .page_blog .page_case_search .case_search_item_date .case_search_row .case_search_name {
    margin-bottom: 0;
    margin-right: calc(12 / var(--view-size) * 100vw);
  }
}
.page_blog .page_blog_cont {
  margin-bottom: calc(70 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_blog_cont {
    margin-bottom: calc(20 / var(--view-size) * 100vw);
  }
}
.page_blog .page_blog_cont .inner {
  width: calc(1600 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_blog_cont .inner {
    width: calc(347 / var(--view-size) * 100vw);
  }
}
.page_blog .page_blog_cont .page_blog_item {
  width: calc(350 / var(--view-size) * 100vw);
  margin-bottom: calc(56 / var(--view-size) * 100vw);
  transition: .4s;
}
@media (max-width: 768px) {
  .page_blog .page_blog_cont .page_blog_item {
    width: calc(165 / var(--view-size) * 100vw);
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_blog .page_blog_cont .page_blog_item:hover .page_blog_img {
  transform: scale(0.95);
}
.page_blog .page_blog_cont .page_blog_item .page_blog_img {
  border-radius: calc(10 / var(--view-size) * 100vw);
  margin-bottom: calc(8 / var(--view-size) * 100vw);
  transition: .3s;
}
.page_blog .page_blog_cont .page_blog_item .page_blog_date {
  font-size: calc(20 / var(--view-size) * 100vw);
  font-weight: 500;
}
@media (max-width: 768px) {
  .page_blog .page_blog_cont .page_blog_item .page_blog_date {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.page_blog .page_blog_cont .page_blog_item .page_blog_ttl {
  margin-bottom: calc(16 / var(--view-size) * 100vw);
  font-size: calc(20 / var(--view-size) * 100vw);
  font-weight: 500;
}
@media (max-width: 768px) {
  .page_blog .page_blog_cont .page_blog_item .page_blog_ttl {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.page_blog .page_blog_cont .page_blog_item .page_blog_tags li {
  margin-right: calc(10 / var(--view-size) * 100vw);
  font-size: calc(20 / var(--view-size) * 100vw);
  font-weight: 500;
}
@media (max-width: 768px) {
  .page_blog .page_blog_cont .page_blog_item .page_blog_tags li {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.page_blog .case_point {
  padding-top: calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .case_point {
    padding-top: calc(32 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .bread_inner {
  width: calc(1800 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .bread_inner {
    width: calc(347 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .bread {
  margin-bottom: calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .bread {
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .page_detail_blog .bread li {
    padding: 0;
  }
}
.page_detail_blog .bread li::after {
  color: #251E1C;
}
@media (max-width: 768px) {
  .page_detail_blog .bread li::after {
    font-size: calc(10 / var(--view-size) * 100vw);
    margin: 0 calc(5 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .bread li a {
  color: #251E1C;
}
@media (max-width: 768px) {
  .page_detail_blog .bread li a {
    font-size: calc(10 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .detail_blog_ttlarea .detail_blog_ttl {
  font-size: calc(50 / var(--view-size) * 100vw);
  margin-bottom: calc(24 / var(--view-size) * 100vw);
  color: #004ea2;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_ttlarea .detail_blog_ttl {
    font-size: calc(24 / var(--view-size) * 100vw);
    margin-bottom: calc(8 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .detail_blog_ttlarea .detail_blog_date {
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_ttlarea .detail_blog_date {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .detail_blog_ttlarea .detail_blog_tag {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_ttlarea .detail_blog_tag {
    margin-bottom: calc(10 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .detail_blog_ttlarea .detail_blog_tag li {
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_ttlarea .detail_blog_tag li {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .detail_blog_img {
  margin-bottom: calc(40 / var(--view-size) * 100vw);
}
.page_detail_blog .detail_blog_cont {
  margin-bottom: calc(72 / var(--view-size) * 100vw);
  /*img {
      width: calc(872 / var(--view-size) * 100vw);
      display: block;
      margin: 0 auto calc(48 / var(--view-size) * 100vw);
      @include tab {
          width: 100%;
          margin-bottom: calc(32 / var(--view-size) * 100vw);
      }
  }*/
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_cont {
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .detail_blog_cont h3 {
  font-size: calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_cont h3 {
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .detail_blog_cont p {
  margin-bottom: calc(64 / var(--view-size) * 100vw);
  line-height: 2;
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_cont p {
    font-size: calc(16 / var(--view-size) * 100vw);
    line-height: 1.8;
    margin-bottom: calc(48 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .detail_blog_cont .row .detail_blog_row_text {
  width: calc(783 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_cont .row .detail_blog_row_text {
    width: 100%;
  }
}
.page_detail_blog .detail_blog_cont .row .detail_blog_row_img {
  width: calc(380 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_cont .row .detail_blog_row_img {
    width: calc(220 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .detail_blog_cont .row .detail_blog_row_img img {
  width: 100%;
  margin-bottom: calc(12 / var(--view-size) * 100vw);
}
.page_detail_blog .detail_blog_cont .detail_blog_caption {
  font-size: calc(20 / var(--view-size) * 100vw);
  text-align: center;
  display: block;
  font-weight: 600;
}
@media (max-width: 768px) {
  .page_detail_blog .detail_blog_cont .detail_blog_caption {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .top_blog.detail_blog_other {
  background-color: #fff;
  padding-bottom: calc(64 / var(--view-size) * 100vw);
}
.page_detail_blog .top_blog.detail_blog_other .common_ttl {
  text-align: left;
  color: #251E1C;
}
@media (max-width: 768px) {
  .page_detail_blog .top_blog.detail_blog_other .common_ttl {
    text-align: center;
  }
}
.page_detail_blog .top_blog.detail_blog_other .common_btn {
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
}
.page_detail_blog .top_blog.detail_blog_other .blog_item .date {
  color: #251E1C;
}
.page_detail_blog .top_blog.detail_blog_other .blog_item .blog_item_ttl {
  color: #251E1C;
}
.page_detail_blog .top_blog.detail_blog_other .blog_item .blog_item_tag {
  color: #251E1C;
}
.page_detail_blog .top_blog.detail_blog_other .slick-dots li.slick-active button::before {
  color: #251E1C;
}
.page_detail_blog .top_blog.detail_blog_other .slick-dots li button::before {
  color: #251E1C;
}
.page_detail_blog .case_contact .case_contact_cont .detail_blog_contact {
  margin-bottom: calc(32 / var(--view-size) * 100vw);
  width: calc(960 / var(--view-size) * 100vw);
  margin: 0 auto calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .case_contact .case_contact_cont .detail_blog_contact {
    width: calc(315 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .case_contact .case_contact_cont .detail_blog_contact .detail_blog_contact_textarea {
  text-align: center;
}
.page_detail_blog .case_contact .case_contact_cont .detail_blog_contact .detail_blog_contact_textarea .detail_blog_contact_ttl {
  font-size: calc(40 / var(--view-size) * 100vw);
  margin-bottom: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .case_contact .case_contact_cont .detail_blog_contact .detail_blog_contact_textarea .detail_blog_contact_ttl {
    font-size: calc(24 / var(--view-size) * 100vw);
    margin-bottom: calc(4 / var(--view-size) * 100vw);
  }
}
.page_detail_blog .case_contact .case_contact_cont .detail_blog_contact .detail_blog_contact_textarea .detail_blog_contact_text {
  font-size: calc(20 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_detail_blog .case_contact .case_contact_cont .detail_blog_contact .detail_blog_contact_textarea .detail_blog_contact_text {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
    text-align: left;
  }
}
.page_detail_blog .case_contact .case_contact_cont .detail_blog_contact .case_contact_contact {
  margin-bottom: 0;
  margin-right: 0;
}
.page_detail_blog .case_contact .case_contact_cont .detail_blog_contact .case_contact_telarea {
  padding-left: 0;
}
.page_detail_blog .case_contact .case_contact_telarea {
  padding-left: 0;
}
.page_detail_blog .case_contact .case_contact_product {
  position: relative;
  z-index: 100;
}
@media (max-width: 768px) {
  .page_detail_blog .case_point {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
}
.page_equipment .equipment_about {
  padding: calc(32 / var(--view-size) * 100vw) 0 calc(180 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_about {
    padding: calc(40 / var(--view-size) * 100vw) 0 calc(64 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_about .equipment_about_text {
  font-size: calc(25 / var(--view-size) * 100vw);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .page_equipment .equipment_about .equipment_about_text {
    font-size: calc(16 / var(--view-size) * 100vw);
    text-align: left;
  }
}
.page_equipment .equipment_cont {
  padding-bottom: calc(180 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont {
    padding-bottom: calc(48 / var(--view-size) * 100vw);
  }
  .page_equipment .equipment_cont .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item {
  margin-bottom: calc(180 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item {
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item:last-child {
  margin-bottom: 0;
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_ttl {
  font-size: calc(18 / var(--view-size) * 100vw);
  color: #004ea2;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_ttl {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table {
  padding: calc(30 / var(--view-size) * 100vw) 0 calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table {
    padding: calc(24 / var(--view-size) * 100vw) 0 calc(40 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table .equipment_cont_table_text {
  text-align: right;
  margin-bottom: calc(8 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table .equipment_cont_table_text {
    font-size: calc(10 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table {
  width: 100%;
  border-collapse: collapse;
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table tr:nth-child(n+7) {
  display: none;
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td {
    padding: calc(32 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th, .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td {
  border: calc(1 / var(--view-size) * 100vw) solid #c9caca;
  padding: calc(10 / var(--view-size) * 100vw) calc(16 / var(--view-size) * 100vw);
  text-align: center;
  font-size: calc(16 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th, .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td {
    font-size: calc(14 / var(--view-size) * 100vw);
    padding: calc(16 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw);
  }
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th:nth-child(2), .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th:nth-child(4), .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td:nth-child(2), .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td:nth-child(4) {
    width: calc(80 / var(--view-size) * 100vw);
  }
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th:nth-child(3), .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td:nth-child(3) {
    width: calc(51 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th.popup_click p, .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td.popup_click p {
  cursor: pointer;
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th.popup_click p::before, .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td.popup_click p::before {
  content: "";
  background: url(../images/equipment/icon_click.png) center/cover no-repeat;
  position: absolute;
  left: calc(-40 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
  width: calc(29 / var(--view-size) * 100vw);
  height: calc(29 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th.popup_click p::before, .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td.popup_click p::before {
    background: url(../images/equipment/icon_tap.png) center/cover no-repeat;
    width: calc(20 / var(--view-size) * 100vw);
    height: calc(20 / var(--view-size) * 100vw);
    left: calc(-10 / var(--view-size) * 100vw);
    top: -100%;
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th .equipment_cont_table_name, .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table td .equipment_cont_table_name {
  display: inline;
  position: relative;
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_table table th {
  background-color: #e6e6e6;
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_more {
  position: absolute;
  bottom: calc(32 / var(--view-size) * 100vw);
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_more.active {
  opacity: 0;
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_more span {
  width: calc(12 / var(--view-size) * 100vw);
  height: calc(12 / var(--view-size) * 100vw);
  border-radius: 50%;
  background-color: #231815;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_more span {
    width: calc(8 / var(--view-size) * 100vw);
    height: calc(8 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_more span:nth-child(2) {
  top: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_more span:nth-child(2) {
    top: calc(20 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_more span:nth-child(3) {
  top: calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_more span:nth-child(3) {
    top: calc(40 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_acc {
  width: calc(42 / var(--view-size) * 100vw);
  height: calc(42 / var(--view-size) * 100vw);
  border-radius: 50%;
  background-color: #004ea2;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_acc {
    width: calc(32 / var(--view-size) * 100vw);
    height: calc(32 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_acc.active span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0);
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_acc span {
  width: calc(30 / var(--view-size) * 100vw);
  height: calc(5 / var(--view-size) * 100vw);
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}
@media (max-width: 768px) {
  .page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_acc span {
    width: calc(20 / var(--view-size) * 100vw);
    height: calc(4 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_cont .equipment_cont_wrap .equipment_cont_item .equipment_cont_acc span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.page_equipment .equipment_popup {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.page_equipment .equipment_popup .equipment_popup_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: rgba(0, 0, 0, 0.7);
}
.page_equipment .equipment_popup .equipment_popup_item {
  background-color: #fff;
  width: calc(800 / var(--view-size) * 100vw);
  height: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
@media (max-width: 768px) {
  .page_equipment .equipment_popup .equipment_popup_item {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_popup .equipment_popup_item .equipment_popup_imgs {
  margin-bottom: calc(20 / var(--view-size) * 100vw);
}
.page_equipment .equipment_popup .equipment_popup_item .equipment_popup_imgs .equipment_popup_thumbnails {
  width: calc(600 / var(--view-size) * 100vw);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page_equipment .equipment_popup .equipment_popup_item .equipment_popup_imgs .equipment_popup_thumbnails {
    width: 100%;
  }
}
.page_equipment .equipment_popup .equipment_popup_item .equipment_popup_textarea {
  padding: calc(32 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_popup .equipment_popup_item .equipment_popup_textarea {
    padding: calc(20 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_popup .equipment_popup_item .equipment_popup_textarea .equipment_popup_ttl {
  font-size: calc(32 / var(--view-size) * 100vw);
  color: #004ea2;
  margin-bottom: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_popup .equipment_popup_item .equipment_popup_textarea .equipment_popup_ttl {
    font-size: calc(18 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_popup .equipment_popup_item .equipment_popup_textarea .equipment_popup_text {
  font-size: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_equipment .equipment_popup .equipment_popup_item .equipment_popup_textarea .equipment_popup_text {
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_popup .equipment_popup_item .equipment_popup_close {
  position: absolute;
  top: calc(-20 / var(--view-size) * 100vw);
  right: calc(-20 / var(--view-size) * 100vw);
  background-color: #004ea2;
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page_equipment .equipment_popup .equipment_popup_item .equipment_popup_close {
    width: calc(30 / var(--view-size) * 100vw);
    height: calc(30 / var(--view-size) * 100vw);
    top: calc(-10 / var(--view-size) * 100vw);
    right: calc(-10 / var(--view-size) * 100vw);
  }
}
.page_equipment .equipment_popup .equipment_popup_item .equipment_popup_close span {
  display: inline-block;
  height: calc(2 / var(--view-size) * 100vw);
  width: calc(22 / var(--view-size) * 100vw);
  background-color: #fff;
  position: absolute;
  top: calc(0 / var(--view-size) * 100vw);
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}
.page_equipment .equipment_popup .equipment_popup_item .equipment_popup_close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.page_equipment .equipment_popup .equipment_popup_item .equipment_popup_close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}
.page_equipment .case_point {
  padding-top: calc(24 / var(--view-size) * 100vw);
}
.page_product .product_categories {
  padding: calc(80 / var(--view-size) * 100vw) 0 calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_product .product_categories {
    padding: calc(54 / var(--view-size) * 100vw) 0 calc(18 / var(--view-size) * 100vw);
  }
  .page_product .product_categories .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_product .product_categories .product_categories_text {
  font-size: calc(17 / var(--view-size) * 100vw);
  text-align: center;
  margin-bottom: calc(50 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .page_product .product_categories .product_categories_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_product .product_categories .product_categories_text::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(-20 / var(--view-size) * 100vw);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: calc(8 / var(--view-size) * 100vw) solid transparent;
  border-left: calc(8 / var(--view-size) * 100vw) solid transparent;
  border-top: calc(14 / var(--view-size) * 100vw) solid #004ea2;
  border-bottom: 0;
}
.page_product .product_categories .product_categories_list a {
  display: block;
  width: calc(209 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  padding: calc(20 / var(--view-size) * 100vw) 0;
  text-align: center;
  font-size: calc(20 / var(--view-size) * 100vw);
  color: #004ea2;
  transition: .3s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page_product .product_categories .product_categories_list a {
    width: calc(168 / var(--view-size) * 100vw);
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.page_product .product_categories .product_categories_list a:hover {
  background-color: #004ea2;
  color: #fff;
  opacity: 1;
}
.page_product .product_categories .product_categories_list a.active {
  background-color: #004ea2;
  color: #fff;
  opacity: 1;
}
.page_product .product_cont {
  padding-bottom: calc(200 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_product .product_cont {
    padding-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group {
  position: relative;
  z-index: 10;
  margin-bottom: calc(28 / var(--view-size) * 100vw);
  border-top: calc(1 / var(--view-size) * 100vw) solid #c9caca;
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group {
    margin-bottom: calc(20 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group:last-child {
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #c9caca;
}
.page_product .product_cont .product_cont_group:last-child .product_cont_acc {
  padding-bottom: calc(28 / var(--view-size) * 100vw);
}
.page_product .product_cont .product_cont_group .product_cont_download {
  width: calc(430 / var(--view-size) * 100vw);
  font-size: calc(20 / var(--view-size) * 100vw);
  color: #004ea2;
  padding: calc(20 / var(--view-size) * 100vw) 0;
  padding-left: calc(20 / var(--view-size) * 100vw);
  position: relative;
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  margin-right: calc(48 / var(--view-size) * 100vw);
  display: none;
}
.page_product .product_cont .product_cont_group .product_cont_download.sp_db {
  display: none !important;
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_download {
    width: calc(315 / var(--view-size) * 100vw);
    font-size: calc(14 / var(--view-size) * 100vw);
    padding-left: calc(16 / var(--view-size) * 100vw);
  }
  .page_product .product_cont .product_cont_group .product_cont_download.sp_db {
    display: block !important;
    margin-bottom: calc(24 / var(--view-size) * 100vw);
  }
  .page_product .product_cont .product_cont_group .product_cont_download.sp_dn {
    display: none !important;
  }
}
.page_product .product_cont .product_cont_group .product_cont_download::after {
  content: "";
  background: url(../images/icon_useful.png) center/cover no-repeat;
  width: calc(24 / var(--view-size) * 100vw);
  height: calc(24 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(20 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_download::after {
    width: calc(16 / var(--view-size) * 100vw);
    height: calc(16 / var(--view-size) * 100vw);
    right: calc(16 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group .product_cont_acc {
  padding-top: calc(28 / var(--view-size) * 100vw);
  cursor: pointer;
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_acc {
    padding-top: calc(20 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group .product_cont_acc .product_cont_name {
  font-size: calc(35 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_acc .product_cont_name {
    font-size: calc(24 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group .product_cont_acc .product_cont_btns .product_cont_plus {
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  background-color: #004ea2;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_acc .product_cont_btns .product_cont_plus {
    width: calc(21 / var(--view-size) * 100vw);
    height: calc(21 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group .product_cont_acc .product_cont_btns .product_cont_plus span {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: calc(5 / var(--view-size) * 100vw);
  width: calc(24 / var(--view-size) * 100vw);
  transition: .3s;
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_acc .product_cont_btns .product_cont_plus span {
    height: calc(2 / var(--view-size) * 100vw);
    width: calc(11 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group .product_cont_acc .product_cont_btns .product_cont_plus span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.page_product .product_cont .product_cont_group .product_cont_acc.active .product_cont_plus span:last-child {
  transform: translate(-50%, -50%);
}
.page_product .product_cont .product_cont_group .product_cont_cont {
  padding-top: calc(40 / var(--view-size) * 100vw);
  display: none;
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_cont {
    padding-top: calc(16 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item {
  margin-bottom: calc(45 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
    padding-top: calc(20 / var(--view-size) * 100vw);
    border-top: calc(1 / var(--view-size) * 100vw) solid #c9caca;
  }
}
.page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_name {
  font-size: calc(20 / var(--view-size) * 100vw);
  margin-bottom: calc(20 / var(--view-size) * 100vw);
  color: #004ea2;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_name {
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_row::before {
  content: "";
  width: calc(319 / var(--view-size) * 100vw);
  order: 1;
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_row::before {
    content: none;
  }
}
.page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_row::after {
  content: "";
  width: calc(319 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_row::after {
    content: none;
  }
}
.page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_row .product_item_box {
  width: calc(319 / var(--view-size) * 100vw);
  font-size: calc(17 / var(--view-size) * 100vw);
  position: relative;
  padding: calc(20 / var(--view-size) * 100vw) 0;
  padding-left: calc(14 / var(--view-size) * 100vw);
  background-color: #e9ecf6;
  margin-bottom: calc(10 / var(--view-size) * 100vw);
  font-weight: 700;
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_row .product_item_box {
    width: 100%;
    font-size: calc(16 / var(--view-size) * 100vw);
    padding: calc(16 / var(--view-size) * 100vw) 0;
    padding-left: calc(12 / var(--view-size) * 100vw);
  }
}
.page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_row .product_item_box::after {
  content: "";
  background: url(../images/icon_useful.png) center/cover no-repeat;
  width: calc(24 / var(--view-size) * 100vw);
  height: calc(24 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(14 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .page_product .product_cont .product_cont_group .product_cont_cont .product_cont_item .product_item_row .product_item_box::after {
    width: calc(16 / var(--view-size) * 100vw);
    height: calc(16 / var(--view-size) * 100vw);
    right: calc(10 / var(--view-size) * 100vw);
  }
}
.page_product .case_point {
  padding-top: calc(24 / var(--view-size) * 100vw);
}
#product_cont_steel, #product_cont_stainless, #product_cont_aluminum, #product_cont_brass, #product_cont_resin, #product_cont_reference {
  padding-top: calc(120 / var(--view-size) * 100vw);
  margin-top: calc(-120 / var(--view-size) * 100vw);
  z-index: -1;
  position: relative;
}
@media (max-width: 768px) {
  #product_cont_steel, #product_cont_stainless, #product_cont_aluminum, #product_cont_brass, #product_cont_resin, #product_cont_reference {
    padding-top: calc(90 / var(--view-size) * 100vw);
    margin-top: calc(-90 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .page_news_cont.top_news {
    padding-bottom: 0;
  }
}
.page_blog_detail .common_mv .common_mv_cate_wrap {
  text-align: center;
  margin-top: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog_detail .common_mv .common_mv_cate_wrap {
    margin-top: calc(10 / var(--view-size) * 100vw);
  }
}
.page_blog_detail .common_mv .common_mv_cate_wrap .common_mv_cate {
  display: inline;
  font-size: calc(20 / var(--view-size) * 100vw);
  color: #fff;
  padding: calc(4 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #fff;
}
@media (max-width: 768px) {
  .page_blog_detail .common_mv .common_mv_cate_wrap .common_mv_cate {
    padding: calc(2 / var(--view-size) * 100vw) calc(10 / var(--view-size) * 100vw);
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.page_blog_detail .blog_detail_cont {
  padding: calc(94 / var(--view-size) * 100vw) 0 calc(216 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog_detail .blog_detail_cont {
    padding: calc(40 / var(--view-size) * 100vw) 0;
  }
  .page_blog_detail .blog_detail_cont .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_blog_detail .blog_detail_cont p {
  font-size: calc(30 / var(--view-size) * 100vw);
  font-weight: 600;
}
@media (max-width: 768px) {
  .page_blog_detail .blog_detail_cont p {
    font-size: calc(18 / var(--view-size) * 100vw);
  }
}
.page_blog_detail .blog_detail_cont .blog_detail_btn {
  padding: calc(20 / var(--view-size) * 100vw) 0;
  width: calc(418 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  color: #004ea2;
  font-weight: 600;
  padding-left: calc(34 / var(--view-size) * 100vw);
  position: relative;
  background-color: #fff;
  display: block;
  font-size: calc(20 / var(--view-size) * 100vw);
  margin: calc(128 / var(--view-size) * 100vw) auto 0;
}
@media (max-width: 768px) {
  .page_blog_detail .blog_detail_cont .blog_detail_btn {
    width: calc(315 / var(--view-size) * 100vw);
    padding: calc(13 / var(--view-size) * 100vw);
    padding-left: calc(40 / var(--view-size) * 100vw);
    font-size: calc(14 / var(--view-size) * 100vw);
    margin-top: calc(32 / var(--view-size) * 100vw);
  }
}
.page_blog_detail .blog_detail_cont .blog_detail_btn:after {
  content: "";
  background: url(../images/icon_useful.png) center/cover no-repeat;
  width: calc(24 / var(--view-size) * 100vw);
  height: calc(24 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(14 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .page_blog_detail .blog_detail_cont .blog_detail_btn:after {
    width: calc(16 / var(--view-size) * 100vw);
    height: calc(16 / var(--view-size) * 100vw);
    right: calc(16 / var(--view-size) * 100vw);
  }
}
.page_recruit .page_recruit_wrap {
  padding: calc(100 / var(--view-size) * 100vw) 0;
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap {
    padding: calc(40 / var(--view-size) * 100vw) 0 calc(70 / var(--view-size) * 100vw);
  }
  .page_recruit .page_recruit_wrap .inner {
    width: 100%;
  }
}
.page_recruit .page_recruit_wrap .page_recruit_group {
  background-color: #004ea2;
  border-radius: calc(32 / var(--view-size) * 100vw);
  padding: calc(48 / var(--view-size) * 100vw) calc(64 / var(--view-size) * 100vw);
  color: #fff;
  margin-bottom: calc(64 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap .page_recruit_group {
    padding: calc(36 / var(--view-size) * 100vw) calc(16 / var(--view-size) * 100vw);
  }
}
.page_recruit .page_recruit_wrap .page_recruit_group:last-child {
  margin-bottom: 0;
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea {
  cursor: pointer;
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea .recruit_group_ttl {
  font-size: calc(50 / var(--view-size) * 100vw);
  font-weight: bold;
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea .recruit_group_ttl {
    font-size: calc(28 / var(--view-size) * 100vw);
    width: 100%;
    text-align: center;
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea .recruit_group_acc {
  position: absolute;
  background-color: #004ea2;
  left: 50%;
  bottom: calc(-40 / var(--view-size) * 100vw);
  transform: translateX(-50%);
  width: calc(80 / var(--view-size) * 100vw);
  height: calc(80 / var(--view-size) * 100vw);
  border-radius: 50%;
  border: calc(10 / var(--view-size) * 100vw) solid #fff;
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea .recruit_group_acc {
    bottom: calc(-30 / var(--view-size) * 100vw);
    width: calc(60 / var(--view-size) * 100vw);
    height: calc(60 / var(--view-size) * 100vw);
    border: calc(4 / var(--view-size) * 100vw) solid #fff;
  }
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea .recruit_group_acc span {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: calc(10 / var(--view-size) * 100vw);
  width: calc(44 / var(--view-size) * 100vw);
  transition: .3s;
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea .recruit_group_acc span {
    height: calc(6 / var(--view-size) * 100vw);
    width: calc(32 / var(--view-size) * 100vw);
  }
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea .recruit_group_acc span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea.active .recruit_group_acc span:last-child {
  transform: translate(-50%, -50%);
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea .common_btn {
  margin-right: 0;
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_ttlarea .common_btn {
    width: calc(315 / var(--view-size) * 100vw);
    margin: 0 auto;
  }
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_cont {
  padding-top: calc(64 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_cont {
    padding-top: calc(32 / var(--view-size) * 100vw);
  }
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_cont .recruit_group_table {
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #fff;
  padding: calc(32 / var(--view-size) * 100vw) 0;
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_cont .recruit_group_table {
    padding: calc(16 / var(--view-size) * 100vw) 0;
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_cont .recruit_group_table:last-child {
  border-bottom: none;
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_cont .recruit_table_name {
  width: 35%;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_cont .recruit_table_name {
    width: 100%;
    margin-bottom: calc(8 / var(--view-size) * 100vw);
    text-align: left;
  }
}
.page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_cont .recruit_table_text {
  width: 65%;
}
@media (max-width: 768px) {
  .page_recruit .page_recruit_wrap .page_recruit_group .recruit_group_cont .recruit_table_text {
    width: 100%;
  }
}
.page_recruit .recruit_contact_subttl {
  font-size: calc(30 / var(--view-size) * 100vw);
  color: #f5a83e;
  font-weight: 600;
  margin-bottom: calc(8 / var(--view-size) * 100vw);
  text-align: center;
}
@media (max-width: 768px) {
  .page_recruit .recruit_contact_subttl {
    font-size: calc(20 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_about .equipment_about_text {
  text-align: left;
  font-weight: 500;
}
.page_company .page_company_about .company_about_message {
  text-align: right;
  font-size: calc(25 / var(--view-size) * 100vw);
  margin-top: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_about .company_about_message {
    font-size: calc(16 / var(--view-size) * 100vw);
    margin-top: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_table {
  padding-bottom: calc(116 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_table {
    padding-top: calc(0 / var(--view-size) * 100vw);
    padding-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_table .inner {
  width: calc(1064 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_table .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_table .company_table_row {
  padding: calc(24 / var(--view-size) * 100vw) 0;
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #666766;
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row {
    padding: calc(16 / var(--view-size) * 100vw) 0;
  }
  .page_company .page_company_table .company_table_row:nth-child(2) .company_table_access .company_table_btn {
    text-align: center;
    padding-left: 0;
  }
}
.page_company .page_company_table .company_table_row .company_table_name {
  font-size: calc(25 / var(--view-size) * 100vw);
  width: 30%;
  text-align: center;
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row .company_table_name {
    width: 100%;
    text-align: left;
    margin-bottom: calc(8 / var(--view-size) * 100vw);
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_table .company_table_row .company_table_text {
  font-size: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row .company_table_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_table .company_table_row .company_table_info {
  width: 70%;
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row .company_table_info {
    width: 100%;
  }
}
.page_company .page_company_table .company_table_row .company_table_info li {
  width: 40%;
  font-size: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row .company_table_info li {
    width: 50%;
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_table .company_table_row .company_table_access {
  margin-right: 0;
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row .company_table_access {
    width: 100%;
    margin-top: calc(8 / var(--view-size) * 100vw);
    text-align: center;
  }
}
.page_company .page_company_table .company_table_row .company_table_access .company_table_btn {
  position: relative;
  padding-left: calc(12 / var(--view-size) * 100vw);
  padding-right: calc(56 / var(--view-size) * 100vw);
  text-align: left;
  width: 100%;
  margin-bottom: calc(8 / var(--view-size) * 100vw);
  font-size: calc(17 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row .company_table_access .company_table_btn {
    width: calc(316 / var(--view-size) * 100vw);
    margin: 0 auto calc(12 / var(--view-size) * 100vw);
    font-size: calc(14 / var(--view-size) * 100vw);
    padding-left: calc(78 / var(--view-size) * 100vw);
    padding-right: 0;
  }
}
.page_company .page_company_table .company_table_row .company_table_access .company_table_btn::after {
  content: "";
  background: url(../images/icon_contact_blue.png) center/cover no-repeat;
  width: calc(28 / var(--view-size) * 100vw);
  height: calc(19 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(18 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row .company_table_access .company_table_btn::after {
    width: calc(18 / var(--view-size) * 100vw);
    height: calc(12 / var(--view-size) * 100vw);
    right: calc(78 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_table .company_table_row .company_table_access .company_table_btn:hover {
  background-color: #004ea2;
  color: #fff;
}
.page_company .page_company_table .company_table_row .company_table_access .company_table_btn:hover::after {
  background: url(../images/icon_contact_white.png) center/cover no-repeat;
}
.page_company .page_company_table .company_table_row .company_table_access .company_table_map {
  font-size: calc(17 / var(--view-size) * 100vw);
  padding-left: calc(36 / var(--view-size) * 100vw);
  color: #004ea2;
  position: relative;
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row .company_table_access .company_table_map {
    font-size: calc(14 / var(--view-size) * 100vw);
    padding-left: calc(21 / var(--view-size) * 100vw);
    text-align: center;
  }
}
.page_company .page_company_table .company_table_row .company_table_access .company_table_map::before {
  content: "";
  background: url(../images/icon_map.png) center/cover no-repeat;
  width: calc(17 / var(--view-size) * 100vw);
  height: calc(25 / var(--view-size) * 100vw);
  position: absolute;
  left: calc(12 / var(--view-size) * 100vw);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .page_company .page_company_table .company_table_row .company_table_access .company_table_map::before {
    width: calc(14 / var(--view-size) * 100vw);
    height: calc(21 / var(--view-size) * 100vw);
    left: calc(0 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history {
  padding-bottom: calc(120 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history {
    padding-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .common_ttl {
  margin-bottom: calc(90 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .common_ttl {
    margin-bottom: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .inner {
  width: calc(1090 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap {
  position: relative;
}
.page_company .page_company_history .company_history_wrap::before {
  content: "";
  width: calc(10 / var(--view-size) * 100vw);
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #004ea2;
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap::before {
    width: calc(4 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap::after {
  content: "";
  width: calc(10 / var(--view-size) * 100vw);
  height: calc(180 / var(--view-size) * 100vw);
  position: absolute;
  left: 50%;
  bottom: calc(-180 / var(--view-size) * 100vw);
  transform: translateX(-50%);
  background-color: #004ea2;
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap::after {
    width: calc(4 / var(--view-size) * 100vw);
    height: calc(84 / var(--view-size) * 100vw);
    bottom: calc(-84 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_group {
  margin-bottom: calc(95 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_group {
    margin-bottom: calc(48 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_group:last-child {
  margin-bottom: calc(0 / var(--view-size) * 100vw);
}
.page_company .page_company_history .company_history_wrap .company_history_group .company_history_acc {
  position: relative;
  z-index: 100;
  cursor: pointer;
}
.page_company .page_company_history .company_history_wrap .company_history_group .company_history_acc.active .company_history_plus span:last-child {
  transform: translate(-50%, -50%);
}
.page_company .page_company_history .company_history_wrap .company_history_group .company_history_acc .company_history_ttl {
  width: 50%;
  padding-right: calc(56 / var(--view-size) * 100vw);
  color: #004ea2;
  text-align: right;
  font-weight: 600;
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_group .company_history_acc .company_history_ttl {
    padding-right: calc(28 / var(--view-size) * 100vw);
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_group .company_history_acc .company_history_plus {
  position: absolute;
  background-color: #004ea2;
  left: 50%;
  top: calc(-16 / var(--view-size) * 100vw);
  transform: translateX(-50%);
  width: calc(80 / var(--view-size) * 100vw);
  height: calc(80 / var(--view-size) * 100vw);
  border-radius: 50%;
  border: calc(10 / var(--view-size) * 100vw) solid #fff;
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_group .company_history_acc .company_history_plus {
    width: calc(21 / var(--view-size) * 100vw);
    height: calc(21 / var(--view-size) * 100vw);
    border: calc(6 / var(--view-size) * 100vw) solid #fff;
    top: calc(-6 / var(--view-size) * 100vw);
    box-sizing: content-box;
  }
}
.page_company .page_company_history .company_history_wrap .company_history_group .company_history_acc .company_history_plus span {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: calc(10 / var(--view-size) * 100vw);
  width: calc(44 / var(--view-size) * 100vw);
  transition: .3s;
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_group .company_history_acc .company_history_plus span {
    height: calc(2 / var(--view-size) * 100vw);
    width: calc(11 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_group .company_history_acc .company_history_plus span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.page_company .page_company_history .company_history_wrap .company_history_cont {
  transform: translateY(calc(-80 / var(--view-size) * 100vw));
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont {
    transform: translateY(calc(0 / var(--view-size) * 100vw));
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item {
  width: calc(480 / var(--view-size) * 100vw);
  position: relative;
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item {
    width: calc(150 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_img {
  cursor: pointer;
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_border {
  position: absolute;
  top: calc(16 / var(--view-size) * 100vw);
  left: calc(0 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_border {
    top: calc(-16 / var(--view-size) * 100vw);
    left: calc(-21 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_border span {
  display: block;
  width: calc(77 / var(--view-size) * 100vw);
  height: calc(10 / var(--view-size) * 100vw);
  background-color: #004ea2;
  position: relative;
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_border span {
    width: calc(46 / var(--view-size) * 100vw);
    height: calc(3 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_border span::before {
  content: "";
  width: calc(77 / var(--view-size) * 100vw);
  height: calc(10 / var(--view-size) * 100vw);
  background-color: #004ea2;
  transform: rotate(-35deg);
  position: absolute;
  left: calc(-68 / var(--view-size) * 100vw);
  top: calc(22 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_border span::before {
    width: calc(17 / var(--view-size) * 100vw);
    height: calc(3 / var(--view-size) * 100vw);
    left: auto;
    right: calc(-15 / var(--view-size) * 100vw);
    transform: rotate(35deg);
    top: calc(5 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_border span::after {
  content: "";
  width: calc(44 / var(--view-size) * 100vw);
  height: calc(44 / var(--view-size) * 100vw);
  border-radius: 50%;
  background-color: #004ea2;
  position: absolute;
  left: calc(-88 / var(--view-size) * 100vw);
  top: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_border span::after {
    width: calc(16 / var(--view-size) * 100vw);
    height: calc(16 / var(--view-size) * 100vw);
    left: calc(-9 / var(--view-size) * 100vw);
    top: calc(-6 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item.company_history_item_right {
  margin-left: auto;
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item.company_history_item_left {
  margin-right: auto;
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item.company_history_item_left .history_item_border {
  left: auto;
  right: 0;
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item.company_history_item_left .history_item_border {
    right: calc(-20 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item.company_history_item_left .history_item_border span::before {
  transform: scale(-1, 1) rotate(-35deg);
  left: auto;
  right: calc(-68 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item.company_history_item_left .history_item_border span::before {
    transform: rotate(-35deg);
    right: auto;
    left: calc(-15 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item.company_history_item_left .history_item_border span::after {
  left: auto;
  right: calc(-88 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item.company_history_item_left .history_item_border span::after {
    right: calc(-10 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_text {
  font-size: calc(30 / var(--view-size) * 100vw);
  margin-bottom: calc(8 / var(--view-size) * 100vw);
  text-align: center;
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_text .text_small {
  font-size: calc(12 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .page_company_history .company_history_wrap .company_history_cont .company_history_item .history_item_text .text_small {
    font-size: calc(10 / var(--view-size) * 100vw);
  }
}
.page_company .company_history_end {
  padding-top: calc(200 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .company_history_end {
    padding-top: calc(100 / var(--view-size) * 100vw);
  }
}
.page_company .company_history_end .history_end_ttl {
  margin-bottom: calc(16 / var(--view-size) * 100vw);
  font-weight: 600;
}
.page_company .company_history_end .history_end_text {
  text-align: center;
  font-weight: 600;
  font-size: calc(25 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_company .company_history_end .history_end_text {
    text-align: left;
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .history_item_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}
.page_company .history_item_popup .history_item_popup_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: rgba(0, 0, 0, 0.7);
}
.page_company .history_item_popup .history_popup_box {
  width: calc(900 / var(--view-size) * 100vw);
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  border-radius: calc(20 / var(--view-size) * 100vw);
  padding-bottom: calc(60 / var(--view-size) * 100vw);
  z-index: 10002;
}
@media (max-width: 768px) {
  .page_company .history_item_popup .history_popup_box {
    width: calc(345 / var(--view-size) * 100vw);
    border-radius: calc(10 / var(--view-size) * 100vw);
  }
}
.page_company .history_item_popup .history_popup_box .history_popup_img {
  margin-bottom: calc(24 / var(--view-size) * 100vw);
}
.page_company .history_item_popup .history_popup_box .history_popup_img img {
  border-radius: calc(20 / var(--view-size) * 100vw) calc(20 / var(--view-size) * 100vw) 0 0;
}
@media (max-width: 768px) {
  .page_company .history_item_popup .history_popup_box .history_popup_img img {
    border-radius: calc(10 / var(--view-size) * 100vw) calc(10 / var(--view-size) * 100vw) 0 0;
  }
}
.page_company .history_item_popup .history_popup_box .history_popup_text {
  font-size: calc(25 / var(--view-size) * 100vw);
  text-align: center;
}
@media (max-width: 768px) {
  .page_company .history_item_popup .history_popup_box .history_popup_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .history_item_popup .history_popup_box .close {
  background-color: #004ea2;
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  border-radius: 50%;
  position: absolute;
  top: calc(-20 / var(--view-size) * 100vw);
  right: calc(-20 / var(--view-size) * 100vw);
  cursor: pointer;
}
@media (max-width: 768px) {
  .page_company .history_item_popup .history_popup_box .close {
    width: calc(30 / var(--view-size) * 100vw);
    height: calc(30 / var(--view-size) * 100vw);
    top: calc(20 / var(--view-size) * 100vw);
    right: calc(10 / var(--view-size) * 100vw);
  }
}
.page_company .history_item_popup .history_popup_box .close span {
  width: calc(20 / var(--view-size) * 100vw);
  height: calc(2 / var(--view-size) * 100vw);
  background-color: #fff;
  border-radius: calc(4 / var(--view-size) * 100vw);
  position: absolute;
  left: 50%;
  top: 50%;
}
@media (max-width: 768px) {
  .page_company .history_item_popup .history_popup_box .close span {
    width: calc(16 / var(--view-size) * 100vw);
  }
}
.page_company .history_item_popup .history_popup_box .close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.page_company .history_item_popup .history_popup_box .close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.page_contact .page_contact_about {
  padding-top: calc(80 / var(--view-size) * 100vw);
  margin-bottom: calc(140 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_about {
    padding-top: calc(54 / var(--view-size) * 100vw);
    margin-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_about .inner {
  border-bottom: calc(1 / var(--view-size) * 100vw) solid #004ea2;
}
.page_contact .page_contact_about .contact_about_text {
  font-size: calc(30 / var(--view-size) * 100vw);
  font-weight: 600;
  text-align: center;
  padding-bottom: calc(24 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_about .contact_about_text {
    font-size: calc(16 / var(--view-size) * 100vw);
    padding-bottom: calc(12 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont {
  padding-bottom: calc(320 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont {
    padding-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .inner {
    width: calc(345 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item {
  margin-bottom: calc(96 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_textarea {
  background-color: #e9ecf6;
  padding: calc(8 / var(--view-size) * 100vw);
  width: 30%;
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_textarea {
    width: 100%;
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_textarea .contact_form_text {
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_textarea .contact_form_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_textarea .contact_form_text .required {
  color: #e73230;
  vertical-align: super;
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input {
  width: 70%;
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input {
    width: 100%;
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input input, .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input textarea {
  width: 100%;
  background-color: #fff;
  padding: calc(19 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
  font-size: calc(30 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input input, .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input textarea {
    padding: 8px;
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input .contact_form_select {
  position: relative;
  cursor: pointer;
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input .contact_form_select::after {
  content: "";
  background: url(../images/arrow_bottom_blue.png) center/cover no-repeat;
  width: calc(47 / var(--view-size) * 100vw);
  height: calc(23 / var(--view-size) * 100vw);
  position: absolute;
  right: calc(24 / var(--view-size) * 100vw);
  top: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input .contact_form_select::after {
    width: calc(14 / var(--view-size) * 100vw);
    height: calc(7 / var(--view-size) * 100vw);
    right: calc(8 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input .contact_form_select select {
  width: 100%;
  font-size: calc(30 / var(--view-size) * 100vw);
  appearance: none;
  cursor: pointer;
  padding: calc(19 / var(--view-size) * 100vw) calc(24 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  color: #040000;
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input .contact_form_select select {
    padding: 8px;
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input.contact_form_tel input {
  width: calc(208 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input.contact_form_tel input {
    width: 98px;
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input.contact_form_tel p {
  font-size: calc(30 / var(--view-size) * 100vw);
  padding: 0 calc(15 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_input.contact_form_tel p {
    font-size: calc(14 / var(--view-size) * 100vw);
    padding: 0 calc(4 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_file_list {
  padding-left: calc(80 / var(--view-size) * 100vw);
  margin-top: calc(16 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_file_list {
    padding-left: 0;
  }
}
.page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_file_list li {
  font-size: calc(30 / var(--view-size) * 100vw);
  color: #9a9a9b;
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_item_wrap .contact_form_item .contact_form_file_list li {
    font-size: calc(12 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_submitarea {
  text-align: center;
  margin-top: calc(80 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_submitarea {
    margin-top: calc(32 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_submitarea .submit_btn input[type=submit] {
  width: calc(960 / var(--view-size) * 100vw);
  background-color: #004ea2;
  text-align: center;
  color: #fff;
  font-size: calc(30 / var(--view-size) * 100vw);
  cursor: pointer;
  padding: calc(16 / var(--view-size) * 100vw);
  border: calc(1 / var(--view-size) * 100vw) solid #004ea2;
  transition: .3s;
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_submitarea .submit_btn input[type=submit] {
    width: 100%;
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_contact .page_contact_cont .contact_form_submitarea .submit_btn input[type=submit]:hover {
  background-color: #fff;
  color: #004ea2;
}
.page_contact .page_contact_cont .contact_form_submitarea .contact_form_privacy {
  font-size: calc(20 / var(--view-size) * 100vw);
  margin-top: calc(8 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_submitarea .contact_form_privacy {
    font-size: calc(12 / var(--view-size) * 100vw);
    text-align: left;
  }
}
.page_contact .page_contact_cont .contact_form_submitarea .contact_form_privacy .form_privacy_link {
  color: #004ea2;
  letter-spacing: calc(3 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_contact .page_contact_cont .contact_form_submitarea .contact_form_privacy .form_privacy_link {
    letter-spacing: calc(0 / var(--view-size) * 100vw);
  }
}
.page_blog .page_case_search .case_search_ttl {
  text-align: left;
  padding-left: calc(48 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_case_search .case_search_ttl {
    padding-left: calc(10 / var(--view-size) * 100vw);
    font-size: calc(14 / var(--view-size) * 100vw);
  }
}
.page_blog .page_case_search .case_search_ttl .faq_label {
  padding: calc(4 / var(--view-size) * 100vw) calc(10 / var(--view-size) * 100vw);
  background-color: #004ea2;
  color: #fff;
  font-size: calc(18 / var(--view-size) * 100vw);
  border-radius: calc(40 / var(--view-size) * 100vw);
  font-weight: 500;
  margin-left: calc(24 / var(--view-size) * 100vw);
  vertical-align: text-bottom;
}
@media (max-width: 768px) {
  .page_blog .page_case_search .case_search_ttl .faq_label {
    font-size: calc(10 / var(--view-size) * 100vw);
    margin-left: calc(4 / var(--view-size) * 100vw);
  }
}
.page_blog .page_case_search .case_search_cont .case_search_item .case_search_row .case_search_tags {
  width: 100%;
}
.page_blog .page_faq_cont {
  padding-bottom: calc(148 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_faq_cont {
    padding-bottom: calc(40 / var(--view-size) * 100vw);
  }
}
.page_blog .page_faq_cont .page_faq_item {
  margin-bottom: calc(50 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_faq_cont .page_faq_item {
    margin-bottom: calc(32 / var(--view-size) * 100vw);
  }
}
.page_blog .page_faq_cont .page_faq_item:last-child {
  margin-bottom: 0;
}
.page_blog .page_faq_cont .page_faq_item .question {
  background-color: #004ea2;
  padding: calc(24 / var(--view-size) * 100vw);
  padding-left: calc(40 / var(--view-size) * 100vw);
  transition: .3s;
  border-radius: calc(10 / var(--view-size) * 100vw);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 768px) {
  .page_blog .page_faq_cont .page_faq_item .question {
    padding: calc(12 / var(--view-size) * 100vw);
    padding-left: calc(20 / var(--view-size) * 100vw);
  }
}
.page_blog .page_faq_cont .page_faq_item .question .question_text {
  color: #fff;
  font-size: calc(30 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_faq_cont .page_faq_item .question .question_text {
    font-size: calc(16 / var(--view-size) * 100vw);
  }
}
.page_blog .page_faq_cont .page_faq_item .question .question_plus {
  width: calc(40 / var(--view-size) * 100vw);
  height: calc(40 / var(--view-size) * 100vw);
  background-color: #004ea2;
  border-radius: 50%;
  position: relative;
  border: calc(5 / var(--view-size) * 100vw) solid #fff;
  box-sizing: content-box;
}
@media (max-width: 768px) {
  .page_blog .page_faq_cont .page_faq_item .question .question_plus {
    width: calc(21 / var(--view-size) * 100vw);
    height: calc(21 / var(--view-size) * 100vw);
    border: calc(2 / var(--view-size) * 100vw) solid #fff;
  }
}
.page_blog .page_faq_cont .page_faq_item .question .question_plus span {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: calc(5 / var(--view-size) * 100vw);
  width: calc(24 / var(--view-size) * 100vw);
  transition: .3s;
}
@media (max-width: 768px) {
  .page_blog .page_faq_cont .page_faq_item .question .question_plus span {
    height: calc(2 / var(--view-size) * 100vw);
    width: calc(11 / var(--view-size) * 100vw);
  }
}
.page_blog .page_faq_cont .page_faq_item .question .question_plus span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.page_blog .page_faq_cont .page_faq_item .question.active {
  border-radius: calc(10 / var(--view-size) * 100vw) calc(10 / var(--view-size) * 100vw) 0 0;
}
.page_blog .page_faq_cont .page_faq_item .question.active .question_plus span:last-child {
  transform: translate(-50%, -50%);
}
.page_blog .page_faq_cont .page_faq_item .answer {
  display: none;
  font-size: calc(24 / var(--view-size) * 100vw);
  padding: calc(24 / var(--view-size) * 100vw);
  padding-left: calc(40 / var(--view-size) * 100vw);
  border: calc(2 / var(--view-size) * 100vw) solid #004ea2;
  border-radius: 0 0 calc(10 / var(--view-size) * 100vw) calc(10 / var(--view-size) * 100vw);
}
@media (max-width: 768px) {
  .page_blog .page_faq_cont .page_faq_item .answer {
    font-size: calc(14 / var(--view-size) * 100vw);
    padding: calc(12 / var(--view-size) * 100vw);
    padding-left: calc(20 / var(--view-size) * 100vw);
  }
}