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

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  /* 20241029 -mod matsushita- */
  /* text-rendering: optimizeSpeed; */
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

ol li,
ul li {
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
}

:root {
  --black: #000;
  --white: #fff;
  --vw: 414;
  --vh: 736;
}

html {
  font-size: 62.5%;
}

body {
  font-feature-settings: "palt" 1;
  background: #fff;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  margin: 0;
}

.is-sp {
  display: block;
}

.is-pc {
  display: none;
}

.br-sp {
  display: block;
}

.br-pc {
  display: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

button:visited,
button:active,
button:hover,
button:focus,
button:focus-within {
  outline: none;
}

a:hover,
avisited,
a:focus {
  text-decoration: none;
}

.f-en {
  font-family: "Heebo", sans-serif;
  letter-spacing: normal;
  letter-spacing: 0.02em;
}

.f-roboto {
  font-family: "Roboto Condensed", sans-serif;
}

*::selection {
  background-color: #000;
  color: #fff;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

.content__sec {
  padding: 0 20px;
  padding-top: 125px;
  position: relative;
}

.content__sec .bred__wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 8px;
}

.content__sec .bred__wrap .breadcrumb-area {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.content__sec
  .bred__wrap
  .breadcrumb-area
  [property="itemListElement"]:not(:last-child):after {
  content: "-";
  margin: 0 4px;
}

.content__sec
  .bred__wrap
  .breadcrumb-area
  [property="itemListElement"]:last-child {
  color: #9a9a9a;
}

.content__sec .bred__wrap .breadcrumb-area a {
  color: #e49936;
}

.content__sec .arc__title {
  margin-bottom: 40px;
}

.content__sec .arc__title h3 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.1;
}

.content__sec .arc__title .ja {
  font-weight: bold;
  font-size: 1.6rem;
}

.typo {
  position: absolute;
  width: 100%;
  height: 180px;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.typo span[data-splitting] {
  text-transform: uppercase;
  font-size: 7rem;
  color: #f0f0ea;
  font-weight: 700;
  width: 100%;
  white-space: nowrap;
  display: block;
  line-height: 1;
  padding-top: 115px;
}

.typo span[data-splitting] .char {
  display: inline-block;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(40px);
  transition-delay: calc((0.06s * var(--char-index)));
}

.loadEnd .in-enter.typo span[data-splitting] .char {
  opacity: 1;
  transform: translateY(0);
}

.button.viewmore {
  width: 200px;
  height: 50px;
  background: #151515;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.button.viewmore:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f39800;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right;
  transform: scaleX(0);
}

.button.viewmore a,
.button.viewmore span {
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  justify-content: center;
  position: relative;
}

.button.viewmore a .tx,
.button.viewmore span .tx {
  font-weight: bold;
  font-size: 1.2rem;
}

.button.viewmore a .arrow,
.button.viewmore span .arrow {
  width: 20px;
  height: 10px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.button.viewmore a .arrow img,
.button.viewmore span .arrow img {
  width: 100%;
  height: 100%;
}

.pagenation {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 70px;
}

.pagenation .page-numbers {
  font-size: 2rem;
  width: 30px;
  height: 30px;
  text-align: center;
  margin: 0 5px;
}

.pagenation .page-numbers.current {
  color: #9a9a9a;
}

.pagenation .next,
.pagenation .prev {
  font-size: 1.2rem;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
}

.pagenation .next {
  margin-left: 20px;
}

.pagenation .next:after {
  content: "";
  background: url(../images/ico-arrow-black.svg) no-repeat center/cover;
  width: 15px;
  height: 5px;
  margin-left: 6px;
}

.pagenation .prev {
  margin-right: 20px;
}

.pagenation .prev:before {
  content: "";
  background: url(../images/ico-arrow-black.svg) no-repeat center/cover;
  width: 15px;
  height: 5px;
  margin-right: 6px;
  transform: rotate(180deg);
}

main {
  opacity: 0;
  transition: opacity 0.4s;
}

.loadEnd main {
  opacity: 1;
}

.notfound__wrap .container {
  --top: 0;
  --bottom: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.notfound__wrap h2 {
  --size: 40;
  font-size: calc(100vw * (var(--size) / var(--vw)));
  text-align: center;
}

.notfound__wrap p {
  font-size: 2rem;
  font-weight: bold;
}

.notfound__wrap .back {
  --top: 80;
  width: 100%;
  margin: calc(100vw * (var(--top) / var(--vw))) auto 0;
  width: 336px;
  height: 60px;
  background: #151515;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.notfound__wrap .back a {
  --justify: center;
  display: flex;
  justify-content: var(--justify);
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 1;
  position: relative;
}

.notfound__wrap .back i {
  --w: 86.12;
  --h: 18.17;
  --right: 26;
  --top: 40;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  margin-right: calc(100vw * (var(--right) / var(--vw)));
}

.notfound__wrap .back i svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: white;
}

.notfound__wrap .back .tx {
  --size: 18;
  font-size: calc(100vw * (var(--size) / var(--vw)));
  line-height: 1;
}

.youtube-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

header {
  position: fixed;
  z-index: 7777;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

header .header__inner {
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

header h1 {
  width: 104px;
  height: 30px;
  pointer-events: auto;
}

header h1 img {
  width: 100%;
  display: block;
}

header .header__logo {
  width: 104px;
  height: 30px;
  pointer-events: auto;
}

header .header__logo img {
  width: 100%;
  display: block;
}

header .trigger {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 3px 20px -8px rgba(0, 0, 0, 0.5);
  background: #fff;
}

header .trigger:before {
  content: "";
  display: block;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.3s;
  border-radius: 30px;
}

header .trigger__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  position: relative;
  transition: transform 0.3s;
}

header .trigger__inner span {
  width: 17px;
  height: 2px;
  background: #000;
  display: block;
  margin: 1px 0;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

header nav {
  pointer-events: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow: hidden;
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav .nav__inner {
  padding: 20px;
  padding-top: 140px;
  padding-bottom: 160px;
  height: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav .parents {
  padding: 0 10px 20px;
  margin-bottom: 20px;
}

header nav .parents > li:not(:last-child) {
  margin-bottom: 26px;
}

header nav .parents > li .case {
  width: 100%;
  overflow: hidden;
}

header nav .parents > li .case.case-ex a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.3s;
  background-color: #e95512;
  color: #fff;
}

header nav .parents > li .case.case-ex a:hover {
  color: #fff;
  background-color: #f39800;
}

header nav .parents > li .case a,
header nav .parents > li .case .extra {
  display: flex;
  align-items: baseline;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(100%);
}

header nav .parents > li .case .case-ex-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

header nav .parents > li span {
  display: block;
  line-height: 1.1;
}

header nav .parents > li i {
  margin-left: 2px;
  font-size: 12px;
}

header nav .parents > li .f-en {
  font-size: 30px;
  font-weight: bold;
  margin-right: 12px;
}

header nav .parents > li .f-ja {
  font-weight: bold;
  font-size: 12px;
}

header nav .parents > li .f-img {
  display: inline-block;
  margin-right: 10px;
  width: 160px;
  height: auto;
}

header nav .child {
  padding-top: 18px;
}

header nav .child li:not(:last-child) {
  margin-bottom: 18px;
}

header nav .child li .case__2 {
  overflow: hidden;
}

header nav .child li .case__2 a {
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(100%);
  color: #000;
}

header nav .child li a {
  display: flex;
  align-items: center;
  padding-left: 4px;
}

header nav .child li a:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 8px;
  margin-right: 8px;
  transition: background-color 0.3s;
}

header nav .child li .f-en {
  font-size: 16px;
  transition: color 0.3s;
}

header nav .sub {
  display: flex;
  justify-content: space-between;
}

header nav .sub li {
  width: 100%;
  height: 60px;
  border-radius: 6px;
  margin: 0 10px;
}

header nav .sub li:nth-of-type(1) {
  background: #f8b62d;
}

header nav .sub li:nth-of-type(2) {
  background: #ea5514;
}

header nav .sub li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

header nav .sub li a .f-en {
  font-size: 20px;
  font-weight: bold;
}

.nav__active header .trigger:before {
  transform: scale(1);
}

.nav__active header .trigger__inner {
  transform: rotate(180deg);
}

.nav__active header .trigger__inner span {
  background: #fff;
}

.nav__active header .trigger__inner span:nth-of-type(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav__active header .trigger__inner span:nth-of-type(2) {
  opacity: 0;
}

.nav__active header .trigger__inner span:nth-of-type(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav__active header nav {
  pointer-events: auto;
  transform: translateY(0);
}

.nav__active header nav .nav__inner {
  transform: translateY(0);
}

.nav__active header nav .parents > li .case a,
.nav__active header nav .parents > li .case .extra {
  opacity: 1;
  transform: translateY(0%);
}

.nav__active header nav .child .case__2 a {
  opacity: 1;
  transform: translateY(0);
}

#corporate header nav .parents > li:nth-of-type(1) .f-en,
#corporate header nav .parents > li:nth-of-type(1) .f-ja {
  color: #f39800;
}

#company header nav .parents > li:nth-of-type(1) .f-en,
#company header nav .parents > li:nth-of-type(1) .f-ja {
  color: #f39800;
}

#philosophy header nav .parents > li:nth-of-type(1) .f-en,
#philosophy header nav .parents > li:nth-of-type(1) .f-ja {
  color: #f39800;
}

#history header nav .parents > li:nth-of-type(1) .f-en,
#history header nav .parents > li:nth-of-type(1) .f-ja {
  color: #f39800;
}

#service.marketing-of-nahato header nav .parents > li:nth-of-type(2) .f-en,
#service.marketing-of-nahato header nav .parents > li:nth-of-type(2) .f-ja,
#service.marketing-of-nahato header nav .parents > li:nth-of-type(2) i {
  color: #f39800;
}

#service.marketing-of-nahato
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li
  .f-en {
  color: #000;
}

#service.marketing-of-nahato
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li:nth-of-type(1)
  a:before {
  background: #f39800;
}

#service.marketing-of-nahato
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li:nth-of-type(1)
  .f-en {
  color: #f39800;
}

#service.influencer-marketing header nav .parents > li:nth-of-type(2) .f-en,
#service.influencer-marketing header nav .parents > li:nth-of-type(2) .f-ja,
#service.influencer-marketing header nav .parents > li:nth-of-type(2) i {
  color: #f39800;
}

#service.influencer-marketing
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li
  .f-en {
  color: #000;
}

#service.influencer-marketing
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li:nth-of-type(2)
  a:before {
  background: #f39800;
}

#service.influencer-marketing
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li:nth-of-type(2)
  .f-en {
  color: #f39800;
}

#service.digital-marketing header nav .parents > li:nth-of-type(2) .f-en,
#service.digital-marketing header nav .parents > li:nth-of-type(2) .f-ja,
#service.digital-marketing header nav .parents > li:nth-of-type(2) i {
  color: #f39800;
}

#service.digital-marketing
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li
  .f-en {
  color: #000;
}

#service.digital-marketing
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li:nth-of-type(3)
  a:before {
  background: #f39800;
}

#service.digital-marketing
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li:nth-of-type(3)
  .f-en {
  color: #f39800;
}

#service.web-infrastructure header nav .parents > li:nth-of-type(2) .f-en,
#service.web-infrastructure header nav .parents > li:nth-of-type(2) .f-ja,
#service.web-infrastructure header nav .parents > li:nth-of-type(2) i {
  color: #f39800;
}

#service.web-infrastructure
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li
  .f-en {
  color: #000;
}

#service.web-infrastructure
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li:nth-of-type(4)
  a:before {
  background: #f39800;
}

#service.web-infrastructure
  header
  nav
  .parents
  > li:nth-of-type(2)
  .child
  li:nth-of-type(4)
  .f-en {
  color: #f39800;
}

#works header nav .parents > li:nth-of-type(3) .f-en,
#works header nav .parents > li:nth-of-type(3) .f-ja {
  color: #f39800;
}

#casestudy2 header nav .parents > li:nth-of-type(4) .f-en,
#casestudy2 header nav .parents > li:nth-of-type(4) .f-ja {
  color: #f39800;
}

#infulencer-interview header nav .parents > li:nth-of-type(5) .f-en,
#infulencer-interview header nav .parents > li:nth-of-type(5) .f-ja {
  color: #f39800;
}

#news header nav .parents > li:nth-of-type(6) .f-en,
#news header nav .parents > li:nth-of-type(6) .f-ja {
  color: #f39800;
}

#marketingcity header nav .parents > li:nth-of-type(8) .f-en,
#marketingcity header nav .parents > li:nth-of-type(8) .f-ja {
  color: #f39800;
}

footer {
  background: #2b2b2b;
  position: relative;
  padding: 50px 30px;
}

footer .cta .block {
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #848484;
  margin-bottom: 30px;
  padding-bottom: 40px;
}

footer .cta .block .inner {
  padding: 0 18px;
}

footer .cta .block h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

footer .cta .block .text {
  font-size: 1.3rem;
  white-space: nowrap;
  margin-bottom: 30px;
}

footer .cta .block .button.cv {
  width: 200px;
  height: 50px;
  background: #f38200;
  margin: auto;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

footer .cta .block .button.cv:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f39800;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right;
  transform: scaleX(0);
}

footer .cta .block .button.cv.rec {
  background: #faec01;
}

footer .cta .block .button.cv.rec a,
footer .cta .block .button.cv.rec span {
  color: #111;
}

footer .cta .block .button.cv a,
footer .cta .block .button.cv span {
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  justify-content: center;
  position: relative;
}

footer .cta .block .button.cv a .tx,
footer .cta .block .button.cv span .tx {
  font-weight: bold;
  font-size: 1.2rem;
}

footer .cta .block .button.cv a .arrow,
footer .cta .block .button.cv span .arrow {
  width: 20px;
  height: 10px;
  position: absolute;
  top: 20px;
  right: 20px;
}

footer .cta .block .button.cv a .arrow img,
footer .cta .block .button.cv span .arrow img {
  width: 100%;
  height: 100%;
}

footer .footer__inner {
  position: relative;
  padding-top: 30px;
}

footer .footer__inner .pgtop {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 30px;
  position: absolute;
  top: 20px;
  right: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer .footer__inner .pgtop a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .footer__inner .pgtop .arrow {
  width: 100%;
  height: 100%;
  display: flex;
}

footer .footer__inner .pgtop img {
  transform: rotate(-90deg);
  transform-origin: center;
  width: 30%;
  margin: auto;
}

footer .footer__inner .logo {
  width: 114px;
  height: 32.31px;
  margin-bottom: 60px;
}

footer .footer__inner .logo a {
  display: block;
}

footer .footer__inner .f-nav {
  display: flex;
  flex-wrap: wrap;
}

footer .footer__inner .f-nav__inner {
  color: #fff;
}

footer .footer__inner .f-nav__inner:first-child {
  margin-right: 30px;
}

footer .footer__inner .f-nav__inner .list {
  font-size: 1.8rem;
  font-weight: bold;
}

footer .footer__inner .f-nav__inner .list:not(:last-child) {
  margin-bottom: 12px;
}

footer .footer__inner .f-nav__inner a {
  color: #fff;
  transition: color 0.4s;
}

footer .footer__inner .f-nav__inner .char {
  font-size: 1.4rem;
  margin-top: 6px;
}

footer .footer__inner .f-nav__inner .char a {
  display: flex;
  align-items: center;
}

footer .footer__inner .f-nav__inner.sub {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

footer .footer__inner .cp {
  color: #fff;
  display: flex;
  align-items: flex-end;
}

footer .footer__inner .cp .nor {
  font-size: 1.4rem;
  margin-right: 20px;
}

footer .footer__inner .cp a {
  color: #fff;
  transition: color 0.4s;
}

footer .footer__inner .cp .pmark {
  width: 60px;
  background: transparent;
  border-radius: 50%;
  position: relative;
}

footer .footer__inner .cp .pmark img {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0px;
}

#load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999999;
  overflow: hidden;
}

#load .load__wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#load .load__wrap .logo {
  width: 190px;
  height: 54px;
  opacity: 0;
}

#load .load__wrap .logo svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

#load .load__wrap .logo svg path {
  opacity: 0;
  transform: translateY(20px);
  display: block;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.02s * var(--char-index));
}

#load .load__wrap .logo.loadStart svg path {
  opacity: 1;
  transform: translateY(0);
}

#home .button.viewmore.viewmore-home a .arrow,
#home .button.viewmore.viewmore-home span .arrow {
  width: 20px;
  height: 10px;
  top: 20px;
}

#home .button.cv.cv-home a .arrow,
#home .button.cv.cv-home span .arrow {
  width: 20px;
  height: 10px;
  top: 20px;
}

#home .arc__title {
  margin-bottom: 40px;
}

#home .arc__title h3 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.1;
}

#home .arc__title .ex-line-chead {
  display: block;
  margin: 4px auto 8px;
  background-color: #f39800;
  width: calc(100vw * (300 / 1366));
  height: 3px;
}

#home .arc__title .ja {
  font-weight: bold;
  font-size: 1.6rem;
}

#home .typo {
  height: 100%;
}

#home .typo span[data-splitting] {
  --font: 70;
  --vw: 414;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  padding-top: calc(100vw * (var(--top) / var(--vw)));
  left: calc(100vw * (var(--left) / var(--vw)));
  position: relative;
}

#home section {
  position: relative;
  /* 20241029 -mod matsushita- */
  /* padding: 80px 20px; */
}

#home #hero {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 90vh;
  position: relative;
  padding: 0;
  overflow: hidden;
}

#home #hero .mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #333;
}

#home #hero .mv .mvdrop {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
}

#home #hero .mv .mv__inner {
  width: 100%;
  height: 100%;
}

#home #hero .mv .mv__inner div {
  width: 100%;
  height: 100%;
}

#home #hero .mv .mv__inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home #hero .copy {
  position: relative;
  color: #fff;
  padding: 0 20px;
  padding-top: calc((var(--vh, 1vh) * 100) * (190 / 736));
}

#home #hero .copy h2 {
  font-size: 5.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

#home #hero .copy h2 .char {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(1s + (0.02s * var(--char-index)));
}

#home #hero .copy .ex-line {
  display: block;
  padding: 0px 0px 0px 24px;
  border-left: 5px solid #f39800;
  opacity: 0;
  animation: fadein 1s ease 2s;
  animation-fill-mode: forwards;
}

#home #hero .copy .ja {
  font-size: 2.4rem;
  font-weight: bold;
}

#home #hero .copy .ja .char {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(1s + (0.02s * var(--char-index)));
}

#home #hero .scroll {
  position: absolute;
  bottom: 0;
  right: -110px;
}

#home #hero .scroll__inner {
  color: #fff;
  display: flex;
  align-items: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s,
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  opacity: 0;
  transform: rotate(-90deg) translateX(40%);
  transform-origin: bottom left;
}

#home #hero .scroll__inner .bar {
  width: 78px;
  height: 1px;
  background: #fff;
  position: relative;
  margin-right: 6px;
}

#home #hero .scroll__inner .bar span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f39800;
  animation: bar 2s cubic-bezier(0.9, 0.07, 0.45, 0.94) infinite;
}

#home #hero .scroll__inner .text {
  line-height: 1;
  font-size: 1rem;
  font-weight: bold;
}

#home #hero .news__mini {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

#home #hero .news__mini li {
  background: #fff;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  opacity: 0;
}

#home #hero .news__mini li a {
  display: flex;
}

#home #hero .news__mini li a .thumb {
  width: 121px;
  height: 69px;
  overflow: hidden;
}

#home #hero .news__mini li a .thumb__inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #hero .news__mini li a .thumb__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home #hero .news__mini li a .text__block {
  width: 180px;
  padding: 8px;
}

#home #hero .news__mini li a .text__block .date {
  font-size: 1rem;
  color: #9a9a9a;
  line-height: 1;
  margin-bottom: 4px;
}

#home #hero .news__mini li a .text__block .title {
  font-weight: bold;
  font-size: 1.2rem;
}

#home #statement {
  padding-top: 100px;
  padding-bottom: 100px;
}

#home #statement h3 {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 40px;
  opacity: 0;
}

#home #statement .ex-line {
  position: relative;
  top: -35px;
  margin: -25px 0 20px 100px;
  width: auto;
  height: 1px;
  background-color: #f39800;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
}

#home #statement h4 {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  color: #fff;
  opacity: 0;
}

#home #statement h4:not(:last-child) {
  margin-bottom: 40px;
}

#home #statement h4 .en {
  font-size: 2.8rem;
  white-space: nowrap;
}

#home #statement h4 .ja {
  font-size: 2.2rem;
}

#home #statement h4 .tx {
  font-size: 1.6rem;
  font-weight: normal;
}

#home #statement [data-inv].in-enter {
  transform: translateY(0);
  opacity: 1;
}

#home #works {
  background: #fff;
  position: relative;
  padding: 80px 0px 70px;
  overflow: hidden;
}

#home #works .typo span[data-splitting] {
  --top: 60;
  --left: -10;
}

#home #works .arc__title {
  text-align: center;
  position: relative;
}

#home #works .works__list {
  position: relative;
  padding: 0 20px;
}

#home #works .works__list li {
  margin-bottom: calc(100vw * (70 / 1366));
  padding-bottom: calc(100vw * (50 / 1366));
  background-color: #f8f8f4;
}

#home #works .works__list li .logo {
  position: absolute;
  top: 0;
  left: 4px;
  transform: translateY(150%);
  width: calc(100vw * (150 / 1366));
  height: calc(100vw * (150 / 1366));
  background-color: transparent;
}

#home #works .works__list li .logo img {
  border-radius: 50%;
}

#home #works .works__list li .text__block .text__inner {
  margin-left: calc(100vw * (160 / 1366));
  padding-right: 2px;
}

#home #works .works__list li .text__block .text__inner .name {
  font-size: calc(100vw * (34 / 1366));
}

#home #works .works__list li .text__block .text__inner .title {
  font-size: calc(100vw * (30 / 1366));
}

#home #works .works__list li .text__block .text__inner .cate {
  color: #000000;
  font-weight: bold;
  font-size: calc(100vw * (30 / 1366));
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

#home #works .works__list li .text__block .text__inner .cate:before {
  content: "";
  width: 10px;
  height: 1.5px;
  background: #f39800;
  display: block;
  margin-right: 4px;
}

#home #works .works__list li .text__block .result {
  text-align: center;
}

#home #works .works__list li .text__block .result .result__inner {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  width: auto;
}

#home #works .works__list li .text__block .result .result__inner .char .r {
  font-size: calc(100vw * (36 / 1366));
  font-weight: bold;
  line-height: 1;
  letter-spacing: normal;
}

#home
  #works
  .works__list
  li
  .text__block
  .result
  .result__inner
  .char
  .r.nonum {
  font-size: calc(100vw * (32 / 1366));
}

#home #works .works__list li .text__block .result .result__inner .char .o {
  font-size: calc(100vw * (32 / 1366));
  line-height: 1;
  transform: scale(0.8);
  transform-origin: bottom left;
  letter-spacing: normal;
}

#home #works .client__logo__wrap {
  display: flex;
  width: calc(100vw * ((1786 * 2) / 414));
}

#home #works .client__logo {
  display: flex;
  width: calc(100vw * (1786 / 414));
  align-items: center;
  margin-bottom: 40px;
  animation: tickerPlay 32s linear infinite;
}

#home #works .client__logo li {
  --w: 105.4;
  --vw: 414;
  --lr: 7;
  width: calc(100vw * (var(--w) / var(--vw)));
  margin: 0 calc(100vw * (var(--lr) / var(--vw)));
}

#home #works .client__logo li img {
  width: 100%;
}

#home #works .button {
  width: 200px;
  height: 50px;
  background: #151515;
  margin: auto;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#home #works .button:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f39800;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right;
  transform: scaleX(0);
}

#home #works .button a {
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  justify-content: center;
  position: relative;
}

#home #works .button a .tx {
  font-weight: bold;
  font-size: 1.2rem;
}

#home #works .button a .arrow {
  width: 20px;
  height: 10px;
  position: absolute;
  top: 20px;
  right: 20px;
}

#home #works .button a .arrow img {
  width: 100%;
  height: 100%;
}

/* 20250128 -mod matsushita- start*/
#home .sns_feed {
  width: 90%;
  margin: 40px auto;
}

.instagram-gallery-item__wrap {
  width: 95% !important;
}
/* 20250128 -mod matsushita- end*/

#home #performance {
  background-size: 360%;
  background-color: #f8f8f4;
  background-image: url(../images/map.svg);
  background-repeat: no-repeat;
  background-position: 85% 50%;
  padding: 70px 12px;
}

#home #performance .typo span[data-splitting] {
  --top: 110;
  --left: -10;
}

#home #performance .arc__title {
  text-align: center;
  position: relative;
}

#home #performance .group {
  text-align: center;
  position: relative;
}

#home #performance .group:not(:last-child) {
  --bottom: 34;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#home #performance .group h4 {
  --font: 13;
  --bottom: 26;
  --tb: 5;
  --lr: 20;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  color: #fff;
  font-weight: bold;
  background: #646464;
  display: inline-block;
  line-height: 1;
  padding: calc(100vw * (var(--tb) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)));
  border-radius: 2px;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  backface-visibility: hidden;
}

#home #performance .group.in-enter h4 {
  opacity: 1;
  transform: translateY(0);
}

#home #performance .group.in-enter .ctup__child {
  opacity: 1;
  transform: translateY(0);
}

#home #performance .wrap {
  display: flex;
  justify-content: center;
}

#home #performance .wrap .ctup__child {
  display: flex;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  backface-visibility: hidden;
}

#home #performance .wrap .ctup__child:not(:last-child) {
  --right: 14;
  margin-right: calc(100vw * (var(--right) / var(--vw)));
}

#home #performance .wrap .ctup__child:last-child {
  transition-delay: 0.1s;
}

#home #performance .wrap .ctup__child .ico {
  --w: 44.17;
  --h: 44.17;
  --right: 6;
  --top: 4;
  margin-top: calc(100vw * (var(--top) / var(--vw)));
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  margin-right: calc(100vw * (var(--right) / var(--vw)));
}

#home #performance .wrap .ctup__child .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#home #performance .wrap .ctup__child .data__block {
  position: relative;
}

#home #performance .wrap .ctup__child .data__block .label {
  --font: 10;
  --bottom: 20;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  color: #fff;
  background: #2b2b2b;
  padding: 4px 8px;
  border-radius: 2px;
  line-height: 1;
  display: inline-block;
  font-weight: bold;
}

#home #performance .wrap .ctup__child .data__block .sub {
  --font: 15;
  --bottom: 10;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
  line-height: 1;
}

#home #performance .wrap .ctup__child .data__block .data {
  display: flex;
  justify-content: center;
}

#home #performance .wrap .ctup__child .data__block .data .num {
  --font: 26;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1;
  letter-spacing: normal;
  letter-spacing: -0.06em;
  font-weight: bold;
  color: #f39800;
}

#home #performance .wrap .ctup__child .data__block .data .num.f-ja {
  --font: 24;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1;
  font-weight: bold;
  --top: 4;
  --bottom: 4;
  margin-top: calc(100vw * (var(--top) / var(--vw)));
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#home #performance .wrap .ctup__child .data__block .data .ja {
  --top: 3;
  --font: 19;
  --left: 4;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
  line-height: 1;
  padding-top: calc(100vw * (var(--top) / var(--vw)));
  padding-left: calc(100vw * (var(--left) / var(--vw)));
}

#home #performance .wrap .ctup__child .data__block .data .small {
  --top: 8;
  --font: 14;
  --lr: 3;
  color: #646464;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1;
  font-weight: bold;
  padding-top: calc(100vw * (var(--top) / var(--vw)));
  margin: 0 calc(100vw * (var(--lr) / var(--vw))) 0;
}

#home #performance .wrap .ctup__child .data__block .mini {
  --top: 6;
  --font: 10;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
  margin-top: calc(100vw * (var(--top) / var(--vw)));
  color: #646464;
  white-space: nowrap;
}

#home #performance .extra {
  --tb: 40;
  margin: calc(100vw * (var(--tb) / var(--vw))) 0 0;
  padding: 0 8px;
}

#home #performance .extra a {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  border-bottom: 1px dotted #9a9a9a;
}

#home #performance .extra a:first-child {
  border-top: 1px dotted #9a9a9a;
}

#home #performance .extra li img {
  margin: 0 auto 14px;
  width: 100%;
}

#home #performance .extra dl {
  --tb: 20;
  --lr: 10;
  padding: calc(100vw * (var(--tb) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)));
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  backface-visibility: hidden;
}

#home #performance .extra dl.in-enter {
  opacity: 1;
  transform: translateY(0);
}

#home #performance .extra dl.border {
  border-bottom: 1px dotted #9a9a9a;
}

#home #performance .extra dt {
  --right: 20;
  width: calc(100vw * (var(--w) / var(--vw)));
  margin-right: calc(100vw * (var(--right) / var(--vw)));
}

#home #performance .extra dt.mark {
  --w: 70;
}

#home #performance .extra dt.mark-b {
  --w: 80;
}

#home #performance .extra dt.medal {
  --w: 100;
}

#home #performance .extra dt.medal2 {
  --w: 100;
}

#home #performance .extra dt img {
  width: 100%;
}

#home #performance .extra dd .mini {
  --font: 10;
  --bottom: 2;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  display: block;
}

#home #performance .extra dd .mini.b {
  font-weight: bold;
  --font: 11;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

#home #performance .extra dd .d {
  --font: 14;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
  display: block;
}

#home #performance .extra dd .d.b {
  font-weight: bold;
  --font: 14;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

#home #performance .extra dd .d .attent {
  --font: 10;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

#home #performance .extra dd .i {
  font-weight: bold;
  --font: 12;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  margin-top: 4px;
  display: inline-block;
  background: linear-gradient(transparent 65%, #ddd 60%);
}

#home #performance .extra dd .i:not(:first-child) {
  margin-right: 10px;
}

#home #performance .extra .attention {
  --font: 10;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  color: #646464;
  margin-top: 17px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  backface-visibility: hidden;
}

#home #performance .extra .attention.in-enter {
  opacity: 1;
  transform: translateY(0);
}

#home #performance .external__link {
  text-align: center;
  --tb: 40;
  margin: calc(100vw * (var(--tb) / var(--vw))) auto 0;
  padding: 0 10px;
  width: calc(100vw * (var(--w) / var(--vw)));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

#home #performance .external__link.in-enter {
  opacity: 1;
  transform: translateY(0);
}

#home #performance .external__link a {
  display: block;
  margin: 0 auto;
  border-bottom: 0px;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #performance .external__link img {
  width: 100%;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #external.external {
  margin: 0;
  padding: 70px 12px 0;
}

#home #external.external .external__link {
  text-align: center;
  --tb: 40;
  margin: 0 auto;
  padding: 0 10px;
  width: calc(100vw * (var(--w) / var(--vw)));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

#home #external.external .external__link.in-enter {
  opacity: 1;
  transform: translateY(0);
}

#home #external.external .external__link a {
  margin: 0 auto;
  border-bottom: 0px;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #external.external .external__link img {
  width: 100%;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #service {
  background: #fff;
  padding: 70px 0px;
}

#home #service .typo span[data-splitting] {
  --top: 124;
  --left: -10;
}

#home #service .arc__title {
  position: relative;
  text-align: center;
  margin: 0 auto 40px;
}

#home #service .desc {
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 50px;
  position: relative;
}

#home #service .content {
  padding: 20px;
}

#home #service .content .service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

#home #service .content .service__list .parent {
  width: 100%;
  max-width: 480px;
}

#home #service .content .service__list .parent .box {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(30px);
}

#home #service .content .service__list .parent.in-enter .box {
  opacity: 1;
  transform: translateY(0);
}

#home #service .content .service__list .parent .box:hover {
  opacity: 0.7;
}

#home #service .content .service__list .parent .box:hover .service__img img {
  transform: scale(1.1);
}

#home #service .content .service__list .service__img {
  overflow: hidden;
}

#home #service .content .service__list .service__img img {
  transition: all 0.3s;
}

#home #service .content .service__list .service__content {
  background: #f8f8f4;
  padding: 12px 16px 24px;
  width: 100%;
}

#home #service .content .service__list .service__content .title {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

#home #service .content .service__list .service__content .title .num {
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
  color: #fb9e17;
}

#home #service .content .service__list .service__content .title h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

#home #service .content .service__list .service__content .text {
  font-size: 12px;
  color: #7b7b7b;
  padding-right: 40px;
  position: relative;
}

#home #service .content .service__list .service__content .text .arrow {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 0;
  background: #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 9px 12px;
}

#home #service .service__top {
  background-color: #fff;
  padding: 0;
  margin-top: 24px;
}

#home #service .service__top__block {
  margin: auto;
  padding: 0 0 48px;
}

#home #service .service__top__block img {
  margin: auto;
  width: 100%;
}

#home #service .service__top__btn {
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
}

#home #service .service__top__row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

#home #service .service__top__row.in-enter {
  animation: mask 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#home #service .service__top__row__col {
  text-align: left;
  margin: 0 24px;
}

#home #service .service__top__row__col p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

#home #service .service__top__row__col h4 {
  font-size: 28px;
  margin-bottom: 48px;
}

#home #service .service__top__row__col h4 span {
  color: #f39800;
  font-size: 48px;
}

#home #service .service__top__row .viewmore.is-sp {
  text-align: center;
  margin: 40px auto 0;
}

#home #service .service__top__table {
  display: flex;
}

#home #service .service__top__table__row {
  padding: 4px;
  text-align: center;
  border-radius: 12px;
}

#home #service .service__top__table__row h5 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  font-size: 18px;
  margin: 0;
}

#home #service .service__top__table__row ul {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

#home #service .service__top__table__row li {
  padding: 24px 0;
  height: auto;
  font-size: 15px;
  font-weight: bold;
}

#home #service .service__top__table__row li:not(:last-child) {
  border-bottom: 1px solid #e3e3e3;
}

#home #service .service__top__table__row li span {
  font-size: 18px;
}

#home #service .service__top__table__row.gray {
  background-color: #e3e3e3;
  color: #919191;
}

#home #service .service__top__table__row.orange {
  color: #000;
  background: linear-gradient(50deg, #ff4f00 0%, #f7b52c 100%);
}

#home #service .service__top__table__row.orange h5 {
  color: #fff;
}

#home #service .service__top__table__row.orange li span {
  color: #f39800;
}

#home #service .content_bn {
  margin: auto;
  text-align: center;
}

#home #service .content_bn .box {
  padding: 50px 25px 0px;
}

#home #service .content_bn .box a {
  display: inline-block;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #overview {
  margin-bottom: 80px;
}

#home #overview .section__inner {
  padding: 0 20px;
}

#home #overview .block {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(50px);
  max-width: 480px;
  margin: auto;
  position: relative;
}

#home #overview .block.in-enter {
  opacity: 1;
  transform: translateY(0);
}

