@charset "UTF-8";

/*
  scssでカスタマイズしています。
  css編集するときはscssから変更するか、cssファイルを直接編集する場合は
  編集以降はcssのみ編集してください。
*/

/*---------------	リセット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 {
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  font-style: normal;
}

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-collapse: collapse;
  border-spacing: 0;
}

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;
}

/* ========================================
	Component(共通利用の部品。幅とか色は持たせない)
	命名規則: .c-
========================================= */

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

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

.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;
}

/*----- フォント指定class -----*/

.c-font--english {
  font-family: "Sorts Mill Goudy", "Arial", serif !important;
}

.c-font--hiragino_kakugo {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
  "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ＭＳ ゴシック",
  sans-serif !important;
}

.c-font--yugo {
  font-family: YuGothic, "Yu Gothic" !important;
}

/*----- padding、margin調整 -----*/

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

/*----- 共用class -----*/

.c-section__headerbox {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.c-section__header {
  margin: 0 auto 1.25rem;
  font-size: 2.125rem;
  text-align: center;
  line-height: 1.73529412;
}

.c-section__header--english {
  font-size: 1.625rem;
  color: #357944;
  text-align: center;
  line-height: 1.46153846;
}

.c-fadein {
  -webkit-transition: all 3s ease;
  transition: all 3s ease;
  opacity: 0;
}

.c-fadein.active {
  opacity: 1;
}

.c-slideup {
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}

.c-slideup.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

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

/* ========================================
	Founfation (id推奨)
========================================= */

html {
  font-size: 100%;
}

body {
  font-size: 1rem;
  font-weight: 300;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Gothic UI", "ＭＳ 明朝", "MS Mincho", sans-serif;
  color: #292929;
}

body.menuopen {
  position: relative;
}

body.menuopen:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 70;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  content: "";
}

main {
  min-height: calc(100vh - 50px);
}

figure,
picture,
img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
}

/* ========================================
	Layout (id推奨)
	命名規則: #id-
========================================= */

#l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  background-color: #f8f8f8;
}

#l-fv {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-top: 50px;
  background-color: #f8f8f8;
}

#l-about {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0;
  background-color: #f8f8f8;
}

#l-news {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0;
}

#l-greeting {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0;
  background: url(../images/bg-greeting_pc.png) 50% 50% no-repeat;
  background-size: cover;
}

#l-greeting .c-section__header,
#l-greeting .c-section__header--english {
  color: #fff;
  text-shadow: 0 0 .625rem rgba(0, 0, 0, .55);
}

#l-partner {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0 4.375rem;
  background-color: #f8f8f8;
}

#l-consultant {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0 4.375rem;
}

#l-solution {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0 0;
  background-color: #f8f8f8;
}

#l-contact {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#l-company {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0;
  background: url(../images/bg-company_pc.png) 50% 50% no-repeat;
  background-size: cover;
}

#l-footer {
  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;
  width: 100%;
  height: 3.125rem;
  background-color: #357944;
}

#l-footer small {
  font-size: .75rem;
  color: #fff;
}

#l-404,
#l-thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 100px);
  padding-top: 20%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#l-404 h1,
#l-thanks h1 {
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
}

#l-404 p,
#l-thanks p {
  margin-bottom: .625rem;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}

#l-404 p a,
#l-thanks p a {
  text-decoration: none;
  color: #0093ff;
  text-align: center;
}

/* ========================================
	Project(コンテンツを構成する具体的な要素)
	命名規則: .p-
========================================= */

/*----- ヘッダーカスタマイズ -----*/

