@charset "UTF-8";
/*-----------------------------------------
   header
------------------------------------------*/
.header .h_wrapper {
  display: flex;
  justify-content: space-between;
}
.header .logo {
  width: 158px;
}
.header .logo img {
  width: 100%;
  height: auto;
}
.header .sp-menu-btn {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  /* 追加：3本線を縦に積む */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  /* タップしやすいサイズ（任意） */
  width: 44px;
  height: 44px;
}
.header .sp-menu-btn__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  /* gapを使うのでmarginは不要（残すと間隔が二重になる） */
  margin: 0;
}
.header .gmanu {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 600;
}
.header .gmanu .gmanu_list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 8px;
}
.header .gmanu .gmanu_list .nav-item {
  position: relative;
  margin-right: 24px;
}
.header .gmanu .gmanu_list .nav-item a {
  color: #111111;
}
.header .gmanu .gmanu_list .nav-item a:hover {
  text-decoration: none;
  color: #8e8e8d;
}
.header .gmanu .gmanu_list .nav-item .nav-link {
  text-decoration: none;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header .gmanu .gmanu_list .nav-item .dropdown-menu {
  display: none; /* デフォルトは非表示 */
  position: absolute;
  top: 100%; /* 親メニューの直下 */
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 100;
  border-top: 2px solid #FFD700; /* kintoneカラー等のアクセント */
}
.header .gmanu .gmanu_list .nav-item .dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .gmanu .gmanu_list .nav-item .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s;
}
.header .gmanu .gmanu_list .nav-item .dropdown-menu a :hover {
  background-color: #f5f5f5;
  color: #000;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 5px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.header .gmanu .gmanu_list .nav-item.has-dropdown:hover .dropdown-menu {
  display: block; /* マウスオーバーで表示 */
  animation: fadeIn 0.2s ease-out;
}
.header .gmanu .gmanu_list .nav-item._contact a {
  font-weight: bold;
  padding: 12px 16px;
  border: 2px solid #111111;
  border-radius: 4px;
}
.header .gmanu .gmanu_list .nav-item._contact a:hover {
  background: #111111;
  color: #fff;
}
@media (max-width: 480px) {
  .header .gmanu {
    display: none;
  }
  .header .sp-menu-btn {
    display: inline-flex;
  }
  .header .logo {
    width: 140px;
  }
}

/*-----------------------------------------
   SP Menu Modal
------------------------------------------*/
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  /* ここが肝：非表示状態でもDOMは残す */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sp-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* オーバーレイも微フェードさせたい場合 */
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sp-menu.is-open .sp-menu__overlay {
  opacity: 1;
}
.sp-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.15);
  /* スライドイン */
  transform: translateX(100%);
  transition: transform 0.25s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.sp-menu.is-open .sp-menu__panel {
  transform: translateX(0);
}
.sp-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid #eef1f4;
}
.sp-menu__title {
  font-weight: 700;
  color: #111111;
}
.sp-menu__close {
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #111111;
}
.sp-menu__nav {
  padding: 8px 0 24px;
}
.sp-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-menu .sp-item {
  border-bottom: 1px solid #eef1f4;
}
.sp-menu .sp-item a, .sp-menu .sp-item__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #111111;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.sp-menu .sp-item__toggle::after {
  content: "▾";
  font-size: 14px;
  transform: rotate(0);
  transition: transform 0.2s ease;
}
.sp-menu .sp-item__toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.sp-menu .sp-item .sp-sub {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}
.sp-menu .sp-item .sp-sub a {
  font-weight: 500;
  padding: 10px 24px;
  color: #333;
}
.sp-menu .sp-item.is-open .sp-sub {
  display: block;
}
.sp-menu .sp-item--contact a {
  width: calc(100% - 32px);
  box-sizing: border-box;
  margin: 12px 16px;
  box-sizing: border-box;
  border: 2px solid #111111;
  border-radius: 4px;
  justify-content: center;
}
.sp-menu .sp-item--contact a:hover {
  background: #111111;
  color: #fff;
}