#home #overview .block a {
  display: block;
  transition: all 0.3s;
}

#home #overview .block a:hover {
  opacity: 0.7;
}

#home #overview .block a img.forSP {
  display: block;
}

#home #overview .block a img.forPC {
  display: none;
}

#home #overview .arc__title {
  position: relative;
  text-align: center;
}

#home #supporter {
  margin-bottom: 80px;
}

#home #supporter .arc__title {
  position: relative;
  text-align: center;
}

#home #supporter .supporter__list {
  position: relative;
}

#home #supporter .supporter__list .slide-arrow {
  display: none !important;
  position: absolute;
  top: 88px;
  z-index: 1;
  cursor: pointer;
}

#home #supporter .supporter__list .prev-arrow {
  left: -80px;
}

#home #supporter .supporter__list .next-arrow {
  right: -80px;
}

#home #supporter .supporter__list .slick-list {
  padding-bottom: 40px;
}

#home #supporter .supporter__list .slick-dots li {
  margin: 0 4px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background: #b6bcc4;
  transition: all 0.3s;
}

#home #supporter .supporter__list .slick-dots li.slick-active {
  background: #f05d1c;
  width: 32px;
}

#home #supporter .supporter__list .slick-dots li button:before {
  display: none;
}

#home #supporter .supporter__list .item {
  width: 240px;
  margin: 0 12px;
}

#home #supporter .supporter__list .item .link {
  display: block;
  transition: all 0.3s;
}

#home #supporter .supporter__list .item .link:hover {
  opacity: 0.7;
}

#home #supporter .supporter__list .item .img {
  margin-bottom: 16px;
}

#home #supporter .supporter__list .item .name {
  text-align: center;
}

#home #supporter .supporter__list .item .name p {
  font-size: 24px;
  font-weight: bold;
}

#home #column {
  background: #f8f8f4;
  padding: 40px 0px;
}

#home #column .typo span[data-splitting] {
  --top: 20;
  --left: -10;
}

#home #column hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #dddddd;
  margin: 0 20px 30px;
}

#home #column .swipe__list {
  position: relative;
}

#home #column .swipe__list:not(:last-child) {
  margin-bottom: 32px;
}

#home #column .swipe__list .arc__title {
  padding: 0 20px;
  margin-bottom: 30px;
  text-align: center;
}

#home #column .swipe__list .arc__title h3 {
  font-size: 2.8rem;
}

#home #column .swipe__list .arc__title h3.f-img {
  display: inline-block;
  margin-right: 10px;
  width: 200px;
  height: auto;
}

#home #column .swipe__list .banner-link {
  transition: 0.15s ease-out;
}

#home #column .swipe__list .banner-link:hover {
  opacity: 0.75;
}

#home #column .swipe__list .banner-case-study {
  max-width: calc(100% - 40px);
  margin: auto;
  height: auto;
}

#home #column .swipe__list .swiper {
  overflow: hidden;
  margin-left: 20px;
  margin-bottom: 30px;
}

#home #column .swipe__list .swiper .swiper-slide {
  background: #fff;
  width: calc(100vw * (187 / 414));
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
}

#home #column .swipe__list .swiper .swiper-slide:nth-of-type(1) {
  transition-delay: 0.1s;
}

#home #column .swipe__list .swiper .swiper-slide:nth-of-type(2) {
  transition-delay: 0.2s;
}

#home #column .swipe__list .swiper .swiper-slide:nth-of-type(3) {
  transition-delay: 0.3s;
}

#home #column .swipe__list .swiper .swiper-slide:nth-of-type(4) {
  transition-delay: 0.4s;
}

#home #column .swipe__list .swiper .swiper-slide:last-child {
  border-right: 1px solid #dddddd;
}

#home #column .swipe__list .swiper .swiper-slide .thumb {
  overflow: hidden;
  --w: 187;
  --h: 140;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  border-bottom: 1px solid #dddddd;
}

#home #column .swipe__list .swiper .swiper-slide .thumb .thumb__inner {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

#home #column .swipe__list .swiper .swiper-slide .thumb img {
  width: 100%;
  height: 100%;
}

#home #column .swipe__list .swiper .swiper-slide .text__block {
  padding: 14px 12px;
}

#home #column .swipe__list .swiper .swiper-slide .text__block .date {
  display: inline-block;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 4px 14px;
  line-height: 1;
  margin-bottom: 8px;
}

#home #column .swipe__list .swiper .swiper-slide .text__block h4 {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: calc(100vw * (5 / var(--vw)));
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #column .swipe__list .swiper .swiper-slide .text__block .desc {
  font-size: 1.2rem;
  line-height: 1.8;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #column .swipe__list .swiper .swiper-slide.in-enter {
  opacity: 1;
  transform: translateY(0);
}

#home #column .swipe__list .swiper .swiper-slide.pt-2-l {
  margin-right: 14px;
  border-right: 1px solid #dddddd;
  width: calc(100vw * (340 / 414));
}

#home #column .swipe__list .swiper .swiper-slide.pt-2-l .thumb {
  --w: 338;
  --h: 170;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
}

#home #column .swipe__list .swiper .swiper-button-next.swiper-button-disabled,
#home #column .swipe__list .swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

#home #column .swipe__list .swiper .swiper-button-next,
#home #column .swipe__list .swiper .swiper-button-prev {
  display: none;
}

#home #column .swipe__list .swiper .swiper-button-prev img {
  transform: rotate(180deg);
}

#home #column .swipe__list .pt-special {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #column .swipe__list .pt-special a.banner-linka {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border: 1px solid #dddddd;
  width: calc(100vw * (370 / 414));
}

#home #column .swipe__list .pt-special a.banner-linka:last-child {
  margin-bottom: 0;
}

#home #column .swipe__list .pt-special a.banner-linka .thumb {
  overflow: hidden;
  width: 100%;
}

#home
  #column
  .swipe__list
  .pt-special
  a.banner-linka
  .thumb
  img.banner-case-study {
  --h: 220;
  height: calc(100vw * (var(--h) / var(--vw)));
  width: 100%;
  max-width: calc(100%);
  margin: auto;
  object-fit: cover;
  object-position: center;
}

#home #column .swipe__list .pt-special a.banner-linka .text__block {
  padding: 14px 12px;
  background-color: #fff;
}

#home #column .swipe__list .pt-special a.banner-linka .text__block .date {
  display: inline-block;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 4px 14px;
  line-height: 1;
  margin-bottom: 8px;
}

#home #column .swipe__list .pt-special a.banner-linka .text__block h4 {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: calc(100vw * (5 / var(--vw)));
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #column .swipe__list .pt-special a.banner-linka .text__block .desc {
  font-size: 1.2rem;
  line-height: 1.8;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#home #column .swipe__list .pt-special.in-enter {
  opacity: 1;
  transform: translateY(0);
}

#home #news {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

#home #news .arc__title {
  text-align: center;
  margin-bottom: 30px;
}

#home #news .arc__title h3 {
  font-size: 2.8rem;
}

#home #news .news__list {
  margin-bottom: 30px;
}

#home #news .button.viewmore {
  margin: auto;
}
/* mod matsushita20241125 start */
#home #virtual-office {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 150px;
}

#home #virtual-office .arc__title {
  text-align: center;
  margin-bottom: 30px;
}

#home #virtual-office .arc__title h3 {
  font-size: 2.8rem;
}

#home #virtual-office .news__list {
  margin-bottom: 30px;
}

#home #virtual-office .button.viewmore {
  margin: auto;
}
/* mod matsushita20241125 end */

@keyframes tickerPlay {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes bar {
  0% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }

  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  100% {
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  }
}

@keyframes mask {
  0% {
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  }

  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

#home.loadEnd #hero .drop {
  transform: scaleY(1);
}

#home.loadEnd #hero .scroll__inner {
  opacity: 1;
  transform: rotate(-90deg) translateX(0%);
}

#home.loadEnd #hero .copy h2 .char,
#home.loadEnd #hero .ja .char {
  opacity: 1;
}

#home.loadEnd #hero .news__mini li {
  opacity: 1;
}

#home.loadEnd #works .works__list li.in-enter {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}

#home.loadEnd #works .works__list li .logo img {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}

#home.loadEnd #works .works__list li .thumb.in-enter {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0);
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: normal;
}

.device-tb#home #hero {
  height: calc(var(--vh, 1vh) * 100);
}

#works .typo span {
  position: relative;
  left: -10px;
}

.works__list {
  display: flex;
  flex-wrap: wrap;
}

.works__list li {
  --w: 175;
  width: calc(100vw * (var(--w) / var(--vw)));
  margin-bottom: 30px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(30px);
}

.works__list li:nth-of-type(odd) {
  margin-right: calc(100vw * (19 / var(--vw)));
}

.works__list li .logo {
  --w: 48;
  --h: 48;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.works__list li .thumb {
  position: relative;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  margin-bottom: 10px;
  overflow: hidden;
}

.works__list li .thumb .thumb__inner {
  width: 100%;
  height: 100%;
  padding-top: calc(100% * (101.24 / 180));
  position: relative;
  overflow: hidden;
}

.works__list li .thumb .thumb__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

.works__list li .text__block {
  line-height: 1.3;
}

.works__list li .text__block .name {
  font-family: "Heebo", "游ゴシック体", YuGothic, "Yu Gothic M",
    "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-seif;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.works__list li .text__block .title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.works__list li .text__block .cate {
  color: #9a9a9a;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.works__list li .text__block .cate:before {
  content: "";
  width: 30px;
  height: 1px;
  background: #9a9a9a;
  display: block;
  margin-right: 4px;
}

.works__list li .text__block .result {
  display: flex;
}

.works__list li .text__block .result .char {
  display: flex;
  align-items: baseline;
  color: #9a9a9a;
}

.works__list li .text__block .result .char:not(:last-child) {
  margin-right: 5px;
}

.works__list li .text__block .result .char img {
  width: 10px;
  height: 10px;
  object-fit: cover;
  margin-right: 2px;
}

.works__list li .text__block .result .char .r {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: normal;
}

.works__list li .text__block .result .char .r.nonum {
  font-size: 1rem;
}

.works__list li .text__block .result .char .o {
  font-size: 1rem;
  line-height: 1;
  transform: scale(0.8);
  transform-origin: bottom left;
  letter-spacing: normal;
}

.works__list .button.viewmore span .tx {
  font-size: calc(100vw * (12 / 1366));
}

.loadEnd .works__list li.in-enter {
  opacity: 1;
  transform: translateY(0);
}

.loadEnd .works__list li .thumb.in-enter {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}

.works__single .content__sec {
  padding: 0 0;
  padding-top: 125px;
  overflow: hidden;
}

.works__single .content__sec .bred__wrap {
  padding-right: 20px;
  margin-bottom: 24px;
}

.works__single .sec__inner {
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.works__single img {
  width: 100%;
  height: initial;
}

.works__single .content__sec #head {
  margin-bottom: 64px;
}

.works__single .content__sec #head .order-num {
  font-size: 16px;
  font-weight: bold;
  padding-left: 52px;
  position: relative;
  margin-bottom: 24px;
}

.works__single .content__sec #head .order-num:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
  background: #7b7b7b;
}

.works__single .content__sec #head h1 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ffaa00 0%, #ff5307 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.works__single .content__sec #head .lead {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 24px;
}

.works__single .content__sec #head .tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.works__single .content__sec #head .tags .cat p {
  display: inline-block;
  background: #292929;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
  padding: 5px 8px;
}

.works__single .content__sec #head .tags .date {
  font-size: 12px;
  color: #a5a5a5;
}

.works__single .content__sec #head .tags .date span {
  font-size: 10px;
  font-family: "Open Sans", serif;
  font-weight: 600;
  display: inline-block;
  margin-right: 14px;
}

.works__single .content__sec #head .summary {
  display: flex;
  gap: 24px;
}

.works__single .content__sec #head .summary .client-logo {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
}

.works__single .content__sec #head .summary .client-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works__single .content__sec #head .summary .info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 88px);
}

.works__single .content__sec #head .summary .info .col {
  position: relative;
}

.works__single .content__sec #head .summary .info .col:first-child:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  right: 0;
  top: auto;
  bottom: -6px;
}

.works__single .content__sec #head .summary .info .col .label {
  font-size: 12px;
  line-height: 1.8;
  color: #a5a5a5;
  font-weight: 600;
  font-family: "Open Sans", serif;
}

.works__single .content__sec #head .summary .info .col .val {
  font-size: 14px;
  font-weight: bold;
}

.works__single .content__sec #mainvisual {
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.works__single .content__sec #mainvisual:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #ffaa00 0%, #ff5307 100%);
  border-radius: 24px;
  transform: rotate(-180deg);
  width: 100%;
  height: 112%;
  bottom: -94px;
  left: 16px;
  z-index: 2;
}

.works__single .content__sec #mainvisual:after {
  content: "";
  position: absolute;
  background: url(../images/works-mv-logo.png) no-repeat center center / contain;
  width: 260px;
  height: 64px;
  bottom: -72px;
  right: 0;
  z-index: 3;
}

.works__single .content__sec #mainvisual .sec__inner {
  padding: 0 32px;
}

.works__single .content__sec #mainvisual .image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.works__single .content__sec #mainvisual .result {
  margin-right: -16px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Open Sans", serif;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(30px);
}

.works__single .content__sec #mainvisual .result.in-enter {
  opacity: 1;
  transform: translateY(0);
}

.works__single .content__sec #mainvisual .result .kana {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

.works__single .content__sec #mainvisual .result .col01 {
  text-align: right;
  margin-bottom: 24px;
}

.works__single .content__sec #mainvisual .result .col01 .title {
  font-size: 24px;
  line-height: 1;
  text-align: right;
  margin-bottom: 4px;
}

.works__single .content__sec #mainvisual .result .col01 .title.kana {
  font-size: 20px;
}

.works__single .content__sec #mainvisual .result .col01 .val {
  font-size: 80px;
  line-height: 1;
}

.works__single .content__sec #mainvisual .result .col01 .val.kana {
  font-size: 72px;
}

.works__single .content__sec #mainvisual .result .col02 {
  text-align: right;
}

.works__single .content__sec #mainvisual .result .col02 .title {
  font-size: 24px;
}

.works__single .content__sec #mainvisual .result .col02 .title.kana {
  font-size: 20px;
}

.works__single .content__sec #mainvisual .result .col02 .val {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
}

.works__single .content__sec #mainvisual .result .col02 .val.kana {
  font-size: 40px;
  font-weight: 500;
  margin-top: 12px;
}

.works__single .content__sec #mainvisual .order-num {
  font-size: 96px;
  font-weight: 600;
  font-family: "Open Sans", serif;
  position: absolute;
  top: -50px;
  left: 0;
  line-height: 1;
  z-index: 2;
  color: #fff;
  opacity: 0.8;
  text-shadow: 1px 1px 0 #c3c3c3, -1px 1px 0 #c3c3c3, -1px -1px 0 #c3c3c3,
    1px -1px 0 #c3c3c3;
}

.works__single .content__sec #promotion {
  margin-top: 160px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(30px);
}

.works__single .content__sec #promotion.in-enter {
  opacity: 1;
  transform: none;
}

.works__single .content__sec #promotion .sec__inner {
  position: relative;
}

.works__single .content__sec #promotion h2 {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(90deg, #ffaa00 0%, #ff5307 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Open Sans", serif;
  margin-bottom: 16px;
}

.works__single .content__sec #promotion .image {
  max-width: 400px;
  margin: 24px auto 0;
}

.works__single .content__sec #promotion .overview {
  margin-bottom: 64px;
}

.works__single .content__sec #promotion .overview h2 {
  margin-bottom: 24px;
}

.works__single .content__sec #promotion .overview .lead {
  font-size: 16px;
  line-height: 1.8;
}

.works__single .content__sec #promotion .overview .item-block h3 {
  margin-top: 24px;
  font-size: 32px;
  font-weight: bold;
}

.works__single .content__sec #promotion .overview .item-block p {
  margin-top: 24px;
  line-height: 1.8;
  font-size: 16px;
}

.works__single .content__sec #promotion .overview .item-block a {
  background: #f6f6f6;
  padding: 16px;
  border-radius: 4px;
  color: #0065db;
  font-size: 16px;
  text-decoration: underline;
  display: block;
  margin-top: 24px;
}

.works__single .content__sec #promotion .result {
  position: relative;
  margin-bottom: 80px;
}

.works__single .content__sec #promotion .result .block {
  padding: 24px;
  color: #fff;
  font-family: "Open Sans", serif;
  font-weight: 600;
  position: relative;
}

.works__single .content__sec #promotion .result .block:before {
  content: "";
  position: absolute;
  width: calc(100% + 24px);
  height: 100%;
  background: linear-gradient(90deg, #ffaa00 0%, #ff5307 100%);
  border-radius: 24px 0px 0px 24px;
  top: 0;
  left: 0;
  z-index: -1;
}

.works__single .content__sec #promotion .result .block .kana {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

.works__single .content__sec #promotion .result .col:first-child {
  margin-bottom: 24px;
}

.works__single .content__sec #promotion .result .col .title {
  font-size: 20px;
  font-weight: 500;
}

.works__single .content__sec #promotion .result .col .val {
  font-size: 64px;
  line-height: 1;
}

.works__single .content__sec #promotion .result .col .val.kana {
  font-size: 48px;
  margin-top: 6px;
}

.works__single .content__sec #details {
  margin-bottom: 64px;
}

.works__single .content__sec #details * {
  font-size: 16px;
  margin-bottom: 24px;
}

.works__single .content__sec #details .sec__inner {
  max-width: 928px;
}

.works__single .content__sec #details .sec__inner *:first-child {
  margin-top: 0;
}

.works__single .content__sec #details h2 {
  margin-top: 64px;
  font-size: 24px;
  font-weight: bold;
}

.works__single .content__sec #details h3 {
  font-size: 20px;
  font-weight: bold;
}

.works__single .content__sec #details h4 {
  font-size: 18px;
  font-weight: bold;
}

.works__single .content__sec #conductor {
  margin-bottom: 80px;
}

.works__single .content__sec #conductor .block {
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: center;
}

.works__single .content__sec #conductor .copy {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

.works__single .content__sec #conductor .copy:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  background: #c3c3c3;
  top: 50%;
  transform: translatey(-50%);
  right: -32px;
}

.works__single .content__sec #conductor .copy p {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-family: "Open Sans", serif;
  font-weight: 600;
}

.works__single .content__sec #conductor .copy .url-copy-clipbord {
  cursor: pointer;
}

.works__single .content__sec #conductor .sns {
  display: flex;
  gap: 24px;
}

.works__single .content__sec #other-works {
  margin-bottom: 80px;
}

.works__single .content__sec #other-works .sec__inner {
  padding: 0;
}

.works__single .content__sec #other-works h3 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.works__single .content__sec #other-works .works__list {
  gap: 32px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  margin-bottom: 40px;
  padding: 0 24px;
}

.works__single .content__sec #other-works .works__list li {
  width: 312px;
  min-width: 312px;
  margin-right: 0;
  margin-bottom: 0;
}

.works__single .content__sec #other-works .works__list li a {
  display: block;
}

.works__single .content__sec #other-works .works__list li .image-block {
  height: 180px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  margin-bottom: 16px;
}

.works__single .content__sec #other-works .works__list li .image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.works__single
  .content__sec
  #other-works
  .works__list
  li
  a:hover
  .image-block
  img {
  transform: scale(1.1);
}

.works__single .content__sec #other-works .works__list li .image-block .result {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0px 0px 16px 16px;
  color: #fff;
  position: absolute;
  width: 100%;
  padding: 5px 16px;
  left: 0;
  bottom: 0;
}

.works__single
  .content__sec
  #other-works
  .works__list
  li
  .image-block
  .result
  .label {
  display: flex;
  align-items: center;
  gap: 2px;
}

.works__single .content__sec #other-works .works__list li .info-block {
  position: relative;
}

.works__single .content__sec #other-works .works__list li .info-block .arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #292929;
  border-radius: 50%;
  padding: 9px 0;
  right: 0;
  bottom: 0;
}

.works__single
  .content__sec
  #other-works
  .works__list
  li
  .info-block
  .arrow
  img {
  width: 8px;
}

.works__single .content__sec #other-works .works__list li .info-block .title {
  background: linear-gradient(90deg, #ffaa00 0%, #ff5307 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.works__single .content__sec #other-works .works__list li .info-block .lead {
  font-size: 12px;
  font-weight: 500;
}

.works__single .content__sec #other-works .works__list li .info-block .client {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.works__single
  .content__sec
  #other-works
  .works__list
  li
  .info-block
  .client
  .logo {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  position: static;
}

.works__single
  .content__sec
  #other-works
  .works__list
  li
  .info-block
  .client
  .logo
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works__single
  .content__sec
  #other-works
  .works__list
  li
  .info-block
  .client
  .name
  .label {
  font-size: 10px;
  color: #a5a5a5;
  font-family: "Open Sans", serif;
  font-weight: 600;
}

.works__single
  .content__sec
  #other-works
  .works__list
  li
  .info-block
  .client
  .name
  .val {
  font-size: 12px;
}

.works__single .content__sec #other-works .button {
  width: 240px;
  margin: 0 auto;
}

.works__single .content__sec #other-works .button a {
  display: block;
  text-align: center;
  border: 1px solid #f05d1c;
  border-radius: 100px;
  color: #f05d1c;
  font-size: 16px;
  padding: 16px;
  line-height: 1;
  font-weight: 500;
}

/*#service .scroll__indi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

#service .scroll__indi .scroll {
  position: absolute;
  bottom: 20px;
  right: calc(100vw * (-80 / 1366));
}

#service .scroll__indi .scroll__inner {
  color: #fff;
  display: flex;
  align-items: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s,
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  transform: rotate(-90deg) translateX(0%);
  transform-origin: bottom left;
}

#service .scroll__indi .scroll__inner .bar {
  width: 78px;
  height: 1px;
  background: #fff;
  position: relative;
  margin-right: 6px;
}

#service .scroll__indi .scroll__inner .bar span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f39800;
  animation: bar 2s cubic-bezier(0.9, 0.07, 0.45, 0.94) infinite;
}

#service .scroll__indi .scroll__inner .text {
  line-height: 1;
  font-size: 1rem;
  font-weight: bold;
}

#service .bred__wrap {
  --bottom: 80;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#service #title__hero {
  display: flex;
  --right: 20;
  --bottom: 40;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  position: relative;
  background: #fff;
  margin-right: calc(100vw * (var(--right) / var(--vw)));
  box-shadow: 0px 3px 20px -8px rgba(0, 0, 0, 0.5);
}

#service #title__hero .head {
  --w: 240;
  --top: 30;
  --lr: 30;
  --bottom: 30;
  width: calc(100vw * (var(--w) / var(--vw)));
  padding: calc(100vw * (var(--top) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)))
    calc(100vw * (var(--bottom) / var(--vw)));
}

#service #title__hero .head .num {
  --font: 10;
  --bottom: 17;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
  line-height: 1;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#service #title__hero .head h2 {
  --font: 26;
  --bottom: 10;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1.2;
}

#service #title__hero .head .ja {
  --font: 12;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1;
  font-weight: bold;
  white-space: nowrap;
}

#service #title__hero .gra {
  --w: 140.7;
  --h: 143.51;
  --bottom: 38;
  --right: 20;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  position: absolute;
  bottom: calc(100vw * (var(--bottom) / var(--vw)));
  right: calc(100vw * (var(--right) / var(--vw)));
}

#service #title__hero .gra img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#service #servie__ov {
  --tb: 20;
  --lr: 20;
  --bottom: 60;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  padding: calc(100vw * (var(--tb) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)));
  padding-bottom: 0;
}

#service #servie__ov .sec__title {
  --bottom: 20;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#service #servie__ov .sec__title h3 .en {
  --font: 25;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

#service #servie__ov .sec__title h3 .ja {
  --font: 12;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

#service #servie__ov .block .tx {
  --font: 12;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 2;
  font-weight: bold;
}

#service #scope {
  background: #f8f8f4;
  --top: 40;
  --bottom: 80;
  --lr: 20;
  --right: 20;
  padding: calc(100vw * (var(--top) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)))
    calc(100vw * (var(--bottom) / var(--vw)));
  padding-right: calc(100vw * (var(--right) / var(--vw)));
}

#service #scope .side h2 {
  --font: 20;
  --bottom: 16;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#service #scope .side .scope__li {
  --font: 12;
  --bottom: 20;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  padding-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  border-bottom: 1px solid #dddddd;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
}

#service #scope .side .scope__li li:not(:last-child) {
  --right: 10;
  margin-right: calc(100vw * (var(--right) / var(--vw)));
}

#service #scope .side .scope__li li a {
  display: flex;
  align-items: center;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#service #scope .side .scope__li li a.current {
  color: #f39800;
}

#service #scope .side .scope__li li a.current:before {
  background: #f39800;
  border: 1px solid #f39800;
}

#service #scope .side .scope__li li a:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  border: 1px solid #000;
  margin-right: 3px;
  transition: border 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#service #scope .side .other__link ul li:not(:last-child) {
  --bottom: 10;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#service #scope .side .other__link ul li a {
  display: flex;
  align-items: center;
}

#service #scope .side .other__link ul li a .arrow {
  --w: 14.23;
  --h: 4.99;
  --right: 10;
  margin-right: calc(100vw * (var(--right) / var(--vw)));
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#service #scope .side .other__link ul li a .external {
  --w: 14.23;
  --h: 4.99;
  --right: 10;
  --bottom: 10;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  margin-right: calc(100vw * (var(--right) / var(--vw)));
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#service #scope .side .other__link ul li a .tx {
  --font: 14;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#service #scope .side .other__link .button.cv {
  --top: 30;
  width: 200px;
  height: 50px;
  background: #f38200;
  margin: auto;
  margin-top: calc(100vw * (var(--top) / var(--vw)));
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

#service #scope .side .other__link .button.cv:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f39800;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right;
  transform: scaleX(0);
}

#service #scope .side .other__link .button.cv a,
#service #scope .side .other__link .button.cv span {
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  justify-content: center;
  position: relative;
}

#service #scope .side .other__link .button.cv a .tx,
#service #scope .side .other__link .button.cv span .tx {
  font-weight: bold;
  font-size: 1.2rem;
}

#service #scope .side .other__link .button.cv a .external,
#service #scope .side .other__link .button.cv span .external {
  width: 20px;
  height: 10px;
  position: absolute;
  top: 20px;
  right: 20px;
}

#service #scope .side .other__link .button.cv a .external img,
#service #scope .side .other__link .button.cv span .external img {
  width: 100%;
  height: 100%;
}

#service .scope__ct .scope__gruop {
  --top: 80;
  padding-top: calc(100vw * (var(--top) / var(--vw)));
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(calc(100vw * (20 / var(--vw))));
}

#service .scope__ct .title__wrap {
  display: flex;
  align-items: center;
  --bottom: 20;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#service .scope__ct .title__wrap .ico {
  --w: 32;
  --right: 10;
  margin-right: calc(100vw * (var(--right) / var(--vw)));
  width: calc(100vw * (var(--w) / var(--vw)));
}

#service .scope__ct .title__wrap .title h4 {
  --font: 24;
  --bottom: 6;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  line-height: 1;
}

#service .scope__ct .title__wrap .title .ja {
  --font: 12;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
  line-height: 1;
}

#service .scope__ct .desc .label {
  --top: 3;
  --lr: 8;
  --bottom: 2;
  --font: 10;
  --m-bottom: 15;
  display: inline-block;
  line-height: 1;
  background: #f39800;
  color: #fff;
  font-weight: bold;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  padding: calc(100vw * (var(--top) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)))
    calc(100vw * (var(--bottom) / var(--vw)));
  border-radius: 10px;
  margin-bottom: calc(100vw * (var(--m-bottom) / var(--vw)));
}

#service .scope__ct .desc .tx {
  --font: 13;
  --bottom: 20;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#service .scope__ct .desc .image {
  --w: 374;
  --h: 209;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
}

#service .scope__ct .desc .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#service .scope__ct .scope-ex {
  padding-top: calc(100vw * (100 / 1366));
  text-align: center;
}

#service .scope__ct .scope-ex .button.viewmore.viewmore-service {
  margin: auto;
}

#service .scope__ct .scope-ex .button.viewmore.viewmore-service a .arrow,
#service .scope__ct .scope-ex .button.viewmore.viewmore-service span .arrow {
  width: 20px;
  height: 10px;
  top: 20px;
}

#service .swiper {
  overflow: hidden;
  position: relative;
}

#service .swiper .swiper-wrapper {
  height: auto !important;
}

#service .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#service .swiper .swiper-button-next,
#service .swiper .swiper-button-prev {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  --w: 30;
  --h: 30;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  border-radius: calc(100vw * (var(--w) / var(--vw)));
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.4s;
}

#service .swiper .swiper-button-next {
  top: auto;
  --right: 10;
  --bottom: 90;
  bottom: calc(100vw * (var(--bottom) / var(--vw)));
  right: calc(100vw * (var(--right) / var(--vw)));
}

#service .swiper .swiper-button-prev {
  top: auto;
  --left: 10;
  --bottom: 90;
  bottom: calc(100vw * (var(--bottom) / var(--vw)));
  left: calc(100vw * (var(--left) / var(--vw)));
}

#service .swiper .swiper-button-prev img {
  transform: rotate(180deg);
}

#service .swiper .swiper-button-next.swiper-button-disabled,
#service .swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

#service .swiper .swiper-pagination {
  position: static;
  margin-left: 0;
  width: auto;
  text-align: left;
}

#service .swiper .swiper-pagination-bullet {
  border-radius: 0;
  width: 40px;
  height: 2px;
  opacity: 1;
  position: relative;
  overflow: hidden;
  background: #9a9a9a;
}

#service .swiper .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

#service .swiper .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f39800;
  transition: transform 0.4s;
  transform-origin: right;
  transform: scaleX(0);
}

#service .swiper .swiper-pagination-bullet-active:after {
  transform: scaleX(1);
  transform-origin: left;
}*/

.service__single .content__sec {
  padding: 0 0;
  padding-top: 125px;
  overflow: hidden;
}

.service__single .content__sec .bred__wrap {
  padding-right: 20px;
  margin-bottom: 24px;
}

.service__single .content__sec .article {
  margin-bottom: 80px;
}

.service__single .sec__inner {
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.service__single .content__sec #head {
  margin-bottom: 24px;
}

.service__single .content__sec #head .order-num {
  font-size: 16px;
  font-weight: bold;
  padding-left: 52px;
  position: relative;
  margin-bottom: 24px;
}

.service__single .content__sec #head .order-num:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
  background: #7b7b7b;
}

.service__single .content__sec #head h1 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ffaa00 0%, #ff5307 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.service__single .content__sec #head .lead {
  font-size: 14px;
  font-weight: bold;
}

.service__single .content__sec #mainvisual {
  margin-bottom: 56px;
}

@media only screen and (max-width: 767px) {
  .service__single .content__sec #mainvisual {
    background-image: none!important;
  }
}

.service__single .content__sec #mainvisual .image {
  margin-top: 0;
}

.service__single .content__sec #desc {
  margin-bottom: 80px;
}

.service__single .content__sec #desc .block:not(:last-child) {
  margin-bottom: 40px;
}

.service__single .content__sec #desc .block h2 {
  font-size: 28px;
  line-height: 1.4;
  background: linear-gradient(90deg, #FFAA00 0%, #FF5307 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 16px;
}

.service__single .content__sec #desc .block .flex {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service__single .content__sec #desc .block .flex .image {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.service__single .content__sec #desc .block p {
  width: 100%;
  font-size: 16px;
}

.service__single .content__sec #strong {
  margin-bottom: 40px;
}

.service__single .content__sec #strong h2 {
  margin-bottom: 40px;
}

.service__single .content__sec #strong h2 img {
  width: 264px;
  margin: 0 auto;
}

.service__single .content__sec #strong .block {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}

.service__single .content__sec #strong .block .item {
  width: 100%;
  max-width: 400px;
  padding: 64px 24px 56px;
  position: relative;
  text-align: center;
}

.service__single .content__sec #strong .block .item .no {
  position: absolute;
  top: 0;
  left: 0;
}

.service__single .content__sec #strong .block .item .image {
  margin-bottom: 24px;
}

.service__single .content__sec #strong .block .item .image img {
  margin: 0 auto;
}

.service__single .content__sec #strong .block .item .title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 24px;
}

.service__single .content__sec #strong .block .item .text {
  font-size: 12px;
}

.service__single .content__sec #results {
  background: #F6F6F6;
  margin-bottom: 40px;
}

.service__single .content__sec #results .slider {
  padding-bottom: 88px;
}

.service__single .content__sec #results .slide-arrow {
  position: absolute;
  width: 40px;
  bottom: 24px;
  z-index: 1;
  cursor: pointer;
}

.service__single .content__sec #results .prev-arrow {
  left: calc(50% - 150px);
}

.service__single .content__sec #results .next-arrow {
  right: calc(50% - 150px);
}

.service__single .content__sec #results .slick-dots {
  bottom: 30px;
}

.service__single .content__sec #results .slick-dots li button:before {
  font-size: 16px;
  opacity: 1;
  color: #D9D9D9;
}

.service__single .content__sec #results .slick-dots li.slick-active button:before {
  color: #FF6806;
  opacity: 1;
}



.service__single .content__sec #results .list {
  padding: 32px 0;
}

.service__single .content__sec #results .list.slider {
  padding-bottom: 88px;
}

.service__single .content__sec #results .item {
  width: 340px;
}

.service__single .content__sec #results .slider .item {
  margin: 0 100px;
}

.service__single .content__sec #results .item .wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service__single .content__sec #results .item .image {
  width: 100%;
}

.service__single .content__sec #results .item .content {
  width: 100%;
}

.service__single .content__sec #results .item .content h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding: 0 16px;
  margin-bottom: 12px;
}

.service__single .content__sec #results .item .content h3:before {
  content: "“";
  position: absolute;
  color: #FFA401;
  top: 0;
  left: 0;
  line-height: 1;
}

.service__single .content__sec #results .item .content h3:after {
  content: "“";
  transform: rotate(180deg);
  position: absolute;
  color: #FFA401;
  bottom: 0;
  right: 0;
  line-height: 1;
}

.service__single .content__sec #results .item .content > p {
  font-size: 12px;
}

.service__single .content__sec #results .item .content > a {
  font-size: 12px;
  text-decoration: underline;
  margin-top: 8px;
  display: inline-block;
}

.service__single .content__sec #results .item .content .client {
  margin-bottom: 16px;
}

.service__single .content__sec #results .item .content .client.flex {
  display: flex;
  gap: 24px;
}

.service__single .content__sec #results .item .content .client .logo {
  width: 64px;
  height: 64px;
}

.service__single .content__sec #results .item .content .client .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__single .content__sec #results .item .content .client .info {
  width: calc(100% - 88px);
  max-width: 254px;
}

