@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  background-color: #F0F3F6;
  color: #333;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

figure {
  text-align: center;
}
figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.flex_box {
  display: flex;
}
.flex_box.align-items-center {
  align-items: center;
}
.flex_box.reverse {
  flex-direction: row-reverse;
}

.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0;
}

.pb0 {
  padding-bottom: 0 !important;
}

b {
  font-weight: bold;
}

small {
  font-size: 80%;
}

.sp {
  display: none;
}

a:not([href]) {
  cursor: none;
  pointer-events: none;
}
a:not([href]):hover {
  opacity: 1;
}

a[href^="tel:"] {
  pointer-events: none;
}

.img_box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1200px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
.bg-white {
  background-color: #fff;
}

.container_l {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  padding: 0 1%;
}

.mainvisual {
  background: url("../img/mainvisual.png") no-repeat center/cover;
  height: 800px;
  position: relative;
}
.mainvisual .maincopy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.mainvisual .maincopy img {
  width: 100%;
  max-width: 521px;
  height: auto;
}

.service {
  padding: 90px 0 120px;
  background: url("../img/automachin.png");
  background-repeat: no-repeat;
  background-blend-mode: lighten;
  background-position: center bottom;
  background-size: 1616px;
  z-index: -1;
}
.service .flex_box {
  gap: 160px;
}
.service .flex_box h2 {
  width: 280px;
}
.service .flex_box .service_text {
  flex: 1;
}
.service .flex_box .service_text h3 {
  font-size: 40px;
  margin-bottom: 32px;
}

.slidecard {
  padding: 80px 0 80px;
}
.slidecard.pt0 {
  padding: 0 0 80px;
}
.slidecard .l-inner {
  padding: 80px;
  box-sizing: border-box;
}
.slidecard .flex_box {
  align-items: center;
  gap: 70px;
}
.slidecard .flex_left {
  width: 240px;
}
.slidecard .flex_left h2 {
  font-size: 48px;
  line-height: 1.3;
  color: #333;
}
.slidecard .flex_left h2 span {
  font-size: 24px;
  padding-left: 0;
}
.slidecard .flex_left h2 span::before {
  content: none;
}
.slidecard .splide {
  flex: 1;
}
.slidecard .splide .slide-media .new-mark {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E88F00;
  color: var(--white);
  font-weight: bold;
  padding: 8px 10px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 1;
}
.slidecard .splide .slide-content {
  margin-top: 20px;
  text-align: center;
}
.slidecard .splide__pagination.border__style {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 32px;
  text-align: center;
}
.slidecard .splide__pagination.border__style > li {
  width: 100%;
}
.slidecard .splide__pagination.border__style .splide__pagination__page {
  width: 100%;
  height: 4px;
  cursor: pointer;
  vertical-align: top;
  background-color: var(--gray);
}
.slidecard .splide__pagination.border__style .splide__pagination__page.is-active {
  background-color: var(--text);
}

