@charset "UTF-8";
/*
 * 基本設計について
 * このプロジェクトは、基本的にPCファーストで設計されています。
 * 詳細は、_global/_breakpoints.scssを参照してください。
 */
/*
 * リセットCSSについて
 * ブラウザのデフォルトスタイルをリセットします。
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Rashi+Hebrew:wght@600&display=swap');
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  cursor: pointer;
}

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type='number'] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

summary::-webkit-details-marker {
  display: none;
}

/*
 * フォントについて
 * フォントの定義を行います。
 */
/*
 * 変数について
 * プロジェクト全体で使用される変数を定義します。
 */
:root {
  --font-size__base: 16;
  --font-family__base: 'Noto Sans JP', sans-serif;
  --font-family__roboto: 'Roboto', sans-serif;
  --font-family__inter: 'Inter', sans-serif;
  --font-family__montserrat: 'Montserrat', sans-serif;
  --font-family__outfit: 'Outfit', sans-serif;
  --font-family__sawarabi-gothic: 'Sawarabi Gothic', sans-serif;
  --font-family__noto-rashi-hebrew: 'Noto Rashi Hebrew', sans-serif;
  --max-width__base: 1920;
  --width__contents: 1124;
  --space-inline__base: 25;
  --padding-block__base: 30;
  --width__breakpoint: calc(
    var(--width__contents) + (var(--space-inline__base) * 2)
  );
  --color__brown: #754c24;
  --color__green: #c6d9ab;
  --color__beige: #f2eecd;
  --color__light-beige: #fcfaf5;
  --color__blue: #779fbd;
  --color__light-blue: #eaf5ff;
  --color__pink: #eda4cb;
  --color__light-pink: #fff2f3;
  --color__error: #fc506e;
  --color__error-light: #ffeef1;
  --color__warning: #986522;
  --color__warning-light: #fefcea;
  --color__success: #1fc8c2;
  --color__success-light: #f1fdf9;
  --color__gray-900: #1a222c;
  --color__gray-600: #757a80;
  --color__gray-300: #b9bcbf;
  --color__gray-200: #e3e3e3;
  --color__gray-100: #f5f5f5;
  --color__primary: #000;
  --color__white: #fff;
  --color__black: #1c1f27;
  --color__orange: #e9b628;
  --color__blue: #4e64ad;
  --color__red: #ff0000;
  --color__bg: #f6f8ff;
  --color__gradient-blue: linear-gradient(to right, #4e64ad, #2f4db1);
  --opacity__hover: 0.7;
  --radius__base: 20;
}

/*
 * ベースについて
 * 全体の基本的なスタイルを定義します。
 * フォント、色、共通の要素などの基本設定が含まれています。
 */
html {
  --_font-size: var(--font-size__base);
  --_width: var(--width--breakpoint);
  font-size: calc(var(--_font-size) * 1px);
}

html {
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-family__base);
  color: var(--color__black);
  font-size: calc(16rem / var(--font-size__base));
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* 透明度の変化を0.5秒かけて */
}

body.loaded {
  opacity: 1;
}

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

a {
  display: inline-block;
}

:focus-visible {
  outline: 2px solid var(--color__primary);
}
:root {
  --height__wp-admin-bar: 0px;
}

body.admin-bar {
  --height__wp-admin-bar: 32px;
}
header {
  margin-top: var(--height__wp-admin-bar);
}

/*
 * スクリプトについて
 * JavaScriptと連携するスタイルを定義します。
 * JSで追加されるクラスやアニメーション関連のスタイルが含まれています。
 * クラス名は、js-accordionのように命名します。
 */
.js-swiper-mv .swiper-wrapper {
  transition-timing-function: linear;
}

/*
 * レイアウトについて
 * ページの構造を形成するレイアウト要素を定義します。
 * インナー、その他汎用的なレイアウトなどが含まれています。
 * クラス名は、l-innerのように命名します。
 */
.l-two-columns {
  --_row-gap__grid: 60;
  --_width__left: 400;
  --_width__right: 830;
  --_column-gap: 40;
  --_width__total: calc(
    var(--_width__left) + var(--_column-gap) + var(--_width__right)
  );
  display: grid;
  row-gap: min(
    var(--_row-gap__grid) / var(--_width__total) * 100vw,
    var(--_row-gap__grid) * 1px
  );
}

.l-two-columns__item {
  display: flex;
  -moz-column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
  column-gap: calc(var(--_column-gap) / var(--_width__total) * 100%);
}

.l-two-columns__left {
  width: calc(var(--_width__left) / var(--_width__total) * 100%);
}

.l-two-columns__right {
  width: calc(var(--_width__right) / var(--_width__total) * 100%);
}
.l-two-columns--zigzag .l-two-columns__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.l-page__footer {
  position: relative;
  padding-top: calc(73 / 16 * 1rem);
}

.l-page__footer::before {
  content: '';
  position: absolute;
  top: calc(-25 / 16 * 1rem);
  left: 0;
  background-color: #f6f8ff;
  width: 100%;
  height: 102%;
  z-index: -10;
}

.l-outer {
  padding-top: calc(54 / 16 * 1rem);
}

.l-inner {
  --_max-width: var(--width__contents);
  --_padding-inline: var(--space-inline__base);
  --_padding-right: var(--_padding-inline);
  --_padding-left: var(--_padding-inline);
  max-width: calc(
    var(--_max-width) * 1px + (var(--_padding-right) + var(--_padding-left)) *
      1rem / var(--font-size__base)
  );
  margin-inline: auto;
  padding-right: calc(var(--_padding-right) * 1rem / var(--font-size__base));
  padding-left: calc(var(--_padding-left) * 1rem / var(--font-size__base));
}

.l-inner--fluid {
  max-width: calc(
    var(--_max-width) * 1rem / var(--font-size__base) +
      (var(--_padding-right) + var(--_padding-left)) * 1rem /
      var(--font-size__base)
  );
}

.l-inner--vertical {
  margin-bottom: calc(64rem / var(--font-size__base));
}

.l-grid-two {
  --_max-width: 1124;
  --_column-gap: 76;
  --_row-gap: 36;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  row-gap: min(
    var(--_row-gap) / var(--_max-width) * 100vw,
    var(--_row-gap) * 1px
  );
}

.l-grid-three {
  --_max-width: 1124;
  --_column-gap: 52;
  --_row-gap: 29;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  row-gap: min(
    var(--_row-gap) / var(--_max-width) * 100vw,
    var(--_row-gap) * 1px
  );
}

.l-grid-five {
  --_max-width: 1124;
  --_column-gap: 10;
  --_row-gap: 40;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  row-gap: min(
    var(--_row-gap) / var(--_max-width) * 100vw,
    var(--_row-gap) * 1px
  );
}
.l-grid {
  --_max-width: 1124;
  --_min-width__column: 524;
  --_column-gap: 76;
  --_row-gap: 36;
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(calc(var(--_min-width__column) * 1px), 1fr)
  );
  -moz-column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  column-gap: calc(var(--_column-gap) / var(--_max-width) * 100%);
  row-gap: min(
    var(--_row-gap) / var(--_max-width) * 100vw,
    var(--_row-gap) * 1px
  );
}

.l-container--sidebar {
  display: grid;
  grid-template-columns: 1fr calc(300rem / var(--font-size__base));
  -moz-column-gap: calc(32rem / var(--font-size__base));
  column-gap: calc(32rem / var(--font-size__base));
}

/*
 * モジュールについて
 * 再利用可能なUIモジュールを定義します。
 * ボタン、フォーム、モーダルなどのモジュールが含まれています。
 * クラス名は、m-buttonのように命名します。
 */
.m-voice-training-service__wrapper {
  display: grid;
  gap: calc(48 / 16 * 1rem);
  margin-top: calc(40 / 16 * 1rem);
}

.m-voice-mystery-shopper {
  padding-bottom: calc(69 / 16 * 1rem);
  scroll-margin-top: 80px;
}

.m-voice-mystery-shopper__wrapper {
  display: grid;
  gap: calc(48 / 16 * 1rem);
  margin-top: calc(40 / 16 * 1rem);
}

.m-voice-contents {
  position: relative;
  display: grid;
  gap: calc(32 / 16 * 1rem);
  padding: calc(40 / 16 * 1rem);
}

.m-voice-contents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f6f8ff;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}

.m-voice-contents--mystery-shopper::before {
  background-color: #fffcf3;
}

.m-voice-contents__header {
  --_width__left: 172;
  --_width__right: 820;
  --_column-gap: 53;
}

.m-voice-contents__header-item {
  align-items: center;
}

.m-voice-contents__image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 172/187;
  max-width: calc(172 / 16 * 1rem);
  height: 100%;
  border-radius: 20px;
}

.m-voice-contents__heading {
  display: grid;
  gap: calc(16 / 16 * 1rem);
}

.m-voice-contents__name {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
}

.m-voice-contents__body {
  display: grid;
  gap: calc(24 / 16 * 1rem);
}

.m-voice-contents__description {
  display: grid;
  gap: calc(7 / 16 * 1rem);
}

.m-voice-contents__description-title {
  position: relative;
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.3888888889;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  padding-left: calc(15 / 16 * 1rem);
}

.m-voice-contents__description-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color__gradient-blue);
  width: calc(9 / 16 * 1rem);
  height: calc(9 / 16 * 1rem);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  z-index: -1;
}

.m-voice-block {
  position: relative;
}

.m-voice-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  box-shadow: 4px 4px 19px 0 rgba(0, 0, 0, 0.11);
  border-radius: 20px;
  z-index: -1;
}

.m-voice-block__content {
  display: flex;
  align-items: center;
  gap: clamp(40px, -4.071rem + 13.69vw, 132px);
  padding-top: calc(77 / 16 * 1rem);
  padding-bottom: calc(76 / 16 * 1rem);
  padding-left: clamp(40px, -7.071rem + 19.94vw, 174px);
}

.m-voice-block__content--mystery-shopper {
  gap: clamp(150px, 6.304rem + 6.4vw, 193px);
  padding-top: calc(47 / 16 * 1rem);
  padding-bottom: calc(56 / 16 * 1rem);
}

.m-voice-block__body {
  width: min(100%, 300 / 16 * 1rem);
}

.m-voice-block__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-voice-block__title-sub {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.4166666667;
}

.m-voice-block__title-main {
  font-size: calc(42 / 16 * 1rem);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.4047619048;
}

.m-voice-block__button {
  margin-top: calc(7 / 16 * 1rem);
}

.m-voice-block__button--mystery-shopper {
  margin-top: calc(7 / 16 * 1rem);
}

