@charset "UTF-8";

/* ----------------------------------------------------
	Reset
---------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  min-height: 0;
}

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

body {
  margin: 0;
}

main {
  display: block;
}

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

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

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

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

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

option {
  padding: 0;
}

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

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

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

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

template {
  display: none;
}

[hidden] {
  display: none;
}

/* ----------------------------------------------------
	Base
---------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-font-kerning: none;
  height: 100%;
  color: #111;
  font-size: 2.6666vw;
  font-kerning: none;
}

body {
  position: relative;
  background-color: #fff;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------
	Header
---------------------------------------------------- */
.l-header {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.l-header.js-fixed {
  -webkit-animation: slidedown 0.3s ease-in-out;
  position: fixed;
  background-color: #fff;
  animation: slideDown 0.3s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 7.2rem;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

.l-header__logo img {
  width: 8.6rem;
}

.l-header__naviWrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.l-header__button ul {
  display: flex;
  gap: 0.5rem;
}

.l-header__button--item a {
  display: block;
  font-weight: 500;
}

/* ----------------------------------------------------
	Footer
---------------------------------------------------- */
.l-footer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #111;
  color: #fff;
}

.l-footer__copyright {
  margin-block: calc((1em - 1lh) / 2);
  text-align: center;
}

.l-footer__copyright small {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

/* ----------------------------------------------------
	Main
---------------------------------------------------- */
.l-rootContainer {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  overflow: hidden;
}

.l-main {
  flex: 1;
}

/* ----------------------------------------------------
	Link
---------------------------------------------------- */
.c-link {
  transition: opacity 0.3s;
}

.c-link:hover {
  opacity: 0.7;
}

/* ----------------------------------------------------
	flex
---------------------------------------------------- */
.c-flex-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2rem;
}

.c-flex-2 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2.4rem;
}

/* ----------------------------------------------------
	box
---------------------------------------------------- */
.c-box01 {
  width: calc((100% - 2rem) / 2);
}

.c-box01__inner {
  display: block;
}

.c-box01__image {
  margin-bottom: 1.6rem;
  border: solid 1px #ddd;
}

.c-box01__image img {
  width: 100%;
}

.c-box01__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-box01.--show-arrow .c-box01__text {
  padding-right: 2.4rem;
  background: url("../images/icon_arrow01.svg") no-repeat top 0.8rem right/1.6rem auto;
}

.c-box02__inner {
  display: flex;
  align-items: center;
  padding: 1.6rem 1.6rem 1.6rem 2.4rem;
  gap: 1.6rem;
  border: solid 1px #ddd;
}

.c-box02__textWrapper {
  flex: 1;
}

.c-box02__title {
  font-weight: 500;
  font-size: 1.5rem;
}

.c-box02__title--small {
  font-size: 1.2rem;
}

.c-box02__text {
  margin-top: 0.4rem;
  font-size: 1.2rem;
}