.features {
  padding: 80px 0;
  background: linear-gradient(169deg, #003BBE 50%, #0033A3 50%);
}
.features .flex_box {
  gap: 100px;
  align-items: center;
}
.features .flex_box.outside_right {
  margin-right: calc(50% - 50vw);
}
.features .flex_left {
  width: 600px;
  padding-left: 1%;
}
.features .flex-right {
  flex: 1;
  height: 720px;
  background: url("../img/features.jpg") no-repeat left/cover;
  border-radius: var(--radius);
}

.company {
  padding: 80px 0;
}
.company .img_box img {
  border-radius: var(--radius);
}
.company .flex_box {
  gap: 110px;
  align-items: center;
}

.recruit .recruit_inner {
  padding: 50px 80px;
  background: url("../img/recruit_bg.png") no-repeat center/cover;
}
.recruit h2 {
  color: #fff;
}
.recruit h3 {
  font-size: 24px;
}

.news {
  padding: 80px 0;
}
.news .flex_box {
  align-items: center;
  gap: 80px;
}
.news .flex_right {
  flex: 1;
}
.news .new_list > li a {
  position: relative;
  border-top: 1px solid var(--blue);
  padding: 24px 0;
  display: block;
}
.news .new_list > li a::after {
  content: "";
  display: block;
  background: url("../img/news_arrow_w.svg") no-repeat center/contain;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}
.news .new_list > li a:hover::after {
  background: url("../img/news_arrow.svg") no-repeat center/contain;
}
.news .new_list > li:last-of-type a {
  border-bottom: 1px solid #0033A3;
}

.cta {
  background: url("../img/contact_bg.png") no-repeat center/cover;
  height: 464px;
  padding: 44px 10px 60px;
}
.cta h2 {
  color: #fff;
  font-size: 32px;
  text-align: center;
  line-height: 1.4;
}
.cta h2 span {
  font-size: 24px;
}
.cta p {
  color: #fff;
  font-size: 20px;
}
.cta .flex_box {
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.cta .flex_box .more {
  margin-top: 0;
}
.cta .cta_tel {
  margin-top: 35px;
}
.cta .cta_tel .cta_tel_inner {
  display: flex;
  align-items: center;
}
.cta .cta_tel .cta_tel_inner p {
  padding: 13px 15px;
}
.cta .cta_tel .cta_tel_inner p.text::before {
  content: "";
  display: inline-block;
  background: url("../img/tel_w.svg") no-repeat center/contain;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.cta .cta_tel .cta_tel_inner p.number {
  border-left: 1px solid #fff;
}
.cta .cta_tel .note {
  font-size: 12px;
}

.top .ttl h2 img {
  margin-bottom: 10px;
}
.top .ttl span {
  display: block;
  font-size: 30px;
}

body.home section.news .inner {
  padding: 80px 40px;
  gap: 100px;
}

body.home section.news .ttl {
  margin-right: 0;
  text-align: left;
}

.square_btn {
  width: 100%;
  padding: 10px 10px;
  max-width: 360px;
}
.square_btn.long_btn {
  max-width: 500px;
}

body.home section.news .news_list_wrap {
  height: auto;
}

.news_info {
  display: flex;
  gap: 20px;
}
.news_info .category {
  background-color: #FFEEB7;
  padding: 0 10px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 90%;
  display: flex;
  align-items: center;
}

/* ***************************************************
 PARTS
*************************************************** */
.home header a.text_line::after {
  background: var(--white);
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: color 0.4s ease-out;
}
header.headerColorScroll {
  background: rgba(0, 59, 190, 0.9);
  transition: color 0.4s ease-out;
}
header .header_container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 40px 1% 30px;
}
header .logo {
  max-width: 200px;
}
header .logo img {
  width: 100%;
  height: auto;
  display: block;
}
header .global_list {
  display: flex;
  gap: 16px;
}
header .global_list li {
  color: #fff;
  font-weight: bold;
}
header .global_list li a.btn_ctc {
  margin-left: 8px;
  background-color: #E88F00;
  border: 1px solid #E88F00;
  color: #fff;
  padding: 15px 20px;
  max-width: 240px;
  border-radius: 8px;
  transition: 0.3s;
}
header .global_list li a.btn_ctc span {
  position: relative;
  padding-left: 1.8em;
}
header .global_list li a.btn_ctc span::before {
  content: "";
  display: inline-block;
  margin: auto;
  background: url("../img/mail_w.svg") no-repeat center/contain;
  width: 24px;
  height: 20px;
  margin-bottom: 10px;
  transition: 0.3s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
header .global_list li a.btn_ctc:hover {
  background-color: #fff;
  color: #E88F00;
}
header .global_list li a.btn_ctc:hover span::before {
  background: url("../img/mail.svg") no-repeat center/contain;
}

.scroll-prevent {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/*menu*/
.hamburger_btn {
  height: 16px;
  position: relative;
  width: 24px;
  z-index: 99;
}
.hamburger_btn .menu__line {
  background: #fff;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.3s;
  width: 100%;
}
.hamburger_btn .menu__line--top {
  top: 0;
}
.hamburger_btn .menu__line--center {
  top: 7px;
}
.hamburger_btn .menu__line--bottom {
  bottom: 0;
}
.hamburger_btn .menu__line--top.active {
  top: 7px;
  transform: rotate(45deg);
}
.hamburger_btn .menu__line--center.active {
  transform: scaleX(0);
}
.hamburger_btn .menu__line--bottom.active {
  bottom: 8px;
  transform: rotate(135deg);
}

/*gnav*/
.gnav {
  background: rgba(0, 59, 190, 0.95);
  display: none;
  position: fixed;
  width: 100%;
  z-index: 98;
  top: 0;
  left: 0;
  overflow-y: auto;
  max-height: 100vh;
  height: 100dvh;
}

.gnav__wrap {
  width: 100%;
  height: 100%;
  padding: 60px 16px 0;
  position: relative;
}
.gnav__wrap .sp_logo {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 16px;
}
.gnav__wrap .sp_logo img {
  max-width: 88px;
}
.gnav__wrap .more a.btn_ctc {
  max-width: 100%;
}
.gnav__wrap .tel_contents {
  color: #fff;
  margin-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  font-size: 12px;
}
.gnav__wrap .tel_contents .number {
  display: inline-block;
  position: relative;
  font-size: 24px;
}
.gnav__wrap .tel_contents .number::before {
  content: "";
  display: inline-block;
  background: url("../img/tel_w.svg") no-repeat center/contain;
  width: 18px;
  height: 18px;
  margin: auto;
  margin-right: 5px;
}

.gnav__menu__item a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: block;
  text-decoration: none;
  transition: 0.5s;
  position: relative;
}
.gnav__menu__item a:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.gnav__menu__item a::after {
  content: "";
  display: block;
  background: url("../img/arrow_w.svg");
  width: 18px;
  height: 22px;
  position: absolute;
  right: 0;
  top: 36%;
}
.gnav__menu__item a span {
  display: block;
  font-size: 10px;
}

header.is-fixed {
  translate: 0 0;
}

header .global_list {
  gap: 20px;
}

.global_list li {
  position: relative;
}
.global_list li ul.menuSub {
  position: absolute;
  padding: 0 0 5px;
  display: none;
  width: 140%;
  min-width: 220px;
  background-color: #fff;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.global_list li ul.menuSub li {
  padding: 0 5px;
}
.global_list li ul.menuSub li a {
  padding: 0 10px;
  padding: 5px;
  display: block;
  text-decoration: none;
  position: relative;
  padding-left: 1.4em;
}
.global_list li ul.menuSub li a::before {
  content: "";
  display: block;
  width: 4px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
footer .footer_container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 60px 1% 20px;
}
footer .footer_container .footer_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .logo {
  max-width: 200px;
}
footer .logo img {
  width: 100%;
  height: auto;
}
footer .global_list {
  display: flex;
  gap: 16px;
}
footer .global_list li {
  color: #333;
  font-weight: bold;
}
footer .global_list li a.btn_ctc {
  margin-left: 8px;
  background-color: #E88F00;
  border: 1px solid #E88F00;
  color: #fff;
  padding: 15px 20px;
  max-width: 240px;
  border-radius: 8px;
  transition: 0.3s;
}
footer .global_list li a.btn_ctc span {
  position: relative;
  padding-left: 1.8em;
}
footer .global_list li a.btn_ctc span::before {
  content: "";
  display: inline-block;
  margin: auto;
  background: url("../img/mail_w.svg") no-repeat center/contain;
  width: 24px;
  height: 20px;
  margin-bottom: 10px;
  transition: 0.3s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
footer .global_list li a.btn_ctc:hover {
  background-color: #fff;
  color: #E88F00;
}
footer .global_list li a.btn_ctc:hover span::before {
  background: url("../img/mail.svg") no-repeat center/contain;
}
footer .cta_tel {
  margin-top: 35px;
  align-items: center;
  justify-content: end;
}
footer .cta_tel .cta_tel_inner {
  display: flex;
  align-items: center;
}
footer .cta_tel .cta_tel_inner p {
  padding: 13px 15px;
}
footer .cta_tel .cta_tel_inner p.text::before {
  content: "";
  display: inline-block;
  background: url("../img/tel.svg") no-repeat center/contain;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
footer .cta_tel .cta_tel_inner p.number {
  border-left: 1px solid #333;
}
footer .cta_tel .note {
  font-size: 12px;
}
footer .global_sub_nav {
  margin-top: 24px;
}
footer .global_sub_nav .global_sub_list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 24px;
}
footer .global_sub_nav .global_sub_list > li {
  font-weight: bold;
}
footer .copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid #333;
}

h2 {
  color: #003BBE;
  font-weight: bold;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 40px;
}
h2 span {
  font-size: 20px;
  display: block;
  font-family: "Jost", sans-serif;
  position: relative;
  padding-left: 16px;
}
h2 span::before {
  content: "";
  display: inline-block;
  background-color: #003BBE;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
h2.white_text span::before {
  background-color: #fff;
}

h3 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 0.5em;
}

.orange_text {
  color: #FF8700;
}

.yellow_marker {
  background: linear-gradient(transparent 65%, #ff0 65%);
}

.white_text {
  color: #fff;
}

.font_jost {
  font-family: "Jost", sans-serif;
}

@media screen and (max-width: 1200px) {
  h2 {
    font-size: 36px;
    margin-bottom: 32px;
    line-height: 1.3;
  }
  h2 span {
    font-size: 14px;
    padding-left: 14px;
  }
  h3 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 0.5em;
  }
}
.more {
  margin-top: 40px;
  width: 100%;
  max-width: 280px;
}
.more.text-center {
  margin: 40px auto 0;
}
.more a {
  color: #003BBE;
  background-color: #fff;
  font-weight: bold;
  transition: 0.3s;
  border: 1px solid #003BBE;
  padding: 0.7em 20px;
  border-radius: 32px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  display: inline-block;
}
.more a.btn_ctc {
  background-color: #E88F00;
  border: 1px solid #E88F00;
  color: #fff;
  max-width: 240px;
  border-radius: 8px;
}
.more a.btn_ctc span {
  position: relative;
  padding-left: 1.8em;
}
.more a.btn_ctc span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 20px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  background: url(../img/mail_w.svg) center center/contain no-repeat;
  transition: 0.3s;
  margin: auto;
}
.more a.btn_ctc.no_icon {
  max-width: 100%;
}
.more a.btn_ctc.no_icon span {
  padding: 0;
}
.more a.btn_ctc.no_icon span::before {
  content: none;
}
.more a.btn_ctc.no_icon:hover {
  color: #E88F00;
  background-color: #fff;
}
.more a.btn_box {
  background-color: #E88F00;
  color: #fff;
  padding: 38px 10px 38px;
  border-radius: 8px;
  max-width: 280px;
  width: 100%;
}
.more a.btn_box::before {
  content: "";
  display: block;
  margin: auto;
  background: url("../img/mail_w.svg") no-repeat center/contain;
  width: 31px;
  height: 24px;
  margin-bottom: 10px;
  transition: 0.3s;
}
.more a.arrow {
  position: relative;
  display: inline-block;
}
.more a.arrow::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("../img/arrow.svg") no-repeat center/contain;
  width: 18px;
  height: 18px;
  top: 31%;
  right: 8%;
  margin: auto;
  transition: 0.3s;
}
.more a.arrow.back_arrow::after {
  top: 31%;
  left: 8%;
  right: auto;
  transform: rotate(180deg);
}
.more a.arrow.orange {
  background-color: #E88F00;
  border: 1px solid #E88F00;
  color: #fff;
}
.more a.arrow.orange::after {
  background: url("../img/arrow_w.svg") no-repeat center/contain;
}
.more a.arrow.orange:hover {
  background-color: #fff;
  color: #E88F00;
}
.more a.arrow.orange:hover::after {
  background: url("../img/arrow_orange.svg") no-repeat center/contain;
}
.more a:hover {
  color: #fff;
  background-color: #003BBE;
}
.more a:hover.btn_box {
  background-color: #fff;
  color: #E88F00;
}
.more a:hover.btn_box::before {
  background: url("../img/mail.svg") no-repeat center/contain;
}
.more a:hover.arrow::after {
  background: url("../img/arrow_w.svg") no-repeat center/contain;
}

a.text_line {
  padding: 0 2px 5px;
  position: relative;
}
a.text_line::after {
  background: #333;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
a.text_line:hover {
  opacity: 1;
}
a.text_line:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (max-width: 1200px) {
  .more {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
  }
  .more a {
    color: #003BBE;
    background-color: #fff;
    font-weight: bold;
    transition: 0.3s;
    border: 1px solid #003BBE;
    padding: 0.7em 20px;
    border-radius: 32px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    display: inline-block;
  }
  .more a.btn_ctc {
    background-color: #E88F00;
    border: 1px solid #E88F00;
    color: #fff;
    max-width: 240px;
    border-radius: 8px;
  }
  .more a.btn_box {
    background-color: #E88F00;
    color: #fff;
    padding: 18px 10px;
    border-radius: 8px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
  .more a.btn_box::before {
    content: "";
    display: inline-block;
    margin: auto;
    background: url("../img/mail_w.svg") no-repeat center/contain;
    width: 24px;
    height: 18px;
    margin-bottom: -1%;
    margin-right: 5px;
    transition: 0.3s;
  }
  .more a.arrow {
    position: relative;
    display: inline-block;
  }
  .more a.arrow::after {
    content: "";
    display: inline-block;
    position: absolute;
    background: url("../img/arrow.svg") no-repeat center/contain;
    width: 18px;
    height: 18px;
    top: 31%;
    right: 8%;
    margin: auto;
    transition: 0.3s;
  }
  .more a:hover {
    color: #fff;
    background-color: #003BBE;
  }
  .more a:hover.btn_box {
    background-color: #fff;
    color: #E88F00;
  }
  .more a:hover.btn_box::before {
    background: url("../img/mail.svg") no-repeat center/contain;
  }
  .more a:hover.arrow::after {
    background: url("../img/arrow_w.svg") no-repeat center/contain;
  }
  a.text_line {
    padding: 0 2px 5px;
    position: relative;
  }
  a.text_line::after {
    background: #333;
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
  a.text_line:hover {
    opacity: 1;
  }
  a.text_line:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.l-inner {
  position: relative;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section .l-inner {
  padding: 80px;
  max-width: 1280px;
  background-color: #fff;
  border-radius: 40px;
}

.c-temp {
  line-height: 1;
}

.c-temp .l-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.c-temp .text {
  font-size: 2.4rem;
  font-weight: bold;
}

.c-temp .button {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  width: 12rem;
  padding: 1.6rem 0 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 100px;
  background-color: var(--color-theme);
}

.c-footer .l-inner {
  padding-top: 0;
}

.c-footer .text {
  color: var(--color-gray);
}

.c-info {
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 4rem;
  margin-bottom: 6.4rem;
}

.c-info li {
  position: relative;
  padding-left: 16px;
  color: #fff;
}

.c-info li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 2px;
  content: "";
  background-color: var(--color-gray);
}

.c-info li + li {
  margin-top: 0.8rem;
}

.c-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  display: inline-block;
  min-width: 32rem;
  margin-bottom: 6.4rem;
  vertical-align: top;
  color: #fff;
}

.c-title [class*=ico-] {
  font-size: 1.3rem;
  line-height: 1;
  display: block;
  width: 10rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 0 0.6rem;
  text-align: center;
  letter-spacing: 0.05em;
  border-radius: 100px;
  background-color: var(--color-theme-darken);
}

.c-title .ico-advanced {
  color: #fff;
  background-color: #333;
}

/* slider */
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splide {
  z-index: 0;
}

/* 前へ / 次へボタン */
.splide__arrow--prev,
.splide__arrow--next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: var(--transition);
  background-color: var(--color-theme-darken);
  border-radius: 50%;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}

.splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide__pagination {
  font-size: 0;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide-wrapper {
  position: relative;
}

.splide__arrow > svg {
  display: none;
}

.card01 .splide-area {
  position: relative;
}

.card01 .splide__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  justify-content: center;
  margin-top: 3.2rem;
  text-align: center;
}

.card01 .splide__pagination__page {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  transition: var(--transition);
  vertical-align: top;
  background-color: var(--color-gray);
}

.card01 .splide__pagination__page.is-active {
  width: 4rem;
  background-color: var(--color-theme);
}

.card01 .splide__arrow--prev,
.card01 .splide__arrow--next {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
}

.card01 .splide__arrow--prev {
  right: calc(100% + 2.4rem);
}

.card01 .splide__arrow--next {
  left: calc(100% + 2.4rem);
}

.card01 .slide-media {
  padding-top: 62.5%;
  border-radius: 4px;
}

.card01 .slide-media img {
  height: calc(100% + 16px);
  transform: translateY(-16px);
}

.card01 .slide-content {
  padding: 3.2rem 0;
}

.card01 .slide-date {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  color: var(--color-theme);
}

.card01 .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.2em;
  margin-top: 1.6rem;
}

@media only screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 4rem;
  }
  .card01 .splide__arrow--prev::before,
  .card01 .splide__arrow--next::before {
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: var(--box-shadow-dark);
  }
  .card01 .splide__arrow--prev::after,
  .card01 .splide__arrow--next::after {
    border-color: #fff;
  }
  .card01 .splide__arrow--prev {
    right: calc(100% - 3.2rem);
  }
  .card01 .splide__arrow--next {
    left: calc(100% - 3.2rem);
  }
}
@media only screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .splide__arrow--prev::before,
  .splide__arrow--next::before {
    transition: var(--transition);
  }
  .splide__arrow--prev:hover::before,
  .splide__arrow--next:hover::before {
    transform: scale(1.2);
  }
  .card01 .splide__track {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .card01 .slide {
    transition: var(--transition);
  }
  .card01 .slide img {
    transition: var(--transition);
  }
  .card01 .slide:hover {
    transform: translateY(-16px);
  }
  .card01 .slide:hover img {
    transform: translateY(0);
  }
}
.contact-form .contact-form-container {
  background-color: var(--white);
  padding: 40px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
}
.contact-form .contact-form-inner {
  max-width: 800px;
  margin: auto;
}
.contact-form .form-item-2col {
  display: flex;
  align-items: center;
  gap: 24px;
}
.contact-form .form-item-2col .form-item {
  flex: 1;
}
.contact-form .form-title {
  font-size: 20px;
  font-weight: bold;
  padding-left: 16px;
  border-left: 4px solid var(--blue);
  margin-bottom: 16px;
}
.contact-form .form-title:not(:first-of-type) {
  margin-top: 40px;
}
.contact-form .form-item {
  margin-top: 20px;
}
.contact-form .form-item label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}
.contact-form .form-item input[type=text],
.contact-form .form-item input[type=tel],
.contact-form .form-item input[type=email],
.contact-form .form-item textarea {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background-color: #F0F3F6;
  padding: 8px;
}
.contact-form .form-item textarea {
  height: 120px;
}
.contact-form .form-item .form-acceptance {
  text-align: center;
}
.contact-form .form-item .form-acceptance input[type=checkbox] {
  position: absolute;
  top: 58%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  opacity: 0;
}
.contact-form .form-item .form-acceptance .wpcf7-list-item-label {
  position: relative;
}
.contact-form .form-item .form-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 58%;
  left: -1.8em;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--blue);
  background: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}