.m-voice-block__image--service-training,
.m-voice-block__image--mystery-shopper {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.m-voice-block__image--service-training img {
  aspect-ratio: 272/152;
  width: calc(272 / 16 * 1rem);
}

.m-voice-block__image--mystery-shopper img {
  aspect-ratio: 138/209;
  width: calc(138 / 16 * 1rem);
}

.m-triangle-arrow {
  width: calc(6 / 16 * 1rem);
  height: calc(6 / 16 * 1rem);
  background-color: #4e64ad;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin-left: calc(2 / 16 * 1rem);
}

.m-training-service-block {
  position: relative;
  padding: calc(64 / 16 * 1rem);
}

.m-training-service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-training-service-block__title {
  font-size: calc(32 / 16 * 1rem);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.40625;
}

.m-training-service-block__wrapper {
  border-top: 2px solid #4e64ad;
  margin-top: calc(10 / 16 * 1rem);
}

.m-training-service-block__note {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 400;
  color: var(--color__red);
  line-height: 1.625;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: calc(15 / 16 * 1rem);
}

.m-thanks {
  padding-bottom: calc(80 / 16 * 1rem);
}

.m-thanks__wrapper {
  display: grid;
  gap: calc(40 / 16 * 1rem);
}

.m-thanks__text {
  text-align: center;
}

.m-thanks__button {
  display: flex;
  justify-content: center;
  margin-top: calc(60 / 16 * 1rem);
}

.m-tel-unit.m-tel-unit--sp-nav {
  justify-items: end;
  gap: calc(6 / 16 * 1rem);
}

.m-tel-unit__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(12 / 16 * 1rem);
  pointer-events: none;
  font-size: clamp(40px, 1.731rem + 1.2vw, 45px);
  font-family: var(--font-family__roboto);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.m-tel-unit__text {
  font-size: calc(20 / 16 * 1rem);
  line-height: 1;
  text-align: right;
  padding-right: calc(10 / 16 * 1rem);
  margin-top: calc(2 / 16 * 1rem);
}

.m-tel-unit__link.m-tel-unit__link--header {
  gap: calc(7 / 16 * 1rem);
  font-size: calc(28 / 16 * 1rem);
}

.m-tel-unit__icon {
  display: flex;
  width: calc(36 / 16 * 1rem);
  height: calc(36 / 16 * 1rem);
}

.m-tel-unit__icon.m-tel-unit__icon--header {
  width: calc(21 / 16 * 1rem);
  height: calc(21 / 16 * 1rem);
}

.m-tel-unit__text.m-tel-unit__text--header {
  font-size: calc(13 / 16 * 1rem);
  line-height: 1.6153846154;
  padding-right: 0;
  margin-top: 0;
  margin-right: calc(4 / 16 * 1rem);
}

.m-sub-mv {
  position: relative;
  padding-block: calc(66 / 16 * 1rem);
}

.m-sub-mv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/sub-mv-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/173;
  z-index: -1;
}

.m-square-button {
  --_color__main-default: var(--color__white);
  --_color__sub-default: var(--color__blue);
  --_color__main: var(--_color__main-default);
  --_color__sub: var(--_color__sub-default);
  --_max-width: 428;
  --_duration: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: calc(var(--_max-width) * 1rem / var(--font-size__base));
  min-height: calc(105 / 16 * 1rem);
  color: var(--_color__sub);
  background-color: var(--_color__main);
  border-width: 1px;
  border-style: solid;
  border-color: var(--_color__sub);
  border-radius: 20px;
  transition:
    color var(--_duration),
    background-color var(--_duration),
    border-color var(--_duration),
    filter var(--_duration);
  touch-action: manipulation;
  padding-right: calc(20 / 16 * 1rem);
}

.m-square-button::before {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(20 / 16 * 1rem);
  transform: translateY(-50%);
  width: calc(14 / 16 * 1rem);
  height: calc(11 / 16 * 1rem);
  background: var(--color__gradient-blue);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.m-square-button--about-mystery-shopper::before {
  width: calc(16 / 16 * 1rem);
  height: calc(11 / 16 * 1rem);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.m-square-button--about-training-service::before {
  width: calc(16 / 16 * 1rem);
  height: calc(11 / 16 * 1rem);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.m-square-button--voice-mystery-shopper::before {
  width: calc(16 / 16 * 1rem);
  height: calc(11 / 16 * 1rem);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.m-square-button--voice-training-service::before {
  width: calc(16 / 16 * 1rem);
  height: calc(11 / 16 * 1rem);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.m-square-button--training-service {
  gap: clamp(12px, -1.72rem + 3.86vw, 28px);
  max-width: 100%;
  padding-left: calc(25 / 16 * 1rem);
}

.m-square-button--mystery-shopper {
  gap: clamp(12px, -1.257rem + 3.13vw, 25px);
  max-width: 100%;
  padding-left: calc(29 / 16 * 1rem);
}

.m-square-button--about-training-service {
  gap: clamp(12px, -0.794rem + 2.41vw, 22px);
  max-width: 100%;
  padding-left: calc(16 / 16 * 1rem);
}

.m-square-button--about-mystery-shopper {
  gap: clamp(12px, -0.176rem + 1.45vw, 18px);
  max-width: 100%;
  padding-left: calc(36 / 16 * 1rem);
}

.m-square-button--voice-training-service {
  gap: clamp(12px, -0.107rem + 1.79vw, 24px);
  max-width: 100%;
  padding-left: calc(25 / 16 * 1rem);
}

.m-square-button--voice-mystery-shopper {
  gap: clamp(12px, -1.893rem + 5.51vw, 49px);
  max-width: 100%;
  padding-left: calc(31 / 16 * 1rem);
}

.m-square-button__text {
  position: relative;
  display: flex;
  font-size: clamp(22px, 1.066rem + 0.48vw, 24px);
  font-weight: 700;
  line-height: 1.4583333333;
}

.m-square-button__text-sub {
  font-size: calc(15 / 16 * 1rem);
  font-weight: 700;
  line-height: 2.3333333333;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
}

.m-square-button__icon.m-square-button__icon--training-service img,
.m-square-button__icon.m-square-button__icon--mystery-shopper img {
  -o-object-fit: cover;
  object-fit: cover;
}

.m-square-button__icon.m-square-button__icon--training-service img {
  aspect-ratio: 109/61;
  width: calc(109 / 16 * 1rem);
}

.m-square-button__icon.m-square-button__icon--mystery-shopper img {
  aspect-ratio: 42/63;
  width: calc(42 / 16 * 1rem);
}

.m-square-button-unit {
  --_max-width: 880;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(24 / 16 * 1rem);
  width: 100%;
  max-width: calc(var(--_max-width) * 1rem / var(--font-size__base));
  margin-inline: auto;
}

.m-square-button-unit--wide {
  --_max-width: 1054;
}

.m-square-button-unit--max {
  gap: calc(45 / 16 * 1rem);
  max-width: 100%;
}

.m-sp-nav {
  display: none;
}

.m-sp-nav__inner {
  --_max-width: 1130;
}

.m-sp-nav__wrapper {
  margin-top: calc(40 / 16 * 1rem);
}

.m-sp-nav__item {
  text-align: center;
  margin-top: calc(24 / 16 * 1rem);
}

.m-sp-nav__item:first-child {
  margin-top: 0;
}

.m-sp-nav__menu {
  text-transform: uppercase;
}

.m-sp-nav__contact {
  display: grid;
  justify-items: center;
  gap: calc(24 / 16 * 1rem);
  margin-top: calc(40 / 16 * 1rem);
}

.m-single-training-service {
  position: relative;
  padding-bottom: calc(88 / 16 * 1rem);
}

.m-single-training-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/single-training-service-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1440/4336;
  width: 100%;
  height: 101%;
  z-index: -1;
}

.m-single-training-service__outer {
  padding-top: calc(96 / 16 * 1rem);
}

.m-single-training-service__inner.l-inner {
  --_max-width: 975;
}

.m-single-training-service__header {
  display: grid;
  gap: calc(30 / 16 * 1rem);
}

.m-single-training-service__wrapper {
  margin-top: calc(54 / 16 * 1rem);
}

.m-single-training-service__contents {
  display: grid;
  gap: calc(40 / 16 * 1rem);
  margin-top: calc(33 / 16 * 1rem);
}

.m-single-training-service__body h2 {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.5833333333;
  margin-top: calc(22 / 16 * 1rem);
}

.m-single-training-service__body h2:first-child {
  margin-top: 0;
}

.m-single-training-service__body h2 > span {
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.5;
}

.m-single-training-service__body h3 {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.6;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: calc(16 / 16 * 1rem);
}

.m-single-training-service__body p {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.8125;
  margin-top: calc(8 / 16 * 1rem);
}

.m-single-training-service__body > div {
  position: relative;
  padding: calc(64 / 16 * 1rem);
}

.m-single-training-service__body > div:not(:first-child) {
  margin-top: calc(60 / 16 * 1rem);
}

.m-single-training-service__body > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-single-training-service__button {
  display: flex;
  justify-content: center;
  margin-top: calc(34 / 16 * 1rem);
}

.m-single-training-service__menu {
  display: flex;
  justify-content: center;
  margin-top: calc(54 / 16 * 1rem);
}

.m-single-column {
  padding-top: calc(70 / 16 * 1rem);
  padding-bottom: calc(130 / 16 * 1rem);
}

.m-single-column__wrapper {
  --_width__left: 808;
  --_width__right: 250;
  --_column-gap: 66;
}

.m-single-column__header {
  display: grid;
  gap: calc(5 / 16 * 1rem);
}

.m-single-column__header-unit {
  display: flex;
  align-items: center;
  gap: calc(14 / 16 * 1rem);
  padding-top: calc(4 / 16 * 1rem);
  padding-bottom: calc(3 / 16 * 1rem);
}

.m-single-column__date {
  font-size: calc(15 / 16 * 1rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.m-single-column__category {
  font-size: calc(15 / 16 * 1rem);
  color: #4e64ad;
  line-height: 1;
  letter-spacing: 0.08em;
}

.m-single-column__title {
  font-size: calc(28 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.3928571429;
  padding-bottom: calc(9 / 16 * 1rem);
  border-bottom: 2px solid #4e64ad;
}

.m-single-column__thumbnail {
  margin-top: calc(31 / 16 * 1rem);
}

.m-single-column__thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 808/454;
  width: 100%;
  max-width: 808px;
  height: 100%;
}

.m-single-column__body {
  margin-top: calc(40 / 16 * 1rem);
}

.m-single-column__body h2 {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.5833333333;
  margin-top: calc(22 / 16 * 1rem);
}

.m-single-column__body h3 {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.6;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: calc(16 / 16 * 1rem);
}

.m-single-column__body h4 {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.6111111111;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: calc(16 / 16 * 1rem);
}

.m-single-column__body p {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.8125;
  margin-top: calc(8 / 16 * 1rem);
}

.m-single-column__body a {
  position: relative;
  color: var(--color__blue);
  transition: 0.3s -webkit-text-decoration;
  transition: 0.3s text-decoration;
  transition:
    0.3s text-decoration,
    0.3s -webkit-text-decoration;
}

.m-single-column__body a:hover {
  text-decoration: underline;
  transition: 0.3s -webkit-text-decoration;
  transition: 0.3s text-decoration;
  transition:
    0.3s text-decoration,
    0.3s -webkit-text-decoration;
}

.m-single-column__body ul {
  display: block;
  list-style-type: disc;
  padding-left: calc(40 / 16 * 1rem);
  margin-top: calc(16 / 16 * 1rem);
}

.m-single-column__body li {
  font-weight: 500;
  line-height: 1.5;
}

.m-single-column__button {
  display: flex;
  justify-content: center;
  margin-top: calc(51 / 16 * 1rem);
}

.m-sidebar {
  display: grid;
  gap: calc(28 / 16 * 1rem);
}

.m-sidebar__block--monthly-archive {
  margin-top: calc(18 / 16 * 1rem);
}

.m-sidebar__title {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 500;
  line-height: 1;
  padding-bottom: calc(6 / 16 * 1rem);
  border-bottom: 1px solid #4e64ad;
}

.m-sidebar__title--recent-article {
  padding-bottom: calc(9 / 16 * 1rem);
}

.m-sidebar__category {
  margin-left: calc(7 / 16 * 1rem);
}

.m-sidebar__category-link {
  display: block;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1;
  padding-top: calc(12 / 16 * 1rem);
  padding-left: calc(6 / 16 * 1rem);
  padding-bottom: calc(5 / 16 * 1rem);
  border-bottom: 1px dashed #a8b3d7;
}

.m-sidebar__recent-article {
  margin-left: calc(7 / 16 * 1rem);
}

.m-sidebar__recent-article-link {
  display: grid;
  gap: calc(11 / 16 * 1rem);
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.1875;
  padding-top: calc(10 / 16 * 1rem);
  padding-left: calc(6 / 16 * 1rem);
  padding-bottom: calc(14 / 16 * 1rem);
  border-bottom: 1px dashed #a8b3d7;
}

.m-sidebar__recent-article-date {
  font-size: calc(14 / 16 * 1rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.m-sidebar__monthly-archive {
  margin-left: calc(7 / 16 * 1rem);
}

.m-sidebar__monthly-archive-link {
  display: block;
  font-size: calc(16 / 16 * 1rem);
  line-height: 1;
  padding-top: calc(10 / 16 * 1rem);
  padding-bottom: calc(9 / 16 * 1rem);
  padding-left: calc(6 / 16 * 1rem);
  border-bottom: 1px dashed #a8b3d7;
}

.m-service-training-title {
  display: flex;
  align-items: center;
  gap: calc(22 / 16 * 1rem);
}

.m-service-training-title__icon {
  padding-bottom: calc(2 / 16 * 1rem);
}

.m-service-training-title__icon img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 57/50;
  width: calc(57 / 16 * 1rem);
  height: 100%;
}

.m-service-training-title__text {
  font-size: calc(30 / 16 * 1rem);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.4333333333;
}

.m-section-title {
  display: flex;
  align-items: center;
  gap: calc(6 / 16 * 1rem);
}

.m-section-title--center {
  justify-content: center;
}

.m-section-title__icon img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 57/50;
  width: calc(57 / 16 * 1rem);
  height: 100%;
}

.m-section-title__text {
  font-size: calc(35 / 16 * 1rem);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.m-section-title__text--training-service {
  line-height: 1.2571428571;
}

.m-section-title__text--middle {
  font-size: calc(35 / 16 * 1rem);
  line-height: 1.2;
  text-align: center;
}

.m-section-title__text--middle > span {
  font-size: calc(30 / 16 * 1rem);
  line-height: 1.4666666667;
}

.m-section-title__text--large {
  font-size: calc(37 / 16 * 1rem);
  line-height: 1.1891891892;
}

.m-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(32 / 16 * 1rem);
}

.m-section-header.m-section-header--center {
  align-items: center;
}

.m-section-header.m-section-header--training-service {
  gap: calc(30 / 16 * 1rem);
}

.m-section-header.m-section-header--column {
  align-items: center;
  gap: calc(26 / 16 * 1rem);
}

.m-section-header.m-section-header--contact {
  align-items: center;
  gap: calc(28 / 16 * 1rem);
}

.m-section-header__title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  font-size: calc(37 / 16 * 1rem);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1891891892;
}

.m-section-header__title.m-section-header__title--mystery-shopper {
  line-height: 1.1621621622;
}

.m-section-header__title.m-section-header__title--column {
  line-height: 1.1621621622;
}

.m-section-header__title.m-section-header__title--contact {
  font-size: calc(36 / 16 * 1rem);
  color: var(--color__white);
  line-height: 1.1666666667;
  background: unset;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.m-section-header__title.m-section-header__title--column::before {
  content: '';
  position: absolute;
  bottom: calc(10 / 16 * 1rem);
  right: calc(-163 / 16 * 1rem);
  background-image: url(../images/front-page/home-pickup-column-icon.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(132 / 16 * 1rem);
  aspect-ratio: 132/76;
  z-index: -1;
}

.m-section-header__title-sub {
  font-size: calc(30 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.4333333333;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.m-section-header__subtitle {
  position: relative;
  font-size: calc(15 / 16 * 1rem);
  font-family: var(--font-family__roboto);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  padding-bottom: calc(2 / 16 * 1rem);
}

.m-section-header__subtitle.m-section-header__subtitle--column {
  padding-bottom: calc(1 / 16 * 1rem);
}

.m-section-header__subtitle.m-section-header__subtitle--contact {
  color: var(--color__white);
  background: unset;
  -webkit-background-clip: unset;
  background-clip: unset;
  padding-bottom: 0;
}

.m-section-header__subtitle::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color__gradient-blue);
  width: 85%;
  height: 1px;
}

.m-section-header__subtitle.m-section-header__subtitle--contact::before {
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: var(--color__white);
}

.m-section-header__subtitle.m-section-header__subtitle--column::before {
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.m-program-step {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  gap: calc(23 / 16 * 1rem);
}

.m-program-step__header-shadow {
  display: inline-block;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.15));
}

.m-program-step__header {
  position: relative;
  display: flex;
  align-items: center;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 50%,
    calc(100% - 20px) 100%,
    0 100%,
    20px 50%
  );
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 50%,
    calc(100% - 20px) 100%,
    0 100%,
    20px 50%
  );
  padding-top: calc(24 / 16 * 1rem);
  padding-bottom: calc(25 / 16 * 1rem);
  padding-left: calc(41 / 16 * 1rem);
  border-radius: 4px;
}

.m-program-step__header--first {
  background: #b3bfe8;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 50%,
    calc(100% - 20px) 100%,
    0 100%,
    0 50%
  );
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 50%,
    calc(100% - 20px) 100%,
    0 100%,
    0 50%
  );
  padding-left: calc(26 / 16 * 1rem);
  margin-left: 0;
  margin-right: calc(-18 / 16 * 1rem);
}

.m-program-step__header--second {
  background: #7787bf;
  margin-left: calc(-4 / 16 * 1rem);
  margin-right: calc(-16 / 16 * 1rem);
}

.m-program-step__header--third {
  background: #4e64ad;
  margin-left: calc(-6 / 16 * 1rem);
  margin-right: calc(-14 / 16 * 1rem);
}

.m-program-step__header--fourth {
  background: #2e4caf;
  margin-left: calc(-8 / 16 * 1rem);
  margin-right: calc(-12 / 16 * 1rem);
}

.m-program-step__header--fifth {
  background: #17379e;
  margin-left: calc(-10 / 16 * 1rem);
  margin-right: calc(-10 / 16 * 1rem);
}

.m-program-step__number {
  display: flex;
  gap: calc(4 / 16 * 1rem);
  font-size: calc(28 / 16 * 1rem);
  font-weight: 900;
  color: var(--color__white);
  line-height: 1;
}

.m-program-step__number-text {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 900;
  color: var(--color__white);
  line-height: 1.5555555556;
}

.m-program-step__body {
  position: relative;
  padding: calc(24 / 16 * 1rem);
}

.m-program-step__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-program-step__title {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.625;
}

.m-program-step__text {
  font-size: calc(15 / 16 * 1rem);
  font-weight: 500;
  color: #444444;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-top: calc(10 / 16 * 1rem);
}

.m-profile-card {
  position: relative;
  align-items: center;
  padding-block: calc(48 / 16 * 1rem);
  padding-inline: calc(63 / 16 * 1rem);
}

.m-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  box-shadow: 0 0 23px rgba(51, 51, 51, 0.06);
  border-radius: 20px;
  z-index: -1;
}

.m-profile-card__image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 216/231;
  max-width: calc(216 / 16 * 1rem);
  height: 100%;
  border-radius: 20px;
}

