@charset "UTF-8";
/*---------------------------
/setting/size参照
---------------------------*/
/* min-width
-------------------------------------------------------------------------- */
/* max-width
-------------------------------------------------------------------------- */
/*黒：font*/
/*鮮やかな青：ベース*/
/*濃紺：リンク他*/
/*エメラルド：装飾他*/
/*赤：装飾他*/
/*bg：背景*/
/*グラデーション*/
/*文字グラデーション*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.3.1/dist/css/yakuhanjp.min.css");
@import url("https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css");
@import url("https://pro.fontawesome.com/releases/v5.10.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
.c_grad_font {
  background: -webkit-linear-gradient(0deg, #0768d4, #4fc8dc);
  color: #4ac2db;
}

em.c_grad_font {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.c_grad_font {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ja
-------------------------------------------------------------------------- */
/* en
-------------------------------------------------------------------------- */
#space {
  height: 1300px;
  background-color: blanchedalmond;
}

/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 250ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  transform: translate(0, 50px);
}

.fadeIn-down {
  transform: translate(0, -80px);
}

.fadeIn-left {
  transform: translate(-50px, 0);
}

.fadeIn-right {
  transform: translate(50px, 0);
}

.scroll-in {
  transform: translate(0);
  opacity: 1;
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  transform: translate(0, 80px);
  opacity: 1;
}

.slideIn-down {
  transform: translate(0, -80px);
  opacity: 1;
}

.slideIn-left {
  transform: translate(-80px, 0);
  opacity: 1;
}

.slideIn-right {
  transform: translate(80px, 0);
  opacity: 1;
}

.scroll-in {
  transform: translate(0);
  opacity: 1;
}

.is-fadein-active {
  visibility: visible !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  line-height: 1.15;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  margin: 0;
  clear: both;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  /* 1 */
  font-size: inherit;
  font-family: monospace, monospace;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  /* 1 */
  font-size: inherit;
  font-family: monospace, monospace;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: middle;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  -webkit-font-smoothing: antialiased;
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
}

em {
  font-style: initial;
}

/*各html要素*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

h2 {
  margin-bottom: 3.125vw;
  font-size: clamp(18px, 1.046vw, 20px);
}

h3 {
  font-size: clamp(18px, 1.25vw, 24px);
}

main {
  overflow: hidden;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.l-container--p0, .l-container {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

.l-container {
  padding: 6.25vw 0;
}
.l-container--p0 {
  padding: 0 0 3.125vw;
}
.l-container--thanks {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  padding-right: 5%;
  padding-left: 5%;
  padding-block: 0 10vw;
}
.l-container.l-container-servicelist {
  padding-top: 0 !important;
}
.l-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 78.39783em;
  margin: auto;
  background-color: #fff;
}
.l-footer__inner__logo {
  margin-right: 3.20718em;
  text-decoration: none;
}
.l-footer__inner__right {
  display: flex;
  align-items: center;
}
.l-footer__inner__right #copyright {
  padding-left: 1.36364em;
  color: #878787;
  font-size: 79%;
}
.l-footer__menu {
  display: flex;
  align-items: center;
}
.l-footer__menu__item {
  margin-right: 2.49448em;
}
.l-footer__menu__item:not(:last-child) {
  padding-right: 2.49448em;
  border-right: 1px solid;
  line-height: 1;
}
.l-footer__menu__item a {
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.l-footer__menu__item a:hover {
  opacity: 0.7;
}
.l-header__inner {
  display: flex;
  position: relative;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1340px;
  min-height: 88px;
  margin: 0 auto;
  background-color: #fff;
}

.l-header__inner__logo {
  padding: 0 1.78177em;
}
.l-header__inner__logo a {
  display: flex;
  height: 100%;
  text-decoration: none;
}

.l-header__inner__right {
  display: flex;
  align-items: center;
}
.l-header__inner__btn-menu {
  display: none !important;
  z-index: 99;
  position: absolute;
  top: 50%;
  right: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.20718em;
  height: 3.20718em;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
}
.l-header__inner__btn-menu span {
  display: block;
  width: 1.8em;
  height: 2px;
  margin: 0 auto;
  background-color: #507eb6;
  transition: all 0.3s ease;
}
.l-header__inner__btn-menu span:not(:last-child) {
  margin-bottom: 0.4em;
}
.l-header__inner #inp-menu-sp:checked ~ .l-header__inner__btn-menu span:first-child {
  transform: rotate(45deg) translate(4px, 1px);
}
.l-header__inner #inp-menu-sp:checked ~ .l-header__inner__btn-menu span:last-child {
  transform: rotate(-45deg) translate(4px, -2px);
}
.l-header__menu {
  display: flex;
  align-items: center;
}
.l-header__menu__item {
  margin-right: 3.20718em;
}
.l-header__menu__item a {
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease;
}
.l-header__menu__item a:hover {
  opacity: 0.7;
}

.l-header__btns {
  display: flex;
  align-items: center;
  height: 100%;
}
.l-header__btns__item {
  height: 100%;
}
.l-header__btns__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 8.55249em;
  height: 100%;
  padding: 1.14033em;
  background-color: #507eb6;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
}
.l-header__btns__item a::after {
  margin-top: 3px;
  content: "\f178";
  font-weight: 500;
  font-size: 143%;
  font-family: "Font Awesome 5 Pro";
  transition: all 0.5s ease-in-out;
}

.l-header__btns__item.btnnav01 a::after {
  content: url("../img/header-icon01.png");
}

.l-header__btns__item.btnnav02 a::after {
  content: url("../img/header-icon02.png");
}

.l-header__btns__item.btnnav03 a::after {
  content: url("../img/header-icon03.png");
}

/*.l-header__btns__item a:hover::after {
  transform: translateX(.5em)
}*/
.l-header__btns__item:nth-child(2) a {
  background-color: #173576;
}

.l-header__btns__item:nth-child(3) a {
  background-color: #191919;
}

.l-topicpath {
  padding: 0.57017em 0;
  background-color: #edf2f8;
}
.l-topicpath__inner {
  display: flex;
  width: 90%;
  max-width: 78.39783em;
  margin: auto;
}
.l-topicpath__inner li {
  font-size: 79%;
  font-family: "Noto Sans JP", sans-serif;
}
.l-topicpath__inner li a {
  color: #878787;
  text-decoration: none;
}
.l-topicpath__inner li:not(:last-child) {
  margin-right: 0.5em;
}
.l-topicpath__inner li:not(:last-child)::after {
  margin-left: 0.5em;
  content: "\f105";
  color: #878787;
  font-weight: 500;
  font-family: "Font Awesome 5 Pro";
}

.c-arrow--center-bottom {
  width: 0;
  height: 0;
  margin: 4rem auto 0;
  border-width: 7rem 10rem 0 10rem;
  border-style: solid;
  border-color: #ccc transparent transparent transparent;
}

.c-bg--gr {
  background: #edf2f8;
}
.c-bg--triangle {
  background: #deecf6;
  background-image: url("/assets/img/service_bg.png");
  background-repeat: repeat;
  background-attachment: fixed;
}
.c-bg--inbound {
  background: rgba(52, 165, 182, 0.1);
}
.c-bg--inbound .p-service-archive__text h3,
.c-bg--inbound .p-service-archive__text h2 {
  color: #34a5b6;
}
.c-bg--inbound .p-service-archive__text:after {
  color: #34a5b6;
}
.c-bg--inbound .p-service-archive__text:before {
  border-color: #34a5b6;
}
.c-bg--outbound {
  background: rgba(5, 102, 212, 0.1);
}
.c-bg--outbound .p-service-archive__text h3,
.c-bg--outbound .p-service-archive__text h2 {
  color: #0566d4;
}
.c-bg--construction {
  background: rgba(225, 176, 4, 0.1);
}
.c-bg--construction .p-service-archive__text h3,
.c-bg--construction .p-service-archive__text h2 {
  color: #e1b004;
}
.c-bg--construction .p-service-archive__text:after {
  color: #e1b004;
}
.c-bg--construction .p-service-archive__text:before {
  border-color: #e1b004;
}

.c-text-link--arrow-right a::before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-color: #ccc;
  content: "";
  vertical-align: middle;
}

*[class^=c-btn] {
  display: inline-block;
  position: relative;
}