.contact-form .form-item .form-acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 58%;
  left: -1.8em;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: transparent url("../img/form/form-check.svg") no-repeat center center/contain;
  cursor: pointer;
  background-size: 11px 11px;
  transition: all 0.3s;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  opacity: 0;
}
.contact-form .form-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact-form .form-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 0;
}
.contact-form .form-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form .postcode {
  margin-bottom: 8px;
}
.contact-form .postcode input {
  max-width: 180px;
}
.contact-form .postcode #zip-btn {
  background-color: var(--blue);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}
.contact-form .form-hissu,
.contact-form .form-free {
  color: #ffffff;
  font-size: 11px;
  margin-left: 8px;
  padding: 2px 8px;
  background-color: #EF3E2E;
  border-radius: 4px;
}
.contact-form .form-free {
  color: var(--text);
  background-color: var(--gray);
}
.contact-form .last-check {
  text-align: center;
}
.contact-form .last-check .form-flex {
  justify-content: center;
}
.contact-form .last-check label {
  font-size: 16px;
}
.contact-form .form-item.send-btn, .contact-form .form-item.return-btn {
  max-width: 270px;
  margin: 40px auto 0;
}
.contact-form .form-item.send-btn input[type=submit], .contact-form .form-item.return-btn input[type=submit] {
  background-color: #E88F00;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #E88F00;
  padding: 0.7em 20px;
  border-radius: 32px;
  width: 100%;
  text-align: center;
  position: relative;
}
.contact-form .form-item.send-btn input[type=submit]:disabled, .contact-form .form-item.return-btn input[type=submit]:disabled {
  background-color: #8c8c8c;
  border: 1px solid #8c8c8c;
  cursor: not-allowed;
}
.contact-form .form-item.send-btn input[type=submit]:hover, .contact-form .form-item.return-btn input[type=submit]:hover {
  color: #E88F00;
  background-color: #fff;
}
.contact-form .form-item.return-btn button {
  background-color: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}