.m-profile-card__name-unit {
  display: flex;
  align-items: center;
  gap: calc(21 / 16 * 1rem);
}

.m-profile-card__name {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.2083333333;
}

.m-profile-card__kana {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1875;
}

.m-profile-card__content-wrapper {
  display: grid;
  gap: calc(16 / 16 * 1rem);
  margin-top: calc(24 / 16 * 1rem);
}

.m-profile-card__content {
  display: grid;
  justify-items: start;
  gap: calc(8 / 16 * 1rem);
}

.m-profile-card__title {
  display: inline-flex;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1.3125;
  padding: calc(4 / 16 * 1rem) calc(16 / 16 * 1rem);
  background-color: var(--color__orange);
  border-radius: 20px;
}

.m-privacy-policy {
  padding-top: calc(59 / 16 * 1rem);
  padding-bottom: calc(128 / 16 * 1rem);
}

.m-privacy-policy__wrapper h2 {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.8125;
  margin-top: calc(20 / 16 * 1rem);
}

.m-privacy-policy__wrapper p {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.625;
  margin-top: calc(20 / 16 * 1rem);
}

.m-privacy-policy__wrapper p:first-of-type {
  margin-top: 0;
}

.m-privacy-policy__wrapper ul {
  margin-top: calc(11 / 16 * 1rem);
  margin-left: calc(48 / 16 * 1rem);
}

.m-privacy-policy__wrapper li {
  position: relative;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.625;
  padding-left: calc(24 / 16 * 1rem);
}

.m-privacy-policy__wrapper li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(9 / 16 * 1rem);
  transform: translateY(-50%);
  background-color: var(--color__black);
  width: calc(4 / 16 * 1rem);
  height: calc(4 / 16 * 1rem);
  border-radius: 50%;
  z-index: -1;
}

.m-pc-nav__items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(40 / 16 * 1rem);
}

.m-pc-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(9 / 16 * 1rem);
  font-size: clamp(0.75rem, 0.442rem + 0.48vw, 14px);
  font-weight: 500;
  line-height: 1.5714285714;
}

.m-pc-nav__link-arrow {
  position: relative;
  width: calc(7 / 16 * 1rem);
  height: calc(7 / 16 * 1rem);
}

.m-pc-nav__link-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 100%;
  height: 100%;
  border: 0;
  border-bottom: solid 1px var(--color__black);
  border-right: solid 1px var(--color__black);
}

.m-pc-nav__link-icon {
  display: flex;
  width: calc(8 / 16 * 1rem);
  height: calc(4 / 16 * 1rem);
}

.m-pc-nav-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(24 / 16 * 1rem);
  max-width: 1100px;
  padding: calc(24 / 16 * 1rem);
  margin-inline: auto;
}

.m-pc-nav-menu__link {
  display: grid;
  gap: calc(16 / 16 * 1rem);
}

.m-pc-nav-menu__link-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.m-pc-nav-menu__link-image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 300/200;
  width: calc(300 / 16 * 1rem);
  height: 100%;
}

.m-pc-nav-menu__link-text {
  text-align: center;
}

.m-page-title {
  position: relative;
  display: inline-flex;
  font-size: calc(35 / 16 * 1rem);
  font-family: var(--font-family__roboto);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1.1714285714;
}

.m-page-title::before {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(-142 / 16 * 1rem);
  transform: translateY(-50%);
  background-image: url(../images/common/sub-mv-title-icon.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 129/94;
  width: calc(129 / 16 * 1rem);
  z-index: -1;
}

.m-page-title--large {
  font-size: calc(37 / 16 * 1rem);
  line-height: 1.1621621622;
}

.m-page-title--large::before {
  right: calc(-130 / 16 * 1rem);
}

.m-page-title--icon-invert::before {
  background-image: url(../images/common/sub-mv-title-icon-invert.webp);
}

.m-mystery-shopper-voice {
  padding-top: calc(81 / 16 * 1rem);
  padding-bottom: calc(91 / 16 * 1rem);
}

.m-mystery-shopper-voice__wrapper {
  display: grid;
  gap: calc(48 / 16 * 1rem);
  margin-top: calc(41 / 16 * 1rem);
}

.m-mystery-shopper-program {
  position: relative;
  padding-top: calc(80 / 16 * 1rem);
  padding-bottom: calc(80 / 16 * 1rem);
}

.m-mystery-shopper-program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fffcf3;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -1;
}

.m-mystery-shopper-program__subtitle {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.2;
  text-align: center;
  margin-top: calc(31 / 16 * 1rem);
}

.m-mystery-shopper-program__step-wrapper {
  margin-top: calc(24 / 16 * 1rem);
  margin-right: calc(10 / 16 * 1rem);
}

.m-mystery-shopper-problems {
  position: relative;
  padding-top: calc(80 / 16 * 1rem);
}

.m-mystery-shopper-problems::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f7f9ff;
  width: 100%;
  height: 110%;
  z-index: -1;
}