/*-----------------------------------------
   footer
------------------------------------------*/
.footer {
  background: #424242;
  padding: 60px 0;
  position: relative;
  color: #909090;
  text-align: center;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #909090;
  text-decoration: none;
}
.footer .logo {
  width: 160px;
  margin: auto;
}
.footer .sitemap .sitemap_list {
  margin: 32px auto 16px;
  padding: 0;
  list-style: none;
  display: fkex;
  gap: 16px;
}
.footer .sitemap .sitemap_list .item {
  display: inline-block;
}
.footer .sitemap .sitemap_list .item:not(:first-child)::before {
  content: "/";
}
.footer .sitemap .sitemap_list .item a {
  padding: 2px 8px;
}
.footer .copyright {
  text-align: center;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .footer .inner {
    padding-top: 60px;
    display: block;
    gap: 40px;
  }
  .footer .logo {
    width: 80%;
    margin: 0 auto 40px;
  }
}

/*-----------------------------------------
   font
------------------------------------------*/
html {
  /* ルートのフォントサイズを10pxに設定しておく */
  font-size: 62.5%;
}

body {
  font-family: "Roboto", "Noto Sans JP", "Hiragino Sans", Arial, "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 1.67;
}

/*-----------------------------------------
   common
------------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  /*高さ自動*/
}

a {
  color: #555554;
  text-decoration-line: none;
  transition: 0.3s;
}
a:hover {
  color: #8e8e8d;
  text-decoration: underline;
}
a img {
  vertical-align: bottom;
}
a.link_underline {
  text-decoration: underline;
}

p {
  margin: 24px 0;
  line-height: 1.7;
}

.wrappper {
  position: relative;
}