.service__single .content__sec #results .item .content .client .info .block:first-child {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.service__single .content__sec #results .item .content .client .info .label {
  font-size: 10px;
  color: #A5A5A5;
  margin-bottom: 2px;
}

.service__single .content__sec #results .item .content .client .info .name {
  font-size: 14px;
  font-weight: bold;
}


.service__single .content__sec .button {
  width: 240px;
  margin: 0 auto;
}

.service__single .content__sec .button a {
  display: block;
  text-align: center;
  border: 1px solid #f05d1c;
  border-radius: 100px;
  color: #f05d1c;
  font-size: 16px;
  padding: 16px;
  line-height: 1;
  font-weight: 500;
}

#other {
  --top: 40;
  --lr: 20;
  --bottom: 80;
  margin: calc(100vw * (var(--top) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)))
    calc(100vw * (var(--bottom) / var(--vw)));
}

#other h3 {
  --font: 28;
  --bottom: 40;
  text-align: center;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#other ul li {
  background: #fff;
  box-shadow: 0px 3px 20px -8px rgba(0, 0, 0, 0.5);
}

#other ul li:not(:last-child) {
  margin-bottom: 50px;
}

#other ul li a {
  --tb: 20;
  --lr: 20;
  padding: calc(100vw * (var(--tb) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)));
  display: block;
}

#other ul li .l__1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  --bottom: 20;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#other ul li .l__1 .gra {
  --left: 20;
  --bottom: 0;
  --w: 122.36;
  --h: 117.67;
  position: absolute;
  bottom: calc(100vw * (var(--bottom) / var(--vw)));
  left: calc(100vw * (var(--left) / var(--vw)));
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
}

#other ul li .l__1 .gra img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#other ul li .l__1 .ico {
  --w: 157;
  width: calc(100vw * (var(--w) / var(--vw)));
}

#other ul li .l__1 .ico img {
  margin: auto;
}

#other ul li .l__2 {
  display: flex;
  justify-content: space-between;
}

#other ul li .l__2 .title h5 {
  --font: 20;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1.2;
  margin: 0;
}

#other ul li .l__2 .title .ja {
  --font: 12;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  font-weight: bold;
}

#other ul li .l__2 .button.viewmore {
  --w: 110;
  --h: 40;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
}

#other ul li .l__2 .button.viewmore .arrow {
  --w: 20;
  --h: 10;
  --top: 17;
  --right: 8;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  top: calc(100vw * (var(--top) / var(--vw)));
  right: calc(100vw * (var(--right) / var(--vw)));
}

#other ul li .l__2 .button.viewmore .tx {
  --font: 10;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

.loadEnd#service #scope .scope__ct .scope__gruop.in-enter {
  opacity: 1;
  transform: translateY(0);
}

.column__list {
  display: flex;
  flex-wrap: wrap;
}

.column__list li {
  background: #fff;
  width: calc((100vw * (184 / 414)) + 1px);
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  margin-top: -1px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(calc(100vw * (20 / var(--vw))));
}

.column__list li:nth-of-type(1) {
  transition-delay: 0.05s;
}

.column__list li:nth-of-type(2) {
  transition-delay: 0.1s;
}

.column__list li:nth-of-type(3) {
  transition-delay: 0.15s;
}

.column__list li:nth-of-type(4) {
  transition-delay: 0.2s;
}

.column__list li:nth-of-type(5) {
  transition-delay: 0.25s;
}

.column__list li:nth-of-type(6) {
  transition-delay: 0.3s;
}

.column__list li:nth-of-type(7) {
  transition-delay: 0.35s;
}

.column__list li:nth-of-type(8) {
  transition-delay: 0.4s;
}

.column__list li:nth-of-type(even) {
  position: relative;
  margin-left: -1px;
}

.column__list li .thumb {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #dddddd;
}

.column__list li .thumb .thumb__inner {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

.column__list li .thumb img {
  width: 100%;
}

.column__list li .text__block {
  padding: 14px 12px;
}

.column__list li .text__block .date {
  display: inline-block;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 4px 14px;
  line-height: 1;
  margin-bottom: 8px;
}

.column__list li .text__block h4 {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: calc(100vw * (5 / var(--vw)));
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.column__list li .text__block .desc {
  font-size: 1.2rem;
  line-height: 1.8;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.column__list li .tag__block {
  padding: 4px 14px 10px;
}

.column__list li .tag__block a {
  display: inline-block;
  font-size: calc(100vw * (26 / 1366));
  border-radius: 100vh;
  padding: 4px 8px;
  line-height: 1;
  margin-right: 10px;
  margin-bottom: 8px;
  background-color: #f8da4f;
}

.title__block {
  position: relative;
}

.drop__down {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.drop__down .drop__trriger {
  font-size: 1rem;
  font-weight: bold;
  margin-right: 6px;
}

.drop__down .drop__wrap {
  width: 100px;
  border-bottom: 2px solid #000;
  text-align: center;
  position: relative;
  z-index: 1;
}

.drop__down .drop__wrap .current {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  --right: 10;
  padding-right: calc(100vw * (var(--right) / var(--vw)));
  transition: opacity 0.4s;
}

.drop__down .drop__wrap .current:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  border-style: solid;
  border-width: 4px 2.5px 0 2.5px;
  border-color: #000 transparent transparent transparent;
  transition: transform 0.3s;
}

.drop__down .drop__wrap .drop__inner {
  position: absolute;
  top: 24px;
  left: -20%;
  width: 140%;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
  background: #fff;
  border-radius: 6px;
  padding: 14px 10px;
  box-shadow: 0px 3px 20px -8px rgba(0, 0, 0, 0.5);
  display: none;
}

.drop__down .drop__wrap .drop__inner li {
  display: flex;
  align-items: center;
  transition: color 0.4s;
}

.drop__down .drop__wrap .drop__inner li:not(:last-child) {
  margin-bottom: 6px;
}

.drop__down .drop__wrap .drop__inner li:before {
  content: "・";
  display: block;
}

.drop__down .drop__wrap .drop__inner li a {
  transition: color 0.4s;
}

.drop__down .drop__wrap.is-active .current:after {
  transform: rotate(180deg);
}

.casestudy__single .content__sec {
  padding: 0 0;
  padding-top: 125px;
}

.casestudy__single .content__sec .bred__wrap {
  padding-right: 20px;
  margin-bottom: 24px;
}

.casestudy__single .hero {
  position: relative;
  z-index: 1;
}

.casestudy__single .hero .text__block {
  margin-bottom: 30px;
  padding: 0 20px;
}

.casestudy__single .hero .text__block .mini {
  font-weight: bold;
  font-size: 1.1rem;
  color: #9a9a9a;
  margin-bottom: 22px;
}

.casestudy__single .hero .text__block h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.casestudy__single .hero .text__block .sub__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.8;
}

.casestudy__single .hero .text__block .client {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.casestudy__single .hero .text__block .share__module {
  display: flex;
}

.casestudy__single .hero .text__block .share__module .head {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.casestudy__single .hero .text__block .share__module .head .tx {
  line-height: 1;
  margin-right: 4px;
}

.casestudy__single .hero .text__block .share__module .sns {
  display: flex;
}

.casestudy__single
  .hero
  .text__block
  .share__module
  .sns
  .link:not(:last-child) {
  margin-right: 14px;
}

.casestudy__single .hero .main__image {
  padding: 0 20px;
}

.casestudy__single .inner__contents {
  background: #f8f8f4;
  position: relative;
  padding: 50px 0;
}

.casestudy__single .inner__contents:before {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  top: -70px;
  left: 0;
  background: #f8f8f4;
}

.casestudy__single .inner__contents .block:not(:last-child) {
  margin-bottom: 40px;
}

.casestudy__single .inner__contents .block .point {
  margin: 0 20px;
  padding: 20px 12px;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 40px;
}

.casestudy__single .inner__contents .block .point .h {
  color: #f39800;
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.casestudy__single .inner__contents .block .point ol li {
  font-size: 1.6rem;
  font-weight: bold;
}

.casestudy__single .inner__contents .block .point ol li:not(:last-child) {
  margin-bottom: 6px;
}

.casestudy__single .inner__contents .block .sec__t {
  font-weight: bold;
  font-size: 2.2rem;
  margin: 0 20px;
  margin-bottom: 40px;
  color: #f39800;
}

.casestudy__single .inner__contents .block .q {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 20px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.casestudy__single .inner__contents .block .tx {
  margin: 0 20px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.casestudy__single .inner__contents .block .tx .strong {
  font-weight: bold;
}

.casestudy__single .inner__contents .block .image {
  margin-bottom: 40px;
}

.casestudy__single .inner__contents .block .image img {
  width: 100%;
  height: auto;
}

.casestudy__single .inner__contents .block .image .cap {
  color: #9a9a9a;
  font-size: 1.2rem;
  margin: 0 20px;
  margin-top: 10px;
}

.casestudy__single .inner__contents .block .info {
  background: #fff;
  margin: 0 20px;
  padding: 20px;
  border-radius: 12px;
}

.casestudy__single .inner__contents .block .info dt {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.casestudy__single .inner__contents .block .info dd {
  font-size: 1.2rem;
}

.casestudy__single .inner__contents .block .info dd:not(:last-child) {
  margin-bottom: 4px;
}

.casestudy__single .inner__contents .block .info dd a {
  text-decoration: underline;
}

#other-column {
  background: #fff;
  padding: 40px 0px;
}

#other-column .typo span {
  --top: 20;
  --left: -10;
}

#other-column hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #dddddd;
  margin: 0 20px 30px;
}

#other-column .swipe__list {
  position: relative;
}

#other-column .swipe__list:not(:last-child) {
  margin-bottom: 32px;
}

#other-column .swipe__list .arc__title {
  padding: 0 20px;
  margin-bottom: 30px;
}

#other-column .swipe__list .arc__title h2 {
  font-size: 2.8rem;
}

#other-column .swipe__list .arc__title h3 {
  font-size: 2.8rem;
}

#other-column .swipe__list .swiper {
  overflow: hidden;
  margin-left: 20px;
  margin-bottom: 30px;
}

#other-column .swipe__list .swiper .swiper-slide {
  background: #fff;
  width: calc(100vw * (187 / 414));
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

#other-column .swipe__list .swiper .swiper-slide:last-child {
  border-right: 1px solid #dddddd;
}

#other-column .swipe__list .swiper .swiper-slide .thumb img {
  width: 100%;
}

#other-column .swipe__list .swiper .swiper-slide .text__block {
  padding: 14px 12px;
}

#other-column .swipe__list .swiper .swiper-slide .text__block .date {
  display: inline-block;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 4px 14px;
  line-height: 1;
  margin-bottom: 8px;
}

#other-column .swipe__list .swiper .swiper-slide .text__block h3 {
  width: 100%;
  font-size: 1.2rem;
}

#other-column .swipe__list .swiper .swiper-button-next.swiper-button-disabled,
#other-column .swipe__list .swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

#other-column .swipe__list .swiper .swiper-button-next,
#other-column .swipe__list .swiper .swiper-button-prev {
  display: none;
}

#other-column .swipe__list .swiper .swiper-button-prev img {
  transform: rotate(180deg);
}

#other-column .button.viewmore.is-sp {
  margin-left: 20px;
}

.knowledge__single {
  background: #f8f8f4;
}

.knowledge__single .content__sec {
  padding: 0 0;
  padding-top: 125px;
}

.knowledge__single .content__sec .bred__wrap {
  padding-right: 20px;
  margin-bottom: 24px;
}

.knowledge__single .main__article {
  padding-bottom: 50px;
}

.knowledge__single .hero {
  position: relative;
  z-index: 1;
}

.knowledge__single .hero .text__block {
  margin-bottom: 30px;
  padding: 0 20px;
}

.knowledge__single .hero .text__block .mini {
  font-weight: bold;
  font-size: 1.1rem;
  color: #9a9a9a;
  margin-bottom: 22px;
}

.knowledge__single .hero .text__block h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.knowledge__single .hero .text__block .share__module {
  display: flex;
}

.knowledge__single .hero .text__block .share__module .head {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.knowledge__single .hero .text__block .share__module .head .tx {
  line-height: 1;
  margin-right: 4px;
}

.knowledge__single .hero .text__block .share__module .sns {
  display: flex;
}

.knowledge__single
  .hero
  .text__block
  .share__module
  .sns
  .link:not(:last-child) {
  margin-right: 14px;
}

.knowledge__single .hero .main__image {
  margin: auto;
  max-width: calc(100vw * (1030 / var(--vw)));
}

.knowledge__single .hero .main__image img {
  width: 100%;
}

.knowledge__single .inner__contents {
  position: relative;
  padding-bottom: 80px;
}

.knowledge__single .inner__contents .index {
  padding-top: 50px;
  margin: 0 20px;
}

.knowledge__single .inner__contents .index .index__inner {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  font-weight: bold;
  font-size: 1.5rem;
}

.knowledge__single .inner__contents .index .index__inner .h {
  margin-bottom: 14px;
}

.knowledge__single
  .inner__contents
  .index
  .index__inner
  ul
  li:not(:last-child) {
  margin-bottom: 10px;
}

.knowledge__single .inner__contents .side__contents {
  margin: 0 20px;
}

.knowledge__single .inner__contents .side__contents .block {
  padding-top: 60px;
}

.knowledge__single .inner__contents .side__contents .block h2 {
  color: #f39800;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.knowledge__single .inner__contents .side__contents .block h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.knowledge__single .inner__contents .side__contents .block .tx {
  font-size: 1.5rem;
  line-height: 1.8;
}

.knowledge__single
  .inner__contents
  .side__contents
  .block
  .tx:not(:last-child) {
  margin-bottom: 34px;
}

.knowledge__single .inner__contents .side__contents .block img {
  height: auto;
}

.knowledge__single .block__l {
  margin: 0 20px;
  margin-bottom: 50px;
}

.knowledge__single .block__l .info {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.knowledge__single .block__l .info dt {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 14px;
}

.knowledge__single .block__l .info dd {
  font-size: 1.5rem;
  line-height: 1.8;
}

.knowledge__single .block__l .info dd:not(:last-child) {
  margin-bottom: 4px;
}

.knowledge__single .block__l .info dd a {
  text-decoration: underline;
}

.knowledge__single .block__l .cta {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.knowledge__single .block__l .cta h4 {
  margin-bottom: 20px;
  line-height: 1.8;
  --font: 15;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

.knowledge__single .block__l .cta .table {
  margin-bottom: 30px;
}

.knowledge__single .block__l .cta .table .thumb {
  margin-bottom: 20px;
}

.knowledge__single .block__l .cta .table .thumb img {
  width: 100%;
  height: auto;
}

.knowledge__single .block__l .cta .table .l {
  line-height: 1.8;
  --font: 14;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

.knowledge__single .block__l .cta .r {
  --font: 15;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1.8;
}

.knowledge__single .block__l .cta .r:not(:last-child) {
  margin-bottom: 12px;
}

.knowledge__single .block__l .cta .r:last-child {
  margin-bottom: 20px;
}

.knowledge__single .block__l .cta .r.__b {
  font-weight: bold;
}

.knowledge__single .block__l .cta .button {
  width: 100%;
  height: 60px;
  color: #fff;
  font-weight: bold;
  background: #f39800;
  display: block;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  --font: 15;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  margin-top: 20px;
}

.marketingcity__archive .content__sec .column__block,
.marketingcity__single .content__sec .column__block {
  position: relative;
}

.marketingcity__archive .content__sec .column__block .column__l,
.marketingcity__single .content__sec .column__block .column__l {
  padding: 0 20px;
}

.marketingcity__archive .content__sec .column__block .column__l .drop__down,
.marketingcity__single .content__sec .column__block .column__l .drop__down {
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  margin-bottom: 20px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__trriger,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__trriger {
  font-size: 1rem;
  font-weight: bold;
  margin-right: 6px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap {
  width: 100px;
  border-bottom: 2px solid #000;
  text-align: center;
  position: relative;
  z-index: 1;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .current,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .current {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  --right: 10;
  padding-right: calc(100vw * (var(--right) / var(--vw)));
  transition: opacity 0.4s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .current:after,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .current:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  border-style: solid;
  border-width: 4px 2.5px 0 2.5px;
  border-color: #000 transparent transparent transparent;
  transition: transform 0.3s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner {
  position: absolute;
  top: 24px;
  left: -20%;
  width: 140%;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
  background: #fff;
  border-radius: 6px;
  padding: 14px 10px;
  box-shadow: 0px 3px 20px -8px rgba(0, 0, 0, 0.5);
  display: none;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner
  li,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner
  li {
  display: flex;
  align-items: center;
  transition: color 0.4s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner
  li:not(:last-child),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner
  li:not(:last-child) {
  margin-bottom: 6px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner
  li:before,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner
  li:before {
  content: "・";
  display: block;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner
  li
  a,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap
  .drop__inner
  li
  a {
  transition: color 0.4s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap.is-active
  .current:after,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .drop__down
  .drop__wrap.is-active
  .current:after {
  transform: rotate(180deg);
}

.marketingcity__archive .content__sec .column__block .column__l .column__list,
.marketingcity__single .content__sec .column__block .column__l .column__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li {
  background: #fff;
  width: calc(50% - 6px);
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  margin-top: -1px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: calc((100vw * (18 / 414)) + 1px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(calc(100vw * (20 / var(--vw))));
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(1),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(1) {
  transition-delay: 0.05s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(2),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(2) {
  transition-delay: 0.1s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(3),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(3) {
  transition-delay: 0.15s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(4),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(4) {
  transition-delay: 0.2s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(5),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(5) {
  transition-delay: 0.25s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(6),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(6) {
  transition-delay: 0.3s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(7),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(7) {
  transition-delay: 0.35s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(8),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(8) {
  transition-delay: 0.4s;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(even),
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li:nth-of-type(even) {
  position: relative;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .thumb,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .thumb {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #dddddd;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .thumb
  .thumb__inner,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .thumb
  .thumb__inner {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .thumb
  img,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .thumb
  img {
  width: 100%;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block {
  padding: 14px 12px 7px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  .date,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  .date {
  display: inline-block;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 4px 14px;
  line-height: 1;
  margin-bottom: 8px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  h2,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  h2 {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: calc(100vw * (5 / var(--vw)));
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  h3,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  h3 {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: calc(100vw * (5 / var(--vw)));
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  h4,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  h4 {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: calc(100vw * (5 / var(--vw)));
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  .desc,
.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .column__list
  li
  .text__block
  .desc {
  font-size: 1.2rem;
  line-height: 1.8;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.marketingcity__archive .content__sec .column__block .column__r .title__block,
.marketingcity__single .content__sec .column__block .column__r .title__block {
  margin: 0;
  padding-top: 8px;
  text-align: center;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .title__block
  h2
  .f-en,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .title__block
  h2
  .f-en {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 0.6;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .title__block
  h2
  .f-ja,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .title__block
  h2
  .f-ja {
  display: block;
  font-weight: bold;
  font-size: 2rem;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .title__block
  h3
  .f-en,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .title__block
  h3
  .f-en {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 0.6;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .title__block
  h3
  .f-ja,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .title__block
  h3
  .f-ja {
  display: block;
  font-weight: bold;
  font-size: 2rem;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-tag,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-tag {
  margin-bottom: 60px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-tag
  .tag__list,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-tag
  .tag__list {
  background-color: #fff;
  padding: 10px 20px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-tag
  .tag__list
  li.cat-item,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-tag
  .tag__list
  li.cat-item {
  display: inline;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-tag
  .tag__list
  li.cat-item
  a,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-tag
  .tag__list
  li.cat-item
  a {
  display: inline-block;
  font-size: 1rem;
  border-radius: 100vh;
  padding: 4px 14px;
  line-height: 1;
  margin-top: 8px;
  margin-right: 10px;
  margin-bottom: 8px;
  background-color: #f8da4f;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular {
  margin-bottom: 60px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list {
  background-color: #fff;
  padding: 20px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item {
  margin-bottom: 15px;
  box-sizing: border-box;
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item:last-child,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item:last-child {
  margin-bottom: 0px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .thumb,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .thumb {
  width: 100%;
  overflow: hidden;
  border-bottom: 0.5px solid #dddddd;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .thumb
  img,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .thumb
  img {
  width: 100%;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block {
  padding: 0px 10px 10px 10px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner {
  position: relative;
  top: calc(100vw * (-20 / var(--vw)));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: calc(100vw * (-20 / var(--vw)));
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank {
  position: relative;
  margin: 0 0 8px 0;
  padding: 0px;
  background-color: #333;
  color: #fff;
  width: calc(100vw * (60 / var(--vw)));
  height: calc(100vw * (60 / var(--vw)));
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank
  span,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank
  span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: bold;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank.num_1,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank.num_1 {
  background-color: #d65f2d;
  color: #fff;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank.num_2,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank.num_2 {
  background-color: #e49936;
  color: #fff;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank.num_3,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .rank.num_3 {
  background-color: #ecb74c;
  color: #fff;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .date,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  .text__block-inner
  .date {
  display: inline-block;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 4px 14px;
  line-height: 1;
  margin-bottom: 8px;
  background-color: #fff;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  h3,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  h3 {
  font-size: 1.4rem;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  h4,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-popular
  .popular__list
  li.popular__item
  a
  .text__block
  h4 {
  font-size: 1.4rem;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup {
  margin-bottom: 0px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list {
  background-color: #fff;
  padding: 20px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item {
  margin-bottom: 15px;
  box-sizing: border-box;
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item:last-child,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item:last-child {
  margin-bottom: 0px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .thumb,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .thumb {
  width: 100%;
  overflow: hidden;
  border-bottom: 0.5px solid #dddddd;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .thumb
  img,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .thumb
  img {
  width: 100%;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block {
  padding: 0px 10px 10px 10px;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block
  .text__block-inner,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block
  .text__block-inner {
  margin-bottom: calc(100vw * (-20 / var(--vw)));
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block
  .text__block-inner
  .date,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block
  .text__block-inner
  .date {
  display: inline-block;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 4px 14px;
  line-height: 1;
  margin-bottom: 8px;
  background-color: #fff;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block
  h3,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block
  h3 {
  margin-top: calc(100vw * (30 / var(--vw)));
  font-size: 1.4rem;
}

.marketingcity__archive
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block
  h4,
.marketingcity__single
  .content__sec
  .column__block
  .column__r
  .column__side-pickup
  .pickup__list
  li.pickup__item
  a
  .text__block
  h4 {
  font-size: 1.4rem;
}

.marketingcity__archive .content__sec.content__sec-inner,
.marketingcity__single .content__sec.content__sec-inner {
  padding-top: 60px;
}

.marketingcity__archive .marketingcity-recommend,
.marketingcity__single .marketingcity-recommend {
  margin-top: 20px;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.marketingcity__archive .marketingcity-recommend .title__block h2 .f-en,
.marketingcity__single .marketingcity-recommend .title__block h2 .f-en {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 0.6;
}

.marketingcity__archive .marketingcity-recommend .title__block h2 .f-ja,
.marketingcity__single .marketingcity-recommend .title__block h2 .f-ja {
  display: block;
  font-weight: bold;
  font-size: 2rem;
}

.marketingcity__archive .marketingcity-recommend .title__block h3 .f-en,
.marketingcity__single .marketingcity-recommend .title__block h3 .f-en {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 0.6;
}

.marketingcity__archive .marketingcity-recommend .title__block h3 .f-ja,
.marketingcity__single .marketingcity-recommend .title__block h3 .f-ja {
  display: block;
  font-weight: bold;
  font-size: 2rem;
}

.marketingcity__archive .marketingcity-recommend .swiper,
.marketingcity__single .marketingcity-recommend .swiper {
  overflow: hidden;
  margin-left: 0px;
  margin-bottom: 30px;
  width: 100vw;
}

.marketingcity__archive .marketingcity-recommend .swiper .swiper-wrapper,
.marketingcity__single .marketingcity-recommend .swiper .swiper-wrapper {
  display: flex;
  width: 100%;
  transform: translate3d(0px, 0px, 0px);
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  background-color: #fff;
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .thumb,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .thumb {
  overflow: hidden;
  border-bottom: 0.5px solid #dddddd;
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .thumb__inner,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .thumb__inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .thumb__inner
  img,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .thumb__inner
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .text__block,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .text__block {
  padding: 14px 12px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  text-align: left;
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .text__block
  .date,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .text__block
  .date {
  display: inline-block;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #dddddd;
  margin-top: auto;
  padding: 4px 14px;
  line-height: 1;
  margin-bottom: 8px;
  background-color: #fff;
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .text__block
  h3,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .text__block
  h3 {
  margin-top: auto;
  width: 100%;
  font-size: 1.4rem;
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .text__block
  h4,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-wrapper
  .swiper-slide
  a
  .text__block
  h4 {
  margin-top: auto;
  width: 100%;
  font-size: 1.4rem;
}

.marketingcity__archive .marketingcity-recommend .swiper .swiper-pagination,
.marketingcity__single .marketingcity-recommend .swiper .swiper-pagination {
  position: static;
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-pagination.swiper-pagination-bullets,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-pagination.swiper-pagination-bullets {
  margin: 40px auto 20px;
  padding: 0px 0;
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-pagination-bullet,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-pagination-bullet {
  margin: 2px 10px;
  padding: 5px;
}

.marketingcity__archive
  .marketingcity-recommend
  .swiper
  .swiper-pagination-bullet-active,
.marketingcity__single
  .marketingcity-recommend
  .swiper
  .swiper-pagination-bullet-active {
  background: #d65f2d;
}

.marketingcity__archive .content__catch,
.marketingcity__single .content__catch {
  margin-top: 20px;
  text-align: center;
}

.marketingcity__archive .content__catch h2 .f-ja,
.marketingcity__single .content__catch h2 .f-ja {
  display: block;
  font-weight: bold;
  font-size: calc(100vw * (32 / 768));
}

.marketingcity__archive .column__current_title,
.marketingcity__single .column__current_title {
  padding-bottom: 20px;
}

.marketingcity__archive .column__current_title h3 .f-ja,
.marketingcity__single .column__current_title h3 .f-ja {
  display: block;
  font-weight: bold;
  font-size: calc(100vw * (24 / 768));
}

.marketingcity__archive .column__current_title h3 .f-ja span,
.marketingcity__single .column__current_title h3 .f-ja span {
  font-size: calc(100vw * (28 / 768));
}

.marketingcity__single {
  background: #f8f8f4;
}

.marketingcity__single .content__sec {
  padding: 0 0;
  padding-top: 125px;
}

.marketingcity__single .content__sec .bred__wrap {
  padding-right: 20px;
  margin-bottom: 24px;
}

.marketingcity__single .content__sec .column__block .column__l {
  margin-bottom: 60px;
  padding: 0;
}

.marketingcity__single .content__sec .column__block .column__l .main__article {
  padding: 20px 20px 2px;
  background-color: #fff;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero {
  position: relative;
  z-index: 1;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block {
  margin-bottom: 10px;
  padding: 0 0px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block
  h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block
  .text__block-sub {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block
  .text__block-sub
  .mini {
  font-weight: bold;
  font-size: 1.1rem;
  color: #9a9a9a;
  margin-bottom: 0px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block
  .text__block-sub
  .mini
  .date {
  display: inline-block;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 4px 14px;
  line-height: 1;
  margin-top: 0px;
  margin-bottom: 8px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block
  .text__block-sub
  .share__module {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block
  .text__block-sub
  .share__module
  .head {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-right: 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block
  .text__block-sub
  .share__module
  .head
  .tx {
  line-height: 1;
  margin-right: 4px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block
  .text__block-sub
  .share__module
  .sns {
  display: flex;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .text__block
  .text__block-sub
  .share__module
  .sns
  .link:not(:last-child) {
  margin-right: 14px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .main__image {
  margin: auto;
  max-width: calc(100vw * (1030 / var(--vw)));
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .hero
  .main__image
  img {
  width: 100%;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents {
  position: relative;
  padding: 0px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .sc_index {
  padding-top: 0px;
  margin: 20px 0px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .sc_index
  .index__inner {
  background-color: #fff;
  border: 8px solid #f8f8f4;
  border-radius: 5px;
  padding: 20px;
  font-weight: bold;
  font-size: 1.5rem;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .sc_index
  .index__inner
  .h {
  margin-bottom: 14px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .sc_index
  .index__inner
  ul
  li:not(:last-child) {
  margin-bottom: 10px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .side__contents {
  margin: 0 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .side__contents
  .block {
  padding-top: 60px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .side__contents
  .block
  h2 {
  color: #f39800;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .side__contents
  .block
  h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .side__contents
  .block
  .tx {
  font-size: 1.5rem;
  line-height: 1.8;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .side__contents
  .block
  .tx:not(:last-child) {
  margin-bottom: 34px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .main__article
  .inner__contents
  .side__contents
  .block
  img {
  height: auto;
}

.marketingcity__single .content__sec .column__block .column__l .block {
  margin: 0px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.marketingcity__single .content__sec .column__block .column__l .block .article {
  margin-top: -20px;
  margin-bottom: -20px;
  background: #fff;
  padding: 0px;
  font-size: calc(100vw * (15 / var(--vw)));
  line-height: 1.8;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .target-index {
  padding-top: 90px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  h2 {
  color: #f39800;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .hd-1st {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border: 2px solid #e49936;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .hd-1st::before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: "";
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #e49936;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .hd-1st
  span {
  font-size: 40px;
  font-size: 4rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 1px;
  padding-left: 16px;
  color: #fff;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .hd-2nd {
  position: relative;
  padding-left: 2.6em;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .hd-2nd
  span {
  position: absolute;
  top: -0rem;
  left: 0;
  padding: 0 0.5rem;
  color: #fff;
  border-radius: 6px;
  background: #e49936;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .hd-2nd
  span::after {
  position: absolute;
  top: calc(50% - 7px);
  right: -10px;
  width: 0;
  height: 0;
  content: "";
  border-width: 7px 0 7px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #e49936;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .hd-2nd
  span
  i {
  margin-top: 0.2rem;
  margin-right: 0rem;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .tx {
  font-size: 1.5rem;
  line-height: 1.8;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  .tx:not(:last-child) {
  margin-bottom: 34px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  img {
  padding-bottom: 40px;
  width: 100%;
  height: auto;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  figure {
  padding-bottom: 40px;
  width: 100% !important;
  height: auto;
  font-size: 1rem;
  line-height: 1.2;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .article
  figure
  img {
  padding-bottom: 4px;
}

.marketingcity__single .content__sec .column__block .column__l .block .info {
  background: #fff;
  padding: 20px;
}

.marketingcity__single .content__sec .column__block .column__l .block .info dt {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 14px;
}

.marketingcity__single .content__sec .column__block .column__l .block .info dd {
  font-size: 1.5rem;
  line-height: 1.8;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .info
  dd:not(:last-child) {
  margin-bottom: 4px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .info
  dd
  a {
  text-decoration: underline;
}

.marketingcity__single .content__sec .column__block .column__l .block .cta {
  background: #fff;
  padding: 20px;
}

.marketingcity__single .content__sec .column__block .column__l .block .cta h4 {
  margin-bottom: 20px;
  line-height: 1.8;
  --font: 15;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .cta
  .table {
  margin-bottom: 30px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .cta
  .table
  .thumb {
  margin-bottom: 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .cta
  .table
  .thumb
  img {
  width: 100%;
  height: auto;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .cta
  .table
  .l {
  line-height: 1.8;
  --font: 14;
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

.marketingcity__single .content__sec .column__block .column__l .block .cta .r {
  --font: 15;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1.8;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .cta
  .r:not(:last-child) {
  margin-bottom: 12px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .cta
  .r:last-child {
  margin-bottom: 20px;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .cta
  .r.__b {
  font-weight: bold;
}

.marketingcity__single
  .content__sec
  .column__block
  .column__l
  .block
  .cta
  .button {
  width: 100%;
  height: 60px;
  color: #fff;
  font-weight: bold;
  background: #f39800;
  display: block;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  --font: 15;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  margin-top: 20px;
}

.marketingcity__single .content__sec .column__r .column__side-pickup {
  padding-bottom: 60px;
}

.marketingcity__single .content__sec.content__sec-inner {
  padding-top: 0px;
}

.loadEnd .column__list li.in-enter,
#marketingcity.loadEnd .column__list li.in-enter {
  transform: translateY(0);
  opacity: 1;
}

.corporate__top {
  position: relative;
}

.corporate__top-kv {
  position: absolute;
  margin-top: 160px;
}

.corporate__top-sec .title__block {
  margin: calc(100vw * (50 / var(--vw))) auto calc(100vw * (20 / var(--vw)));
  padding: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
}

.corporate__top-sec .title__block .arc__title {
  padding: calc(100vw * (4 / var(--vw))) 0 calc(100vw * (4 / var(--vw)));
}

.corporate__section {
  margin: 48px auto;
  margin-left: 6.3%;
  margin-right: 6.3%;
}

.corporate__bottom {
  margin: 0 auto;
  padding: calc(100vw * (100 / var(--vw))) 0;
}

.corporate__bottom__inner {
  width: calc(1280 / 1440 * 100%);
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.corporate__bottom__inner__link {
  background-color: #f5f5f5;
  border-radius: 12px;
  width: calc(33.3% - 36px);
  margin: 18px;
  padding: 0;
}

.corporate__bottom__inner__link img {
  width: 100%;
}

#company #main {
  border-bottom: 0;
  margin: 0;
  padding-bottom: 0;
}

#company .mv {
  padding-right: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#company .mv .mv__inner {
  height: 100%;
}

#company .mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#company .statement {
  padding: 60px 20px;
  position: relative;
  background-color: #f8f8f4;
  background-image: url(../images/map-sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#company .statement:before {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  background: #f8f8f4;
  position: absolute;
  top: -90px;
  left: 0;
}

#company .statement h2 .en {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 14px;
}

#company .statement h2 .ja {
  font-size: 2rem;
  margin-bottom: 40px;
}

#company .statement .tx {
  line-height: 1.8;
  font-size: 1.5rem;
  font-weight: bold;
}

#company .statement .ball {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 160px;
  right: 30px;
}

#company .statement .ball .ball__inner {
  position: relative;
}

#company .statement .ball span {
  display: block;
  width: 40px;
  height: 40px;
  background: #ea5514;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 40px;
  animation: circle 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

#company .statement .ball span:nth-of-type(2) {
  animation-delay: 0.2s;
}

#company .statement .ball span:nth-of-type(3) {
  animation-delay: 0.4s;
}

#company .statement .ball:nth-of-type(2) {
  top: 188px;
  right: 75px;
}

#company .statement .ball:nth-of-type(2) span {
  background: #f39800;
}

#company .statement .ball:nth-of-type(2) span:nth-of-type(1) {
  animation-delay: 0.05s;
}

#company .statement .ball:nth-of-type(2) span:nth-of-type(2) {
  animation-delay: 0.25s;
}

#company .statement .ball:nth-of-type(2) span:nth-of-type(3) {
  animation-delay: 0.45s;
}

#company section {
  margin: 0 20px;
}

#company section:not(:last-child) {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

#company section .sec__title {
  margin-bottom: 30px;
}

#company section .sec__title h3 .en {
  font-size: 2.8rem;
}

#company section .sec__title h3 .ja {
  font-size: 1.6rem;
}

#company section .sec__title h3 .ja .small {
  margin-top: 20px;
  font-size: 1.2rem;
}

#company #overview {
  padding-top: 45px;
}

#company #overview .block dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
}

#company #overview .block dl:not(:last-child) {
  margin-bottom: 14px;
}

#company #overview .block dl dt {
  width: calc(100vw * (140 / var(--vw)));
  font-weight: bold;
  line-height: 1.8;
}

#company #overview .block dl dd {
  width: calc(100vw * (220 / var(--vw)));
  line-height: 1.8;
}

#company #office ul li:not(:last-child) {
  margin-bottom: 40px;
}

#company #office ul li .office__pos {
  display: flex;
  align-items: baseline;
  margin-bottom: 6px;
}

#company #office ul li .office__pos .en {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 6px;
}

#company #office ul li .office__pos .ja {
  font-weight: bold;
  font-size: 1.2rem;
}

#company #office ul li .address {
  line-height: 1.8;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

#company #office ul li .maps__link {
  margin-bottom: 22px;
}

#company #office ul li .maps__link a {
  display: flex;
  align-items: center;
  color: #f29802;
  font-size: 1.4rem;
  transition: opacity 0.5s;
}

#company #office ul li .maps__link a .pin {
  display: block;
  margin-right: 6px;
}

#company #office .swiper {
  overflow: hidden;
}

#company #office .swiper .swiper-slide {
  margin-bottom: 0;
}

#company #office .swiper .swiper-slide img {
  width: 100%;
}

#company #office .swiper .swiper-wrapper {
  margin-bottom: 6px;
  height: auto !important;
}

#company #office .swiper .swiper-pagination {
  position: static;
  margin-left: 0;
  width: auto;
  text-align: left;
}

#company #office .swiper .swiper-pagination-bullet {
  border-radius: 0;
  width: 40px;
  height: 2px;
  opacity: 1;
  position: relative;
  overflow: hidden;
  background: #9a9a9a;
}

#company #office .swiper .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

#company #office .swiper .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f39800;
  transition: transform 0.4s;
  transform-origin: right;
  transform: scaleX(0);
}

#company #office .swiper .swiper-pagination-bullet-active:after {
  transform: scaleX(1);
  transform-origin: left;
}

#company #sales-growth .sec__title {
  margin-bottom: 0;
}

#company #our-client {
  padding-bottom: 50px;
}

#company #our-client ul {
  display: flex;
  flex-wrap: wrap;
}

#company #our-client ul li {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

#contact-page footer .cta {
  display: none;
}

#contact-page .content__sec {
  margin-bottom: 40px;
}

#contact-page .contact__head {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}

#contact-page .desc__block__inner {
  margin-bottom: 25px;
}

#contact-page .desc__block .l__1 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 22px;
  line-height: 1.8;
}

#contact-page .desc__block .l__2 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
}

#contact-page .desc__block .l__2:not(:last-child) {
  margin-bottom: 10px;
}

#contact-page .desc__block .l__2 a {
  color: #f29801;
}

#contact-page .desc__block .tel__btn {
  width: 320px;
  height: 100px;
  background: #ea5514;
  border-radius: 8px;
}

#contact-page .desc__block .tel__btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 0 40px;
}

#contact-page .desc__block .tel__btn .tx {
  text-align: left;
}

#contact-page .desc__block .tel__btn .tx span {
  display: block;
  line-height: 1;
}

#contact-page .desc__block .tel__btn .tx .small {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

#contact-page .desc__block .tel__btn .tx .num {
  font-weight: bold;
  font-size: 2.8rem;
}

#contact-page .form__wrap {
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  margin-bottom: 50px;
}

#contact-page .form__block .head {
  border-bottom: 1px solid #dddddd;
  background: #f8f8f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
}

#contact-page .form__block .head__inner {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}

#contact-page .form__block .head.mandatory .head__inner:after {
  content: "*";
  font-size: 1rem;
  color: #f29801;
}

#contact-page .form__block .input {
  border-bottom: 1px solid #dddddd;
  padding: 20px 25px;
}

#contact-page .form__block .input .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#contact-page .form__block .input .wpcf7-form-control-wrap.subject,
#contact-page .form__block .input .wpcf7-form-control-wrap.timing {
  justify-content: flex-start;
  align-items: flex-start;
}

#contact-page .form__block .input .wpcf7-form-control-wrap.timing {
  margin-bottom: 20px;
}

#contact-page .form__block .input .wpcf7-list-item {
  margin: 0;
}

#contact-page .form__block .input .wpcf7-radio .wpcf7-list-item {
  display: block;
}

#contact-page .form__block .input .wpcf7-radio .wpcf7-list-item:not(:last-child) {
  margin-bottom: 10px;
}

#contact-page .form__block .input .wpcf7-radio .wpcf7-list-item.first:before {
  content: "弊社への新規サービスのご提案";
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

#contact
  .form__block
  .input
  .wpcf7-radio
  .wpcf7-list-item:nth-of-type(4):before {
  content: "採用についての質問";
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 10px;
  margin-top: 20px;
}

#contact
  .form__block
  .input
  .wpcf7-radio
  .wpcf7-list-item:nth-of-type(7):before {
  content: "弊社への仕事のご依頼";
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 10px;
  margin-top: 20px;
}

#contact-page .form__block .input .wpcf7-radio input[type="radio"] {
  outline: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  top: 1px;
  margin-right: 8px;
  outline: none;
  border-radius: 20px;
  display: block;
}

#contact-page .form__block .input .wpcf7-radio input[type="radio"]:checked:after {
  content: "";
  position: absolute;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f29801;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#contact-page .form__block .input .wpcf7-radio .wpcf7-list-item-label {
  display: block;
  line-height: 1;
  font-size: 1.2rem;
}

#contact-page .form__block .input .wpcf7-radio label {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

#contact-page .form__block .input .wpcf7-radio label input {
  font-size: 1.4rem;
}

#contact-page .form__block .input .wpcf7-checkbox .wpcf7-list-item {
  display: block;
}

#contact-page .form__block .input .wpcf7-checkbox .wpcf7-list-item:not(:last-child) {
  margin-bottom: 10px;
}

#contact-page .form__block .input .wpcf7-checkbox input[type="checkbox"] {
  outline: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  top: 1px;
  margin-right: 8px;
  outline: none;
  display: block;
  background: #fff;
}

#contact
  .form__block
  .input
  .wpcf7-checkbox
  input[type="checkbox"]:checked:after {
  content: "✓";
  position: absolute;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f29801;
  font-weight: bold;
}

#contact-page .form__block .input .wpcf7-checkbox .wpcf7-list-item-label {
  display: block;
  line-height: 1;
  font-size: 1.2rem;
}

#contact-page .form__block .input .wpcf7-checkbox label {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

#contact-page .form__block .input .wpcf7-checkbox label input {
  font-size: 1.4rem;
}

#contact-page .form__block .input .other__wrap {
  margin: 0 8px;
}

#contact-page .form__block .input .other__wrap .other__tx {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #b5b5b5;
  margin-bottom: 10px;
}

#contact-page .form__block .input .other__wrap.inactive {
  pointer-events: none;
}

#contact-page .form__block .input .other__wrap.inactive input {
  background: #dedede;
}

#contact-page .form__block .input.privacy label {
  margin: 30px 25px;
  margin-left: 0px;
}

#contact-page .form__block .input.privacy label .wpcf7-form-control-wrap {
  background: #f4f4f4;
  font-weight: bold;
}

#contact-page .form__block .terms {
  padding: 30px 25px 0;
  height: 215px;
  overflow: hidden;
}

#contact-page .form__block .terms__inner {
  background: #f4f4f4;
  border: 1px solid #dddddd;
  padding: 16px 17px;
  overflow-y: scroll;
  height: 100%;
  font-size: 1.2rem;
  line-height: 1.8;
}

#contact-page .form__block [type="text"],
#contact-page .form__block [type="email"],
#contact-page .form__block [type="tel"],
#contact-page .form__block [type="url"],
#contact-page .form__block [name="textarea-856"] {
  border: 1px solid #b5b5b5;
  font-size: 1.6rem;
  width: 100%;
  height: 40px;
}

#contact-page .form__block [name="textarea-856"] {
  height: 200px;
}

#contact-page .submitbtn {
  position: relative;
}

#contact-page .submitbtn.submit__inactive {
  pointer-events: none;
}

#contact-page .submitbtn.submit__inactive input {
  background: #b5b5b5;
}

#contact-page .submitbtn input {
  width: 336px;
  height: 80px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  background: #f8b62d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.4s;
}

#contact-page .submitbtn:after {
  content: "";
  width: 14px;
  height: 5px;
  background: url(../images/ico-arrow.svg) no-repeat center/cover;
  display: block;
  position: absolute;
  top: 38px;
  right: 30px;
}

#contact-page .wpcf7-not-valid-tip {
  margin-top: 6px;
}

#contact-page .timing .wpcf7-not-valid-tip {
  margin-left: 10px;
}

#contact-page .wpcf7 form.invalid .wpcf7-response-output,
#contact-page .wpcf7 form.unaccepted .wpcf7-response-output,
#contact-page .wpcf7 form.failed .wpcf7-response-output,
#contact-page .wpcf7 form.aborted .wpcf7-response-output,
#contact-page .wpcf7 form.sent .wpcf7-response-output {
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #dc3232;
}

#contact-page .wpcf7 form.sent .wpcf7-response-output {
  color: #46b450;
}

#privacy-policy .article {
  padding: 0 20px;
  --bottom: 100;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#privacy-policy .article .block h4 {
  --font: 16;
  --bottom: 20;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  font-size: calc(100vw * (var(--font) / var(--vw)));
}

#privacy-policy .article .block:not(:last-child) {
  --bottom: 34;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#privacy-policy .article .block .tx__block {
  --font: 12;
  --bottom: 34;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1.8;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#privacy-policy .article .block .tx__block .tx:not(:last-child) {
  --bottom: 6;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#privacy-policy .article .block .tx__block .tx.indent {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

#privacy-policy .article .block .tx__block .tx.r {
  text-align: right;
}

#privacy-policy .article .block .table {
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  --bottom: 34;
  margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
}

#privacy-policy .article .block .table .col__l {
  display: flex;
}

#privacy-policy .article .block .table .col__l .col {
  width: 50%;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  --font: 12;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1.8;
  --tb: 14;
  --lr: 18;
  padding: calc(100vw * (var(--tb) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#privacy-policy .article .block .table .col__l .col.h {
  background: #f8f8f4;
}

.prvy {
  display: block;
}

.col__prv {
  display: flex;
}

.col.hs {
  width: 40%;
  background: #f8f8f4;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  --font: 12;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1.8;
  --tb: 14;
  --lr: 18;
  padding: calc(100vw * (var(--tb) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.col_p {
  width: 60%;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  --font: 12;
  font-size: calc(100vw * (var(--font) / var(--vw)));
  line-height: 1.8;
  --tb: 14;
  --lr: 18;
  padding: calc(100vw * (var(--tb) / var(--vw)))
    calc(100vw * (var(--lr) / var(--vw)));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.firstChild.lastChild.empty {
  margin: 0 auto;
  display: block;
}

.prvy_inf {
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  width: 100%;
  margin-left: 0;
  margin-top: 2em;
}

.table.inf {
  margin-bottom: 0;
}

.news__list li {
  border-bottom: 1px solid #dddddd;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(calc(100vw * (20 / var(--vw))));
  backface-visibility: hidden;
  position: relative;
}

.news__list li:nth-of-type(1) {
  transition-delay: 0.05s;
}

.news__list li:nth-of-type(2) {
  transition-delay: 0.1s;
}

.news__list li:nth-of-type(3) {
  transition-delay: 0.15s;
}

.news__list li:nth-of-type(4) {
  transition-delay: 0.2s;
}

.news__list li:nth-of-type(5) {
  transition-delay: 0.25s;
}

.news__list li:nth-of-type(6) {
  transition-delay: 0.3s;
}

.news__list li:nth-of-type(7) {
  transition-delay: 0.35s;
}

.news__list li:nth-of-type(8) {
  transition-delay: 0.4s;
}

.news__list li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform-origin: right;
  transform: scaleX(0);
}

.news__list li:first-child {
  border-top: 1px solid #dddddd;
}

.news__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10px;
  position: relative;
}

.news__list li .text__block {
  --w: 226;
  width: calc(100vw * (var(--w) / var(--vw)));
}

.news__list li .date {
  display: flex;
  align-items: center;
  color: #9a9a9a;
  line-height: 1;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.news__list li .date:before {
  content: "";
  width: 30px;
  height: 1px;
  background: #9a9a9a;
  margin-right: 5px;
}

.news__list li .title {
  font-size: 1.4rem;
  font-weight: bold;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news__list li .thumb {
  --w: 108;
  --h: 60;
  overflow: hidden;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news__list li .thumb__inner {
  width: 100%;
  height: 100%;
}

.news__list li .thumb__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__single {
  background: #f8f8f4;
}

.news__single .content__sec {
  padding: 0 0;
  padding-top: 125px;
}

.news__single .content__sec .bred__wrap {
  padding-right: 20px;
  margin-bottom: 24px;
}

.news__single .content__sec .news__single__wrap {
  margin-bottom: 40px;
}

.news__single .content__sec .arc__title {
  margin: 0 20px;
  margin-bottom: 40px;
}

.news__single .content__sec .arc__title .ja {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 20px;
  display: block;
}

.news__single .content__sec .arc__title h2 {
  font-size: 2rem;
}

.news__single .content__sec .mv {
  margin-bottom: 40px;
}

.news__single .content__sec .mv img {
  width: 100%;
}

.news__single .content__sec .single__contents__inner {
  margin: 0 20px;
  padding-top: 30px;
  border-top: 1px solid #dddddd;
}

.news__single .content__sec .single__contents__inner .block:not(:last-child) {
  margin-bottom: 30px;
}

.news__single .content__sec .single__contents__inner .block .image {
  margin-top: 5px;
}

.news__single
  .content__sec
  .single__contents__inner
  .block
  .image:not(:last-child) {
  margin-bottom: 15px;
}

.news__single .content__sec .single__contents__inner .block .image img {
  width: 100%;
  height: auto;
}

.news__single .content__sec .single__contents__inner .block .tx {
  line-height: 1.8;
  font-size: 1.5rem;
}

.news__single .content__sec .single__contents__inner .block .tx a {
  word-wrap: break-word;
  text-decoration: underline;
}

.news__single .content__sec .single__contents__inner img {
  height: auto;
}

.news__single #related {
  background: #fff;
  padding: 30px 20px;
}

.news__single #related .arc__title {
  margin: 0;
  margin-bottom: 20px;
}

.news__single #related .arc__title h3 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.1;
}

.news__single #related .news__list {
  margin-bottom: 30px;
}

.news__single #related .button.back {
  width: 190px;
  height: 50px;
  background: #151515;
  border-radius: 6px;
}

.news__single #related .button.back a,
.news__single #related .button.back span {
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  justify-content: center;
  position: relative;
}

.news__single #related .button.back a .tx,
.news__single #related .button.back span .tx {
  font-weight: bold;
  font-size: 1.2rem;
}

.news__single #related .button.back a .arrow,
.news__single #related .button.back span .arrow {
  width: 14px;
  height: 5px;
  position: absolute;
  top: 22px;
  left: 20px;
}

.news__single #related .button.back a .arrow img,
.news__single #related .button.back span .arrow img {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}

.loadEnd .news__list li.in-enter {
  opacity: 1;
  transform: translateY(0);
}

#consent-form .content__sec {
  margin-top: 40px;
  margin-bottom: 100px;
}

#consent-form .contact__head {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}

#consent-form .auth_form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0 auto;
  padding: 50px 10%;
  background-color: #f5f5f5;
  width: 100%;
}

#consent-form .auth_form .post_password {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}

#consent-form .auth_form .post_password-txt {
  margin: 0;
  padding: 0 0 10px;
  font-size: 1.4rem;
}

#consent-form .auth_form .post_password-input {
  margin: 10px 0;
  padding: 0 1em;
  border: 1px solid #b5b5b5;
  background-color: #fff;
  font-size: 1.6rem;
  width: 100%;
  height: 40px;
}

#consent-form .auth_form .post_password-submit {
  margin: 0;
  padding: 0;
  border: 0px solid #b5b5b5;
  background-color: #f8b62d;
  color: #fff;
  font-size: 1.4rem;
  width: 100%;
  height: 60px;
  border-radius: 6px;
}

#consent-form .desc__block__inner {
  margin-bottom: 25px;
}

#consent-form .desc__block .l__1 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 22px;
  line-height: 1.8;
}

#consent-form .desc__block .l__2 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
}

#consent-form .desc__block .l__2:not(:last-child) {
  margin-bottom: 10px;
}

#consent-form .desc__block .l__2 a {
  color: #f29801;
}

#consent-form .desc__block .tel__btn {
  width: 320px;
  height: 100px;
  background: #ea5514;
  border-radius: 8px;
}

#consent-form .desc__block .tel__btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 0 40px;
}

#consent-form .desc__block .tel__btn .tx {
  text-align: left;
}

#consent-form .desc__block .tel__btn .tx span {
  display: block;
  line-height: 1;
}

#consent-form .desc__block .tel__btn .tx .small {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

#consent-form .desc__block .tel__btn .tx .num {
  font-weight: bold;
  font-size: 2.8rem;
}

#consent-form .form__wrap {
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  margin-bottom: 50px;
}

#consent-form .form__block .head {
  border-bottom: 1px solid #dddddd;
  background: #f8f8f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
}

#consent-form .form__block .head__inner {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  text-align: center;
}

#consent-form .form__block .head.mandatory .head__inner:after {
  content: "*";
  font-size: 1rem;
  color: #f29801;
}