.m-mystery-shopper-problems__speech-bubble-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(23 / 16 * 1rem);
  margin-top: calc(39 / 16 * 1rem);
}

.m-mystery-shopper-problems__speech-bubble {
  display: flex;
}

.m-mystery-shopper-problems__speech-bubble--fourth {
  position: absolute;
  bottom: calc(clamp(6.25rem, -10.981rem + 26.92vw, 13.25rem) * -1);
  left: calc(clamp(0rem, -15.385rem + 24.04vw, 6.25rem) * -1);
}

.m-mystery-shopper-problems__speech-bubble--fifth {
  position: absolute;
  bottom: calc(clamp(8.25rem, -10.212rem + 28.85vw, 15.75rem) * -1);
  right: calc(clamp(0rem, -7.385rem + 11.54vw, 3rem) * -1);
}

.m-mystery-shopper-problems__speech-bubble img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.m-mystery-shopper-problems__speech-bubble--first img {
  aspect-ratio: 311/252;
  width: clamp(12.5rem, -4.577rem + 26.68vw, 19.438rem);
}

.m-mystery-shopper-problems__speech-bubble--second img {
  aspect-ratio: 283/230;
  width: clamp(12.5rem, -0.269rem + 19.95vw, 17.688rem);
}

.m-mystery-shopper-problems__speech-bubble--three img {
  aspect-ratio: 283/230;
  width: clamp(12.5rem, -0.269rem + 19.95vw, 17.688rem);
}

.m-mystery-shopper-problems__speech-bubble--fourth img {
  aspect-ratio: 311/252;
  width: clamp(12.5rem, -4.577rem + 26.68vw, 19.438rem);
}

.m-mystery-shopper-problems__speech-bubble--fifth img {
  aspect-ratio: 324/263;
  width: clamp(12.5rem, -6.577rem + 29.81vw, 20.25rem);
}

.m-mystery-shopper-problems__image {
  display: flex;
  justify-content: center;
  margin-top: calc(7 / 16 * 1rem);
}

.m-mystery-shopper-problems__image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 506/305;
  width: clamp(25rem, 17.429rem + 15.77vw, 31.625rem);
  height: 100%;
}

.m-mystery-shopper-point {
  position: relative;
  padding-top: calc(80 / 16 * 1rem);
  padding-bottom: calc(77 / 16 * 1rem);
}

.m-mystery-shopper-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fffcf3;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -1;
}

.m-mystery-shopper-point__wrapper {
  --_row-gap__grid: 48;
  --_width__left: 533;
  --_width__right: 400;
  --_column-gap: 61;
  margin-top: calc(41 / 16 * 1rem);
}

.m-mystery-shopper-point__contents {
  position: relative;
  align-items: center;
  padding-block: calc(48 / 16 * 1rem);
  padding-right: calc(66 / 16 * 1rem);
  padding-left: calc(64 / 16 * 1rem);
}

.m-mystery-shopper-point__contents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}

.m-mystery-shopper-point__body-heading {
  display: flex;
  align-items: center;
  gap: calc(14 / 16 * 1rem);
}

.m-mystery-shopper-point__sub-text {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1875;
}

.m-mystery-shopper-point__number {
  font-size: calc(80 / 16 * 1rem);
  font-weight: 500;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
}

.m-mystery-shopper-point__subtitle {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.6;
  margin-top: calc(8 / 16 * 1rem);
}

.m-mystery-shopper-point__text-wrapper {
  margin-top: calc(24 / 16 * 1rem);
}

.m-mystery-shopper-point__image {
  display: flex;
}

.m-mystery-shopper-point__image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 400/300;
  height: 100%;
  border-radius: 20px;
}

.m-mystery-shopper-fee {
  padding-top: calc(83 / 16 * 1rem);
  padding-bottom: calc(78 / 16 * 1rem);
}

.m-mystery-shopper-fee__box-wrapper {
  --_column-gap: 40;
  margin-top: calc(41 / 16 * 1rem);
}

.m-mystery-shopper-features {
  padding-top: calc(80 / 16 * 1rem);
  padding-bottom: calc(55 / 16 * 1rem);
}

.m-mystery-shopper-features__contents {
  display: grid;
  row-gap: calc(59 / 16 * 1rem);
}

.m-mystery-shopper-features__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(24 / 16 * 1rem);
  margin-top: calc(41 / 16 * 1rem);
}

.m-mystery-shopper-features__image {
  margin-left: calc((50vw - 50%) * -1);
}

.m-mystery-shopper-features__image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 802/512;
  width: clamp(37.5rem, 6.423rem + 48.56vw, 50.125rem);
  height: 100%;
}

.m-mystery-shopper-features__subtitle {
  font-size: calc(28 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.6071428571;
}

.m-mystery-shopper-faq {
  position: relative;
  padding-top: calc(80 / 16 * 1rem);
  padding-bottom: calc(81 / 16 * 1rem);
}

.m-mystery-shopper-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fffcf3;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-mystery-shopper-faq--bg-white::before {
  background-color: var(--color__white);
}

.m-mystery-shopper-faq__contents {
  margin-top: calc(41 / 16 * 1rem);
}

.m-mystery-shopper-faq__bottom {
  margin-top: calc(64 / 16 * 1rem);
}

.m-mv__wrapper {
  position: relative;
}

.m-mv__image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1440/700;
  height: 100%;
}

.m-mv__body {
  position: absolute;
  top: 17.6%;
  left: 11%;
  z-index: 1;
}

.m-mv__title {
  margin-top: calc(40 / 16 * 1rem);
}

.m-mv__title-main {
  display: flex;
  flex-direction: column;
  gap: calc(6 / 16 * 1rem);
  font-size: clamp(2.75rem, 1.8rem + 1.5vw, 50px);
  font-weight: 500;
  line-height: 1.58;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.m-mv__title-main-accent {
  font-weight: 700;
  border: 1px solid #1e3379;
  padding-inline: calc(12 / 16 * 1rem);
}

.m-mv__title-sub {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.6111111111;
  margin-top: clamp(30px, 1.26rem + 0.96vw, 34px);
}

.m-mv__subtitle {
  font-size: calc(26 / 16 * 1rem);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1.5769230769;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--color__gradient-blue);
  padding-top: calc(3 / 16 * 1rem);
  padding-bottom: calc(4 / 16 * 1rem);
  padding-inline: calc(8 / 16 * 1rem);
}

.m-mv__body-button {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.25rem, 1.6rem + 0.96vw, 2.5rem);
}

.m-media-coverage {
  position: relative;
  max-width: 810px;
  padding-top: calc(42 / 16 * 1rem);
  padding-bottom: calc(39 / 16 * 1rem);
  margin-inline: auto;
}

.m-media-coverage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 4px 4px 19px rgba(0, 0, 0, 0.11);
  z-index: -1;
}

.m-media-coverage__title {
  position: relative;
  font-size: calc(40 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.2;
  text-align: center;
}

.m-media-coverage__title::before {
  content: '';
  position: absolute;
  top: calc(-32 / 16 * 1rem);
  right: calc(85 / 16 * 1rem);
  background-image: url(../images/mystery-shopper/media-coverage-title-icon.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(112 / 16 * 1rem);
  aspect-ratio: 112/95;
  z-index: -1;
}

.m-media-coverage__pickup {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: calc(4 / 16 * 1rem);
  margin-top: calc(10 / 16 * 1rem);
}

.m-media-coverage__pickup::before {
  content: '';
  position: absolute;
  top: calc(26 / 16 * 1rem);
  left: calc(44 / 16 * 1rem);
  background-image: url(../images/mystery-shopper/media-coverage-pickup-icon.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(116 / 16 * 1rem);
  aspect-ratio: 116/102;
  z-index: -1;
}

.m-media-coverage__text {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.2;
}

.m-media-coverage__icon img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 30/25;
  width: calc(30 / 16 * 1rem);
  height: 100%;
}

.m-media-coverage__text-highlight {
  font-size: calc(25 / 16 * 1rem);
  font-weight: 700;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.2;
}

.m-media-coverage__button {
  display: flex;
  justify-content: center;
  margin-top: calc(29 / 16 * 1rem);
}

.m-home-training-service {
  position: relative;
  padding-top: calc(99 / 16 * 1rem);
  padding-bottom: calc(100 / 16 * 1rem);
}

.m-home-training-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e7ecfc;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-home-training-service__inner {
  position: relative;
}

.m-home-training-service__header-text {
  margin-top: calc(58 / 16 * 1rem);
}

.m-home-training-service__wrapper {
  position: relative;
  margin-top: calc(76 / 16 * 1rem);
}

.m-home-training-service__bg-icon {
  position: absolute;
  top: calc(-7 / 16 * 1rem);
  left: calc(264 / 16 * 1rem);
  width: calc(129 / 16 * 1rem);
  height: calc(95 / 16 * 1rem);
}

.m-home-training-service__bg-icon img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 129/95;
  width: 100%;
  height: 100%;
}

.m-home-training-service__cards {
  grid-template-columns: repeat(2, 1fr);
  margin-top: calc(27 / 16 * 1rem);
}

.m-home-training-service__bottom {
  margin-top: calc(60 / 16 * 1rem);
}

.m-home-mystery-shopper {
  position: relative;
  padding-top: calc(100 / 16 * 1rem);
  padding-bottom: calc(102 / 16 * 1rem);
}

.m-home-mystery-shopper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/front-page/home-mystery-shopper-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/893;
  z-index: -1;
}

.m-home-mystery-shopper__content.l-two-columns {
  --_width__left: 503;
  --_width__right: 562;
  --_column-gap: 59;
}

.m-home-mystery-shopper__image {
  position: relative;
}

.m-home-mystery-shopper__image img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 527/318;
  width: calc(527 / 16 * 1rem);
  height: 100%;
  border-radius: 20px;
}

.m-home-mystery-shopper__text {
  margin-top: calc(34 / 16 * 1rem);
}

.m-home-mystery-shopper__button {
  display: flex;
  justify-content: center;
  margin-top: calc(72 / 16 * 1rem);
}

.m-home-mystery-shopper__bottom {
  margin-top: calc(60 / 16 * 1rem);
}

.m-home-column {
  padding-block: calc(100 / 16 * 1rem);
}

.m-home-column__cards {
  --_min-width__column: 360;
  --_column-gap: 22;
  margin-top: calc(39 / 16 * 1rem);
}

.m-home-column__button {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: calc(64 / 16 * 1rem);
}

.m-home-column__button::before {
  content: '';
  position: absolute;
  top: calc(-29 / 16 * 1rem);
  left: calc(157 / 16 * 1rem);
  background-image: url(../images/front-page/home-pickup-column-icon.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(156 / 16 * 1rem);
  height: calc(133 / 16 * 1rem);
  aspect-ratio: 156/133;
  z-index: -1;
}

.m-home-about {
  position: relative;
  padding-top: calc(106 / 16 * 1rem);
  padding-bottom: calc(107 / 16 * 1rem);
}

.m-home-about::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/front-page/home-about-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/1101;
  z-index: -1;
}

.m-home-about__top {
  --_width__left: 551;
  --_width__right: 520;
  --_column-gap: 53;
  --_row-gap__grid: 40;
}

.m-home-about__top-item {
  align-items: center;
}

.m-home-about__top-image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 520/376;
  height: 100%;
  border-radius: 20px;
}

.m-home-about__content {
  margin-top: calc(40 / 16 * 1rem);
}

.m-home-about__content.l-two-columns {
  --_width__left: 423;
  --_width__right: 626;
  --_column-gap: 75;
}

.m-home-about__content-body {
  padding-top: calc(36 / 16 * 1rem);
}