.contact-form .form-item.return-btn button:hover {
  color: var(--white);
  background-color: var(--blue);
}

@media screen and (max-width: 1200px) {
  .contact-form .contact-form-container {
    padding: 32px 24px;
  }
  .contact-form .form-item-2col {
    display: block;
  }
  .contact-form .form-title {
    font-size: 18px;
    padding-left: 8px;
    margin-bottom: 16px;
  }
  .contact-form .form-title:not(:first-of-type) {
    margin-top: 32px;
  }
  .contact-form .form-item {
    margin-top: 20px;
  }
  .contact-form .postcode input {
    max-width: 120px;
  }
  .contact-form .last-check {
    padding: 0 16px;
    text-align: left;
  }
  .contact-form .last-check .form-flex {
    justify-content: left;
    padding-left: 12px;
  }
}
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.wp-pagenavi a,
.wp-pagenavi .current {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.wp-pagenavi a:hover {
  border: 1px solid var(--blue);
}
.wp-pagenavi .current {
  background: var(--blue);
  color: var(--white);
}

:root {
  --blue: #003BBE;
  --blue-dark: #1341b0;
  --blue-light: #e8f0fe;
  --yellow: #f59e0b;
  --yellow-btn: #f59e0b;
  --gray-bg: #F0F3F6;
  --gray: #F0F3F6;
  --gray-light: #F9FAFB;
  --gray-mid: #9ca3af;
  --gray-dark: #374151;
  --text: #333;
  --text-light: #666;
  --white: #ffffff;
  --border: #E5E7EB;
  --radius: 16px;
  --shadow: 0 2px 8px rgba(46, 13, 13, 0.08);
}

.page header {
  background-color: #fff;
}
.page .global_list li {
  color: inherit;
}
.page .hamburger_btn .menu__line {
  background: #333;
}
.page .hamburger_btn .menu__line.active {
  background: #fff;
}
.page main {
  padding-top: 120px;
}

@media screen and (max-width: 1200px) {
  .page main {
    padding-top: 80px;
  }
}
/* ===== BREADCRUMB ===== */
.breadcrumb {
  margin-bottom: 40px;
}

.breadcrumb-inner {
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumb-inner a {
  color: var(--text-light);
}

.breadcrumb-inner a:hover {
  color: var(--blue);
}

.breadcrumb-inner span {
  margin: 0 6px;
}

.page_h1 {
  color: #003BBE;
  font-weight: bold;
  font-size: 64px;
  line-height: 1.2;
}
.page_h1 span {
  font-size: 20px;
  display: block;
  font-family: "Jost", sans-serif;
  position: relative;
  padding-left: 16px;
}
.page_h1 span::before {
  content: "";
  display: inline-block;
  background-color: #003BBE;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.page_h1.white_text span::before {
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .page_h1 {
    font-size: 28px;
  }
  .page_h1 span {
    font-size: 14px;
  }
}

.page_h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  padding-left: 16px;
  border-left: 4px solid var(--blue);
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .page_h2 {
    font-size: 22px;
  }
}

section {
  padding: 80px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  section {
    padding: 40px 0;
  }
}

/* ===== TABLE ===== */
.terms_list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.terms_list > li {
  color: var(--blue);
  background-color: var(--white);
  font-weight: bold;
  border-radius: 30px;
}
.terms_list > li a {
  padding: 8px 24px;
  display: block;
}
.terms_list > li a:hover {
  background-color: var(--blue-light);
}
.terms_list > li.current {
  background-color: var(--blue);
  color: var(--white);
}
.terms_list > li.current a {
  cursor: none;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .terms_list > li a {
    font-size: 14px;
  }
}
.machinelineup .table-wrapper {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  overflow: auto;
}
.machinelineup table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
}
.machinelineup thead tr {
  background: var(--blue);
  color: var(--white);
}
.machinelineup thead th {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.machinelineup tbody tr {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.15s;
}
.machinelineup tbody tr:nth-child(even) {
  background: #F9FAFB;
}
.machinelineup tbody tr:hover {
  background: var(--blue-light);
}
.machinelineup tbody tr:last-child {
  border-bottom: none;
}
.machinelineup tbody td {
  padding: 20px 10px;
  vertical-align: middle;
}
.machinelineup .badge-new {
  background: #E88F00;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  line-height: 1;
  border-radius: 3px;
  letter-spacing: 0.5px;
  font-family: "Jost", sans-serif;
}
.machinelineup .badge-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.machinelineup .btn-detail {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 160px;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 32px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s;
}
.machinelineup .btn-detail::after {
  content: "→";
}
.machinelineup .btn-detail:hover {
  background: var(--blue);
  color: var(--white);
}
.machinelineup {
  /* PAGINATION */
}
.machinelineup .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
}
.machinelineup .page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.machinelineup .page-btn:hover,
.machinelineup .page-btn.active {
  background: var(--blue);
  color: var(--white);
}
.machinelineup {
  /* NOTE */
}
.machinelineup .table-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 50px;
}

@media screen and (max-width: 1200px) {
  .machinelineup .badge-cell {
    display: grid;
    gap: 4px;
  }
}
/* ===== FEATURES GRID ===== */
.buyFeatures .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.buyFeatures .feature-card {
  border-radius: var(--radius);
  overflow: hidden;
}
.buyFeatures .feature-img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.buyFeatures .feature-img-placeholder {
  width: 100%;
  aspect-ratio: 17/10;
}
.buyFeatures .feature-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.buyFeatures .feature-body {
  padding: 32px;
  background: var(--white);
  min-height: 223px;
}
.buyFeatures .feature-body h3 {
  display: inline-block;
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
  margin-bottom: 16px;
}

@media screen and (max-width: 1200px) {
  .buyFeatures .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 36px;
  }
  .buyFeatures .feature-body {
    min-height: auto;
  }
}
/* ===== TESTIMONIALS ===== */
.buyvoice .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 140px;
}
.buyvoice .testimonial-card {
  position: relative;
}
.buyvoice .testimonial-avatar {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
}
.buyvoice .testimonial-avatar img {
  max-width: 211px;
  height: auto;
}
.buyvoice .testimonial-body {
  background: #fff;
  padding: 98px 24px 32px;
  border-radius: var(--radius);
}
.buyvoice .quote-mark img {
  width: 41px;
  height: 32px;
  margin-bottom: 8px;
}