.inner {
  width: 100%;
  box-sizing: border-box;
  max-width: 2000px;
  padding: 16px 80px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .inner {
    padding: 16px;
  }
}
.inner.w1280 {
  max-width: 1280px;
  padding: 0 16px;
}
.inner.w1140 {
  max-width: 1140px;
  padding: 0 16px;
}
.inner.w1080 {
  max-width: 1080px;
  padding: 0 16px;
}
.inner.w1000 {
  max-width: 1000px;
  padding: 0 16px;
}
.inner.w800 {
  max-width: 800px;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .inner {
    max-width: 100%;
    box-sizing: border-box;
  }
  .inner.w1280, .inner.w1140, .inner.w1000, .inner.w800 {
    max-width: 100%;
  }
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.wp-caption,
[class*=wp-image] {
  display: block;
  max-width: 100% !important;
  margin-top: 1.5em;
  text-align: center;
}

.wp-caption-text {
  margin-top: 0;
}

.text_align {
  text-align: center;
}

/*-----------------------------------------
   btn
------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  text-align: center;
  background: #111111;
  color: #fff;
  border: 1px solid #111111;
  border-radius: 4px;
  transition: 0.4s;
}
.btn:after {
  content: "";
  background: url(../images/icon_arrow_right_white.svg) center center no-repeat;
  background-size: 100% auto;
  width: 20px;
  height: 20px;
}
.btn:hover {
  background: #fff;
  color: #111111;
  text-decoration: none;
}
.btn:hover:after {
  background: url(../images/icon_arrow_right_black.svg) center center no-repeat;
}
.btn._wauto {
  width: 100%;
}
.btn._grey {
  background: #555554;
  color: #fff;
}
.btn._grey:hover {
  background: #f6f6f4;
  color: #1c1c1b;
}
.btn._white_line {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn._white_line:hover {
  background: #fff;
  color: #1c1c1b;
}

/*-----------------------------------------
   page_heading
------------------------------------------*/
.page_heading {
  padding: 80px 0;
}
.page_heading .page_title {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.page_heading .page_slug {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
}

.breadcrumbs .inner {
  font-size: 1.2rem;
  line-height: 1;
  color: #555554;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 6px;
}
@media (max-width: 768px) {
  .breadcrumbs .inner {
    display: block;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/*-----------------------------------------
   page_content
------------------------------------------*/
.page_content {
  background: #F9F9F9;
  padding: 32px 0 80px;
}
.page_content .content {
  background: #fff;
  padding: 40px 32px;
  border-radius: 8px;
}
.page_content .content h2,
.page_content .content h2.wp-block-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2.4rem;
  font-weight: 800;
  color: #111111;
  margin: 40px 0 16px;
}
.page_content .content h2:before,
.page_content .content h2.wp-block-heading:before {
  content: "";
  width: 17px;
  height: 26px;
  background: url(../images/icon_key_arrow.svg) center center no-repeat;
  background-size: 100% auto;
}
.page_content .content h2:first-child,
.page_content .content h2.wp-block-heading:first-child {
  margin-top: 0;
}
.page_content .content h3,
.page_content .content h3.wp-block-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #111111;
  margin: 32px 0 16px;
  padding-bottom: 4px;
}
.page_content .content h4,
.page_content .content h4.wp-block-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111111;
  margin: 16px 0 12px;
}
.page_content .content h4:first-child,
.page_content .content h4.wp-block-heading:first-child {
  margin-top: 0;
}
.page_content .content ul {
  padding-left: 20px;
}
.page_content .content .company-dl {
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #e9ecef;
  overflow: hidden;
  /* 2カラム */
  display: grid;
  grid-template-columns: 220px 1fr;
}
.page_content .content .company-dl dt,
.page_content .content .company-dl dd {
  margin: 0;
  padding: 12px 16px;
  border-bottom: 1px solid #eef1f4;
}
.page_content .content .company-dl dt,
.page_content .content .company-dl .company-dl dt:last-of-type,
.page_content .content .company-dl dd:last-of-type {
  border-bottom: 0;
}
@media (max-width: 768px) {
  .page_content .content {
    padding: 32px 16px 40px;
  }
  .page_content .content .company-dl {
    display: block;
  }
  .page_content .content .company-dl dt {
    padding: 10px 12px 0;
    font-weight: 600;
  }
  .page_content .content .company-dl dd {
    padding: 4px 12px 10px;
  }
}

/*-----------------------------------------
   動画
------------------------------------------*/
.area_video {
  background: #f6f6f4;
  padding: 40px 0;
}
.area_video .video_column {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.area_video .video_item {
  width: 480px;
}
.area_video .video_item .title {
  font-size: 1.6rem;
  font-weight: 600;
}

.youtube-embed {
  max-width: 640px;
  margin: auto;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
}

.youtube-embed iframe {
  width: 100%;
  height: 100%;
}

/*-----------------------------------------
   page_bottom
------------------------------------------*/
.page_bottom {
  background: #F9F9F9;
  padding: 80px 0;
  text-align: center;
}
.page_bottom .title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.page_bottom p {
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .page_bottom {
    padding: 40px 16px;
  }
}

/*-----------------------------------------
   cta_general
------------------------------------------*/
.cta_general {
  position: relative;
  padding: 0;
  padding-top: 80px;
  text-align: left;
}
.cta_general:before {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #424242;
}
.cta_general .inner {
  position: relative;
  max-width: 1200px;
  padding: 80px;
  margin-top: -80px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
}
.cta_general .title {
  line-height: 1;
}
.cta_general .title .jp {
  font-size: 1.4rem;
}
.cta_general .title .en {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #FFBF00;
}
.cta_general .content .desc {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .cta_general {
    padding: 16px;
  }
  .cta_general .inner {
    padding: 24px;
    margin-top: -40px;
    display: block;
  }
}

/*-----------------------------------------
   others
------------------------------------------*/
.top .page_bottom {
  background: transparent;
}

.hero {
  padding: 40px 0;
}
.hero .inner {
  display: flex;
  align-items: center;
}
.hero .inner .text_content,
.hero .inner .eyecatch {
  width: 50%;
  margin: 0;
}
.hero .inner .hero_title {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 800;
  font-size: 6rem;
}
.hero .inner .hero_copy {
  line-height: 1.5;
  font-weight: 800;
  font-size: 2.4rem;
}
@media (max-width: 480px) {
  .hero .inner {
    display: block;
  }
  .hero .inner .text_content,
  .hero .inner .eyecatch {
    width: 100%;
  }
  .hero .inner .hero_title {
    font-size: 5rem;
  }
  .hero .inner .hero_copy {
    margin-bottom: 32px;
  }
}

.section {
  padding: 80px 0;
}
.section .sec_heading {
  position: relative;
  margin-top: -60px;
  padding: 60px 0 16px;
  text-align: center;
}
.section .sec_heading .en {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  line-height: 1;
  color: #DCDCDC;
  font-size: 6rem;
  font-weight: 800;
  opacity: 0.5;
}
.section .sec_heading .jp {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 3.2rem;
  font-weight: 800;
}
@media (max-width: 480px) {
  .section .sec_heading {
    margin-top: -40px;
    padding: 60px 0 16px;
  }
  .section .sec_heading .en {
    top: 48px;
    font-size: 4rem;
  }
  .section .sec_heading .jp {
    font-size: 2.4rem;
  }
}
.section._intro {
  background: #F9F9F9;
}
.section._intro .intro_list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.section._intro .intro_list .item {
  width: calc(50% - 16px);
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #C0C0C0;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .section._intro {
    padding: 40px 0;
  }
  .section._intro .sec_heading {
    margin-top: 0;
    padding-top: 0;
  }
  .section._intro .intro_list {
    margin-top: 32px;
    flex-direction: column;
    gap: 16px;
  }
  .section._intro .intro_list .item {
    width: 100%;
  }
}
.section._advantage {
  padding: 80px;
}
.section._advantage .adv_wrapper {
  background: #FECE42;
  border-radius: 16px;
  padding: 80px 0;
}
.section._advantage .sec_heading .en {
  color: #fff;
}
.section._advantage .adv_list {
  margin-top: 40px;
  display: flex;
  gap: 32px;
}
.section._advantage .adv_list .item {
  width: calc(33.3333333333% - 22px);
}
.section._advantage .adv_list .item .title {
  margin: 0 0 16px;
  line-height: 1.3;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
}
.section._advantage .adv_list .item .eyecatch {
  margin: 0 0 16px;
}
@media (max-width: 480px) {
  .section._advantage {
    padding: 16px;
  }
  .section._advantage .adv_wrapper {
    padding: 16px;
  }
  .section._advantage .adv_list {
    margin-top: 32px;
    display: block;
  }
  .section._advantage .adv_list .item {
    width: 100%;
  }
}
.section._usecase {
  background: #F9F9F9;
}
.section._usecase .lead {
  font-size: 1.8rem;
  text-align: center;
}
.section._usecase .usecase_list {
  margin-top: 40px;
}
.section._usecase .usecase_list .label {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.section._usecase .usecase_list .title {
  font-size: 1.8rem;
  font-weight: 700;
}
.section._usecase .usecase_list .detail_list {
  margin: 0;
  padding-left: 20px;
  font-size: 2rem;
}
.section._usecase .usecase_list .illust {
  position: absolute;
  bottom: 16px;
  right: 24px;
  width: 22%;
  z-index: 1;
}
.section._usecase .usecase_list .item {
  display: flex;
  margin-bottom: 40px;
}
.section._usecase .usecase_list .item:last-child {
  margin-bottom: 0;
}
.section._usecase .usecase_list .item._02 .illust {
  width: 27%;
}
.section._usecase .usecase_list .item._03 .illust {
  width: 32%;
}
.section._usecase .usecase_list .item .before_item {
  position: relative;
  width: 50%;
  background: #F3F3F3;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  box-sizing: border-box;
  padding: 24px 24px 72px;
}
.section._usecase .usecase_list .item .after_item {
  width: 50%;
  background: #FFBF00;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  box-sizing: border-box;
  padding: 24px 24px 72px;
}
.section._usecase .usecase_list .item .after_item .label {
  color: #fff;
}
@media (max-width: 480px) {
  .section._usecase .lead {
    font-size: 1.6rem;
  }
  .section._usecase .usecase_list .illust {
    top: 12px;
  }
  .section._usecase .usecase_list .item {
    display: block;
  }
  .section._usecase .usecase_list .item .before_item {
    width: 100%;
    padding: 16px 16px 32px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0;
  }
  .section._usecase .usecase_list .item .after_item {
    width: 100%;
    padding: 16px 16px 32px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .section._usecase .usecase_list .item .after_item .label {
    color: #fff;
  }
}
.section._production .list_product {
  margin: 40px 0;
}
.section._production .list_product .item {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
}
.section._production .list_product .item .eyecatch,
.section._production .list_product .item .text_content {
  width: calc(100% - 16px);
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.section._production .list_product .item .eyecatch a img {
  transition: 0.3s;
}
.section._production .list_product .item .eyecatch a:hover img {
  transform: scale(1.1, 1.1);
}
.section._production .list_product .item .text_content .label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.section._production .list_product .item .text_content .label.label--windows:before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../images/icon_windows.svg) center center no-repeat;
  background-size: 100% auto;
}
.section._production .list_product .item .text_content .label.label--kintone:before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../images/icon_kintone.svg) center center no-repeat;
  background-size: 100% auto;
}
.section._production .list_product .item .text_content .title {
  margin: 0;
  padding: 0;
  font-size: 4rem;
  font-weight: 700;
}
.section._production .list_product .item .text_content .desc {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 480px) {
  .section._production .list_product .item {
    padding: 16px;
    display: block;
  }
  .section._production .list_product .item .eyecatch,
  .section._production .list_product .item .text_content {
    width: 100%;
  }
}