#consent-form .form__block .head__inner2 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  text-align: center;
}

#consent-form .form__block .head.mandatory .head__inner2:after {
  content: "";
  font-size: 1rem;
  color: #f29801;
}

#consent-form .form__block .head.mandatory .stxt {
  margin-top: 4px;
  margin-left: 8px;
  margin-right: 8px;
  font-size: 0.8rem;
}

#consent-form .form__block.term__wrap .terms .terms__block {
  margin-bottom: 4px;
}

#consent-form .form__block.term__wrap .terms .terms__block .terms__p {
  margin: 2px 0;
}

#consent-form .form__block.term__wrap .terms .terms__block .terms__list {
  margin-left: 1em;
}

#consent-form .form__block .input {
  border-bottom: 1px solid #dddddd;
  padding: 20px 25px;
}

#consent-form .form__block .input .mtxt {
  margin: 4px 8px 4px 0px;
  font-size: 1.2rem;
}

#consent-form .form__block .input .mtxt.mtxt-gr {
  color: #999;
}

#consent-form .form__block .input .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#consent-form .form__block .input .wpcf7-form-control-wrap.subject,
#consent-form .form__block .input .wpcf7-form-control-wrap.timing {
  justify-content: flex-start;
  align-items: flex-start;
}

#consent-form .form__block .input .wpcf7-form-control-wrap.timing {
  margin-bottom: 20px;
}

#consent-form .form__block .input .invoice-opt.inactive {
  pointer-events: none;
}

#consent-form .form__block .input .invoice-opt.inactive input {
  background: #dedede;
  color: #999;
}

#consent-form .form__block .input .invoice-opt.inactive select {
  background: #dedede;
  color: #999;
}

#consent-form .form__block .input .wpcf7-list-item {
  margin: 0;
}

#consent-form .form__block .input .select {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#consent-form .form__block .input .select select:nth-child(n + 2) {
  margin-left: 20px;
}

#consent-form .form__block .input .wpcf7-select {
  width: 100%;
  height: 40px;
  margin: 0;
  --right: 4;
  margin-right: calc(100vw * (var(--right) / var(--vw)));
  padding: 4px;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  font-size: 1.6rem;
}

#consent-form .form__block .input .wpcf7-select.w4em {
  width: 5em;
}

#consent-form .form__block .input .wpcf7-select.w2em {
  width: 3em;
}

#consent-form .form__block .input .wpcf7-radio.radio {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

#consent-form .form__block .input .wpcf7-radio .wpcf7-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#consent-form
  .form__block
  .input
  .wpcf7-radio
  .wpcf7-list-item:not(:last-child) {
  margin-bottom: 10px;
}

#consent-form .form__block .input .wpcf7-radio input[type="radio"] {
  outline: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  top: 1px;
  margin-right: 8px;
  outline: none;
  border-radius: 20px;
  display: block;
}

#consent-form
  .form__block
  .input
  .wpcf7-radio
  input[type="radio"]:checked:after {
  content: "";
  position: absolute;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f29801;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#consent-form .form__block .input .wpcf7-radio .wpcf7-list-item-label {
  display: block;
  line-height: 1;
  font-size: 1.2rem;
}

#consent-form .form__block .input .wpcf7-radio label {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

#consent-form .form__block .input .wpcf7-radio label input {
  font-size: 1.4rem;
}

#consent-form .form__block .input .wpcf7-checkbox .wpcf7-list-item {
  display: block;
}

#consent-form
  .form__block
  .input
  .wpcf7-checkbox
  .wpcf7-list-item:not(:last-child) {
  margin-bottom: 10px;
}

#consent-form .form__block .input .wpcf7-checkbox input[type="checkbox"] {
  outline: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  top: 1px;
  margin-right: 8px;
  outline: none;
  display: block;
  background: #fff;
}

#consent-form
  .form__block
  .input
  .wpcf7-checkbox
  input[type="checkbox"]:checked:after {
  content: "✓";
  position: absolute;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f29801;
  font-weight: bold;
}

#consent-form .form__block .input .wpcf7-checkbox .wpcf7-list-item-label {
  display: block;
  line-height: 1;
  font-size: 1.2rem;
}

#consent-form .form__block .input .wpcf7-checkbox label {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

#consent-form .form__block .input .wpcf7-checkbox label input {
  font-size: 1.4rem;
}

#consent-form .form__block .input .invoice__wrap {
  margin: 0 8px;
}

#consent-form .form__block .input .invoice__wrap .invoice__tx {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #b5b5b5;
  margin-bottom: 10px;
}

#consent-form .form__block .input .invoice__wrap.inactive {
  pointer-events: none;
}

#consent-form .form__block .input .invoice__wrap.inactive input {
  background: #dedede;
}

#consent-form .form__block .input.personal label {
  margin: 20px 25px 0px;
  margin-left: 0px;
}

#consent-form .form__block .input.personal label .wpcf7-form-control-wrap {
  padding-bottom: 20px;
  background: #f4f4f4;
  font-weight: bold;
}

#consent-form .form__block .input.pledge label {
  margin: 20px 25px 0px;
  margin-left: 0px;
}

#consent-form .form__block .input.pledge label .wpcf7-form-control-wrap {
  padding-bottom: 20px;
  background: #f4f4f4;
  font-weight: bold;
}

#consent-form .form__block .terms {
  padding: 30px 25px 0;
  height: 215px;
  overflow: hidden;
}

#consent-form .form__block .terms__inner {
  background: #f4f4f4;
  border: 1px solid #dddddd;
  padding: 16px 17px;
  overflow-y: scroll;
  height: 100%;
  font-size: 1.2rem;
  line-height: 1.8;
}

#consent-form .form__block [type="text"],
#consent-form .form__block [type="email"],
#consent-form .form__block [type="tel"],
#consent-form .form__block [type="url"],
#consent-form .form__block [name="textarea-856"] {
  border: 1px solid #b5b5b5;
  font-size: 1.6rem;
  width: 100%;
  height: 40px;
}

#consent-form .form__block [name="textarea-856"] {
  height: 200px;
}

#consent-form .submitbtn {
  position: relative;
}

#consent-form .submitbtn.submit__inactive {
  pointer-events: none;
}

#consent-form .submitbtn.submit__inactive input {
  background: #b5b5b5;
}

#consent-form .submitbtn input {
  --w: 236;
  --h: 60;
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  background: #f8b62d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.4s;
}

#consent-form .submitbtn:after {
  --w: 14;
  --h: 5;
  --right: 90;
  --top: 27;
  content: "";
  background: url(../images/ico-arrow.svg) no-repeat center/cover;
  display: block;
  position: absolute;
  top: calc(100vw * (var(--top) / var(--vw)));
  right: calc(100vw * (var(--right) / var(--vw)));
  width: calc(100vw * (var(--w) / var(--vw)));
  height: calc(100vw * (var(--h) / var(--vw)));
}

#consent-form .wpcf7-not-valid-tip {
  margin-top: 6px;
}

#consent-form .timing .wpcf7-not-valid-tip {
  margin-left: 10px;
}

#consent-form .wpcf7 form.invalid .wpcf7-response-output,
#consent-form .wpcf7 form.unaccepted .wpcf7-response-output,
#consent-form .wpcf7 form.failed .wpcf7-response-output,
#consent-form .wpcf7 form.aborted .wpcf7-response-output,
#consent-form .wpcf7 form.sent .wpcf7-response-output {
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #dc3232;
}

#consent-form .wpcf7 form.sent .wpcf7-response-output {
  color: #46b450;
}

#consent-form .wpcf7-submit {
  margin: 0 auto;
}

#consent-form .err-msg {
  text-align: center;
}

#consent-form .hide {
  display: none;
}

#consent-form.consent-form-company .form__block .head {
  background: #e6971880;
}

#consent-form.consent-form-company
  .form__block
  .head.mandatory
  .head__inner:after {
  content: "*";
  font-size: 1rem;
  color: #ff0000;
}

#consent-form.consent-form-influencer .form__block .head {
  background: #81d8d082;
}

#consent-form.consent-form-influencer
  .form__block
  .head.mandatory
  .head__inner {
  padding-top: 3px;
  padding-bottom: 3px;
}

#consent-form.consent-form-influencer
  .form__block
  .head.mandatory
  .head__inner:after {
  content: "*";
  font-size: 1rem;
  color: #ff0000;
}

#consent-form.consent-form-influencer
  .form__block
  .head.mandatory
  .head__inner2 {
  padding-top: 3px;
  padding-bottom: 3px;
}

#consent-form.consent-form-influencer
  .form__block
  .head.mandatory
  .head__inner2:after {
  content: "";
  font-size: 1rem;
  color: #ff0000;
}

#consent-form.consent-form-influencer .form__block .input .form__block-radio {
  margin: 0;
  padding: 0;
  width: 100%;
}

#consent-form.consent-form-influencer
  .form__block
  .input
  .form__block-radio
  .wpcf7-list-item {
  margin: 0;
}

#consent-form.consent-form-influencer
  .form__block
  .input
  .form__block-radio
  .wpcf7-list-item:first-child {
  margin-bottom: 2em;
}

#consent-form.consent-form-influencer .form__block .term__inner .terms {
  height: 115px;
}