.m-home-about__content-body-button {
  display: flex;
  margin-top: calc(40 / 16 * 1rem);
}

.m-home-about__content-image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 423/287;
  height: 100%;
  border-radius: 20px;
}

.m-home-about__button-unit-wrapper {
  margin-top: calc(80 / 16 * 1rem);
}

.m-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-top: calc(28 / 16 * 1rem);
  padding-bottom: calc(34 / 16 * 1rem);
  z-index: 10;
}

.m-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__bg);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-header__inner {
  --_max-width: 1360;
}

.m-header__wrapper {
  --_width__left: 880;
  --_width__right: 455;
  --_column-gap: 25;
}

.m-header__left {
  display: flex;
  -moz-column-gap: clamp(0.625rem, -2.913rem + 5.53vw, 2.063rem);
  column-gap: clamp(0.625rem, -2.913rem + 5.53vw, 2.063rem);
  row-gap: calc(10 / 16 * 1rem);
}

.m-header__logo {
  display: flex;
  align-items: center;
  max-width: calc(295 / 16 * 1rem);
  height: inherit;
  z-index: 100;
}

.m-header__logo img {
  aspect-ratio: 295/35;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.m-header__note {
  font-size: clamp(0.688rem, 0.38rem + 0.48vw, 0.813rem);
  font-weight: 500;
  line-height: 1.6153846154;
}

.m-header__right {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: calc(20 / 16 * 1rem);
  column-gap: calc(20 / 16 * 1rem);
  row-gap: calc(10 / 16 * 1rem);
  min-width: 455px;
}

.m-header__bottom {
  margin-top: calc(31 / 16 * 1rem);
}

.m-hamburger span {
  position: absolute;
  right: 0;
  width: calc(32 / 16 * 1rem);
  height: calc(1 / 16 * 1rem);
  background-color: var(--color__black);
}

.m-hamburger,
.m-hamburger span {
  display: none;
}

.m-hamburger span:nth-child(1) {
  top: calc(-1 / 16 * 1rem);
}

.m-hamburger span:nth-child(2) {
  top: 47%;
}

.m-hamburger span:nth-child(3) {
  bottom: calc(0 / 16 * 1rem);
}

.m-hamburger.active span:nth-of-type(1) {
  transform: translateY(calc(12 / 16 * 1rem)) rotate(37deg);
  right: calc(-4 / 16 * 1rem);
  width: calc(40 / 16 * 1rem);
}

.m-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.m-hamburger.active span:nth-of-type(3) {
  transform: translateY(calc(-12 / 16 * 1rem)) rotate(-37deg);
  right: calc(-4 / 16 * 1rem);
  width: calc(40 / 16 * 1rem);
}

.m-footer__wrapper {
  --_width__left: 355;
  --_width__right: 592;
  --_column-gap: 177;
}

.m-footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.m-footer__right {
  padding-top: calc(3 / 16 * 1rem);
}

.m-footer__logo-image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 355/43;
  max-width: calc(355 / 16 * 1rem);
  height: 100%;
}

.m-footer__address {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  color: var(--color__black);
  line-height: 1.625;
  margin-top: calc(20 / 16 * 1rem);
}

.m-footer__tel {
  margin-top: calc(37 / 16 * 1rem);
  margin-left: calc(4 / 16 * 1rem);
}

.m-footer__copyright {
  padding-top: calc(84 / 16 * 1rem);
  padding-bottom: calc(28 / 16 * 1rem);
}

.m-footer__copyright small {
  display: block;
  font-size: calc(14 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.1428571429;
  text-align: center;
}

.m-footer__bottom {
  width: 100%;
  height: calc(17 / 16 * 1rem);
  background: var(--color__gradient-blue);
}

.m-footer-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(20 / 16 * 1rem);
}

.m-footer-nav__block.m-footer-nav__block---right {
  margin-right: calc(-10 / 16 * 1rem);
}

.m-footer-nav__items {
  display: grid;
  justify-items: start;
  gap: calc(16 / 16 * 1rem);
}

.m-footer-nav__menu {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.2222222222;
  letter-spacing: 0.04em;
}

.m-footer-nav__sub-items {
  display: grid;
  justify-items: start;
  gap: calc(12 / 16 * 1rem);
  margin-top: calc(16 / 16 * 1rem);
}

.m-footer-nav__sub-menu {
  display: flex;
  font-size: calc(14 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.2142857143;
  letter-spacing: 0.04em;
}

.m-footer-nav__button {
  margin-top: calc(16 / 16 * 1rem);
}

.m-fee-box {
  position: relative;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  gap: calc(14 / 16 * 1rem);
}

.m-fee-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fffcf3;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}

.m-fee-box__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(21 / 16 * 1rem);
  padding-bottom: calc(22 / 16 * 1rem);
}

.m-fee-box__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #4e64ad;
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: -1;
}

.m-fee-box__header-icon img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 29/25;
  width: calc(29 / 16 * 1rem);
  height: 100%;
}

.m-fee-box__header-title {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1;
}

.m-fee-box__body {
  padding-left: calc(26 / 16 * 1rem);
  padding-right: calc(20 / 16 * 1rem);
  padding-bottom: calc(31 / 16 * 1rem);
}

.m-fee-box__item {
  display: flex;
  align-items: center;
  gap: calc(32 / 16 * 1rem);
  padding-top: calc(13 / 16 * 1rem);
  padding-bottom: calc(14 / 16 * 1rem);
}

.m-fee-box__item--first {
  border-bottom: 2px solid var(--color__orange);
}

.m-fee-box__item-title {
  display: flex;
  align-items: center;
  gap: calc(6 / 16 * 1rem);
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  color: var(--color__black);
  line-height: 1;
}

.m-fee-box__item-icon img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 18/16;
  width: calc(18 / 16 * 1rem);
  height: 100%;
}

.m-fee-box__price {
  font-size: calc(30 / 16 * 1rem);
  font-weight: 700;
  color: var(--color__orange);
  line-height: 1;
}

.m-fee-box__price-small {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  color: var(--color__orange);
  line-height: 1.6666666667;
}

.m-fee-box__note-wrapper {
  display: grid;
  gap: calc(4 / 16 * 1rem);
  margin-top: calc(17 / 16 * 1rem);
}

.m-fee-box__note {
  display: flex;
  align-items: flex-start;
  gap: calc(2 / 16 * 1rem);
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.375;
}

.m-fee-box__note-text {
  font-size: calc(14 / 16 * 1rem);
  line-height: 1.3571428571;
  padding-top: calc(2 / 16 * 1rem);
}

.m-error {
  padding-bottom: calc(80 / 16 * 1rem);
}

.m-error__text {
  text-align: center;
}

.m-error__button {
  display: flex;
  justify-content: center;
  margin-top: calc(60 / 16 * 1rem);
}

.m-divider-title__text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(20 / 16 * 1rem);
}

.m-divider-title__text::before,
.m-divider-title__text::after {
  content: '';
  height: 1px;
  flex-grow: 1;
  background-color: var(--color__black);
}

.m-definition-list {
  position: relative;
}

.m-definition-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-definition-list__item {
  --_width__left: 196;
  --_width__right: 612;
  --_width__total: calc(var(--_width__left) + var(--_width__right));
  display: flex;
}

.m-definition-list__term {
  display: inline-flex;
  align-items: flex-start;
  gap: calc(16 / 16 * 1rem);
  width: calc(var(--_width__left) / var(--_width__total) * 100%);
  padding-block: calc(17 / 16 * 1rem);
  padding-left: calc(10 / 16 * 1rem);
  border-bottom: 1px solid #4e64ad;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: 0.02em;
}

.m-definition-list__term--company {
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  border-bottom: 1px solid #a8b3d7;
  padding-block: calc(16 / 16 * 1rem);
  padding-left: 0;
}

.m-definition-list__description {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.02em;
  width: calc(var(--_width__right) / var(--_width__total) * 100%);
  padding-block: calc(15 / 16 * 1rem);
  padding-left: calc(38 / 16 * 1rem);
  border-bottom: 1px solid #dddddd;
}

.m-definition-list__description--company {
  border-bottom: 1px solid #a8b3d7;
  padding-block: calc(16 / 16 * 1rem);
  padding-left: 0;
}

.m-definition-list__term-icon {
  width: calc(22 / 16 * 1rem);
  height: calc(22 / 16 * 1rem);
}

.m-definition-list__term-item {
  display: flex;
  gap: calc(16 / 16 * 1rem);
}

.m-definition-list__description-item {
  position: relative;
  padding-left: calc(16 / 16 * 1rem);
  margin-left: calc(4 / 16 * 1rem);
}

.m-definition-list__description-item--company {
  margin-left: calc(12 / 16 * 1rem);
}

.m-definition-list__description-item--training {
  padding-left: 0;
  margin-left: 0;
}

.m-definition-list__description-item::before {
  content: '';
  position: absolute;
  top: calc(12 / 16 * 1rem);
  left: 0;
  background-color: #4e64ad;
  width: calc(5 / 16 * 1rem);
  height: calc(5 / 16 * 1rem);
  border-radius: 20px;
}

.m-definition-list__description-item.m-definition-list__description-item--training::before {
  display: none;
}

.m-definition-list__description-item.m-definition-list__description-item--triangle::before {
  top: calc(10 / 16 * 1rem);
  width: calc(8 / 16 * 1rem);
  height: calc(8 / 16 * 1rem);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  border-radius: unset;
}

.m-definition-list__description-item--company::before {
  background-color: var(--color__black);
}

.m-content-title {
  position: relative;
  padding-left: calc(24 / 16 * 1rem);
}

.m-content-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--color__black);
  width: calc(8 / 16 * 1rem);
  height: 100%;
  z-index: -1;
}

.m-content-subtitle {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.4166666667;
}

.m-contact-form {
  --_width__left: 234;
  --_width__right: 650;
  --_column-gap: 16;
  --_row-gap__grid: 14;
  max-width: 900px;
  margin-inline: auto;
}

.m-contact-form__group {
  align-items: flex-start;
}

.m-contact-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(16 / 16 * 1rem);
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  color: #1c1f27;
  line-height: 1.7777777778;
  padding-top: calc(14 / 16 * 1rem);
}

.m-contact-form__field span.wpcf7-form-control-wrap {
  display: flex;
}

.m-contact-form__input {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  color: #1c1f27;
  line-height: 1.375;
  width: 100%;
  padding-top: calc(16 / 16 * 1rem);
  padding-bottom: calc(15 / 16 * 1rem);
  padding-inline: calc(23 / 16 * 1rem);
  border: 1px solid #dddddd;
  border-radius: 8px;
}

.m-contact-form__required {
  display: inline-flex;
  align-items: center;
  font-size: calc(12 / 16 * 1rem);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1.3333333333;
  border-radius: 4px;
  padding: calc(3 / 16 * 1rem) calc(10 / 16 * 1rem);
  background-color: var(--color__orange);
}

.m-contact-form__acceptance {
  text-align: center;
}

.m-contact-form__acceptance .wpcf7-list-item input[type='checkbox'] {
  position: relative;
  display: inline-block;
  width: calc(15 / 16 * 1rem);
  height: calc(15 / 16 * 1rem);
  border: 1px solid #dddddd;
  border-radius: 4px;
}

.m-contact-form__acceptance
  .wpcf7-list-item
  input[type='checkbox']:checked:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: calc(-3 / 16 * 1rem);
  left: calc(5 / 16 * 1rem);
  transform: rotate(50deg);
  width: calc(6 / 16 * 1rem);
  height: calc(13 / 16 * 1rem);
  border-right: 2px solid #1c1f27;
  border-bottom: 2px solid #1c1f27;
}

.m-contact-form__button {
  display: flex;
  justify-content: center;
  margin-top: calc(48 / 16 * 1rem);
}