@media screen and (max-width: 1200px) {
  .buyvoice .testimonials-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 140px;
  }
  .buyvoice .quote-mark img {
    width: 32px;
    height: auto;
  }
}
/* ===== FLOW ===== */
.buyflow .flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.buyflow .flow-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buyflow .flow-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}
.buyflow .flow-card h3 {
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .buyflow .flow-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .buyflow .flow-card {
    text-align: center;
  }
  .buyflow h3 {
    font-size: 24px;
  }
}
/* ===== FAQ ===== */
.faq__item {
  background: #fff;
  margin-bottom: 24px;
}

/* ===== QUESTION ===== */
.faq__question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.faq__question:hover {
  background: #f0f4ff;
}

/* Q label */
.faq__q-label,
.faq__a-label {
  display: flex;
  align-items: baseline;
  gap: 1px;
  color: #003bbe;
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: bold;
}
.faq__q-label .faq__q-dot,
.faq__a-label .faq__q-dot {
  font-size: 20px;
}

.faq__q-text {
  flex: 1;
  font-weight: bold;
  color: var(--blue);
}

/* +/- icon */
.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  margin-left: auto;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  display: block;
  background: var(--blue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* horizontal bar (always visible) */
.faq__icon::before {
  width: 18px;
  height: 2px;
}

/* vertical bar (becomes hidden when open) */
.faq__icon::after {
  width: 2px;
  height: 18px;
}

/* open state: vertical bar fades/rotates away → shows minus */
.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* ===== ANSWER ===== */
.faq__answer {
  display: none;
  background: #fff;
  gap: 14px;
}

.faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 32px;
}

@media screen and (max-width: 1200px) {
  .faq__question {
    gap: 14px;
    padding: 24px 16px;
  }
  /* Q label */
  .faq__q-label,
  .faq__a-label {
    font-size: 24px;
  }
  /* +/- icon */
  .faq__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
    margin-left: auto;
  }
  /* horizontal bar (always visible) */
  .faq__icon::before {
    width: 12px;
    height: 2px;
  }
  /* vertical bar (becomes hidden when open) */
  .faq__icon::after {
    width: 2px;
    height: 12px;
  }
  /* ===== ANSWER ===== */
  .faq__answer-inner {
    padding: 24px 16px;
  }
}
.single_h1 {
  font-size: 48px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--blue);
  font-weight: bold;
}
.single_h1 span {
  font-size: 20px;
  display: block;
}

.single_h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: inherit;
}

/* ===== PRODUCT LAYOUT ===== */
.product_inner {
  align-items: start;
  margin-top: 60px;
  display: flex;
  gap: 40px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1200px) {
  .product_inner {
    display: block;
    margin-top: 32px;
  }
}

.product__spec {
  flex: 1;
}

/* SPEC CARD */
.spec-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  width: 480px;
}
.spec-card.spec-only {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .spec-card {
    width: 100%;
    padding: 24px;
  }
}

.product__gallery {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1200px) {
  .product__gallery {
    width: 100%;
  }
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.spec-table th,
.spec-table td {
  padding: 14px 20px;
  border: 1px solid var(--gray);
  font-size: 13px;
  vertical-align: top;
  line-height: 1.6;
}

.spec-table th {
  width: 30%;
  font-weight: bold;
  background-color: var(--gray-light);
}

/* GALLERY / SLIDER */
.product__gallery {
  position: relative;
}
.product__gallery .slidecard {
  padding: 0;
}
.product__gallery .slidecard .l-inner {
  padding: 0;
  background: none;
}
.product__gallery .slide-media {
  aspect-ratio: 4/3;
}
.product__gallery .splide__pagination {
  gap: 16px;
  margin-top: 16px;
}
.product__gallery .splide__pagination li .splide__pagination__page {
  width: 8px;
  height: 8px;
  background: #D9D9D9;
  border-radius: 50%;
}
.product__gallery .splide__pagination li .splide__pagination__page.is-active {
  background: var(--blue);
}

/* ===== DETAIL SECTION ===== */
.detail-section__body {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
@media screen and (max-width: 1200px) {
  .detail-section__body {
    padding: 24px;
  }
}

.detail-list {
  padding-left: 1.4em;
  list-style: disc;
  color: var(--text);
}

.detail-list li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (max-width: 1200px) {
  .single_h1 {
    font-size: 28px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--blue);
    font-weight: bold;
  }
  .single_h1 span {
    font-size: 16px;
    display: block;
  }
  .single_h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: inherit;
  }
}
.purchase_features .feature-body {
  background-color: #fff;
}