#consent-form.consent-form-influencer-ver2 .form__block .head {
  background: #f39800;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .head.mandatory
  .head__inner {
  padding-top: 3px;
  padding-bottom: 3px;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .head.mandatory
  .head__inner:after {
  content: "*";
  font-size: 1rem;
  color: #ff0000;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .head.mandatory
  .head__inner2 {
  padding-top: 3px;
  padding-bottom: 3px;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .head.mandatory
  .head__inner2:after {
  content: "";
  font-size: 1rem;
  color: #ff0000;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .input
  .form__block-radio {
  margin: 0;
  padding: 0;
  width: 100%;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .input
  .form__block-radio
  .wpcf7-list-item {
  margin: 0;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .input
  .form__block-radio
  .wpcf7-list-item:first-child {
  margin-bottom: 2em;
}

#consent-form.consent-form-influencer-ver2 .form__block .term__inner .terms {
  height: 115px;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .term__inner
  .terms__inner {
  background: #f4f4f4;
  border: 1px solid #dddddd;
  padding: 16px 17px;
  overflow-y: scroll;
  height: 100%;
  font-size: 1.2rem;
  line-height: 1.8;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .term__inner
  .terms-noscr {
  padding: 30px 25px 0;
  height: auto;
}

#consent-form.consent-form-influencer-ver2
  .form__block
  .term__inner
  .terms-noscr__inner {
  background: #f4f4f4;
  border: 1px solid #dddddd;
  padding: 16px 17px;
  height: 100%;
  font-size: 1.2rem;
  line-height: 1.8;
}

#consent-form.consent-form-anthem .form__block .head {
  background: #fdf6ae;
}

#consent-form.consent-form-anthem .form__block .head.mandatory .head__inner {
  padding-top: 3px;
  padding-bottom: 3px;
}

#consent-form.consent-form-anthem
  .form__block
  .head.mandatory
  .head__inner:after {
  content: "*";
  font-size: 1rem;
  color: #ff0000;
}

#consent-form.consent-form-anthem
  .form__block
  .head.mandatory
  .head__inner.desc {
  line-height: 1.5;
}

#consent-form.consent-form-gift .form__block .head {
  background: #2eb1ffb8;
}

#consent-form.consent-form-gift
  .form__block
  .head.mandatory
  .head__inner:after {
  content: "*";
  font-size: 1rem;
  color: #ff0000;
}

.history__section {
  margin: 48px auto;
  margin-left: 6.3%;
  margin-right: 6.3%;
  position: relative;
}

.history__section:before {
  content: "";
  height: 100%;
  width: 2px;
  background-color: #efefef;
  position: absolute;
  top: 0;
  left: 0;
}

.history__section__year {
  font-family: "Heebo", sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #f39800;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: top left;
  background-color: #fff;
  padding-right: 10px;
}

.history__section__body {
  margin-bottom: 24px;
  display: flex;
}

.history__section__body__image {
  width: 324px;
}

.history__section__body__text h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.history__section__body__text p {
  font-size: 14px;
  line-height: 1.65;
}

.history__section__body__text a {
  color: #f39800;
  text-decoration: underline;
  word-break: break-all;
}

.history__bottom {
  background: linear-gradient(50deg, #ff4f00 0%, #f7b52c 100%);
  padding: 72px 0;
}

.history__bottom__inner {
  width: calc(1004 / 1280 * 100%);
  max-width: 1004px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.history__bottom__inner__link {
  background-color: #fff;
  border-radius: 12px;
  width: calc(33.3% - 16px);
  margin: 8px;
  padding: 48px 24px;
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  transition: color 0.2s ease-out;
}

.history__bottom__inner__link span {
  font-size: 36px;
}

.history__bottom__inner__link:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 16px);
  right: 24px;
  width: 32px;
  height: 32px;
  background: url(/wp-content/themes/nahato/assets/images/history/arrow-right.svg)
    no-repeat center center;
  background-size: contain;
  transition: 0.25s ease-out;
}

.history__bottom__inner__link:hover {
  color: #f39800;
}

.history__bottom__inner__link:hover:after {
  transform: translateX(10px);
}

/*.mon__top {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 56px 0 150px;
}

.mon__top__inner {
  margin: auto;
  margin-left: 6.3%;
  margin-right: 6.3%;
}

.mon__top h4 {
  color: #fff;
  font-size: 32px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  margin-bottom: 32px;
}

.mon__top ul {
  display: flex;
  justify-content: space-between;
}

.mon__top li {
  width: calc(25% - 8px);
  background-color: #fff;
  border-radius: 12px;
  padding: 36px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.mon__top li img {
  margin: 0 auto 30px;
  display: block;
}

.mon__top li span {
  font-size: 22px;
  color: #4561d6;
}

.mon__second {
  padding: 0 30px;
}

.mon__second h4 {
  font-size: 28px;
  font-weight: bold;
  padding: 56px 0 20px;
}

.mon__second ul {
  padding-bottom: 24px;
}

.mon__second ul li {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
}

.mon__second ul li span {
  color: #fd6904;
  padding-bottom: 12px;
}

.mon__third__block {
  margin: auto;
  padding: 20px 4% 80px;
}

.mon__third__block img {
  margin: auto;
  width: 100%;
}

.mon__forth {
  background: #efefea;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0 32px;
}

.mon__forth > div {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.5s ease-out;
}

.mon__forth > div.in-enter {
  opacity: 1;
  transform: translateY(0);
}

.mon__forth__video {
  text-align: center;
  margin: 32px auto;
}

.mon__fifth ul {
  display: flex;
}

.mon__fifth li {
  width: 50vw;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.1s ease-out;
}

.mon__fifth li:hover {
  opacity: 0.75;
}

.mon__fifth li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 48px 0;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.mon__fifth li a:hover .more img {
  transform: translateX(8px);
}

.mon__fifth li h4 {
  font-family: "Heebo", sans-serif;
  font-size: 48px;
}

.mon__fifth li h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 16px;
}

.mon__fifth li p {
  font-size: 14px;
  margin-bottom: 16px;
}

.mon__fifth li .more {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mon__fifth li .more img {
  margin-left: 16px;
  transition: 0.2s ease-out;
}*/

.mon__mv {
}

.mon__desc {
  padding:  48px 24px;
}

.mon__desc h4 {
  font-size: 32px;
  background: linear-gradient(90deg, #FFAA00 0%, #FF5307 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 24px;
}

.mon__desc h4 br {
  display: none;
}

.mon__desc__block:not(:last-child) {
  margin-bottom: 48px;
}

.mon__desc__block p {
  font-size: 14px;
}

.mon__strong {
  background: #F8F8F4;
  padding: 64px 40px;
  margin-bottom: 64px;
}

.mon__strong h4 {
  margin-bottom: 40px;
}

.mon__strong h4 img {
  margin: 0 auto;
}

.mon__strong__block {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.mon__strong__block .item {
  width: 100%;
  max-width: 400px;
  background: #fff;
  padding: 64px 24px 32px;
  position: relative;
  text-align: center;
}

.mon__strong__block .item .no {
  position: absolute;
  top:  0;
  left:  0;
}

.mon__strong__block .item .image {
  margin-bottom: 24px;
}

.mon__strong__block .item .image img {
  margin: 0 auto;
}

.mon__strong__block .item .title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
}

.mon__strong__block .item .text {
  font-size: 12px;
}

.mon__strong .accent {
  font-size: 24px;
  background: linear-gradient(90deg, #FFAA00 0%, #FF5307 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  font-weight: 900;
}

.mon__strong .accent span {
  font-size: 28px;
  display: block;
}

.mon__service {
  margin-bottom: 64px;
}

.mon__service .arc__title {
  margin-bottom: 40px;
  text-align: center;
}

.mon__service .arc__title h4 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.1;
  position: relative;
}

.mon__service .arc__title .ja {
  font-weight: bold;
  font-size: 1.6rem;
}

.mon__service .arc__title .ex-line-chead {
  display: block;
  margin: 4px auto 8px;
  background-color: #f39800;
  width: calc(100vw * (300 / 1366));
  height: 3px;
}

.mon__service__list {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
  padding: 0 24px;
}

.mon__service__list .parent {
  width: 300px;
  min-width: 300px;
}

.mon__service__list .parent .box {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(30px);
}

.mon__service__list .parent.in-enter .box {
  opacity: 1;
  transform: translateY(0);
}

.mon__service__list .parent .box:hover {
  opacity: 0.7;
}

.mon__service__list .parent .box .image {
  overflow: hidden;
}

.mon__service__list .parent .box .image img {
  transition: all 0.3s;
}

.mon__service__list .parent .box .content {
  background: #f8f8f4;
  padding: 12px 16px 24px;
  width: 100%;
}

.mon__service__list .parent .box .content .title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.mon__service__list .parent .box .content .title .num {
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
  color: #fb9e17;
}

.mon__service__list .parent .box .content .title h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.mon__service__list .parent .box .content .text {
  font-size: 12px;
  color: #7b7b7b;
  padding-right: 40px;
  position: relative;
}

.mon__service__list .parent .box .content .text .arrow {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 0;
  background: #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 9px 12px;
}

.interview__index {
  max-width: 1280px;
  width: calc(100% - 12.6%);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

.interview__index__list {
  width: calc(33.3% - 16px);
  margin: 8px;
}

.interview__index__list__thumb {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.interview__index__list__thumb::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(230 / 410 * 100%);
}

.interview__index__list__thumb img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.25s ease-out;
}

.interview__index__list__text__title {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: 0.2s ease-out;
}

.interview__index__list__text__subtitle {
  font-size: 15px;
}

.interview__index__list__text__more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  padding-right: 15px;
  margin-top: 16px;
  transition: 0.2s ease-out;
}

.interview__index__list__text__more img {
  margin-left: 10px;
}

.interview__index__list a:hover h4,
.interview__index__list a:hover .interview__index__list__text__more {
  color: #f39800;
}

.interview__index__list a:hover .interview__index__list__thumb img {
  transform: scale(1.1);
}

.interview__single__inner {
  margin-top: 80px;
}

.interview__single__share {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}

.interview__single__share__list {
  margin-bottom: 10px;
}

.interview__single__share__list.text {
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  font-weight: bold;
  transform: rotate(90deg) translateX(-10px);
  transform-origin: top;
}

.interview__single__contents__top {
  margin-bottom: 60px;
}

.interview__single__contents__top img {
  width: 100vw;
  height: 480px;
  object-fit: cover;
  margin-bottom: 48px;
}

.interview__single__contents__top h2,
.interview__single__contents__top h3 {
  width: calc(684 / 1280 * 100%);
  margin: auto;
}

.interview__single__contents__top h2 {
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 28px;
}

.interview__single__contents__top h3 {
  font-size: 24px;
  margin-bottom: 60px;
}

.interview__single__contents__top p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 1280px;
  width: calc(684 / 1280 * 100%);
  margin: auto;
}

.interview__single__contents__top .i_date {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: right;
  color: #606060;
}

.interview__single__contents__top-dialogue {
  margin-bottom: 60px;
}

.interview__single__contents__top-dialogue-image img {
  width: 100vw;
  margin-bottom: 24px;
}

.interview__single__contents__top-dialogue h2,
.interview__single__contents__top-dialogue h3 {
  width: 920px;
  margin-left: 6.3%;
}

.interview__single__contents__top-dialogue h2 {
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 28px;
}

.interview__single__contents__top-dialogue h3 {
  font-size: 24px;
  margin-bottom: 60px;
}

.interview__single__contents__top-dialogue p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 1280px;
  width: calc(684 / 1280 * 100%);
  margin: auto;
}

.interview__single__contents__main-dialogue {
  font-family: "Heebo", sans-serif;
}

.interview__single__contents__main-dialogue .dialogue__block {
  max-width: 1320px;
  width: calc(724 / 1280 * 100%);
  margin: auto;
  padding: 20px 0;
}

.interview__single__contents__main-dialogue .dialogue__block img {
  width: 5vw;
  min-width: 44px;
  height: auto;
  border-radius: 50%;
}

.interview__single__contents__main-dialogue .dialogue__block .dialogue__name {
  display: flex;
  align-items: start;
  margin: 0 1%;
  font-size: 14px;
}

.interview__single__contents__main-dialogue .dialogue__block .dialogue__q {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  margin: 2% 0 0;
}

.interview__single__contents__main-dialogue .dialogue__block .dialogue__q i {
  font-size: 20px;
  color: #f39800;
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__q
  .dialogue__q-txt {
  margin-left: 4px;
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-l {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  margin-top: calc(-5% + 5px);
  margin-left: calc(10% + 10px);
  padding: 16px;
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-l::before,
.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-l::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 16px 10px 0px;
  position: absolute;
  top: calc(8%);
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-l::before {
  border-color: transparent #ddd transparent transparent;
  left: -16px;
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-l::after {
  border-color: transparent #fff transparent transparent;
  left: -14px;
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-r {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  margin-top: calc(-5% + 5px);
  margin-right: calc(10% + 10px);
  padding: 16px;
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-r::before,
.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-r::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0px 10px 16px;
  position: absolute;
  top: calc(8%);
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-r::before {
  border-color: transparent transparent transparent #ddd;
  right: -16px;
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text.bubble-r::after {
  border-color: transparent transparent transparent #fff;
  right: -14px;
}

.interview__single__contents__main-dialogue .dialogue__block .dialogue__text p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 1320px;
  width: calc(100%);
  margin: 0 auto 1.6%;
}

.interview__single__contents__main-dialogue
  .dialogue__block
  .dialogue__text
  .marker {
  background: linear-gradient(transparent 82%, #ffe400 0%);
}

.interview__single__contents__main-dialogue .dialogue__block-img {
  max-width: 1320px;
  width: calc(724 / 1280 * 100%);
  margin: auto;
  padding: 40px 0;
}

.interview__single__contents__main-dialogue .dialogue__block-img img {
  width: 100vw;
}

.interview__single__contents__main-dialogue .dialogue__p-l {
  display: flex;
  padding: 20px 0 0px;
}

.interview__single__contents__main-dialogue .dialogue__p-l img {
  border-radius: 50%;
}

.interview__single__contents__main-dialogue .dialogue__p-r {
  display: flex;
  flex-direction: row-reverse;
  padding: 20px 0 0px;
}

.interview__single__contents__main-dialogue .dialogue__p-r img {
  border-radius: 50%;
}

.interview__single__contents__main-dialogue .dialogue__profile {
  margin: 80px auto 60px;
  padding: 10px 30px;
  max-width: 1360px;
  width: calc(784 / 1280 * 100%);
  background-color: #fafafa;
}

.interview__single__contents__main-dialogue .dialogue__profile img {
  width: 5vw;
  min-width: 72px;
  height: auto;
  border-radius: 50%;
}

.interview__single__contents__main-dialogue .dialogue__profile-l {
  width: auto;
}

.interview__single__contents__main-dialogue .dialogue__profile-r {
  margin-left: 2%;
}

.interview__single__contents__main-dialogue .dialogue__profile-name {
  display: flex;
  align-items: baseline;
}

.interview__single__contents__main-dialogue .dialogue__profile-name_ja {
  font-size: 16px;
  font-weight: bold;
}

.interview__single__contents__main-dialogue .dialogue__profile-name_en {
  font-size: 10px;
  margin-left: 2%;
  color: #555;
}

.interview__single__contents__main-dialogue .dialogue__profile-text {
  font-size: 13px;
  line-height: 1.75;
}

.interview__single__contents__main-dialogue .dialogue__profile__block {
  display: flex;
  padding: 20px 0;
}

.interview__single__contents__textarea {
  max-width: 1280px;
  width: calc(684 / 1280 * 100%);
  margin: 60px auto;
}

.interview__single__contents__textarea .q {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 28px;
}

.interview__single__contents__textarea .a {
  font-size: 14px;
  line-height: 1.75;
}

.interview__single__contents__image {
  max-width: 1440px;
  width: calc(834 / 1280 * 100%);
  margin: 60px auto;
}

.interview__single__contents__info {
  max-width: 1440px;
  width: calc(834 / 1280 * 100%);
  margin: 60px auto;
  background-color: #efefef;
  border-radius: 12px;
  padding: 3.6%;
  display: flex;
  justify-content: space-between;
}

.interview__single__contents__info__col:first-child {
  margin-right: 20px;
}

.interview__single__contents__info__col .thumb {
  width: 214px;
  height: 214px;
  object-fit: cover;
  border-radius: 12px;
}

.interview__single__contents__info__col:last-child {
  width: calc(100% - 214px - 30px);
}

.interview__single__contents__info__col:last-child h3 {
  font-size: 20px;
}

.interview__single__contents__info__col:last-child p {
  font-size: 14px;
  line-height: 1.75;
}

.interview__single__contents__info__col ul {
  display: flex;
  margin-top: 30px;
}

.interview__single__contents__info__col li {
  height: 32px;
  margin-right: 15px;
}

.p-philosophy__mission {
  position: relative;
  margin-top: -100px;
  z-index: 1;
}

.p-philosophy__mission__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 344px;
}

.p-philosophy__mission__title.in-enter {
  animation: mask 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.p-philosophy__keyword {
  margin-top: -200px;
  margin-bottom: -200px;
  padding: 300px 0;
  background: linear-gradient(45deg, #fdfdfa, #e6e6e6);
  clip-path: polygon(0 0, 100% 200px, 100% 100%, 0 calc(100% - 200px));
}

.p-philosophy__keyword__row {
  max-width: 1280px;
  margin: auto;
  padding: 0 36px;
  display: flex;
  justify-content: space-between;
}

.p-philosophy__keyword__col {
  flex: 1;
  word-wrap: break-word;
  min-width: 0;
  width: 33.3%;
  opacity: 0;
  position: relative;
  padding-left: 30px;
  transition: 0.25s ease-out;
}

.p-philosophy__keyword__col p {
  display: flex;
  align-items: center;
  color: #fd6904;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-top: 4px;
  margin-bottom: 4px;
}

.p-philosophy__keyword__col p:after {
  content: "";
  flex-grow: 1;
  height: 0.75px;
  background: #fd6904;
  display: block;
  margin-left: 0.75em;
}

.p-philosophy__keyword__col h4 {
  font-size: 32px;
  color: #fd6904;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.p-philosophy__keyword__col ul li {
  position: relative;
  padding-left: 1em;
  font-size: calc(100vw * (15 / 1366));
  font-weight: bold;
  margin-bottom: 12px;
}

.p-philosophy__keyword__col ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.5em;
  width: calc(100vw * (8 / 1366));
  height: calc(100vw * (8 / 1366));
  border-radius: 0%;
  background: #fd6904;
}

.p-philosophy__keyword__col.in-enter {
  opacity: 1;
}

.p-philosophy__statement {
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
  padding-top: 120px;
  text-align: center;
}

.p-philosophy__statement__title {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1em;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: calc(100vw * (38 / 1366));
  background-image: linear-gradient(90deg, #fd8006, #fd6a06);
}

.p-philosophy__statement__title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 10px solid #fd7406;
}

.p-philosophy__statement__title.in-enter {
  animation: mask 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.p-philosophy__statement p {
  font-size: calc(100vw * (34 / 1366));
  letter-spacing: 0.1rem;
  line-height: 2;
}

.p-philosophy__statement p span {
  color: #fd6904;
  font-weight: bold;
}

.p-philosophy__statement.bg-g {
  z-index: 0;
  margin-top: -200px;
  margin-bottom: -50px;
  padding: 210px 0 180px;
  background: linear-gradient(45deg, #fdfdfa, #e6e6e6);
  clip-path: polygon(0 0, 100% 200px, 100% 100%, 0 calc(100% - 200px));
}

.p-philosophy__vision {
  position: relative;
  z-index: 1;
  margin-top: -100px;
}

.p-philosophy__vision__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 344px;
}

.p-philosophy__vision__title.in-enter {
  animation: mask 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.p-philosophy__point {
  margin-top: -200px;
  margin-bottom: -200px;
  padding: 210px 0 180px;
  background: linear-gradient(45deg, #fdfdfa, #e6e6e6);
  clip-path: polygon(0 0, 100% 200px, 100% 100%, 0 calc(100% - 200px));
}

.p-philosophy__point ul {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.p-philosophy__point ul li {
  display: inline-block;
  font-size: 28px;
  margin: 32px;
  font-weight: bold;
  opacity: 0;
}

.p-philosophy__point ul li.in-enter {
  animation: mask 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.p-philosophy__keyword2 {
  margin-top: -200px;
  margin-bottom: -200px;
  padding: 210px 0 180px;
  background: linear-gradient(45deg, #fdfdfa, #e6e6e6);
  clip-path: polygon(0 0, 100% 200px, 100% 100%, 0 calc(100% - 200px));
}

.p-philosophy__keyword2 ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-philosophy__keyword2 ul li {
  display: inline-block;
  font-size: 28px;
  margin-bottom: 32px;
  font-weight: bold;
  opacity: 0;
}

.p-philosophy__keyword2 ul li.in-enter {
  animation: mask 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.p-philosophy__value {
  position: relative;
  margin-top: -100px;
  z-index: 1;
}

.p-philosophy__value h3 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: calc(100vw * (120 / 1366)) auto 0px;
  font-family: "Lexend Peta", sans-serif;
  letter-spacing: -0.25rem;
  font-size: 48px;
  color: #fff;
}

.p-philosophy__value__container {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
  margin: calc(100vw * (150 / 1366)) auto 30px;
  padding: 0 60px;
  width: 100%;
  max-width: 1180px;
}

.p-philosophy__value__block {
  text-align: center;
}

.p-philosophy__value__block h4 {
  display: flex;
  align-items: center;
  margin-top: calc(100vw * (80 / 1366));
  margin-bottom: calc(100vw * (28 / 1366));
  letter-spacing: 0rem;
  font-size: calc(100vw * (20 / 1366));
  color: #fff;
}

.p-philosophy__value__block h4:before,
.p-philosophy__value__block h4:after {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: #fff;
}

.p-philosophy__value__block h4:before {
  margin-right: 1rem;
}

.p-philosophy__value__block h4:after {
  margin-left: 1rem;
}

.p-philosophy__value__block__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-philosophy__value__block__item {
  margin: 0 calc(100vw * (10 / 1366));
  padding: calc(100vw * (28 / 1366)) calc(100vw * (28 / 1366));
  width: 46%;
  background-color: #fff;
  text-align: left;
}

.p-philosophy__value__block__item-title {
  color: #fd6904;
  font-size: calc(100vw * (36 / 1366));
  font-weight: bold;
}

.p-philosophy__value__block__item-title::first-letter {
  font-size: calc(100vw * (54 / 1366));
}

.p-philosophy__value__block__item p {
  font-size: calc(100vw * (20 / 1366));
  font-weight: bold;
}

.p-philosophy__promise {
  margin: auto;
  max-width: 1004px;
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.p-philosophy__promise h4 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 28px;
}

.p-philosophy__promise h4 span {
  display: block;
  font-size: 14px;
}

.p-philosophy__promise h5 {
  font-size: 36px;
  margin: 0 auto 16px;
}

.p-philosophy__promise h5 span {
  color: #fd6904;
  font-size: 26px;
}

.p-philosophy__promise h5 + p {
  font-size: 14px;
}

.p-philosophy__socialgood {
  margin: auto;
  max-width: 1004px;
  padding: 50px 0;
  border-bottom: 1px solid #ccc;
}

.p-philosophy__socialgood h4 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 28px;
}

.p-philosophy__socialgood h4 span {
  display: block;
  font-size: 14px;
}

.p-philosophy__socialgood__row {
  display: flex;
}

.p-philosophy__socialgood__col {
  width: 50%;
  display: flex;
  align-items: center;
  font-size: 24px;
}

.p-philosophy__socialgood__col span {
  color: #fd6904;
}

.p-philosophy__socialgood__col img {
  margin-right: 24px;
}

.p-philosophy__socialgood__col p {
  margin: 0;
}

.p-philosophy__policy {
  margin: auto;
  max-width: 1004px;
  padding: 50px 0 0;
}

.p-philosophy__policy h4 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 28px;
}

.p-philosophy__policy h4 span {
  display: block;
  font-size: 14px;
}

.p-philosophy__policy__row {
  display: flex;
  justify-content: space-between;
}

.p-philosophy__policy__col {
  background-color: #efefea;
  width: calc(25% - 4px);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  position: relative;
}

.p-philosophy__policy__col::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 32px solid transparent;
  border-bottom: 32px solid #fff;
}

.p-philosophy__policy__col span {
  color: #fd6904;
}

.p-philosophy__policy__col img {
  margin-right: 24px;
}

.p-philosophy__policy__col p {
  margin: 0;
}

.p-philosophy__relation {
  padding: 50px 0;
}

.p-philosophy__relation h4 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 28px;
}

.p-philosophy__relation img {
  margin: auto;
}

.p-philosophy__relation img.is-pc {
  width: 724px;
}

.p-philosophy__relation img.is-sp {
  width: calc(100% - 48px);
}

.p-philosophy__bottom {
  background: linear-gradient(50deg, #ff4f00 0%, #f7b52c 100%);
  padding: 72px 0;
}

.p-philosophy__bottom__inner {
  width: calc(1004 / 1280 * 100%);
  max-width: 1004px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.p-philosophy__bottom__inner__link {
  background-color: #fff;
  border-radius: 12px;
  width: calc(33.3% - 16px);
  margin: 8px;
  padding: 48px 24px;
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  transition: color 0.2s ease-out;
}

.p-philosophy__bottom__inner__link span {
  font-size: 36px;
}

.p-philosophy__bottom__inner__link:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 16px);
  right: 24px;
  width: 32px;
  height: 32px;
  background: url(/wp-content/themes/nahato/assets/images/history/arrow-right.svg)
    no-repeat center center;
  background-size: contain;
  transition: 0.25s ease-out;
}

.p-philosophy__bottom__inner__link:hover {
  color: #f39800;
}

.p-philosophy__bottom__inner__link:hover:after {
  transform: translateX(10px);
}

@keyframes mask {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.casestudy2__index {
  max-width: 1280px;
  width: calc(100% - 12.6%);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

.casestudy2__index__list {
  width: calc(33.3% - 16px);
  margin: 24px 8px;
}

.casestudy2__index__list__thumb {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.casestudy2__index__list__thumb::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(200 / 410 * 100%);
}

.casestudy2__index__list__thumb img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.25s ease-out;
}

.casestudy2__index__list__text__title {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: 0.2s ease-out;
}

.casestudy2__index__list__text__subtitle {
  font-size: 15px;
}

.casestudy2__index__list__text__more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  padding-right: 15px;
  margin-top: 16px;
  transition: 0.2s ease-out;
}

.casestudy2__index__list__text__more img {
  margin-left: 10px;
}

.casestudy2__index__list a:hover h4,
.casestudy2__index__list a:hover .interview__index__list__text__more {
  color: #f39800;
}

.casestudy2__index__list a:hover .interview__index__list__thumb img {
  transform: scale(1.1);
}

.casestudy2__single .ez-toc-counter {
  width: 100% !important;
  background-color: #fff !important;
  padding: 20px !important;
}

.casestudy2__single .ez-toc-title {
  font-size: 20px !important;
  font-weight: bold !important;
  margin-bottom: 1ch;
}

.casestudy2__single .ez-toc-list li {
  font-size: 16px !important;
}

.casestudy2__single__inner {
  margin-top: 100px;
}

.casestudy2__single__contents {
  max-width: 686px;
  width: calc(100% - 32px);
  margin: auto;
}

.casestudy2__single__contents__top {
  margin-bottom: 60px;
}

.casestudy2__single__contents__top h2 {
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 28px;
}

.casestudy2__single__contents__top p {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 30px;
}

.casestudy2__single__contents__top__table {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  margin-top: 20px;
}

.casestudy2__single__contents__top__table h3 {
  padding-bottom: 10px;
  font-size: 20px;
}

.casestudy2__single__contents__top__table li {
  line-height: 2;
  font-size: 14px;
}

.casestudy2__single__contents__top__table a {
  color: #e95512;
}

.casestudy2__single__contents__top__table span {
  padding-right: 10px;
}

.casestudy2__single__contents__body h2 {
  font-size: 28px;
  margin: 2ch auto 1ch;
}

.casestudy2__single__contents__body h3 {
  font-size: 20px;
  margin: 2ch auto 1ch;
}

.casestudy2__single__contents__body p {
  font-size: 14px;
  margin: 4ch auto;
  line-height: 1.75;
}

.casestudy2__single__contents__body img,
.casestudy2__single__contents__body figure {
  max-width: 100% !important;
  width: 100%;
  height: auto;
}

.casestudy2__single__contents__body img figcaption,
.casestudy2__single__contents__body figure figcaption {
  text-align: center;
  font-size: 14px;
}

.casestudy2__single__contents__body figure {
  margin: 48px auto;
}

.casestudy2__single__contents__body img {
  margin-bottom: 16px;
}

.casestudy2__single__contents__images img {
  width: 100%;
  margin: 0 auto;
}

.casestudy2__single__contents__info {
  margin: 60px auto;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 3.6%;
  display: flex;
  justify-content: space-between;
}

.casestudy2__single__contents__info__col:first-child {
  margin-right: 20px;
}

.casestudy2__single__contents__info__col .thumb {
  max-width: 280px;
}

.casestudy2__single__contents__info__col:last-child {
  width: calc(100% - 214px - 30px);
}

.casestudy2__single__contents__info__col:last-child h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.casestudy2__single__contents__info__col:last-child p {
  font-size: 14px;
  line-height: 1.75;
}

.casestudy2__single__contents__info__col:last-child a {
  color: #e95512;
}

.casestudy2__single__contents__other {
  margin-bottom: 50px;
}

.casestudy2__single__contents__other__link:hover
  .casestudy2__single__contents__other__title {
  color: #f39800;
}

.casestudy2__single__contents__other h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1ch;
}

.casestudy2__single__contents__other__thumb {
  margin-bottom: 16px;
  border-radius: 12px;
}

.casestudy2__single__contents__other__title {
  transition: 0.15s ease-out;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.casestudy2__single__contents__other__more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

.casestudy2__single__contents__other__more img {
  margin-left: 10px;
}

#clipbord-msg {
    width: 100%;
    position: fixed;
    bottom: -190px;
    left: 0;
    z-index: 999999;
	-webkit-transition: bottom 0.5s;
    transition: bottom 0.5s;
	cursor: pointer;
}
#clipbord-msg .msg {
    width: fit-content;
    padding: 12px 32px;
	font-size: 16px;
	background: #333;
    border-radius: 100px;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 auto;
}
#clipbord-msg.copySuccess,
#clipbord-msg.copyError {
    bottom: 56px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media only screen and (min-width: 768px) {
  :root {
    --vw: 1366;
    --vh: 768;
  }

  .is-sp {
    display: none;
  }

  .is-pc {
    display: block;
  }

  .br-sp {
    display: none;
  }

  .br-pc {
    display: block;
  }

  .content__sec {
    padding: 0 calc(100vw * (86 / 1366));
    padding-top: calc(100vw * (140 / 1366));
  }

  .content__sec .bred__wrap {
    margin-bottom: calc(100vw * (0 / 1366));
  }

  .content__sec .arc__title {
    margin-bottom: calc(100vw * (80 / 1366));
  }

  .content__sec .arc__title h3 {
    font-size: calc(100vw * (87 / 1366));
  }

  .content__sec .arc__title .ja {
    font-size: calc(100vw * (16 / 1366));
  }

  .typo {
    height: auto;
  }

  .typo span[data-splitting] {
    font-size: calc(100vw * (180 / 1366));
    padding-top: calc(100vw * (120 / 1366));
  }

  .button.viewmore:hover:before {
    transform-origin: left;
    transform: scaleX(1);
  }

  .pagenation {
    margin-top: calc(100vw * (70 / 1366));
    margin-bottom: calc(100vw * (130 / 1366));
  }

  .pagenation .page-numbers {
    width: calc(100vw * (40 / 1366));
    height: calc(100vw * (40 / 1366));
    margin: 0 calc(100vw * (10 / 1366));
    font-size: calc(100vw * (30 / 1366));
  }

  .pagenation .next,
  .pagenation .prev {
    width: auto;
    height: auto;
    font-size: calc(100vw * (16 / 1366));
  }

  .pagenation .next {
    margin-left: calc(100vw * (50 / 1366));
  }

  .pagenation .next:after {
    width: calc(100vw * (15 / 1366));
    height: calc(100vw * (5 / 1366));
    margin-left: calc(100vw * (10 / 1366));
  }

  .pagenation .prev {
    margin-right: calc(100vw * (50 / 1366));
  }

  .pagenation .prev:before {
    width: calc(100vw * (15 / 1366));
    height: calc(100vw * (5 / 1366));
    margin-right: calc(100vw * (10 / 1366));
  }

  .notfound__wrap h2 {
    --size: 90;
    padding-top: calc(100vw * (20 / var(--vw)));
  }

  .notfound__wrap .back:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #f39800;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
    transform: scaleX(0);
    position: absolute;
    top: 0;
    left: 0;
  }

  .notfound__wrap .back:hover:before {
    transform: scaleX(1);
    transform-origin: right;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: #fff;
  }

  header .header__inner {
    padding: 36px 25px;
  }

  header h1 {
    width: 133px;
    height: 38px;
  }

  header .header__logo {
    width: 133px;
    height: 38px;
  }

  header nav {
    transform: translateY(0%);
    height: auto;
    position: static;
    pointer-events: auto;
    background: none;
    width: auto;
    margin-right: 30px;
    overflow: visible;
  }

  header nav .nav__inner {
    transform: translateY(0%);
    overflow: visible;
    height: auto;
    padding: 0;
  }

  header nav .parents {
    border: 1px solid #ff0000;
    border: 0;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    background: #fff;
    padding: 14px 40px 0 0px;
    border-radius: 50px;
    box-shadow: 0px 3px 20px -8px rgba(0, 0, 0, 0);
    transition: box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  }

  header nav .parents > li {
    padding-bottom: 14px;
  }

  header nav .parents > li:not(:last-child) {
    margin-bottom: 0;
    margin-right: calc(100vw * (34 / 1366));
  }

  header nav .parents > li .case a,
  header nav .parents > li .case .extra {
    transform: translateY(0);
    opacity: 1;
    padding-top: 10px;
  }

  header nav .parents > li .case a {
    transition: color 0.3s;
  }

  header nav .parents > li .case a:hover {
    color: #f39800;
  }

  header nav .parents > li .f-en {
    font-size: 1.4rem;
    margin: 0;
  }

  header nav .parents > li .f-ja {
    display: none;
  }

  header nav .parents > li .f-img {
    position: relative;
    top: -3px;
    margin: 0px 0px 0px;
    width: 100px;
    height: auto;
  }

  header nav .parents > li:nth-of-type(2) a {
    pointer-events: none;
  }

  header nav .child {
    position: absolute;
    top: 20px;
    left: -24px;
    padding-top: 5px;
    pointer-events: none;
    transition: box-shadow 0.3s 0.2s;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  }

  header nav .child ul {
    /*padding: 40px 20px 24px;
    width: 220px;
    box-sizing: content-box;
    position: relative;
    overflow: hidden;
    border-radius: 12px;*/
    padding: 40px 20px 24px;
    width: 220px;
    box-sizing: content-box;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    height: 135px;
    flex-flow: column wrap;
    width: 360px;
  }

  header nav .child ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    transform-origin: top;
    transform: scaleY(0);
  }

  header nav .child li .case__2 a {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
      transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }

  header nav .dropdown {
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
  }

  header nav .dropdown .ex-line {
    position: absolute;
    z-index: 2;
    left: 45px;
    display: inline-block;
    margin-top: 10px;
    width: 2px;
    height: 16px;
    background-color: #ffffff;
    transition: background-color 0.6s;
  }

  header nav .dropdown:hover {
    color: #f39800;
  }

  header nav .dropdown:hover .child {
    pointer-events: auto;
  }

  header nav .dropdown:hover .child .ex-line {
    background-color: #f39800;
    transition: background-color 1.2s;
  }

  header nav .dropdown:hover .child ul:before {
    transform: scaleY(1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  header nav .dropdown:hover .child ul .case__2 a {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  header nav .dropdown:hover .child ul .case__2 a:hover:before {
    background: #f39800;
  }

  header nav .dropdown:hover .child ul .case__2 a:hover .f-en {
    color: #f39800;
  }

  header nav .sub {
    display: none;
  }

  #service.marketing-of-nahato
    header
    nav
    .parents
    > li:nth-of-type(2)
    .child
    li
    a:hover
    .f-en {
    color: #f39800;
  }

  #service.influencer-marketing
    header
    nav
    .parents
    > li:nth-of-type(2)
    .child
    li
    a:hover
    .f-en {
    color: #f39800;
  }

  #service.digital-marketing
    header
    nav
    .parents
    > li:nth-of-type(2)
    .child
    li
    a:hover
    .f-en {
    color: #f39800;
  }

  #service.web-infrastructure
    header
    nav
    .parents
    > li:nth-of-type(2)
    .child
    li
    a:hover
    .f-en {
    color: #f39800;
  }

  #contact-page header nav .parents > li:nth-of-type(7) .f-en,
  #contact-page header nav .parents > li:nth-of-type(7) .f-ja {
    color: #f39800;
  }

  footer {
    padding: calc(100vw * (75 / 1366)) calc(100vw * (45 / 1366));
  }

  footer .cta {
    border-bottom: 1px solid #848484;
    display: flex;
    justify-content: center;
  }

  footer .cta .block {
    border-bottom: 0;
  }

  footer .cta .block .button.cv:hover:before {
    transform-origin: left;
    transform: scaleX(1);
  }

  footer .footer__inner {
    padding-top: calc(100vw * (60 / 1366));
    display: flex;
    justify-content: space-between;
  }

  footer .footer__inner .pgtop {
    width: calc(100vw * (60 / 1366));
    height: calc(100vw * (60 / 1366));
    top: calc(100vw * (60 / 1366));
    border-radius: calc(100vw * (60 / 1366));
  }

  footer .footer__inner .pgtop:hover {
    opacity: 0.2;
  }

  footer .footer__inner .logo {
    width: calc(100vw * (145 / 1366));
    height: calc(100vw * (41 / 1366));
  }

  footer .footer__inner .f-nav {
    margin-right: calc(100vw * (70 / 1366));
  }

  footer .footer__inner .f-nav__inner:first-child {
    margin-right: calc(100vw * (70 / 1366));
  }

  footer .footer__inner .f-nav__inner .list {
    font-size: calc(100vw * (14 / 1366));
  }

  footer .footer__inner .f-nav__inner a:hover {
    color: #f38200;
  }

  footer .footer__inner .f-nav__inner .char {
    font-size: calc(100vw * (12 / 1366));
  }

  footer .footer__inner .f-nav__inner.sub {
    display: flex;
    margin-bottom: 0;
    margin-top: calc(100vw * (60 / 1366));
  }

  footer .footer__inner .f-nav__inner.sub .list {
    margin-right: calc(100vw * (30 / 1366));
    margin-bottom: 0;
  }

  footer .footer__inner .cp {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  footer .footer__inner .cp .nor {
    font-size: calc(100vw * (12 / 1366));
  }

  footer .footer__inner .cp a:hover {
    color: #f38200;
  }

  footer .footer__inner .cp .pmark {
    --w: 60;
    width: calc(100vw * (var(--w) / var(--vw)));
  }

  #home .arc__title {
    margin-bottom: calc(100vw * (40 / 1366));
  }

  #home .arc__title h3 {
    font-size: calc(100vw * (50 / 1366));
  }

  #home .arc__title .ex-line-chead {
    width: calc(100vw * (150 / 1366));
  }

  #home .arc__title .ja {
    font-size: calc(100vw * (16 / 1366));
  }

  #home .typo span[data-splitting] {
    --vw: 1366;
    --font: 180;
  }

  #home section {
    /* 20241029 -mod matsushita- */
    /* padding: 130px 20px; */
  }

  #home #hero {
    min-height: 100vh;
    height: 100vh;
  }

  #home #hero .copy {
    padding: 0 calc(100vw * (130 / 1366));
    padding-top: calc(100vh * (250 / 768));
  }

  #home #hero .copy h2 {
    white-space: nowrap;
    font-size: calc(100vw * (82 / 1366));
  }

  #home #hero .copy .ja {
    font-size: calc(100vw * (34 / 1366));
  }

  #home #hero .scroll {
    display: none;
    right: auto;
    left: calc(100vw * (46 / 1366));
  }

  #home #hero .scroll__inner .bar {
    background: #000;
  }

  #home #hero .scroll__inner .text {
    color: #000;
  }

  #home #hero .news__mini {
    left: auto;
    right: 40px;
  }

  #home #hero .news__mini li a:hover .thumb__inner {
    transform: scale(1.1);
  }

  #home #statement {
    max-width: calc(100vw * (756 / 1366));
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: calc(100vw * (180 / 1366));
    padding-bottom: calc(100vw * (180 / 1366));
  }

  #home #statement h3 {
    font-size: calc(100vw * (24 / 1366));
  }

  #home #statement .ex-line {
    top: calc(100vw * (20 / 1366));
    margin: 0 calc(100vw * (30 / 1366));
    width: 100%;
    height: 2px;
  }

  #home #statement h4:not(:last-child) {
    margin-bottom: calc(100vw * (40 / 1366));
  }

  #home #statement h4 .en {
    font-size: calc(100vw * (36 / 1366));
  }

  #home #statement h4 .ja {
    font-size: calc(100vw * (32 / 1366));
  }

  #home #statement h4 .tx {
    font-size: calc(100vw * (16 / 1366));
  }

  #home #works {
    padding: calc(100vw * (130 / 1366)) 0px;
  }

  #home #works .typo span[data-splitting] {
    --top: 90;
    --left: -20;
  }

  #home #works .works__list {
    padding: 0;
    max-width: calc(100vw * (1110 / 1366));
    margin: auto;
    display: flex;
    justify-content: space-between;
  }

  #home #works .works__list li {
    width: calc(100vw * (330 / 1366));
    margin-right: calc(100vw * (30 / 1366));
    margin-bottom: calc(100vw * (30 / 1366));
    padding-bottom: calc(100vw * (1 / 1366));
  }

  #home #works .works__list li a {
    display: block;
  }

  #home #works .works__list li .logo {
    left: 10px;
    transform: translateY(170%);
    width: calc(100vw * (100 / 1366));
    height: calc(100vw * (100 / 1366));
  }

  #home #works .works__list li .thumb {
    margin-bottom: 18px;
    width: 100%;
    margin-right: 0;
  }

  #home #works .works__list li:nth-of-type(odd) {
    margin-right: calc(100vw * (30 / 1366));
  }

  #home #works .works__list li:nth-of-type(3n) {
    margin-right: 0;
  }

  #home #works .works__list li .text__block .text__inner .name {
    font-size: calc(100vw * (18 / 1366));
  }

  #home #works .works__list li .text__block .text__inner .title {
    font-size: calc(100vw * (14 / 1366));
    margin-bottom: calc(100vw * (10 / 1366));
  }

  #home #works .works__list li .text__block .text__inner .cate {
    margin-bottom: calc(100vw * (30 / 1366));
    font-size: calc(100vw * (11 / 1366));
  }

  #home #works .works__list li .text__block .text__inner .cate:before {
    width: calc(100vw * (30 / 1366));
  }

  #home #works .works__list li .text__block .text__inner {
    margin-left: calc(100vw * (130 / 1366));
  }

  #home #works .works__list li .text__block .result .result__inner .char .r {
    font-size: calc(100vw * (24 / 1366));
    margin-right: 4px;
  }

  #home
    #works
    .works__list
    li
    .text__block
    .result
    .result__inner
    .char
    .r.nonum {
    font-size: calc(100vw * (20 / 1366));
  }

  #home #works .works__list li .text__block .result .result__inner .char .o {
    font-size: calc(100vw * (16 / 1366));
  }

  #home #works .client__logo__wrap {
    width: calc(100vw * ((3143.63 * 2) / 1366));
  }

  #home #works .client__logo {
    width: calc(100vw * (2699 / 1366));
    margin-bottom: calc(100vw * (50 / 1366));
    animation: tickerPlay 26s linear infinite;
  }

  #home #works .client__logo li {
    --w: 168.92;
    --vw: 1366;
    --lr: 10;
  }

  #home #works .button:hover:before {
    transform-origin: left;
    transform: scaleX(1);
  }

  #home #performance {
    background-size: 120%;
    background-position: 100% 50%;
  }

  #home #performance .typo span[data-splitting] {
    --left: 150;
  }

  #home #performance .group:not(:last-child) {
    --bottom: 54;
  }

  #home #performance .group h4 {
    --tb: 10;
    --font: 18;
    --bottom: 35;
  }

  #home #performance .wrap {
    --w: 880;
    width: calc(100vw * (var(--w) / var(--vw)));
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #home #performance .wrap .ctup__child {
    --right: 0;
    --left: 0;
    margin-right: calc(100vw * (var(--right) / var(--vw)));
    margin-left: calc(100vw * (var(--left) / var(--vw)));
  }

  #home #performance .wrap .ctup__child:not(:last-child) {
    --right: 60;
  }

  #home #performance .wrap .ctup__child .ico {
    --w: 70;
    --h: 70;
    --right: 10;
  }

  #home #performance .wrap .ctup__child .data__block .label {
    --font: 11;
    --bottom: 34;
  }

  #home #performance .wrap .ctup__child .data__block .sub {
    --font: 16;
  }

  #home #performance .wrap .ctup__child .data__block .data .num {
    --font: 56;
    line-height: 0.8;
  }

  #home #performance .wrap .ctup__child .data__block .data .num.f-ja {
    --font: 36;
    --top: 6;
    --bottom: 7;
  }

  #home #performance .wrap .ctup__child .data__block .data .ja {
    --top: 7;
    --font: 36;
  }

  #home #performance .wrap .ctup__child .data__block .data .small {
    --top: 28;
    --lr: 6;
  }

  #home #performance .wrap .ctup__child .data__block .mini {
    --font: 16;
  }

  #home #performance .extra {
    --w: 720;
    width: calc(100vw * (var(--w) / var(--vw)));
    margin: auto;
  }

  #home #performance .extra a:hover {
    opacity: 0.5;
  }

  #home #performance .extra li img {
    width: 70%;
  }

  #home #performance .extra dl {
    justify-content: center;
  }

  #home #performance .extra dt.mark {
    --w: 90;
  }

  #home #performance .extra dt.mark-b {
    --w: 100;
  }

  #home #performance .extra dt.medal {
    --w: 190;
  }

  #home #performance .extra dt.medal2 {
    --w: 220;
  }

  #home #performance .extra dd.banner img {
    --w: 460;
    width: calc(100vw * (var(--w) / var(--vw)));
  }

  #home #performance .extra dd .mini {
    --font: 12;
  }

  #home #performance .extra dd .d {
    --font: 17;
  }

  #home #performance .extra dd .d.b {
    --font: 18;
  }

  #home #performance .external__link {
    --w: 480;
    width: calc(100vw * (var(--w) / var(--vw)));
  }

  #home #performance .external__link a:hover {
    opacity: 0.4;
  }

  #home #performance .external__link img:hover {
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0);
  }

  #home #external.external .external__link img:hover {
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0);
  }

  #home #external.external .external__link {
    --w: 720;
  }

  #home #external.external .external__link a:hover {
    opacity: 0.4;
  }

  /*#home #service {
    padding: calc(100vw * (90 / 1366)) 0px calc(100vw * (90 / 1366));
  }*/
	
  #home #service {
    max-width: 1120px;
    margin: auto;
    padding: 80px 40px 64px;
  }

  #home #service .typo span[data-splitting] {
    --top: 60;
    --left: 200;
  }

  #home #service .desc {
    text-align: center;
    font-size: calc(100vw * (24 / 1366));
    max-width: calc(100vw * (1193 / 1366));
    margin: auto;
    margin-bottom: 0px;
  }

  #home #service .arc__title {
	margin-bottom: 40px;
  }

  #home #service .service__top {
    margin-bottom: 100px;
  }

  #home #service .service__top__block img {
    margin: 0 auto;
  }

  #home #service .content {
    padding: 0;
  }

  #home #service .content .arc__title h3 {
    font-size: calc(100vw * (46 / 1366));
  }

  #home #service .content .arc__title .ja {
    font-size: calc(100vw * (14 / 1366));
  }

  #home #service .content .service__list {
    gap: 56px 40px;
  }

  #home #service .content .service__list .parent {
    width: calc((100% - 40px) / 2);
    max-width: initial;
  }

  #home #service .content .service__list .parent .box {
    display: flex;
    flex-wrap: wrap;
  }

  #home #service .content .service__list .service__img {
    position: relative;
    max-width: 440px;
    margin-right: 16px;
    z-index: 2;
  }

  #home #service .content .service__list .service__content {
    margin-left: 10px;
    margin-top: -16px;
    padding-top: 40px;
    position: relative;
    z-index: 1;
  }

  #home #service .content .service__list .service__content .title {
    gap: 8px;
  }

  #home #service .service__top {
    padding: 0;
    margin-top: 24px;
  }

  #home #service .service__top__block {
    padding: 0 0 0px;
  }

  #home #service .service__top__btn {
    justify-content: flex-end;
  }

  #home #service .service__top__row {
    margin-left: 6.3%;
    margin-right: 6.3%;
  }

  #home #service .service__top__table__row {
    min-width: 240px;
    margin: 0 8px;
  }

  #home #service .content_bn .box {
    padding: calc(100vw * (90 / 1366)) 0px 0px;
    margin-left: 6.3%;
    margin-right: 6.3%;
  }

  #home #service .content_bn .box a:hover {
    opacity: 0.5;
  }

  #home #overview {
    max-width: 1120px;
    margin: auto;
    padding: 64px 40px 80px;
  }

  #home #overview .section__inner {
    padding: 0;
  }

  #home #overview .block {
    max-width: 100%;
  }

  #home #overview .block a img.forSP {
    display: none;
  }

  #home #overview .block a img.forPC {
    display: block;
  }

  #home #supporter {
    max-width: 1120px;
    margin: auto;
    padding: 64px 40px 80px;
  }

  #home #supporter .supporter__list .slide-arrow {
    display: block !important;
  }

  @media only screen and (max-width: 1200px) {
    #home #supporter .supporter__list .next-arrow {
      display: none !important;
    }

    #home #supporter .supporter__list .prev-arrow {
      display: none !important;
    }
  }

  #home #service .content_bn .box {
    padding: calc(100vw * (90 / 1366)) 0px 0px;
    margin-left: 6.3%;
    margin-right: 6.3%;
  }

  #home #service .content_bn .box a:hover {
    opacity: 0.5;
  }

  #home #column {
    padding: calc(100vw * (70 / 1366)) 0px;
  }

  #home #column hr {
    margin: 0 calc(100vw * (86 / 1366)) calc(100vw * (30 / 1366));
  }

  #home #column .swipe__list:not(:last-child) {
    margin-bottom: calc(100vw * (30 / 1366));
  }

  #home #column .swipe__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #home #column .swipe__list .arc__title {
    margin-bottom: 0;
    padding: 0;
    padding-left: calc(100vw * (86 / 1366));
  }

  #home #column .swipe__list .arc__title h3 {
    font-size: calc(100vw * (40 / 1366));
  }

  #home #column .swipe__list .arc__title .button {
    margin-top: calc(100vw * (30 / 1366));
  }

  #home #column .swipe__list .banner-case-study {
    max-width: calc(100vw * (927 / 1366));
    width: calc(100vw * (927 / 1366));
    padding-right: calc(100vw * (86 / 1366));
  }

  #home #column .swipe__list .swiper {
    width: calc(100vw * (927 / 1366));
    margin-left: 0;
    margin-bottom: 0;
  }

  #home #column .swipe__list .swiper .swiper-slide {
    width: calc(100vw * (270 / 1366));
  }

  #home #column .swipe__list .swiper .swiper-slide .thumb {
    --w: 270;
    --h: 200;
  }

  #home #column .swipe__list .swiper .swiper-slide .text__block {
    padding: calc(100vw * (13 / 1366)) calc(100vw * (15 / 1366))
      calc(100vw * (20 / 1366));
  }

  #home #column .swipe__list .swiper .swiper-slide .text__block .date {
    font-size: calc(100vw * (10 / 1366));
  }

  #home #column .swipe__list .swiper .swiper-slide .text__block h4 {
    font-size: calc(100vw * (15 / 1366));
  }

  #home #column .swipe__list .swiper .swiper-slide .text__block .desc {
    font-size: calc(100vw * (12 / 1366));
  }

  #home #column .swipe__list .swiper .swiper-slide a:hover .thumb__inner {
    transform: scale(1.1);
  }

  #home #column .swipe__list .swiper .swiper-slide a:hover h4,
  #home #column .swipe__list .swiper .swiper-slide a:hover .desc {
    opacity: 0.4;
  }

  #home #column .swipe__list .swiper .swiper-slide.pt-2-l {
    width: calc(100vw * (414 / 1366));
  }

  #home #column .swipe__list .swiper .swiper-slide.pt-2-l .thumb {
    --w: 413;
    --h: 204;
  }

  #home #column .swipe__list .swiper .swiper-button-next,
  #home #column .swipe__list .swiper .swiper-button-prev {
    display: flex;
    width: calc(100vw * (50 / 1366));
    height: calc(100vw * (50 / 1366));
    background: #000;
    border-radius: calc(100vw * (50 / 1366));
    transition: opacity 0.4s, background 0.4s;
  }

  #home #column .swipe__list .swiper .swiper-button-next:hover,
  #home #column .swipe__list .swiper .swiper-button-prev:hover {
    background: #f39800;
  }

  #home #column .swipe__list .swiper .swiper-button-next {
    left: auto;
    right: calc(100vw * (25 / 1366));
  }

  #home #column .swipe__list .swiper .swiper-button-prev {
    left: calc(100vw * (415 / 1366));
    right: auto;
  }

  #home #column .swipe__list .pt-special {
    flex-direction: row;
    margin-right: calc(100vw * (86 / 1366));
  }

  #home #column .swipe__list .pt-special a.banner-linka {
    margin-bottom: 0px;
    margin-right: calc(100vw * (15 / 1366));
    width: calc(100vw * (414 / 1366));
    transition: 0.15s ease-out;
  }

  #home #column .swipe__list .pt-special a.banner-linka:last-child {
    margin-right: 0;
  }

  #home #column .swipe__list .pt-special a.banner-linka .thumb {
    --h: 220;
    height: calc(100vw * (var(--h) / var(--vw)));
  }

  #home #column .swipe__list .pt-special a.banner-linka .thumb .thumb__inner {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
  }

  #home
    #column
    .swipe__list
    .pt-special
    a.banner-linka
    .thumb
    img.banner-case-study {
    padding-right: 0;
    height: auto;
  }

  #home #column .swipe__list .pt-special a.banner-linka .text__block {
    padding: calc(100vw * (13 / 1366)) calc(100vw * (15 / 1366))
      calc(100vw * (20 / 1366));
    transition: 0.15s ease-out;
  }

  #home #column .swipe__list .pt-special a.banner-linka .text__block:hover {
    opacity: 0.5;
  }

  #home #column .swipe__list .pt-special a.banner-linka .text__block .date {
    font-size: calc(100vw * (10 / 1366));
  }

  #home #column .swipe__list .pt-special a.banner-linka .text__block h4 {
    font-size: calc(100vw * (15 / 1366));
  }

  #home #column .swipe__list .pt-special a.banner-linka .text__block .desc {
    font-size: calc(100vw * (12 / 1366));
  }

  #home #news {
    padding-top: calc(100vw * (90 / 1366));
    padding-bottom: calc(100vw * (90 / 1366));
  }

  #home #news .section__inner {
    max-width: calc(100vw * (1028 / 1366));
    margin: auto;
  }

  #home #news .arc__title {
    margin-bottom: calc(100vw * (50 / 1366));
  }

  #home #news .arc__title h3 {
    font-size: calc(100vw * (40 / 1366));
  }

  #home #news .news__list {
    margin-bottom: calc(100vw * (35 / 1366));
  }

  /* mod matsushita20241125 start */
  #home #virtual-office .section__inner {
    max-width: calc(100vw * (1028 / 1366));
    margin: auto;
  }

  #home #virtual-office .arc__title {
    margin-bottom: calc(100vw * (50 / 1366));
  }

  #home #virtual-office .arc__title h3 {
    font-size: calc(100vw * (40 / 1366));
  }

  #home #virtual-office .news__list {
    margin-bottom: calc(100vw * (35 / 1366));
  }
  /* mod matsushita20241125 end */

  .works__list li {
    width: 50%;
    margin-bottom: calc(100vw * (60 / 1366));
  }

  .works__list li.works-li {
    padding: 0 calc(100vw * (40 / 1366));
  }

  .works__list li:nth-of-type(odd) {
    margin-right: 0;
  }

  .works__list li .logo {
    --w: 100;
    --h: 100;
  }

  .works__list li a {
    display: flex;
  }

  .works__list li .thumb {
    margin-bottom: 0;
    width: calc(100vw * (430 / 1366));
    margin-right: calc(100vw * (40 / 1366));
  }

  .works__list li .text__block .name {
    font-size: calc(100vw * (32 / 1366));
    margin-bottom: calc(100vw * (6 / 1366));
  }

  .works__list li .text__block .title {
    font-size: calc(100vw * (20 / 1366));
    margin-bottom: calc(100vw * (20 / 1366));
  }

  .works__list li .text__block .cate {
    margin-bottom: calc(100vw * (20 / 1366));
    font-size: calc(100vw * (11 / 1366));
  }

  .works__list li .text__block .cate:before {
    width: calc(100vw * (30 / 1366));
  }

  .works__list li .text__block .result {
    margin-bottom: calc(100vw * (30 / 1366));
  }

  .works__list li .text__block .result .char:not(:last-child) {
    margin-right: 8px;
  }

  .works__list li .text__block .result .char img {
    width: calc(100vw * (15 / 1366));
    height: calc(100vw * (15 / 1366));
    margin-right: 5px;
  }

  .works__list li .text__block .result .char .r {
    font-size: calc(100vw * (18 / 1366));
    margin-right: 4px;
  }

  .works__list li .text__block .result .char .r.nonum {
    font-size: calc(100vw * (17 / 1366));
  }

  .works__list li .text__block .result .char .o {
    font-size: calc(100vw * (12 / 1366));
  }

  .works__list li:hover .thumb__inner img {
    transform: scale(1.1);
  }

  .works__list .button.viewmore {
    width: calc(100vw * (180 / 1366));
    height: calc(100vw * (50 / 1366));
  }

  .works__list .button.viewmore span .arrow {
    top: calc(100vw * (20 / 1366));
  }

  .works__single .content__sec .bred__wrap {
    padding-right: calc(100vw * (86 / var(--vw)));
    margin-bottom: calc(100vw * (20 / var(--vw)));
  }

  .works__single .content__sec #head h1 {
    font-size: 44px;
  }

  .works__single .content__sec #head .lead {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .works__single .content__sec #head .tags .date {
    font-size: 14px;
  }

  .works__single .content__sec #head .tags .date span {
    font-size: 14px;
    margin-right: 12px;
  }

  .works__single .content__sec #head .summary .client-logo {
    width: 108px;
    height: 108px;
    border-radius: 16px;
  }

  .works__single .content__sec #head .summary .info {
    flex-direction: row;
    gap: 80px;
    align-items: center;
    width: calc(100% - 132px);
  }

  .works__single .content__sec #head .summary .info .col:first-child:before {
    width: 1px;
    height: 32px;
    right: -38px;
    top: 50%;
    transform: translatey(-50%);
    bottom: auto;
  }

  .works__single .content__sec #head .summary .info .col .label {
    font-size: 16px;
    line-height: 1.8;
  }

  .works__single .content__sec #head .summary .info .col .val {
    font-size: 22px;
  }

  .works__single .content__sec #mainvisual:before {
    width: 1322px;
    height: 76%;
    bottom: 24px;
    left: calc(50% - 600px);
  }

  .works__single .content__sec #mainvisual:after {
    width: 487px;
    height: 120px;
    bottom: 8px;
    right: calc(50% - 700px);
  }

  .works__single .content__sec #mainvisual .sec__inner {
    padding: 0 24px;
  }

  .works__single .content__sec #mainvisual .result {
    display: flex;
    justify-content: space-between;
    gap: 120px;
    margin-right: 0;
  }

  .works__single .content__sec #mainvisual .result .col01 {
    margin-left: -52px;
    margin-top: 32px;
    margin-bottom: 0;
  }

  .works__single .content__sec #mainvisual .result .col01 .title {
    font-size: 40px;
    line-height: 1;
  }

  .works__single .content__sec #mainvisual .result .col01 .title.kana {
    font-size: 28px;
    margin-bottom: 0;
  }

  .works__single .content__sec #mainvisual .result .col01 .val {
    font-size: 200px;
    line-height: 1;
  }

  .works__single .content__sec #mainvisual .result .col01 .val.kana {
    font-size: 160px;
  }

  .works__single .content__sec #mainvisual .result .col02 .title {
    font-size: 32px;
  }

  .works__single .content__sec #mainvisual .result .col02 .title.kana {
    font-size: 24px;
  }

  .works__single .content__sec #mainvisual .result .col02 .val {
    font-size: 72px;
    line-height: 1.1;
  }

  .works__single .content__sec #mainvisual .result .col02 .val.kana {
    font-size: 56px;
    margin-top: 12px;
  }

  .works__single .content__sec #mainvisual .order-num {
    font-size: 200px;
    left: -120px;
  }

  .works__single .content__sec #promotion {
    margin-top: 0;
  }

  .works__single .content__sec #promotion h2 {
    font-size: 64px;
  }

  .works__single .content__sec #promotion .overview {
    max-width: 640px;
    margin-bottom: 120px;
  }

  .works__single .content__sec #promotion .overview h2 {
    margin-bottom: 32px;
  }

  .works__single .content__sec #promotion .image {
    position: absolute;
    width: 320px;
    top: 140px;
    right: calc(50% - 540px);
    z-index: 1000;
    max-width: initial;
    margin: 0;
  }

  .works__single .content__sec #promotion .result {
    margin-bottom: 140px;
  }

  .works__single .content__sec #promotion .result h2 {
    position: absolute;
    top: 0;
    left: 0;
  }

  .works__single .content__sec #promotion .result .block {
    margin-left: 300px;
    padding: 32px 0;
  }

  .works__single .content__sec #promotion .result .block:before {
    width: calc(900px + 17vw);
    height: 100%;
    top: 0;
    left: -48px;
  }

  .works__single .content__sec #promotion .result .col .val {
    font-size: 72px;
  }

  .works__single .content__sec #promotion .result .col .val.kana {
    font-size: 56px;
    margin-top: 6px;
  }

  .works__single .content__sec #details {
    margin-bottom: 120px;
  }

  .works__single .content__sec #details h2 {
    margin-top: 80px;
    font-size: 32px;
  }

  .works__single .content__sec #details h3 {
    font-size: 40px;
  }

  .works__single .content__sec #details h4 {
    font-size: 20px;
  }

  .works__single .content__sec #conductor {
    margin-bottom: 120px;
  }

  @media only screen and (max-width: 1200px) {
    .works__single .content__sec #mainvisual .order-num {
      left: 0 !important;
    }

    .works__single .content__sec #mainvisual .result .col01 {
      margin-left: 0;
    }

    .works__single .content__sec #mainvisual .result .col01 .val {
      font-size: 16vw;
    }

    .works__single .content__sec #mainvisual .result .col02 .title {
      font-size: 2.8vw;
    }

    .works__single .content__sec #mainvisual .result .col02 .title.kana {
      font-size: 2.2vw;
    }

    .works__single .content__sec #mainvisual .result .col02 .val {
      font-size: 6.4vw;
    }

    .works__single .content__sec #mainvisual .result .col02 .val.kana {
      font-size: 5vw;
    }

    .works__single .content__sec #promotion .overview {
      max-width: 100%;
    }

    .works__single .content__sec #promotion .image {
      position: static;
      margin: 24px auto 0;
    }
  }

  @media only screen and (min-width: 1200px) {
    .works__single .content__sec #other-works .sec__inner {
      padding: 0 24px;
    }

    .works__single .content__sec #other-works .works__list {
      gap: 40px;
      padding: 0;
      overflow: hidden;
    }

    .works__single .content__sec #other-works .works__list li {
      width: 31%;
    }
  }

  /*#service .scroll__indi .scroll__inner .bar {
    background: #000;
  }

  #service .scroll__indi .scroll__inner .text {
    color: #000;
  }

  #service .bred__wrap {
    --bottom: 40;
  }

  #service #title__hero {
    --right: 87;
    --bottom: 0;
  }

  #service #title__hero .head {
    --w: auto;
    --lr: 85;
    --bottom: 50;
  }

  #service #title__hero .head .num {
    --font: 14;
    --bottom: 40;
  }

  #service #title__hero .head h2 {
    --font: 60;
  }

  #service #title__hero .head .ja {
    --font: 16;
  }

  #service #title__hero .gra {
    --w: 285.57;
    --h: 291.26;
    --bottom: 50;
    --right: 130;
  }

  #service #servie__ov {
    --tb: 50;
    --lr: 170;
    --bottom: 40;
  }

  #service #servie__ov .sec__inner {
    display: flex;
    justify-content: space-between;
  }

  #service #servie__ov .sec__title h3 .en {
    --font: 28;
  }

  #service #servie__ov .block {
    --w: 700;
    width: calc(100vw * (var(--w) / var(--vw)));
  }

  #service #servie__ov .block .tx {
    --font: 18;
  }

  #service #scope {
    --top: 0;
    --bottom: 110;
    --left: 86;
    --lr: 86;
    --right: 144;
    margin-left: calc(100vw * (var(--left) / var(--vw)));
  }

  #service #scope .sec__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  #service #scope .side {
    --top: 90;
    padding-top: calc(100vw * (var(--top) / var(--vw)));
    position: sticky;
    top: 0;
  }

  #service #scope .side .scope__li {
    display: block;
  }

  #service #scope .side .scope__li li:not(:last-child) {
    --right: 0;
    --bottom: 10;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  }

  #service #scope .side .scope__li li:hover a {
    color: #f39800;
  }

  #service #scope .side .scope__li li:hover a:before {
    background: #f39800;
    border: 1px solid #f39800;
  }

  #service #scope .side .other__link ul li a:hover .arrow {
    transform: translateX(calc(100vw * (10 / var(--vw))));
  }

  #service #scope .side .other__link ul li a:hover .external {
    transform: translateX(calc(100vw * (10 / var(--vw))));
  }

  #service #scope .side .other__link ul li a:hover .tx {
    transform: translateX(calc(100vw * (10 / var(--vw))));
    color: #f39800;
  }

  #service #scope .side .other__link .button.cv {
    --w: 188;
    --h: 50;
    --top: 20;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--h) / var(--vw)));
    margin-top: calc(100vw * (var(--top) / var(--vw)));
  }

  #service #scope .side .other__link .button.cv:hover:before {
    transform-origin: left;
    transform: scaleX(1);
  }

  #service #scope .side .other__link .button.cv:before:before {
    transform-origin: left;
    transform: scaleX(1);
  }

  #service #scope .side .other__link .button.cv a .tx,
  #service #scope .side .other__link .button.cv span .tx {
    --font: 12;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #service #scope .side .other__link .button.cv a .external,
  #service #scope .side .other__link .button.cv span .external {
    --w: 20;
    --h: 10;
    --top: 20;
    --right: 12;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--h) / var(--vw)));
    top: calc(100vw * (var(--top) / var(--vw)));
    right: calc(100vw * (var(--right) / var(--vw)));
  }

  #service .scope__ct .scope__gruop {
    --top: 90;
    --w: 730;
    width: calc(100vw * (var(--w) / var(--vw)));
  }

  #service .scope__ct .title__wrap {
    --bottom: 40;
  }

  #service .scope__ct .title__wrap .ico {
    --w: 53;
    --right: 12;
  }

  #service .scope__ct .title__wrap .title h4 {
    --font: 40;
  }

  #service .scope__ct .title__wrap .title .ja {
    --font: 16;
  }

  #service .scope__ct .desc .tx {
    --font: 15;
    --bottom: 50;
  }

  #service .scope__ct .desc .image {
    --w: 684;
    --h: 384;
  }

  #service .scope__ct .scope-ex {
    padding-top: calc(100vw * (20 / 1366));
  }

  #service .swiper .swiper-button-next,
  #service .swiper .swiper-button-prev {
    --w: 50;
    --h: 50;
  }

  #service .swiper .swiper-button-next {
    --bottom: 180;
  }

  #service .swiper .swiper-button-prev {
    --bottom: 180;
  }*/

  .service__single .content__sec .bred__wrap {
    padding-right: calc(100vw * (86 / var(--vw)));
    margin-bottom: calc(100vw * (20 / var(--vw)));
  }

  .service__single .content__sec .article {
    margin-bottom: 120px;
  }

  .service__single .content__sec #head {
    margin-bottom: 156px;
  }

  .service__single .content__sec #head h1 {
    font-size: 44px;
  }

  .service__single .content__sec #head .lead {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .service__single .content__sec #mainvisual {
    margin-bottom: 104px;
  }

  .service__single .content__sec #mainvisual {
    position: relative;
    padding-bottom: 64px;
  }

  .service__single .content__sec #mainvisual:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(209, 243, 255, 0.2);
    backdrop-filter: blur(20px);
  }

  .service__single .content__sec #mainvisual .sec__inner {
    display: flex;
  }

  .service__single .content__sec #mainvisual .image {
    margin-top: -60px;
    border-radius: 24px;
    overflow: hidden;
  }

  .service__single .content__sec #desc {
    margin-bottom: 120px;
  }

  .service__single .content__sec #desc .block:not(:last-child) {
    margin-bottom: 80px;
  }

  .service__single .content__sec #desc .block h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 40px;
  }

  .service__single .content__sec #desc .block .flex {
    gap: 48px;
  }

  .service__single .content__sec #desc .block .flex .image {
    width: 35%;
  }

  .service__single .content__sec #desc .block .flex p {
    width: 60%;
  }

  .service__single .content__sec #desc .block p {
    font-size: 16px;
  }

  .service__single .content__sec #strong {
    margin-bottom: 80px;
  }

  .service__single .content__sec #strong h2 {
    margin-bottom: 40px;
  }

  .service__single .content__sec #strong h2 img {
    width: 100%;
  }

  .service__single .content__sec #strong .block {
    gap: 48px;
  }

  .service__single .content__sec #strong .block .item {
    width: 310px;
  }

  .service__single .content__sec #results .slide-arrow {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    width: 56px;
  }

  .service__single .content__sec #results .prev-arrow {
    left: -100px;
  }

  .service__single .content__sec #results .next-arrow {
    right: -100px;
  }

  .service__single .content__sec #results .item {
    width: 1040px;
  }

  .service__single .content__sec #results .item .wrap {
    flex-direction: row;
    gap: 72px;
    justify-content: center;
  }

  .service__single .content__sec #results .item .image {
    width: 48%;
  }

  .service__single .content__sec #results .item .content {
    width: 45%;
    margin-top: 24px;
  }

  .service__single .content__sec #results .item .content h3 {
    font-size: 32px;
    padding-left: 0;
    padding-right: 24px;
    margin-bottom: 24px;
  }

  .service__single .content__sec #results .item .content h3:before {
    top: 2px;
    left: -24px;
  }

  .service__single .content__sec #results .item .content h3:after {
    bottom: 2px;
    right: 0;
  }

  .service__single .content__sec #results .item .content > p {
    font-size: 16px;
  }

  .service__single .content__sec #results .item .content > a {
    font-size: 16px;
  }

  .service__single .content__sec #results .item .content .client {
    margin-bottom: 32px;
  }



  

  #other {
    --top: 64;
    --lr: 87;
    --bottom: 150;
  }

  #other h3 {
    --font: 30;
    --bottom: 120;
  }

  #other ul {
    display: flex;
    justify-content: space-between;
  }

  #other ul li {
    --w: 570;
    width: calc(100vw * (var(--w) / var(--vw)));
  }

  #other ul li:not(:last-child) {
    margin-bottom: 0;
  }

  #other ul li a {
    --tb: 20;
    --lr: 20;
  }

  #other ul li .l__1 {
    display: block;
  }

  #other ul li .l__1 .gra {
    --w: 292;
    --h: 280.81;
    --bottom: 70;
    --left: 135;
  }

  #other ul li .l__1 .ico {
    width: 100%;
    --top: 200;
    padding-top: calc(100vw * (var(--top) / var(--vw)));
  }

  #other ul li .l__2 .title h5 {
    --font: 28;
  }

  #other ul li .l__2 .title .ja {
    --font: 14;
  }

  #other ul li .l__2 .button.viewmore {
    --w: 188;
    --h: 50;
  }

  #other ul li .l__2 .button.viewmore .arrow {
    --top: 20;
    --right: 12;
  }

  .column__list li {
    width: calc(100vw * (292 / var(--vw)) + 1px);
    margin-left: -1px;
  }

  .column__list li .text__block {
    padding: calc(100vw * (13 / 1366)) calc(100vw * (15 / 1366))
      calc(100vw * (20 / 1366));
  }

  .column__list li .text__block .date {
    font-size: calc(100vw * (10 / 1366));
  }

  .column__list li .text__block h4 {
    font-size: calc(100vw * (15 / 1366));
  }

  .column__list li .text__block .desc {
    font-size: calc(100vw * (12 / 1366));
  }

  .column__list li .tag__block a {
    font-size: calc(100vw * (10 / 1366));
    padding: 4px 14px;
  }

  .column__list li a:hover .thumb__inner {
    transform: scale(1.1);
  }

  .column__list li a:hover h4,
  .column__list li a:hover .desc {
    opacity: 0.4;
  }

  .drop__down .drop__trriger {
    font-size: calc(100vw * (18 / var(--vw)));
  }

  .drop__down .drop__wrap {
    width: calc(100vw * (120 / var(--vw)));
  }

  .drop__down .drop__wrap .current {
    font-size: calc(100vw * (18 / var(--vw)));
  }

  .drop__down .drop__wrap .current:hover {
    opacity: 0.5;
  }

  .drop__down .drop__wrap .current:after {
    border-width: calc(100vw * (6 / 1366)) calc(100vw * (3 / 1366)) 0
      calc(100vw * (3 / 1366));
    top: calc(100vw * (9 / 1366));
    right: calc(100vw * (7 / 1366));
  }

  .drop__down .drop__wrap .drop__inner {
    font-size: calc(100vw * (14 / var(--vw)));
    top: calc(100vw * (40 / var(--vw)));
    width: 160%;
    left: -30%;
    padding: calc(100vw * (20 / var(--vw)));
  }

  .drop__down .drop__wrap .drop__inner li:hover {
    color: #f39800;
  }

  .drop__down .drop__wrap .drop__inner li:hover a {
    color: #f39800;
  }

  .casestudy__single .content__sec {
    padding-top: calc(100vw * (140 / var(--vw)));
  }

  .casestudy__single .content__sec .bred__wrap {
    padding-right: calc(100vw * (86 / var(--vw)));
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .casestudy__single .hero {
    display: flex;
    justify-content: flex-end;
  }

  .casestudy__single .hero .text__block {
    padding: 0;
    width: calc(100vw * (500 / var(--vw)));
  }

  .casestudy__single .hero .text__block .mini {
    display: flex;
    font-size: calc(100vw * (11 / var(--vw)));
    margin-bottom: calc(100vw * (60 / var(--vw)));
  }

  .casestudy__single .hero .text__block .mini .cate {
    margin-right: calc(100vw * (20 / var(--vw)));
  }

  .casestudy__single .hero .text__block h2 {
    font-size: calc(100vw * (26 / var(--vw)));
    margin-bottom: calc(100vw * (30 / var(--vw)));
  }

  .casestudy__single .hero .text__block .sub__title {
    font-size: calc(100vw * (22 / var(--vw)));
    margin-bottom: calc(100vw * (20 / var(--vw)));
  }

  .casestudy__single .hero .text__block .client {
    font-size: calc(100vw * (14 / var(--vw)));
    margin-bottom: calc(100vw * (54 / var(--vw)));
  }

  .casestudy__single .hero .main__image {
    padding: 0;
    width: calc(100vw * (510 / var(--vw)));
    margin-left: calc(100vw * (70 / var(--vw)));
    margin-right: calc(100vw * (43 / var(--vw)));
  }

  .casestudy__single .inner__contents {
    padding: calc(100vw * (60 / var(--vw))) 0;
  }

  .casestudy__single .inner__contents .block:not(:last-child) {
    margin-bottom: calc(100vw * (80 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .point {
    margin: 0 auto;
    max-width: calc(100vw * (650 / var(--vw)));
    padding: calc(100vw * (30 / var(--vw))) calc(100vw * (20 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .point .h {
    font-size: calc(100vw * (24 / var(--vw)));
    margin-bottom: calc(100vw * (20 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .point ol li {
    font-size: calc(100vw * (18 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .sec__t {
    margin: 0 auto;
    max-width: calc(100vw * (650 / var(--vw)));
    font-size: calc(100vw * (24 / var(--vw)));
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .q {
    margin: 0 auto;
    max-width: calc(100vw * (650 / var(--vw)));
    font-size: calc(100vw * (15 / var(--vw)));
    margin-bottom: calc(100vw * (30 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .tx {
    margin: 0 auto;
    max-width: calc(100vw * (650 / var(--vw)));
    font-size: calc(100vw * (15 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .image {
    margin: 0 auto;
    max-width: calc(100vw * (650 / var(--vw)));
    margin-bottom: calc(100vw * (80 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .image .cap {
    margin: 0 auto;
    max-width: calc(100vw * (650 / var(--vw)));
    font-size: calc(100vw * (12 / var(--vw)));
    margin-top: calc(100vw * (30 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .info {
    margin: 0 auto;
    max-width: calc(100vw * (650 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .info dt {
    font-size: calc(100vw * (15 / var(--vw)));
  }

  .casestudy__single .inner__contents .block .info dd {
    font-size: calc(100vw * (12 / var(--vw)));
  }

  #other-column {
    padding: calc(100vw * (70 / 1366)) 0px;
  }

  #other-column hr {
    margin: 0 calc(100vw * (86 / 1366)) calc(100vw * (30 / 1366));
  }

  #other-column .swipe__list:not(:last-child) {
    margin-bottom: calc(100vw * (30 / 1366));
  }

  #other-column .swipe__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #other-column .swipe__list .arc__title {
    margin-bottom: 0;
    padding: 0;
    padding-left: calc(100vw * (86 / 1366));
  }

  #other-column .swipe__list .arc__title h2 {
    font-size: calc(100vw * (40 / 1366));
  }

  #other-column .swipe__list .arc__title h3 {
    font-size: calc(100vw * (40 / 1366));
  }

  #other-column .swipe__list .arc__title .button {
    margin-top: calc(100vw * (30 / 1366));
  }

  #other-column .swipe__list .swiper {
    width: calc(100vw * (927 / 1366));
    margin-left: 0;
    margin-bottom: 0;
  }

  #other-column .swipe__list .swiper .swiper-slide {
    width: calc(100vw * (297 / 1366));
  }

  #other-column .swipe__list .swiper .swiper-slide .text__block {
    padding: calc(100vw * (13 / 1366)) calc(100vw * (15 / 1366))
      calc(100vw * (20 / 1366));
  }

  #other-column .swipe__list .swiper .swiper-slide .text__block .date {
    font-size: calc(100vw * (10 / 1366));
  }

  #other-column .swipe__list .swiper .swiper-slide .text__block h3 {
    font-size: calc(100vw * (16 / 1366));
  }

  #other-column .swipe__list .swiper .swiper-button-next,
  #other-column .swipe__list .swiper .swiper-button-prev {
    display: flex;
    width: calc(100vw * (50 / 1366));
    height: calc(100vw * (50 / 1366));
    background: #000;
    border-radius: calc(100vw * (50 / 1366));
  }

  #other-column .swipe__list .swiper .swiper-button-next {
    left: auto;
    right: calc(100vw * (25 / 1366));
  }

  #other-column .swipe__list .swiper .swiper-button-prev {
    left: calc(100vw * (415 / 1366));
    right: auto;
  }

  .knowledge__single .content__sec {
    padding-top: calc(100vw * (140 / var(--vw)));
  }

  .knowledge__single .content__sec .bred__wrap {
    padding-right: calc(100vw * (86 / var(--vw)));
    margin-bottom: calc(100vw * (10 / var(--vw)));
  }

  .knowledge__single .main__article {
    max-width: calc(100vw * (1193 / var(--vw)));
    margin: 0 auto;
  }

  .knowledge__single .hero .text__block {
    padding: 0;
    max-width: calc(100vw * (1030 / var(--vw)));
    margin: 0 auto;
    margin-bottom: calc(100vw * (30 / var(--vw)));
  }

  .knowledge__single .hero .text__block .mini {
    display: flex;
    font-size: calc(100vw * (11 / var(--vw)));
    margin-bottom: calc(100vw * (30 / var(--vw)));
  }

  .knowledge__single .hero .text__block .mini .cate {
    margin-right: calc(100vw * (20 / var(--vw)));
  }

  .knowledge__single .hero .text__block h2 {
    font-size: calc(100vw * (30 / var(--vw)));
    margin-bottom: calc(100vw * (14 / var(--vw)));
  }

  .knowledge__single .inner__contents {
    display: flex;
    justify-content: space-between;
    max-width: calc(100vw * (1030 / var(--vw)));
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .knowledge__single .inner__contents .index {
    width: calc(100vw * (350 / var(--vw)));
    margin: 0;
    position: sticky;
    top: 0;
    padding-top: calc(100vw * (100 / var(--vw)));
  }

  .knowledge__single .inner__contents .index .index__inner ul li a {
    transition: color 0.4s;
  }

  .knowledge__single .inner__contents .index .index__inner ul li a:hover {
    color: #f39800;
  }

  .knowledge__single .inner__contents .side__contents {
    margin: 0;
    width: calc(100vw * (568 / var(--vw)));
  }

  .knowledge__single .inner__contents .side__contents .block {
    padding-top: calc(100vw * (100 / var(--vw)));
  }

  .knowledge__single .inner__contents .side__contents .block h2 {
    font-size: calc(100vw * (28 / var(--vw)));
    margin-bottom: calc(100vw * (34 / var(--vw)));
  }

  .knowledge__single .inner__contents .side__contents .block h3 {
    font-size: calc(100vw * (24 / var(--vw)));
    margin-bottom: calc(100vw * (34 / var(--vw)));
  }

  .knowledge__single
    .inner__contents
    .side__contents
    .block
    .tx:not(:last-child) {
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .knowledge__single .inner__contents .side__contents .block .tx {
    font-size: calc(100vw * (15 / var(--vw)));
  }

  .knowledge__single .block__l {
    width: 100%;
    margin: 0;
    margin-bottom: calc(100vw * (60 / var(--vw)));
  }

  .knowledge__single .block__l .info {
    padding: calc(100vw * (40 / var(--vw)));
    margin: 0 auto;
    max-width: calc(100vw * (900 / var(--vw)));
  }

  .knowledge__single .block__l .info dt {
    font-size: calc(100vw * (15 / var(--vw)));
  }

  .knowledge__single .block__l .info dd {
    font-size: calc(100vw * (12 / var(--vw)));
  }

  .knowledge__single .block__l .cta {
    margin: 0 auto;
    max-width: calc(100vw * (900 / var(--vw)));
    padding: calc(100vw * (40 / var(--vw)));
  }

  .knowledge__single .block__l .cta .table {
    display: flex;
    align-items: center;
  }

  .knowledge__single .block__l .cta .table .thumb {
    margin-bottom: 0;
    width: calc(100vw * (130 / var(--vw)));
    margin-right: calc(100vw * (40 / var(--vw)));
  }

  .knowledge__single .block__l .cta .r:not(:last-child) {
    margin-bottom: calc(100vw * (12 / var(--vw)));
  }

  .knowledge__single .block__l .cta .r:last-child {
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .knowledge__single .block__l .cta .button {
    width: calc(100vw * (350 / var(--vw)));
    height: calc(100vw * (70 / var(--vw)));
    margin-top: calc(100vw * (30 / var(--vw)));
  }

  .marketingcity__archive .content__sec .column__block,
  .marketingcity__single .content__sec .column__block {
    display: flex;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__trriger,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__trriger {
    font-size: calc(100vw * (18 / var(--vw)));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap {
    width: calc(100vw * (120 / var(--vw)));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .current,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .current {
    font-size: calc(100vw * (18 / var(--vw)));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .current:hover,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .current:hover {
    opacity: 0.5;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .current:after,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .current:after {
    border-width: calc(100vw * (6 / 1366)) calc(100vw * (3 / 1366)) 0
      calc(100vw * (3 / 1366));
    top: calc(100vw * (9 / 1366));
    right: calc(100vw * (7 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .drop__inner,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .drop__inner {
    font-size: calc(100vw * (14 / var(--vw)));
    top: calc(100vw * (40 / var(--vw)));
    width: 160%;
    left: -30%;
    padding: calc(100vw * (20 / var(--vw)));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .drop__inner
    li:hover,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .drop__inner
    li:hover {
    color: #f39800;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .drop__inner
    li:hover
    a,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .drop__down
    .drop__wrap
    .drop__inner
    li:hover
    a {
    color: #f39800;
  }

  .marketingcity__archive .content__sec .column__block .column__l .column__list,
  .marketingcity__single .content__sec .column__block .column__l .column__list {
    justify-content: flex-start;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li {
    width: calc((100vw * (388 / 1366)) - 8px);
    margin-left: -1px;
    margin-bottom: calc(100vw * (28 / var(--vw)) + 0px);
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li:nth-of-type(even),
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li:nth-of-type(even) {
    margin-left: calc(100vw * (20 / var(--vw)) - 0px);
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block {
    padding: calc(100vw * (13 / 1366)) calc(100vw * (15 / 1366))
      calc(100vw * (10 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    .date,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    .date {
    font-size: calc(100vw * (10 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    h2,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    h2 {
    font-size: calc(100vw * (15 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    h3,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    h3 {
    font-size: calc(100vw * (15 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    h4,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    h4 {
    font-size: calc(100vw * (15 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    .desc,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    .text__block
    .desc {
    font-size: calc(100vw * (12 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    a:hover
    .thumb__inner,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    a:hover
    .thumb__inner {
    transform: scale(1.1);
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    a:hover
    h4,
  .marketingcity__archive
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    a:hover
    .desc,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    a:hover
    h4,
  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .column__list
    li
    a:hover
    .desc {
    opacity: 0.4;
  }

  .marketingcity__archive .content__sec .column__block .column__l,
  .marketingcity__single .content__sec .column__block .column__l {
    margin: 0;
    width: calc(100vw - (100vw * (20 / var(--vw))));
  }

  .marketingcity__archive .content__sec .column__block .column__r,
  .marketingcity__single .content__sec .column__block .column__r {
    margin: 0 0 0 20px;
    width: calc(100vw * (450 / var(--vw)));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .title__block
    h2
    .f-en,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .title__block
    h2
    .f-en {
    font-size: calc(100vw * (16 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .title__block
    h2
    .f-ja,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .title__block
    h2
    .f-ja {
    font-size: calc(100vw * (26 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .title__block
    h3
    .f-en,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .title__block
    h3
    .f-en {
    font-size: calc(100vw * (16 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .title__block
    h3
    .f-ja,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .title__block
    h3
    .f-ja {
    font-size: calc(100vw * (26 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-tag,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-tag {
    margin-bottom: 60px;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .thumb
    .thumb__inner,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .thumb
    .thumb__inner {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    transform: scale(1);
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    .text__block-inner
    .rank,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    .text__block-inner
    .rank {
    width: calc(100vw * (50 / var(--vw)));
    height: calc(100vw * (50 / var(--vw)));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    .text__block-inner
    .rank
    span,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    .text__block-inner
    .rank
    span {
    padding: 10px;
    font-size: calc(100vw * (16 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    .text__block-inner
    .date,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    .text__block-inner
    .date {
    font-size: calc(100vw * (10 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    h3,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    h3 {
    font-size: calc(100vw * (14 / 1366));
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    h4,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item
    a
    .text__block
    h4 {
    font-size: calc(100vw * (14 / 1366));
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item:hover
    .thumb
    .thumb__inner,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item:hover
    .thumb
    .thumb__inner {
    transform: scale(1.1);
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item:hover
    .text__block
    h4,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-popular
    .popular__list
    li.popular__item:hover
    .text__block
    h4 {
    opacity: 0.4;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-pickup,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-pickup {
    margin-bottom: 60px;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item
    a
    .thumb
    .thumb__inner,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item
    a
    .thumb
    .thumb__inner {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    transform: scale(1);
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item
    a
    .text__block
    .text__block-inner
    .date,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item
    a
    .text__block
    .text__block-inner
    .date {
    font-size: calc(100vw * (10 / 1366));
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item
    a
    .text__block
    h3,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item
    a
    .text__block
    h3 {
    font-size: calc(100vw * (14 / 1366));
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item
    a
    .text__block
    h4,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item
    a
    .text__block
    h4 {
    font-size: calc(100vw * (14 / 1366));
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item:hover
    .thumb
    .thumb__inner,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item:hover
    .thumb
    .thumb__inner {
    transform: scale(1.1);
  }

  .marketingcity__archive
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item:hover
    .text__block
    h4,
  .marketingcity__single
    .content__sec
    .column__block
    .column__r
    .column__side-pickup
    .pickup__list
    li.pickup__item:hover
    .text__block
    h4 {
    opacity: 0.4;
  }

  .marketingcity__archive .marketingcity-recommend,
  .marketingcity__single .marketingcity-recommend {
    margin-top: 40px;
    margin-bottom: 0px;
  }

  .marketingcity__archive .marketingcity-recommend .title__block h2 .f-en,
  .marketingcity__single .marketingcity-recommend .title__block h2 .f-en {
    font-size: calc(100vw * (16 / 1366));
  }

  .marketingcity__archive .marketingcity-recommend .title__block h2 .f-ja,
  .marketingcity__single .marketingcity-recommend .title__block h2 .f-ja {
    font-size: calc(100vw * (26 / 1366));
  }

  .marketingcity__archive .marketingcity-recommend .title__block h3 .f-en,
  .marketingcity__single .marketingcity-recommend .title__block h3 .f-en {
    font-size: calc(100vw * (16 / 1366));
  }

  .marketingcity__archive .marketingcity-recommend .title__block h3 .f-ja,
  .marketingcity__single .marketingcity-recommend .title__block h3 .f-ja {
    font-size: calc(100vw * (26 / 1366));
  }

  .marketingcity__archive .marketingcity-recommend .swiper,
  .marketingcity__single .marketingcity-recommend .swiper {
    margin-left: 0;
    margin-bottom: 0;
  }

  .marketingcity__archive
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .thumb__inner,
  .marketingcity__single
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .thumb__inner {
    height: calc(100vw * (280 / 1366));
  }

  .marketingcity__archive
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .text__block,
  .marketingcity__single
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .text__block {
    padding: calc(100vw * (13 / 1366)) calc(100vw * (15 / 1366))
      calc(100vw * (20 / 1366));
  }

  .marketingcity__archive
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .text__block
    .date,
  .marketingcity__single
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .text__block
    .date {
    font-size: calc(100vw * (10 / 1366));
  }

  .marketingcity__archive
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .text__block
    h3,
  .marketingcity__single
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .text__block
    h3 {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: calc(100vw * (16 / 1366));
  }

  .marketingcity__archive
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .text__block
    h4,
  .marketingcity__single
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a
    .text__block
    h4 {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: calc(100vw * (16 / 1366));
  }

  .marketingcity__archive
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a:hover
    .thumb__inner,
  .marketingcity__single
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a:hover
    .thumb__inner {
    transform: scale(1.1);
  }

  .marketingcity__archive .content__catch,
  .marketingcity__single .content__catch {
    margin-top: 20px;
  }

  .marketingcity__archive .content__catch h2 .f-ja,
  .marketingcity__single .content__catch h2 .f-ja {
    font-size: calc(100vw * (24 / 1366));
  }

  .marketingcity__archive .column__current_title h3 .f-ja,
  .marketingcity__single .column__current_title h3 .f-ja {
    font-size: calc(100vw * (20 / 1366));
  }

  .marketingcity__archive .column__current_title h3 .f-ja span,
  .marketingcity__single .column__current_title h3 .f-ja span {
    font-size: calc(100vw * (24 / 1366));
  }

  .marketingcity__single .content__sec {
    margin: auto calc(100vw * (66 / var(--vw)));
    padding-top: calc(100vw * (140 / var(--vw)));
  }

  .marketingcity__single .content__sec .bred__wrap {
    margin-bottom: calc(100vw * (10 / var(--vw)));
  }

  .marketingcity__single .content__sec .column__block {
    margin-bottom: 0px;
  }

  .marketingcity__single .content__sec .column__block .column__l {
    padding-bottom: 60px;
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article {
    padding: calc(100vw * (30 / var(--vw)));
    padding-bottom: 0px;
    max-width: calc(100vw * (1193 / var(--vw)));
    margin: 0 auto;
    margin-right: 20px;
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .hero
    .text__block {
    padding: 0;
    max-width: calc(100vw * (1030 / var(--vw)));
    margin: 0 auto;
    margin-bottom: calc(100vw * (1 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .hero
    .text__block
    h1 {
    font-size: calc(100vw * (30 / var(--vw)));
    margin-bottom: calc(100vw * (14 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .hero
    .text__block
    .text__block-sub
    .mini {
    display: flex;
    font-size: calc(100vw * (11 / var(--vw)));
    margin-bottom: calc(100vw * (30 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .hero
    .text__block
    .text__block-sub
    .mini
    .date {
    font-size: calc(100vw * (10 / 1366));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents {
    display: flex;
    justify-content: space-between;
    max-width: calc(100vw * (1030 / var(--vw)));
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents
    .sc_index {
    width: 100%;
    top: 0;
    padding-top: calc(100vw * (10 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents
    .sc_index
    .index__inner
    ul
    li
    a {
    transition: color 0.4s;
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents
    .sc_index
    .index__inner
    ul
    li
    a:hover {
    color: #f39800;
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents
    .side__contents {
    margin: 0;
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents
    .side__contents
    .block {
    padding-top: calc(100vw * (100 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents
    .side__contents
    .block
    h2 {
    font-size: calc(100vw * (28 / var(--vw)));
    margin-bottom: calc(100vw * (34 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents
    .side__contents
    .block
    h3 {
    font-size: calc(100vw * (24 / var(--vw)));
    margin-bottom: calc(100vw * (34 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents
    .side__contents
    .block
    .tx:not(:last-child) {
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .main__article
    .inner__contents
    .side__contents
    .block
    .tx {
    font-size: calc(100vw * (15 / var(--vw)));
  }

  .marketingcity__single .content__sec .column__block .column__l .block {
    width: 100%;
    margin-top: calc(100vw * (50 / var(--vw)));
    margin-bottom: calc(100vw * (50 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .article
    .target-index {
    padding-top: 100px;
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .article
    h2 {
    font-size: calc(100vw * (28 / var(--vw)));
    margin-bottom: calc(100vw * (34 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .article
    h3 {
    font-size: calc(100vw * (24 / var(--vw)));
    margin-bottom: calc(100vw * (34 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .article
    .hd-1st {
    font-size: calc(100vw * (22 / var(--vw)));
    margin-bottom: calc(100vw * (34 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .article
    .hd-2nd {
    font-size: calc(100vw * (18 / var(--vw)));
    margin-bottom: calc(100vw * (34 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .article
    .tx:not(:last-child) {
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .article
    .tx {
    font-size: calc(100vw * (15 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .article
    figure {
    font-size: calc(100vw * (12 / var(--vw)));
  }

  .marketingcity__single .content__sec .column__block .column__l .block .info {
    padding: calc(100vw * (30 / var(--vw)));
    margin: 0 auto;
    margin-right: 20px;
    max-width: calc(100vw * (900 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .info
    dt {
    font-size: calc(100vw * (15 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .info
    dd {
    font-size: calc(100vw * (14 / var(--vw)));
  }

  .marketingcity__single .content__sec .column__block .column__l .block .cta {
    margin: 0 auto;
    margin-right: 20px;
    max-width: calc(100vw * (900 / var(--vw)));
    padding: calc(100vw * (30 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .cta
    .table {
    display: flex;
    align-items: center;
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .cta
    .table
    .thumb {
    margin-bottom: 0;
    width: calc(100vw * (130 / var(--vw)));
    margin-right: calc(100vw * (40 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .cta
    .r:not(:last-child) {
    margin-bottom: calc(100vw * (12 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .cta
    .r:last-child {
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .marketingcity__single
    .content__sec
    .column__block
    .column__l
    .block
    .cta
    .button {
    width: calc(100vw * (350 / var(--vw)));
    height: calc(100vw * (70 / var(--vw)));
    margin-top: calc(100vw * (30 / var(--vw)));
  }

  .marketingcity__single .content__sec .column__r .column__side-pickup {
    padding-bottom: 0px;
  }

  .marketingcity__single .content__sec.content__sec-inner {
    padding-top: 10px;
  }

  .corporate__top-kv {
    margin-top: 0px;
  }

  .corporate__top-sec {
    margin-top: calc(100vw * (80 / var(--vw)));
  }

  .corporate__top-sec .content__sec {
    margin-top: 0px;
    padding-top: calc(100vw * (60 / var(--vw)));
  }

  .corporate__top-sec .title__block {
    margin: calc(100vw * (40 / var(--vw))) auto calc(100vw * (20 / var(--vw)));
  }

  .corporate__top-sec .title__block .arc__title {
    padding: calc(100vw * (30 / var(--vw))) 0;
  }

  .corporate__bottom__inner a {
    transition: 0.5s;
  }

  .corporate__bottom__inner a:hover {
    opacity: 0.5;
  }

  #company .typo span[data-splitting] {
    padding-top: calc(100vw * (100 / 1366));
  }

  #company .content__sec {
    padding-top: calc(100vw * (100 / 1366));
  }

  #company .content__sec .bred__wrap {
    --top: 70;
    position: relative;
    top: calc(100vw * (var(--top) / var(--vw)));
  }

  #company .content__sec .arc__title {
    margin-bottom: calc(100vw * (45 / 1366));
  }

  #company .content__sec .arc__title h3 {
    font-size: calc(100vw * (78 / 1366));
  }

  #company #main {
    max-width: 100%;
  }

  #company .mv {
    padding-right: calc(100vw * (190 / var(--vw)));
    height: calc(100vw * (450 / 1366));
  }

  #company .statement {
    padding: calc(100vw * (160 / var(--vw))) calc(100vw * (170 / var(--vw)));
    background-position: 100% 100%;
    background-size: cover;
    background-image: url(../images/map.svg);
  }

  #company .statement h2 .en {
    font-size: calc(100vw * (40 / var(--vw)));
  }

  #company .statement h2 .ja {
    font-size: calc(100vw * (34 / var(--vw)));
  }

  #company .statement h2 .ja br {
    display: none;
  }

  #company .statement .tx {
    font-size: calc(100vw * (15 / var(--vw)));
  }

  #company .statement .ball {
    width: calc(100vw * (66 / var(--vw)));
    height: calc(100vw * (66 / var(--vw)));
    top: calc(100vw * (300 / var(--vw)));
    right: calc(100vw * (180 / var(--vw)));
  }

  #company .statement .ball span {
    width: calc(100vw * (66 / var(--vw)));
    height: calc(100vw * (66 / var(--vw)));
    border-radius: calc(100vw * (66 / var(--vw)));
  }

  #company .statement .ball:nth-of-type(2) {
    top: calc(100vw * (327 / var(--vw)));
    right: calc(100vw * (233 / var(--vw)));
  }

  #company section {
    margin: 0 auto;
    max-width: calc(100vw * (1020 / var(--vw)));
  }

  #company section:not(:last-child) {
    margin-bottom: calc(100vw * (60 / var(--vw)));
    padding-bottom: calc(100vw * (60 / var(--vw)));
  }

  #company section .sec__inner {
    display: flex;
    justify-content: space-between;
  }

  #company section .sec__title {
    width: calc(100vw * (240 / var(--vw)));
  }

  #company section .sec__title h3 .en {
    font-size: calc(100vw * (30 / var(--vw)));
  }

  #company section .sec__title h3 .ja {
    font-size: calc(100vw * (16 / var(--vw)));
  }

  #company section .sec__title h3 .ja .small {
    font-size: calc(100vw * (12 / var(--vw)));
  }

  #company #overview {
    padding-top: calc(100vw * (110 / var(--vw)));
  }

  #company #overview .block {
    width: calc(100vw * (600 / var(--vw)));
  }

  #company #overview .block dl:not(:last-child) {
    margin-bottom: calc(100vw * (20 / var(--vw)));
  }

  #company #overview .block dl dt {
    width: calc(100vw * (150 / var(--vw)));
    font-size: calc(100vw * (12 / var(--vw)));
  }

  #company #overview .block dl dd {
    font-size: calc(100vw * (12 / var(--vw)));
    width: calc(100vw * (450 / var(--vw)));
  }

  #company #office .sec__inner {
    display: block;
  }

  #company #office ul {
    display: flex;
    justify-content: space-between;
  }

  #company #office ul li:not(:last-child) {
    margin-bottom: 0;
  }

  #company #office ul li {
    width: calc(100vw * (490 / var(--vw)));
  }

  #company #office ul li .maps__link a:hover {
    opacity: 0.5;
  }

  #company #sales-growth .sec__title {
    width: calc(100vw * (300 / var(--vw)));
  }

  #company #sales-growth .block {
    width: calc(100vw * (780 / var(--vw)));
  }

  #company #our-client {
    padding-bottom: calc(100vw * (130 / var(--vw)));
  }

  #company #our-client ul {
    width: calc(100vw * (740 / var(--vw)));
  }

  #company #our-client ul li {
    width: 14.28571428571429%;
  }

  #contact-page .content__sec .bred__wrap {
    margin-bottom: calc(100vw * (46 / 1366));
  }

  #contact-page .contact__head {
    padding-bottom: calc(100vw * (20 / var(--vw)));
    margin-bottom: calc(100vw * (50 / var(--vw)));
  }

  #contact-page .contact__head {
    display: flex;
  }

  #contact-page .contact__head .arc__title {
    --right: 186;
    margin-right: calc(100vw * (var(--right) / var(--vw)));
    margin-bottom: calc(100vw * (40 / 1366));
  }

  #contact-page .desc__block .l__1 {
    --font: 22;
    --bottom: 30;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #contact-page .desc__block .l__2 {
    --font: 15;
    --bottom: 40;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #contact-page .desc__block .l__2:not(:last-child) {
    --bottom: 16;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  }

  #contact-page .desc__block .tel__btn {
    --w: 324;
    --h: 98;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--h) / var(--vw)));
    pointer-events: none;
  }

  #contact-page .desc__block .tel__btn a {
    --lr: 40;
    padding: 0 calc(100vw * (var(--lr) / var(--vw)));
  }

  #contact-page .desc__block .tel__btn .tx .small {
    --font: 14;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #contact-page .desc__block .tel__btn .tx .num {
    --font: 28;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #contact-page .desc__block .tel__btn .ico {
    --w: 24.75;
    --h: 39.31;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--h) / var(--vw)));
  }

  #contact-page .form__wrap {
    --w: 908;
    --bottom: 60;
    width: calc(100vw * (var(--w) / var(--vw)));
    margin: auto;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  }

  #contact-page .form__block {
    display: flex;
  }

  #contact-page .form__block .head {
    --w: 320;
    --tb: 20;
    --lr: 0;
    width: calc(100vw * (var(--w) / var(--vw)));
    padding: calc(100vw * (var(--tb) / var(--vw)))
      calc(100vw * (var(--lr) / var(--vw)));
    border-right: 1px solid #dddddd;
  }

  #contact-page .form__block .head__inner {
    --font: 16;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #contact-page .form__block.select .input {
    --tb: 24;
  }

  #contact-page .form__block.textarea .input {
    --tb: 24;
  }

  #contact-page .form__block .input {
    --w: 590;
    --tb: 13;
    --lr: 25;
    width: calc(100vw * (var(--w) / var(--vw)));
    padding: calc(100vw * (var(--tb) / var(--vw)))
      calc(100vw * (var(--lr) / var(--vw)));
  }

  #contact-page .form__block .input .wpcf7-form-control-wrap.timing {
    --bottom: 30;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  }

  #contact-page .form__block .input .wpcf7-radio .wpcf7-list-item.first:before {
    --font: 16;
    --bottom: 20;
    font-size: calc(100vw * (var(--font) / var(--vw)));
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  }

  #contact
    .form__block
    .input
    .wpcf7-radio
    .wpcf7-list-item:nth-of-type(4):before {
    --font: 16;
    font-size: calc(100vw * (var(--font) / var(--vw)));
    --bottom: 20;
    --top: 30;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
    margin-top: calc(100vw * (var(--top) / var(--vw)));
  }

  #contact
    .form__block
    .input
    .wpcf7-radio
    .wpcf7-list-item:nth-of-type(7):before {
    --font: 16;
    font-size: calc(100vw * (var(--font) / var(--vw)));
    --bottom: 20;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
    --top: 30;
    margin-top: calc(100vw * (var(--top) / var(--vw)));
  }

  #contact-page .form__block .input .wpcf7-radio input[type="radio"] {
    --w: 25;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--w) / var(--vw)));
    border-radius: 100%;
  }

  #contact-page .form__block .input .wpcf7-radio input[type="radio"]:checked:after {
    --w: 11;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--w) / var(--vw)));
    border-radius: 100%;
  }

  #contact-page .form__block .input .wpcf7-radio .wpcf7-list-item-label {
    --font: 14;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #contact-page .form__block .input .wpcf7-radio label {
    --left: 10;
    margin-left: calc(100vw * (var(--left) / var(--vw)));
  }

  #contact-page .form__block .input .wpcf7-checkbox input[type="checkbox"] {
    --w: 25;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--w) / var(--vw)));
  }

  #contact-page .form__block .input .wpcf7-checkbox .wpcf7-list-item-label {
    --font: 14;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #contact-page .form__block .input .wpcf7-checkbox label {
    --left: 10;
    margin-left: calc(100vw * (var(--left) / var(--vw)));
  }

  #contact-page .form__block .input.privacy {
    --top: 30;
    --lr: 25;
    --bottom: 20;
    padding: calc(100vw * (var(--top) / var(--vw)))
      calc(100vw * (var(--lr) / var(--vw)))
      calc(100vw * (var(--bottom) / var(--vw)));
  }

  #contact-page .form__block .term__inner {
    --w: 588;
    width: calc(100vw * (var(--w) / var(--vw)));
  }

  #contact-page .form__block .terms {
    margin: 0;
    --top: 30;
    --lr: 25;
    padding: calc(100vw * (var(--top) / var(--vw)))
      calc(100vw * (var(--lr) / var(--vw))) 0;
  }

  #contact-page .form__block [type="text"],
  #contact-page .form__block [type="email"],
  #contact-page .form__block [type="tel"],
  #contact-page .form__block [type="url"],
  #contact-page .form__block [name="textarea-856"] {
    --h: 40;
    height: calc(100vw * (var(--h) / var(--vw)));
  }

  #contact-page .form__block [name="textarea-856"] {
    --h: 280;
    height: calc(100vw * (var(--h) / var(--vw)));
  }

  #contact-page .submitbtn input {
    --w: 336;
    --h: 90;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--h) / var(--vw)));
    margin: auto;
  }

  #contact-page .submitbtn:after {
    --w: 14;
    --h: 5;
    --right: 450;
    --top: 42;
    top: calc(100vw * (var(--top) / 1366));
    right: calc(100vw * (var(--right) / 1366));
    width: calc(100vw * (var(--w) / 1366));
    height: calc(100vw * (var(--h) / 1366));
  }

  #contact-page .wpcf7-not-valid-tip {
    --font: 11;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #contact-page .timing .wpcf7-not-valid-tip {
    --left: 10;
    margin-left: calc(100vw * (var(--left) / var(--vw)));
  }

  #contact-page .wpcf7 form.invalid .wpcf7-response-output,
  #contact-page .wpcf7 form.unaccepted .wpcf7-response-output,
  #contact-page .wpcf7 form.failed .wpcf7-response-output,
  #contact-page .wpcf7 form.aborted .wpcf7-response-output,
  #contact-page .wpcf7 form.sent .wpcf7-response-output {
    --font: 14;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #privacy-policy .article {
    --lr: 230;
    padding: 0 calc(100vw * (var(--lr) / var(--vw)));
  }

  #privacy-policy .article .block:not(:last-child) {
    --bottom: 40;
  }

  #privacy-policy .article .block .table {
    --bottom: 34;
  }

  .prvy {
    display: flex;
  }

  .col.hs {
    width: 20%;
  }

  .col_p {
    width: 80%;
  }

  .firstChild.lastChild.empty {
    margin: 0 4em;
  }

  .prvy_inf {
    margin-top: 0;
    margin-left: 4em;
  }

  .news__list__wrap {
    display: flex;
    justify-content: space-between;
  }

  .news__list__wrap .news__list {
    width: calc(100vw * (825 / var(--vw)));
  }

  .news__list li a {
    padding: calc(100vw * (20 / 1366)) calc(100vw * (60 / 1366));
  }

  .news__list li .text__block {
    width: calc(100vw * (600 / 1366));
    display: flex;
    align-items: center;
  }

  .news__list li .date {
    margin-bottom: 0;
    margin-right: calc(100vw * (45 / 1366));
    font-size: calc(100vw * (11 / 1366));
  }

  .news__list li .date:before {
    width: calc(100vw * (29 / 1366));
  }

  .news__list li .title {
    font-size: calc(100vw * (18 / 1366));
  }

  .news__list li .thumb {
    --w: 228;
    --h: 128;
  }

  .news__list li:hover:before {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: left;
  }

  .news__list li:hover .thumb {
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0);
  }

  #news .bred__wrap {
    margin-bottom: calc(100vw * (46 / 1366));
  }

  #news .news__list li .text__block {
    width: calc(100vw * (520 / 1366));
  }

  #news .news__list li a {
    padding: calc(100vw * (20 / 1366)) calc(100vw * (30 / 1366));
  }

  .news__single .content__sec {
    padding-top: calc(100vw * (170 / var(--vw)));
  }

  .news__single .content__sec .bred__wrap {
    padding-right: calc(100vw * (86 / var(--vw)));
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .news__single .content__sec .news__single__wrap {
    display: flex;
    justify-content: space-between;
    max-width: calc(100vw * (1094 / var(--vw)));
    margin: 0 auto;
    margin-bottom: calc(100vw * (100 / var(--vw)));
  }

  .news__single .content__sec .arc__title {
    margin: 0;
    width: calc(100vw * (420 / var(--vw)));
  }

  .news__single .content__sec .arc__title .ja {
    font-size: calc(100vw * (16 / var(--vw)));
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .news__single .content__sec .arc__title h2 {
    font-size: calc(100vw * (26 / var(--vw)));
  }

  .news__single .content__sec .mv {
    margin-bottom: calc(100vw * (40 / var(--vw)));
  }

  .news__single .content__sec .single__contents {
    width: calc(100vw * (640 / var(--vw)));
  }

  .news__single .content__sec .single__contents__inner {
    margin: 0;
    padding-top: calc(100vw * (30 / var(--vw)));
  }

  .news__single .content__sec .single__contents__inner .block:not(:last-child) {
    margin-bottom: calc(100vw * (30 / var(--vw)));
  }

  .news__single .content__sec .single__contents__inner .block .image {
    margin-top: calc(100vw * (10 / var(--vw)));
  }

  .news__single
    .content__sec
    .single__contents__inner
    .block
    .image:not(:last-child) {
    margin-bottom: calc(100vw * (20 / var(--vw)));
  }

  .news__single .content__sec .single__contents__inner .block .tx {
    font-size: calc(100vw * (15 / var(--vw)));
  }

  .news__single #related {
    padding: calc(100vw * (100 / var(--vw))) calc(100vw * (86 / var(--vw)));
    display: flex;
    justify-content: space-between;
  }

  .news__single #related .arc__title {
    width: calc(100vw * (220 / var(--vw)));
  }

  .news__single #related .news__list__wrap {
    width: calc(100vw * (825 / var(--vw)));
    display: block;
  }

  .news__single #related .news__list {
    margin-bottom: calc(100vw * (60 / var(--vw)));
  }

  .news__single #related .button.back {
    margin: 0;
  }

  #consent-form .content__sec {
    margin-top: 80px;
    margin-bottom: 160px;
  }

  #consent-form .content__sec .bred__wrap {
    margin-bottom: calc(100vw * (46 / 1366));
  }

  #consent-form .contact__head {
    padding-bottom: calc(100vw * (20 / var(--vw)));
    margin-bottom: calc(100vw * (50 / var(--vw)));
  }

  #consent-form .contact__head {
    display: flex;
  }

  #consent-form .contact__head .arc__title {
    --right: 186;
    margin-right: calc(100vw * (var(--right) / var(--vw)));
    margin-bottom: calc(100vw * (40 / 1366));
  }

  #consent-form .auth_form {
    --w: 720;
    width: calc(100vw * (var(--w) / var(--vw)));
    max-width: 960px;
  }

  #consent-form .auth_form .post_password-txt {
    --font: 14;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .desc__block .l__1 {
    --font: 22;
    --bottom: 30;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .desc__block .l__2 {
    --font: 15;
    --bottom: 40;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .desc__block .l__2:not(:last-child) {
    --bottom: 16;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  }

  #consent-form .desc__block .tel__btn {
    --w: 324;
    --h: 98;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--h) / var(--vw)));
    pointer-events: none;
  }

  #consent-form .desc__block .tel__btn a {
    --lr: 40;
    padding: 0 calc(100vw * (var(--lr) / var(--vw)));
  }

  #consent-form .desc__block .tel__btn .tx .small {
    --font: 14;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .desc__block .tel__btn .tx .num {
    --font: 28;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .desc__block .tel__btn .ico {
    --w: 24.75;
    --h: 39.31;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--h) / var(--vw)));
  }

  #consent-form .form__wrap {
    --w: 908;
    --bottom: 60;
    width: calc(100vw * (var(--w) / var(--vw)));
    margin: auto;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  }

  #consent-form .form__block {
    display: flex;
    text-align: center;
  }

  #consent-form .form__block .head {
    --w: 320;
    --tb: 20;
    --lr: 0;
    width: calc(100vw * (var(--w) / var(--vw)));
    padding: calc(100vw * (var(--tb) / var(--vw)))
      calc(100vw * (var(--lr) / var(--vw)));
    border-right: 1px solid #dddddd;
  }

  #consent-form .form__block .head__inner {
    --font: 16;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .form__block .head.mandatory .stxt {
    --font: 10;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .form__block.select .input {
    --tb: 24;
  }

  #consent-form .form__block.radio .input {
    --tb: 24;
  }

  #consent-form .form__block.textarea .input {
    --tb: 24;
  }

  #consent-form .form__block .input {
    --w: 590;
    --tb: 25;
    --lr: 25;
    width: calc(100vw * (var(--w) / var(--vw)));
    padding: calc(100vw * (var(--tb) / var(--vw)))
      calc(100vw * (var(--lr) / var(--vw)));
  }

  #consent-form .form__block .input .mtxt {
    --font: 12;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .form__block .input .wpcf7-form-control-wrap.timing {
    --bottom: 30;
    margin-bottom: calc(100vw * (var(--bottom) / var(--vw)));
  }

  #consent-form .form__block .input .select select:nth-child(n + 2) {
    --left: 20;
    margin-left: calc(100vw * (var(--left) / var(--vw)));
  }

  #consent-form .form__block .input .wpcf7-select {
    --w: 25;
    --h: 40;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--h) / var(--vw)));
  }

  #consent-form .form__block .input .wpcf7-select {
    --font: 22;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .form__block .input .wpcf7-radio.radio {
    flex-direction: row;
    align-items: center;
  }

  #consent-form .form__block .input .wpcf7-radio input[type="radio"] {
    --w: 25;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--w) / var(--vw)));
    border-radius: 100%;
  }

  #consent-form
    .form__block
    .input
    .wpcf7-radio
    input[type="radio"]:checked:after {
    --w: 11;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--w) / var(--vw)));
    border-radius: 100%;
  }

  #consent-form .form__block .input .wpcf7-radio .wpcf7-list-item-label {
    --font: 14;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .form__block .input .wpcf7-radio label {
    --left: 10;
    margin-left: calc(100vw * (var(--left) / var(--vw)));
  }

  #consent-form .form__block .input .wpcf7-checkbox input[type="checkbox"] {
    --w: 25;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--w) / var(--vw)));
  }

  #consent-form .form__block .input .wpcf7-checkbox .wpcf7-list-item-label {
    --font: 14;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .form__block .input .wpcf7-checkbox label {
    --left: 10;
    margin-left: calc(100vw * (var(--left) / var(--vw)));
  }

  #consent-form .form__block .input.personal {
    --top: 30;
    --lr: 25;
    --bottom: 20;
    padding: calc(100vw * (var(--top) / var(--vw)))
      calc(100vw * (var(--lr) / var(--vw)))
      calc(100vw * (var(--bottom) / var(--vw)));
  }

  #consent-form .form__block .input.pledge {
    --top: 30;
    --lr: 25;
    --bottom: 20;
    padding: calc(100vw * (var(--top) / var(--vw)))
      calc(100vw * (var(--lr) / var(--vw)))
      calc(100vw * (var(--bottom) / var(--vw)));
  }

  #consent-form .form__block .term__inner {
    --w: 588;
    width: calc(100vw * (var(--w) / var(--vw)));
  }

  #consent-form .form__block .terms {
    margin: 0;
    --top: 30;
    --lr: 25;
    padding: calc(100vw * (var(--top) / var(--vw)))
      calc(100vw * (var(--lr) / var(--vw))) 0;
  }

  #consent-form .form__block [type="text"],
  #consent-form .form__block [type="email"],
  #consent-form .form__block [type="tel"],
  #consent-form .form__block [type="url"],
  #consent-form .form__block [name="textarea-856"] {
    --h: 40;
    height: calc(100vw * (var(--h) / var(--vw)));
  }

  #consent-form .form__block [name="textarea-856"] {
    --h: 280;
    height: calc(100vw * (var(--h) / var(--vw)));
  }

  #consent-form .submitbtn input {
    --w: 336;
    --h: 90;
    width: calc(100vw * (var(--w) / var(--vw)));
    height: calc(100vw * (var(--h) / var(--vw)));
    margin: auto;
  }

  #consent-form .submitbtn:after {
    --w: 14;
    --h: 5;
    --right: 450;
    --top: 42;
    top: calc(100vw * (var(--top) / 1366));
    right: calc(100vw * (var(--right) / 1366));
    width: calc(100vw * (var(--w) / 1366));
    height: calc(100vw * (var(--h) / 1366));
  }

  #consent-form .wpcf7-not-valid-tip {
    --font: 11;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form .timing .wpcf7-not-valid-tip {
    --left: 10;
    margin-left: calc(100vw * (var(--left) / var(--vw)));
  }

  #consent-form .wpcf7 form.invalid .wpcf7-response-output,
  #consent-form .wpcf7 form.unaccepted .wpcf7-response-output,
  #consent-form .wpcf7 form.failed .wpcf7-response-output,
  #consent-form .wpcf7 form.aborted .wpcf7-response-output,
  #consent-form .wpcf7 form.sent .wpcf7-response-output {
    --font: 14;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form.consent-form-influencer .form__block .input .form__block-radio {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 1em;
  }

  #consent-form.consent-form-influencer
    .form__block
    .input
    .form__block-radio
    .wpcf7-list-item {
    margin: 0;
    margin-right: 1em;
  }

  #consent-form.consent-form-influencer
    .form__block
    .input
    .wpcf7-radio
    .wpcf7-list-item:not(:last-child) {
    margin-bottom: 0px;
  }

  #consent-form.consent-form-influencer-ver2
    .contact__head
    .arc__title
    h3.f-en {
    --font: 72;
    font-size: calc(100vw * (var(--font) / var(--vw)));
  }

  #consent-form.consent-form-influencer-ver2
    .form__block
    .input
    .form__block-radio {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 1em;
  }

  #consent-form.consent-form-influencer-ver2
    .form__block
    .input
    .form__block-radio
    .wpcf7-list-item {
    margin: 0;
    margin-right: 1em;
  }

  #consent-form.consent-form-influencer-ver2
    .form__block
    .input
    .wpcf7-radio
    .wpcf7-list-item:not(:last-child) {
    margin-bottom: 0px;
  }

  .history__section__body {
    padding: 0 85px;
  }

  .history__section__body__text {
    margin-left: 35px;
    width: calc(100% - 324px);
  }

  /*.mon__second h4 {
    text-align: center;
  }

  .mon__second ul {
    display: flex;
    justify-content: center;
  }

  .mon__second ul li {
    font-size: 32px;
    text-align: center;
    line-height: 1.75;
    margin: 0 30px;
    width: 20%;
    min-width: 286px;
  }

  .mon__second ul li:nth-child(1) span {
    background: url(../../assets/images/mon/border-1.svg) no-repeat center
      bottom;
    background-size: 100% 16px;
  }

  .mon__second ul li:nth-child(2) span {
    background: url(../../assets/images/mon/border-2.svg) no-repeat center
      bottom;
    background-size: 100% 16px;
  }

  .mon__second ul li:nth-child(3) span {
    background: url(../../assets/images/mon/border-3.svg) no-repeat center
      bottom;
    background-size: 100% 16px;
  }

  .mon__second ul li span {
    padding-bottom: 16px;
  }

  .mon__third {
    padding: 0;
  }

  .mon__third__block {
    padding: 58px 0 24px;
    width: 80%;
    max-width: 1440px;
  }

  .mon__forth {
    padding: 100px 0;
    clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  }

  .mon__forth h4 img {
    height: 124px;
    margin: auto;
  }*/


  .mon__desc {
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 40px;
  }

  .mon__desc h4 {
    font-size: 48px;
  }

  .mon__desc h4 br {
    display: block;
  }

  .mon__strong__block {
    max-width: 1040px;
    margin: 0 auto 40px;
  }

  .mon__strong__block .item {
    width: 310px;
  }

  .mon__strong .accent {
    font-size: 32px;
  }

  .mon__strong .accent span {
    display: inline-block;
    font-size: 40px;
  }

  .mon__service {
    max-width: 1120px;
    padding: 0 40px;
    margin: 0 auto 120px;
  }

  .mon__service .arc__title {
    margin-bottom: calc(100vw * (40 / 1366));
  }

  .mon__service .arc__title h4 {
    font-size: 48px;
  }

  .mon__service .arc__title .ex-line-chead {
    width: 160px;
  }

  .mon__service .arc__title .ja {
    font-size: 16px;
  }

  .mon__service__list {
    overflow: hidden;
    flex-wrap: wrap;
    gap: 56px 40px;
    padding: 0;
  }

  .mon__service__list .parent {
    width: calc((100% - 40px) / 2);
    max-width: initial;
  }

  .mon__service__list .parent .box {
    display: flex;
    flex-wrap: wrap;
  }

  .mon__service__list .parent .box .image {
    position: relative;
    max-width: 440px;
    margin-right: 16px;
    z-index: 2;
  }

  .mon__service__list .parent .box .content {
    margin-left: 10px;
    margin-top: -16px;
    padding-top: 40px;
    position: relative;
    z-index: 1;
  }

  .mon__service__list .parent .box .content .title {
    gap: 8px;
  }



  

  .interview__single__contents__top-dialogue-image {
    padding: 0 calc(90 / 1280 * 100%);
  }

  .p-philosophy__point ul li img {
    margin: auto;
    width: 100%;
  }

  .p-philosophy__keyword2 ul li img {
    margin: auto;
    width: 100%;
  }

  .p-philosophy__value h3 {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) and (min-width: 481px) {
  header .header__inner {
    padding: 36px 16px;
  }

  header h1 {
    width: 104px;
  }

  header h1 img {
    width: 100px;
  }

  #home #service .service__top__row {
    flex-direction: column;
  }

  #home #service .service__top__row__col h4 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  #home #service .service__top__row__col h4 span {
    font-size: 32px;
  }

  #home #service .service__top__row__col:first-child {
    text-align: center;
  }

  #home #service .service__top__row .viewmore.is-pc {
    display: none;
  }

  #home #service .service__top__row .viewmore.is-sp {
    display: block;
  }

  #home #service .service__top__block {
    max-width: 480px;
  }

  .corporate__bottom__inner {
    flex-direction: column;
  }

  .history__section__body {
    padding: 0 0 0 85px;
  }

  .history__bottom__inner {
    flex-direction: column;
  }

  .history__bottom__inner__link {
    width: 100%;
  }

  .mon__top ul {
    flex-wrap: wrap;
  }

  .mon__top li {
    width: calc(50% - 8px);
    margin: 4px;
  }

  .mon__second ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mon__second ul li {
    margin-bottom: 20px;
  }

  .mon__forth {
    padding: 120px 0;
  }

  .mon__forth > div {
    width: 90%;
    margin: auto;
  }

  .mon__forth__video iframe {
    max-width: 100%;
  }

  .mon__fifth ul {
    flex-direction: column;
  }

  .mon__fifth li {
    width: 100%;
  }

  .interview__single__contents__top img {
    height: 300px;
  }

  .interview__single__contents__top h2,
  .interview__single__contents__top h3 {
    width: auto;
  }

  .interview__single__contents__top-dialogue h2,
  .interview__single__contents__top-dialogue h3 {
    width: auto;
  }

  .p-philosophy__mission__title {
    height: 200px;
  }

  .p-philosophy__keyword {
    max-width: 100vw;
    overflow: hidden;
    margin: -100px auto;
    padding: 150px 0 50px 0;
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
  }

  .p-philosophy__keyword__row {
    flex-direction: column;
    padding: 0 32px;
  }

  .p-philosophy__keyword__col {
    width: auto;
    padding-left: 0px;
    margin-bottom: 60px;
  }

  .p-philosophy__keyword__col ul li {
    font-size: 18px;
  }

  .p-philosophy__keyword__col ul li:before {
    width: 8px;
    height: 8px;
  }

  .p-philosophy__vision__title {
    height: 224px;
  }

  .p-philosophy__promise {
    width: 600px;
  }

  .p-philosophy__socialgood {
    width: 600px;
  }

  .p-philosophy__socialgood__row {
    flex-direction: column;
    align-items: center;
  }

  .p-philosophy__socialgood__col {
    margin: 20px 0 0;
    width: auto;
  }

  .p-philosophy__policy {
    width: 600px;
  }

  .p-philosophy__policy__row {
    flex-wrap: wrap;
  }

  .p-philosophy__policy__col {
    width: calc(50% - 4px);
    height: 144px;
    margin-bottom: 8px;
  }

  .p-philosophy__bottom__inner {
    flex-direction: column;
  }

  .p-philosophy__bottom__inner__link {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  header nav .parents > li i {
    display: none;
  }

  footer .footer__inner .f-nav__inner .list.item2nd {
    margin-top: 10px;
  }

  #home #service .service__top__row {
    flex-direction: column;
  }

  #home #service .service__top__row__col h4 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  #home #service .service__top__row__col h4 span {
    font-size: 32px;
  }

  #home #service .service__top__row__col:first-child {
    text-align: center;
  }

  #home #service .service__top__table__row {
    min-width: 168px;
    margin: 0 4px;
  }

  #home #service .service__top__table__row h5 {
    font-size: 16px;
  }

  #home #service .service__top__table__row li {
    font-size: 11px;
    height: 86px;
  }

  #home #service .service__top__table__row li span {
    font-size: 14px;
  }

  #home #column .swipe__list .viewmore-home {
    margin: 30px auto;
  }

  .works__single .content__sec #main__hero .head .client__logo {
    width: 50%;
    margin: auto;
    margin-bottom: 14px;
  }

  .corporate__top-sec .title__block .arc__title .f-en {
    font-size: calc(100vw * (32 / var(--vw)));
  }

  .corporate__top-sec .title__block .arc__title .ja {
    font-size: calc(100vw * (10 / var(--vw)));
  }

  .corporate__bottom {
    padding: 30px 0;
  }

  .knowledge-image {
    width: 100%; /* 親要素の幅に合わせる */
    max-width: 150px; /* 最大幅を設定（必要に応じて調整） */
    height: auto; /* 高さを自動調整 */
  }

  .corporate__bottom__inner {
    flex-direction: column;
    align-items: center;
  }

  .corporate__bottom__inner__link {
    width: calc(100% - 36px);
    margin: calc(100vw * (18 / var(--vw))) 0px;
    padding: 0;
  }

  .history__section__year {
    font-size: 20px;
  }

  .history__section__body {
    flex-direction: column;
    padding-left: 32px;
  }

  .history__section__body__image {
    width: 100%;
  }

  .history__section__body__text {
    width: 100%;
  }

  .history__section__body__text h4 {
    font-size: 15px;
    margin: 16px 0 10px;
  }

  .history__section__body__text p {
    font-size: 12px;
  }

  .history__bottom {
    padding: 30px 0;
  }

  .history__bottom__inner {
    flex-direction: column;
  }

  .history__bottom__inner__link {
    font-size: 14px;
    width: 100%;
    padding: 24px 16px;
  }

  .history__bottom__inner__link span {
    font-size: 24px;
  }

  .mon__top {
    padding: 28px 0 60px;
  }

  .mon__top h4 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .mon__top ul {
    flex-wrap: wrap;
  }

  .mon__top li {
    width: calc(50% - 8px);
    font-size: 12px;
    margin: 4px;
    padding: 20px 0 16px;
  }

  .mon__top li img {
    width: 20px;
    margin: 0 auto 16px;
  }

  .mon__top li span {
    font-size: 15px;
  }

  .mon__second h4 {
    font-size: 14px;
    padding: 30px 0 20px;
  }

  .mon__second ul li {
    margin-bottom: 20px;
  }

  .mon__second ul li:nth-child(1) span {
    background: url(../../assets/images/mon/border-1.svg) no-repeat left bottom;
    background-size: contain;
  }

  .mon__second ul li:nth-child(2) span {
    background: url(../../assets/images/mon/border-2.svg) no-repeat left bottom;
    background-size: contain;
  }

  .mon__second ul li:nth-child(3) span {
    background: url(../../assets/images/mon/border-3.svg) no-repeat left bottom;
    background-size: contain;
  }

  .mon__forth {
    margin-bottom: -60px;
    transform: translateY(-60px);
    padding: 32px 0;
    clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  }

  .mon__forth h4 {
    padding: 60px 16px 0;
  }

  .mon__fifth ul {
    flex-direction: column;
  }

  .mon__fifth li {
    width: 100%;
  }

  .mon__fifth li h4 {
    font-size: 32px;
  }

  .mon__fifth li p {
    font-size: 12px;
  }

  .interview__index {
    flex-direction: column;
    align-items: center;
  }

  .interview__index__list {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 35px;
  }

  .interview__single__share {
    bottom: 40px;
    right: 0;
  }

  .interview__single__contents__top img {
    height: 240px;
    margin-bottom: 30px;
  }

  .interview__single__contents__top h2,
  .interview__single__contents__top h3 {
    width: auto;
    padding: 0 20px;
  }

  .interview__single__contents__top h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .interview__single__contents__top h3 {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .interview__single__contents__top p {
    font-size: 13px;
    width: auto;
    padding: 0 6.3%;
  }

  .interview__single__contents__top-dialogue h2,
  .interview__single__contents__top-dialogue h3 {
    width: auto;
  }

  .interview__single__contents__top-dialogue h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .interview__single__contents__top-dialogue h3 {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .interview__single__contents__top-dialogue p {
    font-size: 13px;
    width: auto;
    padding: 0 6.3%;
  }

  .interview__single__contents__main-dialogue .dialogue__block {
    font-size: 13px;
    width: auto;
    padding: 12px 6.3%;
  }

  .interview__single__contents__main-dialogue .dialogue__block img {
    width: 8vw;
    min-width: 44px;
  }

  .interview__single__contents__main-dialogue .dialogue__block .dialogue__name {
    font-size: 12px;
  }

  .interview__single__contents__main-dialogue .dialogue__block .dialogue__q {
    font-size: 14px;
    margin: 2% 2% 0;
  }

  .interview__single__contents__main-dialogue
    .dialogue__block
    .dialogue__text.bubble-l {
    margin-top: calc(-20px);
    margin-left: calc(60px);
  }

  .interview__single__contents__main-dialogue
    .dialogue__block
    .dialogue__text.bubble-l::before,
  .interview__single__contents__main-dialogue
    .dialogue__block
    .dialogue__text.bubble-l::after {
    top: calc(10px);
  }

  .interview__single__contents__main-dialogue
    .dialogue__block
    .dialogue__text.bubble-r {
    margin-top: calc(-20px);
    margin-right: calc(60px);
  }

  .interview__single__contents__main-dialogue
    .dialogue__block
    .dialogue__text.bubble-r::before,
  .interview__single__contents__main-dialogue
    .dialogue__block
    .dialogue__text.bubble-r::after {
    top: calc(10px);
  }

  .interview__single__contents__main-dialogue
    .dialogue__block
    .dialogue__text
    p {
    font-size: 13px;
    width: auto;
    padding: 0;
  }

  .interview__single__contents__main-dialogue .dialogue__block-img {
    font-size: 13px;
    width: 100%;
    padding: 0 6.3%;
  }

  .interview__single__contents__main-dialogue .dialogue__profile {
    font-size: 13px;
    width: auto;
    padding: 10px 30px;
  }

  .interview__single__contents__main-dialogue .dialogue__profile img {
    width: 8vw;
    min-width: 44px;
  }

  .interview__single__contents__textarea {
    width: auto;
    padding: 0 30px 0 6.3%;
    margin: 40px auto;
  }

  .interview__single__contents__image {
    width: 100%;
    margin: 40px auto;
  }

  .interview__single__contents__info {
    padding: 30px;
    flex-direction: column;
    width: calc(100% - 7.2%);
  }

  .interview__single__contents__info__col .thumb {
    width: 124px;
    height: 124px;
    margin-bottom: 28px;
  }

  .interview__single__contents__info__col:last-child {
    width: auto;
    padding-right: 40px;
  }

  .p-philosophy__mission {
    margin-top: -50px;
  }

  .p-philosophy__mission__title {
    height: auto;
    width: calc(100% - 32px);
    max-width: 350px;
  }

  .p-philosophy__keyword {
    margin: -100px auto;
    padding: 130px 0 80px 0;
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
  }

  .p-philosophy__keyword__row {
    flex-direction: column;
    padding: 0 32px;
  }

  .p-philosophy__keyword__col {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 60px;
  }

  .p-philosophy__keyword__col ul li {
    font-size: calc(100vw * (48 / 1366));
  }

  .p-philosophy__keyword__col ul li:before {
    width: 8px;
    height: 8px;
  }

  .p-philosophy__statement__title {
    font-size: calc(100vw * (90 / 1366));
  }

  .p-philosophy__statement p {
    font-size: calc(100vw * (72 / 1366));
  }

  .p-philosophy__statement.bg-g {
    margin: -100px auto 0px;
    padding: 130px 0 80px 0;
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
  }

  .p-philosophy__vision__title {
    height: 224px;
  }

  .p-philosophy__point {
    margin: -100px auto;
    padding: 130px 0 80px 0;
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
  }

  .p-philosophy__point ul {
    margin: auto calc(100vw * (60 / 1366));
    flex-direction: column;
  }

  .p-philosophy__point ul li {
    font-size: 18px;
  }

  .p-philosophy__keyword2 {
    margin: -100px auto;
    padding: 130px 0 80px 0;
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 calc(100% - 60px));
  }

  .p-philosophy__keyword2 ul {
    margin: auto;
  }

  .p-philosophy__keyword2 ul li {
    font-size: 18px;
  }

  .p-philosophy__value h3 {
    top: calc(100vw * (160 / 1366));
    font-size: 32px;
  }

  .p-philosophy__value__container {
    top: 70px;
    padding: 0 20px;
  }

  .p-philosophy__value__block h4 {
    margin-top: calc(100vw * (150 / 1366));
    font-size: calc(100vw * (60 / 1366));
  }

  .p-philosophy__value__block__box {
    flex-direction: column;
  }

  .p-philosophy__value__block__item {
    width: 90%;
    flex: 1;
    margin: calc(100vw * (28 / 1366)) 0;
    padding: calc(100vw * (28 / 1366)) calc(100vw * (150 / 1366));
  }

  .p-philosophy__value__block__item-title {
    font-size: calc(100vw * (72 / 1366));
  }

  .p-philosophy__value__block__item-title::first-letter {
    font-size: calc(100vw * (100 / 1366));
  }

  .p-philosophy__value__block__item p {
    font-size: calc(100vw * (54 / 1366));
  }

  .p-philosophy__promise {
    text-align: left;
    width: calc(100% - 78px);
  }

  .p-philosophy__promise h4 {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .p-philosophy__promise h4 span {
    font-size: 11px;
  }

  .p-philosophy__promise h5 {
    font-size: calc(100vw * (46 / 768));
    line-height: 1.25;
  }

  .p-philosophy__promise h5 span {
    font-size: calc(100vw * (36 / 768));
  }

  .p-philosophy__socialgood {
    text-align: left;
    width: calc(100% - 78px);
  }

  .p-philosophy__socialgood h4 {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .p-philosophy__socialgood h4 span {
    font-size: 11px;
  }

  .p-philosophy__socialgood__row {
    flex-direction: column;
  }

  .p-philosophy__socialgood__col {
    margin: 20px 0 0;
    width: 100%;
    font-size: 18px;
  }

  .p-philosophy__socialgood__col img {
    width: 50px;
  }

  .p-philosophy__policy {
    text-align: left;
    width: calc(100% - 78px);
  }

  .p-philosophy__policy h4 {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .p-philosophy__policy__row {
    flex-wrap: wrap;
  }

  .p-philosophy__policy__col {
    width: calc(50% - 4px);
    height: 144px;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .p-philosophy__policy__col::after {
    border-left: 20px solid transparent;
    border-bottom: 20px solid #fff;
  }

  .p-philosophy__relation h4 {
    font-size: 14px;
    text-align: left;
    margin-left: 38px;
  }

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

  .p-philosophy__bottom__inner {
    flex-direction: column;
  }

  .p-philosophy__bottom__inner__link {
    font-size: 14px;
    width: 100%;
    padding: 24px 16px;
  }

  .p-philosophy__bottom__inner__link span {
    font-size: 24px;
  }

  .casestudy2__index {
    flex-direction: column;
    align-items: center;
  }

  .casestudy2__index__list {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 35px;
  }

  .casestudy2__single__contents__top h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .casestudy2__single__contents__top img {
    max-width: none;
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .casestudy2__single__contents__top p {
    font-size: 13px;
    width: auto;
  }

  .casestudy2__single__contents__top__table h3 {
    font-size: 16px;
  }

  .casestudy2__single__contents__info {
    padding: 30px;
    flex-direction: column;
    width: calc(100% - 7.2%);
  }

  .casestudy2__single__contents__info__col .thumb {
    width: 100%;
    margin-bottom: 28px;
  }

  .casestudy2__single__contents__info__col:last-child {
    width: auto;
    padding-right: 40px;
  }
}

@media (max-width: 834px) {
  .device-tb-pro header nav .parents > li .f-en {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  footer .cta .block .text {
    font-size: 1.2rem;
    white-space: normal;
  }

  #home #hero .copy h2 {
    font-size: 4.8rem;
  }

  #home #hero .copy .ja {
    font-size: 2rem;
  }

  #home #statement h4 .en {
    font-size: 2.4rem;
  }

  #home #statement h4 .ja {
    font-size: 1.9rem;
  }

  #home #statement h4 .tx {
    font-size: 1.4rem;
  }

  #home #service .desc {
    font-size: 2.2rem;
  }

  #home #service .content .service__list .inner__cont ul li .tx {
    transform: scale(0.7);
  }

  .column__list li {
    width: calc((100vw * (180 / 414)) + 1px);
  }

  #company .statement .ball {
    right: 20px;
  }

  #company .statement .ball:nth-of-type(2) {
    right: 66px;
  }

  .works__list li:nth-of-type(odd) {
    margin-right: calc(100vw * (12 / var(--vw)));
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) {
  #home #service .content .stick li {
    font-weight: bold;
    font-size: 1.2rem;
    font-size: calc(100vw * (12 / 1366));
  }

  #home #service .content .stick li:not(:last-child) {
    margin-bottom: 6px;
  }

  #home #service .content .stick li a {
    display: flex;
    align-items: center;
  }

  #home #service .content .stick li a:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    border: 1px solid #000;
    display: block;
    margin-right: 4px;
  }

  #home #column .swipe__list .pt-special a.banner-linka:hover .thumb__inner {
    transform: scale(1.1, 1.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #home #column .swipe__list .pt-special a.banner-linka:hover .text__block {
    opacity: 0.5;
  }

  .marketingcity__archive
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a:hover
    h4,
  .marketingcity__single
    .marketingcity-recommend
    .swiper
    .swiper-wrapper
    .swiper-slide
    a:hover
    h4 {
    opacity: 0.4;
  }
}