.product_hero {
  text-align: center;
  padding: 60px 0;
}
.product_hero .product-kind {
  margin: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  line-height: 1;
}
.product_hero .product-kind.product-kind--windows:before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../images/icon_windows.svg) center center no-repeat;
  background-size: 100% auto;
}
.product_hero .product-kind.product-kind--kintone:before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../images/icon_kintone.svg) center center no-repeat;
  background-size: 100% auto;
}
.product_hero .copy_01 {
  margin-top: 0;
  font-weight: 300;
  font-size: 2.4rem;
}
.product_hero .copy_02 {
  font-weight: 600;
  font-size: 1.7rem;
}
.product_hero .hero_image {
  margin: 0 auto 32px;
}

.page_content.product_content {
  padding: 0;
}
.page_content.product_content .block_target {
  background: #F8F8F8;
  padding: 24px;
}
.page_content.product_content .block_target h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2.2rem;
  font-weight: 600;
}
.page_content.product_content .block_target h2:before {
  content: "";
  width: 20px;
  height: 27px;
  background: url(../images/heading_mark.svg) center center no-repeat;
  background-size: 100% auto;
}

.page_bottom.cta_product .title {
  font-size: 2.4rem;
  margin: 16px 0 0;
}
.page_bottom.cta_product .desc {
  margin-top: 8px;
  font-size: 1.8rem;
}
.page_bottom.cta_product .btn_bar {
  background: #fff;
  padding: 32px 16px;
}