/* ===== MACHINE GRID ===== */
.purchase_machins .machine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}
@media screen and (max-width: 1200px) {
  .purchase_machins .machine-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
.purchase_machins .machine-card {
  display: block;
  overflow: hidden;
}
.purchase_machins .machine-card__img {
  overflow: hidden;
  aspect-ratio: 26/29;
}
.purchase_machins .machine-card__img .img-placeholder {
  width: 100%;
  height: 100%;
}
.purchase_machins .machine-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.purchase_machins .machine-card__label {
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
.purchase_machins .machine-card__label span {
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .purchase_machins .machine-card__label span {
    font-size: 12px;
  }
}

.purchase_results {
  /* ===== RESULTS ===== */
}
.purchase_results .results__lead {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .purchase_results .results__lead {
    font-size: 18px;
    text-align: left;
  }
}
.purchase_results .results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media screen and (max-width: 1200px) {
  .purchase_results .results-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.purchase_results .result-body {
  padding: 24px 16px;
}
@media screen and (max-width: 1200px) {
  .purchase_results .result-body {
    padding: 16px 8px;
  }
}
.purchase_results .result-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.purchase_results .result-card__img {
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .purchase_results .result-card__img {
    height: auto;
    aspect-ratio: 17/10;
  }
}
.purchase_results .result-card__img .img-placeholder {
  width: 100%;
  height: 100%;
}
.purchase_results .result-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.purchase_results .result-card__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 1200px) {
  .purchase_results .result-card__title {
    font-size: 18px;
  }
}
.purchase_results .result-card__tags {
  display: flex;
  align-items: center;
  gap: 16px 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1200px) {
  .purchase_results .result-card__tags {
    gap: 8px;
  }
}
.purchase_results .result-card__tags:last-of-type {
  margin-bottom: 0;
}
.purchase_results .tag {
  display: inline-block;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 24px;
  width: 90px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .purchase_results .tag {
    width: 72px;
    font-size: 12px;
  }
}
.purchase_results .tag--blue {
  background: var(--blue);
  color: var(--white);
}

/* ===== COMPANY INFO TABLE ===== */
.company_info .info-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 28px 80px 60px;
}
.company_info .info-table {
  width: 100%;
  border-collapse: collapse;
}
.company_info .info-table tr {
  border-bottom: 1px solid var(--border);
}
.company_info .info-table tr:last-child {
  border-bottom: none;
}
.company_info .info-table th,
.company_info .info-table td {
  padding: 0 0 32px;
  vertical-align: top;
  padding: 32px 0;
}
.company_info .info-table th {
  width: 20%;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .company_info .info-card {
    padding: 24px 32px;
  }
  .company_info .info-table th,
  .company_info .info-table td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .company_info .info-table th {
    padding-top: 16px;
  }
  .company_info .info-table td {
    padding: 0 0 16px 0;
  }
}

/* ===== OFFICE BLOCKS ===== */
.office-block {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.office-block:last-of-type {
  margin-bottom: 0;
}

.office-block__header {
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-block__icon {
  font-size: 16px;
}

.office-block__body {
  padding: 40px;
}

.office-block__address {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.office-block__contact {
  color: var(--text-light);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
}
.office-block__contact span {
  display: flex;
  align-items: center;
}
.office-block__contact span:nth-of-type(2) {
  margin-right: 32px;
}
.office-block__contact img {
  margin-right: 8px;
}

.office-block__map {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.office-block__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .office-block__header {
    font-size: 18px;
    padding: 16px 24px;
  }
  .office-block__body {
    padding: 24px;
  }
  .office-block__address {
    font-size: 16px;
  }
}
/* ===== WAREHOUSE BLOCK ===== */
.warehouse-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 40px;
  display: flex;
  gap: 24px;
}

.warehouse-block__name {
  font-size: 20px;
  font-weight: bold;
}

.warehouse-block__address {
  margin-bottom: 4px;
  color: var(--text-light);
}

.warehouse-block__note {
  color: var(--text-light);
}

@media screen and (max-width: 1200px) {
  .warehouse-block {
    padding: 24px;
    display: block;
  }
  .warehouse-block__name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  .warehouse-block__address {
    margin-bottom: 4px;
    color: var(--text-light);
  }
  .warehouse-block__note {
    color: var(--text-light);
  }
}
/* ===== NEWS LIST ===== */
.news-list {
  list-style: none;
  background: #fff;
  border-radius: var(--radius);
  padding: 56px 80px;
}

.news-item {
  border-bottom: 1px solid var(--blue);
}

.news-item:first-child {
  border-top: 1px solid var(--blue);
}

.news-item__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  transition: background 0.2s;
}

.news-item__link:hover .news-item__arrow {
  background: var(--blue);
  color: var(--white);
}

.news-item__body {
  flex: 1;
  min-width: 0;
}

.news-item__date {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.news-item__title {
  font-weight: bold;
}

.news-item__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.pagination__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.pagination__btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pagination__btn--active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  font-weight: 700;
}

.pagination__btn--arrow {
  color: var(--gray-mid);
  font-size: 16px;
}

@media screen and (max-width: 1200px) {
  .news-list {
    padding: 32px 24px;
  }
  .news-item__title {
    font-size: 14px;
  }
  .news-item__arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
/* ===== ARTICLE ===== */
.article {
  background: var(--white);
  border-radius: var(--radius);
  padding: 80px 80px;
  margin-bottom: 32px;
}

/* Article header */
.article__header {
  margin-bottom: 24px;
}

.article__date {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.article__title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 24px;
}

.article__divider {
  border: none;
  border-top: 1px solid #0D131B;
}

/* Article body */
.article__body p {
  margin-bottom: 20px;
}

.article__body p:last-child {
  margin-bottom: 0;
}

.article__link {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.article__link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1200px) {
  /* ===== ARTICLE ===== */
  .article {
    padding: 32px 24px;
  }
  /* Article header */
  .article__header {
    margin-bottom: 24px;
  }
  .article__date {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .article__title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 24px;
  }
  .article__divider {
    border: none;
    border-top: 1px solid #0D131B;
  }
  /* Article body */
  .article__body p {
    margin-bottom: 20px;
  }
  .article__body p:last-child {
    margin-bottom: 0;
  }
  .article__link {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
  }
  .article__link:hover {
    opacity: 0.7;
  }
}
.contactform-header {
  /* ===== LEAD ===== */
}
.contactform-header .lead {
  text-align: center;
}
.contactform-header .lead__main {
  font-size: 32px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 24px;
}
.contactform-header .lead__sub {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 32px;
}
.contactform-header .lead__tel-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: inline-block;
  width: 100%;
  max-width: 680px;
}
.contactform-header .lead__tel-note {
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: bold;
}
.contactform-header .lead__tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contactform-header .lead__tel-label {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  gap: 5px;
  align-items: center;
}
.contactform-header .lead__tel-label .lead__tel-label_icon {
  display: contents;
}
.contactform-header .lead__tel-divider {
  height: 40px;
  width: 1px;
  background-color: var(--text);
}
.contactform-header .lead__tel-number {
  font-size: 19px;
  font-weight: bold;
  color: var(--blue);
}
.contactform-header .lead__tel-hours {
  font-size: 12px;
  text-align: left;
  line-height: 1.2;
}

/* ===== contactform-body ===== */
.contactform-body {
  padding-top: 0;
}
.contactform-body .form-box {
  padding: 40px 160px;
  background: var(--white);
  border-radius: var(--radius);
}

@media screen and (max-width: 1200px) {
  .contactform-header .lead__main {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .contactform-header .lead__sub {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 24px;
  }
  .contactform-header .lead__tel-row {
    display: block;
  }
  .contactform-header .lead__tel-label {
    justify-content: center;
  }
  .contactform-header .lead__tel-divider {
    height: 40px;
    width: 1px;
    background-color: var(--text);
  }
  .contactform-header .lead__tel-number {
    font-size: 19px;
    font-weight: bold;
    color: var(--blue);
  }
  .contactform-header .lead__tel-hours {
    display: block;
    text-align: center;
    margin-top: 8px;
  }
  .contactform-header .lead__tel-hours b {
    margin-right: 8px;
  }
  /* ===== contactform-body ===== */
  .contactform-body .form-box {
    padding: 24px 16px;
  }
}
.terms .lead {
  font-size: 20px;
  margin-bottom: 80px;
  line-height: 2;
}
.terms {
  /* ===== NOTICE BANNER ===== */
}
.terms .notice-banner {
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  margin-bottom: 40px;
}
.terms {
  /* ===== TERMS LIST ===== */
}
.terms .terms-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.terms {
  /* ===== TERMS ITEM ===== */
}
.terms .terms-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 40px;
}
.terms .terms-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.terms .terms-item__icon {
  width: 56px;
  height: 56px;
}
.terms .terms-item__icon img {
  width: 100%;
  height: auto;
}
.terms .terms-item__title {
  font-size: 20px;
  font-weight: bold;
}
.terms .terms-item__divider {
  border-top: 1px solid var(--border);
  margin: 16px 0 24px;
}
.terms {
  /* Bullet list */
}
.terms .terms-item__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.terms .terms-item__list li {
  font-size: 14px;
  padding-left: 1.2em;
  position: relative;
}
.terms .terms-item__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}
.terms {
  /* Note box */
}
.terms .terms-item__note {
  margin-top: 24px;
  background: var(--gray);
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
}

@media screen and (max-width: 1200px) {
  .terms .lead {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .terms {
    /* ===== NOTICE BANNER ===== */
  }
  .terms .notice-banner {
    font-size: 16px;
    padding: 16px;
    margin-bottom: 40px;
  }
  .terms {
    /* ===== TERMS ITEM ===== */
  }
  .terms .terms-item {
    padding: 24px 16px;
  }
  .terms .terms-item__icon {
    width: 40px;
    height: 40px;
  }
  .terms .terms-item__title {
    font-size: 18px;
  }
}
/* ===== APPEAL GRID ===== */
.recruit-appeal .appeal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: auto;
}
.recruit-appeal .appeal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 16px;
  text-align: center;
}
.recruit-appeal .appeal-card__icon {
  width: 140px;
  height: 140px;
  margin: auto;
  margin-bottom: 32px;
}
.recruit-appeal .appeal-card__icon img {
  width: 100%;
  height: auto;
}
.recruit-appeal .appeal-card__icon svg {
  width: 40px;
  height: 40px;
}
.recruit-appeal .appeal-card__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.recruit-appeal .appeal-card__text {
  color: var(--text-light);
}

/* ===== JOB CARD ===== */
.recruit-jobs .job-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  padding: 48px 80px;
}
.recruit-jobs .job-card:last-child {
  margin-bottom: 0;
}
.recruit-jobs .job-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.recruit-jobs .job-badge {
  display: inline-block;
  width: 120px;
  text-align: center;
  font-weight: 700;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 30px;
  white-space: nowrap;
  background: var(--blue);
  color: var(--white);
}
.recruit-jobs .job-card__catch {
  font-size: 28px;
  font-weight: bold;
}
.recruit-jobs {
  /* Info grid */
}
.recruit-jobs .job-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 16px;
  margin-bottom: 28px;
}
.recruit-jobs .job-info__label {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.recruit-jobs .job-info__label span {
  display: inline-block;
}
.recruit-jobs .job-info__value {
  font-weight: bold;
}
.recruit-jobs .job-info__note {
  font-size: 14px;
  font-weight: normal;
}
.recruit-jobs {
  /* Detail block */
}
.recruit-jobs .job-detail {
  margin-bottom: 24px;
}
.recruit-jobs .job-detail:last-of-type {
  margin-bottom: 0;
}
.recruit-jobs .job-detail__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.recruit-jobs .job-detail__box {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 24px;
}
.recruit-jobs .job-detail__lead {
  margin-bottom: 12px;
  font-weight: bold;
}
.recruit-jobs .job-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recruit-jobs .job-detail__list li {
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 4px;
}
.recruit-jobs .job-detail__text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
}