.c-box02__text a {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* ----------------------------------------------------
	list
---------------------------------------------------- */
.c-listItem {
  position: relative;
  padding-left: 1rem;
}

.c-listItem::before {
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 100%;
  background-color: #111;
  content: "";
}

.c-listItem:not(:first-of-type) {
  margin-top: 0.4rem;
}

/* ----------------------------------------------------
	tab menu
---------------------------------------------------- */
.c-tab {
  display: flex;
  flex-wrap: wrap;
}

.c-tab > label {
  position: relative;
  flex: 1 1;
  order: -1;
  width: 50%;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #ddd;
  color: #aaa;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.c-tab > label:hover {
  border-color: #111;
  color: #111;
}

.c-tab input {
  display: none;
}

.c-tab label:has(:checked) {
  border-bottom: 4px solid #111;
  color: #111;
}

.c-tab label:has(:checked) + div {
  display: block;
}

.c-tab__body {
  display: none;
  width: 100%;
  padding: 3.2rem 1.6rem 0;
  background-color: #fff;
}

/* ----------------------------------------------------
	table
---------------------------------------------------- */
.c-table table {
  width: 100%;
}

.c-table tr:nth-of-type(even) {
  background-color: #f6f6f6;
}

.c-table th {
  padding: 1.6rem 1.6rem 0;
  font-weight: 500;
}

.c-table td {
  padding: 0.8rem 1.6rem 1.6rem;
}

/* ----------------------------------------------------
	Top Common Section
---------------------------------------------------- */
.c-topSection {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* ----------------------------------------------------
	Component
---------------------------------------------------- */

/* コンテンツ枠 */
.c-contentBlock01 {
  z-index: 1;
  position: relative;
  width: 100%;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

.c-contentBlock02 {
  z-index: 1;
  position: relative;
  width: 100%;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

/* Heading */
.c-topHeading {
  margin-block: calc((1em - 1lh) / 4) 4rem;
  font-weight: bold;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}

/* page - Heading */

/* 見出し */
.c-pageHeadingWrapper01 {
  margin-right: 1.6rem;
  margin-bottom: 4rem;
  margin-left: 1.6rem;
  padding-top: 12.4rem;
  padding-bottom: 7.2rem;
  border-bottom: 1px solid #ddd;
}

.c-pageHeading01 {
  font-weight: 500;
  font-size: 2.4rem;
}

.c-pageHeading01::after {
  display: block;
  margin-top: 1.6rem;
  content: attr(data-text) "";
  color: #aaa;
  font-weight: normal;
  font-size: 1.2rem;
  font-family: "Cabin Condensed", sans-serif;
  letter-spacing: 0.1em;
}

.c-pageHeadingWrapper02 {
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.c-pageHeading02 {
  font-weight: normal;
  font-size: 2.8rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.c-pageHeading03 {
  font-weight: 500;
  font-size: 1.8rem;
}

.c-breadCrumb {
  margin-top: 12rem;
  margin-bottom: 4rem;
}

.c-breadCrumb .c-breadCrumb__list {
  display: flex;
  gap: 2.8rem;
}

.c-breadCrumb .c-breadCrumb__item {
  position: relative;
}

.c-breadCrumb .c-breadCrumb__item a {
  font-size: 1.2rem;
}

.c-breadCrumb .c-breadCrumb__item:first-of-type a {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.c-breadCrumb .c-breadCrumb__item:last-of-type a {
  pointer-events: none;
}

.c-breadCrumb .c-breadCrumb__item::after {
  display: block;
  position: absolute;
  top: 1.2rem;
  left: calc(100% + 0.9rem);
  width: 0.6rem;
  height: 0.6rem;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #111;
  border-right: 1px solid #111;
  content: "";
}

.c-breadCrumb .c-breadCrumb__item:last-of-type::after {
  display: none;
}

/* ----------------------------------------------------
	Project
---------------------------------------------------- */

/* mainVisual */
.p-mainVisual {
  position: relative;
  min-height: 50rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: url("../images/mv_bg01.png") no-repeat center/cover;
}

.p-mainVisual__textWrapper {
  position: absolute;
  top: calc(50% - 2.4rem);
  width: 100%;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
  transform: translateY(-50%);
  text-align: center;
}

.p-mainVisual__title {
  font-weight: normal;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.p-mainVisual__scroll {
  position: absolute;
  right: 0;
  bottom: -2.9rem;
  left: 0;
  margin: auto;
  padding-bottom: 9.6rem;
  text-align: center;
}

.p-mainVisual__scroll::before {
  -webkit-animation: scrolldown 2s infinite;
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  width: 1px;
  height: 80px;
  margin: auto;
  background-color: #111;
  content: "";
  animation: scrollDown 2s infinite;
}

.p-mainVisual__scrollText {
  font-weight: 500;
  letter-spacing: 0.2em;
}

@-webkit-keyframes scrollDown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes scrollDown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* section 01 */
.p-section-01__boxWrapper {
  margin-top: 4rem;
  padding-right: 2.4rem;
  padding-left: 2.4rem;
} /* section 02 */
.p-section-02 {
  padding-top: 0;
  padding-bottom: 12rem;
}

.p-section-02__boxWrapper {
  margin-top: 4rem;
  padding-right: 2.4rem;
  padding-left: 2.4rem;
}

/* マーケティング支援 */
.p-marketing-section-01__boxWrapper {
  margin-top: 4rem;
  padding-right: 2.4rem;
  padding-left: 2.4rem;
}

/* 支援事例・実績 */
.p-case-section-01 {
  margin-bottom: 16rem;
}

.p-case-section-01__boxWrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5.6rem 0;
}

.p-case-section-01__inner {
  display: block;
}

.p-case-section-01__thumbnail {
  margin-bottom: 1.4rem;
}

.p-case-section-01__logo {
  margin-bottom: 2.4rem;
}

.p-case-section-01__logo img {
  width: auto;
  height: 4rem;
}

.p-case-section-01__name {
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
}

.p-case-section-01__text {
  font-weight: bold;
  font-size: 1.8rem;
}

.p-case-section-02 {
  margin-bottom: 16rem;
}

.p-case-section-02__headingWrapper {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 10rem;
  padding-bottom: 5.6rem;
}

.p-case-section-02__heading01 {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.34;
}

.p-case-section-02__heading02 {
  margin-top: 4.8rem;
  margin-bottom: 3.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  font-size: 2rem;
}

.p-case-section-02__heading02:not(:first-of-type) {
  margin-top: 4.8rem;
}

.p-case-section-02__heading03 {
  position: relative;
  margin-bottom: 1.8rem;
  padding-left: 2.5rem;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: -0.005em;
}

.p-case-section-02__heading03:not(:first-of-type) {
  margin-top: 3.2rem;
}

.p-case-section-02__heading03::before {
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 1.2rem;
  height: 0.2rem;
  background-color: #000;
  content: "";
}

.p-case-section-02__name {
  margin-bottom: 1.3rem;
  font-size: 1.8rem;
}

.p-case-section-02__eyecatch {
  height: 14.5rem;
}

.p-case-section-02__textWrapper {
  margin-top: 4rem;
}

.p-case-section-02__text {
  padding-left: 2.5rem;
  line-height: 1.8;
}

.p-case-section-02__text.--intro {
  position: relative;
  padding-left: 2.5rem;
}

.p-case-section-02__text.--intro::before {
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 1.2rem;
  height: 1px;
  background-color: #000;
  content: "";
}

/* ----------------------------------------------------
	Utility
---------------------------------------------------- */
.u-bold {
  font-weight: bold;
}

.u-font--en {
  font-family: "Cabin Condensed", sans-serif;
}

.u-objectFit {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.u-objectFit-bottom {
  -o-object-fit: cover;
  -o-object-position: bottom;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.u-objectFit-top {
  -o-object-fit: cover;
  -o-object-position: top;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ----------------------------------------------------
	以下、PC用・スマホ用のメディアクエリ
---------------------------------------------------- */

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
  body {
    font-size: 1.6rem;
  }
  .l-header__inner {
    width: 144rem;
    max-width: 100%;
    height: 8.4rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 8rem;
    padding-left: 8rem;
  }
  .l-header__logo {
    margin-top: -0.2rem;
  }
  .l-header__logo img {
    width: 8.6rem;
  }
  .l-header__naviWrapper {
    gap: 3.9rem;
  }
  .l-header__navi--item {
    font-size: 1.4rem;
  }
  .l-header__button ul {
    gap: 0.8rem;
  }
  .l-header__button--item {
    font-size: 1.4rem;
  }
  .l-footer {
    padding-top: 2.9rem;
    padding-bottom: 3rem;
  }
  .c-flex-3 {
    flex-direction: row;
    gap: 8rem 6.4rem;
  }
  .c-flex-2 {
    flex-direction: row;
    gap: 4rem;
  }
  .c-box01 {
    width: 28rem;
  }
  .c-box01__image {
    margin-bottom: 2.3rem;
  }
  .c-box01__text {
    font-size: 1.6rem;
  }
  .c-box01.--show-arrow .c-box01__text {
    padding-right: 3.9rem;
    background-position: top 0.6rem right;
    background-size: 2.3rem auto;
  }
  .c-box02 {
    width: 44rem;
  }
  .c-box02__inner {
    padding: 4.7rem 3.2rem 4.7rem 3.9rem;
    gap: 2.4rem;
  }
  .c-box02__title {
    font-size: 1.8rem;
  }
  .c-box02__title--small {
    font-size: 1.4rem;
  }
  .c-box02__text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
  .c-listItem {
    padding-left: 1.4rem;
  }

  .c-listItem::before {
    width: 0.6rem;
    height: 0.6rem;
  }

  .c-listItem:not(:first-of-type) {
    margin-top: 0.8rem;
  }
  .c-tab > label {
    padding-bottom: 2.4rem;
    font-size: 2rem;
  }
  .c-tab__body {
    min-height: 41.6rem;
    padding: 5.6rem 6rem 0;
  }
  .c-table th {
    padding: 3.2rem 0 3.2rem 10rem;
  }
  .c-table td {
    width: 87.6rem;
    padding: 3.2rem 3.2rem 3.2rem 8rem;
  }
  .c-topSection {
    padding-top: 12.8rem;
    padding-bottom: 12rem;
  }
  .c-contentBlock01 {
    width: 104rem;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .c-contentBlock02 {
    width: 108rem;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .c-topHeading {
    margin-block: calc((1em - 1lh) / 3.5) 4.8rem;
    font-size: 4.8rem;
  }
  .c-pageHeadingWrapper01 {
    width: 128rem;
    max-width: 100%;
    margin-right: auto;
    margin-bottom: 8rem;
    margin-left: auto;
    padding-top: 13.2rem;
    padding-bottom: 8rem;
  }
  .c-pageHeading01 {
    font-size: 3.2rem;
  }

  .c-pageHeading01::after {
    font-size: 1.6rem;
  }
  .c-pageHeadingWrapper02 {
    width: 128rem;
    max-width: 100%;
    margin-right: auto;
    margin-bottom: 4.4rem;
    margin-left: auto;
    padding-top: 16.4rem;
    padding-bottom: 8rem;
  }
  .c-pageHeading02 {
    font-size: 4rem;
  }
  .c-pageHeading03 {
    font-size: 2.4rem;
  }
  .c-breadCrumb {
    margin-top: 19.7rem;
    margin-bottom: 4.7rem;
  }
  .c-breadCrumb .c-breadCrumb__item a {
    font-size: 1.4rem;
  }
  .c-breadCrumb .c-breadCrumb__item::after {
    top: 1.3rem;
  }
  .p-mainVisual {
    min-height: 83.2rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .p-mainVisual__textWrapper {
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .p-mainVisual__title {
    font-size: 6.4rem;
    letter-spacing: 0.38em;
    text-indent: 0.38em;
  }
  .p-section-01__boxWrapper {
    padding-right: 0;
    padding-left: 7.2rem;
  }
  .p-section-02 {
    padding-top: 4.8rem;
    padding-bottom: 20rem;
  }
  .p-section-02__boxWrapper {
    padding-right: 0;
    padding-left: 7.2rem;
  }
  .p-marketing-section-01__boxWrapper {
    margin-top: 5.6rem;
    padding-right: 0;
    padding-left: 7.2rem;
  }
  .p-case-section-01 {
    margin-bottom: 34.2rem;
  }
  .p-case-section-01__boxWrapper {
    flex-direction: row;
    margin-top: 0.5rem;
    gap: 6.4rem 4rem;
  }
  .p-case-section-01__box {
    width: 50rem;
  }
  .p-case-section-01__thumbnail {
    height: 25rem;
  }
  .p-case-section-02 {
    margin-bottom: 36.7rem;
  }
  .p-case-section-02__headingWrapper {
    width: 96rem;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 24rem;
    padding-bottom: 6.5rem;
  }
  .p-case-section-02__heading01 {
    font-size: 3.4rem;
  }
  .p-case-section-02__heading02 {
    margin-top: 7rem;
    margin-bottom: 4.9rem;
    font-size: 3.2rem;
  }

  .p-case-section-02__heading02:not(:first-of-type) {
    margin-top: 8rem;
  }
  .p-case-section-02__heading03 {
    font-size: 2.2rem;
  }

  .p-case-section-02__heading03:not(:first-of-type) {
    margin-top: 6.2rem;
  }

  .p-case-section-02__heading03::before {
    top: 1.7rem;
  }
  .p-case-section-02__name {
    font-size: 2.2rem;
  }
  .p-case-section-02__eyecatch {
    width: 80rem;
    height: 34rem;
    margin-right: auto;
    margin-left: auto;
  }
  .p-case-section-02__logo {
    width: 80rem;
    margin-right: auto;
    margin-left: auto;
  }
  .p-case-section-02__textWrapper {
    width: 96rem;
    max-width: 100%;
    margin-top: 6rem;
    margin-right: auto;
    margin-left: auto;
  }
  .p-case-section-02__text {
    font-size: 1.8rem;
  }
  .p-case-section-02__text.--intro::before {
    top: 1.7rem;
  }
  /* スマホのみ表示 */
  .u-sp-only {
    display: none;
  }
}

@media not all and (min-width: 768px) {
  .l-header__logo img {
    vertical-align: baseline;
  }
  .l-header__button--item a {
    display: flex;
    align-items: center;
    height: 3.6rem;
    padding: 0.6rem 0.8rem;
    border: solid 1px #111;
    border-radius: 0.6rem;
  }
  .c-box02__image img {
    width: 4.8rem;
  }
  .c-table th {
    display: block;
    line-height: 1.7;
  }
  .c-table td {
    display: block;
    line-height: 1.7;
  }
  /* PCのみ表示 */
  .u-pc-only {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

.l-header__navi--item a[href="/pages/case/"] {
  display: none;
}