@charset 'UTF-8';

/*---------------	リセットcss	---------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

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

html {
  overflow-y: scroll;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

input,
textarea,
button {
  border: none;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
}

body {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

/* ========================================
	Component(共通利用の部品)
	命名規則: .c-
========================================= */

.c-container {
  width: 100%;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
}

#l-commercehack__feature .c-container,
#l-solution_detail__feature .c-container,
#l-solution__app .c-container {
  width: 100%;
  max-width: none;
}

/*----- ハイライト -----*/
.c-highlight {
  font-weight: 700;
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(0%, rgb(169, 225, 52, 0.5)));
  background: linear-gradient(transparent 10%, rgb(169, 225, 52, 0.5) 0%);
}

/*----- ページネーション -----*/

.c-pagination {
  margin: 0 auto 10rem;
}

.c-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-pagination ul a,
.c-pagination ul span {
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -.01em;
  color: #92c32d;
}

.c-pagination ul a.page-numbers,
.c-pagination ul span.page-numbers {
  margin: 0 .3125rem;
}

.c-pagination ul a.page-numbers.current,
.c-pagination ul span.page-numbers.current {
  pointer-events: none;
  color: #333;
}

.c-pagination ul a.prev,
.c-pagination ul span.prev {
  margin: 0 .6875rem 0 0;
}

.c-pagination ul a .dots,
.c-pagination ul span .dots {
  margin: 0 .6875rem;
}

.c-pagination ul a.next,
.c-pagination ul span.next {
  margin: 0 0 0 .6875rem;
}

/*----- レスポンシブ表示切り替え -----*/

.c-pc_only {
  display: block !important;
}

.c-pc_only--flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.c-sp_only {
  display: none !important;
}

.c-sp_only--flex {
  display: none !important;
}

/*----- マージン調整 -----*/

.c-mr--0 {
  margin-right: 0 !important;
}

.c-mb--0 {
  margin-bottom: 0 !important;
}

/*----- ヘッダー -----*/

.c-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 5rem;
  padding: 0 2rem;
  background-color: #fff;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__logo {
  width: 12.125rem;
  height: auto;
}

.c-header__logo a {
  display: block;
  width: 100%;
  height: auto;
}

.c-header__rightbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__menubox {
  height: 100%;
}