.m-contact-form__textarea {
  width: 100%;
  height: 100%;
  max-height: 200px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding-block: calc(17 / 16 * 1rem);
  padding-inline: calc(20 / 16 * 1rem);
}

.m-contact-form__acceptance-text {
  display: flex;
  align-items: center;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  color: #1c1f27;
  line-height: 1.375;
}

.m-contact-form__acceptance-link {
  text-decoration: underline;
}

.m-contact-cta {
  position: relative;
  padding-block: calc(100 / 16 * 1rem);
}

.m-contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color__gradient-blue);
  border-radius: 30px;
  z-index: -1;
}

.m-contact-cta__inner.l-inner {
  --_max-width: 983;
}

.m-contact-cta__block {
  position: relative;
  border-radius: 10px;
  background-color: var(--color__white);
  padding-top: calc(54 / 16 * 1rem);
  padding-bottom: calc(60 / 16 * 1rem);
  padding-inline: calc(20 / 16 * 1rem);
  margin-top: calc(39 / 16 * 1rem);
}

.m-contact-cta__block::before {
  content: '';
  position: absolute;
  top: calc(-98 / 16 * 1rem);
  right: calc(16 / 16 * 1rem);
  background-image: url(../images/common/contact-block-icon.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(180 / 16 * 1rem);
  height: calc(180 / 16 * 1rem);
  z-index: 0;
}

.m-contact-cta__text-wrapper {
  text-align: center;
}

.m-contact-cta__body {
  display: flex;
  justify-content: center;
  gap: calc(69 / 16 * 1rem);
  margin-top: calc(20 / 16 * 1rem);
}

.m-contact-button {
  --_color__main-default: var(--color__orange);
  --_color__sub-default: var(--color__white);
  --_color__main: var(--_color__main-default);
  --_color__sub: var(--_color__sub-default);
  --_max-width: 245;
  --_duration: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / 16 * 1rem);
  max-width: calc(var(--_max-width) * 1rem / var(--font-size__base));
  width: 100%;
  color: var(--_color__sub);
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  background-color: var(--_color__main);
  border-width: 1px;
  border-style: solid;
  border-color: var(--_color__sub);
  border-radius: 30px;
  transition:
    color var(--_duration),
    background-color var(--_duration),
    border-color var(--_duration),
    filter var(--_duration);
  touch-action: manipulation;
  padding-block: calc(11 / 16 * 1rem);
}
.m-contact-button:focus-visible {
  color: var(--_color__main);
  background-color: var(--_color__sub);
  filter: unset;
}

.m-contact-button--invert {
  --_color__main: var(--_color__sub-default);
  --_color__sub: var(--_color__main-default);
  border-color: var(--_color__main);
}

.m-contact-button--secondary {
  --_color__main-default: var(--color__secondary);
  --_color__sub-default: var(--color__white);
}

.m-contact-button.m-contact-button--header {
  font-size: calc(18 / 16 * 1rem);
  line-height: 1.2222222222;
  --_max-width: 240;
  margin-bottom: calc(3 / 16 * 1rem);
}

.m-contact-button__icon {
  display: flex;
  width: calc(16 / 16 * 1rem);
  height: calc(16 / 16 * 1rem);
}

.m-contact-button.m-contact-button--mv {
  --_max-width: 270;
}

.m-contact-button.m-contact-button--contact {
  font-size: calc(28 / 16 * 1rem);
  line-height: 1.1785714286;
  --_max-width: 360;
  padding-block: calc(16 / 16 * 1rem);
  border-radius: 41px;
}

.m-contact-button--submit {
  --_max-width: 245;
  position: relative;
  display: inline-block;
  font-size: calc(14 / 16 * 1rem);
  font-family: var(--font-family__inter);
  font-weight: 500;
  line-height: 1.5714285714;
  width: min(100%, 160 / 16 * 1rem);
  border: 1px solid var(--color__black);
}

.m-contact {
  padding-top: calc(59 / 16 * 1rem);
  padding-bottom: calc(128 / 16 * 1rem);
}

.m-contact__form {
  margin-top: calc(87 / 16 * 1rem);
}

.m-company-profile {
  position: relative;
  padding-block: calc(80 / 16 * 1rem);
}

.m-company-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fffcf3;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}

.m-company-profile__card-group {
  --_row-gap__grid: 48;
  --_width__left: 216;
  --_width__right: 739;
  --_column-gap: 43;
  margin-top: calc(41 / 16 * 1rem);
}

.m-company-about {
  padding-bottom: calc(80 / 16 * 1rem);
}

.m-company-about__inner {
  --_max-width: 810;
}

.m-company-about__contents {
  margin-top: calc(25 / 16 * 1rem);
}

.m-company-about__map {
  margin-top: calc(44 / 16 * 1rem);
}

.m-company-about__map iframe {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 810/479;
  width: 100%;
  max-width: calc(810 / 16 * 1rem);
  height: 100%;
}

.m-column-card {
  position: relative;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: calc(15 / 16 * 1rem);
  padding: calc(30 / 16 * 1rem);
  border-radius: 10px;
}

.m-column-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f8ff;
  border-radius: 10px;
  z-index: -1;
}

.m-column-card__thumbnail {
  display: flex;
}

.m-column-card__thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 300/168;
  width: 100%;
  height: 100%;
}

.m-column-card__thumbnail--archive img {
  aspect-ratio: 335/168;
}

.m-column-card__header {
  display: flex;
  align-items: center;
  gap: calc(23 / 16 * 1rem);
  margin-top: calc(15 / 16 * 1rem);
}

.m-column-card__date {
  position: relative;
  font-size: calc(16 / 16 * 1rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.m-column-card__category {
  font-size: calc(16 / 16 * 1rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #4e64ad;
}

.m-column-card__title {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.3888888889;
}

.m-card {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: calc(12 / 16 * 1rem);
}

.m-card__thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 524/280;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.m-card__header {
  position: relative;
  padding-left: calc(9 / 16 * 1rem);
  padding-bottom: calc(12 / 16 * 1rem);
  margin-top: calc(4 / 16 * 1rem);
}

.m-card__header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(1 / 16 * 1rem);
  background: var(--color__gradient-blue);
}

.m-card__title {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.4166666667;
}

.m-card__body {
  padding-left: calc(6 / 16 * 1rem);
}

.m-card__items {
  display: flex;
  flex-direction: column;
}

.m-card__item {
  position: relative;
  font-size: calc(15 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.8;
  padding-left: calc(16 / 16 * 1rem);
}

.m-card__item::before {
  content: '';
  position: absolute;
  top: calc(10 / 16 * 1rem);
  left: calc(3 / 16 * 1rem);
  width: calc(7 / 16 * 1rem);
  height: calc(8 / 16 * 1rem);
  background-color: #4e64ad;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.m-button {
  --_color__main-default: var(--color__white);
  --_color__sub-default: var(--color__blue);
  --_color__main: var(--_color__main-default);
  --_color__sub: var(--_color__sub-default);
  --_max-width: 300;
  --_duration: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(var(--_max-width) * 1rem / var(--font-size__base));
  width: 100%;
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  color: var(--_color__sub);
  line-height: 1.2;
  background-color: var(--_color__main);
  border-width: 1px;
  border-style: solid;
  border-color: var(--_color__sub);
  border-radius: 50px;
  transition:
    color var(--_duration),
    background-color var(--_duration),
    border-color var(--_duration),
    filter var(--_duration);
  touch-action: manipulation;
  padding-block: calc(17 / 16 * 1rem);
}

.m-button::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: calc(28 / 16 * 1rem);
  transform: translateY(-50%);
}
.m-button:focus-visible {
  color: var(--_color__main);
  background-color: var(--_color__sub);
  filter: unset;
}

.m-button--invert {
  --_color__main: var(--_color__sub-default);
  --_color__sub: var(--_color__main-default);
  border-color: var(--_color__main);
}

.m-button--secondary {
  --_color__main-default: var(--color__secondary);
  --_color__sub-default: var(--color__white);
}

.m-button--training-service {
  --_color__main: var(--_color__sub-default);
  --_color__sub: var(--_color__main-default);
  font-size: calc(18 / 16 * 1rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-color: var(--_color__main);
  padding: calc(18 / 16 * 1rem) calc(67 / 16 * 1rem);
}

.m-button--training-service-menu {
  --_color__main: var(--_color__sub-default);
  --_color__sub: var(--_color__main-default);
  font-size: calc(18 / 16 * 1rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-color: var(--_color__main);
  padding: calc(18 / 16 * 1rem) calc(67 / 16 * 1rem);
}

.m-button--training-service-menu::before {
  content: '\f078';
}

.m-breadcrumb {
  padding-top: calc(20 / 16 * 1rem);
}

.m-breadcrumb .wp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(11 / 16 * 1rem);
}

.m-breadcrumb .wp-breadcrumb span {
  font-size: calc(12 / 16 * 1rem);
  color: var(--color__black);
  line-height: 1;
}

.m-base-text {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.8125;
}

.m-archive-training-service {
  padding-bottom: calc(80 / 16 * 1rem);
}

.m-archive-training-service__text-wrapper {
  margin-top: calc(54 / 16 * 1rem);
}

.m-archive-training-service__contents {
  margin-top: calc(40 / 16 * 1rem);
}

.m-archive-training-service__title-wrapper {
  margin-top: calc(60 / 16 * 1rem);
}

.m-archive-column {
  padding-top: calc(50 / 16 * 1rem);
  padding-bottom: calc(128 / 16 * 1rem);
}

.m-archive-column__two-columns {
  --_row-gap__grid: 80;
  --_width__left: 822;
  --_width__right: 250;
  --_column-gap: 52;
}

.m-archive-column__contents {
  --_max-width: 822;
  --_column-gap: 34;
  --_row-gap: 33;
}

.m-archive-column__page-nav {
  margin-top: calc(50 / 16 * 1rem);
}

.m-accordion__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(31 / 16 * 1rem);
  padding-block: calc(20 / 16 * 1rem);
  padding-right: calc(83 / 16 * 1rem);
  padding-left: calc(30 / 16 * 1rem);
  cursor: pointer;
}

.m-accordion__question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color__gradient-blue);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: -1;
}

.m-accordion__question-text {
  position: relative;
  flex: 1;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
  color: var(--color__white);
  line-height: 1.1875;
}

.m-accordion__question-text::before {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(-51 / 16 * 1rem);
  width: calc(21 / 16 * 1rem);
  height: calc(3 / 16 * 1rem);
  transition: transform 0.3s;
  background-color: var(--color__white);
}

.m-accordion__question-text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(-51 / 16 * 1rem);
  width: calc(21 / 16 * 1rem);
  height: calc(3 / 16 * 1rem);
  transform: rotate(90deg);
  transition: transform 0.3s;
  background-color: var(--color__white);
}

.m-accordion__question-text.active::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(-51 / 16 * 1rem);
  width: calc(21 / 16 * 1rem);
  height: calc(3 / 16 * 1rem);
  transform: rotate(180deg);
  transition: transform 0.3s;
  background-color: var(--color__white);
}

.m-accordion__question-icon {
  position: relative;
  font-size: calc(25 / 16 * 1rem);
  font-family: var(--font-family__roboto);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  padding-block: calc(8 / 16 * 1rem);
  padding-inline: calc(12 / 16 * 1rem);
}

.m-accordion__question-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}

.m-accordion__answer {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(31 / 16 * 1rem);
  padding: calc(20 / 16 * 1rem) calc(30 / 16 * 1rem);
}

.m-accordion__answer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__white);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.m-accordion__answer-icon {
  position: relative;
  font-size: calc(25 / 16 * 1rem);
  font-family: var(--font-family__roboto);
  font-weight: 700;
  color: var(--color__white);
  line-height: 1;
  padding-block: calc(8 / 16 * 1rem);
  padding-inline: calc(12 / 16 * 1rem);
}