.c-btn--white {
  display: inline-block;
  position: relative;
  padding: 10px 75px 10px 35px;
  border: 1px solid #FFF;
  border-radius: 10rem;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
}
.c-btn--white::after {
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
  width: 47px;
  height: 7px;
  background: url(../img/ico_arrow__009.png) no-repeat center center;
  background-size: contain;
  content: "";
  transition: 0.5s;
}
.c-btn--white:hover {
  background-color: #FFF;
  color: #1f2a68;
  opacity: 1;
}
.c-btn--white:hover::after {
  right: 5px;
  background: url(../img/ico_arrow__008.png) no-repeat center center;
  background-size: contain;
}
.c-btn--bl {
  display: inline-block;
  position: relative;
  padding: 10px 75px 10px 75px;
  border: 1px solid #1f2a68;
  border-radius: 10rem;
  background-color: #1f2a68;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
}
.c-btn--bl::after {
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
  width: 47px;
  height: 7px;
  background: url(../img/ico_arrow__009.png) no-repeat center center;
  background-size: contain;
  content: "";
  transition: 0.5s;
}
.c-btn--bl:hover {
  background-color: #FFF;
  color: #1f2a68;
  opacity: 1;
}
.c-btn--bl:hover::after {
  right: 5px;
  background: url(../img/ico_arrow__008.png) no-repeat center center;
  background-size: contain;
}
.c-btn--grad {
  /* グラデーションよりも上に配置 */
  display: inline-block;
  /* static以外を指定 */
  z-index: 0;
  position: relative;
  padding: 0.5208333333vw 2.6041666667vw;
  /* 背景を透明にする */
  overflow: hidden;
  border-radius: 10rem;
  /* inline以外にする */
  background: transparent;
  color: #fff;
  font-size: clamp(13px, 0.78vw, 15px);
  /* はみ出した部分を非表示(角丸を付ける場合は必須) */
  cursor: pointer;
  /* カーソルをポインターにする */
  /* ::before, ::afterで2種類のグラデーションを用意 */
  /* グラデーション1 */
  /* グラデーション2 */
  /* ホバー時にグラデーション1を透明にする */
}
.c-btn--grad::before, .c-btn--grad::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.c-btn--grad::before {
  /* アニメーション実行時間 */
  z-index: -1;
  background: linear-gradient(135deg, #50cadc 0%, #0566d4 100%);
  transition: all 0.6s;
}
.c-btn--grad::after {
  z-index: -2;
  background: linear-gradient(135deg, #0566d4 0%, #50cadc 100%);
}
.c-btn--grad:hover::before {
  opacity: 0;
}
.c-btn--grad2 {
  padding: 0.5208333333vw 2.6041666667vw;
  border-radius: 10rem;
  background: linear-gradient(to right, #50cadc 0%, #0566d4 100%);
  color: #fff;
  font-size: clamp(13px, 0.78vw, 15px);
}
.c-btn--line {
  min-width: 16.6666666667vw;
  padding: 1.0416666667vw 2.6041666667vw;
  border: 2px solid #0e1155;
  border-radius: 10rem;
  background: transparent;
  color: #0e1155;
  font-weight: 500;
  font-size: clamp(14px, 0.8333vw, 16px);
  letter-spacing: 0.1rem;
  text-align: center;
  transition: 0.5s;
}
.c-btn--line:focus:focus {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

a {
  transition: 0.5s;
}
a:hover {
  opacity: 0.8;
}

.c-cate--line {
  display: inline-block;
  padding: 0.2rem 5rem;
  border: 1px solid #0566d4;
  color: #0566d4;
  font-size: clamp(10px, 0.625vw, 12px);
}

.c-catlink {
  margin-bottom: 7rem;
}
.c-catlink dl {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
.c-catlink dl dt {
  width: 110px;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-catlink dl dt.ico_shubetu {
  padding-left: 25px;
  background: url(../img/column/ico_001.png) no-repeat 0 center;
  background-size: 18px 20px;
}
.c-catlink dl dt.ico_cat {
  padding-left: 25px;
  background: url(../img/column/ico_002.png) no-repeat 0 center;
  background-size: 20px 20px;
}
.c-catlink dl dd a {
  display: inline-block;
  padding: 5px 25px;
  border-radius: 15px;
  background-color: #e8e9f0;
  color: #1f2a68;
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1;
}
.c-catlink dl dd a:hover {
  background-color: #1f2a68;
  color: #FFF;
  opacity: 1;
}
.c-catlink dl dd span.active {
  display: inline-block;
  padding: 5px 25px;
  border-radius: 15px;
  background-color: #1f2a68;
  color: #FFF;
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1;
}

.c-consultant {
  padding-bottom: 10rem;
}
.c-consultant__cta {
  margin-bottom: 4.98895em;
  text-align: center;
}

.c-consultant__cta span {
  display: inline-block;
  padding: 0.64144em 1.14033em;
  border: 1px solid #b2b2b2;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.c-consultant-list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.49448em -1.28287em;
}
.c-consultant-list__btn {
  position: absolute;
  bottom: -15px;
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  text-align: center;
}
.c-consultant-list__btn::after {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin-left: 10px;
  background: url(../img/ico_arrow__003.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  vertical-align: middle;
}
.c-consultant-list__item {
  width: 25%;
  padding: 2.49448em 1em;
}
.c-consultant-list__item a {
  position: relative;
}
.c-consultant-list__item a {
  display: block;
  position: relative;
  padding: 0 2em 2.13812em;
  color: #000;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.c-consultant-list__item a > * {
  z-index: 1;
  position: relative;
}
.c-consultant-list__item a::after {
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 5.34531em);
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(31, 42, 104, 0.2);
  content: "";
  transition: all 0.4s ease-in-out;
}

.c-consultant-list__item a::before {
  display: block;
  position: relative;
  position: absolute;
  left: calc(50% - 5.34531em);
  width: 10.6906136412em;
  height: 10.6906136412em;
  margin: 0 auto 1.4254151522em;
  overflow: hidden;
  border: 0.4276245456em solid #fff;
  border-radius: 50%;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 20px rgba(31, 42, 104, 0.2);
  content: "";
  transition: all 0.4s ease-in-out;
}
.c-consultant-list__item a:hover {
  color: #fff;
  opacity: 1;
}
.c-consultant-list__item a:hover .c-consultant-list__btn::after {
  background: url(../img/ico_arrow__004.png) no-repeat 0 0;
  background-size: contain;
}

.c-consultant-list__item a:hover::after {
  background-color: #173576;
}

.c-consultant-list__item a:hover .c-consultant-list__item__img {
  border-color: #173576;
}

.c-consultant-list__item__img {
  position: relative;
  width: 10.69061em;
  height: 10.69061em;
  margin: 0 auto 1.42542em;
  overflow: hidden;
  border: 0.42762em solid #fff;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.c-consultant-list__item__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-consultant-list__item__name {
  margin-top: 1em;
  font-weight: bold;
  font-size: 143%;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
}
.c-consultant .modals__item {
  visibility: hidden;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  /*transition: all 0.4s ease;*/
  transition: all 0s ease;
}

.c-consultant .modals__item.active {
  visibility: visible;
  opacity: 1;
}

.c-consultant .modals__item__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 78.39783em;
  max-height: 96vh;
  padding: 5.70166em 10.69061em;
  overflow-y: auto;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
.c-consultant .modals__item__close {
  display: flex;
  position: absolute;
  top: 2.13812em;
  right: 2.13812em;
  align-items: center;
  justify-content: center;
  width: 2.85083em;
  height: 2.85083em;
  border: 2px solid #1f2a68;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}
.c-consultant .modals__item__close:hover {
  opacity: 0.7;
}

.c-consultant .modals__item__close::before {
  content: "\f00d";
  color: #1f2a68;
  font-size: 143%;
  line-height: 0;
  font-family: "Font Awesome 5 Pro";
}
.c-consultant .modals__item__arrow {
  display: flex;
  position: absolute;
  top: 50%;
  right: 2.63702em;
  align-items: center;
  justify-content: center;
  width: 2.13812em;
  height: 2.13812em;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url(../img/ico_arrow__005.png) no-repeat center center;
  background-size: contain;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}

.c-consultant .modals__item__arrow:hover {
  opacity: 0.7;
}
.c-consultant .modals__item__arrow.prev {
  right: auto;
  left: 2.63702em;
  background: url(../img/ico_arrow__006.png) no-repeat center center;
  background-size: contain;
}

.c-consultant .modals__item__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3.56354em;
}
.c-consultant .modals__item__header__img {
  position: relative;
  width: 31.25%;
}
.c-consultant .modals__item__header__img::before {
  display: block;
  padding-bottom: 100%;
  content: "";
}

.c-consultant .modals__item__header__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-consultant .modals__item__header__info {
  width: 68.75%;
  padding-left: 3.56354em;
}
.c-consultant .modals__item__header__info .name {
  margin: -0.5em 0 1.5em;
  color: #507eb6;
  font-size: 93%;
  font-family: "Roboto", sans-serif;
}

.c-consultant .modals__item__body {
  display: none;
  padding: 2.13812em;
  background-color: #edf2f8;
}
.c-consultant .modals__item__body table tr th,
.c-consultant .modals__item__body table tr td {
  font-weight: normal;
  vertical-align: middle;
}

.c-consultant .modals__item__body table tr th {
  /*padding-right: 3.56354em;*/
  width: 130px;
  border-right: 1px solid;
  white-space: nowrap;
}
.c-consultant .modals__item__body table tr td {
  padding-left: 3.56354em;
}
.c-consultant .modals__item__body table tr td li {
  list-style: disc;
}

.modals__item__name {
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
}

.c-consultant-list__btn2 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding-top: 5rem;
  gap: 0;
}
.c-consultant-list__st {
  width: 64px;
  height: 63px;
  margin: auto 2rem auto 2rem;
  background: url(../img/ico_stop2.png) no-repeat center center;
  background-size: contain;
}
.c-consultant-list__st.paused {
  background: url(../img/ico_start2.png) no-repeat center center;
  background-size: contain;
}
.c-consultant-list__next {
  width: 91px;
  height: 63px;
  background: url(../img/ico_arrow__013.png) no-repeat center center;
  background-size: contain;
}
.c-consultant-list__prev {
  width: 91px;
  height: 63px;
  background: url(../img/ico_arrow__012.png) no-repeat center center;
  background-size: contain;
}

.c-figure {
  margin: 6rem 0 0;
  text-align: center;
}

*[class^=c-img-box] {
  margin-bottom: 4rem;
  overflow: hidden;
}
*[class^=c-img-box] img {
  max-width: 44%;
}
*[class^=c-img-box] + * {
  overflow: hidden;
}

.c-img-box--l__item, .c-img-box--l img {
  max-width: 44%;
  margin-right: 4rem;
  float: left;
}
.c-img-box--r__item, .c-img-box--r img {
  max-width: 44%;
  margin-left: 4rem;
  float: right;
}
.c-img-box--half {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 8%;
}
.c-img-box--half__item {
  width: 46%;
  max-width: 46%;
  text-align: center;
}
.c-img-box--half__item img {
  display: block;
  max-width: 100%;
  margin: 0 auto 0.5rem;
}

.c-list--disc li {
  padding-left: 1em;
  line-height: 1.6;
  text-indent: -1em;
}
.c-list--disc li::before {
  padding-right: 1rem;
  content: "・";
}
.c-list--disc li + li {
  margin-top: 0.5em;
}
.c-list--indent li {
  padding-left: 2em;
  font-size: clamp(13px, 0.78vw, 15px);
  text-indent: -2em;
}
.c-list--indent li + li {
  margin-top: 0.5em;
}

.c-page-top {
  position: fixed;
  right: 2vw;
  bottom: 6vw;
  letter-spacing: 0.1rem;
}
.c-page-top a {
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: tb-rl;
  color: #6e7786;
  font-size: clamp(10px, 0.625vw, 12px);
  text-decoration: none;
  text-orientation: sideways;
  transition: 0.3s all;
  writing-mode: vertical-rl;
}

.c-page-top a::before {
  display: block;
  position: absolute;
  top: -4rem;
  right: 50%;
  height: 3rem;
  border-left: 1px solid #ccc;
  content: "";
}

.section-title {
  margin-bottom: 6.5rem;
  text-align: center;
}
.section-title.white {
  color: #fff;
}
.section-title .en {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: normal;
  font-size: 2rem;
  font-family: Oswald;
}
.section-title .jp {
  display: block;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.5;
}

.c-service-case {
  background: #edf2f8;
}
.c-service-case__inner {
  padding: 9.9rem 0 8.9rem 0;
}
.c-service-case .service-title {
  margin-bottom: 4.9rem;
}
.c-service-case .maker {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 115.6rem;
  min-height: 24.5rem;
  margin: 0 auto;
  margin-bottom: 4.2rem;
}
.c-service-case .maker .head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  background: #1f2a68;
  color: #fff;
  text-align: center;
}
.c-service-case .maker .head h3 .icon {
  padding-bottom: 2.4rem;
}
.c-service-case .maker .head h3 .name {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1;
}
.c-service-case .maker .head h3 .taisyou {
  font-weight: normal;
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1;
}
.c-service-case .maker .content {
  width: calc(50% - 15rem);
  padding: 1.4rem 3rem 0.6rem 3rem;
  border-right: solid 1px #edf2f8;
  background: #fff;
}
.c-service-case .maker .content h4 {
  margin-bottom: 0.3rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.c-service-case .maker .content ul {
  margin-left: 2rem;
  list-style: disc;
}
.c-service-case .maker .content ol {
  margin-left: 2rem;
  list-style: decimal;
}
.c-service-case .maker .content li {
  line-height: 1.5;
}
.c-service-case .list {
  max-width: 115.6rem;
  margin: 0 auto;
  margin-top: 7rem;
}
.c-service-case .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-service-case .list ul:after {
  display: block;
  width: calc(33.3% - 1rem);
  max-width: 33.4rem;
  content: "";
}
.c-service-case .list ul li {
  width: calc(33.3% - 1rem);
  max-width: 33.4rem;
}
.c-service-case .list ul li a {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.c-service-case .list ul li a:hover .button {
  border: solid 1px #1f2a68;
  background: #1f2a68;
  color: #FFF;
}
.c-service-case .list ul .image {
  margin-bottom: 0.9rem;
}
.c-service-case .list ul .tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.7rem;
  padding: 0.5rem 1rem;
  background: #717aa2;
  color: #fff;
  font-size: clamp(12px, 0.729vw, 14px);
  line-height: 1;
}
.c-service-case .list ul .title {
  margin-bottom: 0.8rem;
  font-weight: bold;
  line-height: 1.6;
}
.c-service-case .list ul .body {
  margin-bottom: 1.4rem;
  font-weight: normal;
  line-height: 1.6;
}
.c-service-case .list ul .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto auto 0 auto;
  padding: 0.5rem 5.2rem;
  border: solid 1px #1f2a68;
  border-radius: 10rem;
  background: #fff;
  color: #1f2a68;
  transition: 0.5s;
}

.c-service-case .maker .head h3 .taisyou {
  display: block;
  line-height: 1.5;
}

.c-service-faq {
  background: #edf2f8;
}
.c-service-faq__inner {
  padding: 9.9rem 0 7.8rem 0;
}
.c-service-faq .service-title {
  margin-bottom: 6.4rem;
}
.c-service-faq__wrap .item {
  position: relative;
  margin-bottom: 3.4rem;
  background-color: #FFF;
}
.c-service-faq__wrap .item:before {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 1;
  position: absolute;
  top: 4rem;
  right: 2rem;
  width: 24px;
  height: 3px;
  margin-top: -1px;
  background: #1f2a68;
  content: "";
  transition: all 0.3s;
}
.c-service-faq__wrap .item:after {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  position: absolute;
  top: 4rem;
  right: 2rem;
  width: 24px;
  height: 3px;
  margin-top: -1px;
  transform: rotate(-90deg);
  background: #1f2a68;
  content: "";
  transition: all 0.3s;
}
.c-service-faq__wrap .item.open::after {
  -moz-transform: rotate(0);
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.c-service-faq__wrap .item .q {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: left;
  min-height: 8rem;
  padding: 1rem 0;
  padding-right: 5rem;
  padding-left: 10.9rem;
  border-bottom: solid 1px #edf2f8;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  cursor: pointer;
          user-select: none;
}
.c-service-faq__wrap .item .q:before {
  display: block;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 100%;
  background: #1f2a68;
  content: "Q";
  color: #fff;
  font-size: clamp(24px, 1.666vw, 32px);
  font-family: "Oswald", sans-serif;
}
.c-service-faq__wrap .item .a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: 250ms grid-template-rows ease;
  transition: 250ms grid-template-rows ease, 250ms -ms-grid-rows ease;
}
.c-service-faq__wrap .item .a {
  position: relative;
  overflow: hidden;
  background: #fff;
  line-height: 1.5;
}
.c-service-faq__wrap .item .a .text {
  padding: 3.6rem 5rem 4.2rem 10.9rem;
}
.c-service-faq__wrap .item .a .text:before {
  display: block;
  display: flex;
  position: absolute;
  top: 0.8rem;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  background: #fff;
  content: "A";
  color: #1f2a68;
  font-size: clamp(24px, 1.666vw, 32px);
  font-family: "Oswald", sans-serif;
}
.c-service-faq__wrap .item.open .a-wrap {
  grid-template-rows: 1fr;
}

.c-service-footer-service__inner {
  padding: 8.6rem 0 8.1rem 0;
}
.c-service-footer-service h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  margin-bottom: 4.2rem;
}
.c-service-footer-service h2 .en {
  display: block;
  color: #1f2a68;
  font-weight: normal;
  font-size: clamp(32px, 2.5vw, 48px);
  font-family: "Oswald", sans-serif;
}
.c-service-footer-service h2 .jp {
  display: block;
  display: inline-block;
  margin-left: 3.5rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.c-service-footer-service h3 {
  margin-bottom: 2.9rem;
  font-weight: bold;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.c-service-footer-service__wrap {
  margin-bottom: 6.2rem;
  padding-bottom: 1.1rem;
  border-bottom: solid 1px #999ebb;
}
.c-service-footer-service__wrap:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.c-service-footer-service ul.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-service-footer-service ul.list::after {
  display: block;
  width: calc(33.3% - 1rem);
  max-width: 40.2rem;
  content: "";
}
.c-service-footer-service ul.list > li {
  width: calc(33.3% - 1rem);
  max-width: 40.2rem;
  margin-bottom: 3rem;
}
.c-service-footer-service ul.list .image {
  margin-bottom: 1.3rem;
}
.c-service-footer-service ul.list ul {
  margin-left: 2rem;
  list-style: disc;
}
.c-service-footer-service ul.list ul li {
  line-height: 1.5;
}

.c-service-mv {
  position: relative;
  height: 55rem;
  background-color: #07183f;
}
.c-service-mv__inner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: left;
  width: 100%;
  max-width: 192rem;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  background-position: bottom right;
  background-size: 192rem 55rem;
  background-repeat: no-repeat;
}
.c-service-mv.vision .c-service-mv__inner {
  background-image: url(../img/service/bg_mv_vision.jpg);
}
.c-service-mv.research .c-service-mv__inner {
  background-image: url(../img/service/bg_mv_research.jpg);
}
.c-service-mv.strategy .c-service-mv__inner {
  background-image: url(../img/service/bg_mv_strategy.jpg);
}
.c-service-mv.globalization .c-service-mv__inner {
  background-image: url(../img/service/bg_mv_globalization.jpg);
}
.c-service-mv.marketing .c-service-mv__inner {
  background-image: url(../img/service/bg_mv_marketing.jpg);
}
.c-service-mv.management .c-service-mv__inner {
  background-image: url(../img/service/bg_mv_management.jpg);
}
.c-service-mv.development .c-service-mv__inner {
  background-image: url(../img/service/bg_mv_development.jpg);
}
.c-service-mv__content {
  z-index: 1;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}
.c-service-mv__content .pre {
  margin-bottom: 3.8rem;
  color: #8cf0ff;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  letter-spacing: 0.08em;
}
.c-service-mv__content .sub {
  margin-bottom: 1.6rem;
  color: #fff;
  font-weight: bold;
  font-size: clamp(24px, 1.666vw, 32px);
}
.c-service-mv__content h1 {
  margin-bottom: 3rem;
  color: #fff;
  font-weight: bold;
  font-size: clamp(32px, 2.5vw, 48px);
  line-height: 1.25;
}
.c-service-mv__content .lead {
  color: #fff;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-service-mv .breadcrumb {
  display: flex;
  position: absolute;
  right: 2.2rem;
  bottom: 0.5rem;
  flex-wrap: wrap;
  justify-content: right;
}
.c-service-mv .breadcrumb li {
  font-size: clamp(12px, 0.729vw, 14px);
  white-space: nowrap;
}
.c-service-mv .breadcrumb li::after {
  display: inline-block;
  margin: 0 2rem;
  content: "|";
}
.c-service-mv .breadcrumb li:last-child::after {
  content: none;
}
.c-service-mv .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 5rem;
  gap: 2rem;
}
.c-service-mv .buttons_btn_contact::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 1rem;
  background: url(../img/service/icon_mail.png) no-repeat;
  background-size: contain;
  content: "";
  vertical-align: middle;
}
.c-service-mv .buttons_btn_contact:hover::before {
  background: url(../img/service/icon_mail_on.png) no-repeat;
  background-size: contain;
}
.c-service-mv .buttons_btn_download::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 1rem;
  background: url(../img/service/icon_dl.png) no-repeat;
  background-size: contain;
  content: "";
  vertical-align: middle;
}
.c-service-mv .buttons_btn_download:hover::before {
  background: url(../img/service/icon_dl_on.png) no-repeat;
  background-size: contain;
}
.c-service-mv .buttons .button {
  width: calc(50% - 2rem);
  max-width: 40.5rem;
}
.c-service-mv .buttons .button a {
  display: block;
  padding: 2.1rem 1.5rem;
  border: solid 1px #fff !important;
  border-radius: 10rem;
  background: #fff;
  color: #1f2a68;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.c-service-mv .buttons .button a:hover {
  background-color: #1f2a68;
  color: #FFF;
  opacity: 1;
}
.c-service-mv .buttons .button a img {
  display: inline-block;
  margin-right: 1rem;
}

.c-service-nagare {
  position: relative;
}
.c-service-nagare__inner {
  padding: 9.4rem 0 8.6rem 0;
}
.c-service-nagare h2 {
  margin-bottom: 2.6rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(24px, 1.666vw, 32px);
  text-align: center;
}
.c-service-nagare__wrap {
  max-width: 102rem;
  margin: 0 auto;
}
.c-service-nagare__item h3 {
  margin-bottom: 1.5rem;
  color: #07183f;
  text-align: center;
}
.c-service-nagare__item .step {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-service-nagare__item .step li {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6rem;
  margin-bottom: 2.7rem;
  border: solid 1px #07183f;
  background: #e9edf6;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.2;
  text-align: center;
}
.c-service-nagare__item .step li .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  font-family: "Oswald", sans-serif;
}
.c-service-nagare__item .step li.active {
  background: #07183f;
  color: #fff;
}
.c-service-nagare__item .step li:after {
  display: block;
  position: absolute;
  top: -1.9rem;
  left: calc(50% - 1.5rem);
  width: 3rem;
  height: 1.2rem;
  background: url(../img/service/icon_nagare.png) 50% 50%/100% auto no-repeat;
  content: "";
}
.c-service-nagare__item .step li:first-child:after {
  content: none;
}
.c-service-nagare__item .step li.half {
  width: calc(50% - 1rem);
}
.c-service-nagare__item .step li.half:before {
  content: none;
}

.c-service-onayami {
  background: #edf2f8;
}
.c-service-onayami__inner {
  padding: 8.3rem 0 10.5rem 0;
}
.c-service-onayami h2 {
  margin-bottom: 5.3rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(24px, 1.666vw, 32px);
  line-height: 1.5;
  text-align: center;
}
.c-service-onayami ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-service-onayami li {
  width: calc(30% - 1rem);
  max-width: 37rem;
  text-align: center;
}
.c-service-onayami li .image {
  margin-bottom: 2.9rem;
}
.c-service-onayami li .text {
  line-height: 1.5;
}

.c-service-partner {
  background: url(../img/service/bg_partner.jpg) 50% 50%/cover no-repeat;
}
.c-service-partner__inner {
  padding: 9.9rem 0 11.1rem 0;
}
.c-service-partner .service-title {
  margin-bottom: 1.9rem;
}
.c-service-partner .lead {
  color: #fff;
  text-align: center;
}
.c-service-partner ul {
  max-width: 109rem;
  margin: 0 auto;
  margin-top: 6.4rem;
}
.c-service-partner li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 7rem;
  padding-bottom: 7rem;
  border-bottom: solid 1px #fff;
}
.c-service-partner li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.c-service-partner li .image {
  width: 28.5rem;
}
.c-service-partner li .content {
  width: calc(100% - 34rem);
  color: #fff;
}
.c-service-partner li .content .name {
  margin-bottom: 1.8rem;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1;
}
.c-service-partner li .content .desc {
  line-height: 1.75;
}

.c-service-point {
  background: url(../img/service/bg_point.jpg) 50% 50%/cover no-repeat;
}
.c-service-point__inner {
  padding: 9.9rem 0 11.2rem 0;
}
.c-service-point ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-service-point li {
  width: calc(33.3% - 1rem);
  max-width: 37rem;
  padding: 2.9rem 2rem;
  background: #fff;
}
.c-service-point li .image {
  margin-bottom: 1.8rem;
  text-align: center;
}
.c-service-point li h3 {
  margin-bottom: 1.3rem;
  color: #1f2a68;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
  text-align: center;
}
.c-service-point li .text {
  line-height: 1.5;
}

.service-title {
  margin-bottom: 6.5rem;
  color: #1f2a68;
  text-align: center;
}
.service-title.white {
  color: #fff;
}
.service-title .en {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: normal;
  font-size: clamp(18px, 1.046vw, 20px);
  font-family: "Oswald", sans-serif;
}
.service-title .jp {
  display: block;
  font-weight: bold;
  font-size: clamp(24px, 1.666vw, 32px);
  line-height: 1.5;
}

.c-text-link--arrow-right a, .c-text-link a {
  text-decoration: underline;
}
@includer hover {
  .c-text-link--arrow-right a, .c-text-link a {
    text-decoration: none;
  }
}

.c-text-link a {
  transition: 0.3s all;
}
.c-text-link--arrow-right {
  text-align: right;
}
.c-text-link--arrow-right a {
  position: relative;
}
.c-text-link--arrow-right a::before {
  left: -2rem;
  border-color: #0566d4;
}
.c-text-link--underline {
  text-decoration: underline;
}
.c-text-link--underline:focus {
  text-decoration: none;
}