.c-header__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__menu {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 2rem;
  letter-spacing: .05em;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__menu a {
  text-decoration: none;
  color: #000;
  -webkit-transition: unset;
  transition: unset;
}

.c-header__2levelmenu:hover .c-header__menuheader a {
  color: #2EBC00;
}

.c-header__menuheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  cursor: pointer;
  /*-webkit-transition: .3s;*/
  /*transition: .3s;*/
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__menuheader:after {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: .25rem;
  content: '';
  -webkit-transition: .3s;
  transition: .3s;
  background: url(../images/icon-chevron_below.svg) 50% 50% no-repeat;
  background-size: contain;
}

.c-header__2ndmenubox {
  position: absolute;
  /*bottom: 0;*/
  top: 80px;
  left: 0;
  display: block;
  visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*width: 100vw;*/
  /*height: auto;*/
	margin: 0 -10px;
  /*padding: 2rem 0 2.5rem;*/
  padding: 0 10px;
  /*-webkit-transition: .3s;*/
  /*transition: .3s;*/
  /*-webkit-transform: translateY(100%);*/
  /*transform: translateY(100%);*/
  opacity: 0;
  background-color: #fff;
  /*box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.05);*/
}

.c-header__2ndmenus {
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*justify-content: center;*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__2ndmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*margin-right: 6.187%;*/
  margin-right: 3%;
  margin-bottom: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  &:last-child {
    margin-bottom: 0.625rem;
  }
}

.c-header__2ndmenu__image {
  width: 10rem;
  height: auto;
  margin: 0 1.6875rem 0 0;
}

.c-header__2ndmenu__infobox__text {
  /*font-size: 1.125rem;*/
  /*font-weight: 700;*/
  line-height: 1;
  display: block;
  text-decoration: none;
  letter-spacing: .05em;
  color: #333;
	white-space: nowrap;
}
.c-header__2ndmenu__infobox__text:hover {
	color: #2EBC00;
}

.c-header__2ndmenu__infobox__linkbtn,
.c-customer_voice__linkbtn {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 9.5625rem;
  height: 2.625rem;
  padding-left: 1.625rem;
  white-space: nowrap;
  letter-spacing: .05em;
  color: #75a31f !important;
  border: 1px solid #75a31f;
  border-radius: 1.3125rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__2ndmenu__infobox__linkbtn:after,
.c-customer_voice__linkbtn:after {
  position: absolute;
  top: 50%;
  right: 1.4375rem;
  width: .5625rem;
  height: .875rem;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon-chevron_right_green.png) 50% 50% no-repeat;
  background-size: contain;
}

.c-header__2levelmenu {
	position: relative;
  height: 100%;
}

.c-header__2levelmenu:hover .c-header__menuheader {
  color: #2EBC00;
}

.c-header__2levelmenu:hover .c-header__menuheader:after {
  background: url(../images/icon-chevron_up_lightgreen.svg) 50% 50% no-repeat;
  background-size: contain;
}

.c-header__2levelmenu:hover .c-header__2ndmenubox {
  visibility: visible;
  opacity: 1;
}

.c-header__contact_btn {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 9.1875rem;
  height: 2.875rem;
  white-space: nowrap;
  letter-spacing: .05em;
  color: #fff;
  border-radius: 0.75rem;
  background-color: #2EBC00;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.c-header__contact_btn .icon {
  width: 1rem;
  height: auto;
  margin-right: .5rem;
}

.c-header__navToggle {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  background-color: #2EBC00;
}

.c-header__navToggle span {
  position: absolute;
  left: .625rem;
  display: block;
  width: 1.25rem;
  height: .0625rem;
  border-radius: 0.03125rem;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  background-color: #fff;
}

.c-header__navToggle span:nth-child(1) {
  top: .84375rem;
}

.c-header__navToggle span:nth-child(2) {
  top: 1.21875rem;
}

.c-header__navToggle span:nth-child(3) {
  top: 1.59375rem;
}

.c-header__navToggle.active span:nth-child(1) {
  top: 1.21875rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-header__navToggle.active span:nth-child(2),
.c-header__navToggle.active span:nth-child(3) {
  top: 1.21875rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-header__menu_contact_btn {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 13.75rem;
  height: 2.875rem;
  margin: 0 auto;
  white-space: nowrap;
  letter-spacing: .05em;
  color: #fff;
  background: url(../images/btn-sp.png) 50% 50% no-repeat;
  background-size: cover;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.c-header__menu_contact_btn .icon {
  width: .875rem;
  height: auto;
  margin-right: .375rem;
  margin-bottom: 0;
}

.c-header__blackscreen {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
  background-color: rgba(0, 0, 0, .5);
}

.c-header__blackscreen.active {
  /*visibility: visible;*/
  opacity: 1;
}

/*----- サービス実績エリア -----*/

.c-achievement {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0;
  background-color: #f8ffeb;
}

.page-id-149 .c-achievement {
  background-color: #fff;
}

.c-achievement__tilte {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.025em;
}

.c-achievement__toptext {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  color: #000;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.025em;
}

.c-achievement__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2.5rem auto 0;
}

.c-achievement__logo {
  width: calc( 25% - 7.5px );
  height: auto;
}

/*----- お客様からの評価エリア -----*/

.c-customer_voice {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 7.5rem 0;
  background-color: #f8ffeb;
}

.c-customer_voice__title {
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 auto 3.9375rem;
  text-align: center;
  white-space: nowrap;
  letter-spacing: .025em;
}

.c-customer_voice__slidecontainer {
  position: relative;
}

.c-customer_voice__swiper-container {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.c-customer_voice__swiper-container .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  background-color: #f8ffeb;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-customer_voice__image {
  display: block;
  width: 40%;
  height: auto;
  margin-right: 6%;
}

.c-customer_voice__textbox {
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-customer_voice__infobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5625rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-customer_voice__customer_image {
  position: relative;
  width: 5rem;
  height: auto;
  margin-right: 1.25rem;
}

.c-customer_voice__customer_image::before {
  display: block;
  padding-top: 100%;
  content: '';
}

.c-customer_voice__customer_image img {
  font-family: 'object-fit: cover;';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-customer_voice__customer_image.no-img img {
  border: 1px solid #ccc;
}

.c-customer_voice__customer_info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-customer_voice__customer_name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.625;
  margin-bottom: .8125rem;
  letter-spacing: .05em;
}

.c-customer_voice__customer_status {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: .05em;
  color: #666;
}

.c-customer_voice__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: 1.5625rem;
  text-align: justify;
  letter-spacing: -.01em;
  color: #333;
}

.c-customer_voice__linkbtn {
  background-color: #fff;
}

.c-customer_voice__swiper-button-prev,
.c-customer_voice__swiper-button-next {
  position: absolute;
  top: 50%;
  width: 2.8125rem;
  height: auto;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-customer_voice__swiper-button-prev {
  left: 0;
}

.c-customer_voice__swiper-button-next {
  right: 0;
}

.c-customer_voice__swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  max-width: 1000px;
  margin: 3.75rem auto 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-customer_voice__swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 7.5px;
  opacity: 1;
  background-color: #ccc;
}

.c-customer_voice__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5d9037;
}

/*----- 導入企業エリア -----*/

.c-customer_company {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 7.5rem 0 8.75rem;
}

.c-customer_company__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto 3.625rem;
  text-align: center;
  white-space: nowrap;
  letter-spacing: .025em;
}

.c-customer_company__logo {
  width: 96.640625%;
  height: auto;
  margin: 0 auto;
}

.c-customer_company__logo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-customer_company__logo li {
  width: calc((100% - 18.75rem) / 6);
  padding: 0 1.5625rem 1.875rem;
}

/*----- フッター -----*/

.c-footer {
  border-top: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 0 0 2.5rem;
}

.c-footer .c-container {
/*   border-top: 1px solid #ccc; */
}

.c-footer__linkto_top {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 7rem;
  height: 2.5rem;
  margin: 0 1.25rem 2.5rem auto;
  white-space: nowrap;
  text-decoration: none;
  color: #75a31f;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-footer__linkto_top .icon {
  width: .875rem;
  height: auto;
  margin: .5rem .5rem .5rem 0;
}

.c-footer__flex_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 95%;
  /* max-width: 1000px; */
  height: auto;
  margin: 0 auto 3.125rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-footer__link_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.c-footer__link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 3.625rem;
  padding: .75rem 3.625rem 2.5rem 0;
  border-right: 1px solid #ccc;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.c-footer__storehero_linkbox {
  max-width: 150px;
  margin-right: 3.625rem;
}