.m-accordion__answer-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__orange);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}

.m-accordion__answer-text {
  flex: 1;
}

.m-accordion-group {
  display: grid;
  gap: calc(20 / 16 * 1rem);
}

.m-about-training-service {
  position: relative;
  padding-top: calc(80 / 16 * 1rem);
  padding-bottom: calc(80 / 16 * 1rem);
}

.m-about-training-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/about/about-training-service-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/1475;
  z-index: -1;
}

.m-about-mystery-shopper {
  position: relative;
  padding-top: calc(80 / 16 * 1rem);
  padding-bottom: calc(80 / 16 * 1rem);
}

.m-about-mystery-shopper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/about/about-mystery-shopper-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/1490;
  z-index: -1;
}

.m-about-header__contents {
  --_width__left: 651;
  --_width__right: 429;
  --_column-gap: 44;
  margin-top: calc(30 / 16 * 1rem);
}

.m-about-header__item {
  align-items: center;
}

.m-about-header__body {
  display: grid;
  gap: calc(12 / 16 * 1rem);
}

.m-about-header__text {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.6111111111;
}

.m-about-header__image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 429/310;
  height: 100%;
  border-radius: 20px;
}

.m-about-header__button-wrapper {
  margin-top: calc(48 / 16 * 1rem);
}

.m-about-contents {
  --_width__left: 527;
  --_width__right: 549;
  --_column-gap: 48;
  margin-top: calc(41 / 16 * 1rem);
}

.m-about-contents__item {
  align-items: center;
}

.m-about-contents__body {
  display: grid;
  gap: calc(24 / 16 * 1rem);
}

.m-about-contents__image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 527/381;
  height: 100%;
  border-radius: 20px;
}

.m-about-case-studies {
  padding-top: calc(48 / 16 * 1rem);
  padding-bottom: calc(109 / 16 * 1rem);
}

.m-about-case-studies__inner {
  --_max-width: 810;
}

.m-about-case-studies__title {
  font-size: calc(40 / 16 * 1rem);
  font-family: var(--font-family__inter);
  font-weight: 700;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  text-align: center;
}

.m-about-case-studies__wrapper {
  position: relative;
  margin-top: calc(37 / 16 * 1rem);
}