/* ===== FLOW ===== */
.recruit-flow .flow-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 16px;
}
.recruit-flow .flow-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 222px;
}
.recruit-flow .flow-step__num {
  width: 64px;
  height: 64px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.recruit-flow .flow-step__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}
.recruit-flow .flow-step__text {
  font-size: 13px;
  color: var(--text-light);
}
.recruit-flow .flow-arrow {
  font-size: 18px;
  color: var(--blue);
  padding: 0 8px;
  flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
  /* ===== APPEAL GRID ===== */
  .recruit-appeal .appeal-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .recruit-appeal .appeal-card {
    padding: 32px 16px;
  }
  .recruit-appeal .appeal-card__icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
  }
  /* ===== JOB CARD ===== */
  .recruit-jobs .job-card {
    margin-bottom: 24px;
    padding: 32px 24px;
  }
  .recruit-jobs .job-card__header {
    display: block;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
  }
  .recruit-jobs .job-badge {
    display: inline-block;
    width: auto;
    margin-bottom: 12px;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    padding: 5px 16px;
  }
  .recruit-jobs .job-card__catch {
    font-size: 20px;
    display: block;
  }
  .recruit-jobs {
    /* Info grid */
  }
  .recruit-jobs .job-info-grid {
    gap: 0;
    margin-bottom: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
  .recruit-jobs .job-info {
    border-top: 1px solid var(--gray);
    padding: 24px 0;
  }
  .recruit-jobs .job-info:last-of-type {
    border-bottom: 1px solid var(--gray);
  }
  .recruit-jobs {
    /* Detail block */
  }
  .recruit-jobs .job-detail {
    margin-bottom: 24px;
  }
  .recruit-jobs .job-detail:last-of-type {
    margin-bottom: 0;
  }
  .recruit-jobs .job-detail__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  .recruit-jobs .job-detail__list li {
    align-items: baseline;
    gap: 8px;
  }
  .recruit-jobs .job-detail__list li img {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex: none;
  }
  .recruit-flow .flow-grid {
    display: block;
  }
  .recruit-flow .flow-step {
    padding: 24px;
    max-width: 100%;
  }
  .recruit-flow .flow-step__num {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin: 0 auto 16px;
  }
  .recruit-flow .flow-step__text {
    font-size: 13px;
    color: var(--text-light);
  }
  .recruit-flow .flow-arrow {
    font-size: 20px;
    color: var(--blue);
    padding: 16px 0;
    flex-shrink: 0;
    text-align: center;
  }
}
/* ===== STRENGTHS BANNER ===== */
.strengths-banner {
  background: linear-gradient(169deg, #003BBE 50%, #0033A3 50%);
  margin-top: 140px;
}

.strengths-banner__body {
  display: flex;
  align-items: center;
  gap: 80px;
}
.strengths-banner__body.outside_left {
  margin-left: calc(50% - 50vw);
}
.strengths-banner__body .strengths-banner-left {
  flex: 1;
  height: 720px;
  background: url("../img/features/feature_img01.png") no-repeat right/cover;
  margin-top: -160px;
}
.strengths-banner__body .strengths-banner-right {
  width: 567px;
}

.strengths-banner__title {
  font-size: 42px;
  font-weight: bold;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 32px;
}

.strengths-banner__text {
  color: var(--white);
  margin-bottom: 32px;
}

/* 3 mini cards */
.strengths-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.strengths-cards .strengths-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
}
.strengths-cards .strengths-card__icon {
  display: block;
  margin-bottom: 16px;
  text-align: center;
}
.strengths-cards .strengths-card__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.strengths-cards .strengths-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

/* ===== SERVICE CARD ===== */
.features-service .service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 48px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom: 40px;
  gap: 50px;
}
.features-service .service-card:last-child {
  margin-bottom: 0;
}
.features-service .service-card .service-card__body {
  width: 490px;
}
.features-service .service-card .service-card__img {
  flex: 1;
}
.features-service .service-card .service-card__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}
.features-service .service-card__title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 8px;
}
.features-service .service-card__lead {
  color: var(--text-light);
}
.features-service .service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.features-service .service-card__list li {
  color: var(--blue);
  font-weight: bold;
  padding-left: 1.6em;
  position: relative;
}
.features-service .service-card__list li::before {
  content: "";
  position: absolute;
  background: url("../img/features/check.svg") no-repeat center/contain;
  display: block;
  width: 16px;
  height: 16px;
  top: 20%;
  left: 0;
}
.features-service .service-card__maker {
  background: var(--gray);
  border-radius: 8px;
  padding: 20px;
}
.features-service .service-card__maker-label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
}
.features-service .service-card__maker-list {
  font-size: 13px;
  color: var(--text-light);
}
.features-service .service-card__btns .more:not(:first-child) {
  margin-top: 20px;
}

/* ===== QUALITY LIST ===== */
.features-step .container {
  margin-inline: auto;
  counter-reset: step-index;
}
.features-step .features-step-inner {
  margin: auto;
}
.features-step .step {
  position: relative;
  padding-bottom: 40px;
  counter-increment: step-index;
}
.features-step {
  /* 縦線の描画 */
}
.features-step .step:not(:last-child)::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--blue);
}
.features-step .step-title {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
}
.features-step .step-title::before {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  content: counter(step-index);
  background-color: var(--blue);
  border-radius: 50%;
}
.features-step .quality-item__process {
  display: inline-block;
  background: var(--gray);
  color: var(--blue);
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 10px;
}
.features-step .quality-item__title {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}
.features-step .step-text {
  padding-left: 70px;
  font-size: 16px;
  color: var(--text-light);
}

