@charset "UTF-8";

/* ======================================================
 * _config.scss
 * ------------------------------------------------------
 * color
 * font
 * breakpoint
 * responsive
====================================================== */

/* ===============================================
# wordpressのカラーパレット
=============================================== */

.has-paleblue-background-color {
  background-color: #F3F9F9;
}

.has-paleblue-color {
  color: #F3F9F9;
}

.has-turquoiseblue-background-color {
  background-color: #00B7AC;
}

.has-turquoiseblue-color {
  color: #00B7AC;
}

.has-gray-background-color {
  background-color: #F8F8F8;
}

.has-gray-color {
  color: #F8F8F8;
}

.has-red-background-color {
  background-color: #FF0000;
}

.has-red-color {
  color: #FF0000;
}

/* ===============================================
# font
・可変箇所は、(PCのpx ÷ 1440）× 100で計算する
=============================================== */

/* ===============================================
# margin
=============================================== */

.--mt-20 {
  margin-top: 20px;
}

.--mt-40 {
  margin-top: 40px;
}

.--mt-60 {
  margin-top: 60px;
}

.--mt-80 {
  margin-top: 80px;
}

.--mt-100 {
  margin-top: 100px;
}

.--mt-120 {
  margin-top: 120px;
}

.--mt-140 {
  margin-top: 140px;
}

/* ===============================================
# heading
=============================================== */

.--heading-lv3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.c-blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-blog-card__img {
  width: 100%;
  aspect-ratio: 360/203;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-blog-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-blog-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 18px;
}

.c-blog-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}

.c-blog-card__title {
  font-size: clamp(18px, 1.38vw, 20px);
  line-height: 1.5;
}

.c-blog-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 25px;
  gap: 10px;
}

.c-blog-card__category {
  font-size: 12px;
  color: white;
  background-color: #231815;
  padding: 5px 12px;
  border-radius: 2em;
  line-height: 1.5;
}

.c-blog-card__date {
  font-size: 14px;
  font-weight: 400;
}

/* ===============================================
# hover
=============================================== */

.c-blog-card:hover .c-blog-card__img img {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}

.c-breadcrumb-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  padding: 12px 40px;
  line-height: 1.4;
  overflow: scroll;
  white-space: nowrap;
}

.c-breadcrumb-nav li,
.c-breadcrumb-nav a {
  font-size: 12px;
}

.c-breadcrumb-nav li:not(:first-of-type) {
  position: relative;
  padding-left: 20px;
}

.c-breadcrumb-nav li:not(:first-of-type)::before {
  content: ">";
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-breadcrumb-nav a:hover {
  text-decoration: underline;
}

.c-breadcrumb-nav h1 {
  position: relative;
  font-size: inherit;
  font-weight: inherit;
  padding-left: 20px;
}

.c-breadcrumb-nav h1::before {
  content: ">";
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-button {
  border-radius: 5em;
  text-align: center;
  max-width: 344px;
  width: 100%;
  height: 53px;
  font-size: 18px;
  color: white;
  border: 1px solid #000;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  line-height: 1.5;
}

.c-button::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-button::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../img/common/arrow-right-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  -webkit-transform: translate(-70%, -45%);
          transform: translate(-70%, -45%);
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
}

.c-button:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(2);
          transform: translate(-50%, -50%) scale(2);
}

.c-button:hover::after {
  opacity: 1;
}

/* ===============================================
# mv button
=============================================== */

.c-button.p-mv__button {
  background-color: #00b7ac;
  border: none;
  color: white;
  height: 70px;
  max-width: 400px;
  font-size: max(1.25rem, 18px);
  font-weight: 600;
  border: 1px solid #00b7ac;
}

.c-button.p-mv__button::before {
  content: "";
  display: inline-block;
  width: 1.625rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #000;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  right: 0.25rem;
}

.c-button.p-mv__button::after {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: auto;
  aspect-ratio: 98/150;
  background-image: url(../img/common/icon_angle-mv-button.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  right: 1.4375rem;
  -webkit-transform: translate(-70%, -50%);
          transform: translate(-70%, -50%);
}

.c-button.p-mv__button:hover {
  background-color: white;
  border: 1px solid #000;
  color: #000;
}

/* ===============================================
# -white
=============================================== */

.c-button.-white {
  background-color: white;
  color: #000;
  border: 1px solid #fff;
}

.c-button.-white::before {
  background-color: #000;
  border: 1px solid #fff;
}

.c-button.-white::after {
  background-image: url(../img/common/arrow-right.svg);
}

.c-heading__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.c-heading__label::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 18px;
  background-image: url(../img/common/icon-any.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-heading__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(36px, 3.33vw, 48px);
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
}

.c-interview-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-bottom: 20px;
}

.c-interview-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1.875rem;
  width: 1px;
  height: 100%;
  background-color: #c8c8c8;
}

.c-interview-card:nth-child(3n)::before {
  display: none;
}

.c-interview-card__head {
  position: relative;
}

.c-interview-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 356/200;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-interview-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-interview-card__logo {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 35px;
  background-color: #fff;
}

.c-interview-card__logo img {
  max-width: 87px;
}

.c-interview-card__body {
  display: block;
  height: 100%;
  margin-top: 36px;
}

.c-interview-card__title {
  font-size: 20px;
  margin-top: 36px;
  line-height: 1.8;
  display: inline;
  background: linear-gradient(transparent calc(100% - 1px), #000 0%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

.c-interview-card__subject-wrap {
  margin-top: 36px;
}

.c-interview-card__subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-interview-card__subject-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  padding-top: 2px;
  width: 70px;
}

.c-interview-card__subject-body {
  font-size: 16px;
}

.c-interview-card__subject:first-of-type {
  margin-bottom: 20px;
}

.c-profile {
  position: relative;
  border: 1px solid #cccccc;
  padding: 30px 37px 45px;
}

.c-profile::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #000000;
}

.c-profile__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
}

.c-profile__image {
  width: 150px;
  margin-right: 32px;
}

.c-profile__text {
  padding-top: 26px;
}

.c-profile__name {
  font-size: 20px;
  font-weight: bold;
}

.c-profile__company {
  margin-top: 25px;
}

.c-profile__position {
  margin-top: 10px;
}

.c-seminar-card img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-seminar-card:hover img {
  scale: 1.1;
}

.c-seminar-card__title {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 20px;
}

.c-seminar-card__info {
  margin-top: 8px;
}

.c-seminar-card__status {
  display: inline-block;
  padding: 6px 10px;
  font-size: 14px;
  color: #ffffff;
  border-radius: 4px;
  margin-top: 16px;
}

.c-seminar-card__status.-is-open {
  background-color: #00b7ac;
}

.c-seminar-card__status.-is-closed {
  background-color: #000;
}

.c-seminar-card__status.-is-archived {
  background-color: #ee3c6d;
}

.c-seminar-card__image {
  overflow: hidden;
}

.c-tag {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #7C7C7C;
  background-color: #fff;
  border: 1px solid #D0D0D0;
  border-radius: 6px;
  padding: 3px 9px;
  line-height: 1.5;
}

a.c-tag:hover {
  background-color: rgba(0, 183, 172, 0.1);
  color: #00b7ac;
  border: 1px solid #00b7ac;
}

.c-work-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.c-work-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1.875rem;
  width: 1px;
  height: 100%;
  background-color: #c8c8c8;
}

.c-work-card:nth-child(3n)::before {
  display: none;
}

.c-work-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 356/200;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.c-work-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-work-card__info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-work-card__title {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.4;
}

.c-work-card__subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 12px;
  border: 1px solid #000;
  padding: 1px 10px;
  border-radius: 2em;
  margin-top: 8px;
}

.c-work-card__client {
  font-size: 20px;
  font-weight: bold;
  margin-top: 8px;
}

.c-work-card__underline {
  display: inline;
  background: linear-gradient(transparent calc(100% - 1px), #000 0%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

.c-work-card__tags {
  width: 88%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 26px;
}

.c-work-card__tag {
  font-size: 11px;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #323232;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-work-card__tag::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #323232;
  border-radius: 50%;
  margin-right: 6px;
}

.c-work-card__logo {
  margin-top: auto;
}

.c-wp-pagination {
  margin-top: 70px;
}

.c-wp-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 24px;
  width: 100%;
}

.c-wp-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  text-decoration: none;
}

.c-wp-pagination .page-numbers.current {
  background-color: #000;
  color: #fff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  font-size: 16px;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  overflow-y: scroll;
}

body.scrollLock {
  position: fixed;
  left: 0;
  width: 100%;
}