.m-about-case-studies__wrapper::before {
  content: '';
  position: absolute;
  top: calc(-100 / 16 * 1rem);
  left: calc(clamp(0px, -21.286rem + 44.35vw, 298px) * -1);
  background-image: url(../images/about/case-studies-icon-left.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(300 / 16 * 1rem);
  height: calc(309 / 16 * 1rem);
  aspect-ratio: 300/309;
  z-index: -1;
}

.m-about-case-studies__wrapper::after {
  content: '';
  position: absolute;
  top: calc(-132 / 16 * 1rem);
  right: calc(clamp(0px, -15rem + 31.25vw, 210px) * -1);
  background-image: url(../images/about/case-studies-icon-right.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(198 / 16 * 1rem);
  height: calc(174 / 16 * 1rem);
  aspect-ratio: 198/174;
  z-index: -1;
}

.m-about-case-studies__text {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 500;
  line-height: 1.8;
}

/*
 * ページについて
 * 各ページ固有のスタイルを定義します。
 * ページごとのユニークなスタイルや、ページ固有のコンポーネントが含まれています。
 * クラス名は、p-home-blockのように命名します。
 */
.p-voice__training-service {
  margin-top: calc(80 / 16 * 1rem);
}

.p-voice__mystery-shopper {
  margin-top: calc(126 / 16 * 1rem);
}

.p-mystery-shopper__media {
  margin-top: calc(64 / 16 * 1rem);
}

.p-contact__form {
  width: min(100%, 900 / 16 * 1rem);
  margin-inline: auto;
  margin-top: calc(80 / 16 * 1rem);
}

.p-about__training-service {
  margin-top: calc(80 / 16 * 1rem);
}

.p-about__case-studies {
  margin-top: calc(61 / 16 * 1rem);
}

.p-about__contact-cta {
  margin-top: calc(38 / 16 * 1rem);
}

/*
 * ユーティリティについて
 * 再利用可能なユーティリティクラスを定義します。
 * ユーティリティクラスは、コンポーネントやページのスタイルを簡潔に記述するために使用されます。
 * クラス名は、u-brのように命名します。
 */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* PCでのみ表示 */
/* スマホでのみ表示 */
.u-hover {
  transition: opacity 0.3s;
}

.u-hover:focus-visible {
  opacity: var(--opacity__hover);
}
.u-hover--drop-shadow {
  transition: filter 0.3s;
}

.u-hover--drop-shadow:focus-visible {
  filter: drop-shadow(var(--drop-shadow__hover));
}
.u-font-weight--100 {
  font-weight: 100;
}

.u-font-weight--200 {
  font-weight: 200;
}

.u-font-weight--300 {
  font-weight: 300;
}

.u-font-weight--400 {
  font-weight: 400;
}

.u-font-weight--500 {
  font-weight: 500;
}

.u-font-weight--600 {
  font-weight: 600;
}

.u-font-weight--700 {
  font-weight: 700;
}

.u-font-weight--800 {
  font-weight: 800;
}

.u-font-weight--900 {
  font-weight: 900;
}

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

.u-bg--brown {
  background-color: var(--color__brown);
}

.u-bg--orange {
  background-color: var(--color__orange);
}

.m-arrow--right {
  position: relative;
}

.m-arrow--right::before {
  content: '';
  position: absolute;
  top: 55%;
  left: 0;
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px var(--color__blue);
  border-right: solid 2px var(--color__blue);
  margin-top: -4px;
  transform: rotate(45deg);
}

/*
 * プラグインについて
 * WordPressプラグインや外部ライブラリのスタイルを定義します。
 * プラグインのデフォルトスタイルをカスタマイズする際に使用します。
 */
/* ページネーション全体 */
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(24 / 16 * 1rem);
}

/* 各ページ番号（通常） */
.page-numbers li a {
  display: inline-block;
  font-size: calc(15 / 16 * 1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: transparent;
  background: var(--color__gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 4px;
}

/* 現在のページ番号 */
.page-numbers li span.current {
  display: inline-block;
  color: var(--color__white);
  background: var(--color__gradient-blue);
  border-radius: 4px;
  padding-top: calc(7 / 16 * 1rem);
  padding-bottom: calc(8 / 16 * 1rem);
  padding-right: calc(10 / 16 * 1rem);
  padding-left: calc(11 / 16 * 1rem);
}

/* 前へ・次へ */
.page-numbers li a.prev,
.page-numbers li a.next {
  font-weight: bold;
}

/* 無効リンク（前へ／次へ がないとき） */
@media (min-width: 768px) {
  .u-only--sp {
    display: none;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: calc(var(--_font-size) / var(--_width) * 100vw);
  }
  .m-voice-contents {
    padding: calc(20 / 16 * 1rem);
  }
  .m-voice-contents__header {
    --_row-gap: 40;
  }
  .m-voice-block__content {
    flex-direction: column;
    gap: calc(40 / 16 * 1rem);
    padding-inline: calc(20 / 16 * 1rem);
  }
  .m-voice-block__content--mystery-shopper {
    gap: calc(40 / 16 * 1rem);
  }
  .m-square-button-unit {
    grid-template-columns: auto;
  }
  .m-sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color__white);
    z-index: 10;
    overflow-y: auto;
  }
  .m-section-title__text {
    flex: 1;
  }
  .m-section-title__text--middle {
    flex: unset;
  }
  .m-section-title__text--large {
    flex: unset;
  }
  .m-section-header__title {
    font-size: calc(32 / 16 * 1rem);
    line-height: 1.5;
  }
  .m-section-header__title.m-section-header__title--column::before {
    right: calc(-80 / 16 * 1rem);
  }
  .m-program-step__body {
    padding: calc(12 / 16 * 1rem);
  }
  .m-profile-card {
    padding-inline: calc(20 / 16 * 1rem);
  }
  .m-pc-nav__items {
    row-gap: calc(20 / 16 * 1rem);
  }
  .m-mystery-shopper-problems__speech-bubble--fourth {
    bottom: -150px;
    left: -10px;
  }
  .m-mystery-shopper-problems__speech-bubble img {
    width: calc(160 / 16 * 1rem);
  }
  .m-mystery-shopper-point__contents {
    padding: calc(20 / 16 * 1rem) calc(40 / 16 * 1rem);
  }
  .m-mystery-shopper-features__image img {
    width: clamp(25rem, -12.5rem + 78.13vw, 37.5rem);
  }
  .m-mv__body {
    top: 16%;
  }
  .m-mv__title {
    margin-top: clamp(20px, -2.5rem + 7.8vw, 2.4px);
  }
  .m-mv__title-main {
    font-size: clamp(1.875rem, 3.91vw, 2.5rem);
  }
  .m-mv__title-sub {
    font-size: clamp(1rem, 0.625rem + 0.78vw, 1.125rem);
    margin-top: calc(20 / 16 * 1rem);
  }
  .m-mv__body-button {
    margin-top: calc(24 / 16 * 1rem);
  }
  .m-header {
    max-width: 100%;
    padding-block: calc(24 / 16 * 1rem);
  }
  .m-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .m-header__logo img {
    width: calc(230 / 16 * 1rem);
  }
  .m-header__note {
    display: none;
  }
  .m-header__right {
    flex-direction: column;
    min-width: auto;
  }
  .m-header__right {
    display: none;
  }
  .m-header__bottom {
    display: none;
  }
  .m-hamburger {
    position: relative;
    width: calc(32 / 16 * 1rem);
    height: calc(24 / 16 * 1rem);
    z-index: 1000;
  }
  .m-hamburger,
  .m-hamburger span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  .m-footer__item {
    flex-direction: column;
    gap: calc(60 / 16 * 1rem);
  }
  .m-footer__left {
    align-items: center;
    width: 100%;
  }
  .m-footer__right {
    width: 100%;
  }
  .m-footer__tel {
    margin-left: 0;
  }
  .m-footer-nav {
    justify-content: center;
    gap: calc(60 / 16 * 1rem);
  }
  .m-definition-list__term.m-definition-list__term--last {
    flex-direction: column;
  }
  .m-contact-form__group {
    flex-direction: column;
    gap: calc(10 / 16 * 1rem);
  }
  .m-contact-form__label {
    justify-content: flex-start;
    width: 100%;
  }
  .m-contact-form__field {
    width: 100%;
  }
  .m-contact-cta {
    padding-block: calc(60 / 16 * 1rem);
  }
  .m-contact-cta__body {
    flex-direction: column;
    align-items: center;
    gap: calc(40 / 16 * 1rem);
  }
  .m-company-profile__card-group {
    --_row-gap: 40;
  }
}
@media (max-width: 782px) {
  body.admin-bar {
    --height__wp-admin-bar: 46px;
  }
}
@media (max-width: 767px) {
  :root {
    --width__breakpoint: 390;
    --space-inline__base: 16;
    --max-width__base: 600;
    --padding-block__base: 15;
    --radius__base: 13;
  }
  html {
    font-size: calc(var(--_font-size) * 1px);
  }
  .l-two-columns {
    --_row-gap__grid: 40;
    --_row-gap: 20;
    --_width__total: var(--width__contents);
  }
  .l-two-columns__item {
    --_width__left: 100%;
    --_width__right: 100%;
    flex-direction: column;
    row-gap: min(
      var(--_row-gap) / var(--_width__total) * 100vw,
      var(--_row-gap) * 1px
    );
  }
  .l-two-columns--zigzag .l-two-columns__item:nth-of-type(even) {
    flex-direction: column;
  }
  .l-inner {
    --_max-width: var(--max-width__base);
  }
  .l-inner--vertical {
    margin-bottom: calc(32rem / var(--font-size__base));
  }
  .l-grid-two {
    grid-template-columns: auto;
  }
  .l-grid-five {
    grid-template-columns: auto;
  }
  .l-container--sidebar {
    grid-template-columns: unset;
    row-gap: calc(32rem / var(--font-size__base));
  }
  .m-voice-contents__header {
    --_row-gap: 40;
  }
  .m-voice-block__title-main {
    font-size: calc(32 / 16 * 1rem);
    line-height: 1.5;
  }
  .m-training-service-block {
    padding: calc(40 / 16 * 1rem) calc(20 / 16 * 1rem);
  }
  .m-training-service-block__title {
    font-size: calc(20 / 16 * 1rem);
  }
  .m-tel-unit {
    display: grid;
    justify-items: center;
    gap: calc(20 / 16 * 1rem);
  }
  .m-tel-unit__link {
    font-size: calc(32 / 16 * 1rem);
    pointer-events: auto;
  }
  .m-tel-unit__icon {
    width: calc(32 / 16 * 1rem);
    height: calc(32 / 16 * 1rem);
  }
  .m-square-button {
    flex-direction: column;
    gap: calc(10 / 16 * 1rem);
    padding-left: calc(20 / 16 * 1rem);
    padding-block: calc(20 / 16 * 1rem);
  }
  .m-square-button::before {
    top: 45%;
  }
  .m-square-button__text {
    flex-direction: column;
    align-items: center;
  }
  .m-sp-nav__inner {
    --_max-width: 600;
  }
  .m-single-training-service__body h2 {
    font-size: calc(22 / 16 * 1rem);
  }
  .m-single-training-service__body > div {
    padding: calc(32 / 16 * 1rem) calc(20 / 16 * 1rem);
  }
  .m-single-column__item {
    row-gap: calc(80 / 16 * 1rem);
  }
  .m-service-training-title__text {
    font-size: calc(24 / 16 * 1rem);
    line-height: 1.3333333333;
  }
  .m-section-title {
    gap: calc(14 / 16 * 1rem);
  }
  .m-section-title__icon img {
    width: calc(40 / 16 * 1rem);
  }
  .m-section-title__text {
    font-size: calc(28 / 16 * 1rem);
  }
  .m-section-title__text--middle {
    flex: unset;
    font-size: calc(28 / 16 * 1rem);
    text-align: left;
  }
  .m-section-title__text--middle > span {
    font-size: calc(20 / 16 * 1rem);
  }
  .m-section-title__text--large {
    font-size: calc(28 / 16 * 1rem);
  }
  .m-section-header__title.m-section-header__title--contact {
    font-size: calc(32 / 16 * 1rem);
    line-height: 1.5;
  }
  .m-section-header__title.m-section-header__title--column::before {
    right: calc(-44 / 16 * 1rem);
  }
  .m-section-header__title-sub {
    font-size: calc(24 / 16 * 1rem);
    line-height: 1.3333333333;
  }
  .m-privacy-policy {
    padding-bottom: calc(60 / 16 * 1rem);
  }
  .m-privacy-policy__wrapper ul {
    margin-left: calc(8 / 16 * 1rem);
  }
  .m-page-title {
    font-size: calc(28 / 16 * 1rem);
  }
  .m-page-title::before {
    right: 0;
    width: calc(100 / 16 * 1rem);
  }
  .m-page-title--large::before {
    right: 0;
  }
  .m-mystery-shopper-problems__speech-bubble-group {
    flex-direction: column;
  }
  .m-mystery-shopper-problems__speech-bubble--fourth {
    position: unset;
  }
  .m-mystery-shopper-problems__speech-bubble--fifth {
    position: unset;
  }
  .m-mystery-shopper-problems__speech-bubble img {
    width: calc(250 / 16 * 1rem);
  }
  .m-mystery-shopper-point__contents {
    row-gap: calc(20 / 16 * 1rem);
    padding: calc(20 / 16 * 1rem);
  }
  .m-mystery-shopper-point__number {
    font-size: calc(60 / 16 * 1rem);
  }
  .m-mystery-shopper-features__item {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(40 / 16 * 1rem);
  }
  .m-mystery-shopper-features__image {
    margin-left: unset;
  }
  .m-mystery-shopper-features__image img {
    width: 100%;
  }
  .m-mystery-shopper-features__subtitle {
    font-size: calc(24 / 16 * 1rem);
  }
  .m-mv__image img {
    aspect-ratio: 375/535;
  }
  .m-mv__body {
    top: 28%;
    left: 5.1%;
    max-width: 346px;
  }
  .m-mv__title {
    margin-top: clamp(2rem, -0.909rem + 14.55vw, 2.5rem);
  }
  .m-mv__title-main {
    font-size: clamp(1.625rem, 0.17rem + 7.27vw, 1.875rem);
    font-weight: 700;
    line-height: 1;
  }
  .m-mv__title-main-accent {
    display: inline-block;
    padding: calc(3 / 16 * 1rem);
  }
  .m-mv__title-sub {
    font-size: clamp(0.875rem, 0.148rem + 3.64vw, 1rem);
    font-weight: 500;
    line-height: 1.4375;
    text-shadow: 0 0 2px var(--color__white);
    padding-right: calc(51 / 16 * 1rem);
    margin-top: calc(24 / 16 * 1rem);
  }
  .m-mv__subtitle {
    font-size: clamp(1.125rem, 0.398rem + 3.64vw, 1.25rem);
  }
  .m-mv__body-button {
    justify-content: flex-start;
    margin-top: calc(20 / 16 * 1rem);
  }
  .m-media-coverage__title {
    font-size: calc(28 / 16 * 1rem);
  }
  .m-media-coverage__title::before {
    right: unset;
    left: 72%;
    width: calc(80 / 16 * 1rem);
  }
  .m-media-coverage__pickup {
    flex-direction: column;
    align-items: center;
    margin-top: calc(40 / 16 * 1rem);
  }
  .m-media-coverage__pickup::before {
    left: unset;
    right: 72%;
    width: calc(80 / 16 * 1rem);
  }
  .m-home-training-service__bg-icon {
    left: calc(190 / 16 * 1rem);
  }
  .m-home-training-service__cards {
    row-gap: calc(30 / 16 * 1rem);
    grid-template-columns: 1fr;
  }
  .m-home-column__cards {
    --_min-width__column: 300;
  }
  .m-home-column__button::before {
    top: 0;
    left: 0;
  }
  .m-home-about__content-body-button {
    justify-content: center;
  }
  .m-header__inner {
    max-width: 100%;
  }
  .m-footer__item {
    gap: calc(80 / 16 * 1rem);
  }
  .m-footer-nav {
    flex-direction: column;
    gap: calc(24 / 16 * 1rem);
  }
  .m-fee-box__body {
    padding-left: calc(20 / 16 * 1rem);
    padding-bottom: calc(20 / 16 * 1rem);
  }
  .m-fee-box__item {
    flex-direction: column;
    gap: calc(16 / 16 * 1rem);
  }
  .m-definition-list__item {
    flex-direction: column;
  }
  .m-definition-list__term {
    width: 100%;
  }
  .m-definition-list__term.m-definition-list__term--last {
    flex-direction: row;
  }
  .m-definition-list__description {
    width: 100%;
    padding-left: calc(10 / 16 * 1rem);
  }
  .m-contact-form {
    max-width: 100%;
  }
  .m-contact-cta__inner.l-inner {
    --_max-width: var(--max-width__base);
  }
  .m-contact-cta__block::before {
    top: calc(-60 / 16 * 1rem);
    right: 0;
    width: calc(120 / 16 * 1rem);
    height: calc(120 / 16 * 1rem);
  }
  .m-contact-button.m-contact-button--mv {
    font-size: calc(18 / 16 * 1rem);
    line-height: 1.4444444444;
    --_max-width: 220;
  }
  .m-contact-button.m-contact-button--contact {
    font-size: calc(20 / 16 * 1rem);
  }
  .m-contact {
    padding-bottom: calc(80 / 16 * 1rem);
  }
  .m-company-profile__card-group {
    --_row-gap: 40;
  }
  .m-button--training-service {
    padding-inline: clamp(2.25rem, 1.176rem + 5.37vw, 3.75rem);
  }
  .m-archive-training-service__contents {
    row-gap: calc(30 / 16 * 1rem);
  }
  .m-archive-column {
    padding-bottom: calc(80 / 16 * 1rem);
  }
  .m-archive-column__item {
    row-gap: calc(80 / 16 * 1rem);
  }
  .m-accordion__question {
    padding-right: calc(60 / 16 * 1rem);
    padding-left: calc(16 / 16 * 1rem);
  }
  .m-accordion__question-text::before {
    right: calc(-40 / 16 * 1rem);
  }
  .m-accordion__question-text::after {
    right: calc(-40 / 16 * 1rem);
  }
  .m-accordion__question-text.active::after {
    right: calc(-40 / 16 * 1rem);
  }
  .m-accordion__question-icon {
    font-size: calc(20 / 16 * 1rem);
    padding-block: calc(9 / 16 * 1rem);
  }
  .m-accordion__answer {
    padding-inline: calc(16 / 16 * 1rem);
  }
  .m-accordion__answer-icon {
    font-size: calc(20 / 16 * 1rem);
    padding-block: calc(9 / 16 * 1rem);
  }
  .m-about-header__contents {
    --_row-gap: 40;
  }
  .m-about-contents {
    --_row-gap: 60;
    --_row-gap__grid: 60;
  }
  .m-about-case-studies__title {
    font-size: calc(24 / 16 * 1rem);
  }
  .m-about-case-studies__wrapper::before {
    width: calc(120 / 16 * 1rem);
    height: calc(120 / 16 * 1rem);
  }
  .m-about-case-studies__wrapper::after {
    width: calc(100 / 16 * 1rem);
    height: calc(75 / 16 * 1rem);
  }
  .m-about-case-studies__text {
    font-size: calc(16 / 16 * 1rem);
  }
  .u-only--pc {
    display: none;
  }
}
@media (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
@media (max-width: 390px) {
  html {
    font-size: calc(var(--_font-size) / var(--_width) * 100vw);
  }
}
@media (any-hover: hover) {
  .m-contact-button:hover {
    color: var(--_color__main);
    background-color: var(--_color__sub);
    border-color: var(--_color__main);
    filter: unset;
  }
  .m-button:hover {
    color: var(--_color__main);
    background-color: var(--_color__sub);
    filter: unset;
  }
  .u-hover:hover {
    opacity: var(--opacity__hover);
  }
  .u-hover--drop-shadow:hover {
    filter: drop-shadow(var(--drop-shadow__hover));
  }
}
/*# sourceMappingURL=style.css.map */

.m-header {
    padding-top: calc(20 / 16 * 1rem);
    padding-bottom: calc(20 / 16 * 1rem);
}
.m-header__bottom {
    margin-top: calc(16 / 16 * 1rem);
}

.m-single-training-service__outer {
    padding-top: calc(80 / 16 * 1rem);
}
body.single .m-service-training-title{
	justify-content:center;
}

.grecaptcha-badge { visibility: hidden; }
.recaptcha-note{
	text-align:center;
	font-size:12px;
}
.m-sub-mv {
    padding-block: calc(54 / 16 * 1rem);
}
@media (max-width: 767px) {
    .m-button--training-service {
        text-align:center;
    }
	.m-button::before {
		right: calc(16 / 16 * 1rem);
	}
	.m-accordion__question,
	.m-accordion__answer{
		gap: calc(10 / 16 * 1rem);
	}
	.m-base-text {
    line-height: 1.5;
	}
}