@media (max-width: 768px) {
  .device-tb header nav .parents > li:not(:last-child),
  .device-tb-pro header nav .parents > li:not(:last-child) {
    margin-right: 20px;
  }

  .device-tb header nav .parents > li .f-en,
  .device-tb-pro header nav .parents > li .f-en {
    font-size: 1.2rem;
  }

  .device-tb.works__single,
  .device-tb-pro.works__single {
    padding-top: calc(100vw * (200 / var(--vw)));
  }

  .device-tb.works__single .content__sec #main__hero,
  .device-tb-pro.works__single .content__sec #main__hero {
    padding-bottom: calc(100vw * (280 / 768));
    margin-bottom: calc(100vw * (80 / 768));
  }

  .device-tb.works__single .content__sec #main__hero .head,
  .device-tb-pro.works__single .content__sec #main__hero .head {
    display: flex;
    flex-wrap: wrap;
  }

  .device-tb.works__single .content__sec #main__hero .head .client__logo,
  .device-tb-pro.works__single .content__sec #main__hero .head .client__logo {
    margin: 0 calc(100vw * (40 / 768));
    margin-right: calc(100vw * (20 / 768));
    width: calc(100vw * (220 / 768));
  }

  .device-tb.works__single .content__sec #main__hero .head .client__logo img,
  .device-tb-pro.works__single
    .content__sec
    #main__hero
    .head
    .client__logo
    img {
    margin: 0;
  }

  .device-tb.works__single .content__sec #main__hero .head .tx__block,
  .device-tb-pro.works__single .content__sec #main__hero .head .tx__block {
    padding: 0;
    padding: calc(100vw * (30 / 768));
    --w: 400;
    width: calc(100vw * (var(--w) / 768));
  }

  .device-tb.works__single .content__sec #main__hero .head .tx__block .cate,
  .device-tb-pro.works__single
    .content__sec
    #main__hero
    .head
    .tx__block
    .cate {
    font-size: calc(100vw * (11 / 768));
    margin-bottom: calc(100vw * (30 / 768));
  }

  .device-tb.works__single
    .content__sec
    #main__hero
    .head
    .tx__block
    .cate
    .char:before,
  .device-tb-pro.works__single
    .content__sec
    #main__hero
    .head
    .tx__block
    .cate
    .char:before {
    width: calc(100vw * (30 / 768));
  }

  .device-tb.works__single
    .content__sec
    #main__hero
    .head
    .tx__block
    .client__name,
  .device-tb-pro.works__single
    .content__sec
    #main__hero
    .head
    .tx__block
    .client__name {
    font-size: calc(100vw * (36 / 768));
  }

  .device-tb.works__single .content__sec #main__hero .head .tx__block .pr__name,
  .device-tb-pro.works__single
    .content__sec
    #main__hero
    .head
    .tx__block
    .pr__name {
    font-size: calc(100vw * (24 / 768));
  }

  .device-tb .typo,
  .device-tb-pro .typo {
    height: 300px;
  }

  .device-tb .typo span[data-splitting],
  .device-tb-pro .typo span[data-splitting] {
    padding-top: calc(100vw * (260 / 1366));
  }

  .device-tb#company .typo span[data-splitting],
  .device-tb.works__single .typo span[data-splitting],
  .device-tb-pro#company .typo span[data-splitting],
  .device-tb-pro.works__single .typo span[data-splitting] {
    padding-top: calc(100vw * (260 / 1366));
  }

  .device-tb .content__sec,
  .device-tb-pro .content__sec {
    padding-top: calc(100vw * (250 / var(--vw)));
  }

  .device-tb#service .bred__wrap,
  .device-tb-pro#service .bred__wrap {
    --bottom: 100;
  }

  .device-tb#company .content__sec,
  .device-tb-pro#company .content__sec {
    padding-top: calc(100vw * (250 / 1366));
  }

  .device-tb.knowledge__single .inner__contents .index .index__inner,
  .device-tb-pro.knowledge__single .inner__contents .index .index__inner {
    font-size: 1.2rem;
  }
}