main {
  padding-top: 80px;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: inline-block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

p {
  line-height: 1.5;
}

h2 {
  line-height: 1.7;
  text-align: center;
  font-weight: 500;
}

.paragraph {
  margin-bottom: 30px;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  color: #000;
  text-align: left;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

button:focus,
input:focus,
select {
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.sp {
  display: none;
}

.grecaptcha-badge {
  display: none;
}

.--under-sp {
  display: none;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

.l-block {
  padding-right: 40px;
  padding-left: 40px;
}

.l-block.-gray {
  background-color: #F8F8F8;
}

.l-block.--gray-thin {
  background-color: #f5f5f5;
}

.l-block__inner {
  padding-top: 90px;
  padding-bottom: 90px;
  max-width: 1200px;
  margin: 0 auto;
}

.l-block__inner.--mini {
  max-width: 840px;
}

.l-block__inner.-py-01 {
  padding-top: 60px;
  padding-bottom: 64px;
}

.l-block__inner.-pt-40 {
  padding-top: 40px;
}

.l-block__inner.-pt-50 {
  padding-top: 50px;
}

.l-block__inner.-pt-160 {
  padding-top: 160px;
}

.l-block__inner.-pb-45 {
  padding-bottom: 45px;
}

.l-block__inner.-pb-60 {
  padding-bottom: 60px;
}

.l-block__inner.-pb-180 {
  padding-bottom: 180px;
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.875rem;
}

.footer.-secondary {
  width: 100%;
  height: 0;
  position: relative;
}

.footer.-secondary .footer_copyright {
  border: none;
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 auto;
  padding: 0;
  padding-bottom: 18px;
}

.footer.-secondary .footer_copyright p {
  max-width: 1200px;
  font-size: 16px;
}

.footer_content {
  padding: 64px 40px 0;
  width: 100%;
  max-width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

.footer_column {
  margin-bottom: 40px;
}

.footer_title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.footer_list {
  margin-top: 18px;
  line-height: 1.4;
}

.footer_list > li + li {
  margin-top: 11px;
}

.footer_list > li > a {
  font-size: 14px;
  color: #505050;
}

.footer_bottom {
  margin-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer_logo {
  width: 204px;
  height: 50px;
}

.footer_logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer_address {
  font-size: 14px;
  margin-top: 14px;
  letter-spacing: 0.03em;
  padding: 0 40px;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: center;
}

.footer_flex {
  width: 100%;
  margin-top: 30px;
  border-top: 1px solid #000;
}

.footer_flex-inner {
  max-width: 1120px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 40px 20px;
  margin: 0 auto;
}

.footer_flex-inner > * {
  font-size: 12px;
}

.l-grid {
  display: grid;
}

.l-grid.--col2 {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
  gap: 3.125rem 2rem;
}

.l-grid.--col3 {
  gap: 3.75rem;
  grid-template-columns: repeat(3, 1fr);
}

.l-grid.--gap2 {
  gap: 50px 1.875rem;
  margin-top: 32px;
}

/* ===============================================
# add border
=============================================== */

.l-grid.--border > *:nth-of-type(2)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(5)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(8)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(11)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(14)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(17)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(20)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(23)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(26)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(29)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(32)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(35)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(38)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(41)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(44)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(47)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(50)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(53)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(56)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(59)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(62)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  left: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(2)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(5)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(8)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(11)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(14)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(17)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(20)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(23)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(26)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(29)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(32)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(35)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(38)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(41)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(44)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(47)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(50)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(53)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(56)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(59)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.l-grid.--border > *:nth-of-type(62)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #c8c8c8;
  position: absolute;
  top: 0;
  right: -2.0625rem;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
  background-color: white;
}

.header_inner {
  width: 100%;
  height: 44px;
  max-width: 1440px;
  padding: 0 1.875rem 0 2.375rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.header_inner:not(.-center) .header_content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.header_content::-webkit-scrollbar {
  display: none;
}

.header_content.active {
  visibility: visible;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.header_logo {
  width: 114px;
  height: 28px;
  margin-right: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header_logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header_nav {
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.header_item {
  height: 100%;
}

.header_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 0 1.625rem;
  font-weight: bold;
  position: relative;
}

.header_link::after {
  content: "";
  display: inline-block;
  width: 80%;
  height: 1px;
  border-bottom: 1px solid #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) scaleX(0);
          transform: translateX(-50%) scaleX(0);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.header_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header_actions > .btn {
  padding: 15px 24px;
  letter-spacing: 0.1em;
}

.header_actions > .btn + .btn {
  margin-left: 10px;
}

/* ===============================================
# header_toggle
=============================================== */

.header_toggle {
  position: relative;
  z-index: 400;
  width: 30px;
  height: 25px;
  cursor: pointer;
  text-align: center;
  display: none;
}

.header_toggle span {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #323232;
  -webkit-transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, transform 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

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

.header_toggle span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header_toggle span:nth-child(3) {
  bottom: 0;
}

.header_toggle.active span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header_toggle.active span:nth-child(2) {
  opacity: 0;
}

.header_toggle.active span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 40px;
}

.inner_main {
  max-width: 800px;
  width: 100%;
}

.inner.--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 75px 40px 115px;
}

.top .inner.works {
  padding: 140px 40px 195px;
}

.top .inner.service {
  padding: 90px 40px 100px;
}

.top .inner.download {
  max-width: 1080px;
  padding: 70px 40px 77px;
}

.top .inner.field {
  padding: 135px 40px 157px;
}

.top .inner.interview {
  padding: 130px 40px 157px;
}

.top .inner.report {
  padding: 130px 40px;
}

.top .inner.news {
  padding: 40px 40px 160px;
}

.service .inner.overview {
  padding: 95px 40px 125px;
}

.service .inner.guide {
  padding: 90px 40px 130px;
}

.service .inner.works {
  padding: 90px 40px 140px;
}

.strength .inner {
  padding: 112px 40px 130px;
}

.brand-statement .inner.values-rule {
  padding: 125px 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.brand-statement .inner.about-any {
  padding: 75px 40px;
}

/* ===============================================
  # 関連記事
=============================================== */

.inner.report {
  padding-top: 0;
}

.inner.report .heading {
  margin-bottom: 30px;
}

.inner.report .btn {
  margin: 0 auto;
}

.heading_content {
  padding-right: 30px;
}

.inner.report .heading_main {
  font-size: 36px;
}

.l-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.l-split__aside {
  width: 29.16%;
  position: sticky;
  top: 80px;
  height: 100vh;
}

.l-split__aside .heading_main {
  font-size: 32px;
  margin-top: 20px;
}

.l-split__aside .heading_content {
  padding-right: 0;
}

.l-split__aside .heading_description {
  font-size: 18px;
  margin-top: 22px;
  line-height: 1.6;
}

.l-split__main {
  width: 70.84%;
  padding: 100px 7rem 9.875rem 9.0625rem;
}

.l-split__aside-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.l-split__aside-content {
  width: 100%;
  max-width: 280px;
  margin: 100px auto 0;
  position: relative;
  z-index: 2;
  color: white;
}

.l-split__aside-button {
  margin-top: 46px;
  font-weight: 800;
  font-size: 16px;
}

.p-blog {
  width: calc(100% - 360px);
  background-color: #fff;
}

/* ===============================================
# head
=============================================== */

.p-blog__head-ttl {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.3;
  margin: 27px 0 25px;
}

.p-blog__head-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.p-blog__head-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.p-blog__head-time-detail + .p-blog__head-time-detail {
  margin-left: 24px;
}

.p-blog__head-time-label {
  color: #00b7ac;
}

.p-blog__head-time-publish,
.p-blog__head-time-modify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  font-size: 16px;
}

.p-blog__head-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

/* ===============================================
# other
=============================================== */

.p-blog__thumbnail {
  margin: 34px 0 84px;
}

/* ===============================================
  # toc
=============================================== */

.p-blog__toc {
  border: 1px solid #C8C8C8;
  width: 100%;
  padding: 24px 36px;
  border-radius: 5px;
  margin-bottom: 0;
  margin-top: 40px;
}

.p-blog__toc-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  white-space: nowrap;
}

.p-blog__toc-head-right {
  position: relative;
  padding-left: 30px;
  color: #00b7ac;
  text-decoration: underline;
}

.p-blog__toc-head-right::before,
.p-blog__toc-head-right::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 18px;
  height: 2px;
  background-color: #00b7ac;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-blog__toc-head-right::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-blog__toc-list {
  display: none;
  border-left: 2px solid #E3E3E3;
  padding-left: 27px;
  margin-top: 30px;
}

.p-blog__toc li {
  font-size: 16px;
  line-height: 1.8;
  list-style: none;
}

.p-blog__toc-h2 {
  font-weight: 700;
}

.p-blog__toc-h2:not(:first-child) {
  margin-top: 1em;
}

.p-blog__toc-h2 > a {
  color: #333;
  text-decoration: none;
}

.p-blog__toc-h3 {
  padding-left: 20px;
  margin-top: 0.6em;
}

.p-blog__toc-link-h3 {
  font-weight: 400;
  position: relative;
  color: #333;
  text-decoration: none;
}

.p-blog__toc.-active .p-blog__toc-head-right::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-blog__toc.-active .p-blog__toc-head-right::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.p-blog__toc.-active .p-blog__toc-list {
  display: block;
}

/* ===============================================
  # author
=============================================== */

.p-blog__author {
  background-color: #F8F8F8;
  padding: 30px;
}

.p-blog__author-ttl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.p-blog__author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 26px;
}

.p-blog__author-thum {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 17px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-blog__author-thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-blog__author-text span {
  display: block;
  font-size: 18px;
  line-height: 1.5;
}

.p-blog__author-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.p-blog__author-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.p-blog__author-link a {
  font-size: 16px;
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-blog__author-link a:hover {
  opacity: 0.8;
}

.p-blog__author-link .note img {
  width: 96px;
  height: auto;
  aspect-ratio: 96/21;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-blog__author-link .instagram img {
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===============================================
# cta
=============================================== */

.p-blog__content .p-blog__cta {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 83px 0 43px;
}

.p-blog__content .p-blog__cta-content {
  background-color: #F8F8F8;
  padding: 45px 45px 34px;
}

.p-blog__content .p-blog__cta-sub {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-blog__content .p-blog__cta-sub::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 17px;
  background-image: url(../img/common/icon-any.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-blog__content .p-blog__cta-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
  text-align: left;
  border: none;
  padding: 0;
}

.p-blog__content .p-blog__cta-heading::before {
  display: none;
}

.p-blog__content .p-blog__cta-subheading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.p-blog__content .p-blog__cta-text {
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0;
}

.p-blog__content .p-blog__cta a {
  margin: 23px 0;
}

.p-blog__content .p-blog__cta a:hover {
  opacity: 1;
}

.p-blog__content .p-blog__cta-img {
  width: 45%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-blog__content .p-blog__cta-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 40px;
  gap: 17px;
}

/* ===============================================
# category btn
=============================================== */

.p-category-list__item a {
  border: 1px solid #000;
  padding: 15px 24px;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50px;
}

.p-category-list__item a:hover,
.p-category-list__item a.is-active {
  background-color: #00b7ac;
  border: 1px solid #00b7ac;
  color: white;
}

.p-category-list__item a.-active {
  background-color: #00b7ac;
  color: white;
  border: 1px solid #F8F8F8;
}

.p-cta a {
  display: block;
  position: relative;
  padding: 4.0625rem 4.375rem 4.375rem;
  overflow: hidden;
  border-radius: 10px;
}

.p-cta a:hover .p-cta__img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}

.p-cta a:hover .p-cta__icon img {
  -webkit-transform: translateX(25%);
          transform: translateX(25%);
}

.p-cta__title {
  font-size: 3.75rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 2;
  line-height: 1;
}

.p-cta__text {
  font-size: 16px;
  font-weight: 500;
  color: white;
  position: relative;
  z-index: 2;
  max-width: 65%;
  margin-top: 25px;
}

.p-cta__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.p-cta__icon {
  width: 4.8125rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 27px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-cta__icon img {
  width: 0.6875rem;
  height: auto;
  aspect-ratio: 8/16;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

/* ===============================================
# フロント画面上でのスタイル post
=============================================== */

.gray-block {
  background-color: #f5f5f5;
  padding: 20px;
  margin: 20px auto;
}

.gray-block > :first-child {
  margin-top: 0;
}

.gray-block > :first-child:not(p:not([class])) {
  margin-bottom: 16px;
}

.gray-block > *:not(:last-child) {
  margin-bottom: 15px;
}

/* ===============================================
# フロント画面上でのスタイル case
=============================================== */

.information {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #F7F8F8;
  padding: 80px 40px;
}

.information_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.information_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.information_item + .information_item {
  margin-top: 40px;
}

.information_head {
  min-width: 200px;
  font-weight: bold;
  font-size: 18px;
}

.list .wp-block-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}

.list .wp-block-list li::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-color: #000;
  margin-right: 0.4em;
  margin-top: 0.4em;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.list .wp-block-list li {
  line-height: 1.4;
}

.list .wp-block-list li + li {
  margin-top: 1em;
}

.heading {
  width: 100%;
  font-weight: bold;
  text-align: left;
}

.heading.--lv2 {
  font-size: 24px;
  border-bottom: 2px solid #F3F4F3;
  padding-bottom: 0.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.heading.--lv3 {
  font-size: 18px;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.4;
}

.main-copy {
  padding: 40px;
  background-color: #F7F8F8;
  margin-bottom: 40px;
}

.large-text {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 1em 0;
}

.medium-text {
  font-size: 20px;
  font-weight: bold;
  margin: 1.2em 0;
}

.small-text {
  font-size: 13px;
  margin: 1em 0 0 0;
  line-height: 1.7;
}

.site-capture_inner {
  background-color: #F7F8F8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.0625rem;
  padding: 40px;
  margin-bottom: 4em;
}

.site-capture_inner .wp-element-caption {
  text-align: center;
  margin-top: 16px;
}

.site-capture_inner .wp-block-image {
  margin-bottom: 0;
}

.wp-block-namespace-splide-slider .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4em;
}

.wp-block-namespace-splide-slider .splide__img img {
  display: block;
}

.wp-block-namespace-splide-slider .splide__arrow {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.wp-block-namespace-sticky-section p {
  margin-top: 16px;
  margin-bottom: 16px;
}

.wp-block-image {
  margin-top: 1.5em;
  margin-bottom: 4em;
}

.preview-edge-slider.splide-slider {
  width: 100%;
  overflow: hidden;
  margin: 80px auto;
}

.preview-edge-slider .splide {
  width: 100%;
  margin: 0 auto;
}

.preview-edge-slider .splide__track {
  overflow: visible;
}

.preview-edge-slider .splide__slide {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.preview-edge-slider .splide__slide:not(.is-active-custom) {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.preview-edge-slider .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 0 16px;
  opacity: 1;
}

.preview-edge-slider .splide__pagination__page.is-active {
  background-color: #000;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.preview-edge-slider .splide__arrows {
  width: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.preview-edge-slider .splide__arrow-custom--prev {
  left: 0;
  -webkit-transform: translate(-50%, -120%);
          transform: translate(-50%, -120%);
}

.preview-edge-slider .splide__arrow-custom--next {
  right: 0;
  -webkit-transform: translate(50%, -120%);
          transform: translate(50%, -120%);
}

.preview-edge-slider .splide__arrow-custom--prev,
.preview-edge-slider .splide__arrow-custom--next {
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 0px;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.preview-edge-slider .splide__arrow-custom--prev:hover,
.preview-edge-slider .splide__arrow-custom--next:hover {
  opacity: 0.8;
}

.preview-edge-slider .splide__arrow-custom--prev img,
.preview-edge-slider .splide__arrow-custom--next img {
  width: 17px;
  height: 14px;
}

.simple-img {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 80px auto;
  padding: 0 40px;
}

.simple-img img {
  width: 100%;
  height: auto;
}

.video-block {
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
  margin: 80px auto;
}

.video-block video {
  width: 100%;
  height: auto;
}

.logo-block-wrap {
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
  margin: 80px auto;
}

.logo-block {
  text-align: center;
  margin: 0 auto;
}

.related-link {
  position: relative;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid #000;
  margin: 40px 0;
}

.related-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 18px 18px 18px;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 0.25s;
  transition: -webkit-box-shadow 0.25s;
  transition: box-shadow 0.25s;
  transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
}

.related-link a:hover {
  opacity: 1;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 12px 28px -12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 12px 28px -12px rgba(0, 0, 0, 0.05);
}

.related-link_icon {
  position: absolute;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  top: -1em;
  left: 24px;
  background-color: white;
  padding: 5px;
}

.related-link_icon::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../img/common/icon-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.4em;
  opacity: 0.9;
}

.related-thumbnail {
  width: 21%;
  height: auto;
  aspect-ratio: 300/169;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.related-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-title {
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
}

.related-excerpt {
  font-size: 13px;
  line-height: 1.4;
  color: #333333;
  margin-top: 6px;
}

.p-form__inner {
  padding: 0 30px;
}

.p-form__group {
  border-top: 1px solid #DDD;
  padding: 20px 0 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-form__group .wpcf7-form-control-wrap,
.p-form__group [class^=confirm-] {
  display: block;
  width: calc(100% - 200px);
}

.p-form__group input {
  border: 1px solid #ddd;
  background-color: #fff;
}

.p-form__group input.wpcf7-not-valid {
  background-color: #FFF0F1;
}

.p-form__group textarea {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  line-height: 1.4;
  border: 1px solid #ddd;
  background-color: #fff;
}

.p-form__group input[type=text],
.p-form__group input[type=email],
.p-form__group input[type=tel] {
  width: 100%;
  padding: 10px 15px;
}

.p-form__group .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 11px 25px;
  margin-top: 15px;
}

.p-form__group .wpcf7-checkbox label {
  position: relative;
}

.p-form__group .wpcf7-list-item {
  display: block;
  line-height: 1;
  margin-left: 0;
}

.p-form__group input[type=checkbox] {
  display: none;
}

.p-form__group .wpcf7-list-item-label {
  position: relative;
  height: 20px;
  line-height: 20px;
  padding-left: 26px;
  display: inline-block;
}

.p-form__group .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-form__group input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  border-top: 2px solid #00b7ac;
  border-right: 2px solid #00b7ac;
  -webkit-transform: rotate(140deg);
          transform: rotate(140deg);
  position: absolute;
  left: 5px;
  top: 5px;
}

.p-form__group .wpcf7-not-valid-tip {
  margin-top: 9px;
  font-size: 12px;
}

.p-form__group.--border-none {
  border: none;
  padding: 14px 0;
}

.p-form__label {
  display: inline-block;
  width: 100%;
  max-width: 232px;
  padding-top: 9px;
  margin-bottom: 10px;
}

.p-form__label-required,
.p-form__label-optional {
  font-size: 12px;
  padding: 3px 11px;
  border-radius: 2px;
  margin-right: 10px;
  display: inline-block;
}

.p-form__label-required {
  background: #cc0000;
  color: #ffffff;
}

.p-form__label-optional {
  background: #dddddd;
  color: #000;
}

.p-form__lead {
  text-align: center;
  margin-bottom: 50px;
}

.p-form__btn {
  font-size: 15px;
  border-radius: 5em;
  border: 1px solid #00b7ac;
  font-weight: bold;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00b7ac;
  color: white;
  -webkit-transition: background-color 0.2s, color 0.2s, outline 0.2s;
  transition: background-color 0.2s, color 0.2s, outline 0.2s;
  max-width: 100%;
  width: 250px;
  height: 45px;
  margin: 40px auto 0;
}

.p-form__btn input {
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}

.p-form__btn:hover {
  background-color: white;
}

.p-form__btn:hover input {
  color: #00b7ac;
}

.p-form__btn.--black {
  width: 350px;
  height: 60px;
  border-radius: 0;
  background-color: #000000;
  border: 1px solid #000000;
  font-size: 20px;
  font-weight: bold;
}

.p-form__btn.--black:hover {
  background-color: #ffffff;
}

.p-form__btn.--black:hover input {
  color: #000000;
}

.p-form__policy {
  text-align: center;
  margin-top: 20px;
}

.p-form__link {
  color: #00b7ac;
  text-decoration: underline;
}

.wpcf7-spinner {
  display: none;
}

div.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.p-guide__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(24px, 2.5vw, 36px);
}

.p-guide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-guide__list-item {
  width: calc((100% - 50px) / 2);
  border-bottom: 1px solid #dddddd;
}

.p-guide__list-item a {
  position: relative;
  width: 100%;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-guide__list-item a::before {
  position: absolute;
  content: "→";
  font-size: 20px;
  right: 0;
}

.p-inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.p-inquiry__left {
  width: 41%;
  background-color: #f8f8f8;
  padding-top: 90px;
  padding-left: 40px;
  position: relative;
}

.p-inquiry__left::before {
  content: "";
  display: inline-block;
  width: 50vw;
  height: 100%;
  background-color: #f8f8f8;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  z-index: 1;
}

.p-inquiry__left-content {
  max-width: 500px;
  margin-left: auto;
  margin-right: 3.75rem;
}

.p-inquiry__left .p-subpage-heading {
  margin-bottom: 32px;
}

.p-inquiry__left .p-subpage-heading__main {
  font-size: 36px;
}

.p-inquiry__left .wp-block-group {
  margin-top: 60px;
  gap: 10px;
}

.p-inquiry__right {
  width: 59%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 40px;
  padding-bottom: 200px;
}

.p-inquiry__right-header {
  font-size: 16px;
  line-height: 1.5;
}

.p-inquiry__right-content {
  max-width: 657px;
  margin-left: 3.4375rem;
  margin-right: auto;
  margin-top: 90px;
}

.p-inquiry__right .form {
  margin-top: 26px;
}

.p-inquiry__policy {
  margin-top: 22px;
  text-align: center;
}

.p-inquiry__policy a {
  color: #00b7ac;
  text-decoration: underline;
}

.p-inquiry__remaining {
  width: 0;
  height: 100%;
}

.p-inquiry__remaining-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  top: 100px;
  right: 50%;
  -webkit-transform: translateX(calc(100% + 620px));
          transform: translateX(calc(100% + 620px));
  background-color: #CC0000;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  padding: 3px 7px 5px 5px;
  border-radius: 6px;
  margin-left: 17px;
  white-space: nowrap;
}

.p-inquiry__remaining-count {
  font-size: 22px;
  font-weight: 700;
  padding: 0 0.1em;
}

.p-interview {
  margin-top: 60px;
}

.p-link-dl {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.875rem;
}

.p-link-dl__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-link-dl__link:hover .p-link-dl__img img {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}

.p-link-dl__img {
  width: 100%;
  height: auto;
  aspect-ratio: 362/205;
  overflow: hidden;
}

.p-link-dl__img.-border {
  border: 6px solid #00b7ac;
}

.p-link-dl__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.p-link-dl__title {
  font-size: max(1.5rem, 20px);
  margin-top: 30px;
  white-space: wrap;
  text-align: left;
}

.p-link-dl__title.link .icon {
  margin-left: 0;
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-link-dl__description {
  font-size: 16px;
  margin-top: 20px;
}

.branding-approach_inner {
  padding: 0;
}

.branding-approach_content {
  margin-top: 55px;
}

.branding-approach_phase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.branding-approach_phase + .branding-approach_phase {
  margin-top: 60px;
}

.branding-approach_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid black;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  padding: 0 22px;
}

.branding-approach_label img {
  display: block;
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}

.branding-approach_steps {
  padding-left: 40px;
}

.branding-approach_step {
  padding: 53px 0;
  border-top: 1px solid #c8c8c8;
}

.branding-approach_step:last-child {
  border-bottom: 1px solid #c8c8c8;
}

.branding-approach_title {
  font-size: 16px;
  font-weight: bold;
}

.branding-approach_title span {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  padding-right: 10px;
}

.branding-approach_description {
  display: inline-block;
  font-size: 16px;
  padding-top: 16px;
}

.btn {
  font-size: 15px;
  border-radius: 5em;
  font-weight: bold;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ===============================================
# primary
=============================================== */

.btn.--primary {
  max-width: 400px;
  width: 100%;
  height: 70px;
  font-size: 18px;
  border: 1px solid #000;
  background-color: white;
}

.btn.--primary::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: black;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}

.btn.--primary::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url(../img/common/icon-arrow-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 9px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.btn.--primary:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

/* ===============================================
# secondary
=============================================== */

/* ===============================================
# other
=============================================== */

.btn.--black {
  background-color: #141414;
  color: white;
  -webkit-transition: background-color 0.2s, color 0.2s, outline 0.2s;
  transition: background-color 0.2s, color 0.2s, outline 0.2s;
}

.btn.--black:hover {
  background-color: white;
  color: #141414;
  outline: 1px solid #141414;
}

.btn.--turquoiseBlue {
  background-color: #00b7ac;
  color: white;
  -webkit-transition: background-color 0.2s, color 0.2s, outline 0.2s;
  transition: background-color 0.2s, color 0.2s, outline 0.2s;
}

.btn.--turquoiseBlue:hover {
  background-color: white;
  color: #00b7ac;
  outline: 1px solid #00b7ac;
}

/* ===============================================
# download button
=============================================== */

.btn.--download {
  max-width: 400px;
  width: 100%;
  height: 70px;
  font-size: 18px;
  border: 1px solid #000;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.btn.--download::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 24px;
  background-image: url(../img/common/icon-download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.btn.--download:hover {
  opacity: 0.8;
}

.btn.--download2 {
  max-width: 344px;
  width: 100%;
  height: 53px;
  font-size: 18px;
  color: white;
  border: 1px solid #000;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}

.btn.--download2::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.btn.--download2::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../img/common/arrow-right-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translate(-70%, -45%);
          transform: translate(-70%, -45%);
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
}

.btn.--download2:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(2);
          transform: translate(-50%, -50%) scale(2);
}

.btn.--download2:hover::after {
  opacity: 1;
}

.check-list_lead {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.check-list_mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 1.4;
}

.check-list_mark::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 16px;
  background-image: url(../img/common/icon-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 16px;
  margin-top: 0.2em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.check-list_mark + .check-list_mark {
  margin-top: 26px;
}

.cta {
  width: 100%;
  background-color: #000;
}

.cta_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.cta_item {
  width: 50%;
  height: 480px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta_item + .cta_item {
  border-left: 1px solid #57575d;
}

.cta_item:hover .cta_bg {
  opacity: 1;
}

.cta_item:hover .cta_title {
  background: linear-gradient(transparent calc(100% - 1px), #fff 0%);
}

.cta_item:hover .btn.--primary::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.cta_content {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 440px;
  margin: auto;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px;
}

.cta_label {
  width: 100%;
  display: inline-block;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  color: white;
  text-align: center;
}

.cta_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline;
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-align: center;
}

.cta_description {
  font-size: 14px;
  color: white;
  margin-top: 20px;
  line-height: 2;
}

.cta_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.cta_content > .btn {
  margin-top: 20px;
}

.faq_inner {
  padding: 0;
}

.faq_container {
  margin-top: 45px;
}

.faq_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.faq_question span {
  padding-right: 16px;
}

.faq_answer {
  padding: 13px 0 0 40px;
}

.faq_item + .faq_item {
  margin-top: 55px;
}

.heading {
  width: 100%;
}

.heading_content {
  padding-right: 19.375rem;
}

.heading_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.heading_label::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 18px;
  background-image: url(../img/common/icon-any.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.heading_text-md {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 20px;
}

.heading_main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
}

.heading_description {
  font-size: 20px;
  margin-top: 10px;
  font-weight: bold;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.heading_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.heading_inner .link {
  margin-top: 40px;
}

.consulting .heading {
  font-size: 30px;
}

.process_inner {
  padding: 0;
}

.process_steps {
  margin-top: 24px;
}

.process_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.process_steps .process_step:last-child .process_label::after {
  display: none;
}

.process_label {
  position: relative;
}

.process_label::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.process_circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid black;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: white;
  position: relative;
  z-index: 2;
}

.process_circle .label {
  font-size: 12px;
}

.process_circle .text {
  font-size: 18px;
}

.process_content {
  padding: 0 0 50px 20px;
}

.process_title {
  font-size: 18px;
  height: auto;
  font-weight: bold;
}

.process_description {
  font-size: 16px;
  padding-top: 16px;
}

.process_description > a {
  text-decoration: underline;
}

.process_description > a:hover {
  opacity: 0.7;
}

.process .btn {
  max-width: 250px;
  height: 44px;
  margin-top: 14px;
}

.heading-sub_title {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.heading-sub_description {
  font-size: 17px;
  font-weight: bold;
  margin-top: 18px;
  letter-spacing: 0.03em;
}

.interview-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-bottom: 20px;
}

.interview-card_head {
  position: relative;
}

.interview-card_img {
  width: 100%;
  height: auto;
  aspect-ratio: 356/200;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.interview-card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.interview-card_logo {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 35px;
  background-color: #fff;
}

.interview-card_logo img {
  max-width: 87px;
}

.interview-card_body {
  display: block;
  height: 100%;
  margin-top: 36px;
}

.interview-card_title {
  font-size: 20px;
  margin-top: 36px;
  line-height: 1.8;
  display: inline;
  background: linear-gradient(transparent calc(100% - 1px), #000 0%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

.interview-card_subject-wrap {
  margin-top: 36px;
}

.interview-card_subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.interview-card_subject-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  padding-top: 2px;
  width: 70px;
}

.interview-card_subject-body {
  font-size: 16px;
}

.interview-card_subject:first-of-type {
  margin-bottom: 20px;
}

/* ===============================================
# hover
=============================================== */

.interview-card:hover .interview-card_img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.interview-card:hover .interview-card_title {
  background-size: 100% 1px;
}

.info-card {
  background-color: #ffffff;
  padding: 27px 2.5rem 30px;
  position: relative;
}

.info-card::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #00b7ac;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}

.info-card::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/common/icon-arrow-btn-blueGreen.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 9px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.info-card:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.info-card_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-card_icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.info-card_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.info-card_text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}

.info-card_content {
  font-size: 15px;
  margin-top: 20px;
  line-height: 1.8;
}

.info-card.--right-bottom-arrow {
  padding-bottom: 40px;
}

.info-card.--right-bottom-arrow::after {
  right: 13px;
  top: initial;
  bottom: 14px;
}

.info-card.--right-bottom-arrow::before {
  right: 25px;
  top: initial;
  bottom: 26px;
}

.pricing_inner {
  padding-top: 0;
}

.pricing_content {
  margin-top: 28px;
  border: 1px solid #000;
  padding: 24px 24px 28px 34px;
}

.pricing_range {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pricing_amount {
  padding-left: 16px;
}

.pricing .large {
  font-size: 1.8em;
  font-family: "Lato", sans-serif;
  padding-right: 6px;
}

.pricing .large.--pr-4 {
  padding-right: 2px;
}

.reason_inner {
  padding: 0px 0 80px;
}

.reason_img {
  width: 200px;
  height: 200px;
  position: relative;
}

.reason_img.--large {
  width: 300px;
  height: auto;
}

.reason_number {
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

.reason_img-number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
}

.reason_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.reason_subtitle {
  font-size: 22px;
  line-height: 1.4;
}

.reason_description {
  font-size: 16px;
}

.reason .heading-sub {
  margin-bottom: 68px;
}

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

.reason_item + .reason_item {
  margin-top: 80px;
}

.reason_img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.reason_number {
  font-size: 16px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
}

.reason_content {
  padding-left: 3rem;
}

.reason_subtitle {
  margin-top: 20px;
}

.reason_description {
  padding-top: 22px;
}

/* ===============================================
# --stack-at-1024
=============================================== */

.news-list {
  width: 100%;
}

.news-list_item {
  width: 100%;
  border-bottom: 1px solid #c8c8c8;
  padding: 16px 0;
}

.news-list_item:nth-of-type(1) {
  padding: 0 0 16px 0;
}

.news-list_date {
  font-size: 12px;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
}

.news-list_title {
  font-size: 16px;
  padding-top: 18px;
  line-height: 1.4;
}

.news-list_item:hover .news-list_title {
  text-decoration: underline;
}

.sec.--gray {
  background-color: #e8e8e8;
}

.sec.--gray-thin {
  background-color: #f5f5f5;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background-color: #00b7ac;
  border-top-left-radius: 10px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.sticky-cta_icon {
  width: 19px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sticky-cta_text {
  padding-left: 16px;
}

.sticky-cta_title {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.sticky-cta_description {
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.problem {
  width: 100%;
  background-color: #f5f5f5;
}

.problem_inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.problem_inner .check-list_mark::before {
  margin-top: 0.45em;
}

.problem .heading-sub_title {
  font-size: 40px;
}

.problem .check-list_mark {
  font-size: 24px;
}

.image-block {
  width: 100%;
  height: auto;
}

.link {
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  white-space: nowrap;
}

.link .icon {
  width: 34px;
  height: 34px;
  background-color: #000;
  margin-left: 14px;
  position: relative;
  border-radius: 50%;
}

.link .icon::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.46);
          transform: translate(-50%, -50%) scale(0.46);
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.link .icon::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 11px;
  background-image: url(../img/common/icon-angle-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
}

.link-trigger:hover .icon::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.link-trigger:hover .icon::after {
  opacity: 1;
}

/* ===============================================
# hover
=============================================== */

.work-card:hover .work-card_img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.work-card:hover .work-card_underline {
  background-size: 100% 100%;
}

.vision-mission {
  width: 100%;
  height: 650px;
  background-image: url(../img/common/vision-mission-bg.svg);
  background-repeat: no-repeat;
  background-size: 1920px 1080px;
  background-position: 50% 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.vision-mission_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 155px 20px 0;
}

.vision-mission_text {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  word-break: keep-all;
}

.vision-mission > .btn {
  margin: 65px auto 0;
}

.service-card {
  position: relative;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-card::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px solid #000;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
}

.service-card_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 16px;
}

.service-card_icon {
  width: 80px;
  height: 80px;
}

.service-card_title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.service-card_description {
  font-size: 16px;
  margin-top: 24px;
  text-align: center;
  line-height: 1.7;
}

.service-card_item > .btn {
  max-width: 300px;
  width: 100%;
  margin-top: 48px;
  height: 54px;
}

.service-card .check-list {
  margin-top: 55px;
  padding-left: 1.375rem;
}

.archive-news .news-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.archive-news .news-list_date {
  margin-right: 30px;
}

.archive-news .news-list_title {
  padding-top: 0;
}

.service-detail .branding-approach_inner {
  padding: 0;
  margin-top: 160px;
}

.service-detail .branding-approach_content {
  margin-top: 55px;
}

.service-detail .branding-approach_phase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-detail .branding-approach_phase + .branding-approach_phase {
  margin-top: 60px;
}

.service-detail .branding-approach_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid black;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  padding: 0 22px;
}

.service-detail .branding-approach_label img {
  display: block;
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}

.service-detail .branding-approach_steps {
  padding-left: 40px;
}

.service-detail .branding-approach_step {
  padding: 53px 0;
  border-top: 1px solid #c8c8c8;
}

.service-detail .branding-approach_step:last-child {
  border-bottom: 1px solid #c8c8c8;
}

.service-detail .branding-approach_title {
  font-size: 16px;
  font-weight: bold;
}

.service-detail .branding-approach_title span {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  padding-right: 10px;
}

.service-detail .branding-approach_description {
  display: inline-block;
  font-size: 16px;
  padding-top: 16px;
}

.service-detail {
  /* ===============================================
    # active
    =============================================== */
}

.service-detail .commitment_inner {
  padding-top: 0;
  margin-top: 80px;
}

.service-detail .commitment .heading-sub {
  margin-bottom: 55px;
}

.service-detail .commitment_item + .commitment_item {
  margin-top: 50px;
}

.service-detail .commitment_header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #000;
  padding: 0 0 26px 0;
}

.service-detail .commitment_number {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  padding: 4px 16px 0 0;
}

.service-detail .commitment_term {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}

.service-detail .commitment_icon {
  width: 21px;
  height: 21px;
  background-color: #000;
  position: relative;
  border-radius: 50%;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-detail .commitment_icon::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  border-top: 1px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -25%);
          transform: translate(-50%, -25%);
}

.service-detail .commitment_icon::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  border-right: 1px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-75%, -50%);
          transform: translate(-75%, -50%);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

.service-detail .commitment_content {
  padding-top: 18px;
  font-size: 16px;
  overflow: hidden;
}

.service-detail .commitment_content p {
  line-height: 1.8;
}

.service-detail .commitment_header.active .commitment_icon::after {
  -webkit-transform: rotate(-90deg) translate(-50%, -50%);
          transform: rotate(-90deg) translate(-50%, -50%);
}

.service-detail .faq_inner {
  padding: 0;
  margin-top: 75px;
}

.service-detail .faq_container {
  margin-top: 45px;
}

.service-detail .faq_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.service-detail .faq_question span {
  padding-right: 16px;
}

.service-detail .faq_answer {
  padding: 13px 0 0 40px;
}

.service-detail .faq_item + .faq_item {
  margin-top: 55px;
}

.service-detail .pricing_inner {
  padding-top: 0;
  margin-top: 160px;
}

.service-detail .pricing_content {
  margin-top: 28px;
  border: 1px solid #000;
  padding: 16px 24px 28px 34px;
}

.service-detail .pricing_range {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-detail .pricing_amount {
  padding-left: 16px;
}

.service-detail .pricing .large {
  font-size: 1.8em;
  font-family: "Lato", sans-serif;
  padding-right: 6px;
}

.service-detail .process_inner {
  padding: 0;
  margin-top: 160px;
}

.service-detail .process_steps {
  margin-top: 24px;
}

.service-detail .process_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-detail .process_steps .process_step:last-child .process_label::after {
  display: none;
}

.service-detail .process_label {
  position: relative;
}

.service-detail .process_label::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.service-detail .process_circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid black;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: white;
  position: relative;
  z-index: 2;
}

.service-detail .process_circle .label {
  font-size: 12px;
}

.service-detail .process_circle .text {
  font-size: 18px;
}

.service-detail .process_content {
  padding: 0 0 50px 20px;
}

.service-detail .process_title {
  font-size: 18px;
  height: auto;
  font-weight: bold;
}

.service-detail .process_description {
  font-size: 16px;
  padding-top: 16px;
}

.service-detail .process .btn {
  max-width: 250px;
  height: 44px;
  margin-top: 14px;
}

.service-detail .reason_inner {
  padding: 0px 0 80px;
  margin-top: 140px;
}

.service-detail .reason_num-img {
  width: 200px;
  height: 200px;
  position: relative;
}

.service-detail .reason_number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

.service-detail .reason_num-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-detail .reason_subtitle {
  font-size: 22px;
  line-height: 1.4;
}

.service-detail .reason_description {
  font-size: 16px;
}

.service-detail .reason .heading-sub {
  margin-bottom: 68px;
}

.service-detail .reason_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-detail .reason_item + .reason_item {
  margin-top: 80px;
}

.service-detail .reason_num-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-detail .reason_number {
  font-size: 16px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
}

.service-detail .reason_content {
  padding-left: 3rem;
}

.service-detail .reason_subtitle {
  margin-top: 22px;
}

.service-detail .reason_description {
  padding-top: 22px;
}

.service-detail .recommendation .check-list {
  border: 1px solid black;
  padding: 40px 40px 47px 40px;
  margin-top: 40px;
}

.service-detail .recommendation .check-list_mark + .check-list_mark {
  margin-top: 23px;
}

.service-detail .services_inner {
  padding: 0;
  margin-top: 150px;
}

.service-detail .services .list {
  margin-top: 56px;
  gap: 3.125rem 2rem;
}

.service-detail .services_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 38px 16px;
  border: 1px solid black;
}

.service-detail .services_item img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-detail .services_item-title {
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.4;
}

.service-detail .services_item-description {
  max-width: 310px;
  margin-top: 28px;
  line-height: 1.7;
}

.brand-statement .about-any .list {
  margin-top: 32px;
  gap: 50px 1.875rem;
}

.brand-statement .about-any .info-card_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.brand-statement .about-any .info-card_icon {
  width: 75px;
  height: 62px;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.brand-statement .about-any .info-card_icon:nth-of-type(1) img {
  display: block;
  width: 75px;
  height: 52px;
}

.brand-statement .about-any .info-card_icon:nth-of-type(2) img {
  display: block;
  width: 37px;
  height: 62px;
}

.brand-statement .about-any .info-card_icon:nth-of-type(3) img {
  display: block;
  width: 43px;
  height: 50px;
}

.brand-statement .about-any .info-card_text {
  margin-top: 14px;
}

.brand-statement .lead {
  width: 100%;
  padding: 120px 40px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 3.25;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#fff));
  background: linear-gradient(to bottom, #f5f5f5, #fff);
}

.brand-statement .vision-mission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: 1790px 895px;
  height: 895px;
  margin-top: -164px;
  overflow: hidden;
}

.brand-statement .vision-mission_wrap {
  padding-top: 40px;
}

.brand-statement .fig {
  display: block;
  max-width: 980px;
  width: calc(100% - 40px);
  height: auto;
  aspect-ratio: 900/722;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 194px auto 0;
}

.brand-statement .values-rule .heading-sub {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.brand-statement .values-rule_item-wrap {
  max-width: 900px;
  margin: 15px 0 0 3.875rem;
}

.brand-statement .values-rule_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #c8c8c8;
  padding: 70px 0;
}

.brand-statement .values-rule_item:last-child {
  border-bottom: 1px solid #c8c8c8;
}

.brand-statement .values-rule_heading {
  min-width: 15.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 22px;
  line-height: 1.55;
}

.brand-statement .values-rule_heading span {
  font-size: 16px;
  padding-bottom: 10px;
}

.brand-statement .values-rule_description {
  font-size: 16px;
  line-height: 1.7;
}

/* --------------------
会社概要 start
-------------------- */

.overview .sec-company {
  padding: 100px 0;
}

.overview .lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}

.overview .lead .lead-text {
  width: 100%;
  max-width: 700px;
}

.overview .lead .lead-text h2 {
  margin-bottom: 50px;
}

.overview .lead .lead-img {
  width: 100%;
  max-width: 400px;
}

.overview .bg-main {
  width: 100%;
  max-width: 100%;
}

.overview .tbl {
  width: 100%;
}

.overview .tbl tr {
  border-top: 1px solid #eeeeee;
}

.overview .tbl tr:last-child {
  border-bottom: 1px solid #eeeeee;
}

.overview .tbl tr th,
.overview .tbl tr td {
  padding: 25px;
}

.overview .tbl tr th {
  font-weight: normal;
  background-color: #f5f5f5;
  width: 150px;
}

.overview .tbl tr td p {
  font-size: 100%;
}

.overview .philosophy {
  background: #efefef;
}

.overview .philosophy p {
  font-size: 32px;
  font-weight: bold;
}

.overview .logo-company .desc-logo {
  text-align: center;
}

.overview .logo-company .desc-logo .logo {
  margin-bottom: 50px;
}

.overview .logo-company .desc-logo .logo > img {
  width: 250px;
}

.overview .logo-company .desc-logo h4 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.5;
}

.overview .intro-member {
  background: #efefef;
}

.overview .list-member > li {
  margin-bottom: 80px;
}

.overview .list-member li .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #c8c8c8;
}

.overview .list-member li img {
  margin-right: 25px;
  max-width: 130px;
}

.overview .list-member li .member-prof {
  max-width: 360px;
}

.overview .list-member li .position {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
}

.overview .list-member li .name {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

.overview .list-member li .paragraph {
  font-size: 14px;
}

.overview .list-member li .achievement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.overview .list-member li .achievement .ttl {
  font-weight: bold;
  font-size: 14px;
  margin-right: 20px;
}

.overview .list-member li .achievement li {
  font-size: 14px;
}

/* --------------------
会社概要 end
-------------------- */

.flex-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-container_left {
  width: calc(100% - 400px);
  height: auto;
  padding: 0 7.5rem;
  z-index: 1;
}

.flex-container_inner {
  max-width: 800px;
  margin: 0 auto;
}

.flex-container_right {
  width: 28.5%;
  height: calc(100vh - 80px);
  position: sticky;
  top: 80px;
  z-index: 2;
  padding: 30px 1.875rem;
  background-color: white;
}

.consulting .flow {
  width: 100%;
  padding: 120px 0 0;
}

.consulting .flow-item {
  position: relative;
  width: 100%;
  margin-top: 25px;
  border: 1px solid #c8c8c8;
  padding: 10px 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.consulting .flow-item + .flow-item {
  margin-top: 28px;
}

.consulting .flow-item::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #505050;
  border-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 65px;
  -webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
}

.consulting .flow-item:last-child::before {
  display: none;
}

.consulting .flow-item_step {
  width: 150px;
  height: 100%;
  font-size: 28px;
  font-family: "Lato", sans-serif;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.consulting .flow-item_step::first-line {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}

.consulting .flow-item_main {
  width: 100%;
  padding: 30px 20px 34px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #c8c8c8;
}

.consulting .flow-item_icon {
  width: 78px;
  height: 78px;
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.consulting .flow-item_title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}

.consulting .flow-item_content p {
  font-size: 16px;
  font-weight: 400;
  color: #505050;
  margin-top: 14px;
  line-height: 1.7;
}

.consulting {
  /* ===============================================
    # confirm
    =============================================== */
}

.consulting .form-lead {
  text-align: left;
  color: #505050;
  margin-bottom: 20px;
}

.consulting .form-group {
  margin-bottom: 10px;
}

.consulting .form .wpcf7-form-control-wrap {
  width: 100%;
}

.consulting .form-group input {
  height: 40px;
}

.consulting .form-group input,
.consulting .form-group textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid #c8c8c8;
  border-radius: 5px;
}

.consulting .form-group .required {
  background-color: #505050;
  color: white;
  margin: 0 0 0 10px;
}

.consulting .form-group .form-label {
  width: 100%;
}

.consulting .form-group a {
  margin-bottom: 10px;
  font-weight: bold;
  color: #505050;
}

.consulting .form-group .wpcf7-list-item-label::before {
  border: 2px solid #c8c8c8;
  background-color: white;
}

.consulting .form-group input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  top: 5px;
}

.consulting .form .btn {
  width: 100%;
  position: relative;
  font-size: 16px;
}

.consulting .form .btn.--black::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: white;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}

.consulting .form .btn::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url(../img/common/icon-arrow-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.consulting .form .btn:hover input {
  color: black;
}

.consulting .form .btn:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.consulting .optional {
  border: 1px solid #505050;
  background-color: white;
  color: #505050;
  margin-left: 10px;
}

.consulting .confirm-area .form-group + .form-group {
  margin-top: 20px;
}

.consulting .message {
  width: 100%;
  max-width: 1280px;
  padding: 100px 0;
  padding: 0 40px;
  margin: 116px auto 130px;
  overflow: hidden;
}

.consulting .message-block {
  position: relative;
  width: 100%;
  height: 500px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #38c7be), to(#00928c));
  background: linear-gradient(to right, #38c7be 50%, #00928c 100%);
  padding: 0px 100px;
}

.consulting .message-block a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.consulting .message-block_content {
  width: 65.5%;
  margin-left: auto;
}

.consulting .message-block_title {
  font-size: 30px;
  color: white;
  text-align: left;
}

.consulting .message-block_description {
  font-size: 16px;
  margin-top: 32px;
  color: white;
}

.consulting .message-block_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.consulting .point {
  width: 100%;
  position: relative;
  padding: 100px 0;
}

.consulting .point::before {
  content: "";
  display: inline-block;
  width: 100vw;
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.consulting .point-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
  margin-top: 60px;
}

.consulting .point-item {
  background-color: white;
  position: relative;
  padding: 60px 20px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.consulting .point-item_label {
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  font-size: 14px;
  font-family: "Lato", sans-serif;
}

.consulting .point-item_icon {
  width: 68px;
  height: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.consulting .point-item_title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

.consulting .point_description {
  font-size: 18px;
  line-height: 2;
  margin-top: 60px;
  color: #505050;
}

.consulting .point_description .bold {
  font-weight: bold;
}

.consulting .recommend {
  width: 100%;
  padding: 75px 0 0;
}

.consulting .recommend_list {
  width: 100%;
  margin-top: 20px;
}

.consulting .recommend_list li {
  width: 100%;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 18px;
  padding: 16px 20px;
  color: #505050;
  line-height: 1.7;
}

.consulting .recommend_list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  background-image: url(../img/common/icon-check-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.4em;
}

.consulting .recommend_list li + li {
  margin-top: 20px;
}

.consulting .works {
  width: 100%;
  padding: 90px 0 0;
}

.consulting .works-block {
  width: 100%;
  margin-top: 20px;
  background-image: url(../img/consulting/bg-works-img.jpg);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 70px 5px;
}

.consulting .works_num-text {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 45px 5px;
}

.consulting .works_num-text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: white;
  text-align: center;
}

.consulting .works_num-text p span {
  font-size: 62px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
}

.consulting .works-block .works_num-text:nth-of-type(2) {
  border-right: 1px solid white;
  border-left: 1px solid white;
}

.consulting .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-page {
  background-color: #f5f5f5;
}

.form-container {
  background-color: #fff;
  padding: 80px 20px 40px;
}

.form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* --------------------
代表あいさつ start
-------------------- */

.message .message-lead {
  margin-bottom: 0;
  font-weight: 400;
}

.message .message-lead h2 {
  font-size: 32px;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 50px;
  text-align: left;
}

.message .message-lead a {
  color: #e61964;
  text-decoration: underline;
  word-break: break-all;
  display: inline;
}

.message .lead-head {
  font-size: 20px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 4px;
  margin-top: 50px;
  margin-bottom: 16px;
}

.message .lead-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
}

.message .lead-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #000000;
  border-radius: 50%;
  margin-top: 7px;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.message .message-slider {
  margin-top: 100px;
}

.message .message-block {
  margin: 50px 0;
}

.message .message-sub-sec {
  margin-top: 50px;
}

.message .message-img {
  margin-top: 50px;
}

.message .message-img.mt-l {
  margin-top: 100px;
}

.message .message-img.mb-m {
  margin-bottom: 50px;
}

.message .message-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.message .message-col.is-fill {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 40px;
}

.message .message-col.is-width-1-3 {
  width: 38.33%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.message .comparison {
  margin-top: 36px;
}

.message .gray-onhead {
  margin-top: 100px;
}

.message .paragraph {
  line-height: 2;
}

.guide .service-card {
  margin-top: 52px;
}

.service {
  width: 100%;
  overflow: hidden;
  /* ===============================================
    # arrow
    =============================================== */
}

.service .overview {
  width: 100%;
  overflow-x: scroll;
}

.service .overview_item {
  width: 100%;
  min-width: 1067px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  padding: 16px 0 16px 0;
  position: relative;
}

.service .overview_item + .overview_item {
  position: relative;
  margin-top: 60px;
}

.service .overview_heading {
  width: 6.25rem;
  font-size: 18px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #000;
}

.service .overview_heading img {
  display: block;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
}

.service .overview_diagram {
  width: 100%;
  padding: 30px 3.125rem;
  position: relative;
}

.service .overview_diagram.--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service .overview_diagram.--vertical {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service .overview_card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service .overview_card > * {
  position: relative;
  z-index: 2;
}

.service .overview_diagram.--vertical > .overview_card {
  max-width: 410px;
  width: 100%;
}

.service .overview_diagram.--vertical > .overview_card + .overview_card {
  margin-top: 50px;
}

.service .overview_diagram.--horizontal {
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.1875rem;
}

.service .overview_title {
  font-size: 16px;
  min-height: 60px;
  color: white;
  background-color: #323232;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
  line-height: 1.4;
}

.service .overview_description {
  height: 100%;
  font-size: 13.5px;
  text-align: center;
  border: 1px solid #323232;
  border-top: none;
  padding: 20px 20px;
  line-height: 1.7;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service .overview_card.--short-arrow::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 51.5px;
  background-image: url(../img/service/icon-arrow-path.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, calc(100% - 10px));
          transform: translate(-50%, calc(100% - 10px));
  z-index: 1;
}

.service .overview_diagram.--horizontal::after {
  content: "";
  display: inline-block;
  width: 63%;
  height: 187.5px;
  background-image: url(../img/service/icon-arrow-path2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 80%;
  position: absolute;
  top: -70px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.service .works {
  position: relative;
  min-height: 770px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service .works .heading-sub {
  position: relative;
  z-index: 2;
}

.service .works .link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 60px;
}

.service .works_img-wrap {
  width: 1240px;
  height: auto;
  aspect-ratio: 1240/490;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% + 280px), -50%);
          transform: translate(calc(-50% + 280px), -50%);
  z-index: 1;
}

.service .works_img {
  display: block;
  width: 100%;
  height: 100%;
  margin-left: auto;
}

.service-detail .branding-approach_inner {
  padding: 0;
  margin-top: 160px;
}

.service-detail .branding-approach_content {
  margin-top: 55px;
}

.service-detail .branding-approach_phase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-detail .branding-approach_phase + .branding-approach_phase {
  margin-top: 60px;
}

.service-detail .branding-approach_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid black;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  padding: 0 22px;
}

.service-detail .branding-approach_label img {
  display: block;
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}

.service-detail .branding-approach_steps {
  padding-left: 40px;
}

.service-detail .branding-approach_step {
  padding: 53px 0;
  border-top: 1px solid #c8c8c8;
}

.service-detail .branding-approach_step:last-child {
  border-bottom: 1px solid #c8c8c8;
}

.service-detail .branding-approach_title {
  font-size: 16px;
  font-weight: bold;
}

.service-detail .branding-approach_title span {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  padding-right: 10px;
}

.service-detail .branding-approach_description {
  display: inline-block;
  font-size: 16px;
  padding-top: 16px;
}

.service-detail {
  /* ===============================================
    # active
    =============================================== */
}

.service-detail .commitment_inner {
  padding-top: 0;
  margin-top: 80px;
}

.service-detail .commitment .heading-sub {
  margin-bottom: 55px;
}

.service-detail .commitment_item + .commitment_item {
  margin-top: 50px;
}

.service-detail .commitment_header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #000;
  padding: 0 0 26px 0;
}

.service-detail .commitment_number {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  padding: 4px 16px 0 0;
}

.service-detail .commitment_term {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}

.service-detail .commitment_icon {
  width: 21px;
  height: 21px;
  background-color: #000;
  position: relative;
  border-radius: 50%;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-detail .commitment_icon::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  border-top: 1px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -25%);
          transform: translate(-50%, -25%);
}

.service-detail .commitment_icon::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  border-right: 1px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-75%, -50%);
          transform: translate(-75%, -50%);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

.service-detail .commitment_content {
  padding-top: 18px;
  font-size: 16px;
  overflow: hidden;
}

.service-detail .commitment_content p {
  line-height: 1.8;
}

.service-detail .commitment_header.active .commitment_icon::after {
  -webkit-transform: rotate(-90deg) translate(-50%, -50%);
          transform: rotate(-90deg) translate(-50%, -50%);
}

.service-detail .faq_inner {
  padding: 0;
  margin-top: 75px;
}

.service-detail .faq_container {
  margin-top: 45px;
}

.service-detail .faq_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.service-detail .faq_question span {
  padding-right: 16px;
}

.service-detail .faq_answer {
  padding: 13px 0 0 40px;
}

.service-detail .faq_item + .faq_item {
  margin-top: 55px;
}

.service-detail .pricing_inner {
  padding-top: 0;
  margin-top: 160px;
}

.service-detail .pricing_content {
  margin-top: 28px;
  border: 1px solid #000;
  padding: 16px 24px 28px 34px;
}

.service-detail .pricing_range {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-detail .pricing_amount {
  padding-left: 16px;
}

.service-detail .pricing .large {
  font-size: 1.8em;
  font-family: "Lato", sans-serif;
  padding-right: 6px;
}

.service-detail .process_inner {
  padding: 0;
  margin-top: 160px;
}

.service-detail .process_steps {
  margin-top: 24px;
}

.service-detail .process_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-detail .process_steps .process_step:last-child .process_label::after {
  display: none;
}

.service-detail .process_label {
  position: relative;
}

.service-detail .process_label::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.service-detail .process_circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid black;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: white;
  position: relative;
  z-index: 2;
}

.service-detail .process_circle .label {
  font-size: 12px;
}

.service-detail .process_circle .text {
  font-size: 18px;
}

.service-detail .process_content {
  padding: 0 0 50px 20px;
}

.service-detail .process_title {
  font-size: 18px;
  height: auto;
  font-weight: bold;
}

.service-detail .process_description {
  font-size: 16px;
  padding-top: 16px;
}

.service-detail .process .btn {
  max-width: 250px;
  height: 44px;
  margin-top: 14px;
}

.service-detail .reason_inner {
  padding: 0px 0 80px;
  margin-top: 140px;
}

.service-detail .reason_num-img {
  width: 200px;
  height: 200px;
  position: relative;
}

.service-detail .reason_number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

.service-detail .reason_num-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-detail .reason_subtitle {
  font-size: 22px;
  line-height: 1.4;
}

.service-detail .reason_description {
  font-size: 16px;
}

.service-detail .reason .heading-sub {
  margin-bottom: 68px;
}

.service-detail .reason_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-detail .reason_item + .reason_item {
  margin-top: 80px;
}

.service-detail .reason_num-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-detail .reason_number {
  font-size: 16px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
}

.service-detail .reason_content {
  padding-left: 3rem;
}

.service-detail .reason_subtitle {
  margin-top: 22px;
}

.service-detail .reason_description {
  padding-top: 22px;
}

.service-detail .recommendation .check-list {
  border: 1px solid black;
  padding: 40px 40px 47px 40px;
  margin-top: 40px;
}

.service-detail .recommendation .check-list_mark + .check-list_mark {
  margin-top: 23px;
}

.service-detail .services_inner {
  padding: 0;
  margin-top: 150px;
}

.service-detail .services .list {
  margin-top: 56px;
  gap: 3.125rem 2rem;
}

.service-detail .services_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 38px 16px;
  border: 1px solid black;
}

.service-detail .services_item img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-detail .services_item-title {
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.4;
}

.service-detail .services_item-description {
  max-width: 310px;
  margin-top: 28px;
  line-height: 1.7;
}

.singular.case {
  background-color: transparent;
}

.singular .inner.--flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.speciality .inner {
  padding: 75px 40px 100px;
}

.speciality .list {
  margin-top: 40px;
  gap: 50px 1.875rem;
}

.speciality .check-list {
  margin-top: 16px;
}

.speciality .check-list_lead {
  font-size: 16px;
  margin-bottom: 20px;
}

.speciality .check-list_mark {
  font-size: 14px;
}

.speciality .check-list_mark + .check-list_mark {
  margin-top: 13px;
}

.strength {
  /* ===============================================
    # img
    =============================================== */
}

.strength .point_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.strength .point_title {
  font-size: max(2.375rem, 32px);
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: left;
  padding: 0 1.25rem 37px 0;
}

.strength .point_content {
  max-width: 550px;
}

.strength .point_description {
  line-height: 2;
}

.strength .point_buttons {
  margin-top: 37px;
}

.strength .point_buttons .btn {
  font-size: 17px;
  max-width: 357px;
  height: 50px;
  padding: 0 44px 0 27px;
}

.strength .btn.--primary::before {
  right: 16px;
}

.strength .btn.--primary::after {
  right: 0;
}

.strength .point_buttons .btn + .btn {
  margin-top: 16px;
}

.strength .point_img {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/400;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.strength .point02_img {
  width: 100%;
  max-width: 1200px;
  height: 350px;
  margin: 80px auto 0;
}

.strength .point_fig {
  display: block;
  max-width: 880px;
  width: 100%;
  height: auto;
  aspect-ratio: 880/536;
  margin: 80px auto 0;
}

.thanks .container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 40px;
  margin: 120px auto 0;
}

.thanks .container h1 {
  font-size: 32px;
  margin-bottom: 40px;
}

.thanks .container p {
  font-size: 18px;
  line-height: 2;
}

.thanks .container a {
  margin: 60px auto 80px;
}

.top .consultation {
  width: 100%;
  background-color: #000;
}

.top .consultation .splide {
  width: 100%;
  height: 420px;
}

.top .consultation .splide__track,
.top .consultation .splide__list,
.top .consultation .splide__slide {
  height: 100%;
}

.top .consultation .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top .consultation_inner {
  max-width: 1080px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

.top .consultation_content {
  max-width: 600px;
}

.top .consultation_title {
  word-break: keep-all;
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-align: left;
}

.top .consultation_description {
  font-size: 16px;
  color: white;
  margin-top: 10px;
  line-height: 2;
}

.top .consultation_inner > .btn {
  max-width: 320px;
  width: 100%;
  margin-top: 28px;
}

.top .download {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top .download_title {
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.top .download_description {
  font-size: 16px;
  margin-top: 12px;
}

.top .download_features {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
}

.top .download_features .tag {
  font-size: 14px;
  color: #505050;
  margin-right: 10px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.top .download_features .tag::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #505050;
  margin-right: 7px;
  border-radius: 50%;
  -webkit-transform: translateY(0.1em);
          transform: translateY(0.1em);
}

.top .download_image {
  max-width: 390px;
  width: 50%;
  padding-left: 10px;
}

.top .download_image img {
  width: 100%;
  height: auto;
  aspect-ratio: 602/408;
}

.top .download .btn {
  max-width: 400px;
  margin-top: 40px;
}

.top .field_items {
  margin-top: 60px;
}

.top .field_items + .field_items {
  margin-top: 53px;
}

.top .field_head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top .field .list {
  gap: 16px 20px;
  margin-top: 20px;
}

.top .interview > .list {
  margin-top: 66px;
}

.top .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top .news > .heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top .news .heading_content {
  padding-right: 0;
}

.top .news > .news-list {
  padding-left: 8.125rem;
}

.top .report .list_item-tags {
  margin-bottom: 0;
}

.top .report > .list {
  margin-top: 50px;
}

.top .service > .service-card {
  margin-top: 45px;
}

.top .vision {
  width: 100%;
  padding: 40px 0 0;
  background-color: #f5f5f5;
}

.top .vision_img-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.top .vision_img-section .vision_copy {
  width: 100%;
  text-align: center;
  font-size: 62px;
  font-weight: bold;
  position: absolute;
  top: 74px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.top .vision_img {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/700;
}

.top .vision_img img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

.top .works .list {
  margin-top: 60px;
}

.p-seminar {
  padding: 60px;
  padding-bottom: 70px;
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 40px;
  margin-bottom: 90px;
}

.p-seminar__title {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.3;
  margin: 27px 0 25px;
}

.p-seminar__button {
  max-width: 90%;
  width: 350px;
  height: 60px;
  margin: 60px auto;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  font-weight: bold;
  font-size: clamp(18px, 1.38vw, 20px);
}

.p-seminar__button:hover {
  color: #000;
  background-color: #fff;
  opacity: 1;
}

.p-seminar__button.-is-closed {
  background-color: #cccccc;
  border: 1px solid #cccccc;
}

.p-seminar__button.-is-closed:hover {
  color: #fff;
  background-color: #cccccc;
}

.p-sidebar {
  width: 100%;
  max-width: 420px;
}

.p-sidebar__scroll {
  position: sticky;
  top: 97px;
  margin-bottom: 0;
  z-index: 1;
  padding-bottom: 20px;
}

/* ===============================================
# banner
=============================================== */

.p-sidebar__bnr {
  border: 6px solid #00b7ac;
  padding: 34px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-sidebar__bnr-text {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
}

.p-sidebar__bnr-text span {
  color: #00b7ac;
}

.p-sidebar__bnr-img {
  width: 100%;
  height: auto;
  aspect-ratio: 344/166;
  margin: 25px 0;
}

/* ===============================================
# toc
=============================================== */

.p-sidebar__toc {
  margin-top: 60px;
}

.p-sidebar__toc-header {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding-bottom: 19px;
  margin-bottom: 25px;
}

.p-sidebar__toc-area {
  border-left: 2px solid #D9D9D9;
  padding-left: 25px;
}

.p-sidebar__toc-link:hover {
  opacity: 0.8;
}

.p-sidebar__toc-h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  line-height: 1.4;
  padding-right: 30px;
  position: relative;
}

.p-sidebar__toc-h2.current a {
  position: relative;
}

.p-sidebar__toc-h2.current a::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: #00b7ac;
  position: absolute;
  top: 50%;
  left: -27px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.p-sidebar__toc-h3 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
}

.p-sidebar__toc-area .js-toc-accordion-trigger {
  cursor: pointer;
}

.p-sidebar__toc-area .js-toc-accordion-content {
  overflow: hidden;
}

.p-sidebar__toc-h2.js-toc-accordion-trigger::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 18px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-sidebar__toc-h2.js-toc-accordion-trigger.active::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.p-sidebar__toc-h2.js-toc-accordion-trigger::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.p-sub-mv {
  width: 100%;
}

.p-sub-mv__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px 45px;
}

.p-sub-mv__head-title {
  margin-right: 30px;
}

.p-sub-mv__head-lead {
  font-size: clamp(18px, 1.38vw, 20px);
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p-sub-mv__img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-mv .heading_inner {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-sub-mv .heading_description {
  margin-bottom: 15px;
}

.p-subpage-heading {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-subpage-heading__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.p-subpage-heading__sub::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 18px;
  background-image: url(../img/common/icon-any.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-subpage-heading__main {
  font-size: 48px;
  font-weight: 700;
  margin-top: 5px;
  line-height: 1.5;
  text-align: left;
}

.p-thanks {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 90px;
}

.p-thanks__title {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 90px;
}

.p-thanks__title.-mb-0 {
  margin-bottom: 0;
}

.p-thanks .wp-block-lazyblock-download-btn {
  width: 100%;
}

.p-thanks__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 60px 0 60px;
  text-align: center;
}

.p-work {
  margin-top: 60px;
}

.p-wp-content {
  /* ===============================================
  # 見出し
  =============================================== */
  /* ===============================================
  # 本文
  =============================================== */
  /* ===============================================
  # 画像
  =============================================== */
  /* ===============================================
  # list
  =============================================== */
  /* ===============================================
  # グループ
  =============================================== */
  /* ===============================================
  # button
  =============================================== */
  /* ===============================================
  # link
  =============================================== */
  /* ===============================================
  # テーブル
  =============================================== */
}

.p-wp-content h2 {
  font-size: clamp(22px, 2.22vw, 32px);
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
  border-top: 2px solid #D9D9D9;
  border-bottom: 2px solid #D9D9D9;
  margin: 60px 0 30px;
  padding: 35px 0;
  position: relative;
}

.p-wp-content h2::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: #00b7ac;
  position: absolute;
  top: -2px;
  left: 0;
}

.p-wp-content h3 {
  font-size: clamp(22fpx, 1.8vw, 26px);
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
  margin: 60px 0 30px;
  padding: 19px 0px 23px 25px;
  position: relative;
  border-top: 2px solid #D9D9D9;
  border-bottom: 2px solid #D9D9D9;
}

.p-wp-content h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #00b7ac;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.p-wp-content h4 {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 400;
  margin: 35px 0 30px;
  padding: 12px 0 12px 25px;
  line-height: 1.5;
  text-align: left;
  background-color: #f3f9f9;
  position: relative;
}

.p-wp-content h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #00b7ac;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.p-wp-content p {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.7;
}

.p-wp-content > p {
  margin-bottom: 30px;
}

.p-wp-content > p:not(.has-background) strong {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEE00), to(#FFEE00));
  background: linear-gradient(to bottom, #FFEE00 0%, #FFEE00 100%);
}

.p-wp-content > p.has-gray-background-color {
  padding: 30px;
  border: 1px solid #dddddd;
  border-radius: 6px;
}

.p-wp-content mark {
  font-style: normal;
}

.p-wp-content > .wp-block-image {
  margin: 30px 0;
}

.p-wp-content > .wp-block-image img {
  border: 1px solid #cccccc;
  border-radius: 10px;
}

.p-wp-content .wp-element-caption {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  margin: 8px auto 0;
}

.p-wp-content .wp-block-list {
  padding: 0;
}

.p-wp-content > ul,
.p-wp-content > ol {
  margin: 20px 0;
}

.p-wp-content ul li,
.p-wp-content ol li {
  font-size: clamp(16px, 1.25vw, 18px);
}

.p-wp-content .wp-block-list li {
  position: relative;
  line-height: 1.4;
  font-weight: bold;
}

.p-wp-content .wp-block-list li + li {
  margin-top: 0.8em;
}

.p-wp-content ul.wp-block-list li {
  padding-left: 23px;
}

.p-wp-content ul.wp-block-list li::before {
  position: absolute;
  left: 0;
  top: 9px;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #00b7ac;
  border-radius: 50%;
}

.p-wp-content ol.wp-block-list li {
  padding-left: 40px;
}

.p-wp-content ol.wp-block-list li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: counter(list-item);
  background-color: #00b7ac;
  color: #fff;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 28px;
}

.p-wp-content .wp-block-list.has-background {
  border-radius: 6px;
}

.p-wp-content ul.wp-block-list.has-background {
  padding: 1.75em 1.44em;
}

.p-wp-content ol.wp-block-list.has-background {
  padding: 1.75em 1.13em;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-background:first-child) {
  border-radius: 6px;
  overflow: hidden;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-background:first-child) p.has-background {
  font-weight: bold;
  margin: 0;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-background:first-child) p.has-background:has(+ ul.wp-block-list) {
  padding: 0.6em 1.44em;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-background:first-child) p.has-background:has(+ ol.wp-block-list) {
  padding: 0.6em 1.13em;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-background:first-child) ul.wp-block-list {
  padding: 1.75em 1.44em;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-background:first-child) ol.wp-block-list {
  padding: 1.75em 1.13em;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-paleblue-background-color:first-child) {
  border: 1px solid #00b7ac;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-paleblue-background-color:first-child) p.has-paleblue-background-color {
  border-bottom: 1px solid #00b7ac;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-gray-background-color:first-child) {
  border: 1px solid #dddddd;
}

.p-wp-content .wp-block-group__inner-container:has(> p.has-gray-background-color:first-child) p.has-gray-background-color {
  border-bottom: 1px solid #dddddd;
}

.p-wp-content > .wp-block-group {
  margin: 30px 0;
}

.p-wp-content .wp-block-group.has-gray-background-color {
  padding: 30px;
  border: 1px solid #dddddd;
  border-radius: 6px;
}

.p-wp-content .wp-block-group.has-gray-background-color p + p {
  margin-top: 5px;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container {
  border-radius: 6px;
  border: 1px solid #00b7ac;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:first-of-type .wp-block-group__inner-container {
  position: relative;
  background-color: #f3f9f9;
  padding: 36px 155px 27px 47px;
  border-radius: 6px;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:first-of-type .wp-block-group__inner-container::before {
  position: absolute;
  right: 12px;
  bottom: 0;
  content: "";
  width: 30%;
  min-width: 123px;
  max-width: 140px;
  height: 228px;
  background: url(../img/common/img_blog_smallcta_profile.png) no-repeat center/cover;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:first-of-type .wp-block-group__inner-container p:first-of-type {
  font-size: 24px;
  font-weight: bold;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:first-of-type .wp-block-group__inner-container p:first-of-type strong {
  position: relative;
  color: #FF0000;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:first-of-type .wp-block-group__inner-container p:first-of-type strong::before {
  position: absolute;
  bottom: -3px;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FF0000;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:first-of-type .wp-block-group__inner-container p:last-of-type {
  margin-top: 18px;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:last-of-type .wp-block-group__inner-container {
  background-color: #00b7ac;
  border-radius: 0px 0px 3px 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  padding: 20px;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:last-of-type .wp-block-group__inner-container .wp-block-buttons {
  margin: 0 !important;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:last-of-type .wp-block-group__inner-container .wp-block-button__link {
  background-color: #ffffff;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #fff;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:last-of-type .wp-block-group__inner-container .wp-block-button__link:hover {
  color: #ffffff;
  background-color: #00b7ac;
  opacity: 1;
}

.p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:last-of-type .wp-block-group__inner-container p {
  color: #fff;
  font-size: 14px;
  margin: 0 !important;
}

.p-wp-content .wp-block-button {
  margin: 0 auto 20px;
  max-width: 100%;
}

.p-wp-content .wp-block-button__link {
  background-color: #00b7ac;
  color: white;
  text-decoration: none;
  border: 1px solid #fff;
  font-weight: bold;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  padding: 0;
}

.p-wp-content .wp-block-button__link:hover {
  border: 1px solid #00b7ac;
  color: #00b7ac;
  background-color: white;
  opacity: 1;
}

.p-wp-content > a {
  color: #00b7ac;
  text-decoration: underline;
}

.p-wp-content > a:hover {
  opacity: 0.8;
}

.p-wp-content .wp-block-table {
  display: block;
  width: 100%;
  margin: 30px 0;
}

.p-wp-content table {
  border-collapse: collapse;
  line-height: 1.5;
  min-width: 600px;
}

.p-wp-content table th,
.p-wp-content table td {
  border: 1px solid #00b7ac;
  text-align: left;
  padding: 16px 22px;
}

.p-wp-content table th {
  background-color: #f3f9f9;
}

.p-wp-content table thead {
  border-bottom: none;
}

.p-wp-content table th:first-child,
.p-wp-content table td:first-child {
  white-space: nowrap;
}

.p-wp-content .-heading-column1 table th:first-child,
.p-wp-content .-heading-column1 table td:first-child {
  background-color: #f3f9f9;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }

  .flex-container_right {
    width: 400px;
  }
}

@media (max-width: 1440px) {
  .p-inquiry__remaining-wrap {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    right: 0;
    position: sticky;
  }
}

@media (max-width: 1280px) {
  .c-button {
    font-size: 16px;
  }

  .p-blog {
    width: 65%;
  }

  .p-blog__content .p-blog__cta-content {
    padding: 30px;
  }

  .singular .inner.--flex {
    display: block;
  }

  .p-sidebar {
    width: 35%;
  }

  .p-sidebar__bnr {
    padding: 20px 10px;
  }

  .p-sidebar__bnr-text {
    font-size: 22px;
  }
}

@media screen and (max-width: 1280px) {
  .btn.--download2 {
    font-size: 16px;
  }

  .btn.--download2::before {
    right: 20px;
  }

  .btn.--download2::after {
    right: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .flex-container_left {
    padding: 0 3.75rem;
  }

  .consulting .works-block {
    padding: 50px 5px;
  }

  .consulting .works_num-text p span {
    font-size: 54px;
  }

  .service .works_img-wrap {
    width: 83.3333333333vw;
  }
}

@media screen and (max-width: 1150px) {
  .header_inner {
    padding: 0 40px;
  }

  .header_inner:not(.-center) .header_content {
    position: absolute;
    z-index: 100;
    top: 80px;
    right: 0;
    background: #fff;
    text-align: center;
    width: 100%;
    height: calc(100svh - 80px);
    padding: 30px 0 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
  }

  .header_nav {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .header_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .header_item {
    height: 60px;
  }

  .header_link::after {
    bottom: 10px;
  }

  .header_actions {
    margin-left: 0;
    margin-top: 40px;
  }

  .header_toggle {
    display: block;
  }
}

@media screen and (max-width: 1084px) {
  .service .overview_heading {
    width: 74px;
  }

  .service .overview_diagram {
    padding: 30px 37px;
  }

  .service .overview_diagram.--horizontal {
    gap: 26px;
  }
}

@media screen and (max-width: 1080px) {
  .problem_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .problem_inner .check-list {
    margin-top: 32px;
  }
}

@media screen and (max-width: 1040px) {
  .top .consultation_title {
    font-size: 43px;
  }
}

@media (max-width: 1024px) {
  .c-interview-card:nth-child(2n)::before {
    display: none;
  }

  .c-interview-card:nth-child(2n-1)::before {
    display: block;
  }

  .c-work-card:nth-child(2n)::before {
    display: none;
  }

  .c-work-card:nth-child(2n-1)::before {
    display: block;
  }

  .--over-lg {
    display: none;
  }

  .l-flex.--vertical-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .l-grid.--col3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .l-split__aside {
    width: 40%;
  }

  .l-split__main {
    width: 60%;
    padding: 100px 3.75rem 3.75rem 3.75rem;
  }

  .l-split__aside-content {
    margin: 160px auto;
  }

  .p-blog {
    display: contents;
  }

  .p-blog__head {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .p-blog__body {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .p-blog__thumbnail {
    margin: 40px 0 64px;
  }

  .p-form__label {
    max-width: 200px;
  }

  .p-link-dl {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .p-sidebar {
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

@media screen and (max-width: 1024px) {
  .service .inner.overview {
    padding: 95px 0px 125px;
  }

  .brand-statement .inner.values-rule {
    display: block;
  }

  .consulting .heading {
    font-size: 24px;
  }

  .reason_img.--large {
    width: 100%;
  }

  .reason_item.--stack-at-1024 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .reason_item.--stack-at-1024 .reason_content {
    padding-left: 0;
    display: contents;
  }

  .reason_item.--stack-at-1024 .reason_number {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .reason_item.--stack-at-1024 .reason_subtitle {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 16px;
  }

  .reason_item.--stack-at-1024 .reason_img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 20px;
  }

  .reason_item.--stack-at-1024 .reason_description {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .vision-mission_text {
    font-size: 16.5px;
  }

  .brand-statement .values-rule_item-wrap {
    margin: 40px 0 0 0;
  }

  .brand-statement .values-rule_heading {
    min-width: 230px;
  }

  .flex-container_left {
    width: calc(100% - 320px);
  }

  .flex-container_right {
    width: 320px;
  }

  .consulting .flow-item::before {
    left: 40px;
  }

  .consulting .flow-item_step {
    width: 100px;
  }

  .consulting .flow-item_icon {
    width: 50px;
    height: 50px;
  }

  .consulting .flow-item_title {
    font-size: 20px;
  }

  .consulting .point-item_title {
    font-size: 18px;
  }

  .consulting .point_description {
    font-size: 16px;
    margin-top: 50px;
  }

  .consulting .recommend_list li {
    font-size: 16px;
  }

  .consulting .recommend_list li::before {
    margin-right: 0.8em;
  }

  .consulting .works-block {
    padding: 40px 5px;
  }

  .consulting .works_num-text p {
    font-size: 15px;
  }

  .consulting .works_num-text p span {
    font-size: 40px;
  }

  .strength .point_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .top .news > .news-list {
    padding-left: 5rem;
  }

  .top .vision_img {
    width: 100%;
    height: 700px;
  }
}

@media screen and (max-width: 1000px) {
  .cta_title {
    font-size: 28px;
  }
}

@media screen and (max-width: 900px) {
  .footer_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service .works_img-wrap {
    width: 750px;
  }
}

@media (max-width: 769px) {
  .c-button::before {
    right: 20px;
  }

  .c-button::after {
    right: 20px;
  }

  .c-button.p-mv__button {
    font-size: 18px;
  }

  .c-interview-card::before {
    display: none;
  }

  .c-work-card::before {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .c-work-card:nth-child(2n)::before {
    display: block;
  }

  .c-wp-pagination {
    margin-top: 40px;
  }

  .c-wp-pagination .nav-links {
    gap: 0 10px;
  }

  .c-wp-pagination .page-numbers {
    width: 40px;
    height: 40px;
  }

  .l-block__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer_bottom {
    margin-top: 126px;
  }

  .l-grid.--col2 {
    grid-template-columns: 1fr;
  }

  .l-grid.--col3 {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .l-grid.--border > *:nth-of-type(2)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(5)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(8)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(11)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(14)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(17)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(20)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(23)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(26)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(29)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(32)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(35)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(38)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(41)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(44)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(47)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(50)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(53)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(56)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(59)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(62)::before {
    border-left: none;
    top: initial;
  }

  .l-grid.--border > *:nth-of-type(2)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(5)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(8)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(11)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(14)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(17)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(20)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(23)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(26)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(29)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(32)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(35)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(38)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(41)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(44)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(47)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(50)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(53)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(56)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(59)::after {
    display: none;
  }

  .l-grid.--border > *:nth-of-type(62)::after {
    display: none;
  }

  .l-grid.--border > *:not(:last-child)::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #c8c8c8;
    position: absolute;
    bottom: -20px;
    left: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }

  .inner.--flex {
    display: block;
  }

  .inner {
    padding: 80px 40px;
  }

  .inner_main {
    width: 100%;
  }

  .inner.--flex {
    padding: 75px 40px 115px;
  }

  .top .inner.works {
    padding: 80px 40px;
  }

  .top .inner.service {
    padding: 80px 40px;
  }

  .top .inner.download {
    padding: 80px 40px;
  }

  .top .inner.field {
    padding: 80px 40px;
  }

  .top .inner.interview {
    padding: 80px 40px;
  }

  .top .inner.report {
    padding: 80px 40px;
  }

  .top .inner.news {
    padding: 80px 40px;
  }

  .service .inner.overview {
    padding: 80px 40px;
  }

  .service .inner.guide {
    padding: 80px 40px;
  }

  .service .inner.works {
    padding: 80px 40px;
  }

  .strength .inner {
    padding: 80px 40px;
  }

  .brand-statement .inner.values-rule {
    padding: 80px 40px;
  }

  .brand-statement .inner.about-any {
    padding: 80px 40px;
  }

  .inner.report .heading_main {
    font-size: 24px;
  }

  .l-split {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .l-split__aside {
    width: 100%;
    max-width: 400px;
    position: relative;
    top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0 auto;
  }

  .l-split__main {
    width: 100%;
    padding: 100px 40px;
  }

  .p-blog__toc-list {
    width: 100%;
    border-left: none;
    border-top: 2px solid #E3E3E3;
    padding-left: 0px;
    padding-top: 20px;
  }

  .p-blog__content .p-blog__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    background-color: #F8F8F8;
  }

  .p-blog__content .p-blog__cta-content {
    display: contents;
  }

  .p-blog__content .p-blog__cta-sub {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .p-blog__content .p-blog__cta-heading {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .p-blog__content .p-blog__cta-subheading {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .p-blog__content .p-blog__cta-text {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .p-blog__content .p-blog__cta a {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    margin: 10px auto 0;
  }

  .p-blog__content .p-blog__cta-img {
    width: 100%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 16px;
  }

  .p-category-list__item a {
    padding: 9px 12px;
  }

  .p-cta a {
    padding: 40px;
  }

  .p-cta__title {
    font-size: 40px;
  }

  .p-cta__text {
    max-width: 80%;
  }

  .p-cta__icon {
    width: 40px;
  }

  .p-cta__icon img {
    width: 8px;
  }

  .information_item {
    display: block;
  }

  .information_head {
    margin-bottom: 24px;
  }

  .site-capture_inner {
    gap: 20px;
  }

  .p-form__group {
    display: block;
  }

  .p-form__group .wpcf7-form-control-wrap,
  .p-form__group [class^=confirm-] {
    width: 100%;
  }

  .p-inquiry {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-inquiry__left {
    width: 100%;
    padding: 60px 20px;
  }

  .p-inquiry__left::before {
    display: none;
  }

  .p-inquiry__left-content {
    margin-right: 0;
    max-width: 100%;
  }

  .p-inquiry__left .wp-block-group {
    margin-top: 40px;
  }

  .p-inquiry__right {
    width: 100%;
    padding: 0 20px 120px;
    position: relative;
  }

  .p-inquiry__right-content {
    margin-left: 0;
    margin-top: 80px;
  }

  .p-inquiry__remaining {
    position: absolute;
    top: 30px;
    right: 10px;
  }

  .p-inquiry__remaining-wrap {
    -webkit-transform: translateX(-125%);
            transform: translateX(-125%);
  }

  .p-link-dl__title {
    font-size: 18px;
  }

  .p-link-dl__title.link .icon {
    font-size: 8px;
  }

  .btn.--primary {
    font-size: 16px;
  }

  .btn.--download {
    font-size: 16px;
  }

  .cta_inner {
    display: block;
  }

  .cta_item {
    width: 100%;
  }

  .cta_item + .cta_item {
    border-left: none;
    border-top: 1px solid #57575d;
  }

  .heading_content {
    padding-right: 40px;
  }

  .heading_main {
    font-size: 43px;
  }

  .heading_description {
    font-size: 18px;
  }

  .heading-sub_title {
    font-size: 27px;
  }

  .heading-sub_description {
    font-size: 17px;
  }

  .info-card {
    padding: 25px 20px;
  }

  .pricing_inner {
    padding: 0;
  }

  .reason_inner {
    padding: 0;
  }

  .reason_content {
    padding-left: 1.25rem;
  }

  .problem .check-list_mark {
    font-size: 18px;
  }

  .vision-mission {
    height: 550px;
  }

  .vision-mission_text {
    font-size: 15px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card::before {
    display: none;
  }

  .service-card_item + .service-card_item {
    padding-top: 60px;
  }

  .archive-news .news-list_item {
    display: block;
  }

  .archive-news .news-list_title {
    padding-top: 18px;
  }

  .service-detail .pricing_inner {
    padding: 0;
  }

  .service-detail .process_inner {
    padding: 0;
    margin-top: 120px;
  }

  .service-detail .reason_inner {
    padding: 0;
    margin-top: 120px;
  }

  .service-detail .reason_content {
    padding-left: 1.25rem;
  }

  .service-detail .recommendation .check-list {
    padding: 30px;
  }

  .service-detail .services_inner {
    padding: 0;
    margin-top: 120px;
  }

  .service-detail .services .list {
    margin-top: 40px;
    gap: 40px;
  }

  .brand-statement .fig {
    margin: 60px auto 0;
  }

  .service .works {
    min-height: 500px;
  }

  .service .works .heading-sub {
    padding: 30px;
  }

  .service .works .heading-sub::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 5px;
    -webkit-filter: blur(3px);
            filter: blur(3px);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }

  .service .works_img-wrap {
    width: 100%;
    height: 90%;
    display: block;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

  .service .works_img {
    -o-object-fit: cover;
       object-fit: cover;
  }

  .service-detail .pricing_inner {
    padding: 0;
  }

  .service-detail .process_inner {
    padding: 0;
    margin-top: 120px;
  }

  .service-detail .reason_inner {
    padding: 0;
    margin-top: 120px;
  }

  .service-detail .reason_content {
    padding-left: 1.25rem;
  }

  .service-detail .recommendation .check-list {
    padding: 30px;
  }

  .service-detail .services_inner {
    padding: 0;
    margin-top: 120px;
  }

  .service-detail .services .list {
    margin-top: 40px;
    gap: 40px;
  }

  .speciality .inner {
    padding: 60px 20px;
  }

  .speciality .list {
    gap: 30px 30px;
  }

  .strength .point_title {
    font-size: 28px;
    padding: 0 0 20px 0;
  }

  .top .consultation_title {
    font-size: 38px;
  }

  .top .download {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .top .download_content {
    display: contents;
  }

  .top .download_title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }

  .top .download_description {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 20px;
    text-align: center;
  }

  .top .download_features {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin: 24px auto 0;
  }

  .top .download_image {
    width: 100%;
    max-width: 500px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 0;
    margin: 20px auto 0;
  }

  .top .download .btn {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin: 40px auto 0;
  }

  .top .field .list {
    margin-top: 30px;
  }

  .top .news {
    display: block;
  }

  .top .news > .news-list {
    padding-left: 0;
    margin-top: 64px;
  }

  .top .report > .list {
    margin-top: 45px;
  }

  .top .vision_img-section .vision_copy {
    font-size: 55px;
  }

  .top .vision_img {
    height: 600px;
  }

  .p-seminar {
    padding: 30px;
  }

  .p-sidebar__bnr {
    width: 100%;
    text-align: center;
  }

  .p-sub-mv__head {
    display: block;
    padding: 80px 40px 45px;
  }

  .p-sub-mv__head-lead {
    margin-top: 30px;
  }

  .p-wp-content h2 {
    padding: 28px 0;
  }

  .p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:last-of-type .wp-block-group__inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 769px) {
  html {
    font-size: 2.9357798165vw;
  }

  .l-flex {
    display: block;
    gap: 40px;
  }

  .preview-edge-slider .splide__pagination__page {
    margin: 0 12px;
  }

  .preview-edge-slider .splide__arrow-custom--prev,
  .preview-edge-slider .splide__arrow-custom--next {
    width: 40px;
    height: 40px;
  }

  .preview-edge-slider .splide__arrow-custom--prev img,
  .preview-edge-slider .splide__arrow-custom--next img {
    width: 14px;
    height: 11px;
  }

  .related-excerpt {
    display: none;
  }

  .consulting .heading {
    font-size: 28px;
  }

  .flex-container {
    display: contents;
  }

  .flex-container_left {
    display: contents;
  }

  .flex-container_inner {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0 40px;
    overflow: hidden;
  }

  .flex-container_right {
    width: 100%;
    height: auto;
    padding: 0 40px 80px;
    position: initial;
    top: initial;
    overflow: initial;
    margin-top: 60px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .consulting .form-group .form-label br {
    display: none;
  }

  .consulting .confirm-area .form-label + span {
    margin-top: 16px;
  }

  .consulting .message {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 60px auto 0;
    padding: 0;
  }

  .consulting .message-block {
    padding: 0 40px;
  }

  .consulting .message-block_content {
    width: 70%;
  }

  .consulting .point-grid {
    gap: 20px;
  }

  .consulting .point-item_label {
    top: 20px;
    left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .overview .lead {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .overview .lead .paragraph {
    margin-bottom: 50px;
  }

  .overview .logo-company .desc-logo {
    display: block;
    text-align: center;
  }

  .overview .logo-company .desc-logo p {
    max-width: 100%;
  }

  .overview .list-member li img {
    margin: 0 auto 30px auto;
    max-width: 150px;
  }

  .overview .list-member li .desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 20px;
    margin-bottom: 15px;
  }

  .overview .list-member li .desc h4 {
    margin-bottom: 20px;
  }

  .overview .list-member li .desc .position,
  .overview .list-member li .desc .name {
    text-align: center;
  }

  .overview .list-member li .achievement {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .overview .list-member li .achievement .ttl {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 650px) {
  .top .vision_img-section .vision_copy {
    font-size: 49px;
  }
}

@media screen and (max-width: 576px) {
  .overview .sec-company {
    padding: 60px 0;
  }

  .overview .tbl {
    font-size: 12px;
  }

  .overview .tbl tr th,
  .overview .tbl tr td {
    padding: 20px 15px;
  }

  .overview .tbl tr th {
    width: 100px;
  }

  .overview .philosophy p {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .overview .logo-company .desc-logo .logo > img {
    width: 200px;
  }

  .overview .list-member > li {
    margin-bottom: 50px;
  }

  .overview .list-member li .desc .position,
  .overview .list-member li .desc .name {
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .message .message-lead h2 {
    font-size: 30px;
  }

  .message .message-sec.mb-l {
    margin-bottom: 50px;
  }

  .message .message-img.mt-l {
    margin-top: 50px;
  }

  .message .message-cols {
    display: block;
  }

  .message .message-col.is-fill {
    margin-right: 0;
  }

  .message .message-col.is-width-1-3 {
    width: 100%;
    margin-top: 45px;
  }

  .message .message-slider {
    margin: 50px 0;
  }

  .message .gray-onhead {
    margin-top: 50px;
  }
}

@media (max-width: 545px) {
  .c-blog-card__tags {
    margin-top: 15px;
  }

  .c-breadcrumb-nav {
    padding: 12px 20px;
  }

  .c-button.p-mv__button {
    max-width: 100%;
  }

  .c-button.p-mv__button::before {
    width: 23px;
    right: 4px;
  }

  .c-button.p-mv__button::after {
    width: 6px;
    right: 21px;
  }

  .c-profile {
    padding: 30px 15px;
  }

  .c-profile__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }

  .c-profile__image {
    margin: 0;
  }

  .c-profile__text {
    text-align: center;
  }

  .c-profile__company {
    margin-top: 5px;
  }

  .c-profile__position {
    margin-top: 0;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .--over-sp {
    display: none;
  }

  .--under-sp {
    display: block;
  }

  .l-block {
    padding-right: 20px;
    padding-left: 20px;
  }

  .l-block__inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .l-block__inner.-pt-160 {
    padding-top: 80px;
  }

  .l-block__inner.-pb-45 {
    padding-bottom: 30px;
  }

  .l-block__inner.-pb-60 {
    padding-bottom: 30px;
  }

  .footer_content {
    padding: 64px 20px 0;
  }

  .footer_bottom {
    margin-top: 113px;
  }

  .footer_address {
    padding: 0 20px;
  }

  .l-grid.--col3 {
    gap: 40px;
  }

  .inner {
    padding: 60px 20px;
  }

  .inner_main {
    width: 100%;
  }

  .inner.--flex {
    padding: 75px 20px 115px;
  }

  .top .inner.works {
    padding: 60px 20px;
  }

  .top .inner.service {
    padding: 60px 20px;
  }

  .top .inner.download {
    padding: 60px 20px;
  }

  .top .inner.field {
    padding: 60px 20px;
  }

  .top .inner.interview {
    padding: 60px 20px;
  }

  .top .inner.report {
    padding: 60px 20px;
  }

  .top .inner.news {
    padding: 60px 20px;
  }

  .service .inner.overview {
    padding: 60px 20px;
  }

  .service .inner.guide {
    padding: 60px 20px;
  }

  .service .inner.works {
    padding: 60px 20px;
  }

  .strength .inner {
    padding: 60px 20px;
  }

  .brand-statement .inner.values-rule {
    padding: 60px 20px;
  }

  .brand-statement .inner.about-any {
    padding: 60px 20px;
  }

  .l-split__main {
    width: 100%;
    padding: 40px 20px;
  }

  .p-blog__head-ttl {
    margin-bottom: 30px;
  }

  .p-blog__author-text span {
    font-size: 16px;
  }

  .p-blog__author-intro {
    font-size: 16px;
  }

  .p-blog__content .p-blog__cta-heading {
    font-size: 32px;
  }

  .p-blog__content .p-blog__cta-subheading {
    font-size: 18px;
  }

  .p-category-list {
    gap: 12px;
  }

  .p-cta a {
    padding: 40px 20px 80px;
  }

  .p-cta__title {
    font-size: 30px;
  }

  .p-cta__text {
    max-width: 100%;
  }

  .p-cta__icon {
    right: 0;
    bottom: 0;
    top: initial;
  }

  .information {
    padding: 30px 20px;
  }

  .main-copy {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .site-capture_inner {
    padding: 30px 20px;
  }

  .p-form__inner {
    padding: 0 15px;
  }

  .p-link-dl {
    grid-template-columns: 1fr;
  }

  .p-link-dl__title {
    font-size: 17px;
  }

  .p-link-dl__title.link .icon {
    width: 30px;
    height: 30px;
  }

  .p-link-dl__title.link .icon::before {
    width: 26px;
    height: 26px;
  }

  .p-link-dl__title.link .icon::after {
    width: 7px;
    height: 10px;
  }

  .branding-approach_inner {
    padding: 0 0 0 0;
  }

  .branding-approach_phase {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .branding-approach_label {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    padding: 8px 16px;
  }

  .branding-approach_label img {
    width: 45px;
    height: 45px;
    margin: 0 16px 0 0;
  }

  .branding-approach_steps {
    padding-left: 0;
  }

  .branding-approach_step {
    padding: 40px 0;
  }

  .btn.--primary {
    height: 60px;
  }

  .btn.--download {
    height: 60px;
  }

  .check-list_mark::before {
    margin-right: 8px;
  }

  .cta_item {
    height: 400px;
  }

  .heading_main {
    font-size: 38px;
  }

  .heading_description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .process_steps {
    margin-top: 35px;
  }

  .heading-sub_title {
    font-size: 25px;
  }

  .heading-sub_description {
    font-size: 16px;
  }

  .pricing_content {
    padding: 16px;
  }

  .pricing_amount {
    padding-left: 10px;
  }

  .pricing .large {
    padding-right: 3px;
    font-size: 1.7em;
  }

  .reason_subtitle {
    font-size: 19px;
  }

  .reason .heading-sub {
    margin-bottom: 40px;
  }

  .reason_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .reason_content {
    display: contents;
  }

  .sticky-cta {
    padding: 10px 12px;
  }

  .problem_inner {
    padding: 80px 20px;
  }

  .problem .heading-sub_title {
    font-size: 32px;
  }

  .problem .check-list_mark {
    font-size: 16px;
  }

  .vision-mission {
    height: 450px;
  }

  .vision-mission_wrap {
    padding: 110px 10px 0;
  }

  .vision-mission_text {
    font-size: 14px;
  }

  .vision-mission > .btn {
    margin: 30px auto 0;
    width: calc(100% - 40px);
  }

  .service-detail .branding-approach_inner {
    padding: 0 0 0 0;
    margin-top: 120px;
  }

  .service-detail .branding-approach_phase {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service-detail .branding-approach_label {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    padding: 8px 16px;
  }

  .service-detail .branding-approach_label img {
    width: 45px;
    height: 45px;
    margin: 0 16px 0 0;
  }

  .service-detail .branding-approach_steps {
    padding-left: 0;
  }

  .service-detail .branding-approach_step {
    padding: 40px 0;
  }

  .service-detail .commitment_inner {
    padding: 0;
    margin-top: 120px;
  }

  .service-detail .commitment_item + .commitment_item {
    margin-top: 40px;
  }

  .service-detail .commitment_number {
    padding: 4px 10px 0 0;
  }

  .service-detail .commitment_term {
    font-size: 18px;
  }

  .service-detail .faq_inner {
    padding: 0;
    margin-top: 60px;
  }

  .service-detail .pricing_content {
    padding: 16px;
  }

  .service-detail .pricing_amount {
    padding-left: 10px;
  }

  .service-detail .pricing .large {
    padding-right: 3px;
    font-size: 1.7em;
  }

  .service-detail .process_steps {
    margin-top: 35px;
  }

  .service-detail .reason_subtitle {
    font-size: 19px;
  }

  .service-detail .reason_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service-detail .reason_content {
    display: contents;
  }

  .service-detail .recommendation .check-list {
    padding: 20px;
  }

  .brand-statement .about-any .list {
    gap: 30px;
  }

  .brand-statement .lead {
    padding: 120px 20px;
    font-size: 15px;
  }

  .brand-statement .vision-mission {
    height: 500px;
    background-size: 1000px 500px;
    margin-top: -40%;
  }

  .brand-statement .values-rule_item {
    display: block;
    padding: 40px 0;
  }

  .brand-statement .values-rule_description {
    margin-top: 24px;
  }

  .service-detail .branding-approach_inner {
    padding: 0 0 0 0;
    margin-top: 120px;
  }

  .service-detail .branding-approach_phase {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service-detail .branding-approach_label {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    padding: 8px 16px;
  }

  .service-detail .branding-approach_label img {
    width: 45px;
    height: 45px;
    margin: 0 16px 0 0;
  }

  .service-detail .branding-approach_steps {
    padding-left: 0;
  }

  .service-detail .branding-approach_step {
    padding: 40px 0;
  }

  .service-detail .commitment_inner {
    padding: 0;
    margin-top: 120px;
  }

  .service-detail .commitment_item + .commitment_item {
    margin-top: 40px;
  }

  .service-detail .commitment_number {
    padding: 4px 10px 0 0;
  }

  .service-detail .commitment_term {
    font-size: 18px;
  }

  .service-detail .faq_inner {
    padding: 0;
    margin-top: 60px;
  }

  .service-detail .pricing_content {
    padding: 16px;
  }

  .service-detail .pricing_amount {
    padding-left: 10px;
  }

  .service-detail .pricing .large {
    padding-right: 3px;
    font-size: 1.7em;
  }

  .service-detail .process_steps {
    margin-top: 35px;
  }

  .service-detail .reason_subtitle {
    font-size: 19px;
  }

  .service-detail .reason_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service-detail .reason_content {
    display: contents;
  }

  .service-detail .recommendation .check-list {
    padding: 20px;
  }

  .singular .inner.--flex {
    padding: 40px 20px;
  }

  .strength .point_title {
    font-size: 22px;
  }

  .strength .point_buttons .btn {
    font-size: 14px;
    padding: 0 0 0 14px;
  }

  .strength .point02_img {
    margin: 60px auto 0;
  }

  .strength .point_fig {
    margin: 60px auto 0;
  }

  .top .consultation .splide {
    height: 300px;
  }

  .top .consultation_title {
    font-size: 34px;
  }

  .top .download_description {
    text-align: left;
  }

  .top .field_category {
    font-size: 16px;
  }

  .top .report > .list {
    margin-top: 40px;
  }

  .top .vision_img-section .vision_copy {
    font-size: 2.75rem;
  }

  .top .vision_img {
    height: 400px;
  }

  .p-seminar {
    padding: 30px 15px;
  }

  .p-seminar__button {
    margin: 30px auto;
  }

  .p-sub-mv__head {
    padding: 80px 20px 45px;
  }

  .p-sub-mv__img {
    height: 300px;
  }

  .p-subpage-heading__sub::before {
    margin-right: 8px;
  }

  .p-subpage-heading__main {
    font-size: 32px;
  }

  .p-wp-content h2 {
    padding: 22px 0;
  }

  .p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:first-of-type .wp-block-group__inner-container::before {
    right: 0;
  }
}

@media screen and (max-width: 545px) {
  .header_inner {
    padding: 0 20px;
  }

  .simple-img {
    padding: 0 20px;
  }

  .video-block {
    padding: 0 20px;
  }

  .logo-block-wrap {
    padding: 0 20px;
  }

  .related-link a {
    padding: 15px 13px 13px 13px;
  }

  .related-thumbnail {
    margin-right: 10px;
  }

  .related-title {
    font-size: 14px;
  }

  .flex-container_inner {
    padding: 0 20px;
  }

  .flex-container_right {
    padding: 0 20px 80px;
  }

  .consulting .flow-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }

  .consulting .flow-item + .flow-item {
    margin-top: 40px;
  }

  .consulting .flow-item::before {
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }

  .consulting .flow-item_step {
    padding-bottom: 10px;
  }

  .consulting .flow-item_main {
    border-top: 1px solid #c8c8c8;
    border-left: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }

  .consulting .flow-item_icon {
    margin-right: 0;
  }

  .consulting .flow-item_title {
    margin-top: 16px;
    text-align: center;
  }

  .consulting .message-block {
    padding: 0 20px;
  }

  .consulting .message-block_content {
    width: 100%;
  }

  .consulting .message-block_title {
    font-size: 24px;
  }

  .consulting .message-block_description {
    font-size: 14px;
    line-height: 2;
  }

  .consulting .message-block_bg {
    width: auto;
    opacity: 0.4;
    left: 50%;
    -webkit-transform: translateX(-23%);
            transform: translateX(-23%);
  }

  .consulting .point-grid {
    gap: 15px;
  }

  .consulting .point-item {
    padding: 50px 5px 35px;
  }

  .consulting .point-item_icon {
    width: 50px;
    height: 50px;
  }

  .consulting .point-item_title {
    font-size: 16px;
    margin-top: 16px;
  }

  .consulting .works-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 5px 5px;
  }

  .consulting .works_num-text {
    width: 50%;
  }

  .consulting .works-block .works_num-text:nth-of-type(2) {
    border-right: none;
  }

  .consulting .works-block .works_num-text:nth-of-type(3) {
    width: 80%;
    border-top: 1px solid white;
  }

  .thanks .container {
    padding: 0 20px;
  }

  .thanks .container h1 {
    font-size: 24px;
  }
}

@media screen and (max-width: 465px) {
  .p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:first-of-type .wp-block-group__inner-container {
    padding: 27px 20px 30px 25px;
  }

  .p-wp-content .wp-block-group.-small-cta > .wp-block-group__inner-container .wp-block-group:first-of-type .wp-block-group__inner-container p:last-of-type {
    padding-right: 103px;
  }
}

@media screen and (max-width: 400px) {
  .cta_title {
    font-size: 26px;
  }
}

@media screen and (max-width: 385px) {
  .heading_main {
    font-size: 36px;
  }
}

@media (any-hover: hover) {
  .header_link:hover::after {
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
}