.c-title-h2-nomal {
  margin-bottom: 3rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.c-title-h2-en {
  margin-bottom: 2rem;
  border-bottom: 1px solid #dcdddd;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
  font-family: "Oswald", sans-serif;
}
.c-title-h2-en span {
  display: inline-block;
  padding-top: 25px;
  padding-left: 2rem;
  color: #000;
  font-weight: 500;
  font-size: clamp(14px, 0.8333vw, 16px);
  vertical-align: top;
}
.c-title-base {
  text-align: center;
}
.c-title-base--white {
  color: #FFF;
  font-size: clamp(25px, 1.875vw, 36px);
}
.c-title-base__en {
  position: absolute;
  top: -7rem;
  left: 0;
  width: 100%;
  font-weight: 400;
  font-size: clamp(100px, 9vw, 200px);
  line-height: 1;
  font-family: "Oswald", sans-serif;
  text-align: center;
  opacity: 0.1;
}

.c-titlearea {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
}
.c-titlearea.column {
  background: url(../img/column/bg_titlearea.jpg) 50% 50%/cover no-repeat;
}
.c-titlearea.download {
  background: url(../img/download/bg_titlearea.jpg) 50% 50%/cover no-repeat;
}
.c-titlearea.contact {
  background: url(../img/contact/bg_titlearea.jpg) 50% 50%/cover no-repeat;
}
.c-titlearea.consultant {
  background: url(../img/consultant/bg_titlearea.jpg) 50% 50%/cover no-repeat;
}
.c-titlearea.webinar {
  background: url(../img/webinar/bg_titlearea.jpg) 50% 50%/cover no-repeat;
}
.c-titlearea h1 {
  text-align: center;
}
.c-titlearea h1 .en {
  display: block;
  color: #fff;
  font-weight: normal;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 2.4;
  font-family: "Oswald", sans-serif;
}
.c-titlearea h1 .jp {
  display: block;
  color: #fff;
  font-size: clamp(28px, 2.083vw, 40px);
}
.c-titlearea__inner {
  padding: 0;
}

.c-txt-base--small {
  font-size: clamp(12px, 0.729vw, 14px);
}

.p-about {
  background: url(../img/bg-p-about.jpg) no-repeat 0 0;
  background-size: cover;
  color: #FFF;
}
.p-about__title {
  position: relative;
  padding-bottom: 7rem;
}
.p-about__text {
  font-size: 129%;
  line-height: 2.25;
  text-align: center;
}
.p-about-stats__title {
  display: flex;
  align-items: center;
  margin: 6rem 0 6rem 0;
}
.p-about-stats__title:before, .p-about-stats__title:after {
  flex-grow: 1;
  height: 1px;
  background-color: #FFF;
  content: "";
}
.p-about-stats__title:before {
  margin-right: 1rem;
}
.p-about-stats__title:after {
  margin-left: 1rem;
}
.p-about-stats__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-about-stats__list__item {
  width: 30%;
  padding: 0;
  border: 1px solid #FFF;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-about-stats__list__item .num {
  padding: 0 1rem;
  font-weight: 400;
  font-size: clamp(35px, 3.5vw, 70px);
  font-family: "Oswald", sans-serif;
}

.p-breadcrumb {
  margin: 0;
  padding: 1rem 0 0 0;
  color: #595757;
  font-size: clamp(12px, 0.729vw, 14px);
}
.p-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-end;
  gap: 0;
}
.p-breadcrumb ul li + li::before {
  margin: 0 1rem;
  content: "｜";
}
.p-breadcrumb ul a {
  position: relative;
  font-weight: normal;
}
.p-breadcrumb ul a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left top;
  background: #6e7786;
  content: "";
  transition: transform 0.2s;
}
.p-breadcrumb ul a:focus::after {
  transform: scale(1, 1);
}

.c-list-c3 {
  padding-bottom: 4rem;
}
.c-list-c3 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 3.2%;
}
.c-list-c3 ul li {
  width: 31.2%;
  margin-bottom: 5%;
}
.c-list-c3 ul li a {
  display: block;
  position: relative;
  height: 100%;
  padding-bottom: 2rem;
  box-shadow: 0px 0px 20px rgba(31, 42, 104, 0.2);
}
.c-list-c3 ul li a:hover {
  background-color: #e8e9f0;
  box-shadow: none;
  opacity: 1;
}
.c-list-c3 ul li a:hover .c-list-c3__btn {
  background-color: #1f2a68;
  color: #FFF;
}
.c-list-c3 ul li a::after {
  display: block;
  z-index: 1;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 16px;
  height: 16px;
  background: center/contain no-repeat url(../img/icon_other_wh.svg);
  content: "";
  transition: 0.3s;
}
.c-list-c3 ul li figure img {
  width: 100%;
  height: auto;
}
.c-list-c3__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  padding: 1.4rem 1.4rem 1rem 1.4rem;
  gap: 1rem;
  line-height: 1;
}
.c-list-c3__ico {
  display: inline-block;
  padding: 5px 15px 5px 15px;
  border-radius: 15px;
  background-color: #1f2a68;
  color: #FFF;
  font-size: clamp(12px, 0.729vw, 14px);
}
.c-list-c3__date {
  margin: auto 0;
  color: #727171;
  font-size: clamp(12px, 0.729vw, 14px);
}
.c-list-c3__ttl {
  padding: 0 1.4rem 1.4rem 1.4rem;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.3333333333;
}
.c-list-c3__company {
  padding: 0 1.4rem 1rem 1.4rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.c-list-c3__cat {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  padding-left: 20px;
  background: url(../img/column/ico_003.png) no-repeat 0 center;
  background-size: 14px 14px;
  color: #727171;
  font-size: clamp(12px, 0.729vw, 14px);
}
.c-list-c3__text {
  padding: 1em 1.25em 4em 1.25em;
}
.c-list-c3__btn {
  position: absolute;
  bottom: 25px;
  left: 15%;
  width: 70%;
  padding: 10px 25px;
  border-radius: 25px;
  background-color: #e8e9f0;
  color: #1f2a68;
  font-weight: bold;
  text-align: center;
  transition: 0.4s;
}
.c-list-c3.list-dl figure {
  min-height: 250px;
  padding: 25px 0;
  text-align: center;
}
.c-list-c3.list-dl figure img {
  width: inherit;
  max-width: 100%;
  height: auto;
}

.p-contact-lead {
  margin-bottom: 5rem;
  text-align: center;
}
.p-contact-form {
  padding: 7rem;
  background-color: #e9edf6;
}
.p-contact-form a {
  text-decoration: underline;
}
.p-contact-form-h3 {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-contact-form-h3 .required {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 5px 4px 5px;
  background-color: #ea1414;
  color: #FFF;
  font-size: 12px;
  line-height: 1;
}
.p-contact-form-h3 .any {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 5px 4px 5px;
  background-color: #898989;
  color: #FFF;
  font-size: 12px;
  line-height: 1;
}
.p-contact-form__wrap {
  padding-bottom: 3rem;
}
.p-contact-form__wrap label {
  display: block;
}
.p-contact-form__wrap input[type=text] {
  width: 100%;
  padding: 1rem 2rem;
  border: 1px solid #9fa0a0;
  border-radius: 3px;
  background-color: #FFF;
}
.p-contact-form__wrap input[type=text]::-moz-placeholder {
  color: #b5b5b6;
}
.p-contact-form__wrap input[type=text]:-ms-input-placeholder {
  color: #b5b5b6;
}
.p-contact-form__wrap input[type=text]::placeholder {
  color: #b5b5b6;
}
.p-contact-form__wrap textarea {
  width: 100%;
  min-height: 150px;
  padding: 1rem 2rem;
  border: 1px solid #9fa0a0;
  border-radius: 3px;
  background-color: #FFF;
}
.p-contact-form__wrap select {
  position: relative;
  width: 100%;
  padding: 1rem 2rem;
  border: 1px solid #9fa0a0;
  background: url(../img/ico_arrow__001.png) no-repeat right 15px center #FFF;
  background-size: 15px 9px;
}
.p-contact-form__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-contact-form__half {
  width: 48%;
}
.p-contact-form__btn {
  padding-top: 5rem;
}
.p-contact-form__btn input {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: auto;
  padding: 15px;
  background-color: #1f2a68;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.p-contact-form__btn input:hover {
  opacity: 0.7;
}

.p-footer-nav__logo {
  display: block;
  min-width: 22%;
  padding: 3rem 0;
  gap: 8%;
  font-size: 10px;
  line-height: 1.2;
  white-space: initial;
}

.p-footer-nav__logo .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/*.p-footer-nav__logo a img {
    max-width: 170px;
}*/
.p-footer-nav__logo a + img {
  max-width: 46px;
}
/* new header Start -------------------------------------------*/
.p-header__inner {
  width: 1340px;
  max-width: 100%;
  margin: 0 auto;
}
.l-header {
  z-index: 99;
  position: relative;
  width: 100%;
  background: #fff;
}

.l-header a {
  text-decoration: none;
}

.under .l-header {
  border-bottom: 1px solid #f4f4f4;
}

.l-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.p-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

.p-header__logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
  max-height: inherit;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  /*padding: 14px 0;*/
  /*gap: 8%;*/
  font-size: 11px;
}

.p-header__logo img {
  display: block;
  width: 164px;
  /*margin-bottom: 15px;
  max-width: 197.58px;*/
  max-height: inherit;
  margin-bottom: 13px;
}

.p-header__logo a {
  padding: 13px 30px 0 0;
  /*max-width: 74%;*/
  white-space: nowrap;
}

.p-header__logo a + img {
  max-width: 46px;
  margin-left: 23px;
}

.p-header__logo a:focus {
  opacity: 0.7;
  transition: 0.3s;
}

.p-header__nav {
  margin-left: auto;
}
.p-header__nav__otherlink a {
  position: relative;
  padding-right: 1em;
}
.p-header__nav__otherlink a::before {
  display: block;
  z-index: 1;
  position: absolute;
  right: 0;
  width: 12px;
  height: 12px;
  background: center/contain no-repeat url(../img/icon_other_wh.svg);
  content: "";
  transition: 0.3s;
}

.p-header__nav nav {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-end;
  gap: 0;
}

.p-header__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 0;
}

.p-header__nav ul + ul {
  margin-left: 30px;
}

.p-header__nav ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.p-header__nav ul li a {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  gap: 0;
  font-size: clamp(13px, 0.78vw, 15px);
}

.p-header__nav ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left top;
  background: #153378;
  content: "";
  transition: transform 0.2s;
}

.p-header__nav ul li a:focus::after {
  transform: scale(1, 1);
}

.p-header__nav ul:nth-of-type(1) li + li {
  margin-left: 1.5vw;
}

.p-header__nav ul:nth-of-type(2) li a {
  display: block;
  width: 120px;
  height: 100%;
  padding: 30px 0;
  color: #fff;
  font-size: clamp(11px, 0.677vw, 13px);
  text-align: center;
}

.p-header__nav ul:nth-of-type(2) li a img {
  display: block;
  height: 16px;
  margin: 0 auto 4px;
}

.p-header__nav ul:nth-of-type(2) li a:focus {
  background: #6e7786 !important;
  transition: 0.5s;
}

.p-header__nav ul:nth-of-type(2) li:nth-of-type(1) a {
  background-color: #111;
}

.p-header__nav ul:nth-of-type(2) li:nth-of-type(2) a {
  background-color: #07183f;
}