.header__nav_pc {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

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

.header__link_pc {
  margin-right: 5%;
}

.header__link_pc.logo {
  width: .89625rem;
  height: auto;
  margin-right: 9.3333%;
}

.header__link_pc a {
  font-size: .875rem;
  color: #292929;
  line-height: 1;
  white-space: nowrap;
}

.header__link_pc a:hover {
  opacity: .7;
}

.p-header__navToggle {
  position: fixed;
  top: 1.125rem;
  right: .625rem;
  z-index: 103;
  display: block;
  width: 1.25rem;
  height: .875rem;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.p-header__navToggle span {
  position: absolute;
  left: 0;
  display: block;
  width: 1.25rem;
  height: .0625rem;
  border-radius: .03125rem;
  background-color: #292929;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.p-header__navToggle span:nth-child(1) {
  top: 0;
}

.p-header__navToggle span:nth-child(2) {
  top: .375rem;
}

.p-header__navToggle span:nth-child(3) {
  top: .75rem;
}

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

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

.p-header__globalmenusp {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 102;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.p-header__globalmenusp.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.p-header__globalmenusp__whitearea {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 3.125rem 0;
  background-color: #f8f8f8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-header__globalmenusp__logo {
  display: block;
  width: 1.34438rem;
  height: auto;
  margin: 0 auto 1.875rem;
}

.p-header__globalmenusp__logo a {
  display: block;
  width: 100%;
  height: auto;
}

.p-header__globalmenusp__linkboxs {
  display: block;
  width: 100%;
  height: auto;
}

.p-header__globalmenusp__linkbox {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
}

.p-header__globalmenusp__linkbox:not(:last-child) {
  margin-bottom: 1.875rem;
}

.p-header__globalmenusp__linkbox a {
  display: block;
  width: 100%;
  height: auto;
  text-decoration: none;
  font-size: .875rem;
  color: #292929;
  text-align: center;
  line-height: 1;
}

/*----- ファーストビジュアルカスタマイズ -----*/

.p-fv__bgbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 51.5625rem;
  margin: 0 auto;
  background: url(../images/bg-fv_pc.png) 50% 50% no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-fv__contentbox1,
.p-fv__contentbox2 {
  width: 48.166667%;
  height: auto;
  margin: 0 0 0 auto;
  border-top: 4px solid #357944;
  padding: 1.875rem 0 1.875rem 2.5%;
  background-color: rgba(255, 255, 255, .8);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, .25);
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, .25);
}

.p-fv__message--english {
  margin-bottom: .9375rem;
  font-size: 3.75rem;
  line-height: 1.33333333;
}

.p-fv__message {
  font-size: 1.625rem;
  line-height: 1.46153846;
}

.p-fv__contentbox2 {
  margin: 0 0 0 auto;
  border-top: 4px solid #ffa621;
  padding: 1.375rem 0 1.3125rem 2.5%;
}

.p-fv__companyname {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: .92307692;
}

/*----- StockSunについてカスタマイズ -----*/

.p-about__contentbox1,
.p-about__contentbox2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 3.75rem auto 3.125rem;
  border-top: 4px solid #357944;
  border-right: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
  border-left: 1px solid #c1c1c1;
  padding: 4.125rem 3.33333% 4.375rem 4.83333%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-about__contentbox1__img {
  width: 40.53902%;
  height: auto;
}

.p-about__contentbox1__sentencebox {
  width: 54.446461%;
  height: auto;
}

.p-about__contentbox__header {
  margin: .1875rem auto .5rem;
  font-size: 1.75rem;
  text-align: center;
  line-height: 1.5;
}

.p-about__contentbox__partition {
  width: 100%;
  height: auto;
  margin: 0 auto 1.1875rem;
}

.p-about__contentbox__message {
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: -.01em;
}

.p-about__contentbox1__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.p-about__contentbox1__list {
  width: 30.833333%;
  height: auto;
}

.p-about__contentbox1__list__image {
  width: 100%;
  height: auto;
  margin: 0 auto .6875rem;
}

.p-about__contentbox1__list__sentence {
  font-size: 1rem;
  line-height: 1.5;
}

.p-about__contentbox1__list__sentence a {
  text-decoration: none;
  color: #0093ff;
}

.p-about__contentbox1__list__sentence a:hover {
  opacity: .7;
}

.p-about__contentbox2 {
  margin: 0 auto;
  padding: 5.40625rem 3.33333% 5.875rem;
}

.p-about__contentbox2__img {
  width: 45.089286%;
  height: auto;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.p-about__contentbox2__sentencebox {
  width: 53.571429%;
  height: auto;
  padding-top: 4.59375rem;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.p-about__contentbox2__sentencebox .p-about__contentbox__message {
  margin-bottom: 0;
}

/*----- お知らせカスタマイズ -----*/

.p-news__lists {
  width: 100%;
  height: auto;
  max-height: 12.5rem;
  margin: 3.75rem auto 0;
  -ms-overflow-style: none;
  overflow-y: scroll;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}

.p-news__list {
  width: 100%;
  height: auto;
  margin: 0 auto 1.03125rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: .40625rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-news__list:last-child {
  margin: 0 auto;
}

.p-news__list__date,
.p-news__list__sentence,
.p-news__list__link {
  display: inline-block;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.5;
  word-wrap: break-word;
}

.p-news__list__date {
  margin-right: 1.25%;
}

.p-news__list__link {
  color: #0093ff;
}

.p-news__list__link:hover {
  opacity: .7;
}

/*----- ご挨拶カスタマイズ -----*/

.p-greeting__contentbox {
  width: 100%;
  height: auto;
  margin: 3.5625rem auto 0;
  padding: 2.5rem 3.33333% 2.625rem;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-greeting__contentbox__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 0 auto 2.5rem;
}

.p-greeting__contentbox__img {
  width: 46.428571%;
  height: auto;
}

.p-greeting__contentbox__sentencebox {
  width: 46.428571%;
  height: auto;
}

.p-greeting__contentbox__header {
  width: 100%;
  height: auto;
  margin: 0 auto 2.125rem;
  border: 1px solid #292929;
  padding: .46875rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.45833333;
}

.p-greeting__contentbox__message {
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

.p-greeting__contentbox__profile {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.p-greeting__contentbox__profile__name {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto .6875rem;
  font-size: 1rem;
  color: #357944;
  line-height: 1.5;
}

.p-greeting__contentbox__profile__name:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 1px;
  background: url(../images/line-blackdots_pc.png) 50% 50% repeat-x;
  background-size: contain;
  content: "";
}

.p-greeting__contentbox__profile__sentence {
  font-size: .875rem;
  line-height: 1.71428571;
}

.p-greeting__contentbox__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: auto;
}

.p-greeting__contentbox__link {
  width: 23.392857%;
  height: auto;
}

.p-greeting__contentbox__linkbtn {
  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;
  width: 100%;
  height: 3.625rem;
  border: 1px solid #292929;
  padding: 0;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
  font-size: 1.25rem;
  color: #357944;
  line-height: 1;
}

.p-greeting__contentbox__linkbtn .p-greeting__contentbox__linkname {
  display: inline-block;
  padding-top: .1875rem;
}

.p-greeting__contentbox__linkbtn .p-greeting__contentbox__linkicon {
  width: 1.125rem;
  height: 1.125rem;
  margin-left: .625rem;
  background: url(../images/icon-chevron_right@2x.png) 50% 50% no-repeat;
  background-size: cover;
}

.p-greeting__contentbox__linkbtn:hover {
  border: 1px solid #357944;
  background-color: #357944;
  color: #fff;
}

.p-greeting__contentbox__linkbtn:hover .p-greeting__contentbox__linkicon {
  background: url(../images/icon-chevron_right_on_mouce@2x.png) 50% 50% no-repeat;
  background-size: cover;
}

/*----- Partnerカスタマイズ -----*/

.p-partner__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin: 3.75rem auto 0;
}

/*
.p-partner__targetcontainer {
  display: none;
}

.p-partner__tabs2 {
  @extend .p-partner__tabs;
  margin: rem-calc(20px) auto 0;

  @include sp {
    margin: rem-calc(11px) auto 0;
  }
}
*/

.p-partner__tab {
  position: relative;
  z-index: 1;
  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;
  width: 23.75%;
  height: 4.375rem;
  margin: 1.25rem 1.66667% 0 0;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -.03em;
  white-space: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-partner__tab:nth-child(-n + 4) {
  margin-top: 0;
}

.p-partner__tab:nth-child(4n) {
  margin-right: 0;
}

.p-partner__tab:before {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  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;
  width: 100%;
  height: 100%;
  border: 1px solid #e9a43d;
  background-color: #e9a43d;
  -webkit-transition: .3s;
  transition: .3s;
  color: #fff;
  content: "プロフィールを見る";
  opacity: 0;
  pointer-events: none;
}

.p-partner__tab:hover:before {
  opacity: 1;
}

/*
.p-partner__trigger_accordion {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: rem-calc(262px);
  height: rem-calc(58px);
  margin: rem-calc(30px) auto 0;
  padding: 0;
  background-color: $color-green;
  box-sizing: border-box;
  font-size: rem-calc(20px);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  @include sp {
    height: rem-calc(50px);
    margin: rem-calc(20px) auto 0;
    font-size: rem-calc(16px);
  }
  &:before {
    content: "and more...";
  }
  & .p-partner__trigger_accordion__icon {
    position: absolute;
    top: rem-calc(19px);
    right: rem-calc(20px);
    transform: rotate(90deg);
    width: rem-calc(18px);
    height: rem-calc(18px);
    background: url(../images/icon-chevron_right_on_mouce@2x.png) 50% 50%
      no-repeat;
    background-size: cover;
    @include sp {
      top: rem-calc(16px);
      width: rem-calc(16px);
      height: rem-calc(16px);
    }
  }
  &:hover {
    opacity: 0.7;
    @include sp {
      opacity: 1;
    }
  }
  &.is_open {
    &:before {
      content: "Close";
    }
    & .p-partner__trigger_accordion__icon {
      transform: rotate(270deg);
    }
  }
}
*/

.p-partner__swiper_container {
  position: relative;
  margin: 4.375rem auto 0;
  padding-bottom: .625rem;
  overflow: hidden;
}

.p-partner__profilebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70%;
  height: 31.25rem;
  margin: 0 auto;
  border: 1px solid #c1c1c1;
  padding: 1.875rem 2.5%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-partner__profilebox__image,
.p-partner__profilebox__sentencebox {
  width: 43.589744%;
  height: auto;
}

.p-partner__profilebox__image {
  margin-right: 7.692308%;
}

.p-partner__profilebox__name {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto .75rem;
  font-size: 1rem;
  color: #357944;
  line-height: 1.5;
}

.p-partner__profilebox__name:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 1px;
  background: url(../images/line-blackdots_pc.png) 50% 50% repeat-x;
  background-size: contain;
  content: "";
}

.p-partner__profilebox__sentence {
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
  word-wrap: break-word;
}

.p-partner__swiper-button-prev,
.p-partner__swiper-button-next {
  position: absolute;
  top: 36.95%;
  z-index: 50;
  width: 3.125rem;
  height: auto;
}

.p-partner__swiper-button-prev {
  left: 5px;
}

.p-partner__swiper-button-next {
  right: 5px;
}

.p-partner__swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2.5rem auto 0;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 .625rem !important;
}

.swiper-pagination-bullet {
  width: .9375rem;
  height: .9375rem;
  background: #ddd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #357944;
}

/*----- Consultant/Directorカスタマイズ -----*/

.p-consultant__swiper_container__outer {
  position: relative;
  width: 100%;
  height: auto;
  margin: 3.75rem auto 0;
  padding-bottom: .625rem;
}

.p-consultant__swiper_container {
  width: 100%;
  height: auto;
  padding: 0 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.p-consultant__profilebox {
  width: 100%;
  height: 32.5625rem;
  border: 1px solid #c1c1c1;
  padding: 1.25rem 5.26316%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.p-consultant__profilebox__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 0 auto .9375rem;
  overflow: hidden;
}

.p-consultant__profilebox__image img {
  width: auto;
  height: 14.875rem;
}

.p-consultant__profilebox__name {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto .625rem;
  font-size: .875rem;
  color: #357944;
  line-height: 1.71428571;
}

.p-consultant__profilebox__name:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 1px;
  background: url(../images/line-blackdots_pc.png) 50% 50% repeat-x;
  background-size: contain;
  content: "";
}

.p-consultant__profilebox__sentence {
  width: 100%;
  height: auto;
  font-size: .875rem;
  text-align: justify;
  line-height: 1.71428571;
  overflow-wrap: break-word;
}

.p-consultant__swiper-button-prev,
.p-consultant__swiper-button-next {
  position: absolute;
  top: 43%;
  z-index: 50;
  width: 3.125rem;
  height: auto;
}

.p-consultant__swiper-button-prev {
  left: -3.333333%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.p-consultant__swiper-button-next {
  right: -3.333333%;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

/* 投稿数過多による表示崩れのため非表示
.p-consultant__swiper-pagination {
  display: flex;
  justify-content: center;
  margin: rem-calc(40px) auto 0;
  @include sp {
    margin: rem-calc(20px) auto 0;
  }
}
*/

/*----- Solutionカスタマイズ -----*/

.p-solution__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 3.75rem auto 6.875rem;
}

.p-solution__link {
  position: relative;
  width: 32.5%;
  height: auto;
  /* デザイン変更調整箇所→fix後削除ok
  border: 1px solid $color-darkgray;
  */
  background-color: #357944;
  -webkit-transition: .3s;
  transition: .3s;
}

.p-solution__link a {
  display: block;
  width: 100%;
  height: 100%;
  /* デザイン変更調整箇所→fix後削除ok
    padding: rem-calc(27px) 0 rem-calc(43px);
    */
  padding: 1.6875rem 0 1.875rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-solution__link a .p-solution__link__name {
  /* デザイン変更調整箇所→fix後削除ok
      margin: 0 auto rem-calc(19px);
      */
  width: 100%;
  margin: 0 auto;
  text-decoration: none;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  line-height: 1.25;
}

.p-solution__link a.rows_adjust {
  /* デザイン変更調整箇所→fix後削除ok
      padding: rem-calc(12px) 0 rem-calc(50px);
      */
  padding: .75rem 0 2.3125rem;
  /* デザイン変更調整箇所→fix後削除ok
      & .p-solution__link__name {
        margin: 0 auto rem-calc(4px);
        @include largetab {
          margin: 0 auto rem-calc(17px);
        }
        @include sp {
          margin: 0 auto rem-calc(10px);
        }
      }
      */
}

.p-solution__link:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  width: 3.75rem;
  height: 3.75rem;
  background: url(../images/icon-chevron_below_white@2x.png) 50% 50% no-repeat;
  background-size: cover;
  content: "";
  pointer-events: none;
}

.p-solution__link:hover {
  opacity: .7;
}

.p-solution__link__number {
  position: absolute;
  top: .3125rem;
  left: 1.282051%;
  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;
  width: 10.25641%;
  min-width: 40px;
  height: 4.125rem;
  background-color: #fff;
  font-size: 1.75rem;
  color: #292929;
  line-height: 1;
}

.p-solution__link__explanation {
  text-decoration: none;
  font-size: 1rem;
  color: #292929;
  text-align: center;
  line-height: 1.875;
}

.p-solution__subsection--web_consulting {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0 5rem;
  background-color: #f8f8f8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-solution__subsection__titlebox {
  position: relative;
  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;
  width: 100%;
  height: 5.3125rem;
  margin: 0 auto 3.125rem;
  background-color: #357944;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-solution__subsection__title {
  display: inline-block;
  height: auto;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
}

.p-solution__subsection__number {
  position: absolute;
  top: .375rem;
  left: .4166667%;
  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;
  width: 4.166667%;
  height: 4.5625rem;
  background: #fff;
  font-size: 1.75rem;
  color: #292929;
  line-height: 1;
}

.p-solution__subsection__image {
  width: 100%;
  height: auto;
}

.p-solution__web_consulting__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 1.25rem auto 0;
  border: 1px solid #c1c1c1;
  padding: 1.875rem 2.5%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-solution__web_consulting__list {
  width: 31.578947%;
  height: auto;
}

.p-solution__web_consulting__list__title {
  margin-bottom: .40625rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: .375rem;
  font-size: 1rem;
  color: #357944;
  line-height: 1.5;
}

.p-solution__web_consulting__list__sentence {
  font-size: .875rem;
  line-height: 1.5;
}

.p-solution__subsection--web_strategy {
  width: 100%;
  height: auto;
  padding: 5rem 0;
  background-color: #fff;
}

.p-solution__web_strategy__contentbox {
  height: auto;
  margin: 1.25rem auto 0;
  border: 1px solid #c1c1c1;
  padding: 2.5rem 3.33333%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-solution__web_strategy__smallheaderbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 0 auto 2.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-solution__web_strategy__smallheaderbox:after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  height: 1px;
  background: url(../images/line-blackdots_pc.png) 50% 50% repeat-x;
  background-size: contain;
  content: "";
}

.p-solution__web_strategy__smallheader {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 1.785714%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
}

.p-solution__web_strategy__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 0 auto 3.125rem;
}

.p-solution__web_strategy__list {
  width: 32.142857%;
  height: auto;
  padding: 1.25rem .89286%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-box-shadow: 0 0 .1875rem rgba(0, 0, 0, .16);
  box-shadow: 0 0 .1875rem rgba(0, 0, 0, .16);
}

.p-solution__web_strategy__list .p-solution__web_strategy__list__image {
  width: 100%;
  height: auto;
  margin: 0 auto 1.03125rem;
}

.p-solution__web_strategy__list.row_adjust {
  padding: 1.25rem .89286% .34375rem;
}

.p-solution__web_strategy__list.row_adjust .p-solution__web_strategy__list__image {
  margin: 0 auto .40625rem;
}

.p-solution__web_strategy__list__header {
  position: relative;
  width: 100%;
  height: 3.125rem;
  margin: 0 auto 1.25rem;
  padding-left: 5.882353%;
  background-color: #ebf2e7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.125rem;
  line-height: 3.125rem;
  white-space: nowrap;
}

.p-solution__web_strategy__list__header:after {
  position: absolute;
  top: -18px;
  right: -13px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  display: block;
  width: 30px;
  height: 70px;
  background-color: #fff;
  content: "";
}

.p-solution__web_strategy__list__content {
  width: 100%;
  height: auto;
}

.p-solution__web_strategy__list__sentence {
  font-size: .875rem;
  line-height: 1.5;
}

.p-solution__subsection--franchise_consulting {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 5rem 0;
  background: url(../images/bg-franchise_consulting_pc.png) 50% 50% no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-solution__subsection--franchise_consulting .p-solution__subsection__titlebox {
  margin: 0 auto 3.5rem;
}

.p-solution__franchise_consulting__smallheaderbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 2.125rem auto 3.1875rem;
}

.p-solution__franchise_consulting__smallheader {
  position: relative;
  z-index: 3;
  display: inline-block;
  height: auto;
  border: 1px solid #357944;
  padding: 1.1875rem 1.0625rem;
  background-color: #ebf2e7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.375rem;
  line-height: 1;
}

.p-solution__franchise_consulting__smallheader:before {
  position: absolute;
  bottom: -27px;
  left: 50%;
  z-index: 2;
  z-index: 2;
  margin-left: -14px;
  border: 14px solid transparent;
  border-top: 14px solid #ebf2e7;
  content: "";
}

.p-solution__franchise_consulting__smallheader:after {
  position: absolute;
  bottom: -29px;
  left: 50%;
  z-index: 1;
  margin-left: -14px;
  border: 14px solid transparent;
  border-top: 14px solid #357944;
  content: "";
}

.p-solution__franchise_consulting__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.p-solution__franchise_consulting__list {
  width: 31.666667%;
  height: auto;
  margin: 0 auto;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-solution__franchise_consulting__title {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #c1c1c1;
  font-size: 1.125rem;
  text-align: center;
  line-height: 2.5rem;
}

.p-solution__franchise_consulting__contentbox {
  width: 100%;
  height: auto;
  padding: 1.25rem 5.29101% 1.03125rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-solution__franchise_consulting__image {
  width: 100%;
  height: auto;
  margin: 0 auto 1.03125rem;
}

.p-solution__franchise_consulting__sentence {
  font-size: .875rem;
  line-height: 1.5;
}

/*----- お問い合わせカスタマイズ -----*/

.p-contact__message {
  margin: 3.4375rem auto;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.5;
}

.mw_wp_form {
  /*font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ＭＳ ゴシック", sans-serif !important;*/
}

.p-contact__formbox,
.p-contact__formbox__selectbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-contact__formbox:after,
.p-contact__formbox__selectbox:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: url(../images/line-graydots@2x.png) 50% 50% repeat-x;
  background-size: contain;
  content: "";
}

.p-contact__formbox label,
.p-contact__formbox__selectbox label {
  width: 17.58%;
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  line-height: 1;
}

.p-contact__formbox label .required,
.p-contact__formbox__selectbox label .required {
  color: #f00;
}

.p-contact__formbox input,
.p-contact__formbox__selectbox input {
  width: 82.42%;
  height: 1.875rem;
  border: 1px solid #c1c1c1;
  padding-left: .625rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1rem;
  color: #292929;
  line-height: 1.75rem;
}

.p-contact__selectcontainer {
  position: relative;
  width: 9.125rem;
  height: auto;
}

.p-contact__selectcontainer:after {
  position: absolute;
  top: 50%;
  right: .625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 50;
  display: inline-block;
  font-size: .5rem;
  color: #6e6e6e;
  content: "▼";
  pointer-events: none;
}

.p-contact__partner {
  display: block;
  width: 9.125rem;
  height: 1.875rem;
  border: 1px solid #c1c1c1;
  border-radius: 0;
  padding-left: .625rem;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 1rem;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ＭＳ ゴシック", sans-serif !important;
  color: #292929;
  line-height: 1.75rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.p-contact__formbox__textarea {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 3.75rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-contact__formbox__textarea label {
  width: 17.58%;
  height: 1.875rem;
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  line-height: 1;
}

.p-contact__formbox__textarea textarea {
  width: 82.42%;
  height: 15rem;
  border: 1px solid #c1c1c1;
  padding-left: .625rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1rem;
  color: #292929;
  line-height: 1.75rem;
}

.p-contact__formbox__submit {
  position: relative;
  display: block;
  width: 16.375rem;
  height: 3.625rem;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.p-contact__formbox__submit:before {
  position: absolute;
  top: 50%;
  left: 2.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  cursor: pointer;
  font-size: 1.125rem;
  color: #fff;
  content: "上記内容で送信する";
  pointer-events: none;
}

.p-contact__formbox__submit:after {
  position: absolute;
  top: 50%;
  right: 2.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/icon-chevron_right_on_mouce@2x.png) 50% 50% no-repeat;
  background-size: contain;
  cursor: pointer;
  content: "";
  pointer-events: all;
}

.p-contact__submit {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  background-color: #ffa621 !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #adadad;
}

input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #adadad;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #adadad;
}

input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #adadad;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #adadad;
}

/* IE */

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #adadad;
}

/* Edge */

input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #adadad;
}

.mw_wp_form .error {
  position: absolute;
  bottom: -4px;
  left: 17.54%;
}

/*----- 会社概要カスタマイズ -----*/

.p-company__contentbox {
  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;
  width: 100%;
  height: auto;
  margin: 3.5625rem auto 0;
  padding: 2.5rem 0;
  background-color: rgba(255, 255, 255, .85);
}

.p-company__footerlogo {
  width: 15.776667%;
  height: auto;
  margin-right: 12.475%;
}

.p-company__sentencebox {
  width: 43.416667%;
  height: auto;
}

.p-company__name {
  margin: 0 auto .375rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
}

.p-company__infotable {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.p-company__infotable tr {
  border-bottom: 1px solid #ddd;
}

.p-company__infotable tr:last-child {
  border: none;
}

.p-company__infotable th,
.p-company__infotable td {
  padding: .40625rem 0;
  font-size: .875rem;
  line-height: 1.5;
}

.p-company__infotable th {
  width: 16.5%;
  font-weight: 600;
}

.p-company__infotable td {
  width: 83.5%;
  font-weight: 300;
}

.p-company__infotable td address {
  font-weight: 300;
}

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

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

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

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

  .c-section__header {
    margin: 0 auto .625rem;
    font-size: 1.375rem;
    line-height: 1;
  }

  .c-section__header--english {
    font-size: .875rem;
    line-height: 1.42857143;
  }

  #l-about {
    padding: 2.5rem 0;
  }

  #l-news {
    padding: 2.5rem 0;
  }

  #l-greeting {
    padding: 2.5rem 0;
    background: url(../images/bg-greeting_sp.png) 50% 50% no-repeat;
    background-size: cover;
  }

  #l-partner {
    padding: 2.5rem 0 1.875rem;
  }

  #l-consultant {
    padding: 2.5rem 0 1.875rem;
  }

  #l-solution {
    padding: 2.5rem 0 0;
  }

  #l-contact {
    padding: 2.5rem 0;
  }

  #l-company {
    padding: 2.5rem 0;
    background: url(../images/bg-company_sp.png) 50% 50% no-repeat;
    background-size: cover;
  }

  #l-footer {
    height: 1.9375rem;
  }

  #l-footer small {
    font-size: .625rem;
  }

  #l-404,
  #l-thanks {
    height: 100vh;
    padding-top: 40%;
  }

  #l-404 h1,
  #l-thanks h1 {
    font-size: 1.25rem;
  }

  #l-404 p,
  #l-thanks p {
    font-size: .875rem;
  }

  .header__links_pc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header__link_pc {
    display: none;
  }

  .header__link_pc.logo {
    display: block;
    width: 1.34438rem;
    margin-right: 0;
  }

  .header__link_pc a:hover {
    opacity: 1;
  }

  .p-fv__bgbox {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 21.875rem;
    padding: 0 0 .9375rem;
    background: url(../images/bg-fv_sp.png) 50% 50% no-repeat;
    background-size: cover;
  }

  .p-fv__bgbox .c-container {
    width: 100%;
  }

  .p-fv__contentbox1,
  .p-fv__contentbox2 {
    width: 91.549296%;
    margin: 0 auto;
    border-top: 2px solid #357944;
    padding: .5625rem 0 .40625rem 4%;
    -webkit-box-shadow: 0 0 .3125rem rgba(0, 0, 0, .25);
    box-shadow: 0 0 .3125rem rgba(0, 0, 0, .25);
  }

  .p-fv__message--english {
    margin-bottom: .28125rem;
    font-size: 2.125rem;
    line-height: 1.17647059;
  }

  .p-fv__message {
    font-size: .9375rem;
    line-height: 1.6;
  }

  .p-fv__contentbox2 {
    margin: 0 auto;
    border-top: 2px solid #ffa621;
    padding: .375rem 0 .4375rem 4%;
  }

  .p-fv__companyname {
    font-size: .9375rem;
  }

  .p-about__contentbox1,
  .p-about__contentbox2 {
    display: block;
    margin: 1.25rem auto;
    padding: 2.51875rem 0 1.25rem;
  }

  .p-about__contentbox1__img {
    width: 83.569405%;
    margin: 0 auto 1.875rem;
  }

  .p-about__contentbox1__sentencebox {
    width: 89.235127%;
    margin: 0 auto;
  }

  .p-about__contentbox__header {
    margin: 0 auto .9375rem;
    font-size: 1.125rem;
    line-height: 1;
  }

  .p-about__contentbox__partition {
    margin: 0 auto 1rem;
  }

  .p-about__contentbox__message {
    margin: 0 auto 1.3125rem;
    font-size: 1rem;
  }

  .p-about__contentbox1__lists {
    display: block;
  }

  .p-about__contentbox1__list {
    width: 100%;
  }

  .p-about__contentbox1__list:not(:last-child) {
    margin-bottom: .625rem;
  }

  .p-about__contentbox1__list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-about__contentbox1__list__image {
    width: 39.3%;
    margin: 0 4.7% 0 0;
  }

  .p-about__contentbox1__list__sentence {
    width: 56%;
    font-size: .75rem;
  }

  .p-about__contentbox2 {
    margin: 0 auto;
    padding: 2.5rem 0 1rem;
  }

  .p-about__contentbox2__img {
    width: 89.235127%;
    margin: 0 auto 1.875rem;
  }

  .p-about__contentbox2__sentencebox {
    width: 89.235127%;
    margin: 0 auto;
    padding-top: 0;
  }

  .p-news__lists {
    width: 94.366197%;
    max-height: 17.5rem;
    margin: 1.3125rem auto 0;
  }

  .p-news__list {
    margin: 0 auto 1.125rem;
    padding-bottom: .375rem;
  }

  .p-news__list__date,
  .p-news__list__sentence,
  .p-news__list__link {
    display: block;
    font-size: .75rem;
  }

  .p-news__list__date {
    margin: 0 auto;
  }

  .p-greeting__contentbox {
    width: 94.366197%;
    margin: 1.25rem auto 0;
    padding: 1.25rem 5.6338%;
  }

  .p-greeting__contentbox__inner {
    display: block;
    margin: 0 auto 1.0625rem;
  }

  .p-greeting__contentbox__img {
    width: 100%;
    margin: 0 auto 1.25rem;
  }

  .p-greeting__contentbox__sentencebox {
    width: 100%;
  }

  .p-greeting__contentbox__header {
    margin: 0 auto 1.03125rem;
    padding: .6875rem 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-greeting__contentbox__message {
    margin: 0 auto 1.34375rem;
    font-size: .875rem;
  }

  .p-greeting__contentbox__profile__name {
    margin: 0 auto .75rem;
    font-size: .875rem;
    line-height: 1.71428571;
  }

  .p-greeting__contentbox__profile__name:after {
    bottom: -5px;
    background: url(../images/line-blackdots_sp.png) 50% 50% repeat-x;
    background-size: contain;
  }

  .p-greeting__contentbox__profile__sentence {
    font-size: .75rem;
    line-height: 1.5;
  }

  .p-greeting__contentbox__links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-greeting__contentbox__link {
    position: relative;
    width: 48.474576%;
  }

  .p-greeting__contentbox__link:nth-child(-n + 2) {
    margin-bottom: .5625rem;
  }

  .p-greeting__contentbox__linkbtn {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 3.125rem;
    padding-left: 13.986014%;
    font-size: 1rem;
  }

  .p-greeting__contentbox__linkbtn .p-greeting__contentbox__linkicon {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    margin-left: .625rem;
  }

  .p-partner__tabs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 94.366197%;
    margin: 1.25rem auto 0;
  }

  .p-partner__tab {
    width: 48.358209%;
    height: 3.75rem;
    margin: .6875rem 0 0 0;
    font-size: .875rem;
  }

  .p-partner__tab:nth-child(-n + 4) {
    margin: .6875rem 0 0 0;
  }

  .p-partner__tab:nth-child(-n + 2) {
    margin-top: 0;
  }

  .p-partner__tab:hover:before {
    opacity: 0;
  }

  .p-partner__swiper_container {
    width: 94.929577%;
    margin: 1.25rem auto 0;
    padding: 0 1px .625rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .p-partner__profilebox {
    display: block;
    width: 100%;
    padding: 1.25rem 5.97015%;
  }

  .p-partner__profilebox__image,
  .p-partner__profilebox__sentencebox {
    width: 100%;
  }

  .p-partner__profilebox__image {
    height: 13.75rem;
    margin: 0 auto .9375rem;
    overflow: hidden;
  }

  .p-partner__profilebox__name {
    margin: 0 auto .65625rem;
    font-size: .875rem;
  }

  .p-partner__profilebox__name:after {
    bottom: -4px;
    background: url(../images/line-blackdots_sp.png) 50% 50% repeat-x;
    background-size: contain;
  }

  .p-partner__profilebox__sentence {
    font-size: .875rem;
  }

  .p-partner__swiper-button-prev,
  .p-partner__swiper-button-next {
    display: none;
  }

  .p-partner__swiper-pagination {
    margin: 1.25rem auto 0;
  }

  .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 .3125rem !important;
  }

  .swiper-pagination-bullet {
    width: .5rem;
    height: .5rem;
  }

  .p-consultant__swiper_container__outer {
    width: 94.929577%;
    margin: 1.25rem auto 0;
    /* padding-bottom: rem-calc(60px); */
  }

  .p-consultant__profilebox {
    height: 32.5rem;
    min-height: 29.4375rem;
    padding: 1.25rem 5.97015%;
  }

  .p-consultant__profilebox__image img {
    height: 13.5rem;
  }

  .p-consultant__profilebox__name {
    margin: 0 auto .71875rem;
  }

  .p-consultant__profilebox__name:after {
    background: url(../images/line-blackdots_sp.png) 50% 50% repeat-x;
    background-size: contain;
  }

  .p-consultant__profilebox__sentence {
    line-height: 1.5;
  }

  .p-consultant__swiper-button-prev,
  .p-consultant__swiper-button-next {
    /*
    top: initial;
    bottom: rem-calc(10px);
    */
    top: 50%;
    width: 1.875rem;
  }

  .p-consultant__swiper-button-prev {
    left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-consultant__swiper-button-next {
    right: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  .p-solution__links {
    display: block;
    margin: 1.875rem auto;
  }

  .p-solution__link {
    width: 100%;
  }

  .p-solution__link:not(:last-child) {
    margin-bottom: .625rem;
  }

  .p-solution__link a {
    /* デザイン変更調整箇所→fix後削除ok
      padding: rem-calc(11px) 0 rem-calc(11px) 15.211268%;
      */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 3.75rem;
    padding-left: 15.211268%;
  }

  .p-solution__link a .p-solution__link__name {
    /* デザイン変更調整箇所→fix後削除ok
        margin: 0 auto rem-calc(10px);
        */
    font-size: 1rem;
    text-align: left;
    line-height: 1;
  }

  .p-solution__link a.rows_adjust {
    padding: .6875rem 0 .6875rem 15.21127%;
  }

  .p-solution__link:after {
    top: 50%;
    right: 2.816901%;
    bottom: initial;
    left: initial;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1.25rem;
    height: 1.25rem;
  }

  .p-solution__link:hover {
    opacity: 1;
  }

  .p-solution__link__number {
    top: .625rem;
    left: 2.816901%;
    width: 6.760563%;
    min-width: initial;
    height: 2.5rem;
    font-size: 1.0625rem;
  }

  .p-solution__link__explanation {
    font-size: .75rem;
    text-align: left;
    line-height: 1;
  }

  .p-solution__subsection--web_consulting {
    padding: 0 0 2.5rem;
  }

  .p-solution__subsection--web_consulting .p-solution__subsection__titlebox {
    padding-left: 29.295775%;
  }

  .p-solution__subsection__titlebox {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 3.75rem;
    margin: 0 auto .9375rem;
  }

  .p-solution__subsection__title {
    font-size: 1.125rem;
  }

  .p-solution__subsection__number {
    top: .625rem;
    left: 2.816901%;
    width: 6.760563%;
    height: 2.5rem;
    font-size: 1.0625rem;
  }

  .p-solution__web_consulting__lists {
    display: block;
    margin: .625rem auto 0;
    padding: 1.25rem 5.6338% 1.0625rem;
  }

  .p-solution__web_consulting__list {
    width: 100%;
  }

  .p-solution__web_consulting__list:not(:last-child) {
    margin-bottom: 1.0625rem;
  }

  .p-solution__web_consulting__list__title {
    margin-bottom: .4375rem;
    padding-bottom: .625rem;
    font-size: .875rem;
    line-height: 1;
  }

  .p-solution__web_consulting__list__sentence {
    font-size: .75rem;
  }

  .p-solution__subsection--web_strategy {
    padding: 2.5rem 0;
  }

  .p-solution__subsection--web_strategy .p-solution__subsection__titlebox {
    padding-left: 33.802817%;
  }

  .p-solution__web_strategy__contentbox {
    margin: .625rem auto 0;
    padding: 1.875rem 5.66657% 1.25rem;
  }

  .p-solution__web_strategy__smallheaderbox {
    margin: 0 auto 1.25rem;
  }

  .p-solution__web_strategy__smallheaderbox:after {
    background: url(../images/line-blackdots_sp.png) 50% 50% repeat-x;
    background-size: contain;
  }

  .p-solution__web_strategy__smallheader {
    padding: 0 3.174603%;
    font-size: 1rem;
  }

  .p-solution__web_strategy__lists {
    display: block;
    margin: 0 auto 1.875rem;
  }

  .p-solution__web_strategy__list {
    width: 100%;
    padding: .625rem 3.1746%;
  }

  .p-solution__web_strategy__list:not(:last-child) {
    margin-bottom: .625rem;
  }

  .p-solution__web_strategy__list .p-solution__web_strategy__list__image {
    width: 45.762712%;
    margin: 0 3.389831% 0 0;
  }

  .p-solution__web_strategy__list.row_adjust {
    padding: .625rem 3.1746%;
  }

  .p-solution__web_strategy__list.row_adjust .p-solution__web_strategy__list__image {
    margin: 0 3.389831% 0 0;
  }

  .p-solution__web_strategy__list__header {
    height: 2rem;
    margin: 0 auto .625rem;
    padding-left: 5.084746%;
    font-size: .9375rem;
    line-height: 2rem;
  }

  .p-solution__web_strategy__list__header:after {
    right: -17px;
    height: 50px;
  }

  .p-solution__web_strategy__list__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-solution__web_strategy__list__sentence {
    width: 50%;
    line-height: 1.35714286;
  }

  .p-solution__subsection--franchise_consulting {
    padding: 2.5rem 0;
    background: url(../images/bg-franchise_consulting_sp.png) 50% 50% no-repeat;
    background-size: cover;
  }

  .p-solution__subsection--franchise_consulting .p-solution__subsection__titlebox {
    margin: 0 auto .9375rem;
    padding-left: 17.464789%;
  }

  .p-solution__franchise_consulting__smallheaderbox {
    margin: 1.25rem auto 2.375rem;
  }

  .p-solution__franchise_consulting__smallheader {
    display: block;
    width: 100%;
    padding: .65625rem 0;
    font-size: .9375rem;
    text-align: center;
    line-height: 1.46666667;
  }

  .p-solution__franchise_consulting__smallheader:before {
    bottom: -28px;
    margin-left: -12px;
    border: 12px solid transparent;
    border-top: 17px solid #ebf2e7;
  }

  .p-solution__franchise_consulting__smallheader:after {
    bottom: -31px;
    margin-left: -13px;
    border: 13px solid transparent;
    border-top: 18px solid #357944;
  }

  .p-solution__franchise_consulting__lists {
    display: block;
  }

  .p-solution__franchise_consulting__list {
    width: 100%;
  }

  .p-solution__franchise_consulting__list:not(:last-child) {
    margin-bottom: .625rem;
  }

  .p-solution__franchise_consulting__title {
    font-size: .9375rem;
    line-height: 1.8125rem;
  }

  .p-solution__franchise_consulting__contentbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .625rem 2.8169%;
  }

  .p-solution__franchise_consulting__image {
    width: 40.540541%;
    margin: 0 3.003003% 0 0;
  }

  .p-solution__franchise_consulting__sentence {
    width: 56%;
    font-size: .8125rem;
    line-height: 1.46153846;
  }

  .p-contact__message {
    margin: 1.65625rem auto 1.875rem;
    font-size: .875rem;
  }

  .p-contact__formbox,
  .p-contact__formbox__selectbox {
    display: block;
  }

  .p-contact__formbox:after,
  .p-contact__formbox__selectbox:after {
    background: url(../images/line-graydots_sp@2x.png) 50% 50% repeat-x;
    background-size: contain;
  }

  .p-contact__formbox label,
  .p-contact__formbox__selectbox label {
    display: block;
    width: 100%;
    margin-bottom: .9375rem;
    font-size: .875rem;
  }

  .p-contact__formbox input,
  .p-contact__formbox__selectbox input {
    width: 100%;
    font-size: .875rem;
  }

  .p-contact__formbox__textarea {
    display: block;
    margin-bottom: 1.875rem;
  }

  .p-contact__formbox__textarea label {
    width: 100%;
    height: auto;
    margin-bottom: .9375rem;
    font-size: .875rem;
  }

  .p-contact__formbox__textarea textarea {
    width: 100%;
    height: 11.25rem;
    font-size: .875rem;
  }

  .p-contact__formbox__submit:before {
    left: 2.875rem;
    font-size: 1rem;
  }

  .p-contact__formbox__submit:after {
    right: 2.875rem;
    width: 1rem;
    height: 1rem;
  }

  .mw_wp_form .error {
    position: relative;
    bottom: initial;
    left: initial;
  }

  .p-company__contentbox {
    display: block;
    margin: 1.875rem auto 0;
    padding: 1.875rem 5.6338% 1.0625rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .p-company__footerlogo {
    width: 28.561905%;
    margin: 0 auto 1.90625rem;
  }

  .p-company__sentencebox {
    width: 100%;
  }

  .p-company__name {
    margin: 0 auto .8125rem;
    font-size: .875rem;
    line-height: 1;
  }

  .p-company__infotable th,
  .p-company__infotable td {
    padding: .4375rem 0;
    font-size: .75rem;
  }

  .p-company__infotable th {
    width: 22.2%;
  }

  .p-company__infotable td {
    width: 77.8%;
  }
}

@media screen and (max-width: 360px) {
  html {
    font-size: 80%;
  }

  .p-partner__profilebox {
    height: 29.375rem;
  }

  .p-consultant__profilebox {
    height: 28.75rem;
  }
}

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

  .p-consultant__swiper_container {
    width: 85%;
    margin: 0 auto;
  }

  .p-consultant__profilebox {
    height: 593px;
  }

  .p-consultant__swiper-button-prev {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .p-consultant__swiper-button-next {
    right: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  html {
    font-size: 90%;
  }

  .p-consultant__profilebox {
    height: 530px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  html {
    font-size: 80%;
  }

  .p-consultant__profilebox {
    height: 475px;
  }

  .p-solution__link a .p-solution__link__name {
    /* デザイン変更調整箇所→fix後削除ok
        margin: 0 auto rem-calc(25px);
        */
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  html {
    font-size: 75%;
  }

  .header__link_pc.logo {
    margin-right: 4%;
  }

  .p-solution__web_strategy__list__header {
    padding-left: 3%;
    font-size: .875rem;
  }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
  .p-fv__bgbox {
    height: 23.25rem;
  }

  .p-consultant__profilebox__image img {
    height: 16.25rem;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .p-fv__bgbox {
    height: 27.9375rem;
  }

  .p-partner__profilebox {
    height: 33.4375rem;
  }

  .p-partner__profilebox__image {
    height: 18.75rem;
  }

  .p-consultant__profilebox {
    height: 34.375rem;
  }

  .p-consultant__profilebox__image img {
    height: 18.125rem;
  }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
  .p-fv__bgbox {
    height: 35rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .p-fv__companyname {
    line-height: 1.2;
  }

  .p-about__contentbox__message {
    font-size: 1.25rem;
  }

  .p-solution__web_strategy__list__header {
    font-size: 1rem;
  }
}