@charset "UTF-8";
/* style.scss -----------------------------
全ページのスタイルです。

------------------------------------------- */
/* _base.scss -----------------------------
基本のスタイルをまとめています。

    ・よく使うサイズ、カラーの変数
    ・レスポンシブ
    ・リセットCSS
    ・共通のレイアウト
    ・共通のボタン
    ・見出しフォント（H1 ~ H6)の基本設定
    ・汎用クラス
    ・アニメーション設定
------------------------------------------- */
/* 角丸カードで使用 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  background: transparent;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
  letter-spacing: 0.03rem;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
}

img {
  height: auto;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table th,
table td {
  padding: 10px 0;
  text-align: center;
}
table th.function,
table td.function {
  max-width: 300px;
}
table th.descriptipn,
table td.descriptipn {
  width: 700px;
}

table tr:nth-child(odd) {
  background-color: #eee;
}

section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

.wrapper {
  margin: 0 auto;
  width: 1080px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1080px) {
  .wrapper {
    width: 100%;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.wrapper__item {
  width: 48%;
}
@media (max-width: 1080px) {
  .wrapper__item {
    margin: 1em 0 0 0;
    width: 100%;
  }
}

.container {
  width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .container {
    width: 90%;
  }
}
.container__item {
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.container__item--title {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (max-width: 1080px) {
  .container__item--title {
    font-size: 18px;
  }
}

/* 問合せボタン */
.contact_btn {
  border-radius: 50px;
  width: 240px;
  height: 56px;
  color: #000;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.contact_btn:hover {
  border-color: transparent;
}
.contact_btn a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.contact_btn.download {
  background-color: #FFB42E;
  color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#footerApp .contact_btn.download {
  width: auto;
  padding: 0px 30px;
}
@media (max-width: 830px) {
  #footerApp .contact_btn.download {
    font-size: 13px;
  }
}

.contact_btn.green {
  color: #006400;
}
.contact_btn.white {
  background-color: #fff;
  color: #026400;
  border: 1px solid #026400;
}