.c-footer__service_linkbox {
  max-width: 150px;
  margin-right: 3.625rem;
}

.c-footer__solution_linkbox {
  max-width: 150px;
  margin-right: 3.625rem;
}

.c-footer__link_category {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1.75rem;
  padding-left: 1.25rem;
  white-space: nowrap;
  letter-spacing: .05em;
}

.c-footer__link_category:before {
  position: absolute;
  top: 50%;
  left: .125rem;
  width: .625rem;
  height: .125rem;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #92c22d;
}

.c-footer__link_category a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
}

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

.c-footer__link:not(:last-child) {
  margin-bottom: 1.75rem;
}

.c-footer__link a {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  display: inline;
  text-decoration: none;
  letter-spacing: .05em;
  color: #666;
}

.c-footer__company_linkbox {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: .75rem 0 2.5rem;
}

.c-footer__company_linkbox .c-footer__links {
  margin-right: 3.625rem;
}

.c-footer__company_linkbox_flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.c-footer__logo {
  width: 11rem;
  height: auto;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.c-footer__logo:hover {
  opacity: .7;
}

.c-footer__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4.375rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-footer__lang li {
  display: inline-block;
}

.c-footer__lang li+li {
  margin-left: 4.0625rem;
}

.c-footer__lang li a {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  display: inline;
  letter-spacing: .05em;
  color: #666;
}

.c-footer__copyright {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  white-space: nowrap;
  letter-spacing: .05em;
  color: #b2b2b2;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*----- ヘッダー余白調整 -----*/

.c-header__margin_adjust {
  margin-top: 5rem;
}

/*----- 共通パーツ -----*/

.c-linkbtn {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16.25rem;
  height: 4.25rem;
  white-space: nowrap;
  letter-spacing: .05em;
  color: #fff !important;
  background: url(../images/btn-small.png) 50% 50% no-repeat;
  background-size: cover;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.c-linkbtn:after {
  position: absolute;
  top: 50%;
  right: 1.75rem;
  width: .625rem;
  height: 1.125rem;
  content: '';
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon-chevron_right_white.png) 50% 50% no-repeat;
  background-size: contain;
}

/* ========================================
	Utility(わずかな調整などを行うための便利要素)
	命名規則: .u-
========================================= */

@media screen and (min-width: 769px) {
  .c-container {
    width: 100%;
  }

  .c-header__2ndmenu__infobox__text {
    /*pointer-events: none;*/
  }
}

@media screen and (min-width: 769px) and (min-width: 1400px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .c-container {
    width: 89.333333%;
  }

  #l-commercehack__feature .c-container,
  #l-solution_detail__feature .c-container,
  #l-solution__app .c-container {
    width: 89.333333%;
  }

  .c-pagination {
    margin: 0 auto 6.25rem;
  }

  .c-pagination ul a,
  .c-pagination ul span {
    font-size: 1rem;
  }

  .c-pc_only {
    display: none !important;
  }

  .c-pc_only--flex {
    display: none !important;
  }

  .c-sp_only {
    display: block !important;
  }

  .c-sp_only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .c-header {
    height: 56px;
    padding: 0 1rem;
  }

  .c-header__logo {
    width: 130px;
    margin-bottom: 4px;
  }

  .c-header__menubox {
    position: fixed;
    top: 52px;
    left: 0;
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 52px);
    padding: .28125rem 0 6.25rem;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
  }

  .c-header__menubox.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .c-header__menus {
    display: block;
    width: 89.333333%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 2rem;
    border-top: 1px solid #ccc;
  }

  .c-header__menu {
    width: 100%;
    margin-right: 0;
    padding: 1.25rem 0;
    border-bottom: 1px solid #ccc;
  }

  .c-header__menu a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 1rem;
    color: #333;
  }

  .c-header__menu a:after {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: .4375rem;
    height: .75rem;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/icon-chevron_right.png) 50% 50% no-repeat;
    background-size: contain;
  }

  .c-header__menuheader {
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.75rem;
    white-space: nowrap;
  }

  .c-header__menuheader:after {
    display: none;
  }

  .c-header__menuheader:before {
    width: .3125rem;
    height: .0625rem;
    margin-right: .5625rem;
    margin-left: .0625rem;
    content: '';
    background-color: #92c22d;
  }

  .c-header__menuheader a {
    margin: 0;
    padding: 0;
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    color: #000;
  }

  .c-header__2ndmenubox {
    position: relative;
    top: auto;
    visibility: visible;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 1rem;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    box-shadow: none;
  }

  .c-header__2ndmenus {
    display: block;
    padding: 0;
  }

  .c-header__2ndmenu {
    margin-right: 0;
    margin-bottom: 0.25rem;
  }

  .c-header__2ndmenu:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .c-header__2ndmenu__image {
    width: 4.875rem;
    margin: 0 1.21875rem 0 0;
  }

  .c-header__2ndmenu__infobox {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .c-header__2ndmenu__infobox__text {
    font-size: 1rem;
    margin-bottom: 0;
    padding: 0 !important;
  }

  .c-header__2ndmenu__infobox__text:after {
    right: 0 !important;
  }

  .c-header__2levelmenu {
    width: 100%;
    height: auto;
  }

  .c-header__2levelmenu:hover .c-header__menuheader {
    color: #000;
  }

  .c-header__contact_btn {
    font-size: .875rem;
    font-weight: 700;
    width: auto;
    height: auto;
    margin-right: 1em;
    color: #092300;
    background: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .c-header__contact_btn .icon {
    width: 1rem;
    margin-right: 0.375rem;
  }

  .c-header__blackscreen {
    -webkit-transition: 0s;
    transition: 0s;
  }

  .c-achievement {
    padding: 2.5rem 0;
  }

  .c-achievement__tilte {
    font-size: 1.5rem;
  }

  .c-achievement__toptext {
    font-size: 0.875rem;
  }

  .c-achievement__logos {
    margin: 1.5rem auto 0;
  }

  .c-achievement__logo {
    width: calc( 50% - 5px );
  }

  .c-customer_voice {
    padding: 3.875rem 0;
  }

  .c-customer_voice__title {
    font-size: 1.625rem;
    margin: 0 auto 2rem;
  }

  .c-customer_voice__swiper-container {
    width: 87.313433%;
  }

  .c-customer_voice__swiper-container .swiper-slide {
    display: block;
  }

  .c-customer_voice__image {
    /*width: 68.259386%;*/
    width: 100%;
    margin: 0 auto 1.25rem;
  }

  .c-customer_voice__infobox {
    margin-bottom: 1rem;
  }

  .c-customer_voice__customer_image {
    width: 3.125rem;
    margin-right: .625rem;
  }

  .c-customer_voice__customer_name {
    font-size: .8125rem;
    margin-bottom: .625rem;
  }

  .c-customer_voice__customer_status {
    font-size: .8125rem;
  }

  .c-customer_voice__text {
    font-size: .9375rem;
    line-height: 1.53846154;
    margin-bottom: 1.0625rem;
  }

  .c-customer_voice__linkbtn {
    font-size: .75rem;
    width: 7.78125rem;
    height: 2.1875rem;
    padding-left: 1.5rem;
    border-radius: 1.09375rem;
  }

  .c-customer_voice__linkbtn:after {
    right: .96875rem;
    width: .375rem;
    height: .625rem;
    background-size: cover;
  }

  .c-customer_voice__swiper-button-prev,
  .c-customer_voice__swiper-button-next {
    width: 1rem;
  }

  .c-customer_voice__swiper-button-prev {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .c-customer_voice__swiper-button-next {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  .c-customer_voice__swiper-pagination {
    width: 100%;
    margin: 0.5rem auto 0;
  }

  .c-customer_voice__swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }

  .c-customer_company {
    padding: 5.125rem 0 6rem;
  }

  .c-customer_company__title {
    font-size: 1rem;
    margin: 0 auto .90625rem;
  }

  .c-customer_company__logo {
    width: 88.059701%;
  }

  .c-customer_company__logo li {
    width: calc((100% / 3) - 1.25rem);
    padding: 0 .625rem 1.5625rem;
  }

  .c-footer {
    padding: 0 0 1.875rem;
  }

  .c-footer__linkto_top {
    font-size: .75rem;
    width: 4.6875rem;
    height: 1.875rem;
    margin: 0 .4375rem 2rem auto;
  }

  .c-footer__linkto_top .icon {
    width: .59375rem;
    margin-right: .34375rem;
  }

  .c-footer__flex_container {
    display: block;
    width: 100%;
    margin: 0 auto 3.3125rem;
  }

  .c-footer__link_container {
    display: block;
    margin: 0 auto 3.34375rem;
  }

  .c-footer__link_box {
    margin-right: 0;
    margin-bottom: 1.875rem;
    padding: 0 0 1.875rem;
    border-right: 0;
    border-bottom: 1px solid #ccc;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

	.c-footer__storehero_linkbox {
		width: 100%;
		max-width: none;
		margin-right: 0;
	}

  .c-footer__service_linkbox {
    width: 100%;
    max-width: none;
    margin-right: 0;
	  margin-top: 2rem;
  }

  .c-footer__solution_linkbox {
    width: 50%;
    max-width: none;
    margin-right: 0;
  }

  .c-footer__shopify_linkbox {
    width: 100%;
    margin-top: 2rem;
  }

  .c-footer__link_category {
    font-size: .875rem;
    margin-bottom: 1.25rem;
    padding-left: .84375rem;
  }

  .c-footer__link_category:before {
    left: .0625rem;
    width: .3125rem;
    height: .0625rem;
  }

  .c-footer__link:not(:last-child) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: .9375rem;
    padding-left: .125rem;
  }

  .c-footer__link a {
    font-size: .8125rem;
    letter-spacing: .01em;
  }

  .c-footer__company_linkbox {
    padding: 0;
  }

  .c-footer__company_linkbox .c-footer__links {
    width: 50%;
    margin-right: 0;
  }

  .c-footer__logo {
    width: 10rem;
    margin: 0 auto;
  }

  .c-footer__lang {
    margin-bottom: 3.125rem;
  }

  .c-footer__lang li+li {
    margin-left: 2.1875rem;
  }

  .c-footer__lang li a {
    font-size: .8125rem;
    letter-spacing: .01em;
  }

  .c-footer__copyright {
    font-size: .625rem;
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  .c-header__margin_adjust {
    margin-top: 56px;
  }

  .c-linkbtn {
    font-size: .875rem;
    width: 13.75rem;
    height: 2.875rem;
    background: url(../images/btn-sp.png) 50% 50% no-repeat;
    background-size: cover;
  }

  .c-linkbtn:after {
    right: 1.1875rem;
    width: .40625rem;
    height: .6875rem;
    background-size: cover;
  }
}

@media screen and (max-width: 360px) {
  .c-container {
    width: 89.333333%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1300px) {
  .c-container {
    width: 95%;
  }

  .c-header__2ndmenus {
    padding: 0 3%;
  }

  .c-header__2ndmenu {
    margin-right: 5%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-container {
    width: 95%;
  }

  .c-header__menu {
    margin-right: 1.25rem;
    font-size: 0.875rem;
  }

  .c-header__2ndmenu {
    margin-right: 3%;
  }

  .c-header__2ndmenu__image {
    width: 8.125rem;
    margin-right: 1.25rem;
  }

  .c-header__2ndmenu__image {
    width: 8.125rem;
    margin-right: 1.25rem;
  }

  .c-header__2ndmenu__infobox__linkbtn,
  .c-customer_voice__linkbtn {
    width: 8.125rem;
    height: 2.1875rem;
    padding-left: .9375rem;
  }

  .c-header__2ndmenu__infobox__linkbtn:after,
  .c-customer_voice__linkbtn:after {
    right: .9375rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .c-container {
    width: 95%;
  }

  .c-linkbtn {
    font-size: 1rem;
    width: 15rem;
    height: 3.875rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-container {
    width: 95%;
  }

  .c-footer__link_box {
    padding: .75rem 2.8125rem 2.5rem 0;
  }

  .c-footer__service_linkbox {
    margin-right: 2.8125rem;
  }

  .c-footer__link_category {
    font-size: 1rem;
  }

  .c-footer__link a {
    font-size: .875rem;
  }

  .c-footer__company_linkbox .c-footer__links {
    margin-right: 2.8125rem;
  }

  .c-footer__lang li a {
    font-size: .875rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  .c-container {
    width: 95%;
  }
}

@media screen and (min-width: 769px) and (max-width: 845px) {
  .c-container {
    width: 95%;
  }

  .c-header__menu {
    margin-right: 1rem;
    font-size: 0.825rem;
  }

  .c-header__2ndmenu__image {
    width: 7.5rem;
    margin-right: .9375rem;
  }

  .c-header__2ndmenu__infobox__linkbtn,
  .c-customer_voice__linkbtn {
    width: 7.5rem;
    height: 1.875rem;
    padding-left: .75rem;
  }

  .c-header__2ndmenu__infobox__linkbtn:after,
  .c-customer_voice__linkbtn:after {
    right: .75rem;
  }
}

@media screen and (min-width: 421px) and (max-width: 768px) {
  .c-container {
    width: 89.333333%;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .c-container {
    width: 89.333333%;
  }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
  .c-container {
    width: 89.333333%;
  }
}


/* ========================================
　一部の画像ボーダーを消去
========================================= */
.p-blogpage__article__content img.wp-image-4345 {
    border: none !important;
}