.form_select {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.form_select .button {
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: #2c9caf;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #2c9caf;
  margin: 10px; /* ボタン同士の間隔を空けるため */
  width: 400px; /* ボタンの横幅を統一 */
  text-align: center; /* テキストを中央揃え */
}

.form_select .button:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid #70bdca;
  box-shadow: 4px 5px 17px -4px #268391;
}

.form_select .button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #2c9caf;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.form_select .button:hover::before {
  width: 250%;
}

@media (max-width: 600px) {
  .form_select .button {
    font-size: 12px; /* スマホ用に文字サイズを小さくする */
    width: 250px; /* スマホ用に横幅を小さくする */
    padding: 0.5em 1em; /* スマホ用にパディングを小さくする */
  }
}

#sb_instagram {
  width: 80%;
}

/* 20241029 -mod matsushita- start*/
.swipe__list .swiper-button-prev,
.swipe__list .swiper-button-next {
  text-rendering: optimizeSpeed;
  color: #fff;
}

:root {
  --swiper-theme-color: #fff !important;
}

.instagram-gallery-feed a {
  text-decoration: none !important;
  z-index: 100;
}
/* 20241029 -mod matsushita- end*/

.works__single #pr {
  margin-bottom: 80px;
}

/* 20241029 -mod matsushita- start */
.works__single img {
  margin: auto;
}
/* 20241029 -mod matsushita- end */

/* 20241126 -mod matsushita- start */
html body #instagram-gallery-feed-0 .instagram-gallery-item__media-mask {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
/* 20241126 -mod matsushita- end */