/* 詳しく見るボタン */
.contact_btn.detail {
  width: 150px;
  height: 48px;
  font-size: 16px;
  position: relative;
  border-radius: 0;
  margin: 0;
  pointer-events: none;
}
.contact_btn.detail::before {
  content: "";
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#02640D), to(#53B962));
  background: -webkit-linear-gradient(left, #02640D 0%, #53B962 100%);
  background: linear-gradient(to right, #02640D 0%, #53B962 100%);
  border-radius: 2px;
  position: absolute;
  bottom: 0;
}
.contact_btn.detail::after {
  content: url(./../img/icon_arrow_3.svg);
  position: relative;
  top: 5px;
}
.contact_btn.detail a {
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  pointer-events: auto;
}
.contact_btn.detail .left {
  width: 100%;
  text-align: left;
}

.bg_color {
  background: #F2F2F2;
}

.bg_gradient_color {
  background: -webkit-gradient(linear, right top, left bottom, from(#32A343), to(#02640D));
  background: -webkit-linear-gradient(top right, #32A343, #02640D);
  background: linear-gradient(to bottom left, #32A343, #02640D);
}

.under_line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #FFB42E));
  background: -webkit-linear-gradient(transparent 80%, #FFB42E 0%);
  background: linear-gradient(transparent 80%, #FFB42E 0%);
}

@media (max-width: 830px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 830px) {
  .sp-only {
    display: block;
  }
}

.text-color__primary {
  color: #026400;
}

.text-color__secondary {
  color: #FFB42E;
}

.text-color__tertiary {
  color: #919191;
}

.text-weight__bold {
  font-weight: 600;
}

.instance {
  color: #7d7d7d;
}

.fontsize-12 {
  font-size: 12px;
}

.font-size_standard {
  font-size: 16px;
}

.txt-link {
  color: #026400;
  text-decoration: underline;
}

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

.keep-height_16 {
  height: 1.6em;
  display: block;
}
@media (max-width: 768px) {
  .keep-height_16 {
    display: none;
  }
}

.number {
  font-size: 40px;
  font-weight: bold;
  color: #026400;
  padding-bottom: 10px;
}

.mt100 {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .mt100 {
    margin-top: 50px;
  }
}

h1 {
  font-size: 42px;
  line-height: 1.65;
  letter-spacing: 1px;
  font-weight: 600;
}
@media (max-width: 1080px) {
  h1 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 320px) {
  h1 {
    font-size: 1.3rem;
  }
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1rem;
    line-height: 1.5;
  }
}

h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 830px) {
  h3 {
    font-size: 1.6rem;
  }
}

h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.75;
}
@media (max-width: 830px) {
  h4 {
    font-size: 1.2rem;
  }
}

h5 {
  font-size: 32px;
  font-weight: 600;
  line-height: 50px;
}
@media (max-width: 576px) {
  h5 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  h5.headline {
    font-size: 18px;
    line-height: 2rem;
  }
}

/* _header.scss -----------------------------
全ページ共通のヘッダーのスタイルです。
DOMはstatics/js/components.jsにあります。

メニューが多くなったら、コメントアウトしている「メニューが増えて入り切らない時追加する ※」の要素を
アクティブにしてください。

    <現在 非アクティブ>

    ・下層ページが増えた場合の更なるドロップダウンのスタイル
    ・SPの時のアコーディオンメニュー
    （挙動はstatics/js/components.jsのtoggle()を有効にしてください）
------------------------------------------- */
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  font-weight: 600;
  /* header */
}
header #app {
  height: 92px;
}
@media (max-width: 1080px) {
  header #app {
    height: 64px;
  }
}
header .header-area {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 0 5%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header-area .header-top {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
header .top-logo {
  width: 180px;
}
@media (max-width: 1080px) {
  header .top-logo {
    width: 120px;
  }
}
header .top-logo img {
  width: 100%;
  vertical-align: middle;
}

/* pc用メニュー */
#pc-nav {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1080px) {
  #pc-nav {
    display: none;
  }
}
#pc-nav .header-nav {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#pc-nav .header-nav__item {
  margin-right: 2.25rem;
}
#pc-nav .header-nav__item:last-child {
  margin: 0;
}
#pc-nav .header-nav .white {
  height: 42px;
  width: 128px;
  margin-right: 1rem;
}
#pc-nav .header-nav .download {
  width: 160px;
  height: 42px;
}
#pc-nav .dropdown:hover .dropdown_menu {
  opacity: 1;
  overflow: visible;
  height: auto;
}
#pc-nav .dropdown .dropdown_menu {
  opacity: 0;
  position: absolute;
  top: 16px;
  left: -10px;
  z-index: 1000;
  min-width: 10rem;
  font-size: 1rem;
  background-color: white;
  border-radius: 8px;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 36px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 36px;
  max-width: 890px;
  overflow: hidden;
  height: 0;
}
#pc-nav .sub_dropdown {
  position: relative;
  display: block;
}

/* sp用メニュー */
#sp-nav {
  display: none;
  background: #fff;
  width: 100%;
}
@media (max-width: 1080px) {
  #sp-nav {
    display: block;
    height: 100vh;
    z-index: 998;
    overflow-y: scroll;
  }
}
#sp-nav .header-nav {
  width: 95%;
  margin: 0 0 0 auto;
}
#sp-nav .header-nav__item {
  margin: 10px 0 0;
}
#sp-nav .header-nav .contact_btn {
  margin: 1rem 0 0 5px;
  width: 90%;
  height: 40px;
}
#sp-nav .header-nav .contact_btn:last-child {
  margin-bottom: 100px;
}
#sp-nav .header-nav .dropdown .dropdown_menu {
  width: 95%;
  margin: 0 auto;
  font-size: 0.8rem;
}

/* アコーディオンメニュー */
.accordion {
  display: block;
  margin-right: 5%;
}
.accordion .spToggleMenu {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.accordion .spToggleMenu span {
  display: none;
}
.accordion .spToggleMenu span.arrow::before {
  -webkit-transform: none;
          transform: none;
}
.accordion .spToggleMenu span.arrow::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: 0;
}