.section._about {
  background: #fff;
}
.section._feature .sec_heading .en {
  color: #fff;
}
.section._feature .list_feature {
  margin: 40px 0;
  --gap-x: 16px;
  --gap-y: 40px;
  display: grid;
  column-gap: var(--gap-x);
  row-gap: var(--gap-y);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}
@media (max-width: 980px) {
  .section._feature .list_feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .section._feature .list_feature {
    grid-template-columns: minmax(0, 1fr);
  }
}
.section._feature .list_feature .item {
  min-width: 0;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section._feature .list_feature .item_image {
  margin: 0 auto;
  width: 64px;
}
.section._feature .list_feature .item_image img {
  width: 100%;
  height: auto;
  display: block;
}
.section._feature .list_feature .item_titl {
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0;
}
.section._feature .list_feature .item_titl,
.section._feature .list_feature .desc {
  overflow-wrap: anywhere;
}
.section._feature .list_feature .desc {
  font-size: 1.4rem;
  margin: 0;
}
.section._case {
  background: #F9F9F9;
}
.section._case .case__item {
  background: #fff;
  padding: 32px;
  margin-bottom: 60px;
}
.section._case .case__item h3 {
  padding-bottom: 4px;
  border-bottom: 1px dotted #666;
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.8rem;
  line-height: 1.4;
}
.section._case .case__item h3.solution {
  color: #FFBF00;
  font-size: 2rem;
}
.section._case .case__item p {
  margin: 8px 0 12px;
  font-size: 1.4rem;
}
.section._case .case__item ul, .section._case .case__item ol {
  padding-left: 20px;
}
.section._case .case__image {
  width: 40%;
  float: right;
  margin-left: 32px;
  margin-bottom: 32px;
}
.section._case .case__no {
  color: #FFBF00;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.section._case .case__title {
  margin-top: 0;
  margin-bottom: 8px;
  padding: 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.section._case .case__tag {
  display: inline-block;
  margin-bottom: 16px;
  background: #FFF6DC;
  padding: 4px 16px;
  border-radius: 24px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.section._case .case__effectBox {
  background: #FFF6DC;
  padding: 24px;
}
.section._case .case__effectBox .case__effectTitle {
  margin: 0 0 8px;
  padding: 0;
  font-size: 1.6rem;
  border-bottom: none;
}
.section._scene {
  background: #fff;
}
.section._scene .list_scene {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}
@media (max-width: 1024px) {
  .section._scene .list_scene {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .section._scene .list_scene {
    grid-template-columns: minmax(0, 1fr);
  }
}
.section._scene .list_scene:has(> .item:only-child) {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}
.section._scene .list_scene:has(> .item:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.section._scene .list_scene .item {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section._scene .list_scene .title {
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}
.section._scene .list_scene .label {
  text-align: center;
}
.section._scene .list_scene .label span {
  font-weight: 600;
  font-size: 1.4rem;
  display: inline-block;
  background: #FFF6DC;
  border-radius: 32px;
  padding: 2px 16px;
}
.section._scene .list_scene .subtitle {
  padding: 4px;
  margin-bottom: 8px;
  text-align: center;
}
.section._scene .list_scene .subtitle._1 {
  border-bottom: 1px dotted #111111;
}
.section._scene .list_scene .subtitle._2 {
  color: #FFBF00;
  font-weight: 600;
  border-bottom: 1px solid #111111;
}
.section._scene .list_scene .desc {
  margin: 8px 0;
  font-size: 1.4rem;
}
.section._scene .list_scene .reward {
  padding: 16px 16px 16px 0;
  background: #FFF6DC;
  font-weight: 600;
}
.section._gallery {
  background: #FFEDB6;
}
.section._gallery .sec_heading .en {
  color: #fff;
}
.section._gallery .gallery__slider {
  max-width: none; /* 1100px固定をやめる */
  margin: 32px 0; /* auto をやめる */
  width: 100%;
}
.section._gallery .gallery__slider .slick-list {
  padding-left: clamp(16px, 18vw, 800px);
  padding-right: 16px;
}
.section._gallery .gallery__slider .slick-slide {
  padding-right: 18px; /* カード間 */
}
.section._gallery .gallery__item {
  margin: 0; /* 元の margin:0 12px; は使わない */
  width: auto; /* inlineで width 指定（例: 340px）を優先 */
}
.section._gallery .gallery__btn {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.section._gallery .gallery__btn:focus-visible {
  outline: 3px solid rgba(17, 111, 255, 0.35);
  outline-offset: 4px;
  border-radius: 12px;
}
.section._gallery .gallery__btn img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}
.section._gallery .gallery__cap {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-align: center;
  letter-spacing: 0.02em;
}
.section._gallery .gallery__slider .slick-prev:before,
.section._gallery .gallery__slider .slick-next:before {
  content: "" !important;
}
.section._gallery {
  /* 2) ボタン本体を「画像ボタン化」 */
}
.section._gallery .gallery__slider .slick-prev,
.section._gallery .gallery__slider .slick-next {
  width: 44px; /* 画像サイズに合わせて */
  height: 44px;
  border-radius: 999px; /* 任意：丸く */
  background-color: rgba(255, 255, 255, 0.85); /* 任意：下地 */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px; /* 矢印画像の表示サイズ */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 3;
}
.section._gallery {
  /* 3) 画像を当てる（ここが本題） */
}
.section._gallery .gallery__slider .slick-prev {
  left: 16px;
  background: url(../images/icon_arrow_right_black.svg) center center no-repeat;
  background-size: 100% auto;
  transform: rotate(180deg);
}
.section._gallery .gallery__slider .slick-next {
  right: 16px;
  background: url(../images/icon_arrow_right_black.svg) center center no-repeat;
  background-size: 100% auto;
}
.section._gallery {
  /* 4) disabled の見え方（任意） */
}
.section._gallery .gallery__slider .slick-prev.slick-disabled,
.section._gallery .gallery__slider .slick-next.slick-disabled {
  opacity: 0.25;
  cursor: default;
}
.section._gallery {
  /* 5) テキストを視覚的に消す（アクセシビリティ的にラベルは残る） */
}
.section._gallery .gallery__slider .slick-prev,
.section._gallery .gallery__slider .slick-next {
  color: transparent;
}
.section._gallery .gallery__slider .slick-dots {
  position: static;
  margin-top: 12px;
  padding-left: clamp(16px, 4vw, 80px);
  padding-right: 16px;
  text-align: left;
}
.section._gallery .gallery__slider .slick-track {
  padding-right: clamp(16px, 4vw, 80px);
}
.section._gallery {
  /* ===== Modal ===== */
}
.section._gallery .modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.section._gallery .modal.is-open {
  display: block;
}
.section._gallery .modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.section._gallery .modal__panel {
  position: relative;
  max-width: min(1100px, 100% - 32px);
  margin: 32px auto;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.section._gallery .modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.section._gallery .modal__close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}
.section._gallery .modal__body {
  position: relative;
  background: #000;
  display: grid;
  place-items: center;
  padding: 18px 12px 10px;
}
.section._gallery .modal__img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  border-radius: 10px;
}
.section._gallery .modal__caption {
  margin: 0;
  padding: 12px 16px 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  text-align: center;
}
.section._gallery .modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.section._gallery .modal__nav--prev {
  left: 12px;
}
.section._gallery .modal__nav--next {
  right: 12px;
}
@media (max-width: 480px) {
  .section._gallery .modal__panel {
    margin: 16px auto;
  }
  .section._gallery .modal__nav {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section._gallery .slick-track, .section._gallery .slick-slide {
    transition: none !important;
  }
}
.section._faq {
  background: #F9F9F9;
}
.section._faq .faq__list {
  display: grid;
  gap: 12px;
}
.section._faq .faq__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.section._faq .faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.section._faq .faq__q:focus-visible {
  outline: 3px solid rgba(17, 111, 255, 0.35);
  outline-offset: 2px;
  border-radius: 10px;
}
.section._faq .faq__qText {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #111;
}
.section._faq .faq__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  background: rgba(0, 0, 0, 0.02);
}
.section._faq .faq__icon::before,
.section._faq .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #111;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: transform 220ms ease;
}
.section._faq .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.section._faq {
  /* open state => turn plus into minus */
}
.section._faq .faq__q[aria-expanded=true] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.section._faq .faq__a {
  height: auto;
  overflow: clip;
  transition: height 240ms ease;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.section._faq .faq__aInner {
  padding: 14px 18px 18px;
  color: #222;
  font-size: 15px;
  line-height: 1.8;
}
.section._faq .faq__aInner p {
  margin: 0;
}
@media (max-width: 480px) {
  .section._faq .faq__q {
    padding: 16px 14px;
  }
  .section._faq .faq__aInner {
    padding: 12px 14px 16px;
  }
  .section._faq .faq__icon {
    width: 36px;
    height: 36px;
  }
}
.section._faq {
  /* Reduce motion */
}
@media (prefers-reduced-motion: reduce) {
  .section._faq .faq__a,
  .section._faq .faq__icon::before,
  .section._faq .faq__icon::after {
    transition: none !important;
  }
}

/* =========================================================
	 CF7 Form - Graphica style (scoped)
========================================================= */
.gcf7 {
  width: 100%;
  max-width: 980px;
}

.gcf7__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #ececec;
}

.gcf7__label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}

.gcf7__labelText {
  font-weight: 700;
}

.gcf7__req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 6px 10px;
  border: 1px solid #e24a4a;
  color: #e24a4a;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.gcf7__field {
  width: 100%;
}

.gcf7__control {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 1.6rem;
  outline: none;
}

.gcf7__control::placeholder {
  color: #c7c7c7;
}

.gcf7__control:focus {
  border-color: #bdbdbd;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.gcf7__row--textarea {
  align-items: start;
}

.gcf7__textarea {
  height: auto;
  min-height: 240px;
  resize: vertical;
  padding: 18px;
  line-height: 1.6;
}

/* Select arrow */
.gcf7__select {
  position: relative;
  display: block;
}

.gcf7__select select.gcf7__control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  background-color: #fff;
}

.gcf7__select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  top: 22px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #9b9b9b;
  border-bottom: 2px solid #9b9b9b;
  pointer-events: none;
}

/* Acceptance */
.gcf7__accept {
  padding: 18px 0 10px;
}

.gcf7__acceptLabel {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: #6f6f6f;
  font-size: 14px;
  line-height: 1.7;
}

.gcf7__acceptLabel input[type=checkbox] {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: #111;
}

.gcf7__link {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Actions */
.gcf7__actions {
  padding-top: 18px;
}

.gcf7__submit {
  width: 100%;
  height: 66px;
  border: 0;
  border-radius: 12px;
  background: #3a3a3a;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.gcf7__submit:hover {
  filter: brightness(0.95);
}

/* CF7 messages */
.gcf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 14px;
  color: #e24a4a;
}

.gcf7 .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .gcf7__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }
  .gcf7__label {
    min-height: auto;
    justify-content: space-between;
  }
  .gcf7__labelText {
    font-size: 18px;
  }
  .gcf7__control {
    height: 54px;
    font-size: 16px;
  }
  .gcf7__textarea {
    min-height: 220px;
  }
  .gcf7__acceptLabel {
    grid-template-columns: 24px 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