.p-header__nav ul:nth-of-type(2) li:nth-of-type(3) a {
  background-color: #153378;
}
.p-home-mv .l-container {
  display: flex;
  height: 39.84375vw;
  padding-top: 0;
  padding-bottom: 0;
}
@-webkit-keyframes zoomout {
  0% {
    transform: scale(1.2);
  }
  15% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomout {
  0% {
    transform: scale(1.2);
  }
  15% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.p-home-mv h1 {
  margin-top: auto;
  margin-bottom: 6rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.p-home-mv h1 span {
  font-size: clamp(28px, 2.083vw, 40px);
}
.p-home-mv h2 {
  color: #fff;
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-home-mv-slide {
  position: relative;
  overflow: hidden;
}
.p-home-mv-slide .swiper-slide a:hover {
  opacity: 1;
}
.p-home-mv-slide__wrap-origin {
  z-index: 1;
  position: relative;
  margin: auto;
}
.p-home-mv-slide__wrap-origin-title {
  font-size: clamp(36px, 2.8125vw, 54px);
  line-height: 1.5;
}
.p-home-mv-slide__wrap {
  z-index: 1;
  position: relative;
  margin: auto;
}
.p-home-mv-slide__wrap-title {
  font-size: clamp(32px, 3.125vw, 60px);
  line-height: 1.5;
}
.p-home-mv-slide__wrap-title__en {
  display: block;
  font-weight: 400;
  font-size: clamp(25px, 1.875vw, 36px);
  font-family: "Oswald", sans-serif;
}
.p-home-mv-slide__img {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  scale: 1.2;
}
.p-home-mv-slide__img img {
  width: 100%;
  height: auto;
}
.p-home-mv-slide__btn {
  display: flex;
  z-index: 10;
  position: relative;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  margin-bottom: 4rem;
  gap: 0;
}
.p-home-mv-slide__pager {
  display: inline-block;
  width: auto !important;
  text-align: center;
}
.p-home-mv-slide__pager .swiper-pagination-bullet {
  margin: 0 7px !important;
  background: #c9caca;
  opacity: 1;
}
.p-home-mv-slide__pager .swiper-pagination-bullet.swiper-pagination-bullet-active {
  scale: 1.5;
  background: #fff;
}
.p-home-mv-slide__st {
  width: 17px;
  height: 17px;
  margin: auto 2rem auto 0;
  background: url(../img/ico_stop.png) no-repeat center center;
  background-size: contain;
}
.p-home-mv-slide__st.paused {
  background: url(../img/ico_start.png) no-repeat center center;
  background-size: contain;
}
.p-home-mv-slide__next {
  z-index: 10;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 62px;
  height: 62px;
  background: url(../img/ico_arrow__011.png) no-repeat center center;
  background-size: contain;
}
.p-home-mv-slide__next:hover {
  cursor: pointer;
  opacity: 0.7;
}
.p-home-mv-slide__prev {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 62px;
  height: 62px;
  background: url(../img/ico_arrow__010.png) no-repeat center center;
  background-size: contain;
}
.p-home-mv-slide__prev:hover {
  cursor: pointer;
  opacity: 0.7;
}
.p-home-mv .swiper-slide-active .p-home-mv-slide__img,
.p-home-mv .swiper-slide-duplicate-active .p-home-mv-slide__img,
.p-home-mv .swiper-slide-prev .p-home-mv-slide__img {
  -webkit-animation: zoomout 7s linear 0s normal both;
          animation: zoomout 7s linear 0s normal both;
}

.p-home-feature {
  background: url(../img/top/bg_p_home_feature.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-feature__ttlarea {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 4rem;
  gap: 0;
}
.p-home-feature__h2 {
  margin-bottom: 0;
  color: #fff;
  font-weight: 400;
  font-size: clamp(32px, 3.125vw, 60px);
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.p-home-feature__ja {
  margin: auto 0;
  padding-left: 3rem;
  color: #fff;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.6;
}
.p-home-feature__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  min-height: 360px;
  margin-bottom: 5rem;
  gap: 0;
  background-color: #fff;
}
.p-home-feature__item {
  order: 2;
  width: 50%;
  margin: auto 0;
  padding: 4rem 4rem 4rem 4rem;
}
.p-home-feature figure {
  position: relative;
  order: 1;
  width: 50%;
  overflow: hidden;
}
.p-home-feature figure img {
  position: absolute;
  right: 0;
  width: 100%;
  min-width: 700px;
  height: auto;
}
.p-home-feature .right figure {
  order: 3;
}
.p-home-feature .right figure img {
  right: inherit;
  left: 0;
}
.p-home-feature__h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 3rem;
  gap: 0;
  color: #1f2a68;
}
.p-home-feature__num {
  font-weight: 400;
  font-size: clamp(40px, 4.166vw, 80px);
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.p-home-feature__ttl {
  margin: auto 0 0 2rem;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  line-height: 1.3;
}
.p-home-consultant {
  padding-top: 10rem;
  overflow: hidden;
  background-color: #edf2f8;
}
.p-home-consultant__en {
  color: #1f2a68;
  font-weight: 600;
  font-size: clamp(18px, 1.046vw, 20px);
  font-family: "Oswald", sans-serif;
  text-align: center;
}
.p-home-consultant__h2 {
  margin-bottom: 0;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(25px, 1.875vw, 36px);
  text-align: center;
}
.p-home-service {
  background: url(../img/top/bg_p_home_service.jpg) no-repeat center 0;
  background-size: cover;
}
.p-home-service .l-container {
  position: relative;
}
.p-home-service__en {
  position: absolute;
  top: 0;
  right: 0;
  color: #b4e7ff;
  font-size: clamp(140px, 13vw, 280px);
  font-family: "Oswald", sans-serif;
  opacity: 0.05;
}
.p-home-service__h2 {
  margin-bottom: 3rem;
  color: #fff;
  font-size: clamp(32px, 2.5vw, 48px);
}
.p-home-service__lead {
  color: #fff;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-home-service__btn {
  padding: 4rem 0 6rem 0;
}
.p-home-service-list__list1 {
  position: relative;
  width: 100%;
  height: 140px;
  color: #0a0f2c;
}
.p-home-service-list__list1 p {
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-home-service-list__list1 a {
  display: block;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
  padding: 2rem 2rem 3rem 2rem;
  gap: 0;
  background-color: #fff;
}
.p-home-service-list__list1 a:hover {
  background-color: #c6d2e0;
  opacity: 1;
}
.p-home-service-list__list1 a:hover .p-home-service-list__btn::after {
  right: -10px;
}
.p-home-service-list__list2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 140px;
  margin-top: 6rem;
  gap: 2rem;
  color: #1f2a68;
}
.p-home-service-list__list2 .p-home-service-list__item {
  position: relative;
  width: calc((100% - 2rem) / 2);
}
.p-home-service-list__list2 .p-home-service-list__item__img {
  padding-top: 30px;
}
.p-home-service-list__list2 .p-home-service-list__ttl {
  width: calc(100% - 120px);
  padding-right: 0;
  text-align: left;
}
.p-home-service-list__list2 .p-home-service-list__item__box {
  display: block;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
  padding: 2rem 2rem 3rem 2rem;
  gap: 0;
  background-color: #fff;
}
.p-home-service-list__list2 .p-home-service-list__item__box .p-home-service-list__num {
  background-color: #1f2a68;
}
.p-home-service-list__list2 .p-home-service-list__item__box .p-home-service-list__num__step {
  padding-bottom: 0;
  font-size: 85%;
}
.p-home-service-list__list2 .p-home-service-list__item__box:hover {
  background-color: #c6d2e0;
  opacity: 1;
}
.p-home-service-list__list2 .p-home-service-list__item__box:hover .p-home-service-list__btn::after {
  right: -10px;
}
.p-home-service-list__num {
  width: 100px;
  height: 100px;
  margin: auto 0;
  border-radius: 50%;
  background-color: #0a0f2c;
  color: #fff;
  text-align: center;
}
.p-home-service-list__num__step {
  padding: 0.5rem 0 0.5rem 0;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
}
.p-home-service-list__num img {
  width: auto;
  height: 41px;
}
.p-home-service-list__ttl {
  width: calc(50% - 120px);
  margin: auto 0 auto 2rem;
  padding-right: 2rem;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
}
.p-home-service-list__l {
  display: flex;
  width: 50%;
  padding: 1rem 0 1rem 4rem;
  border-left: 1px solid #a4a7b7;
  line-height: 1.4;
}
.p-home-service-list__l p {
  margin: auto 0;
}
.p-home-service-list__btn {
  position: absolute;
  right: 2rem;
  bottom: 0.5rem;
  padding-right: 65px;
  color: #1f2a68;
  font-weight: bold;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
}
.p-home-service-list__btn::after {
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 0;
  width: 47px;
  height: 7px;
  background: url(../img/ico_arrow__008.png) no-repeat center center;
  background-size: contain;
  content: "";
  transition: 0.5s;
}
.p-home-service-list__arrow {
  width: 87px;
  margin: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.p-home-service-list__arrow img {
  width: 100%;
  height: auto;
}
.p-home-service-list__ttl2 {
  padding-bottom: 2rem;
  color: #fff;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  text-align: center;
}
.p-home-service-list__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-home-service-list-wrap1 {
  width: 62%;
}
.p-home-service-list-wrap1 .p-home-service-list__num {
  background-color: #1f2a68;
}
.p-home-service-list-wrap1 .p-home-service-list__ttl {
  color: #1f2a68;
}
.p-home-service-list-wrap2 {
  width: 36%;
}
.p-home-service-list-wrap2 .p-home-service-list__num {
  background-color: #1e6fa5;
}
.p-home-service-list-wrap2 .p-home-service-list__ttl {
  width: calc(100% - 120px);
  color: #1e6fa5;
}
.p-home-service-list-wrap3 {
  width: 49%;
}
.p-home-service-list-wrap3 .p-home-service-list__ttl {
  width: calc(100% - 120px);
  padding-right: 0;
}
.p-home-service-list-wrap3 .p-home-service-list__list1 {
  height: auto;
}
.p-home-service-list-wrap3 .p-home-service-list__l {
  width: 100%;
  margin-top: 3rem;
  padding: 3rem 2rem;
  border-top: 1px solid #a4a7b7;
  border-left: none;
}
.p-home-ttlarea {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 4rem;
  gap: 2rem;
  color: #1f2a68;
}
.p-home-ttlarea__en {
  font-size: clamp(32px, 3.125vw, 60px);
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.p-home-ttlarea h2 {
  margin-bottom: 0;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-home-ttlarea p {
  width: 100%;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-home-ttlarea__wrap {
  margin: auto 0;
}
.p-home-report {
  background-color: #edf2f8;
}
.p-home-report-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-home-report-list li {
  width: 31%;
  margin-bottom: 4rem;
}
.p-home-report-list li a {
  display: block;
  position: relative;
  height: 100%;
  padding: 3rem;
  color: #fff;
}
.p-home-report-list li a:before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 5rem;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  background: #1f2a68;
  content: "";
  transition: transform ease 0.5s;
}
.p-home-report-list li a:hover {
  opacity: 1;
}
.p-home-report-list li a:hover::before {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
.p-home-report-list li:nth-child(1) a {
  background: url(../img/top/img_p_home_report_turkey.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-report-list li:nth-child(2) a {
  background: url(../img/top/img_p_home_report_001.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-report-list li:nth-child(3) a {
  background: url(../img/top/img_p_home_report_dubai.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-report-list li:nth-child(4) a {
  background: url(../img/top/img_p_home_report_singapore.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-report-list li:nth-child(5) a {
  background: url(../img/top/img_p_home_report_005.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-report-list li:nth-child(6) a {
  background: url(../img/top/img_p_home_report_swiss.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-report-list__flag {
  z-index: 2;
  position: relative;
  padding-bottom: 1rem;
}
.p-home-report-list__flag img {
  width: auto;
  height: 25px;
}
.p-home-report-list__ttl {
  z-index: 2;
  position: relative;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.4;
}
.p-home-report-list__ico {
  z-index: 2;
  position: relative;
  padding-top: 2rem;
}
.p-home-report-list__ico span {
  display: inline-block;
  margin-left: 1rem;
  padding: 2px 15px;
  border: 1px solid #fff;
  border-radius: 15px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.p-home-report-list__btn {
  z-index: 2;
  position: absolute;
  right: 2rem;
  bottom: 0.5rem;
  color: #fff;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
}
.p-home-report-list__btn::after {
  display: inline-block;
  width: 47px;
  height: 7px;
  background: url(../img/ico_arrow__009.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.p-home-btn-c {
  padding-top: 3rem;
  text-align: center;
}
.p-home-partners {
  background-color: #1f2a68;
}
.p-home-partners__ttlen {
  color: #fff;
  font-size: clamp(18px, 1.046vw, 20px);
  font-family: "Oswald", sans-serif;
  text-align: center;
}
.p-home-partners__h2 {
  margin-bottom: 3rem;
  color: #fff;
  font-weight: bold;
  font-size: clamp(25px, 1.875vw, 36px);
  line-height: 1.55;
  text-align: center;
}
.p-home-partners__lead {
  margin-bottom: 5rem;
  color: #fff;
  text-align: center;
}
.p-home-partners-box {
  padding: 0 4rem;
  background-color: #fff;
}
.p-home-partners-box__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding: 3rem 0;
  gap: 0;
  border-bottom: 1px solid #cecece;
}
.p-home-partners-box__flex:last-child {
  border-bottom: none;
}
.p-home-partners-box__flex figure {
  width: 30%;
  margin: auto;
  text-align: center;
}
.p-home-partners-box__wrap {
  width: 68%;
  margin: auto;
}
.p-home-partners-box__wrap h3 {
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-home-partners-box__wrap p {
  font-size: clamp(13px, 0.78vw, 15px);
  line-height: 1.4;
}
.p-home-column {
  background-color: #edf2f8;
}
.p-home-column .l-container {
  border-bottom: 1px solid #d8dee9;
}
.p-home-column__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-home-column__ttlarea {
  width: 25%;
}
.p-home-column-list {
  width: 75%;
  margin-bottom: 2rem;
}
.p-home-column-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3.5%;
}
.p-home-column-list ul li {
  width: 31%;
  margin-bottom: 4rem;
}
.p-home-column-list ul li a {
  display: block;
}
.p-home-column-list ul li a figure {
  overflow: hidden;
}
.p-home-column-list ul li a img {
  transition: 0.5s;
}
.p-home-column-list ul li a:hover img {
  scale: 1.2;
}
.p-home-column-list__ttl {
  padding: 1.5rem 0 0 0;
  font-weight: bold;
}
.p-home-document {
  background-color: #edf2f8;
}
.p-home-document .l-container {
  border-bottom: 1px solid #d8dee9;
}
.p-home-document-list {
  margin-bottom: 2rem;
}
.p-home-document-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2%;
}
.p-home-document-list ul li {
  width: 23.5%;
  margin-bottom: 4rem;
}
.p-home-document-list ul li a {
  display: block;
}
.p-home-document-list ul li a figure {
  overflow: hidden;
}
.p-home-document-list ul li a img {
  transition: 0.5s;
}
.p-home-document-list ul li a:hover img {
  scale: 1.2;
}
.p-home-document-list ul li figure {
  display: flex;
  height: 220px;
  text-align: center;
}
.p-home-document-list ul li figure img {
  display: inline-block;
  width: 80%;
  margin: auto;
}
.p-home-document-list__ttl {
  padding: 1.5rem 0 0 0;
  font-weight: bold;
  text-align: center;
}
.p-home-webinar {
  background-color: #edf2f8;
}
.p-home-webinar-list {
  margin-bottom: 2rem;
}
.p-home-webinar-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2%;
}
.p-home-webinar-list ul li {
  width: 49%;
  margin-bottom: 4rem;
}
.p-home-webinar-list ul li a {
  display: block;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  background-color: #fff;
}
.p-home-webinar-list ul li a figure {
  overflow: hidden;
}
.p-home-webinar-list ul li a img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  transition: 0.5s;
}
.p-home-webinar-list ul li a:hover img {
  scale: 1.2;
}
.p-home-webinar-list ul li figure {
  width: 30%;
}
.p-home-webinar-list__wrap {
  width: 70%;
  padding: 1.5rem;
}
.p-home-webinar-list__ico {
  display: inline-block;
  padding: 5px 10px;
  background-color: #1f2a68;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.p-home-webinar-list__ttl {
  padding: 0.5rem 0 0 0;
  font-weight: bold;
  text-align: left;
}
.p-home-ttlarea2 {
  color: #1f2a68;
}
.p-home-ttlarea2__en {
  font-size: clamp(32px, 3.125vw, 60px);
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
}
.p-home-ttlarea2__h2 {
  font-size: 16px;
}

.menu_contents {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}

.menu_contents .menu_contents-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.menu_contents .menu_contents-inner .menu_contents-item {
  color: #fff;
}

.menu_contents .menu_contents-inner .menu_contents-item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 230px;
  padding: 10px 20px;
  /*color: #153378;
    background: #FFF;*/
  color: #FFF;
  font-size: 15px;
}

.menu_contents .menu_contents-inner .menu_contents-item a:before {
  display: inline-block;
  margin-right: 5px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  /*border-left: 5px solid #153378;*/
  border-left: 5px solid #FFF;
  content: "";
}

.menu_contents .menu_contents-inner .menu_contents-item a:after {
  background: #FFF !important;
}

.menu_contents .menu_contents-inner .menu_contents-item + .menu_contents-item {
  margin-left: 1.5vw;
}

.wlLayoutondemand .c-webinar-list__item__meta {
  display: none;
}

.wlLayoutlive .c-webinar-list__item__desc {
  background-color: #507eb6;
}

.p-firstview__hero__image {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.p-pickup {
  padding: 40px 0;
  background-color: #fff;
}
.p-pickup .l-container {
  padding-top: 0;
  padding-bottom: 0;
}
.p-pickup-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 90px;
}
.p-pickup-list__item {
  position: relative;
  width: calc(50% - 5px);
  opacity: 1;
  transition: all 0.3s ease;
}
.p-pickup-list__item a {
  color: #fff;
  text-decoration: none;
}
.p-pickup-list__item:hover {
  opacity: 0.7;
}
.p-pickup-list__item__image {
  position: relative;
}
.p-pickup-list__item__image::before {
  display: block;
  padding-bottom: 56.25%;
  content: "";
}
.p-pickup-list__item__image img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-pickup-list__item__content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.p-pickup-list__item__content__name {
  color: #fff;
  font-weight: bold;
  font-size: 129%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-pickup-list__item__lnk {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.83333em;
  background-color: #000;
  color: #fff;
  font-size: 86%;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.p-pickup-list__item__lnk::after {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  content: "\f178";
  font-weight: 500;
  font-size: 117%;
  font-family: "Font Awesome 5 Pro";
}

.p-service-development-curriculum__inner {
  padding: 8.7rem 0 17.9rem 0;
}
.p-service-development-curriculum .service-title {
  margin-bottom: 4.6rem;
}
.p-service-development-curriculum table {
  width: 100%;
  margin: 0 auto;
}
.p-service-development-curriculum table thead th {
  padding: 0.5rem 2rem;
  border: solid 1px #e8ebf2;
  background: #e8ebf2;
  color: #1f2a68;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.p-service-development-curriculum table thead th:first-child {
  background: #1f2a68;
  color: #fff;
}
.p-service-development-curriculum table tbody th {
  padding: 0.5rem 2rem;
  border: solid 1px #e8ebf2;
  background: #1f2a68;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.p-service-development-curriculum table tbody td {
  padding: 0.5rem 2rem;
  border: solid 1px #e8ebf2;
  background: #fff;
}
.p-service-development-curriculum table tbody td ol {
  padding-left: 1rem;
  list-style: decimal;
}
.p-service-development-curriculum table tbody tr:first-child td {
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
  text-align: center;
  vertical-align: middle;
}
.p-service-development-curriculum .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}
.p-service-development-curriculum .buttons .button {
  width: calc(50% - 2rem);
  max-width: 40.5rem;
  margin: 0 1rem;
}
.p-service-development-curriculum .buttons .button a {
  display: block;
  padding: 2.1rem 1.5rem;
  border: solid 1px #1f2a68;
  border-radius: 10rem;
  background: #fff;
  color: #1f2a68;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-service-development-curriculum .buttons .button a img {
  display: inline-block;
  margin-right: 1rem;
}

.p-service-development-issue {
  background: #f7f8f8;
}
.p-service-development-issue__inner {
  padding: 9.5rem 0 10rem 0;
}
.p-service-development-issue .service-title {
  margin-bottom: 2.4rem;
}
.p-service-development-issue .lead {
  margin-bottom: 2.8rem;
  line-height: 1.75;
  text-align: center;
}
.p-service-development-issue .lead strong {
  color: #1f2a68;
}
.p-service-development-issue .image {
  width: 50%;
  margin: 0;
  text-align: center;
}
.p-service-development-issue .kome {
  margin-top: -1.1rem;
  font-size: clamp(12px, 0.729vw, 14px);
  text-align: right;
}
.p-service-development-issue__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  gap: 0;
}

.p-service-development-usage {
  background: #1f2a68;
}
.p-service-development-usage__inner {
  padding: 9.9rem 0 13.3rem 0;
}
.p-service-development-usage ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-service-development-usage li {
  width: calc(30% - 1rem);
  max-width: 37rem;
  text-align: center;
}
.p-service-development-usage li .image {
  margin-bottom: 2.9rem;
}
.p-service-development-usage li .text {
  color: #fff;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.5;
}

.p-service-globalization-cross {
  background: #f7f8f8;
}
.p-service-globalization-cross__inner {
  padding: 9.5rem 0 11rem 0;
  border-bottom: solid 1px #abaec1;
}
.p-service-globalization-cross .service-title {
  margin-bottom: 1.8rem;
}
.p-service-globalization-cross .lead {
  margin-bottom: 6.4rem;
  text-align: center;
}
.p-service-globalization-cross .image {
  text-align: center;
}

.p-service-globalization-greenfield {
  background: #f7f8f8;
}
.p-service-globalization-greenfield__inner {
  padding: 9.8rem 0 11rem 0;
}
.p-service-globalization-greenfield .service-title {
  margin-bottom: 2rem;
}
.p-service-globalization-greenfield .lead {
  margin-bottom: 6.4rem;
  text-align: center;
}
.p-service-globalization-greenfield .image {
  text-align: center;
}
.p-service-globalization-greenfield .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 7rem;
}
.p-service-globalization-greenfield .buttons_btn_contact::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 1rem;
  background: url(../img/service/icon_mail.png) no-repeat;
  background-size: contain;
  content: "";
  vertical-align: middle;
}
.p-service-globalization-greenfield .buttons_btn_contact:hover::before {
  background: url(../img/service/icon_mail_on.png) no-repeat;
  background-size: contain;
}
.p-service-globalization-greenfield .buttons_btn_download::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 1rem;
  background: url(../img/service/icon_dl.png) no-repeat;
  background-size: contain;
  content: "";
  vertical-align: middle;
}
.p-service-globalization-greenfield .buttons_btn_download:hover::before {
  background: url(../img/service/icon_dl_on.png) no-repeat;
  background-size: contain;
}
.p-service-globalization-greenfield .buttons .button {
  width: calc(50% - 2rem);
  max-width: 40.5rem;
  margin: 0 1rem;
}
.p-service-globalization-greenfield .buttons .button a {
  display: block;
  padding: 2.1rem 1.5rem;
  border: solid 1px #1f2a68;
  border-radius: 10rem;
  background: #fff;
  color: #1f2a68;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-service-globalization-greenfield .buttons .button a:hover {
  background-color: #1f2a68;
  color: #FFF;
  opacity: 1;
}
.p-service-globalization-greenfield .buttons .button a img {
  display: inline-block;
  margin-right: 1rem;
}

/* 250707_改修 */
.buttons.buttons-color .buttons_btn_contact::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 1rem;
  background: url(../img/service/icon_mail_on.png) no-repeat;
  content: "";
  vertical-align: middle;
}
.buttons.buttons-color .buttons_btn_contact:hover::before {
  background: url(../../assets/img/service/icon_mail.png) no-repeat;
}
.buttons.buttons-color .buttons_btn_download::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 1rem;
  background: url(../img/service/icon_dl_on.png) no-repeat;
  content: "";
  vertical-align: middle;
}
.buttons.buttons-color .buttons_btn_download:hover::before {
  background: url(../../assets/img/service/icon_dl.png) no-repeat;
}
.buttons.buttons-color .button .buttons_btn_contact {
  border-color: #f49729;
  background: #f49729;
  color: #fff;
}
.buttons.buttons-color .button .buttons_btn_download {
  border-color: #01113d;
  background: #01113d;
  color: #fff;
}
.buttons.buttons-color .button a:hover {
  border: solid 1px #1f2a68;
  background: #fff;
  color: #1f2a68;
}

.p-service-globalization-partnerresearch__inner {
  padding: 9.8rem 0 4rem 0;
}
.p-service-globalization-partnerresearch .service-title {
  margin-bottom: 1.8rem;
}
.p-service-globalization-partnerresearch .lead {
  margin-bottom: 6.4rem;
  text-align: center;
}
.p-service-globalization-partnerresearch .image {
  margin-bottom: 7.5rem;
  padding-bottom: 7.5rem;
  border-bottom: solid 1px #abaec1;
  text-align: center;
}
.p-service-globalization-partnerresearch .image:last-child {
  margin-bottom: 0;
  border: none;
}

.p-service-guidelist__img {
  position: relative;
}
.p-service-guidelist__img__text {
  display: grid;
  z-index: 1;
  position: absolute;
  place-items: center;
  inset-block-start: 50%;
  inset-inline-start: 8%;
  transform: translateY(-50%);
  color: #fff;
  line-height: 1.6;
}
.p-service-management-perspective__inner {
  padding: 8.6rem 0 10.4rem 0;
}
.p-service-management-perspective .service-title {
  margin-bottom: 2.8rem;
}
.p-service-management-perspective .lead {
  margin-bottom: 4.5rem;
  text-align: center;
}
.p-service-management-perspective .image {
  text-align: center;
}
.p-service-management-perspective-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
}
.p-service-management-perspective-box__ttl {
  padding: 1rem;
  color: #FFF;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-service-management-perspective-box__txt {
  padding: 1.5rem 3rem 1.5rem 10rem;
}
.p-service-management-perspective-box_01 {
  width: 30%;
  border: 2px solid #07183F;
}
.p-service-management-perspective-box_01 .p-service-management-perspective-box__ttl {
  background: #07183F;
}
.p-service-management-perspective-box_01 .p-service-management-perspective-box__txt {
  color: #07183F;
}
.p-service-management-perspective-box_02 {
  width: 5%;
  margin: auto 0;
}
.p-service-management-perspective-box_03 {
  width: 30%;
  border: 2px solid #153378;
}
.p-service-management-perspective-box_03 .p-service-management-perspective-box__ttl {
  background: #153378;
}
.p-service-management-perspective-box_03 .p-service-management-perspective-box__txt {
  color: #153378;
}

.p-service-management-territory {
  background: #f7f8f8;
}
.p-service-management-territory__inner {
  padding: 9.9rem 0 12.5rem 0;
}
.p-service-management-territory .service-title {
  margin-bottom: 3rem;
}
.p-service-management-territory .lead {
  margin-bottom: 4.5rem;
  text-align: center;
}
.p-service-management-territory .image {
  text-align: center;
}

.p-service-marketing-solution {
  background: #f7f8f8;
}
.p-service-marketing-solution__inner {
  padding: 9.9rem 0 6.8rem 0;
}
.p-service-marketing-solution .service-title {
  margin-bottom: 2.2rem;
}
.p-service-marketing-solution .lead {
  margin-bottom: 6.4rem;
  text-align: center;
}
.p-service-marketing-solution .block-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 93rem;
  margin: 0 auto;
  margin-bottom: 6.9rem;
}
.p-service-marketing-solution .block-wrap .block {
  width: calc(100% - 41.3rem);
  border: solid 1px #1f2a68;
}
.p-service-marketing-solution .block-wrap .block h3 {
  padding: 0.8rem;
  background: #1f2a68;
  color: #fff;
  text-align: center;
}
.p-service-marketing-solution .block-wrap .block .content {
  padding: 2.8rem 4rem;
}
.p-service-marketing-solution .block-wrap .block .content h4 {
  color: #1f2a68;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-service-marketing-solution .block-wrap .block .content p {
  margin-left: 1rem;
}
.p-service-marketing-solution .block-wrap .image {
  width: 100%;
  max-width: 39.5rem;
}
.p-service-marketing-solution .block-wrap .image li {
  margin-bottom: 2.5rem;
}
.p-service-marketing-solution .block-wrap .image li:last-child {
  margin-bottom: 0rem;
}
.p-service-marketing-solution .list {
  max-width: 100rem;
  margin: 0 auto;
}
.p-service-marketing-solution .list .item {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 8.2rem 3.4rem 5.7rem 3.4rem;
  border-top: solid 1px #999ebb;
}
.p-service-marketing-solution .list .item .image {
  width: 22.3rem;
  margin-right: -3rem;
}
.p-service-marketing-solution .list .item .content {
  width: calc(100% - 27rem);
}
.p-service-marketing-solution .list .item .content .sub {
  margin-bottom: 1rem;
  color: #1f2a68;
  font-weight: bold;
  line-height: 1.4;
}
.p-service-marketing-solution .list .item .content h3 {
  margin-bottom: 1rem;
  margin-bottom: 1rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
}
.p-service-marketing-solution .list .item .content p {
  line-height: 1.5;
}

/*250408追記（戦略推進・海外マーケティング支援：パートナーサーチ図表追加）*/
/*250408グローバルビジネス戦略サイト*/
/*250410グローバルビジネス戦略サイト（mvロゴ追加）*/
/*矢印配置修正*/
/*250410戦略推進・拡大支援*/
.p-service-globalization-partnerresearch__inner .flow {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 71%;
  margin: 0 auto;
  font-weight: bold;
  line-height: 2;
}
.p-service-globalization-partnerresearch__inner .flow .title {
  position: relative;
  padding: 22px;
  background-color: #1f2a68;
  color: #fff;
  text-align: center;
}
.p-service-globalization-partnerresearch__inner .flow .title::before {
  -webkit-clip-path: polygon(37% 53%, 0% 102%, 0 0);
  display: block;
  position: absolute;
  top: 0px;
  right: -68.5px;
  width: 69px;
  height: 76px;
  background-color: #1f2a68;
  content: "";
          clip-path: polygon(37% 53%, 0% 102%, 0 0);
}
.p-service-globalization-partnerresearch__inner .flow .content {
  height: 170px;
  margin-top: 12px;
  padding: 24px;
  background-color: #D3DBE2;
  color: #1f2a68;
}
.p-service-globalization-partnerresearch__inner .flow .content li::before {
  display: inline-block;
  position: relative;
  top: -4px;
  left: -10px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: #1f2a68;
  content: "";
}
.p-service-globalization-partnerresearch__inner .flow .content .br {
  line-height: 1.5;
}
.p-service-globalization-partnerresearch__inner li {
  max-width: 280px;
  margin-left: 20px;
}

.p-service-marketing-solution .list .item .content h3 {
  position: relative;
  transition: 0.5s;
}
.p-service-marketing-solution .list .item .content h3::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  width: 9px;
  height: 9px;
  margin: auto;
  transform: rotate(45deg);
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  content: "";
}
.p-service-marketing-solution .list .item .content h3:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.p-service-marketing-solution .list .item .logo {
  margin: 20px 0;
}
.p-service-marketing-solution .list .item .logo img {
  width: 65%;
}
.p-service-marketing-solution .list .btn {
  clear: both;
  text-align: center;
  transition: 0.2s;
}
.p-service-marketing-solution .list .btn a {
  display: inline-block;
  width: 30%;
  margin-bottom: 5.4rem;
  padding: 15px 0;
  background: #07183F;
  color: #fff;
  text-align: center;
  transition: 0.2s;
}
.p-service-marketing-solution .list .btn a:hover {
  background-color: #3669a3;
}

.p-home-mv-slide__wrap-title-logo {
  text-align: center;
}
.p-home-mv-slide__wrap-title-logo img {
  width: 40%;
}
/*240414_ロゴ調整*/
.p-service-marketing-solution .list .item .logo img {
  width: auto;
}

.p-home-mv-slide__wrap-title-logo img {
  width: auto;
}

.c-service-mv.partner .c-service-mv__inner {
  background-image: url(../img/service/bg_mv_partner.jpg);
}

.c-service-flow .lead {
  margin-bottom: 6.4rem;
  text-align: center;
}

.c-service-flow__inner {
  padding-bottom: 0;
}

.c-service-glaf__wrap {
  -ms-overflow-style: none;
  font-feature-settings: "palt";
  width: 100%;
  overflow-x: scroll;
  letter-spacing: 0.02em;
  scrollbar-width: none;
}

.c-service-glaf01 {
  display: flex;
  position: relative;
  width: 1275px;
  gap: 25px;
}

.c-service-glaf01__item {
  display: flex;
  flex-direction: column;
  width: 300px;
}

.c-service-glaf01__body {
  display: flex;
  flex: 1;
  height: 100%;
  gap: 15px;
}

.c-service-glaf01__head {
  min-height: 105px;
  margin-bottom: 15px;
  padding: 5px 0;
  background-color: #555;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}
.c-service-glaf01__head span {
  font-size: 16px;
}

.c-service-glaf01__body--title {
  -ms-writing-mode: tb-rl;
  width: 36px;
  padding-bottom: 15em;
  background-color: #555;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.4em;
  text-align: center;
  writing-mode: vertical-rl;
}
.c-service-glaf01__body--sub {
  margin-bottom: 3px;
  color: #153477;
  font-size: 18px;
}

.c-service-glaf01__body--txt b {
  display: block;
  line-height: 1.4;
}
.c-service-glaf01__body--txt p {
  -moz-text-align-last: left;
  min-height: 195px;
  margin-bottom: 10px;
  line-height: 24px;
  text-align: justify;
       text-align-last: left;
}
.c-service-glaf01__body--txt ul {
  padding: 10px;
  background-color: #ddd;
}
.c-service-glaf01__body--txt li {
  -moz-text-align-last: left;
  line-height: 1.6;
  text-align: justify;
       text-align-last: left;
}
.c-service-glaf01__body--txt li + li {
  margin-top: 25px;
}

.c-service-glaf01__aside {
  position: absolute;
  bottom: 0;
  left: 50px;
  width: 575px;
  padding: 15px 0 0;
  background-color: #fff;
}

.c-service-glaf01__aside--title {
  margin-bottom: 8px;
  padding: 0.25em 0;
  background-color: #ec822c;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.c-service-glaf01__aside p {
  padding: 15px;
  background-color: #ffeddf;
}
.c-service-glaf01__aside b {
  display: block;
  margin-bottom: 0.125em;
  color: #153477;
}

.c-service-arrow {
  position: relative;
}
.c-service-arrow::after {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 15px solid transparent;
  border-right: 0;
  border-bottom: 15px solid transparent;
  border-left: 12.5px solid #333333;
  border-style: solid;
  content: "";
}

.c-service-phase {
  margin-top: 5rem;
  padding-bottom: 12rem;
}
.c-service-phase .l-container {
  padding-top: 5rem;
  padding-right: 7rem;
  padding-left: 7rem;
  box-shadow: 0px 0px 9.6px 0.4px rgba(139, 139, 139, 0.27);
}
.c-service-phase .l-container + .l-container {
  margin-top: 5rem;
}
.c-service-phase__body {
  display: flex;
  width: 1140px;
  gap: 30px;
}
.c-service-phase__body .c-service-glaf01__body--title {
  padding-bottom: 0;
}

.c-service-phase__body--detail p {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-service-phase__body--detail b {
  display: block;
}

.c-service-phase__body--title {
  display: block;
  margin-bottom: 0.1em;
  color: #030c39;
  font-size: 20px;
}

.c-service-phase__body--sub {
  display: block;
  color: #153477;
  font-size: 18px;
}

.c-service-phase__body--detail ul {
  display: flex;
  margin-top: 30px;
}
.c-service-phase__body--detail li {
  padding: 15px;
}
.c-service-phase__body--detail li .c-service-phase__body--sub {
  margin-bottom: 0.75em;
}
.c-service-phase__body--detail li p + p {
  margin-top: 1em;
}
.c-service-phase__body--detail .indent {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.c-service-phase__body-data {
  margin-top: 25px;
}

.c-service-phase__body--list {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.c-service-phase__body--list::before {
  margin-right: 0.95em;
  content: "・";
}

.c-service-phase-arrow {
  position: relative;
}
.c-service-phase-arrow::after {
  position: absolute;
  top: 0;
  right: -42.5px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 35px solid transparent;
  border-right: 0;
  border-bottom: 35px solid transparent;
  border-left: 30px solid #999999;
  border-style: solid;
  content: "";
}

.c-service-phase-arrow-top {
  position: relative;
  margin-top: 42px;
}
.c-service-phase-arrow-top::after {
  position: absolute;
  top: -47.5px;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 30px solid #103277;
  border-right: 35px solid transparent;
  border-bottom: 0;
  border-left: 35px solid transparent;
  border-style: solid;
  content: "";
}

.c-service-phase01 ul {
  gap: 50px;
}
.c-service-phase01 li {
  background-color: #efede7;
}
.c-service-phase01 li:first-of-type {
  width: 385px;
}
.c-service-phase01 li:nth-of-type(2) {
  flex: 1;
}

.c-service-phase02 ul {
  gap: 60px;
}
.c-service-phase02 li {
  width: 320px;
  background-color: #e7eaf1;
}
.c-service-phase02 .c-service-phase-arrow::after {
  right: -47.5px;
}

.c-service-phase03 ul {
  gap: 60px;
}
.c-service-phase03 li {
  width: 320px;
  background-color: #edf2f8;
}
.c-service-phase03 .c-service-phase__body-data li {
  padding: 0;
  background-color: transparent;
}
.c-service-phase03 .c-service-phase__body-data p:has(+ figure) {
  margin-bottom: 15px;
}
.c-service-phase03 .c-service-phase__body-data b {
  margin-bottom: 0.5em;
}
.c-service-phase03 .c-service-phase-arrow::after {
  right: -47.5px;
}

.c-service-phase03-column02 {
  display: flex;
  gap: 45px;
}
.c-service-phase03-column02 > figure {
  width: 380px;
}
.c-service-phase03-column02 > p {
  flex: 1;
  font-size: 20px;
  text-align: center;
}

.p-partner-bnrs .l-container {
  padding-bottom: 0;
}

.p-partner-bnr {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: calc(100% - 10vw);
  max-width: 850px;
  min-height: 230px;
  margin: auto;
  padding: 2rem 4rem 2rem 2rem;
  border: 1px solid #111;
  background-image: url(../img/service/img_partner_bnr.png);
  background-position: center right;
  background-size: auto 100%;
}
.p-partner-bnr + .p-partner-bnr {
  margin-top: 3rem;
}

.p-partner-bnr__tag {
  display: inline-block;
  margin-bottom: 1em;
  padding: 0.5rem 1rem;
  background-color: #103277;
  color: #fff;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1;
}

.p-partner-bnr__title {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: bold;
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1.4;
}

.p-partner-bnr__link {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 14px 10px 20px;
  background-color: #111;
  color: #fff;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1;
}
.p-partner-bnr__link:after {
  display: inline-block;
  width: 18px;
  height: 5px;
  margin-left: 5px;
  background: url(https://www.tanabeconsulting.co.jp/vision/global/assets/img/ico_arrow__009.png) no-repeat center right;
  background-size: cover;
  content: "";
}

.p-partner-bnr__img {
  margin-top: -0.3rem;
}
.global-service-partner .c-service-glaf__wrap {
  overflow-x: auto !important;
  overflow-wrap: break-word;
  scrollbar-width: auto;
}
.global-service-partner .c-service-phase__body {
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.c-table--wrap-att {
  display: none;
}
.partner-search-link {
  margin-top: 2rem;
}
.partner-search-link p {
  text-align: right;
}
.partner-search-link p a {
  color: #1f2a68;
  font-weight: bold;
}
.partner-search-link p a::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  transform: rotate(45deg);
  border-top: 2px solid #1f2a68;
  border-right: 2px solid #1f2a68;
  content: "";
}

.p-service-research-global__inner {
  padding: 13.2rem 0;
}
.p-service-research-global .service-title {
  margin-bottom: 1.8rem;
}
.p-service-research-global .lead {
  margin-bottom: 6.4rem;
  text-align: center;
}
.p-service-research-global .image {
  text-align: center;
}

.p-service-research-outline__inner {
  padding: 7.7rem 0 10.7rem 0;
}
.p-service-research-outline .service-title {
  margin-bottom: 1.8rem;
}
.p-service-research-outline .lead {
  margin-bottom: 6.4rem;
  text-align: center;
}
.p-service-research-outline .image {
  margin-bottom: 6.8rem;
  text-align: center;
}
.p-service-research-outline table {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
.p-service-research-outline table thead th {
  padding: 0.5rem 2rem;
  border: solid 1px #e8ebf2;
  background: #e8ebf2;
  color: #1f2a68;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.p-service-research-outline table thead th:first-child {
  background: #1f2a68;
  color: #fff;
}
.p-service-research-outline table tbody th {
  padding: 0.5rem 2rem;
  border: solid 1px #e8ebf2;
  background: #1f2a68;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.p-service-research-outline table tbody td {
  padding: 0.5rem 2rem;
  border: solid 1px #e8ebf2;
  background: #fff;
}
.p-service-research-outline table tbody td .etc {
  display: inline-block;
  float: right;
}
.p-service-research-outline .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 7rem;
}
.p-service-research-outline .buttons .button {
  width: calc(50% - 2rem);
  max-width: 40.5rem;
  margin: 0 1rem;
}
.p-service-research-outline .buttons .button a {
  display: block;
  padding: 2.1rem 1.5rem;
  border: solid 1px #1f2a68;
  border-radius: 10rem;
  background: #fff;
  color: #1f2a68;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-service-research-outline .buttons .button a:hover {
  background-color: #e8ebf2;
}
.p-service-research-outline .buttons .button a img {
  display: inline-block;
  margin-right: 1rem;
}

.p-service-research-tablecell-adjust {
  padding-right: 2em;
}

.flow-chart-bgc-01 {
  background-color: #103277 !important;
}
.flow-chart-bgc-02 {
  background-color: #4f7fb7 !important;
}
.flow-chart-bgc-03 {
  background-color: #64509f !important;
}
.flow-chart-wrapper {
  max-width: 100%;
  margin: 0 auto 5rem;
}
.flow-chart-wrapper-service-title {
  margin-top: 6rem;
}
.flow-chart-container {
  -moz-column-gap: 2.5rem;
  display: flex;
       column-gap: 2.5rem;
}
.flow-chart-container-item {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 315px;
}
.flow-chart-container-item::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -4rem;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-right: 0;
  border-width: 12px 18px;
  border-style: solid;
  border-color: transparent;
  border-left-color: currentColor;
  content: "";
  color: #333;
  line-height: 1;
  vertical-align: middle;
}
.flow-chart-container-item:nth-of-type(4) {
  width: 225px;
}
.flow-chart-container-item:nth-of-type(4)::before {
  display: none;
}
.flow-chart-container-item:nth-of-type(4) .flow-chart-container-item-phase {
  font-size: clamp(18px, 1.046vw, 20px);
}
.flow-chart-container-item:nth-of-type(4) .flow-chart-container-item-phase::before {
  right: -4rem;
}
.flow-chart-container-item:nth-of-type(4) .flow-chart-container-item-inner {
  row-gap: 2rem;
  flex-direction: column;
}
.flow-chart-container-item-phase {
  position: relative;
  place-content: center;
  place-items: center;
  margin-bottom: 1.5rem;
  padding: 2px 0 8px;
  background-color: #030c39;
  color: #fff;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}
.flow-chart-container-item-phase::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -4rem;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-right: 0;
  border-width: 12px 18px;
  border-style: solid;
  border-color: transparent;
  border-left-color: currentColor;
  content: "";
  color: #333;
  line-height: 1;
  vertical-align: middle;
}
.flow-chart-container-item-phase span {
  font-size: clamp(18px, 1.046vw, 20px);
}
.flow-chart-container-item-inner {
  -moz-column-gap: 1rem;
  display: flex;
       column-gap: 1rem;
  flex-grow: 1;
}
.flow-chart-container-item-inner-ttl {
  -ms-writing-mode: tb-rl;
  display: grid;
  place-content: center;
  background-color: #030c39;
  color: #fff;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  letter-spacing: 1rem;
  text-orientation: upright;
      writing-mode: vertical-rl;
}
.flow-chart-container-item-inner-cont {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.flow-chart-container-item-inner-cont-ttl {
  color: #030c39;
  font-weight: bold;
  font-size: clamp(16px, 1.046vw, 18px);
}
.flow-chart-container-item-inner-cont-dtl {
  flex-grow: 1;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: #e9ecf2;
}
.flow-chart-container-item-inner-cont-dtl-ttl {
  color: #153477;
  font-weight: bold;
  font-size: clamp(16px, 1.046vw, 18px);
}
.flow-chart-container-item-inner-cont-dtl-att {
  padding-left: 1rem;
  line-height: 1.2;
  text-indent: -1.5rem;
}
.flow-chart-container-item-inner-cont-dtl p {
  margin-bottom: 2rem;
}
.flow-chart-container-item-inner-cont-dtl p:last-of-type {
  margin-bottom: 0;
}
.flow-chart-container-item-inner-item {
  display: grid;
  place-content: center;
  height: calc((100% - 6rem) / 4);
  border: 1px dashed #64509f;
  background-color: #faf9f9;
  color: #64509f;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.5;
  text-align: center;
}
.flow-chart-explanation-wrapper {
  max-width: 100%;
  margin: 0 auto 5rem;
  padding: 4rem 6rem;
  box-shadow: 0px 0px 9.6px 0.4px rgba(139, 139, 139, 0.27);
}
.flow-chart-explanation-inner-ttl {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: clamp(20px, 1.25vw, 26px);
  line-height: 1.5;
}
.flow-chart-explanation-inner-ttl span {
  display: block;
  color: #666666;
}
.flow-chart-explanation-inner-step {
  -moz-column-gap: 1.5rem;
  display: flex;
       column-gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem 0 0;
  border-bottom: 2px solid #e7e6e6;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.flow-chart-explanation-inner-step-num {
  display: grid;
  place-content: center;
  place-items: center;
  width: 70px;
  height: 70px;
  background-color: #07183f;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
.flow-chart-explanation-inner-step-num span {
  display: block;
  font-size: clamp(22px, 1.666vw, 30px);
}
.flow-chart-explanation-inner-step-ttl {
  width: calc(100% - 70px - 1.5rem);
}
.flow-chart-explanation-inner-table {
  width: 100%;
  margin-bottom: 3rem;
  border: solid 2px #07183f;
  border-collapse: collapse;
  font-size: clamp(14px, 1.666vw, 16px);
}
.flow-chart-explanation-inner-table-col1 {
  width: 240px;
}
.flow-chart-explanation-inner-table-col2 {
  width: 450px;
}
.flow-chart-explanation-inner-table th {
  padding: 0.5rem 0;
  border: solid 1px #ddd;
  background-color: #07183f;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
}
.flow-chart-explanation-inner-table td {
  padding: 1rem;
  border: solid 2px #ddd;
  vertical-align: middle;
}
.flow-chart-explanation-inner-table td:first-of-type {
  text-align: center;
}
.flow-chart-explanation-inner-table td ul li {
  padding-left: 3rem;
  text-indent: -2.3rem;
}
.flow-chart-explanation-inner-table td ul li::before {
  margin-right: 1.5rem;
  content: "・";
}
.flow-chart-explanation-inner-result {
  position: relative;
  padding-top: 5rem;
  color: #07183f;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.flow-chart-explanation-inner-result::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-bottom: 0;
  border-width: 40px 90px;
  border-style: solid;
  border-color: transparent;
  border-top-color: currentColor;
  content: "";
  color: #e9ecf2;
  line-height: 1;
  vertical-align: middle;
}

.p-service-strategy-flow {
  background: #f7f8f8;
}
.p-service-strategy-flow__inner {
  padding: 9.9rem 0 11rem 0;
}
.p-service-strategy-flow .service-title {
  margin-bottom: 6rem;
}
.p-service-strategy-flow .lead {
  margin-bottom: 6.4rem;
  text-align: center;
}
.p-service-strategy-flow .image {
  text-align: center;
}

.p-service-strategy-planning__inner {
  padding: 9.9rem 0 11rem 0;
}
.p-service-strategy-planning .service-title {
  margin-bottom: 6.3rem;
}
.p-service-strategy-planning .image {
  text-align: center;
}
.p-service-strategy-planning .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 7rem;
}
.p-service-strategy-planning .buttons .button {
  width: calc(50% - 2rem);
  max-width: 40.5rem;
  margin: 0 1rem;
}
.p-service-strategy-planning .buttons .button a {
  display: block;
  padding: 2.1rem 1.5rem;
  border: solid 1px #1f2a68;
  border-radius: 10rem;
  background: #fff;
  color: #1f2a68;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-service-strategy-planning .buttons .button a img {
  display: inline-block;
  margin-right: 1rem;
}
.p-service-strategy-planning .block {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  max-width: 93rem;
  margin: 0 auto;
  gap: 0;
}
.p-service-strategy-planning .block .item {
  width: calc(50% - 1.5rem);
  border: solid 1px #1f2a68;
}
.p-service-strategy-planning .block .item h3 {
  padding: 1rem;
  border-bottom: solid 1px #1f2a68;
  background: #e8ebf2;
  color: #1f2a68;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-service-strategy-planning .block .item .content {
  padding: 2rem;
}
.p-service-strategy-planning .block .item .content h5 {
  font-weight: bold;
}
.p-service-strategy-planning .block .item .content p {
  margin-left: 1rem;
}

.p-service-strategy-survey__inner {
  padding: 9.8rem 0 11rem 0;
}
.p-service-strategy-survey .service-title {
  margin-bottom: 1.8rem;
}
.p-service-strategy-survey .lead {
  margin-bottom: 6.4rem;
  text-align: center;
}
.p-service-strategy-survey .image {
  text-align: center;
}
.p-service-strategy-survey .block {
  display: flex;
  flex-wrap: wrap;
  max-width: 93rem;
  margin: 0 auto;
  border: solid 1px #1f2a68;
}
.p-service-strategy-survey .block h3 {
  width: 100%;
  padding: 1rem;
  background: #1f2a68;
  color: #fff;
  text-align: center;
}
.p-service-strategy-survey .block .item {
  width: 50%;
  border-right: solid 1px #1f2a68;
}
.p-service-strategy-survey .block .item:last-child {
  border-right: none;
}
.p-service-strategy-survey .block .item h4 {
  padding: 1rem;
  background: #e8ebf2;
  color: #1f2a68;
  text-align: center;
}
.p-service-strategy-survey .block .item .content {
  padding: 2rem;
  border-top: solid 1px #1f2a68;
}
.p-service-strategy-survey .block .item .content h5 {
  margin-bottom: 1rem;
  color: #1f2a68;
}
.p-service-strategy-survey .block .item .content ol {
  margin-left: 1.5rem;
  font-size: clamp(13px, 0.78vw, 15px);
  list-style: decimal;
}

.p-service-top-anchor__inner {
  padding: 9.1rem 3.8rem 9.6rem 3.9rem;
}
.p-service-top-anchor ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.p-service-top-anchor ul li {
  width: calc(25% - 1rem);
  max-width: 27rem;
  height: 9.4rem;
  border: none;
}
.p-service-top-anchor ul a {
  display: block;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  background: #153378;
  color: #fff;
  text-align: center;
}
.p-service-top-anchor ul a::before {
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 0.9rem);
  width: 1.8rem;
  height: 1rem;
  background: url(../img/service/icon_top_anchor.png);
  content: "";
  transition: 0.3s;
}
.p-service-top-anchor ul a:hover::before {
  bottom: 0.5rem;
}

.p-service-top-content {
  position: relative;
}
.p-service-top-content::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 25rem;
  background-position: top right;
  background-size: auto 25rem;
  background-repeat: no-repeat;
  background-color: #07183f;
  content: "";
}
.p-service-top-content#vision::before {
  background-image: url(../img/service/bg_top_content_01.jpg);
}
.p-service-top-content#research::before {
  background-image: url(../img/service/bg_top_content_02.jpg);
}
.p-service-top-content#globalization::before {
  background-image: url(../img/service/bg_top_content_03.jpg);
}
.p-service-top-content#development::before {
  background-image: url(../img/service/bg_top_content_04.jpg);
}
.p-service-top-content__inner {
  padding: 0 4rem;
}
.p-service-top-content h2 {
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: left;
  height: 25rem;
  margin-bottom: 7rem;
  color: #fff;
  font-size: clamp(28px, 2.083vw, 40px);
}
.p-service-top-content__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.p-service-top-content__item {
  width: calc(50% - 1rem);
  max-width: 57rem;
  margin-bottom: 6.1rem;
}
.p-service-top-content__item .image {
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.p-service-top-content__item .image img {
  transition: 0.5s;
}
.p-service-top-content__item a {
  opacity: 1;
}
.p-service-top-content__item a h3::after {
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 0;
  width: 47px;
  height: 7px;
  background: url(../img/service/icon_top_content.png) no-repeat;
  background-size: contain;
  content: "";
  transition: 0.5s;
}
.p-service-top-content__item a:hover .image img {
  scale: 1.2;
}
.p-service-top-content__item a:hover h3::after {
  right: -10px;
}
.p-service-top-content__item h3 {
  position: relative;
  margin-bottom: 0.3rem;
  padding-right: 4.5rem;
  color: #1f2a68;
  line-height: 1.5;
}
.p-service-top-gaiyou {
  background: #f7f8f8;
}
.p-service-top-gaiyou__inner {
  padding: 8.8rem 4rem 10rem 4rem;
}
.p-service-top-gaiyou h2 {
  margin-bottom: 3.7rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-service-top-gaiyou h3 {
  margin-bottom: 1.3rem;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-service-top-gaiyou .image img {
  width: 100%;
  height: auto;
}

.p-service-top-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  background: url(../img/service/bg_top_title.jpg) 50% 50%/cover no-repeat;
}
.p-service-top-title h1 {
  text-align: center;
}
.p-service-top-title h1 .en {
  display: block;
  color: #fff;
  font-weight: normal;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 2.4;
  font-family: "Oswald", sans-serif;
}
.p-service-top-title h1 .jp {
  display: block;
  color: #fff;
  font-size: 40px;
}
.p-service-top-title__inner {
  padding: 0;
}

.p-service-vision-flow__inner {
  padding: 9.9rem 0 11.09rem 0;
}
.p-service-vision-flow .service-title {
  margin-bottom: 2rem;
}
.p-service-vision-flow .lead {
  margin-bottom: 6.4rem;
  line-height: 1.7;
  text-align: center;
}
.p-service-vision-flow .image {
  text-align: center;
}

.p-service-vision-keieirinen {
  position: relative;
}
.p-service-vision-keieirinen em {
  font-weight: bold;
}
.p-service-vision-keieirinen__inner {
  padding: 5.9rem 0 8.9rem 0;
}
.p-service-vision-keieirinen h2 {
  margin-bottom: 5.7rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(24px, 1.666vw, 32px);
  text-align: center;
}
.p-service-vision-keieirinen__wrap {
  overflow: hidden;
}
.p-service-vision-keieirinen__wrap .image {
  max-width: 45%;
  margin-bottom: 1rem;
  margin-left: 5rem;
  float: right;
}
.p-service-vision-keieirinen__wrap .content {
  margin-top: 3.1rem;
}
.p-service-vision-keieirinen__wrap .content p {
  margin-bottom: 2rem;
}

.p-service-vision-nagare {
  position: relative;
}
.p-service-vision-nagare__inner {
  padding: 9.4rem 0;
}
.p-service-vision-nagare__inner:before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.1rem;
  height: 5rem;
  background: #1f2a68;
  content: "";
}
.p-service-vision-nagare h2 {
  margin-bottom: 2.6rem;
  color: #1f2a68;
  font-weight: bold;
  font-size: clamp(24px, 1.666vw, 32px);
  text-align: center;
}
.p-service-vision-nagare__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-service-vision-nagare__item {
  width: calc(50% - 2rem);
}
.p-service-vision-nagare__item h3 {
  margin-bottom: 1.5rem;
  color: #07183f;
  text-align: center;
}
.p-service-vision-nagare__item .step {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-service-vision-nagare__item .step li {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6rem;
  margin-bottom: 2.7rem;
  border: solid 1px #07183f;
  background: #e9edf6;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.2;
  text-align: center;
}
.p-service-vision-nagare__item .step li .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  font-family: "Oswald", sans-serif;
}
.p-service-vision-nagare__item .step li.active {
  background: #07183f;
  color: #fff;
}
.p-service-vision-nagare__item .step li:after {
  display: block;
  position: absolute;
  top: -1.9rem;
  left: calc(50% - 1.5rem);
  width: 3rem;
  height: 1.2rem;
  background: url(../img/service/icon_nagare.png) 50% 50%/100% auto no-repeat;
  content: "";
}
.p-service-vision-nagare__item .step li:first-child:after {
  content: none;
}
.p-service-vision-nagare__item .step li.half {
  width: calc(50% - 1rem);
}
.p-service-vision-nagare__item .step li.half:before {
  content: none;
}

.p-service-vision-onayami .l-container {
  padding: 9.8rem 0 11.5rem 0;
}
.p-service-vision-onayami h2 {
  margin-bottom: 7.8rem;
}

.p-webinar-anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 5rem;
  gap: 3%;
}
.p-webinar-anchor li {
  width: 31%;
}
.p-webinar-anchor li a {
  display: block;
  position: relative;
  padding: 2rem 1rem 4rem 1rem;
  background-color: #1f2a68;
  color: #FFF;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-webinar-anchor li a::after {
  display: block;
  position: absolute;
  bottom: 15px;
  left: calc(50% - 9px);
  width: 18px;
  height: 10px;
  background: url(../img/ico_arrow__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.5s;
}
.p-webinar-anchor li a:hover::after {
  bottom: 5px;
}
.p-webinar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 5rem;
  gap: 0;
}
.p-webinar-list li {
  width: 48%;
  margin-bottom: 5%;
}
.p-webinar-list li.bnr_comingsoon {
  padding: 7rem 4rem;
  background: url(../img/webinar/bg_bnr__001.jpg) no-repeat 0 0;
  background-size: cover;
  color: #FFF;
  font-weight: bold;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  text-align: center;
}
.p-webinar-list li a {
  display: block;
  position: relative;
  padding: 5rem;
  overflow: hidden;
}
.p-webinar-list li figure {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.p-webinar-list li p {
  margin-top: 1rem;
}
.p-webinar-list__ico {
  display: inline-block;
  z-index: 1;
  position: relative;
  margin-bottom: 1rem;
  padding: 5px 15px;
  background-color: #FFF;
  color: #1f2a68;
  line-height: 1;
}
.p-webinar-list__ttl {
  z-index: 1;
  position: relative;
  color: #FFF;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-webinar-list__bg01 {
  background: url(../img/webinar/bg_bnr__002.jpg) no-repeat center center;
  background-size: cover;
}
.p-webinar-list__bg02 {
  background: url(../img/webinar/bg_bnr__003.jpg) no-repeat center center;
  background-size: cover;
}
.p-webinar-list__bg03 {
  background: url(../img/webinar/bg_bnr__004.jpg) no-repeat center center;
  background-size: cover;
}
.p-webinar-list__bg04 {
  background: url(../img/webinar/bg_bnr__005.jpg) no-repeat center center;
  background-size: cover;
}

.p-webinar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 5rem;
  gap: 4%;
}
.p-webinar-list li {
  display: flex;
  width: 30.6666666667%;
  margin-bottom: 5%;
}
.p-webinar-list li a {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.p-webinar-list li figure {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.p-webinar-list li p {
  margin-top: 1rem;
}
.p-webinar-list li.bnr_comingsoon {
  padding: 7rem 4rem;
  background: url(../img/webinar/bg_bnr__001.jpg) no-repeat 0 0;
  background-size: cover;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  text-align: center;
}
.p-webinar-list li.bnr_comingsoon.p-webinar-bnr_comingsoon {
  display: none;
}
.p-webinar-list li.bnr_comingsoon.p-venue-bnr_comingsoon {
  display: none;
}

.p-webinar-list__ico {
  display: inline-block;
  z-index: 1;
  position: relative;
  margin: 2rem 0 1rem;
  padding: 5px 15px;
  background-color: #1f2a68;
  color: #fff;
  line-height: 1;
}

.p-webinar-list__ttl {
  z-index: 1;
  position: relative;
  color: #333;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-webinar-list__bg01 {
  background: url(../img/webinar/bg_bnr__002.jpg) no-repeat center center;
  background-size: cover;
}

.p-webinar-list__bg02 {
  background: url(../img/webinar/bg_bnr__003.jpg) no-repeat center center;
  background-size: cover;
}

/* 251022_トップウェビナー表示変更 */
.p-home-webinar-list-3col .topconts {
  gap: 3%;
}
.p-home-webinar-list-3col .topconts li {
  width: 31.3333333333%;
}
.p-home-webinar-list-3col .topconts li a {
  flex-direction: column;
}
.p-home-webinar-list-3col .topconts li figure {
  width: 100%;
  height: 225px;
}
.p-home-webinar-list-3col .topconts li figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-webinar-list-3col .topconts li .p-home-webinar-list__wrap {
  width: 100%;
  padding: 2.8rem 2.8rem 2rem 2.8rem;
}
.p-home-webinar-list-3col .topconts li .p-home-webinar-list__ico {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: clamp(14px, 1vw, 16px);
}
.p-home-webinar-list-3col .topconts li .p-home-webinar-list__ttl {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}
.p-home-webinar-list-3col .topconts li .p-home-event-list__date {
  margin-top: 1rem;
  font-size: clamp(13px, 1vw, 16px);
}
.u-mt--10 {
  margin-top: 1rem;
}

.u-mb--10 {
  margin-bottom: 1rem;
}

.u-mr--10 {
  margin-right: 1rem;
}

.u-ml--10 {
  margin-left: 1rem;
}

.u-mt--20 {
  margin-top: 2rem;
}

.u-mb--20 {
  margin-bottom: 2rem;
}

.u-mr--20 {
  margin-right: 2rem;
}

.u-ml--20 {
  margin-left: 2rem;
}

.u-mt--30 {
  margin-top: 3rem;
}

.u-mb--30 {
  margin-bottom: 3rem;
}

.u-mr--30 {
  margin-right: 3rem;
}

.u-ml--30 {
  margin-left: 3rem;
}

.u-mt--40 {
  margin-top: 4rem;
}

.u-mb--40 {
  margin-bottom: 4rem;
}

.u-mr--40 {
  margin-right: 4rem;
}

.u-ml--40 {
  margin-left: 4rem;
}

.u-mt--50 {
  margin-top: 5rem;
}

.u-mb--50 {
  margin-bottom: 5rem;
}

.u-mr--50 {
  margin-right: 5rem;
}

.u-ml--50 {
  margin-left: 5rem;
}

.u-mt--60 {
  margin-top: 6rem;
}

.u-mb--60 {
  margin-bottom: 6rem;
}

.u-mr--60 {
  margin-right: 6rem;
}

.u-ml--60 {
  margin-left: 6rem;
}

.u-mt--70 {
  margin-top: 7rem;
}

.u-mb--70 {
  margin-bottom: 7rem;
}

.u-mr--70 {
  margin-right: 7rem;
}

.u-ml--70 {
  margin-left: 7rem;
}

.u-mt--80 {
  margin-top: 8rem;
}

.u-mb--80 {
  margin-bottom: 8rem;
}

.u-mr--80 {
  margin-right: 8rem;
}

.u-ml--80 {
  margin-left: 8rem;
}

.u-mt--90 {
  margin-top: 9rem;
}

.u-mb--90 {
  margin-bottom: 9rem;
}

.u-mr--90 {
  margin-right: 9rem;
}

.u-ml--90 {
  margin-left: 9rem;
}

.u-mt--100 {
  margin-top: 10rem;
}

.u-mb--100 {
  margin-bottom: 10rem;
}

.u-mr--100 {
  margin-right: 10rem;
}

.u-ml--100 {
  margin-left: 10rem;
}

.u-mt--110 {
  margin-top: 11rem;
}

.u-mb--110 {
  margin-bottom: 11rem;
}

.u-mr--110 {
  margin-right: 11rem;
}

.u-ml--110 {
  margin-left: 11rem;
}

.u-mt--120 {
  margin-top: 12rem;
}

.u-mb--120 {
  margin-bottom: 12rem;
}

.u-mr--120 {
  margin-right: 12rem;
}

.u-ml--120 {
  margin-left: 12rem;
}

.u-mt--10 {
  margin-top: 1rem !important;
}

.u-mb--10 {
  margin-bottom: 1rem !important;
}

.u-mr--10 {
  margin-right: 1rem;
}

.u-ml--10 {
  margin-left: 1rem;
}

.u-mt--20 {
  margin-top: 2rem !important;
}

.u-mb--20 {
  margin-bottom: 2rem !important;
}

.u-mr--20 {
  margin-right: 2rem;
}

.u-ml--20 {
  margin-left: 2rem;
}

.u-mt--30 {
  margin-top: 3rem !important;
}

.u-mb--30 {
  margin-bottom: 3rem !important;
}

.u-mr--30 {
  margin-right: 3rem;
}

.u-ml--30 {
  margin-left: 3rem;
}

.u-mt--40 {
  margin-top: 4rem !important;
}

.u-mb--40 {
  margin-bottom: 4rem !important;
}

.u-mr--40 {
  margin-right: 4rem;
}

.u-ml--40 {
  margin-left: 4rem;
}

.u-mt--50 {
  margin-top: 5rem !important;
}

.u-mb--50 {
  margin-bottom: 5rem !important;
}

.u-mr--50 {
  margin-right: 5rem;
}

.u-ml--50 {
  margin-left: 5rem;
}

.u-mt--60 {
  margin-top: 6rem !important;
}

.u-mb--60 {
  margin-bottom: 6rem !important;
}

.u-mr--60 {
  margin-right: 6rem;
}

.u-ml--60 {
  margin-left: 6rem;
}

.u-mt--70 {
  margin-top: 7rem !important;
}

.u-mb--70 {
  margin-bottom: 7rem !important;
}

.u-mr--70 {
  margin-right: 7rem;
}

.u-ml--70 {
  margin-left: 7rem;
}

.u-mt--80 {
  margin-top: 8rem !important;
}

.u-mb--80 {
  margin-bottom: 8rem !important;
}

.u-mr--80 {
  margin-right: 8rem;
}

.u-ml--80 {
  margin-left: 8rem;
}

.u-mt--90 {
  margin-top: 9rem !important;
}

.u-mb--90 {
  margin-bottom: 9rem !important;
}

.u-mr--90 {
  margin-right: 9rem;
}

.u-ml--90 {
  margin-left: 9rem;
}

.u-mt--100 {
  margin-top: 10rem !important;
}

.u-mb--100 {
  margin-bottom: 10rem !important;
}

.u-mr--100 {
  margin-right: 10rem;
}

.u-ml--100 {
  margin-left: 10rem;
}

.u-mt--110 {
  margin-top: 11rem !important;
}

.u-mb--110 {
  margin-bottom: 11rem !important;
}

.u-mr--110 {
  margin-right: 11rem;
}

.u-ml--110 {
  margin-left: 11rem;
}

.u-mt--120 {
  margin-top: 12rem !important;
}

.u-mb--120 {
  margin-bottom: 12rem !important;
}

.u-mr--120 {
  margin-right: 12rem;
}

.u-ml--120 {
  margin-left: 12rem;
}

.u-margin--auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

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

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

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

.u-sp {
  display: none;
}
.u-pc-Only {
  display: block;
}

.u-pctablet-Only {
  display: block;
}

.u-tabletsp-Only {
  display: none;
}

.u-sp-Only {
  display: none;
}

.u-sp {
  display: none;
}
/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: none !important;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: none !important;
  text-align: center;
}

.lity-wrap:before {
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  content: "";
  vertical-align: middle;
}

.lity-loader {
  z-index: 9991;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -0.8em;
  color: #fff;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  display: inline-block;
  z-index: 9992;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
  text-align: left;
  vertical-align: middle;
  white-space: normal;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content, .lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  content: "";
}

.lity-close {
  -webkit-appearance: none;
  z-index: 9994;
  position: fixed;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  box-shadow: none;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  line-height: 35px;
  font-family: Arial, Baskerville, monospace;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.lity-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  box-shadow: none;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  line-height: 35px;
  font-family: Arial, Baskerville, monospace;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  display: block;
  max-width: 100%;
  border: 0;
  line-height: 0;
}

.lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  transform: translateZ(0);
  pointer-events: auto;
}

.lity-iframe-container iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-hide {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/../../img/slick.woff") format("woff"), url("./fonts/../../img/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-family: "slick";
}
/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  border: none;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-size: 20px;
  line-height: 1;
  font-family: "slick";
  opacity: 1;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  /*margin-bottom: 30px;*/
}

.slick-dots {
  display: block;
  position: absolute;
  bottom: -25px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  color: black;
  font-size: 6px;
  line-height: 20px;
  font-family: "slick";
  text-align: center;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 1;
}

/* Slider */
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
  float: left;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.js-slide {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.js-slide.slick-initialized {
  opacity: 1;
}

@media screen and (min-width: 769px) {
  a:hover, a:active {
    text-decoration: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .l-container.l-container-servicelist {
    padding-top: 3vw !important;
  }
  .c-btn--line {
    min-width: 80%;
  }
  .c-catlink dl dt {
    width: 100%;
  }
  *[class^=c-img-box] img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 2rem;
    float: none;
  }
  .c-img-box--l__item, .c-img-box--l img {
    width: 100%;
    max-width: initial;
    margin-right: 0;
  }
  .c-img-box--r__item, .c-img-box--r img {
    width: 100%;
    max-width: initial;
    margin-right: 0;
  }
  .c-img-box--half__item {
    width: 100%;
    max-width: initial;
    margin-right: 0;
  }
  .c-service-case .list ul li {
    width: 100%;
    max-width: unset;
    margin-bottom: 5rem;
  }
  .c-service-case .list ul .image {
    text-align: center;
  }
  .c-service-footer-service ul.list > li {
    width: 100%;
    max-width: unset;
    margin-bottom: 5rem;
  }
  .c-service-footer-service ul.list .image img {
    width: 100%;
    height: auto;
  }
  .c-service-mv::after {
    z-index: 0;
    position: absolute;
    bottom: 5rem;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f2a68;
    content: "";
    opacity: 0.6;
  }
  .c-service-mv.globalization .c-service-mv__inner .c-service-mv__content {
    margin-top: -5rem;
  }
  .c-service-mv__content .sub {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .c-service-mv__content h1 {
    font-size: clamp(25px, 1.875vw, 36px);
  }
  .c-service-mv__content .lead {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .c-service-mv__content .lead br {
    display: none;
  }
  .c-service-mv .breadcrumb {
    bottom: 10px;
    left: 5vw;
    justify-content: left;
  }
  .c-service-mv .breadcrumb li {
    font-size: clamp(10px, 0.625vw, 12px);
  }
  .c-service-mv .buttons {
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem;
  }
  .c-service-mv .buttons .button {
    width: 100%;
  }
  .c-service-mv .buttons .button a {
    padding: 1rem 1.5rem;
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .c-service-onayami li {
    width: 100%;
    max-width: unset;
    margin-bottom: 5rem;
  }
  .c-service-partner li .image {
    width: 100%;
    margin-bottom: 3rem;
    text-align: center;
  }
  .c-service-partner li .content {
    width: 100%;
  }
  .c-service-point li {
    width: 100%;
    max-width: unset;
    margin-bottom: 5rem;
  }
  .service-title .en {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .service-title .jp {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-about .c-title-base__jp {
    font-size: clamp(18px, 1.458vw, 28px);
  }
  .p-about__text {
    font-size: clamp(14px, 0.8333vw, 16px);
    text-align: left;
  }
  .p-about__text br {
    display: none;
  }
  .p-about-stats__list__item {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .p-breadcrumb ul {
    justify-content: flex-start;
  }
  .c-list-c3 ul li {
    width: 48.4%;
  }
  .p-contact-form {
    padding: 2rem;
  }
  .p-home-mv .l-container {
    height: calc(95vh - 99.906px);
  }
  .p-home-mv h1 {
    margin-bottom: 4rem;
    font-size: clamp(32px, 2.5vw, 48px);
  }
  .p-home-mv h1 span {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-home-mv h2 {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-home-mv-slide {
    height: calc(100vh - 99.906px);
  }
  .p-home-mv-slide__img {
    left: -150vw;
    width: 450vw;
  }
  .p-home-mv-slide__btn {
    margin-top: -6rem;
    margin-bottom: 2rem;
  }
  .p-home-mv-slide__next {
    top: inherit;
    bottom: 2rem;
    width: 52px;
    height: 52px;
  }
  .p-home-mv-slide__prev {
    top: inherit;
    bottom: 2rem;
    width: 52px;
    height: 52px;
  }
  .p-home-feature__item {
    width: 100%;
  }
  .p-home-feature figure {
    width: 100%;
  }
  .p-home-feature figure img {
    position: inherit;
    right: inherit;
    left: inherit;
    width: 100%;
    min-width: 100%;
    height: auto;
  }
  .p-home-feature .right figure {
    order: 1;
  }
  .p-home-feature .right figure img {
    position: inherit;
    right: inherit;
    left: inherit;
    width: 100%;
    height: auto;
  }
  .p-home-service__h2 {
    font-size: clamp(18px, 1.458vw, 28px);
  }
  .p-home-service-list__list2 .p-home-service-list__item {
    width: 100%;
  }
  .p-home-service-list__list2 .p-home-service-list__item:not(:first-of-type) {
    margin-top: 4rem;
  }
  .p-home-service-list__ttl {
    width: 100%;
    padding-top: 2rem;
    text-align: center;
  }
  .p-home-service-list__l {
    width: 100%;
    margin-top: 2rem;
    border-top: 1px solid #a4a7b7;
    border-left: none;
  }
  .p-home-service-list-wrap1 {
    width: 100%;
  }
  .p-home-service-list-wrap2 {
    width: 100%;
  }
  .p-home-service-list-wrap2 .p-home-service-list__ttl {
    padding-top: 0;
    text-align: left;
  }
  .p-home-report-list li {
    width: 100%;
  }
  .p-home-column__ttlarea {
    width: 100%;
  }
  .p-home-column-list {
    width: 100%;
  }
  .p-home-column-list ul li {
    width: 100%;
  }
  .p-home-document-list ul li {
    width: 100%;
  }
  .p-home-document-list ul li figure {
    height: auto;
  }
  .p-home-document-list ul li figure img {
    width: 50%;
  }
  .p-home-webinar-list ul li {
    width: 100%;
  }
  .p-pickup {
    padding: 80px 0;
  }
  .p-pickup-list__item {
    width: 100%;
  }
  .p-pickup-list__item:first-child {
    margin-bottom: 1.5em;
  }
  .p-pickup-list__item__content__name {
    font-size: 158%;
  }
  .p-pickup-list__item__lnk {
    padding: 0.85714em;
    font-size: 100%;
  }
  .p-pickup-list__item__lnk::after {
    font-size: 143%;
  }
  .p-service-development-curriculum .scroll {
    overflow-x: scroll;
  }
  .p-service-development-curriculum table {
    width: 80rem;
  }
  .p-service-development-curriculum .buttons .button {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-service-development-issue .image {
    width: 100%;
  }
  .p-service-development-usage li {
    width: 100%;
    max-width: unset;
    margin-bottom: 5rem;
  }
  .p-service-globalization-greenfield .buttons .button {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-service-management-perspective-box {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
  }
  .p-service-management-perspective-box_01 {
    width: 100%;
  }
  .p-service-management-perspective-box_02 {
    width: 10%;
    margin: auto;
  }
  .p-service-management-perspective-box_03 {
    width: 100%;
  }
  .p-service-marketing-solution .block-wrap .block {
    width: 100%;
  }
  .p-service-marketing-solution .block-wrap .image {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: unset;
    margin-top: 4rem;
    text-align: center;
  }
  .p-service-marketing-solution .block-wrap .image li {
    width: calc(50% - 1rem);
  }
  .p-service-marketing-solution .list .item .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
  .p-service-marketing-solution .list .item .content {
    width: 100%;
  }
  .p-service-globalization-partnerresearch__inner .flow {
    display: flex;
    row-gap: 60px;
    flex-direction: column;
    width: 100%;
  }
  .p-service-globalization-partnerresearch__inner .flow .title {
    height: auto;
  }
  .p-service-globalization-partnerresearch__inner .flow .title::before {
    content: none;
  }
  .p-service-globalization-partnerresearch__inner .flow .content {
    position: relative;
  }
  .p-service-globalization-partnerresearch__inner .flow .content::before {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    position: absolute;
    bottom: -45px;
    left: 50%;
    width: 0 !important;
    height: 0 !important;
    margin: 0 auto;
    transform: translateX(-50%);
    border-top: 30px solid black;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    content: "";
  }
  .p-service-globalization-partnerresearch__inner .flow #before_none::before {
    content: none;
  }
  .p-service-globalization-partnerresearch__inner li {
    width: 90%;
    max-width: none;
    margin-left: none !important;
  }

  .p-service-marketing-solution .list .item .content h3::before {
    left: 87%;
  }
  .p-service-marketing-solution .list .btn a {
    width: 88%;
  }
  .p-service-research-outline .scroll {
    overflow-x: scroll;
  }
  .p-service-research-outline table {
    width: 80rem;
  }
  .p-service-research-outline .buttons .button {
    width: 100%;
    margin-bottom: 2rem;
  }
  .flow-chart-container {
    row-gap: 2rem;
    flex-direction: column;
  }
  .flow-chart-container-item {
    width: 100% !important;
  }
  .flow-chart-container-item::before {
    display: block;
    position: static;
    margin: 0 auto;
    transform: rotate(90deg);
  }
  .flow-chart-container-item:nth-of-type(1)::before {
    display: none;
  }
  .flow-chart-container-item:nth-of-type(4)::before {
    display: block;
  }
  .flow-chart-container-item-phase::before {
    display: none;
  }
  .flow-chart-container-item-inner-item {
    padding: 1rem;
  }
  .p-service-strategy-planning .buttons .button {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-service-strategy-planning .block .item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-service-strategy-survey .block .item {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #1f2a68;
  }
  .p-service-strategy-survey .block .item:last-child {
    border-bottom: none;
  }
  .p-service-top-anchor ul li {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .p-service-top-content::before {
    height: 15rem;
    background-size: auto 15rem;
  }
  .p-service-top-content__inner {
    padding: 0 4rem;
  }
  .p-service-top-content h2 {
    height: 15rem;
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-service-top-content__wrap {
    margin-bottom: 0;
  }
  .p-service-top-content__item {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 5rem;
  }
  .p-service-vision-keieirinen__wrap .image {
    max-width: 100%;
    margin-bottom: 0;
    margin-left: 0;
    float: none;
    text-align: center;
  }
  .p-webinar-anchor li {
    width: 100%;
    margin-bottom: 15px;
  }
  .p-webinar-list li {
    width: 100%;
  }
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  br.u-sp {
    display: inline;
  }
  .u-pc-Only {
    display: none;
  }
  .u-pctablet-Only {
    display: block;
  }
  .u-tabletsp-Only {
    display: block;
  }
  .u-sp-Only {
    display: none;
  }
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  br.u-sp {
    display: inline;
  }
}

@media screen and (max-width: 1280px) {
  .l-container--p0, .l-container {
    width: 100%;
  }
  .l-container {
    box-sizing: border-box;
    padding: 7rem 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .l-container--p0 {
    box-sizing: border-box;
    padding: 3rem 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .c-consultant-list__btn {
    bottom: 0;
  }
  .section-title .en {
    font-size: 1.6rem;
  }
  .section-title .jp {
    font-size: 2rem;
  }
  .c-service-case .maker .head {
    width: 20%;
  }
  .c-service-case .maker .head h3 .name {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .c-service-case .maker .head h3 .taisyou {
    font-size: clamp(10px, 0.625vw, 12px);
  }
  .c-service-case .maker .content {
    width: 40%;
    padding: 1.4rem 3rem 1.4rem 3rem;
  }
  .c-service-mv__inner {
    padding: 0 5vw;
  }
  .p-home-service-list__list1 {
    height: 170px;
  }
  .p-home-service-list__list2 {
    height: 170px;
  }
  .p-home-service-list__num {
    width: 80px;
    height: 80px;
    margin: auto;
  }
  .p-home-service-list__num__step {
    padding: 0.5rem 0 0.1rem 0;
  }
  .p-home-service-list__num img {
    height: 32px;
  }
  .p-pickup-list {
    padding: 0;
  }
  .c-service-phase {
    padding-right: 5vw;
    padding-bottom: calc(5rem + 5vw);
    padding-left: 5vw;
  }
  .c-service-phase .l-container {
    padding: 2rem;
  }
  .c-table--wrap-att {
    display: block;
  }
  .p-service-top-content__inner.l-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .p-service-vision-nagare__item {
    width: 100%;
  }
  .p-service-vision-onayami .l-container {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

@media screen and (max-width: 1280px) and (max-width: 768px) {
  .l-container {
    padding: 4rem 5vw;
  }
  .c-consultant-list__btn {
    bottom: -15px;
  }
  .c-service-case .maker .head {
    width: 100%;
    padding: 2rem;
  }
  .c-service-case .maker .content {
    width: 100%;
    padding: 3rem;
    border-bottom: solid 1px #edf2f8;
  }
  .p-home-service-list__list1 {
    height: auto;
  }
  .p-home-service-list__list2 {
    height: auto;
    gap: 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 1em;
  }
  .l-footer__inner {
    flex-direction: column;
  }
  .l-footer__inner__logo {
    margin-right: 0;
  }
  .l-footer__inner__logo {
    max-width: 50%;
  }
  .l-footer__inner__right {
    flex-direction: column;
  }
  .l-footer__inner__right #copyright {
    padding-left: 0;
  }
  .l-footer__menu {
    margin-block: 0.2em 0.5em;
  }
  .l-footer__menu__item {
    margin-right: 1em;
  }
  .l-footer__menu__item:last-child {
    margin-right: 0;
  }
  .l-footer__menu__item:not(:last-child) {
    padding-right: 1em;
  }
  .l-footer__menu__item a {
    font-size: 90%;
  }
  .l-header__inner__logo {
    padding: 0 0 0 0.5em;
  }
  .l-header__inner__logo {
    max-width: 45%;
  }

  .l-header__inner__logo img {
    max-height: 3.91989em;
  }
  .l-header__inner__right {
    visibility: hidden;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    padding-top: 8em;
    transform: translateY(-500%);
    background-color: #fff;
    opacity: 0;
    transition: all 0.4s ease;
  }
  .l-header__inner__btn-menu {
    display: flex !important;
  }
  .l-header__inner #inp-menu-sp:checked ~ .l-header__inner__right {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }
  .l-header__menu {
    flex-direction: column;
    justify-content: space-between;
    width: 90%;
  }
  .l-header__menu__item {
    margin-right: 0;
    margin-bottom: 2em;
  }
  .l-header__menu__item a {
    font-size: 90%;
  }
  .l-header__btns {
    height: auto;
  }
  .l-header__btns {
    width: 100%;
  }
  .l-header__btns__item {
    width: 33.3333333333%;
  }
  .l-header__btns__item a {
    width: 100%;
    padding: 0.5em 1em;
    font-size: 90%;
  }
  .c-consultant {
    padding: 3em 0;
  }
  .c-consultant-list {
    margin: -1em -0.5em;
  }
  .c-consultant-list__item {
    width: 50%;
  }
  .c-consultant-list__item {
    padding: 1em 0.5em;
  }
  .c-consultant-list__item a {
    padding: 0.5em 0.5em 3em 0.5em;
  }
  .c-consultant-list__item a .c-txt-base--small {
    font-size: 90% !important;
  }
  .c-consultant-list__item a::before {
    left: calc(50% - 4em);
    width: 8em;
    height: 8em;
  }
  .c-consultant-list__item__img {
    width: 8em;
  }
  .c-consultant-list__item__img {
    height: 8em;
  }
  .c-consultant-list__item__name {
    font-size: 100%;
  }
  .c-consultant .modals__item__inner {
    width: 91%;
  }
  .c-consultant .modals__item__inner {
    padding: 1em;
  }
  .c-consultant .modals__item__close {
    width: 2.13812em;
  }
  .c-consultant .modals__item__close {
    height: 2.13812em;
  }
  .c-consultant .modals__item__close {
    z-index: 1;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    right: 0;
    margin-inline: 0 auto;
  }
  .c-consultant .modals__item__header {
    margin-bottom: 1em;
  }
  .c-consultant .modals__item__header__img {
    width: 100%;
  }
  .c-consultant .modals__item__header__img {
    margin-bottom: 1.5em;
  }
  .c-consultant .modals__item__header__info {
    width: 100%;
  }
  .c-consultant .modals__item__header__info {
    padding-left: 0;
  }
  .c-consultant .modals__item__body {
    padding: 1em;
  }
  .c-consultant .modals__item__body table tr th {
    display: block;
    /*padding-right: .5em;*/
    width: 100%;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-right: none;
    border-bottom: 1px solid #CCC;
    font-weight: bold;
  }
  .c-consultant .modals__item__body table tr td {
    display: block;
    width: 100%;
    padding-left: 0.5em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .l-footer__inner__logo {
    max-width: 20%;
  }
  .c-consultant {
    padding: 4em 0;
  }
  .c-consultant-list__item {
    width: 50%;
  }
  .c-consultant-list__item {
    padding: 1em 1.28287em;
  }
  .c-consultant-list__item a {
    padding: 1em;
  }
  .c-consultant-list__item__name {
    font-size: 120%;
  }
  .c-consultant .modals__item__inner {
    width: 94%;
  }
  .c-consultant .modals__item__inner {
    padding: 1em;
  }
  .c-consultant .modals__item__close {
    width: 2.13812em;
  }
  .c-consultant .modals__item__close {
    height: 2.13812em;
  }
  .c-consultant .modals__item__close {
    top: 1em;
    right: 1em;
  }
  .c-consultant .modals__item__header {
    margin-bottom: 1.5em;
  }
  .c-consultant .modals__item__header__info {
    padding-left: 1.42542em;
  }
  .c-consultant .modals__item__body {
    padding: 1em;
  }
  .c-consultant .modals__item__body table tr th {
    padding-right: 1em;
  }
  .c-consultant .modals__item__body table tr td {
    padding-left: 1em;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .l-footer__inner__logo {
    max-width: 20%;
  }
  .l-header__inner__logo {
    /*max-width:20%*/
  }
  .l-header__menu__item {
    margin-right: 2em;
  }
  .l-header__menu__item a {
    font-size: 100%;
  }
  .l-header__btns__item a {
    min-width: 8em;
    padding: 0.5em;
    font-size: 100%;
  }
  .c-consultant-list {
    margin-inline: -0.64144em;
  }
  .c-consultant-list__item {
    padding-inline: 0.64144em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 983px) {
  .l-footer__menu__item {
    margin-right: 1em;
  }
  .l-footer__menu__item:not(:last-child) {
    padding-right: 1em;
  }
  .l-footer__menu__item a {
    font-size: 90%;
  }
  .l-header__inner__logo {
    max-width: 30%;
  }
  .l-header__inner__right {
    visibility: hidden;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    padding-top: 10em;
    transform: translateY(-500%);
    background-color: #fff;
    opacity: 0;
    transition: all 0.4s ease;
  }
  .l-header__inner__btn-menu {
    display: flex !important;
    width: 4.27625em;
    height: 4.27625em;
  }
  .l-header__inner__btn-menu span {
    width: 3em;
  }
  .l-header__inner__btn-menu span:not(:last-child) {
    margin-bottom: 0.6em;
  }
  .l-header__inner #inp-menu-sp:checked ~ .l-header__inner__btn-menu span:first-child {
    transform: rotate(45deg) translate(7px, 3px);
  }
  .l-header__inner #inp-menu-sp:checked ~ .l-header__inner__btn-menu span:last-child {
    transform: rotate(-45deg) translate(3px, -2px);
  }
  .l-header__inner #inp-menu-sp:checked ~ .l-header__inner__right {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }
  .l-header__menu {
    flex-direction: column;
    justify-content: space-between;
    width: 90%;
  }
  .l-header__menu__item {
    margin-right: 0;
    margin-bottom: 2em;
  }
  .l-header__btns {
    width: 100%;
    height: auto;
  }
  .l-header__btns__item {
    width: 33.3333333333%;
  }
  .l-header__btns__item a {
    width: 100%;
    padding: 1em;
  }
}

@media only screen and (min-width: 984px) and (max-width: 1199px) {
  .l-header__inner__logo {
    /*max-width:20%*/
  }
  .l-header__menu__item {
    margin-right: 1.5em;
  }
  .l-header__menu__item a {
    font-size: 90%;
  }
  .l-header__btns__item a {
    min-width: 7em;
    padding: 0.5em;
    font-size: 90%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn--line:focus:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-btn--line:hover:focus {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-text-link--underline:hover {
    text-decoration: none;
  }
  .p-breadcrumb ul a:hover::after {
    transform: scale(1, 1);
  }
  .p-header__logo a:hover {
    opacity: 0.7;
    transition: 0.3s;
  }

  .p-header__nav ul li a:hover::after {
    transform: scale(1, 1);
  }

  .p-header__nav ul:nth-of-type(2) li a:hover {
    background: #6e7786 !important;
    transition: 0.5s;
  }
}

@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
  .c-btn--line:hover:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
}

@media only screen and (max-width: 1199px) {
  .c-consultant .modals__item__arrow {
    display: none;
  }
}

@media all and (max-width: 768px) {
  .c-consultant .modals__item__header__img::before {
    display: none;
  }

  .c-consultant .modals__item__header__img img {
    display: block;
    position: static;
    width: auto;
    height: auto;
    margin: 0 auto;
  }
  .c-page-top {
    display: none;
  }
  .p-footer-nav__logo {
    margin-bottom: 1rem;
  }
  .brnone br {
    display: none;
  }

  .p-firstview-sm__title__en,
.p-firstview__title__en span,
.c-title-bg__en {
    font-size: 26px;
  }
  .p-home-webinar-list-3col .topconts li {
    width: 100% !important;
  }
}

@media screen and (max-width: 768px) and (max-width: 480px) {
  .c-list-c3 ul li {
    width: 100%;
  }
}

@media all and (min-width: 1050px) {
  .l-header * {
    max-height: 99px;
  }
}

@media screen and (min-width: 1341px) {
  .p-header__nav nav {
    height: 100%;
  }
}

@media screen and (max-width: 1340px) {
  .p-header__inner {
    width: 100%;
  }
  .flow-chart-explanation-wrapper {
    padding: 2rem;
  }
}

@media screen and (max-width: 1050px) {
  .p-header__logo {
    max-width: 80%;
    margin-left: 5vw;
  }

  .p-header__nav {
    display: none;
  }

  .p-header__hamburger {
    display: block;
    z-index: 3;
    position: fixed;
    top: 20px;
    right: 5vw;
    width: 42px;
    height: 42px;
    text-align: center;
    cursor: pointer;
  }

  .p-header__hamburger span {
    display: block;
    position: absolute;
    left: 6px;
    width: 30px;
    height: 2px;
    background: #555;
    transition: 0.3s ease-in-out;
  }

  .p-header__hamburger span:nth-child(1) {
    top: 10px;
  }

  .p-header__hamburger span:nth-child(2) {
    top: 20px;
  }

  .p-header__hamburger span:nth-child(3) {
    top: 30px;
  }

  .p-header__hamburger.is-active span:nth-child(1) {
    top: 16px;
    left: 6px;
    transform: rotate(-45deg);
    background: #fff;
  }

  .p-header__hamburger.is-active span:nth-child(2),
.p-header__hamburger.is-active span:nth-child(3) {
    top: 16px;
    transform: rotate(45deg);
    background: #fff;
  }

  .p-header__nav {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  .p-header__nav.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    opacity: 100;
  }

  .p-header__nav.is-active nav {
    display: block;
  }

  .p-header__nav.is-active ul {
    display: block;
    margin: 0 auto 0 !important;
  }

  .p-header__nav.is-active ul li {
    display: block;
    margin: 1rem auto 0 !important;
    text-align: center;
  }

  .p-header__nav.is-active ul li a {
    display: inline;
    color: #FFF;
    font-size: clamp(18px, 1.146vw, 22px);
  }

  .p-header__nav.is-active ul:nth-of-type(2) li a {
    display: inline;
    width: auto;
    padding: 0;
    background: none !important;
    /*font-size: clamp(24px, 1.562vw, 30px);*/
  }

  .p-header__nav.is-active ul:nth-of-type(2) li a img {
    display: none;
  }

  .p-header__nav.is-active ul:nth-of-type(2) li a:focus {
    background: none !important;
  }
}

@media screen and (min-width: 1050px) and (max-width: 1340px) {
  .p-header__nav ul:nth-of-type(2) li a {
    width: 9rem;
  }
}

@media screen and (max-width: 1050px) and (hover: hover) and (pointer: fine) {
  .p-header__nav.is-active ul:nth-of-type(2) li a:hover {
    background: none !important;
  }
}

@media screen and (max-width: 480px) {
  .p-home-mv .l-container {
    height: calc(95vh - 99.906px);
  }
  .p-home-mv h1 {
    font-size: clamp(25px, 1.875vw, 36px);
  }
  .p-home-mv h1 span {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .p-home-service-list-wrap3 {
    width: 100%;
  }
  .p-home-partners-box__flex figure {
    width: 100%;
  }
  .p-home-partners-box__flex figure img {
    width: 50%;
  }
  .p-home-partners-box__wrap {
    width: 100%;
  }
  .p-home-webinar-list ul li figure {
    width: 100%;
  }
  .p-home-webinar-list__wrap {
    width: 100%;
  }
  .u-pc-Only {
    display: none;
  }
  .u-pctablet-Only {
    display: none;
  }
  .u-tabletsp-Only {
    display: block;
  }
  .u-sp-Only {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-service-globalization-partnerresearch__inner .flow {
    width: 100% !important;
  }
  .p-service-globalization-partnerresearch__inner .flow .title {
    font-size: 14px;
  }
  .p-service-globalization-partnerresearch__inner .flow .title::before {
    height: 67px;
  }
  .p-service-globalization-partnerresearch__inner .flow .content {
    padding: 20px;
  }
  .p-service-globalization-partnerresearch__inner li {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 1100px) {
  .p-service-marketing-solution .list .item .content h3::before {
    left: 80%;
  }
}

@media screen and (max-width: 780px) {
  .c-service-glaf01__body--title {
    padding-right: 0.05em;
  }
  .p-partner-bnr {
    flex-wrap: wrap;
    padding: 2rem;
    background-position: bottom;
    background-repeat: no-repeat;
  }

  .p-partner-bnr__img {
    order: 1;
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }

  .p-partner-bnr__txt {
    order: 2;
    width: 100%;
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 1060px) {
  .flow-chart-explanation-inner-table-col1 {
    width: 25%;
  }
  .flow-chart-explanation-inner-table-col2 {
    width: 35%;
  }
  .flow-chart-explanation-inner-table td {
    padding: 0.5rem;
  }
  .flow-chart-explanation-inner-table td ul li {
    padding-left: 1rem;
    text-indent: -0.7rem;
  }
  .flow-chart-explanation-inner-table td ul li::before {
    margin-right: 0;
  }
}

@media all and (max-width: 1280px) {
  .p-home-webinar-list-3col .topconts {
    gap: 2%;
  }
  .p-home-webinar-list-3col .topconts li {
    width: 49%;
  }
  .p-home-webinar-list-3col .topconts li a {
    flex-direction: row;
  }
  .p-home-webinar-list-3col .topconts li figure {
    width: 30%;
    height: auto;
  }
  .p-home-webinar-list-3col .topconts li .p-home-webinar-list__wrap {
    width: 70%;
    padding: 1.5rem;
  }
  .p-home-webinar-list-3col .topconts li .p-home-webinar-list__ico {
    margin-bottom: 0;
  }
  .p-home-webinar-list-3col .topconts li .p-home-event-list__date {
    margin-top: 0.5rem;
  }
}

@media all and (max-width: 480px) {
  .p-home-webinar-list-3col .topconts li figure, .p-home-webinar-list-3col .topconts li .p-home-webinar-list__wrap {
    width: 100% !important;
  }
  .p-home-webinar-list-3col .topconts li .p-home-webinar-list__ttl {
    line-height: 1.8 !important;
  }
}