/* ハンバーガーメニュー */
.header__menu {
  display: none;
  height: 50px;
  cursor: pointer;
  position: fixed;
  right: 10px;
  top: 7px;
  width: 50px;
  background: #026400;
  border-radius: 50%;
}
@media (max-width: 1080px) {
  .header__menu {
    display: block;
  }
}
.header__menu__line {
  cursor: pointer;
  height: 21px;
  margin: 15px auto;
  position: relative;
  width: 24px;
}
.header__menu__line span {
  background: #fff;
  display: block;
  height: 3px;
  position: absolute;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  width: 100%;
}
.header__menu__line span:first-child {
  top: 0;
}
.header__menu__line span:nth-child(2) {
  top: 9px;
}
.header__menu__line span:last-child {
  bottom: 0;
}
.header__menu.is-active span {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.header__menu.is-active span:first-child {
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__menu.is-active span:nth-child(2) {
  opacity: 0;
}
.header__menu.is-active span:last-child {
  top: 45%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ドロップダウンメニュー中身 */
.dropdown {
  position: relative;
  -webkit-transition: 4s all;
  transition: 4s all;
}
.dropdown .arrow {
  width: 20px;
  height: 20px;
  position: relative;
  margin: 0 1em 0 0.3em;
}
.dropdown .arrow::before, .dropdown .arrow::after {
  content: "";
  display: inline-block;
  width: 10px;
  background-color: #919191;
  height: 2px;
  position: absolute;
  top: 50%;
}
.dropdown .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.dropdown .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 6px;
}
.dropdown .arrow2 {
  width: 12px;
  height: 20px;
  position: relative;
  margin-right: 0.3em;
  display: inline-block;
}
.dropdown .arrow2::before, .dropdown .arrow2::after {
  content: "";
  width: 10px;
  background-color: #919191;
  height: 2px;
  position: absolute;
  top: 50%;
}
.dropdown .arrow2::before {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.dropdown .arrow2::after {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  top: 15px;
}
.dropdown .service-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 1em auto;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
@media (max-width: 1080px) {
  .dropdown .service-menu {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.dropdown .service-menu__item {
  width: 190px;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
  margin-right: 1em;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 1080px) {
  .dropdown .service-menu__item {
    width: 48%;
    margin: 1em 0 0;
  }
}
.dropdown .service-menu__item:last-child {
  margin-right: 0;
}
.dropdown .service-menu__item img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.dropdown .service-menu__item:hover {
  -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
}
.dropdown .service-menu .service_name {
  display: block;
  padding: 0 0.5em 0.5em 0.5em;
  font-size: 0.8rem;
}
.dropdown .ads-menu {
  font-weight: 600;
  margin: 0px 0px 30px 0px;
}
.dropdown .header-menu {
  font-weight: 600;
  width: max-content;
  padding: 1em 1em 0.5em 1em;
}
.dropdown .ads-menu__item {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 20px;
}
.dropdown .header-menu__item {
  position: relative;
  margin-bottom: 8px;
}
.dropdown .ads-menu .text-color__tertiary,
.dropdown .header-menu .text-color__tertiary{
  font-size: 12px;
  margin: 0.5rem 0;
}

/* さらに下層ドロップダウンメニュー 未使用*/
.dropdown_menu-sub {
  overflow: hidden;
  height: 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  border-radius: 0.25rem;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
  -webkit-box-shadow: 0 8px 36px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 36px rgba(0, 0, 0, 0.2);
  padding: 1em;
}
.dropdown_menu-sub .sub__item {
  width: 100%;
}
.dropdown_menu-sub .dropdown_item {
  display: block;
  position: relative;
}

.head-height {
  height: 92px;
}
@media (max-width: 1080px) {
  .head-height {
    height: 64px;
  }
}

/* _footer.scss -----------------------------
全ページ共通のフッターのスタイルです。
DOMはstatics/js/components.jsにあります。
------------------------------------------- */
footer {
  text-align: center;
  padding: 90px 0 2rem 0;
  background-color: #fff;
}
@media (max-width: 830px) {
  footer {
    padding-top: 2rem;
  }
}
footer .container {
  clear: both;
  float: none;
}
footer .container__item {
  margin: 0 0 0 auto;
  width: 60%;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
@media (max-width: 1080px) {
  footer .container__item {
    width: 70%;
  }
}
@media (max-width: 830px) {
  footer .container__item {
    width: 100%;
    margin: 0;
  }
}
footer .container__item .footer-nav {
  padding-left: 10px;
}
@media (max-width: 1080px) {
  footer .container__item .footer-nav {
    padding: 0 0 1em 0;
  }
}
@media (max-width: 830px) {
  footer .container__item .footer-nav {
    width: 100%;
  }
}
footer .container__item .text-color__tertiary {
  font-weight: bold;
  font-size: 12px
}

footer .container__item .footer-nav__item {
  text-decoration: underline;
  padding: 4px 0;
}
footer .container__item .footer-nav__item:first-child {
  font-weight: 600;
  margin-bottom: 0.5em;
  text-decoration: none;
}
@media (max-width: 830px) {
  footer .container__item .footer-nav__item:first-child {
    margin-bottom: 0;
  }
}
footer .container__item .contact_btn {
  margin: auto 0 15px auto;
}
@media (max-width: 830px) {
  footer .container__item .contact_btn {
    width: 100%;
    margin-top: 1rem;
  }
}
footer .footer_logo {
  display: block;
  height: auto;
  margin-bottom: 2em;
  max-width: 180px;
  float: left;
}
@media (max-width: 830px) {
  footer .footer_logo {
    width: 90%;
  }
}
footer .copyright {
  font-size: 12px;
  text-align: center;
  line-height: 1.2rem;
  padding-top: 120px;
}

.request {
  background: #e8fdeb;
}
.request .request-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #333333;
}
.request .container {
  max-width: 550px;
  margin: 2.5em auto 0px;
  font-size: 20px;
}
@media (max-width: 830px) {
  .request .container .contact_btn {
    width: 100%;
  }
  .request .request-title {
    font-size: 24px;
    margin: 0px 20px;
  }
}
.request .container .contact_btn:first-child {
  margin-bottom: 1em;
}
@media (max-width: 830px) {
  .request .container {
    width: 90%;
  }
}

/* _swiper.scss -----------------------------
活用事例のスタイル設定です。
Swiper.jsを使用しています。

https://swiperjs.com/
------------------------------------------- */
/* Swiper.js カード 共通*/
.swiper-container {
  display: block;
  margin: 2em auto;
}
@media (max-width: 1080px) {
  .swiper-container {
    margin-bottom: 50px;
  }
}
.swiper-container.mySwipe .swiper-wrapper .swiper-slide {
  margin: 0 auto;
  min-width: 1080px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1080px) {
  .swiper-container.mySwipe .swiper-wrapper .swiper-slide {
    min-width: auto;
  }
}

/* スライドナビゲーション */
.swiper-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 2em;
}
@media (max-width: 1080px) {
  .swiper-nav {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.swiper-nav.left {
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: swiper-icons;
  color: #53B962;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px #ccc;
          box-shadow: 0 3px 10px #ccc;
}

.swiper-button-prev {
  margin-right: 10px;
}

.swiper-button-prev:after {
  font-size: 24px;
  font-weight: 900;
}

.swiper-button-next:after {
  font-size: 24px;
  font-weight: 900;
}

/* スライド画像 */
.img-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 10px #ccc;
          box-shadow: 0 3px 10px #ccc;
  max-width: 1080px;
  margin: 1em;
  height: 320px;
  padding: 1.5em;
}
@media (max-width: 768px) {
  .img-slide {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 1em;
    margin: 0 0 0 2em;
    height: 650px;
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
  }
}
@media (max-width: 576px) {
  .img-slide {
    height: 510px;
  }
}
.img-slide__contents {
  width: 50%;
}
@media (max-width: 768px) {
  .img-slide__contents {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
.img-slide__contents img {
  border-radius: 8px;
  width: 90%;
  display: block;
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  .img-slide__contents img {
    width: 100%;
  }
}

.case-detail {
  padding: 0px 1em 0 0;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .case-detail {
    padding: 0 0 2em 0;
    font-size: 0.9em;
  }
}

.case-name {
  display: inline;
  background: #e3a22e;
  border-radius: 4px;
  color: #fff;
  padding: 0.3rem 1rem;
  font-size: 14px;
}
@media (max-width: 576px) {
  .case-name {
    font-size: 12px;
  }
}

.case-title {
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 1em 0;
}
@media (max-width: 830px) {
  .case-title {
    font-size: 1.2rem;
  }
}

.case-text {
  margin-bottom: 1em;
}

/* ページネーション */
.swiper-pagination-bullet {
  background-color: #fff;
  border-color: #53B962;
}

.swiper-pagination-bullet-active {
  background-color: #53B962;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: relative;
  bottom: -20px;
}
@media (max-width: 1080px) {
  .swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -40px;
    padding-bottom: 50px;
  }
}

/* 活用事例エリア */
.case {
  position: relative;
  text-align: center;
  background-color: #f2f2f2;
  display: none;
}
.case .contact_btn.detail {
  max-width: 215px;
  width: 100%;
  margin: 0 0 0 auto;
}
@media (max-width: 830px) {
  .case .contact_btn.detail {
    width: 90%;
    margin: 0 auto 0 0;
  }
}
@media (max-width: 1080px) {
  .case .container {
    width: 90%;
  }
}

.category {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5em;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.category .case-tag {
  color: #026400;
  background: #e0ece0;
  border-radius: 4px;
  padding: 0.2em 0.5em;
  margin: 0 12px 12px 0;
}
.category .contact_btn {
  margin: 0;
  width: 130px;
  height: 32px;
  font-size: 14px;
}

/* index.htmlで使用中のnews-card ------------------------------------------*/
.news-card .swiper-slide--item {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 10px #ccc;
          box-shadow: 0 3px 10px #ccc;
  height: 360px;
  margin: 1rem;
}
@media (max-width: 1080px) {
  .news-card .swiper-slide--item {
    height: auto;
  }
}
.news-card .card-detail {
  padding: 1em;
}
.news-card a {
  display: block;
}
.news-card .news-report {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1rem;
}
.news-card .news-title {
  font-weight: 600;
  display: block;
  /* fallback for IE */
}
.news-card .news-title.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 56px;
}
.news-card .news-tag {
  background-color: #efefef;
  border-radius: 4px;
  padding: 0.2em 0.5em;
  font-size: 14px;
}
.news-card .news-date {
  font-size: 12px;
  font-weight: 600;
}

/* ads/index.htmlで使用中のadSwipe ------------------------------------------*/
.adSwipe .img-slide {
  height: 250px;
  margin: 1em auto;
}
@media (max-width: 768px) {
  .adSwipe .img-slide {
    height: 600px;
    width: 80%;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media (max-width: 576px) {
  .adSwipe .img-slide {
    height: 500px;
    position: relative;
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
  }
}
.adSwipe .case-title {
  margin: 0;
}
.adSwipe .text_box {
  width: 80%;
}
@media (max-width: 768px) {
  .adSwipe .text_box {
    width: 100%;
  }
}

.sub-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1em 0;
}
.sub-list__icon {
  max-width: 72px;
  height: 100%;
  margin-right: 1em;
}

/* TOP */
main {
  background-color: #fff;
  width: 100%;
  overflow-x: hidden;
}
main .main-img {
  background-image: url(./../img/main@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  min-height: 570px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  main .main-img {
    min-height: 500px;
    background-size: cover;
  }
}
@media (max-width: 830px) {
  main .main-img {
    background-image: url(./../img/main_sp@2x.png);
    background-position: bottom;
  }
}
main .main-catch {
  width: 40%;
  height: 100%;
  padding: 0 2% 0 5%;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 830px) {
  main .main-catch {
    padding: 20px 5% 0 5%;
    width: 90%;
    background: none;
    height: auto;
  }
}
main .main-catch h1 {
  margin-bottom: 2rem;
  position: relative;
}
main .main-catch h2 span {
  font-size: 1.5em;
}
@media (max-width: 1080px) {
  main .main-catch h2 span {
    font-size: 1em;
  }
}
main .main-catch .contact_btn {
  margin: 2rem 0 0 0;
  font-size: 24px;
  width: 290px;
  height: 62px;
}
@media (max-width: 830px) {
  main .main-catch .contact_btn {
    margin-top: 1rem;
    width: 100%;
    font-size: 20px;
    height: 56px;
  }
}
@media (max-width: 576px) {
  main .main-catch .contact_btn {
    margin: 2rem auto;
  }
}
main .main-text {
  position: relative;
  margin: 0 auto;
  height: 570px;
}
@media (max-width: 830px) {
  main .main-text {
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(80%, #fff));
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), #fff 80%);
    background: linear-gradient(to top, rgba(255, 255, 255, 0), #fff 80%);
    height: auto;
    position: relative;
    padding: 0;
  }
}

/* メディア価値 */
.scroll-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  min-height: 20vh;
}
@media (max-width: 830px) {
  .scroll-wrap {
    position: relative;
    height: auto;
  }
}

.promotion {
  text-align: center;
  padding: 100px 0 0 0;
}
@media (max-width: 830px) {
  .promotion {
    padding: 50px 0 0 0;
  }
}
.promotion .container {
  color: #fff;
  font-size: 2.6em;
  font-weight: 600;
}
@media (max-width: 830px) {
  .promotion .container {
    font-size: 1.5em;
  }
}
.promotion .container h3 {
  font-size: 0.6em;
  line-height: 2;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .promotion .container h3 {
    font-size: 0.75em;
    line-height: 1.6;
  }
}

.promotion__name {
  background: #FFB42E;
  border-radius: 8px;
  margin-top: 0.5em;
  font-size: 28px;
  padding: 0.75em;
}
@media (max-width: 768px) {
  .promotion__name {
    font-size: 1rem;
  }
}

.promotion__img {
  width: 40px;
  display: block;
  margin: 0.5em auto;
}

.promotion__merit {
  max-width: 430px;
  margin: 0 auto;
}
.promotion__merit::after {
  content: " ";
  width: 100%;
  height: 16px;
  background: #FFB42E;
  display: inline-block;
}

.topic {
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (max-width: 1080px) {
  .topic {
    font-size: 1.4rem;
    line-height: 2.4rem;
    display: block;
  }
}

/* お知らせ */
.news {
  background-color: #F2F2F2;
  display: none;
}
.news h3 {
  text-align: center;
}
.news .contact_btn.detail {
  margin: 2em 0 0 auto;
  width: 240px;
}
@media (max-width: 830px) {
  .news .contact_btn.detail {
    margin: 0 auto 0 0;
  }
}
.news .swiper-container {
  max-width: 1080px;
}

/* サービスの特徴 */
.service {
  position: relative;
}
.service h3 {
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
  font-size: 28px;
  line-height: 48px;
}
.service .container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service .container__item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  width: 49%;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 56px;
}
@media (max-width: 830px) {
  .service .container__item {
    width: 100%;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid #bebebe;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3)
  }
}
.service .container__item dl {
  padding: 1rem;
}
.service .container__item dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: bold;
  font-size: 1.3rem;
}
@media (max-width: 830px) {
  .service .container__item dl dt {
    display: block;
    font-size: 1.5rem;
  }
}
.service .container__item dl dt .text-color__secondary {
  font-size: 1rem;
}
.service .container__item dl dt .number {
  margin-bottom: 1rem;
}
@media (max-width: 830px) {
  .service .container__item dl dt .number {
    display: block;
    margin: 1rem auto;
  }
}
.service .container__item dl dd {
  padding: 1rem 0;
}
@media (max-width: 830px) {
  .service .container__item dl dd {
    padding: 0;
  }
}
.service .container__item dl dd .contact_btn.detail {
  margin: 1em auto 0 0;
  width: 135px;
  font-size: 16px;
  height: 48px;
}
.service .container .pr-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  padding: 1.5em;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 830px) {
  .service .container .pr-box {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.service .container .pr-box dl {
  padding-right: 1em;
}
.service .container .pr-box dl dt {
  font-weight: 600;
  font-size: 20px;
  padding: 0 0 1em;
}
.service .container .pr-box .pr-img {
  width: 312px;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 830px) {
  .service .container .pr-box .pr-img {
    width: 100%;
  }
}

.container__item__link {
  display: block;
}

/* feature */
.feature {
  background-color: #fff;
  color: #333333;
  text-align: center;
}
.feature .container__item {
  margin: 3.5em 0 1.5em 0;
}
@media (max-width: 768px) {
  .feature .container__item {
    display: block;
  }
}
.feature .container__item--list {
  width: 48%;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .feature .container__item--list {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .feature .container__item--list:nth-child(even) {
    padding: 3.5rem 0;
  }
}
.feature .container__item--list img {
  margin-bottom: 1em;
}

.feature_text {
  margin-top: 1em;
}

/* ad-contents */
.ad-contents .container .container__title {
  text-align: center;
}
@media (min-width: 1081px) {
  .ad-contents .container .container__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .ad-contents .container .container__item .container__item--list {
    width: 336px;
  }
  .ad-contents .container .container__item .container__item--list:not(:nth-of-type(3n)) {
    margin-right: 36px;
  }
}
.ad-contents .container .container__item .container__item--list {
  margin-top: 42px;
}
.ad-contents .container .container__item .container__item--list .list-detail .list-detail__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.ad-contents .container .container__item .container__item--list .list-detail .list-detail__text {
  font-size: 14px;
  margin-bottom: 20px;
  height: 63px;
}
.ad-contents .container .container__item .container__item--list .list-img {
  margin-bottom: 12px;
}
.ad-contents .container .container__item .container__item--list .list-button {
  text-align: center;
  background-color: #34843d;
  color: #fff;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
}

/* ad-feature */
.ad-feature {
  padding: 42px 0 0;
}
.ad-feature .container .container__title {
  text-align: center;
}
@media (min-width: 1081px) {
  .ad-feature .container .container__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .ad-feature .container .container__item .container__item--list {
    width: 336px;
  }
  .ad-feature .container .container__item .container__item--list--wide {
    width: 522px;
  }
  .ad-feature .container .container__item .container__item--list:not(:nth-of-type(3n)) {
    margin-right: 36px;
  }
  .ad-feature .container .container__item .container__item--list--wide:nth-of-type(2n) {
    margin-right: 0px;
  }
}
.ad-feature .container .container__item .container__item--list {
  margin-top: 42px;
}
.ad-feature .container .container__item .container__item--list .list-detail .list-detail__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  height: 114px;
}
@media (max-width: 830px) {
  .ad-feature .container .container__item .container__item--list .list-detail .list-detail__title {
    height: auto;
  }
}
.ad-feature .container .container__item .container__item--list .list-detail .list-detail__title--count {
  font-size: 42px;
  height: 42px;
  margin-bottom: 28px;
}
.ad-feature .container .container__item .container__item--list .list-detail .list-detail__text {
  font-size: 14px;
  margin-bottom: 20px;
  height: 273px;
}
@media (max-width: 830px) {
  .ad-feature .container .container__item .container__item--list .list-detail .list-detail__text {
    height: auto;
  }
}
.ad-feature .container .container__item .container__item--list--wide .list-detail .list-detail__text{
  height: auto;
}
.ad-feature .container .container__item .container__item--list .list-img {
  margin-bottom: 12px;
}

/* product */
.product {
  background-color: #fff;
  color: #333333;
  text-align: center;
}
.product .container__item {
  margin: 3.5em 0 1.5em 0;
}
@media (max-width: 830px) {
  .product .container__item {
    display: block;
  }
}
.product .container__item--list {
  width: 48%;
}
@media (max-width: 830px) {
  .product .container__item--list {
    width: 100%;
  }
}
.product .container__item--list:nth-child(even) {
  padding-top: 9rem;
}
@media (max-width: 830px) {
  .product .container__item--list:nth-child(even) {
    padding: 3.5rem 0;
  }
}
.product .container__item--list img {
  margin-bottom: 1em;
}
.product .contact_btn.detail {
  margin: 2em 0 0 auto;
}
@media (max-width: 830px) {
  .product .contact_btn.detail {
    margin: 0 auto 0 0;
  }
}

/* 企業ロゴ */
.logo-area {
  margin: 8em 0 5em 0;
  display: none;
}
.logo-area h4 {
  margin-bottom: 2rem;
  padding: 0 5%;
  line-height: 1.5;
}

.logo-slide {
  overflow-x: hidden;
}

.logo-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop 30s linear infinite;
          animation: loop 30s linear infinite;
  overflow-x: hidden;
}
.logo-container div {
  margin: 0 1em;
}
.logo-container div img {
  width: 140px;
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

section#top {
  padding: 0;
}
section#top .page_name {
  text-align: left;
  padding: 3em 0;
  font-weight: 600;
}
section#top .bg_gradient_color .page_name {
  color: #fff;
}

.bread-crumb {
  padding: 0.5em 0;
  background-color: #F2F2F2;
}
.bread-crumb .bread-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .bread-crumb .bread-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .bread-crumb .bread-list__item {
    font-size: 14px;
  }
}
.bread-crumb .bread-list__item.current {
  font-weight: 600;
}
.bread-crumb .bread-list__item a {
  color: #026400;
  text-decoration: underline;
}
.bread-crumb .bread-list__item::after {
  content: ">";
  color: #919191;
  margin: 0 0.5em;
}
.bread-crumb .bread-list__item:last-child::after {
  content: none;
}

.card-img img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card-name {
  font-weight: 600;
  font-size: 20px;
  margin: 10px 0;
}

.target {
  text-align: center;
  background: -webkit-gradient(linear, right top, left bottom, from(#32A343), to(#02640D));
  background: -webkit-linear-gradient(top right, #32A343, #02640D);
  background: linear-gradient(to bottom left, #32A343, #02640D);
}
.target h3 {
  color: #fff;
}
.target .container__item--list {
  width: 32%;
  margin: 3rem 0 0 0;
  border-radius: 8px;
  background-color: #fff;
  font-size: 0.9em;
  line-height: 1.7;
}
@media (max-width: 1080px) {
  .target .container__item--list {
    width: 100%;
    margin-top: 2rem;
    border-bottom: 1px solid #bebebe;
    padding-bottom: 2rem;
  }
}
.target .container__item--list .contact_btn.detail {
  position: absolute;
  bottom: 1em;
  left: 1em;
  pointer-events: auto;
}
@media (max-width: 1080px) {
  .target .container__item--list .contact_btn.detail {
    position: relative;
    margin: 1rem 0 0 0;
    bottom: 0;
  }
}
.target .container__item--list .card-img {
  height: 170px;
}
@media (max-width: 1080px) {
  .target .container__item--list .card-img {
    height: auto;
    width: 100%;
  }
}
.target .container__item--list .card-wrap {
  height: 375px;
  position: relative;
}
@media (max-width: 1080px) {
  .target .container__item--list .card-wrap {
    height: auto;
  }
}
.target .container__item--list .card-detail {
  padding: 0 1rem;
}

/* ターゲティングメニュー設計 */
.flow {
  position: relative;
  padding-top: 100px;
}
@media (max-width: 830px) {
  .flow {
    padding-top: 50px;
  }
}
.flow h3 {
  font-size: 24px;
  line-height: 1.75;
  margin-bottom: 1.5em;
}
@media (max-width: 830px) {
  .flow h3 {
    font-size: 1.2rem;
  }
}
.flow .img_vertical {
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.flow .img_vertical--pc {
  width: 1445px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1080px) {
  .flow .img_vertical--pc {
    display: none;
  }
}
.flow .img_vertical--pc::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#026400), color-stop(50%, #026400), color-stop(50%, #E3A22E), to(#E3A22E));
  background: -webkit-linear-gradient(left, #026400 0%, #026400 50%, #E3A22E 50%, #E3A22E 100%);
  background: linear-gradient(90deg, #026400 0%, #026400 50%, #E3A22E 50%, #E3A22E 100%);
  width: 100%;
  position: absolute;
  left: 0;
  height: 88px;
  display: block;
  z-index: -1;
}
.flow .img_vertical--sp {
  width: 1080px;
  display: none;
}
@media (max-width: 1080px) {
  .flow .img_vertical--sp {
    display: block;
  }
}
.flow .img_vertical::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.flow .slide_vertical {
  display: none;
  overflow-x: scroll;
  background-image: url(./../img/img_ads_target-pc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 8% 0 0 0;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.flow .slide_vertical::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.flow .container__item {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.flow .container__item--list {
  max-width: 33px;
  min-width: 330px;
  margin: 1em;
  position: relative;
}
.flow .card-wrap {
  -webkit-box-shadow: 0 3px 10px #ccc;
          box-shadow: 0 3px 10px #ccc;
  border-radius: 8px;
  height: 180px;
}
@media (max-width: 1080px) {
  .flow .card-wrap {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
.flow .flow-name {
  padding-bottom: 1em;
  font-weight: 600;
}
.flow .flow-vertical {
  width: 6%;
  max-width: 50px;
  left: 0;
}
.flow .icon-number {
  position: relative;
  height: 40px;
  width: 60px;
  margin: 0 auto 0.5em;
  left: 39%;
}

/* ターゲティング詳細 */
.service_targeting .wrapper {
  margin-bottom: 50px;
}
@media (max-width: 1080px) {
  .service_targeting .wrapper {
    border-bottom: 1px solid #bebebe;
    padding-bottom: 3rem;
  }
}
.service_targeting .wrapper:last-child {
  margin: 0;
}
@media (max-width: 1080px) {
  .service_targeting .wrapper:last-child {
    border: none;
    padding: 0;
  }
}
.service_targeting .wrapper__item.targeting-detail {
  width: 63%;
  padding-right: 1em;
}
@media (max-width: 1080px) {
  .service_targeting .wrapper__item.targeting-detail {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}

.graph {
  width: 33%;
  margin-top: 2em;
}
@media (max-width: 768px) {
  .graph {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */
.container_bottom_line {
  border-bottom: 2px solid #707070;
  padding: 0px 0px 63px 0px;
}
.container_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top_image{
  width: 522px;
}
@media (max-width: 768px) {
  .top_image {
    width: 100%;
    margin: 0px 0px 20px 0px;
  }
}
.page_name {
  width: 522px;
  margin: 0px 35px 0px 0px;
}

.page_name_wide {
  width: auto;
}