@media screen and (max-width: 1200px) {
  /* ===== STRENGTHS BANNER ===== */
  .strengths-banner {
    background: linear-gradient(150deg, #003BBE 50%, #0033A3 50%);
    margin-top: 80px;
  }
  .strengths-banner__img {
    margin-top: -80px;
    margin-bottom: 32px;
  }
  .strengths-banner__img img {
    width: 100%;
  }
  .strengths-banner__body {
    display: flex;
    align-items: center;
    gap: 80px;
  }
  .strengths-banner__body.outside_left {
    margin-left: 0;
  }
  .strengths-banner__body .strengths-banner-left {
    display: none;
  }
  .strengths-banner__body .strengths-banner-right {
    width: 100%;
  }
  .strengths-banner__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  /* 3 mini cards */
  .strengths-cards {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
  .strengths-cards .strengths-card {
    padding: 24px;
  }
  /* ===== SERVICE CARD ===== */
  .features-service .service-card {
    padding: 24px;
    display: block;
    margin-bottom: 24px;
    gap: 50px;
  }
  .features-service .service-card:last-child {
    margin-bottom: 0;
  }
  .features-service .service-card .service-card__body {
    width: 100%;
  }
  .features-service .service-card .service-card__img {
    flex: 1;
    margin: 24px 0;
  }
  .features-service .service-card .service-card__img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
  }
  .features-service .service-card__title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
  }
  .features-service .service-card__btns .more {
    margin-top: 24px;
    text-align: center;
  }
  .features-service .service-card__btns .more:not(:first-child) {
    margin-top: 12px;
  }
  .features-step .container {
    margin-inline: auto;
    counter-reset: step-index;
  }
  .features-step .step {
    padding: 24px 24px;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
  }
  .features-step .step-icon {
    color: var(--blue);
    margin: 8px 0;
    text-align: center;
    font-size: 24px;
  }
  .features-step {
    /* 縦線の描画 */
  }
  .features-step .step:not(:last-child)::before {
    content: none;
  }
  .features-step .step-title {
    grid-template-columns: 40px 1fr;
    gap: 13px;
    align-items: center;
    margin-bottom: 8px;
  }
  .features-step .step-title::before {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .features-step .quality-item__process {
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 4px;
  }
  .features-step .quality-item__title {
    font-size: 18px;
    margin-bottom: 0;
  }
  .features-step .step-text {
    padding-left: 0;
  }
}
/* ===== POLICY CARD ===== */
.policy-card {
  /* Intro paragraph */
}
.policy-card .policy-intro {
  margin-bottom: 60px;
}
.policy-card {
  /* ===== POLICY SECTION ===== */
}
.policy-card .policy-section {
  margin-bottom: 60px;
}
.policy-card .policy-section .policy-section__title {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 16px;
}
.policy-card .policy-section .policy-section__divider {
  border: none;
  border-top: 2px solid var(--blue);
  margin-bottom: 16px;
}
.policy-card {
  /* ===== LISTS ===== */
}
.policy-card .policy-list {
  margin-top: 16px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
}
.policy-card .policy-list--ol {
  counter-reset: policy-counter;
}
.policy-card .policy-list--ol li {
  line-height: 1.8;
  padding-left: 1.5em;
  position: relative;
  counter-increment: policy-counter;
}
.policy-card .policy-list--ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  font-size: 16px;
}
.policy-card {
  /* ===== CONTACT BOX ===== */
}
.policy-card .policy-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1200px) {
  /* ===== POLICY CARD ===== */
  .policy-card {
    /* ===== POLICY SECTION ===== */
  }
  .policy-card .policy-section .policy-section__title {
    font-size: 24px;
  }
}
/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width: 1200px) {
  header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
  header .header_container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 20px 16px 20px;
  }
  header .logo {
    max-width: 87px;
  }
  header .logo img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1200px) {
  footer .footer_container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 60px 16px 20px;
  }
  footer .footer_container .footer_inner {
    display: block;
  }
  footer .logo {
    max-width: 200px;
  }
  footer .logo img {
    width: 100%;
    height: auto;
  }
  footer .global_list {
    display: block;
    margin-top: 40px;
  }
  footer .global_list li {
    margin-top: 20px;
  }
  footer .global_list li a.btn_ctc {
    margin-left: 0;
    display: block;
    padding: 15px 20px;
    width: 100%;
    text-align: center;
    max-width: 600px;
    margin: auto;
  }
  footer .global_list li a.btn_ctc span {
    position: relative;
    padding-left: 1.8em;
  }
  footer .global_list li a.btn_ctc span::before {
    content: "";
    display: inline-block;
    margin: auto;
    background: url("../img/mail_w.svg") no-repeat center/contain;
    width: 24px;
    height: 20px;
    margin-bottom: 10px;
    transition: 0.3s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  footer .global_list li a.btn_ctc:hover {
    background-color: #fff;
    color: #E88F00;
  }
  footer .global_list li a.btn_ctc:hover span::before {
    background: url("../img/mail.svg") no-repeat center/contain;
  }
  footer .cta_tel {
    margin-top: 35px;
    align-items: center;
    justify-content: end;
  }
  footer .cta_tel .cta_tel_inner {
    display: block;
    margin-bottom: 10px;
  }
  footer .cta_tel .cta_tel_inner p {
    padding: 0;
    text-align: center;
  }
  footer .cta_tel .cta_tel_inner p.text::before {
    content: "";
    display: inline-block;
    background: url("../img/tel.svg") no-repeat center/contain;
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  footer .cta_tel .cta_tel_inner p.number {
    border-left: none;
    font-size: 20px;
  }
  footer .cta_tel .note {
    font-size: 16px;
    text-align: center;
  }
  footer .global_sub_nav .global_sub_list {
    justify-content: center;
  }
  footer .copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid #333;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1120px;
    margin: auto;
    padding: 0 16px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .flex_box {
    display: block;
  }
  .mainvisual {
    background: url("../img/sp_mainvisual.png") no-repeat center/cover;
    height: 500px;
  }
  .mainvisual .maincopy img {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
  .service {
    padding: 60px 0;
    background-size: 105%;
    background-position: center 93%;
  }
  .service .flex_box {
    gap: 160px;
  }
  .service .flex_box h2 {
    width: 100%;
  }
  .service .flex_box .service_text h3 {
    font-size: 22px;
    margin-bottom: 32px;
  }
  .slidecard {
    margin-bottom: 40px;
    padding: 0 16px;
  }
  .slidecard.pt0 {
    padding: 0 16px 20px;
  }
  .slidecard .l-inner {
    padding: 40px 0;
  }
  .slidecard .flex_left {
    width: 100%;
  }
  .slidecard .flex_left h2 {
    font-size: 32px;
    text-align: center;
  }
  .slidecard .flex_left h2 span {
    font-size: 16px;
  }
  .slidecard .flex_left h2 span::before {
    content: none;
  }
  .slidecard .splide {
    flex: 1;
  }
  .slidecard .splide .slide-media .new-mark {
    font-size: 14px;
  }
  .slidecard .splide .slide-content {
    margin-top: 20px;
    text-align: center;
  }
  .features {
    padding: 60px 16px;
    background: linear-gradient(150deg, #003BBE 50%, #0033A3 50%);
  }
  .features .img_box {
    margin-bottom: 30px;
  }
  .features .flex_box.outside_right {
    margin-right: 0;
  }
  .features .flex_left {
    width: 100%;
  }
  .features .flex-right {
    height: auto;
    background: none;
  }
  .company {
    padding: 60px 0;
  }
  .company .img_box {
    margin-bottom: 30px;
  }
  .recruit .recruit_inner {
    padding: 32px 32px;
    background: url("../img/sp_recruit_bg.png") no-repeat center/cover;
    border-radius: 16px;
  }
  .recruit h3 {
    font-size: 18px;
  }
  .news {
    padding: 80px 0;
  }
  .news .flex_box {
    align-items: center;
    gap: 80px;
  }
  .news .flex_right {
    flex: 1;
  }
  .news .new_list > li a {
    position: relative;
    border-top: 1px solid #0033A3;
    padding: 24px 34px 24px 0;
    display: block;
  }
  .news .new_list > li a::after {
    content: "";
    display: block;
    background: url("../img/news_arrow_w.svg") no-repeat center/contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: 0.3s;
  }
  .news .new_list > li a:hover::after {
    background: url("../img/news_arrow.svg") no-repeat center/contain;
  }
  .cta {
    background: url("../img/contact_bg.png") no-repeat center/cover;
    height: auto;
    padding: 60px 10px;
  }
  .cta h2 {
    color: #fff;
    font-size: 24px;
    text-align: center;
  }
  .cta h2 span {
    font-size: 14px;
    padding-left: 0;
    margin-bottom: 16px;
  }
  .cta p {
    color: #fff;
    font-size: 16px;
  }
  .cta .flex_box {
    justify-content: center;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .cta .flex_box .more {
    margin: 0 auto;
  }
  .cta .cta_tel {
    margin-top: 35px;
  }
  .cta .cta_tel .cta_tel_inner {
    display: block;
    text-align: center;
  }
  .cta .cta_tel .cta_tel_inner p {
    padding: 0;
  }
  .cta .cta_tel .cta_tel_inner p.text::before {
    content: "";
    display: inline-block;
    background: url("../img/tel_w.svg") no-repeat center/contain;
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  .cta .cta_tel .cta_tel_inner p.number {
    border-left: none;
    font-size: 28px;
  }
  .cta .cta_tel .note {
    font-size: 16px;
    text-align: center;
  }
}
/* ***************************************************
 PC
*************************************************** *//*# sourceMappingURL=main.css.map */