@charset "UTF-8";
/* src/scss/style.scss */
/* ===== Base===== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

picture {
  display: block;
}

table {
  -webkit-text-size-adjust: 100%;
}

html {
  color: #000000;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  height: auto;
  vertical-align: bottom;
  width: 100%;
}
@media screen and (max-width: 767px) {
  img {
    pointer-events: none;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
}

input[type=submit],
input[type=reset],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  background-color: transparent;
  border: none;
  border-radius: 0px;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

*:focus {
  outline: none;
}

/* =======================================
ボタンタグcssリセット
======================================= */
button {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

/* =======================================
変数
======================================= */
:root {
  --color-main: #000;
  --color-accent: #f04;
  --font-num: "Roboto", sans-serif;
  --font-en: "Cantarell", sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;
}

/* =======================================
base
======================================= */
body {
  color: #000000;
  font-family: var(--font-ja);
  position: relative;
}

body.fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

main {
  overflow: hidden;
}

/* =======================================
レスポンシブ切り替え
======================================= */
.spOnly,
.tb_pcOnly,
.sp_tbOnly,
.pcOnly {
  display: block;
}

/* 768px以下だけ表示 */
@media (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}
/* 769px以上だけ表示 */
@media (max-width: 768px) {
  .tb_pcOnly {
    display: none !important;
  }
}
/* 1000px以下だけ表示 */
@media (min-width: 1081px) {
  .sp_tbOnly {
    display: none !important;
  }
}
/* 1081px以上だけ表示 */
@media (max-width: 1080px) {
  .pcOnly {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .is-none-click {
    pointer-events: none;
  }
}

/* =======================================
スクロールアニメーション scss
======================================= */
.js-bottomin {
  -webkit-transform: translateY(50px);
  opacity: 0;
  transform: translateY(50px);
}

.js-bottomin.active {
  -webkit-animation-name: bottomin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: bottomin;
  animation-timing-function: ease;
}

@-webkit-keyframes bottomin {
  0% {
    -webkit-transform: translateY(50px);
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes bottomin {
  0% {
    -webkit-transform: translateY(50px);
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1;
    transform: translateY(0px);
  }
}
/* =======================================
トップページ　見出しアニメーション  js-sec-ttlクラスを付与すれば動く
======================================= */
.js-sec-ttl-char {
  -webkit-transform: translateY(30px);
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

.js-sec-ttl-char.is-show {
  -webkit-transform: translateY(0);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* ===== Components ===== */
.c-btn {
  align-items: center;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  min-height: 60px;
  min-width: 300px;
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  position: relative;
  width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .c-btn {
    min-height: 55px;
    min-width: 285px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-btn {
    min-height: 50px;
    min-width: 270px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-btn span {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .c-btn span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-btn span {
    font-size: 14px;
  }
}
.c-btn svg {
  -webkit-transform: translateY(-50%);
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .c-btn svg {
    right: 22.5px;
    width: 10.25px;
  }
}
@media screen and (max-width: 768px) {
  .c-btn svg {
    right: 15px;
    width: 8.5px;
  }
}
.c-btn svg path {
  transition: stroke 0.2s ease;
}
.c-btn::after {
  border-radius: 100px;
  content: "";
  height: 100%;
  inset: 0 auto 0 0;
  opacity: 0;
  position: absolute;
  transition: width 0.2s ease, opacity 0.2s ease;
  width: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .c-btn:hover {
    cursor: pointer;
  }
  .c-btn:hover::after {
    opacity: 1;
    width: 100%;
  }
}
.c-btn--clear {
  background-color: transparent;
  border: 1px solid #fff;
}
.c-btn--clear span {
  color: #fff;
}
.c-btn--clear::after {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .c-btn--clear:hover span {
    color: #000;
  }
  .c-btn--clear:hover svg {
    fill: transparent;
  }
  .c-btn--clear:hover svg path {
    stroke: #000;
  }
}
.c-btn--white {
  background-color: #fff;
  border: 1px solid #000;
}
.c-btn--white span {
  color: #000;
}
.c-btn--white::after {
  background-color: #000;
}
.c-btn--white svg path {
  stroke: #000;
}
@media screen and (min-width: 769px) {
  .c-btn--white:hover span {
    color: #fff;
  }
  .c-btn--white:hover svg path {
    stroke: #fff;
  }
}
.c-btn--black {
  background-color: #000;
  border: 1px solid #000;
}
.c-btn--black span {
  color: #fff;
}
.c-btn--black::after {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .c-btn--black:hover span {
    color: #000;
  }
  .c-btn--black:hover svg path {
    stroke: #000;
  }
}

/* =======================================
共通タイトル
======================================= */
.c-ttl {
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .c-ttl {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .c-ttl {
    font-size: 45px;
  }
}

.c-subTtl {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1080px) {
  .c-subTtl {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .c-subTtl {
    font-size: 12px;
  }
}

/* =======================================
共通下層タイトル
======================================= */
.p-ttl {
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .p-ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-ttl {
    font-size: 25px;
  }
}

.p-subTtl {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1080px) {
  .p-subTtl {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .p-subTtl {
    font-size: 12px;
    line-height: 2.2;
    padding-bottom: 5px;
  }
}

.p-top-txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding-bottom: 10px;
}
@media screen and (max-width: 1080px) {
  .p-top-txt {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .p-top-txt {
    font-size: 12px;
    line-height: 2.2;
    padding-bottom: 10px;
    padding-bottom: 5px;
  }
}

.p-catchWrap {
  padding-top: 40px;
}
@media screen and (max-width: 1080px) {
  .p-catchWrap {
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-catchWrap {
    padding-top: 30px;
  }
}
.p-catchWrap .c-txt {
  margin-top: 0 !important;
  padding-left: 0 !important;
  text-align: justify !important;
}
.p-catchWrap .p-catch + .c-txt {
  margin-top: 20px !important;
}
@media screen and (max-width: 1080px) {
  .p-catchWrap .p-catch + .c-txt {
    margin-top: 15px !important;
  }
}
@media screen and (max-width: 768px) {
  .p-catchWrap .p-catch + .c-txt {
    margin-top: 10px !important;
  }
}

.p-catch {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 1080px) {
  .p-catch {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .p-catch {
    font-size: 20px;
  }
}

.p-ttlWrap .p-subTtl {
  line-height: 2.2;
}

/* =======================================
サービス下層固定タイトル
======================================= */
.fix-ttls {
  -webkit-transform: rotate(90deg);
  color: #fff;
  mix-blend-mode: difference;
  position: fixed;
  transform: rotate(90deg);
  z-index: 999;
}
@media screen and (max-width: 1280px) {
  .fix-ttls {
    display: none;
  }
}
.fix-ttls--graphic {
  left: 14px;
  top: 523px;
}
@media screen and (max-width: 1700px) {
  .fix-ttls--graphic {
    left: -84px;
  }
}
.fix-ttls--web {
  left: 40px;
  top: 502px;
}
@media screen and (max-width: 1700px) {
  .fix-ttls--web {
    left: -57px;
  }
}
.fix-ttls--video {
  left: -4px;
  top: 545px;
}
@media screen and (max-width: 1700px) {
  .fix-ttls--video {
    left: -100px;
  }
}
.fix-ttls--sign {
  left: 48px;
  top: 494px;
}
@media screen and (max-width: 1700px) {
  .fix-ttls--sign {
    left: -50px;
  }
}

.fix-ttl__jp {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.fix-ttl__en {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .fix-ttl__en {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .fix-ttl__en {
    font-size: 20px;
  }
}

/* =======================================
共通テキスト
======================================= */
/* =======================================
PC時 font-size: 16px;
======================================= */
.c-txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
  text-align: justify;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .c-txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .c-txt {
    font-size: 14px;
  }
}

/* =======================================
インラインテキストリンク
======================================= */
.inlineLink {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .inlineLink:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}

/* =======================================
改行用インラインブロック
======================================= */
.inline-b {
  display: inline-block;
}

/* =======================================
Flow c-flow 
======================================= */
.c-flow {
  background: #fff;
}
.c-flow .p-catchWrap {
  padding-top: 20px;
}
@media screen and (max-width: 1080px) {
  .c-flow .p-catchWrap {
    padding-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .c-flow .p-catchWrap {
    padding-top: 30px;
  }
}
.c-flow__list {
  display: flex;
  padding-top: 60px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .c-flow__list {
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .c-flow__list {
    flex-direction: column;
    gap: 60px;
    padding-top: 30px;
    width: 100%;
  }
}
.c-flow__list li {
  position: relative;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .c-flow__list li {
    margin-left: auto;
    margin-right: auto;
    max-width: 335px;
    width: 100%;
  }
}
.c-flow__arrow {
  -webkit-transform: translateY(-50%);
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}
@media screen and (max-width: 768px) {
  .c-flow__arrow {
    -webkit-transform: translateX(50%) rotate(90deg);
    bottom: -60px;
    right: 50%;
    top: initial;
    transform: translateX(50%) rotate(90deg);
    width: 30px;
  }
}
.c-flow__num {
  font-family: var(--font-num);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.166;
}
@media screen and (max-width: 768px) {
  .c-flow__num {
    font-size: 50px;
  }
}
.c-flow__ttl {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-flow__ttl {
    font-size: 20px;
    margin-top: 0px;
  }
}
.c-flow__icon {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-flow__icon {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-flow__icon svg {
    margin-left: auto;
    margin-right: auto;
    max-width: 220px;
    width: 100%;
  }
}
.c-flow .c-txt {
  line-height: 1.8;
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1080px) {
  .c-flow .c-txt {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-flow .c-txt {
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}

/* =======================================
下層ページ　FV
======================================= */
.c-fv .blackAnime {
  background-color: #000;
  height: 180px;
  inset: 0 auto 0 0;
  pointer-events: none;
  position: absolute;
  width: 0;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .c-fv .blackAnime {
    height: 130px;
  }
}
@media screen and (max-width: 768px) {
  .c-fv .blackAnime {
    height: 92px;
  }
}
.c-fv .blackAnime.start {
  /* ← `.start` が付いたらアニメ開始 */
  -webkit-animation: fvFill 0.3s ease-out forwards;
  animation: fvFill 0.3s ease-out forwards;
}
.c-fv .whiteBg {
  background-color: #fff;
  content: "";
  height: 180px;
  inset: 0 auto 0 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .c-fv .whiteBg {
    height: 130px;
  }
}
@media screen and (max-width: 768px) {
  .c-fv .whiteBg {
    height: 92px;
  }
}
.c-fv__inner {
  border-bottom: 1px solid #000;
  mix-blend-mode: difference;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 110px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .c-fv__inner {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .c-fv__inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 62px;
  }
}
.c-fv__ttls {
  position: relative;
  z-index: 2;
}
.c-fv__ttls > .c-inner {
  align-items: baseline;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.c-fv__en, .c-fv__ttl {
  color: #fff;
  position: relative;
}
.c-fv__en {
  font-family: var(--font-en);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1080px) {
  .c-fv__en {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .c-fv__en {
    font-size: 30px;
  }
}
.c-fv__ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 1080px) {
  .c-fv__ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-fv__ttl {
    font-size: 10px;
  }
}

@-webkit-keyframes fvFill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes fvFill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.box {
  position: relative;
}
.box::after {
  background-color: #000;
  content: "";
  height: 50%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

/* =======================================
記事ページ　FV
======================================= */
.singleFv {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .singleFv {
    overflow: initial;
  }
}
.singleFv .c-inner {
  max-width: 1220px;
}
.singleFv--voice {
  aspect-ratio: 1920/426;
}
@media screen and (max-width: 1760px) {
  .singleFv--voice {
    aspect-ratio: 1920/600;
  }
}
@media screen and (max-width: 1080px) {
  .singleFv--voice {
    aspect-ratio: 1080/400;
  }
}
@media screen and (max-width: 768px) {
  .singleFv--voice {
    aspect-ratio: 750/380;
  }
}
.singleFv--blog {
  aspect-ratio: 1920/482;
}
@media screen and (max-width: 1760px) {
  .singleFv--blog {
    aspect-ratio: 1920/600;
  }
}
@media screen and (max-width: 1080px) {
  .singleFv--blog {
    aspect-ratio: 1080/400;
  }
}
@media screen and (max-width: 768px) {
  .singleFv--blog {
    aspect-ratio: 750/380;
  }
}
.singleFv--news {
  aspect-ratio: 1920/426;
}
@media screen and (max-width: 1760px) {
  .singleFv--news {
    aspect-ratio: 1920/600;
  }
}
@media screen and (max-width: 1080px) {
  .singleFv--news {
    aspect-ratio: 1080/400;
  }
}
@media screen and (max-width: 768px) {
  .singleFv--news {
    aspect-ratio: 750/324;
  }
}
.singleFv > .c-inner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  justify-content: center;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .singleFv > .c-inner {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .singleFv > .c-inner {
    gap: 5px;
  }
}
.singleFv::after {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.singleFv__img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.singleFv__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.singleFv__time {
  color: #fff;
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .singleFv__time {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .singleFv__time {
    font-size: 12px;
  }
}
.singleFv__ttl {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .singleFv__ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .singleFv__ttl {
    font-size: 20px;
  }
}
.singleFv__cats {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .singleFv__cats {
    gap: 5px;
  }
}
.singleFv__cats li {
  border-radius: 5px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
}
@media screen and (max-width: 1080px) {
  .singleFv__cats li {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .singleFv__cats li {
    border-radius: 3px;
    font-size: 10px;
    padding: 4px 14px;
  }
}
.singleFv__cats li.bg-black {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.singleFv__cats li.bg-white {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}

/* =======================================
パンクズリスト
======================================= */
.breadcrumb {
  background-color: #fff;
  color: #000;
  font-weight: 300;
  line-height: 1.2;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 14px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .breadcrumb {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
  }
}
.breadcrumb__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 400;
  gap: 8px 4px;
  justify-content: flex-end;
  padding-bottom: 5px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .breadcrumb__inner {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb__inner {
    font-size: 8px;
  }
}
.breadcrumb span {
  color: #000;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .breadcrumb span {
    font-size: 10px;
  }
}
.breadcrumb a {
  color: #000;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .breadcrumb a {
    font-size: 10px;
  }
}

/* =======================================
記事ページ　パンクズリスト
======================================= */
.singleFv .breadcrumb {
  background-color: transparent;
  color: #fff;
  position: relative;
  z-index: 3;
}
.singleFv .breadcrumb span {
  color: #fff;
}
.singleFv .breadcrumb a {
  color: #fff;
}

/* =======================================
投稿ページ　絞り込み
======================================= */
.postSearch__wrap {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  padding-bottom: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 1080px) {
  .postSearch__wrap {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .postSearch__wrap {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.postSearch__ttlBtn {
  position: relative;
}
@media screen and (min-width: 769px) {
  .postSearch__ttlBtn:hover {
    cursor: pointer;
  }
  .postSearch__ttlBtn:hover .postSearch__icon::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    height: 100%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
  }
  .postSearch__ttlBtn:hover .postSearch__icon svg path {
    stroke: #fff;
  }
}
.postSearch__ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .postSearch__ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .postSearch__ttl {
    font-size: 12px;
  }
}
.postSearch__icon {
  -webkit-transform: translateY(-50%);
  cursor: pointer;
  max-width: 40px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .postSearch__icon {
    max-width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .postSearch__icon {
    max-width: 20px;
  }
}
.postSearch__icon svg {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.postSearch__icon svg path {
  transition: stroke 0.2s ease;
}
@media screen and (max-width: 768px) {
  .postSearch__icon svg path {
    stroke: #fff;
  }
}
.postSearch__icon::after {
  -webkit-transform: translate(-50%, -50%) scale(0);
  background: #000;
  border-radius: 50%;
  content: "";
  height: 0px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease, height 0.2s ease, -webkit-transform 0.2s ease;
  width: 0px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .postSearch__icon::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    height: 100%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
  }
}
.postSearch__icon.is-open svg path {
  stroke: #fff;
}
.postSearch__icon.is-open:after {
  -webkit-transform: translate(-50%, -50%) scale(1) !important;
  height: 100%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) !important;
  width: 100%;
}
.postSearch__icon.is-open .postSearch__icon--receive {
  display: none;
}
/* =======================================
絞り込みオープン時メニュー
======================================= */
.postSearchOpen {
  display: none;
  margin-top: 30px;
}
@media screen and (max-width: 1080px) {
  .postSearchOpen {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .postSearchOpen {
    margin-top: 15px;
  }
}
.postSearchOpen__inner {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .postSearchOpen__inner {
    flex-direction: column;
  }
}

/* =======================================
All, Blog, News
======================================= */
.postSearchPost {
  align-items: center;
  border: 1px solid #000;
  border-radius: 35px;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 100%;
  padding: 14px 39px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .postSearchPost {
    gap: 36px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 370px) {
  .postSearchPost {
    gap: 10px 23px;
  }
}
.postSearchPost .postSearchPost__link {
  display: block;
}
.postSearchPost li {
  align-items: center;
  border-radius: 100%;
  display: flex;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .postSearchPost li {
    height: initial;
    width: initial;
  }
}
@media screen and (min-width: 769px) {
  .postSearchPost li:hover .postSearchPost__link {
    color: #fff !important;
  }
  .postSearchPost li:hover:after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    height: 100%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
  }
}
.postSearchPost li::after {
  -webkit-transform: translate(-50%, -50%) scale(0);
  background: #000;
  border-radius: 50%;
  content: "";
  height: 40px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease, height 0.2s ease, -webkit-transform 0.2s ease;
  width: 40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .postSearchPost li::after {
    content: none;
  }
}
.postSearchPost li.is-active {
  background: #000;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .postSearchPost li.is-active {
    background: transparent;
  }
}
.postSearchPost li.is-active .postSearchPost__link {
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .postSearchPost li.is-active::before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    background: #fff;
    border-radius: 50%;
    content: "";
    height: 30px;
    left: 50%;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 30px;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .postSearchPost li.is-active::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    background: #000;
    border-radius: 50%;
    content: "";
    height: 20px;
    left: 50%;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 20px;
    z-index: 2;
  }
}
.postSearchPost .postSearchPost__link {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  mix-blend-mode: difference;
  position: relative;
  transition: color 0.2s ease;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .postSearchPost .postSearchPost__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .postSearchPost .postSearchPost__link {
    font-size: 12px;
  }
}

/* =======================================
カテゴリリスト
======================================= */
.postSearchCat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 550px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .postSearchCat {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .postSearchCat {
    gap: 6px;
  }
}
.postSearchCat li .postSearchCat__link {
  border: 1px solid #000;
  color: #000;
  display: block;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  transition: color 0.1s ease 0.1s background-color 0.1s ease, border-radius 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 1080px) {
  .postSearchCat li .postSearchCat__link {
    font-size: 14px;
    padding: 7px 15px;
  }
}
@media screen and (max-width: 768px) {
  .postSearchCat li .postSearchCat__link {
    font-size: 12px;
    padding: 5px 10px;
  }
}
@media screen and (min-width: 769px) {
  .postSearchCat li .postSearchCat__link:hover {
    background-color: #000;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
  }
}
.postSearchCat li.is-active .postSearchCat__link {
  background-color: #000;
  border-radius: 5px;
  color: #fff;
}

.postSearch__message {
  margin-top: 120px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .postSearch__message {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .postSearch__message {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    text-align: justify;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* ===== Layout===== */
/* =======================================
共通padding　上下左右
======================================= */
.c-pad {
  padding-bottom: 120px;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 120px;
}
@media screen and (max-width: 1080px) {
  .c-pad {
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .c-pad {
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
  }
}

/* =======================================
共通padding 左右のみ
======================================= */
.c-padInline {
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 1080px) {
  .c-padInline {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-padInline {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =======================================
共通inner
======================================= */
.c-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  width: 100%;
}

.c-inner-md {
  margin-left: auto;
  margin-right: auto;
  max-width: 1380px;
  width: 100%;
}

/* =======================================
下層共通wrap
======================================= */
.p-wrap {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 1080px) {
  .p-wrap {
    gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .p-wrap {
    gap: 60px;
  }
}

/* =======================================
border-top
======================================= */
.sp__bdTop {
  position: relative;
}
.sp__bdTop::after {
  background: #000;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.3s ease;
  width: 0%;
}
.sp__bdTop.is-line-active::after {
  width: 100%;
}

.header {
  background: transparent;
  height: 80px;
  inset: 0 0 auto 0;
  mix-blend-mode: difference;
  position: fixed;
  z-index: 1100;
}
@media screen and (max-width: 1080px) {
  .header {
    height: 65px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 50px;
  }
}
.header__inner {
  align-items: center;
  background: transparent;
  display: flex;
  gap: 20px;
  height: 100%;
  margin: 0 auto;
  padding-left: 10px;
}
@media screen and (max-width: 1280px) {
  .header__inner {
    gap: 10px;
  }
}
@media screen and (max-width: 1080px) {
  .header__inner {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    gap: 12px;
  }
}
.header {
  /* =======================================
  ロゴ
  ======================================= */
}
.header__logo {
  max-width: 214px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .header__logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 108px;
  }
}
.header__logo svg {
  color: #fff;
  display: block;
  width: 100%;
}
.header__logoLink {
  display: inline-block;
  transition: -webkit-transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
}
@media screen and (min-width: 769px) {
  .header__logoLink:hover {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}
.header__cta {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  width: 330px;
}
@media screen and (max-width: 1280px) {
  .header__cta {
    width: 270px;
  }
}
@media screen and (max-width: 1080px) {
  .header__cta {
    display: none;
  }
}

/* =======================================
グローバルナビ
======================================= */
.gnav {
  margin-left: auto;
}
@media screen and (max-width: 1080px) {
  .gnav {
    display: none;
  }
}
.gnav__list {
  align-items: center;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 1300px) {
  .gnav__list {
    gap: 15px;
  }
}
.gnav__link {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 0;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .gnav__link {
    font-size: 14px;
  }
}
.gnav__link {
  /* 下線アニメーション */
}
.gnav__link::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: currentColor;
  bottom: 0;
  content: "";
  height: 2px; /* 最終の太さ=2px */
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0); /* 横0%、縦0%（見えない） */
  transform-origin: left center; /* 横=左起点／縦=中央起点で上下に広がる */
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease; /* 横0.1s、縦も同時に0.1sで出現 */
  width: 100%;
  will-change: transform;
}
.gnav__link:hover::after {
  -webkit-transform: scaleX(1) scaleY(1);
  transform: scaleX(1) scaleY(1); /* 横: 左→右に伸びる／縦: 0→2pxへ上下に広がる */
}

/* =======================================
お問い合わせ、資料請求ボタン
======================================= */
.h-btn {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 20px;
  display: flex;
  flex-grow: 1;
  gap: 8px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  max-width: 160px;
  padding: 0 16px 0 14px;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .h-btn {
    font-size: 12px;
    max-width: 130px;
  }
}
.h-btn span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  mix-blend-mode: difference;
  position: relative;
  z-index: 2;
}
.h-btn::after {
  background-color: #fff;
  border-radius: 100px;
  content: "";
  height: 100%;
  inset: 0 auto 0 0;
  opacity: 0;
  position: absolute;
  transition: width 0.2s ease, opacity 0.2s ease;
  width: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .h-btn:hover {
    cursor: pointer;
  }
  .h-btn:hover span {
    color: #fff;
  }
  .h-btn:hover::after {
    opacity: 1;
    width: 100%;
  }
}
.h-btn svg {
  -webkit-transform: translateY(-50%);
  color: #fff;
  mix-blend-mode: difference;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.h-btn svg * {
  stroke: #fff;
}

/* =======================================
ハンバーガー
======================================= */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  height: 26px;
  justify-content: space-between;
  mix-blend-mode: difference;
  padding: 0;
  position: relative;
  width: 40px;
  z-index: 1101;
}
@media screen and (max-width: 1080px) {
  .hamburger {
    height: 19px;
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    height: 15px;
    width: 20px;
  }
}
.hamburger__wrap {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: center;
  position: relative;
  width: 90px;
  z-index: 1100;
}
@media screen and (max-width: 1080px) {
  .hamburger__wrap {
    height: 65px;
    width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger__wrap {
    height: 50px;
    width: 50px;
  }
}
.hamburger__wrap::before {
  -webkit-transform-origin: 100% 0%;
  -webkit-transform: scale(0);
  background: #fff;
  border-radius: 0 0 0 50px;
  content: "";
  height: 80px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0);
  transform-origin: 100% 0%;
  transition: opacity 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  width: 90px;
}
@media screen and (max-width: 1080px) {
  .hamburger__wrap::before {
    border-radius: 0 0 0 35px;
    height: 65px;
    width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger__wrap::before {
    border-radius: 0;
    height: 50px;
    width: 50px;
  }
}
@media screen and (min-width: 769px) {
  .hamburger__wrap:hover::before {
    -webkit-transform: scale(1);
    opacity: 1;
    transform: scale(1);
  }
  .hamburger__wrap:hover .hamburger__bar {
    background: #fff;
  }
}
.hamburger__bar {
  background: #fff;
  display: block;
  height: 2px;
  transition: opacity 0.2s ease, width 0.2s ease, top 0.25s ease, left 0.25s ease, background 0.3s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease, top 0.25s ease, left 0.25s ease, background 0.3s ease;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease, top 0.25s ease, left 0.25s ease, background 0.3s ease, -webkit-transform 0.25s ease;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .hamburger__bar {
    height: 2px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger__bar {
    height: 1px;
  }
}
.hamburger__bar:nth-child(1) {
  width: 40px;
}
@media screen and (max-width: 1080px) {
  .hamburger__bar:nth-child(1) {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger__bar:nth-child(1) {
    width: 20px;
  }
}
.hamburger__bar:nth-child(2) {
  align-self: flex-end;
  width: 35px;
}
@media screen and (max-width: 1080px) {
  .hamburger__bar:nth-child(2) {
    width: 26px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger__bar:nth-child(2) {
    width: 17.5px;
  }
}
.hamburger__bar:nth-child(3) {
  align-self: flex-end;
  width: 30px;
}
@media screen and (max-width: 1080px) {
  .hamburger__bar:nth-child(3) {
    width: 22.5px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger__bar:nth-child(3) {
    width: 15px;
  }
}

/* =======================================
オープン時
======================================= */
.is-menuOpen {
  overflow: hidden;
}
.is-menuOpen .menuOverlay {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.is-menuOpen .overlayMenu {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1080px) {
  .is-menuOpen .header {
    background: #000;
    mix-blend-mode: initial;
  }
}
.is-menuOpen .header .gnav__link {
  color: #fff;
}
.is-menuOpen .header .h-btn {
  border: 1px solid #fff;
  color: #fff;
}
.is-menuOpen .header .h-btn svg path {
  stroke: #fff;
}
.is-menuOpen .header .hamburger {
  display: inline-block;
}
.is-menuOpen .header .hamburger__bar {
  background: #fff;
}
@media screen and (max-width: 1080px) {
  .is-menuOpen .header__logo svg {
    color: #fff !important;
  }
}
.is-menuOpen .hamburger__wrap::before {
  opacity: 0 !important;
}
.is-menuOpen {
  /* ハンバーガーをXに */
}
.is-menuOpen .hamburger {
  display: inline-block;
  position: relative;
  z-index: 1100;
}
.is-menuOpen .hamburger__bar {
  background: #fff !important;
  left: 0;
  position: absolute;
  top: 50%;
  width: 40px;
}
@media screen and (max-width: 1080px) {
  .is-menuOpen .hamburger__bar {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .is-menuOpen .hamburger__bar {
    width: 20px;
  }
}
.is-menuOpen .hamburger__bar:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(150deg);
  transform: translateY(-50%) rotate(150deg);
}
.is-menuOpen .hamburger__bar:nth-child(2) {
  -webkit-transform: translateY(-50%) scaleX(0);
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.is-menuOpen .hamburger__bar:nth-child(3) {
  -webkit-transform: translateY(-50%) rotate(-150deg);
  transform: translateY(-50%) rotate(-150deg);
  width: 40px;
}
@media screen and (max-width: 1080px) {
  .is-menuOpen .hamburger__bar:nth-child(3) {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .is-menuOpen .hamburger__bar:nth-child(3) {
    width: 20px;
  }
}

/* =======================================
丸オーバーレイ（右上→左下へ拡大
======================================= */
.menuOverlay {
  -webkit-transform-origin: 100% 0%;
  -webkit-transform: scale(0.0001);
  background: #000;
  border-radius: 0 0 0 48%/0 0 0 69%;
  height: 100vh;
  max-height: min(100vh, 1080px);
  max-width: 1700px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: scale(0.0001);
  transform-origin: 100% 0%;
  transition: -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 1750px) {
  .menuOverlay {
    border-radius: 0 0 0 28%/0 0 0 59%;
  }
}
@media screen and (max-width: 1400px) {
  .menuOverlay {
    border-radius: 0 0 0 27%/0 0 0 37%;
  }
}
@media screen and (max-height: 570px) {
  .menuOverlay {
    border-radius: 0 0 0 13%/0 0 0 25%;
  }
}
@media screen and (max-width: 1080px) {
  .menuOverlay {
    display: none;
  }
}
/* =======================================
オープン時のメニュー
======================================= */
.overlayMenu {
  height: 100%;
  max-width: 1700px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1000;
}
@media (max-height: 840px) {
  .overlayMenu {
    padding-top: 70px;
  }
}
@media screen and (max-width: 1080px) {
  .overlayMenu {
    margin-top: 65px;
    overflow: hidden;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .overlayMenu {
    margin-top: 50px;
  }
}
.overlayMenu__inner {
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  max-height: min(100vh, 1080px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 50px;
  width: 100%;
}
@media (max-height: 570px) {
  .overlayMenu__inner {
    padding-top: 120px;
  }
}
@media screen and (max-width: 1080px) {
  .overlayMenu__inner {
    align-items: flex-start;
    background-color: #000;
    flex-direction: column;
    justify-content: flex-start;
    max-height: initial;
    padding: 0;
    padding-bottom: 100px;
  }
}
.overlayMenu__cols {
  -webkit-transform: translateY(-70px);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  max-width: 1230px;
  transform: translateY(-70px);
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .overlayMenu__cols {
    -webkit-transform: none;
    flex-direction: column;
    gap: 0;
    transform: none;
  }
}
/* 列 */
.menuCol {
  width: calc((100% - 300px) / 4);
}
@media screen and (max-width: 1080px) {
  .menuCol {
    width: 100%;
  }
}
.menuCol a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .menuCol a {
    white-space: initial;
    width: 100%;
  }
}
.menuCol a span {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.menuCol a span::after {
  -webkit-transform: scaleX(0);
  -webkit-transform-origin: left center;
  background-color: currentColor;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
  transition: transform 0.1s ease, opacity 0.1s ease;
  transition: transform 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .menuCol a span::after {
    content: none;
  }
}
@media screen and (min-width: 769px) {
  .menuCol a:hover span::after {
    -webkit-transform: scaleX(1);
    opacity: 1;
    transform: scaleX(1);
  }
}
.menuCol {
  /* ========== トップページ ========== */
}
.menuCol .top-btn-link {
  margin-bottom: 40px;
}
@media (max-height: 700px) {
  .menuCol .top-btn-link {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol .top-btn-link {
    margin-bottom: 0;
  }
}
.menuCol {
  /* ========== 1階層目タイトル ========== */
}
.menuCol__ttl {
  display: block;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .menuCol__ttl {
    align-items: center;
    background-color: #000;
    display: flex;
    gap: 15px;
    padding: 20px 50px 20px 30px;
    width: 100%;
    /* 隣に .menuCol__box がある場合だけ「＋」を表示 */
  }
  .menuCol__ttl:has(+ .menuCol__box)::before, .menuCol__ttl:has(+ .menuCol__box)::after {
    -webkit-transform: translateY(-50%);
    background: #fff;
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .menuCol__ttl {
    /* 横棒（－） */
  }
  .menuCol__ttl:has(+ .menuCol__box)::before {
    height: 1px;
    right: 20px;
    width: 20px;
  }
  .menuCol__ttl {
    /* 縦棒（＋）閉じている時だけ表示 */
  }
  .menuCol__ttl:has(+ .menuCol__box)::after {
    height: 20px;
    opacity: 1;
    right: 30px;
    width: 1px;
  }
  .menuCol__ttl {
    /* 開いた時：縦棒を消す（－になる） */
  }
  .menuCol__ttl.menu-accoddion-open:has(+ .menuCol__box)::after {
    opacity: 0;
  }
}
@media screen and (max-width: 1080px) and (max-width: 768px) {
  .menuCol__ttl {
    gap: 10px;
    padding: 14px 40px 14px 20px;
  }
  .menuCol__ttl:has(+ .menuCol__box)::before {
    right: 15px;
    width: 15px;
  }
  .menuCol__ttl:has(+ .menuCol__box)::after {
    height: 15px;
    right: 22px;
  }
}
.menuCol__ttl svg {
  display: none;
}
@media screen and (max-width: 1080px) {
  .menuCol__ttl svg {
    display: block;
    flex-shrink: 0;
    max-width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .menuCol__ttl svg {
    max-width: 15px;
  }
}
.menuCol__ttl span {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.33;
}
@media screen and (max-width: 1130px) {
  .menuCol__ttl span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol__ttl span {
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .menuCol__ttl span {
    font-size: 14px;
  }
}
.menuCol {
  /* ========== 2階層目タイトル ========== */
}
.menuCol .menu-accoddion-open svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.menuCol__subTtl {
  display: block;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .menuCol__subTtl {
    align-items: center;
    display: flex;
    gap: 7px;
    padding: 20px 68px;
    width: 100%;
  }
  .menuCol__subTtl:has(+ .menuCol__list)::before, .menuCol__subTtl:has(+ .menuCol__list)::after {
    -webkit-transform: translateY(-50%);
    background: #fff;
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .menuCol__subTtl {
    /* 横棒（－） */
  }
  .menuCol__subTtl:has(+ .menuCol__list)::before {
    height: 1px;
    opacity: 1;
    right: 20px;
    width: 20px;
  }
  .menuCol__subTtl {
    /* 縦棒（＋）閉じ時に表示 */
  }
  .menuCol__subTtl:has(+ .menuCol__list)::after {
    height: 20px;
    opacity: 1;
    right: 30px;
    width: 1px;
  }
  .menuCol__subTtl {
    /* 開いたら縦棒消す＝－になる */
  }
  .menuCol__subTtl.menu-accoddion-open:has(+ .menuCol__list)::after {
    opacity: 0;
  }
}
@media screen and (max-width: 1080px) and (max-width: 768px) {
  .menuCol__subTtl {
    gap: 5px;
    padding: 14px 45px;
  }
  .menuCol__subTtl:has(+ .menuCol__list)::before {
    right: 15px;
    width: 15px;
  }
  .menuCol__subTtl:has(+ .menuCol__list)::after {
    height: 15px;
    right: 22px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 360px) {
  .menuCol__subTtl {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol__subTtl--sp-b {
    background-color: #000;
  }
  .menuCol__subTtl--sp-b span {
    color: #fff !important;
  }
}
.menuCol__subTtl svg {
  display: none;
}
@media screen and (max-width: 1080px) {
  .menuCol__subTtl svg {
    display: block;
    flex-shrink: 0;
    max-width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .menuCol__subTtl svg {
    max-width: 15px;
  }
}
.menuCol__subTtl span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.33;
}
@media screen and (max-width: 1080px) {
  .menuCol__subTtl span {
    color: #000;
    font-size: 16px;
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .menuCol__subTtl span {
    font-size: 14px;
  }
}
.menuCol {
  /* ========== ボックス & リスト ========== */
}
.menuCol__box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-height: 700px) {
  .menuCol__box {
    gap: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol__box {
    background-color: #fff;
    gap: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol__boxInner > .menuCol__item {
    background: #000;
  }
}
.menuCol .pc-pl {
  padding-left: 20px;
}
@media screen and (max-width: 1080px) {
  .menuCol .pc-pl {
    padding-left: 0;
  }
}
.menuCol__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media (max-height: 700px) {
  .menuCol__list {
    gap: 15px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol__list {
    gap: 0;
    margin-top: 0;
  }
}
.menuCol__link {
  align-items: center;
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 1080px) {
  .menuCol__link {
    padding: 13px 95px;
  }
}
@media screen and (max-width: 768px) {
  .menuCol__link {
    padding: 9.5px 65px;
  }
}
@media screen and (max-width: 360px) {
  .menuCol__link {
    padding-left: 45px;
    padding-right: 45px;
  }
}
.menuCol__link svg {
  flex-shrink: 0;
  max-width: 10px;
}
@media screen and (max-width: 1080px) {
  .menuCol__link svg {
    stroke: #000;
    max-width: 12px;
  }
}
@media screen and (max-width: 768px) {
  .menuCol__link svg {
    max-width: 10px;
  }
}
.menuCol__link span {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.33;
}
@media screen and (max-width: 1130px) {
  .menuCol__link span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol__link span {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  .menuCol__link span {
    font-size: 12px;
  }
}
.menuCol {
  /* ========== 列ごとの調整 ========== */
}
.menuCol--service .menuCol__box {
  margin-top: 40px;
}
@media (max-height: 700px) {
  .menuCol--service .menuCol__box {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol--service .menuCol__box {
    margin-top: 0;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol--service .menuCol__box,
  .menuCol--service .menuCol__list {
    display: none;
  }
}
.menuCol--works .menuCol__box {
  margin-top: 40px;
}
@media (max-height: 700px) {
  .menuCol--works .menuCol__box {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol--works .menuCol__box {
    margin-top: 0;
  }
}
.menuCol--works .menuCol__boxInner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-height: 700px) {
  .menuCol--works .menuCol__boxInner {
    gap: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol--works .menuCol__boxInner {
    gap: 0;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol--works .menuCol__box,
  .menuCol--works .menuCol__list {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .menuCol--company .menuCol__item {
    background-color: #000;
  }
}

.menuCol__worksTtl {
  padding-left: 20px;
}
@media screen and (max-width: 1080px) {
  .menuCol__worksTtl {
    padding-left: 68px;
  }
}
@media screen and (max-width: 768px) {
  .menuCol__worksTtl {
    padding-left: 45px;
  }
}
@media screen and (max-width: 360px) {
  .menuCol__worksTtl {
    padding-left: 30px;
  }
}

/* =======================================
オープン時　下部CTAボタン
======================================= */
.spMenuBtns {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  margin-top: 70px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .spMenuBtns {
    gap: 20px;
    margin-top: 50px;
  }
}
.spMenuBtns a {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 100px;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  max-width: 320px;
  min-height: 60px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .spMenuBtns a {
    font-size: 14px;
    font-weight: 500;
    max-width: 270px;
    min-height: 50px;
  }
}
.spMenuBtns a svg {
  -webkit-transform: translateY(-50%);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}
@media screen and (max-width: 768px) {
  .spMenuBtns a svg {
    right: 15px;
    width: 8.5px;
  }
}

/* =======================================
フォームのあるページでフォームと重なった時非表示
======================================= */
.gnav,
.header__cta {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gnav.is-hidden,
.header__cta.is-hidden {
  opacity: 0;
}

/* =======================================
共通フッター c-footer
======================================= */
.c-footer {
  background: #fff;
  border-top: 1px solid #000;
}
.c-footer__flex {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-footer__flex {
    flex-direction: column;
    padding-bottom: 70px;
  }
}
.c-footer__link {
  display: block;
  max-width: 510px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-footer__link {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 769px) {
  .c-footer__link:hover {
    cursor: pointer;
  }
  .c-footer__link:hover .c-footer__ttl:after {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  .c-footer__link:hover .c-footer__arrow {
    right: 10px;
  }
}
.c-footer__en {
  color: #000;
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: -6px;
}
@media screen and (max-width: 1080px) {
  .c-footer__en {
    font-size: 40px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__en {
    font-size: 35px;
    margin-top: -4px;
  }
}
.c-footer__box {
  align-items: flex-start;
  background-color: #000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: -5px;
  min-height: 230px;
  padding: 40px 30px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .c-footer__box {
    min-height: 210px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__box {
    min-height: 133px;
    padding: 15px;
  }
}
.c-footer__ttl {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .c-footer__ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__ttl {
    font-size: 20px;
  }
}
.c-footer__ttl::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: currentColor;
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0);
  transform-origin: left center;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .c-footer__ttl::after {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
}
.c-footer .c-txt {
  color: #fff;
  line-height: 1.8;
}
@media screen and (max-width: 1080px) {
  .c-footer .c-txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .c-footer .c-txt {
    font-size: 12px;
  }
}
.c-footer__arrow {
  bottom: -20px;
  max-width: 80px;
  position: relative;
  position: absolute;
  right: 30px;
  transition: right 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .c-footer__arrow {
    bottom: -15px;
    max-width: 60px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__arrow {
    bottom: -10px;
    max-width: 40px;
    right: 15px;
  }
}

/* =======================================
c-footer サービス一覧
======================================= */
.c-footerService {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .c-footerService {
    margin-top: 60px;
  }
}
.c-footerService__ttl {
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .c-footerService__ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-footerService__ttl {
    font-size: 25px;
  }
}
.c-footerService .c-txt {
  color: #000;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-footerService .c-txt {
    border-bottom: 1px solid #000;
    margin-top: 5px;
    padding-bottom: 5px;
  }
}
.c-footerService__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  margin-top: 50px;
}
@media screen and (max-width: 1080px) {
  .c-footerService__flex {
    gap: 60px 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-footerService__flex {
    gap: 60px 20px;
    margin-top: 30px;
  }
}
.c-footerService__flex li {
  width: calc((100% - 168px) / 4);
}
@media screen and (max-width: 1080px) {
  .c-footerService__flex li {
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 768px) {
  .c-footerService__flex li {
    width: calc((100% - 20px) / 2);
  }
}

.c-footerServiceLnk {
  background-color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding-bottom: 52px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .c-footerServiceLnk {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
    min-height: 200px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-footerServiceLnk {
    aspect-ratio: 315/288;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
    min-height: initial;
    padding-bottom: 6.6666svw;
  }
}
.c-footerServiceLnk:after {
  -webkit-transform: scale(0, 1);
  -webkit-transform-origin: left top;
  background: #000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-footerServiceLnk:after {
    content: none;
  }
}
@media screen and (min-width: 769px) {
  .c-footerServiceLnk:hover .c-footerServiceLnk__ttl {
    color: #fff;
  }
  .c-footerServiceLnk:hover .hover-path {
    fill: #fff;
  }
  .c-footerServiceLnk:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .c-footerServiceLnk:hover .c-footerServiceLnk__arrow circle {
    fill: #fff;
  }
  .c-footerServiceLnk:hover .c-footerServiceLnk__arrow path {
    stroke: #000;
  }
}
.c-footerServiceLnk .hover-path {
  transition: fill 0.3s ease;
}
.c-footerServiceLnk__ttl {
  align-items: center;
  color: #000;
  display: flex;
  font-size: 24px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.2;
  min-height: 58px;
  text-align: center;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1080px) {
  .c-footerServiceLnk__ttl {
    font-size: 20px;
    min-height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .c-footerServiceLnk__ttl {
    font-size: 3.733vw;
    min-height: 9.066vw;
  }
}
.c-footerServiceLnk__icon {
  aspect-ratio: 100/80;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  max-width: 100px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .c-footerServiceLnk__icon {
    max-width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .c-footerServiceLnk__icon {
    aspect-ratio: 150/120;
    margin-top: 2.666vw;
    max-width: 47.61%;
  }
}
.c-footerServiceLnk__arrow {
  bottom: -20px;
  max-width: 40px;
  position: relative;
  position: absolute;
  right: 20px;
  transition: right 0.3s ease;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .c-footerServiceLnk__arrow {
    bottom: -17.5px;
    max-width: 35px;
    right: 17.5px;
  }
}
@media screen and (max-width: 768px) {
  .c-footerServiceLnk__arrow {
    bottom: -15px;
    max-width: 30px;
    right: 10px;
  }
}
.c-footerServiceLnk__arrow circle {
  transition: fill 0.3s ease;
}
.c-footerServiceLnk__arrow path {
  transition: stroke 0.3s ease;
}

.c-footerServiceList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .c-footerServiceList {
    gap: 30px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .c-footerServiceList {
    gap: 30px;
    margin-top: 30px;
  }
}
.c-footerServiceList__link {
  border-bottom: 1px solid transparent;
  color: #000;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 2px;
  position: relative;
  transition: border 0.2s ease, color 0.2s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .c-footerServiceList__link {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-footerServiceList__link {
    border-bottom: 1px solid #000;
    font-size: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 769px) {
  .c-footerServiceList__link:hover {
    border-bottom: 2px solid #888888;
    color: #888888;
    cursor: pointer;
  }
}
.c-footerServiceList__box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .c-footerServiceList__box ul {
    margin-top: 10px;
  }
}
.c-footerServiceList__box ul li {
  align-items: baseline;
  color: #000;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 10px;
  line-height: 1.4;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .c-footerServiceList__box ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-footerServiceList__box ul li {
    font-size: 14px;
    gap: 5px;
  }
}
.c-footerServiceList__box ul li span {
  -webkit-transform: rotate(45deg);
  background-color: #000;
  height: 6px;
  transform: rotate(45deg);
  width: 6px;
}

/* =======================================
共通フッター footer
======================================= */
.footer {
  background-color: #000;
}
.footer__flex {
  align-self: flex-start;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__flex {
    flex-direction: column;
    gap: 62.5px;
  }
}
.footer__logos {
  flex-shrink: 0;
}
.footer__logo {
  display: block;
  max-width: 342px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .footer__logo {
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 172px;
  }
}
.footer__logo {
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .footer__logo:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}
.footer__name {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .footer__name {
    font-size: 20px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__name {
    font-size: 16px;
    margin-top: 20px;
  }
}
.footer__access {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .footer__access {
    font-size: 14px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer__access {
    margin-top: 10px;
  }
}
.footer__access--br {
  display: none;
}
@media screen and (max-width: 920px) {
  .footer__access--br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer__access--br {
    display: none;
  }
}
.footer__map {
  align-items: center;
  display: flex;
  gap: 4px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer__map {
    gap: 2px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .footer__map:hover {
    cursor: pointer;
  }
  .footer__map:hover .footer__mapTxt::after {
    opacity: 1;
  }
  .footer__map:hover .footer__mapIcon path {
    stroke: #da4345;
    fill: #da4345;
  }
}
.footer__mapIcon {
  display: block;
  flex-shrink: 0;
  transition: fill 0.3s ease, stroke 0.3s ease;
  width: 13px;
}
@media screen and (max-width: 768px) {
  .footer__mapIcon {
    width: 9px;
  }
  .footer__mapIcon path {
    stroke: #da4345;
    fill: #da4345;
  }
}
.footer__mapTxt {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer__mapTxt {
    font-size: 12px;
  }
}
.footer__mapTxt {
  transition: opacity 0.3s ease;
}
.footer__mapTxt:after {
  -webkit-transform: scaleX(1);
  -webkit-transform-origin: left center;
  background-color: #fff;
  bottom: 0px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(1);
  transform-origin: left center;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__mapTxt:after {
    opacity: 1;
  }
}
.footer__insta {
  display: block;
  margin-top: 60px;
  max-width: 40px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .footer__insta {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer__insta {
    margin-top: 30px;
    max-width: 30px;
  }
}
.footer__insta {
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .footer__insta:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}
.footer__insta svg {
  max-width: 40px;
  width: 100%;
}

/* =======================================
共通フッター footer メニュー
======================================= */
.footerNav {
  max-width: 609px;
  width: 100%;
}
.footerNav__box {
  align-self: flex-start;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footerNav__box {
    flex-direction: column;
    gap: 0px;
  }
}

/* ================== 1階層目 ===================== */
.footerNavFirst--col02 .footerNavSecond {
  margin-bottom: 20px;
}
.footerNavFirst__link {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.223;
  margin-bottom: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .footerNavFirst__link {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footerNavFirst__link {
    align-items: center;
    display: flex;
    font-size: 14px;
    gap: 5px;
    margin-bottom: 0;
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.footerNavFirst__link::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #fff;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0);
  transform-origin: left center;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .footerNavFirst__link::after {
    content: none;
  }
}
.footerNavFirst__link:hover::after {
  -webkit-transform: scaleX(1) scaleY(1);
  transform: scaleX(1) scaleY(1);
}

/* ================== 2階層目 ===================== */
.footerNavSecond__link {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.1875;
  margin-left: 20px;
  margin-top: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .footerNavSecond__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footerNavSecond__link {
    align-items: center;
    display: flex;
    font-size: 12px;
    gap: 5px;
    margin-left: 15px;
    margin-top: 0;
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
.footerNavSecond__link::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #fff;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0);
  transform-origin: left center;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .footerNavSecond__link::after {
    content: none;
  }
}
.footerNavSecond__link:hover::after {
  -webkit-transform: scaleX(1) scaleY(1);
  transform: scaleX(1) scaleY(1);
}

/* ================== 3階層目 ===================== */
.footerNavThird__link {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-left: 20px;
  margin-top: 12px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .footerNavThird__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footerNavThird__link {
    margin-left: 30px;
    margin-top: 0;
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
.footerNavThird__link:hover span::after {
  -webkit-transform: scaleX(1) scaleY(1);
  transform: scaleX(1) scaleY(1);
}
.footerNavThird__link span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.1875;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footerNavThird__link span {
    font-size: 12px;
  }
}
.footerNavThird__link span {
  color: #fff;
}
.footerNavThird__link span::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #fff;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0);
  transform-origin: left center;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .footerNavThird__link span::after {
    content: none;
  }
}
.footerNavThird__link::before {
  background-color: #fff;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1px;
  width: 10px;
}

@media screen and (max-width: 768px) {
  .js-footer-second-openMenu {
    display: none;
  }
}
/* =======================================
SP時アコーディオン
======================================= */
.footerNav .menu-accoddion-open > .footerNav__spIcon > .footerNav__spIcon--reverse {
  opacity: 0 !important;
}
.footerNav .footerNav__spIcon {
  display: block;
  max-width: 15px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footerNav .footerNav__spIcon {
    display: none !important;
  }
}
.footerNav .footerNav__spIcon--reverse {
  opacity: 1;
  transition: opacity 0.2s ease;
}

/* =======================================
Parnetバナー
======================================= */
.partner-bannerWrap {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 120px;
}
@media screen and (max-width: 1080px) {
  .partner-bannerWrap {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .partner-bannerWrap {
    margin-top: 0;
  }
}

/* =======================================
トップへ戻るボタン
======================================= */
.totop {
  bottom: 73px;
  mix-blend-mode: difference;
  opacity: 0;
  position: fixed;
  right: 60px;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  visibility: hidden;
  z-index: 90;
}
@media screen and (max-width: 1080px) {
  .totop {
    bottom: 60px;
    right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .totop {
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 360px) {
  .totop {
    bottom: 10px;
    right: 10px;
  }
}
.totop__btn {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  height: 80px;
  justify-content: center;
  overflow: hidden;
  width: 80px;
}
@media screen and (max-width: 1080px) {
  .totop__btn {
    height: 70px;
    width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .totop__btn {
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 360px) {
  .totop__btn {
    height: 40px;
    width: 40px;
  }
}
.totop::before {
  -webkit-transform: scale(0);
  -webkit-transform-origin: center;
  background: #fff;
  border-radius: 50%;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: scale(0);
  transform-origin: center;
  transition: -webkit-transform 0.15s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.15s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.15s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.15s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 769px) {
  .totop:hover {
    cursor: pointer;
  }
  .totop:hover::before {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.totop svg {
  mix-blend-mode: difference;
  position: relative;
  width: 26px;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .totop svg {
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .totop svg {
    width: 16px;
  }
}
@media screen and (max-width: 360px) {
  .totop svg {
    width: 12px;
  }
}
.totop svg path {
  stroke: #fff;
  stroke-width: 2;
}

.show {
  opacity: 1;
  visibility: visible;
}

.copyright {
  border-top: 1px solid #4a4a4a;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .copyright {
    padding: 18px;
  }
}
.copyright__txt {
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .copyright__txt {
    font-size: 10px;
  }
}

/* ===== Page ===== */
/* =======================================
h1タグ用
======================================= */
.visually-hidden {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* =======================================
メインビジュアル
======================================= */
.mv {
  padding-top: 5.208vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mv {
    background: #fff;
  }
}
.mv::after {
  webkit-mask-image: linear-gradient(to bottom, black calc(100% - 153px), transparent calc(100% - 153px));
  -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 153px), transparent calc(100% - 153px));
  background: #fff;
  content: "";
  height: 100%;
  left: 0;
  mask-image: linear-gradient(to bottom, black calc(100% - 153px), transparent calc(100% - 153px));
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1700px) {
  .mv {
    padding-top: 7.208vw;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .mv::after {
    -webkit-mask-image: none;
    background: #000;
    bottom: 0;
    content: "";
    height: 40vw;
    left: 0;
    mask-image: none;
    position: absolute;
    top: initial;
    width: 100%;
    z-index: 1;
  }
}
.mv__inner {
  display: flex;
  gap: 3.125vw;
  margin-left: auto;
  width: 96.66%;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    padding-top: 18.66vw;
    width: 89.33%;
  }
}
.mv__content {
  padding-top: 6.406vw;
  position: relative;
  width: 52.2%;
}
@media screen and (max-width: 1570px) {
  .mv__content {
    padding-top: 3.406vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__content {
    padding-top: 0;
    width: 100%;
  }
}
.mv__title {
  font-size: 2.1875vw;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 8vw;
  }
}
.mv__lead {
  font-size: 0.875vw;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 1.823vw;
}
@media screen and (max-width: 768px) {
  .mv__lead {
    font-size: 3.2vw;
    margin-top: 2.666vw;
    max-width: 67vw;
  }
}
.mv .mvThumbs {
  display: flex;
  gap: 2.9vw;
  justify-content: space-between;
  margin-top: 2.083vw;
}
.mv .mvThumbs__item {
  position: relative;
  width: calc((100% - 8.7vw) / 4);
}
.mv .mvThumbs__en {
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: left top;
  font-family: var(--font-en);
  font-size: 1.458vw;
  font-style: italic;
  font-weight: 700;
  left: 0.833vw;
  line-height: 1;
  position: absolute;
  top: -1.042vw;
  transform: rotate(90deg);
  transform-origin: left top;
  z-index: 2;
}
.mv .mvThumbs__bigEn {
  -webkit-transform: rotate(90deg);
  -webkit-transform-origin: left top;
  font-family: var(--font-en);
  font-size: 3.125vw;
  font-style: italic;
  font-weight: 700;
  left: 2.119vw;
  line-height: 1;
  position: absolute;
  top: -1.771vw;
  transform: rotate(90deg);
  transform-origin: left top;
  z-index: 2;
}
.mv .mvThumbs__link {
  display: block;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .mv .mvThumbs__link:hover {
    cursor: pointer;
  }
  .mv .mvThumbs__link:hover .mvThumbs__cap::after {
    opacity: 1;
  }
  .mv .mvThumbs__link:hover .mvThumbs__right-cap::after {
    opacity: 1;
  }
}
.mv .mvThumbs__img {
  aspect-ratio: 1/1;
  background: #fff;
  margin: 0;
  overflow: hidden;
}
.mv .mvThumbs__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.mv .mvThumbs__capWrap {
  align-items: center;
  bottom: -2.855vw;
  display: flex;
  gap: 30px;
  opacity: 1;
  position: absolute;
  right: 2.083vw;
}
@media screen and (max-width: 1200px) {
  .mv .mvThumbs__capWrap {
    bottom: -3.855vw;
    gap: 20px;
  }
}
.mv .mvThumbs__cap {
  color: #fff;
  font-size: clamp(10px, 0.833vw, 16px);
  margin-top: 0.521vw;
  mix-blend-mode: difference;
  position: relative;
  text-align: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  /* 下線アニメーション */
}
.mv .mvThumbs__cap::after {
  background-color: #fff;
  bottom: -3px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.15s ease; /* 横0.1s、縦も同時に0.1sで出現 */
  width: 100%;
  will-change: transform;
}
.mv__right {
  flex-shrink: 0;
  position: relative;
  width: 43.12%;
}
.mv__rightInner {
  background-color: #fff;
}

.mvThumbs__right-cap {
  color: #fff;
  font-size: clamp(10px, 0.833vw, 16px);
  margin-top: 0;
  opacity: 1;
  position: relative;
  text-align: right;
  /* 下線アニメーション */
}
.mvThumbs__right-cap::after {
  background-color: #fff;
  bottom: -3px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.15s ease; /* 横0.1s、縦も同時に0.1sで出現 */
  width: 100%;
  will-change: transform;
}

/* =======================================
  一時停止ボタン
======================================= */
@media screen and (min-width: 769px) {
  .mvThumbs__capWrap-bgn:hover + .mvThumbs__right-cap::after {
    content: none !important;
  }
}

.mvTogglePlay {
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  gap: 5px;
  padding: 5px 20px;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 769px) {
  .mvTogglePlay:hover {
    background-color: #000;
    cursor: pointer;
    opacity: 1;
  }
  .mvTogglePlay:hover .mvTogglePlay__txt {
    color: #fff;
  }
  .mvTogglePlay:hover .mvIcon {
    fill: #fff;
  }
}
@media screen and (max-width: 1080px) {
  .mvTogglePlay {
    padding: 3px 15px;
  }
}
@media screen and (max-width: 768px) {
  .mvTogglePlay {
    display: none;
  }
}
.mvTogglePlay__txt {
  color: #000;
  font-family: var(--font-en);
  font-size: clamp(12px, 1.33vw, 16px);
  font-weight: 700;
  transition: color 0.3s ease;
}

.mvIcon {
  fill: #000;
  display: block;
  transition: fill 0.3s ease;
  width: 18px;
}
@media screen and (max-width: 1080px) {
  .mvIcon {
    width: 15px;
  }
}

/* 初期状態：再生中 → Pause（||）を出す */
.mvIcon--pause {
  display: block;
}

.mvIcon--play {
  display: none;
}

/* 停止中（.is-paused がラッパに付いたとき → Play▲を出す） */
.mvThumbs__capWrap-bgn.is-paused .mvIcon--pause {
  display: none;
}

.mvThumbs__capWrap-bgn.is-paused .mvIcon--play {
  display: block;
}

/* =======================================
mv 画像切り替えアニメーション（黒帯は維持 / hover画像切替は無し）
======================================= */
/* MV用サムネ共通ベース（左4つ + 右大サムネ） */
.mvThumbs__img.js-hoverSwap {
  overflow: hidden;
  position: relative;
}
.mvThumbs__img.js-hoverSwap img {
  -o-object-fit: cover;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

/* hover時は「薄くなる」だけ（画像切替はしない） */
.mvThumbs__img.js-hoverSwap .img-main {
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .mvThumbs__img.js-hoverSwap .img-main:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}

/* 黒い帯（擬似要素） */
.mvThumbs__img.js-hoverSwap::after {
  -webkit-transform: scaleX(0);
  -webkit-transform-origin: right center;
  background-color: #000;
  content: "";
  display: block;
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right center;
}

/* 自動切り替え時だけ付くクラス */
.mvThumbs__img.js-hoverSwap.is-wiping::after {
  -webkit-animation: mvWipeRightToLeft 0.6s ease forwards;
  animation: mvWipeRightToLeft 0.6s ease forwards;
}

/* 右→左にスッと走るアニメーション */
@-webkit-keyframes mvWipeRightToLeft {
  0% {
    -webkit-transform-origin: right center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: right center;
  }
  50% {
    -webkit-transform-origin: right center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transform-origin: right center;
  }
  51% {
    -webkit-transform-origin: left center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transform-origin: left center;
  }
  100% {
    -webkit-transform-origin: left center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: left center;
  }
}
@keyframes mvWipeRightToLeft {
  0% {
    -webkit-transform-origin: right center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: right center;
  }
  50% {
    -webkit-transform-origin: right center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transform-origin: right center;
  }
  51% {
    -webkit-transform-origin: left center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transform-origin: left center;
  }
  100% {
    -webkit-transform-origin: left center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: left center;
  }
}
/* =======================================
 SP　メインビジュアル　スライダー
======================================= */
.mvSwiper {
  padding-bottom: 14.26vw;
  position: relative;
  z-index: 2;
}
.mvSwiper__wrap {
  margin-left: auto;
  margin-right: initial;
  margin-top: 5.333vw;
  overflow: visible;
  width: 89.33%;
}
.mvSwiper__img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.mvSwiper__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.mvSwiper__box {
  position: relative;
}
.mvSwiper__en {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  color: #000;
  font-family: var(--font-en);
  font-size: 13.33vw;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  writing-mode: vertical-rl;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mvSwiper__en {
    line-height: 1.4;
  }
}
.mvSwiper__en--work {
  right: 0;
  top: -51vw;
}
.mvSwiper__en--graphic {
  right: 0;
  top: -18vw;
}
.mvSwiper__en--web {
  right: 0;
  top: 4vw;
}
.mvSwiper__en--movie {
  right: 0;
  top: -6vw;
}
.mvSwiper__en--sign {
  right: 0;
  top: -42vw;
}
.mvSwiper__link {
  align-items: center;
  display: flex;
  gap: 2.666vw;
  margin-left: auto;
  padding-right: 5.333vw;
  padding-top: 2.666vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mvSwiper__link span {
  color: #fff;
  font-size: 3.733vw;
  text-decoration: underline;
  text-underline-offset: 1vw;
}
.mvSwiper__link svg {
  flex-shrink: 0;
  width: 4vw;
}
.mvSwiper__ens {
  -webkit-transform: rotate(90deg);
  display: flex;
  gap: 5.333vw;
  left: -27vw;
  position: absolute;
  top: 29vw;
  transform: rotate(90deg);
  z-index: 2;
}
.mvSwiper__ens button {
  color: #888888;
  font-family: var(--font-en);
  font-size: 2.666vw;
  line-height: 1;
  padding: 2vw 0;
  position: relative;
}
.mvSwiper__ens button::before {
  -webkit-transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 0.8vw;
  left: 50%;
  position: absolute;
  top: 0.5vw;
  transform: translateX(-50%);
  width: 0.8vw;
}
.mvSwiper__ens button.is-active {
  color: #000;
}
.mvSwiper__ens button.is-active::before {
  background: #000;
}

/* =======================================
NEW WORK topNewWork
======================================= */
.topNewWork__ttl-sp {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .topNewWork__ttl-sp {
    clip: initial;
    height: initial;
    margin: initial;
    padding: initial;
    position: relative;
    white-space: initial;
    width: initial;
  }
}

.topNewWork {
  margin-top: -153px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .topNewWork {
    margin-top: 0;
  }
}
.topNewWork::before {
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .topNewWork::before {
    background-color: rgb(0, 0, 0);
  }
}
.topNewWork__inner {
  align-items: center;
  display: flex;
  gap: 68px;
  justify-content: flex-end;
  padding-bottom: 120px;
  padding-top: 50px;
  position: relative;
  width: 89.58%;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .topNewWork__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .topNewWork__inner {
    align-items: center;
    display: block;
    padding-bottom: 60px;
    padding-top: 30px;
    width: 100%;
  }
}
.topNewWork__bg {
  -o-object-fit: cover;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.topNewWork__bg img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.topNewWork__dots {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.topNewWork__dot {
  -webkit-animation: scrollDots 1.4s infinite ease-in-out;
  animation: scrollDots 1.4s infinite ease-in-out;
  background-color: #fff;
  height: 6px;
  opacity: 0.2;
  width: 6px;
}
.topNewWork__dot:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.topNewWork__dot:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.topNewWork__dot:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
@-webkit-keyframes scrollDots {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes scrollDots {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
.topNewWork .topNewWorkSwiper {
  direction: rtl;
  margin-top: 157px;
}
@media screen and (max-width: 768px) {
  .topNewWork .topNewWorkSwiper {
    direction: initial;
    height: 100%;
    margin-top: 0;
  }
}
.topNewWork__imgs {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .topNewWork__imgs {
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) {
  .topNewWork .swiper-slide {
    width: 250px;
  }
}
.topNewWork__link {
  display: block;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (min-width: 769px) {
  .topNewWork__link:hover {
    cursor: pointer;
    opacity: 1;
  }
  .topNewWork__link:hover .topNewWork__img svg {
    right: 5px;
  }
  .topNewWork__link:hover .topNewWork__img::after {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .topNewWork__link:hover .topNewWork__img::before {
    -webkit-transform: translate(-50%, -50%) rotate(-15deg);
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
}
.topNewWork__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.topNewWork__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.topNewWork__img svg {
  bottom: 15px;
  position: absolute;
  right: 15px;
  transition: right 0.2s ease;
  width: 17px;
  z-index: 4;
}
@media screen and (max-width: 1080px) {
  .topNewWork__img svg {
    width: 14px;
  }
}
@media screen and (max-width: 768px) {
  .topNewWork__img svg {
    width: 18px;
  }
}
@media screen and (max-width: 560px) {
  .topNewWork__img svg {
    width: 14px;
  }
}
.topNewWork__img::after {
  background: rgba(0, 0, 0, 0);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.2s ease;
  width: 100%;
  z-index: 2;
}
.topNewWork__img::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  color: #fff;
  content: "Check!";
  direction: ltr;
  font-family: var(--font-en);
  font-size: 32px;
  left: 50%;
  line-height: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .topNewWork__img::before {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .topNewWork__img::before {
    content: none;
  }
}
.topNewWork__cat {
  background-color: #fff;
  border-radius: 4px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  margin-right: auto;
  margin-top: 10px;
  padding: 4px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .topNewWork__cat {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .topNewWork__cat {
    border-radius: 2.5px;
    font-size: 10px;
  }
}
.topNewWork__subttl {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #fff;
  direction: ltr;
  display: -webkit-box;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  overflow: hidden;
  text-align: left;
}
@media screen and (max-width: 1080px) {
  .topNewWork__subttl {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .topNewWork__subttl {
    font-size: 16px;
  }
}
.topNewWork__subCat {
  color: #fff;
  direction: ltr;
  font-size: 14px;
  font-weight: 400;
  margin-right: auto;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .topNewWork__subCat {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .topNewWork__subCat {
    font-size: 12px;
  }
}
.topNewWork__txts {
  align-items: flex-end;
  display: flex;
  gap: 75px;
  margin-top: 105px;
}
@media screen and (max-width: 1080px) {
  .topNewWork__txts {
    gap: 20px;
    margin-top: 180px;
  }
}
@media screen and (max-width: 768px) {
  .topNewWork__txts {
    gap: 0;
    justify-content: center;
    margin-top: 30px;
  }
}
.topNewWork_swiperNav {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 40px;
}
.topNewWork_swiperNav button {
  padding-left: 6px;
  padding-right: 6px;
}
.topNewWork_swiperNav svg {
  width: 10px;
}
.topNewWork_swiperNav svg path {
  fill: transparent;
}
.topNewWork_swiperNav .topNewWorks-swiper-button-prev {
  left: 0;
  position: relative;
  transition: left 0.1s ease;
}
@media screen and (min-width: 769px) {
  .topNewWork_swiperNav .topNewWorks-swiper-button-prev:hover {
    cursor: pointer;
    left: -8px;
  }
}
.topNewWork_swiperNav .topNewWorks-swiper-button-next {
  position: relative;
  right: 0;
  transition: right 0.1s ease;
}
@media screen and (min-width: 769px) {
  .topNewWork_swiperNav .topNewWorks-swiper-button-next:hover {
    cursor: pointer;
    right: -8px;
  }
}
.topNewWork__txtsBox {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
@media screen and (max-width: 1080px) {
  .topNewWork__txtsBox {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .topNewWork__txtsBox {
    gap: 0;
  }
}
.topNewWork__ttl {
  color: #fff;
  font-family: var(--font-en);
  font-size: 32px;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .topNewWork__ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .topNewWork__ttl {
    font-size: 30px;
    text-align: center;
  }
}

/* =======================================
STRENGTH フロンティアの強み
======================================= */
.topStrength {
  background: #fff;
}
.topStrength__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .topStrength__list {
    gap: 30px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topStrength__list {
    gap: 20px;
    margin-top: 30px;
  }
}
.topStrength__list li:nth-of-type(odd) .topStrength__box::before {
  left: 0;
}
.topStrength__list li:nth-of-type(odd) .topStrength__box:after {
  left: 0;
}
@media screen and (max-width: 768px) {
  .topStrength__list li:nth-of-type(odd) .topStrength__imgWrap {
    padding-left: 30px;
  }
  .topStrength__list li:nth-of-type(odd) .topStrength__txtsBox {
    padding-left: 30px;
  }
  .topStrength__list li:nth-of-type(odd) .topStrength__txtsBox .topStrength__ttl {
    margin-left: 0;
  }
  .topStrength__list li:nth-of-type(odd) .topStrength__txtsBox .c-txt {
    margin-left: 0;
  }
}
.topStrength__list li:nth-of-type(even) .topStrength__box {
  flex-direction: row-reverse;
}
.topStrength__list li:nth-of-type(even) .topStrength__box .topStrength__nums {
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
  width: 100%;
}
.topStrength__list li:nth-of-type(even) .topStrength__box::before {
  right: 0;
}
.topStrength__list li:nth-of-type(even) .topStrength__box:after {
  right: 0;
}
.topStrength__list li:nth-of-type(even) .topStrength__box .topStrength__nums {
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .topStrength__list li:nth-of-type(even) .topStrength__box .topStrength__imgWrap {
    padding-right: 30px;
  }
  .topStrength__list li:nth-of-type(even) .topStrength__box .topStrength__txtsBox {
    padding-right: 30px;
  }
  .topStrength__list li:nth-of-type(even) .topStrength__box .topStrength__txtsBox .topStrength__ttl {
    margin-right: 0;
  }
  .topStrength__list li:nth-of-type(even) .topStrength__box .topStrength__txtsBox .c-txt {
    margin-right: 0;
  }
}
.topStrength__box {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topStrength__box {
    flex-direction: column !important;
    gap: 20px;
    padding-bottom: 30px;
  }
}
.topStrength__box::before {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 83.75%;
  position: absolute;
  width: 1px;
}
@media screen and (max-width: 1080px) {
  .topStrength__box::before {
    height: 87.065%;
  }
}
@media screen and (max-width: 768px) {
  .topStrength__box::before {
    height: 90.38%;
  }
}
.topStrength__box:after {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  width: 97.27%;
}
@media screen and (max-width: 1080px) {
  .topStrength__box:after {
    width: 98.635%;
  }
}
@media screen and (max-width: 768px) {
  .topStrength__box:after {
    width: 100%;
  }
}
.topStrength__txtsBox {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .topStrength__txtsBox {
    padding-left: 0;
    padding-right: 0;
  }
}
.topStrength__txts {
  width: 54.5454%;
}
@media screen and (max-width: 1080px) {
  .topStrength__txts {
    width: 77.2727%;
  }
}
@media screen and (max-width: 768px) {
  .topStrength__txts {
    margin-bottom: 0;
    width: 100%;
  }
}
.topStrength__nums {
  align-items: flex-start;
  display: flex;
}
.topStrength__num-txt {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  padding-top: 18px;
}
@media screen and (max-width: 1080px) {
  .topStrength__num-txt {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .topStrength__num-txt {
    font-size: 10px;
  }
}
.topStrength__slash {
  display: block;
  margin-left: -15px;
  max-width: 37px;
  padding-top: 18px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .topStrength__slash {
    margin-left: -11.25px;
    max-width: 28px;
  }
}
@media screen and (max-width: 768px) {
  .topStrength__slash {
    margin-left: -7.5px;
    max-width: 27px;
  }
}
.topStrength__slash svg {
  width: 100%;
}
.topStrength__num {
  display: block;
  font-family: var(--font-num);
  font-size: 84px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (max-width: 1080px) {
  .topStrength__num {
    font-size: 65px;
  }
}
@media screen and (max-width: 768px) {
  .topStrength__num {
    font-size: 60px;
    line-height: 1.425;
  }
}
.topStrength__ttl {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9px;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .topStrength__ttl {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 14.5px;
  }
}
@media screen and (max-width: 768px) {
  .topStrength__ttl {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 20px;
    max-width: 90.17%;
  }
}
.topStrength .c-txt {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  max-width: 480px;
}
@media screen and (max-width: 1080px) {
  .topStrength .c-txt {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .topStrength .c-txt {
    margin-top: 10px;
    max-width: 90.17%;
  }
}
.topStrength__imgWrap {
  margin-top: 34px;
  width: 45.4545%;
}
@media screen and (max-width: 1080px) {
  .topStrength__imgWrap {
    margin-top: 17px;
    width: 72.7273%;
  }
}
@media screen and (max-width: 768px) {
  .topStrength__imgWrap {
    margin-top: 0;
    width: 100%;
  }
}
.topStrength__img {
  aspect-ratio: 500/310;
  border-radius: 100px 0 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .topStrength__img {
    aspect-ratio: 610/378;
    border-radius: 15vw 0 0 0;
  }
}
.topStrength__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

/* =======================================
SERVICE サービス紹介
======================================= */
.topService {
  background-color: #000;
  position: relative;
}
.topService__dots {
  -webkit-transform: translateY(-50%);
  align-items: center;
  display: flex;
  gap: 60px;
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 1700px) {
  .topService__dots {
    gap: 3vw;
    right: 3vw;
  }
}
@media screen and (max-width: 1500px) {
  .topService__dots {
    display: none;
  }
}
.topService__dot {
  -webkit-animation: scrollDots 1.4s infinite ease-in-out;
  animation: scrollDots 1.4s infinite ease-in-out;
  background-color: #fff;
  height: 10px;
  opacity: 0.2;
  width: 10px;
}
.topService__dot:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.topService__dot:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.topService__dot:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
@keyframes scrollDots {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
.topService__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  overflow: hidden;
  width: 100%;
}
.topService__ttls {
  position: absolute;
  right: 0;
  top: 120px;
  width: calc(53.13% - 60px);
}
@media (max-height: 900px) {
  .topService__ttls {
    top: 30px;
    width: calc(53.13% - 30px);
  }
}
@media screen and (max-width: 1080px) {
  .topService__ttls {
    top: 50px;
    width: calc(53.13% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .topService__ttls {
    position: relative;
    right: initial;
    top: initial;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.topService .c-btn {
  border: 1px solid #fff;
}
.topService .c-ttl,
.topService .c-subTtl {
  color: #fff;
}

.topServiceSwiper__flex {
  display: flex;
  justify-content: center;
}
.topServiceSwiper__imgWrap {
  position: relative;
  width: 46.87%;
}
@media (max-height: 900px) {
  .topServiceSwiper__imgWrap {
    width: 35.87%;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__imgWrap {
    width: 100%;
  }
}
.topServiceSwiper__en {
  -webkit-transform: rotate(90deg);
  font-family: var(--font-en);
  font-size: 7.2916vw;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  transform: rotate(90deg);
  z-index: 2;
}
@media screen and (min-width: 1920px) {
  .topServiceSwiper__en {
    font-size: 140px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__en {
    font-size: 13.33vw;
  }
}
.topServiceSwiper__en--01 {
  left: -9.5vw;
  top: 11.5vw;
}
@media screen and (min-width: 1920px) {
  .topServiceSwiper__en--01 {
    left: -180px;
    top: 220px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__en--01 {
    left: -17.5vw;
    top: 20.5vw;
  }
}
.topServiceSwiper__en--02 {
  left: -4.5vw;
  top: 5.5vw;
}
@media screen and (min-width: 1920px) {
  .topServiceSwiper__en--02 {
    left: -60px;
    top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__en--02 {
    left: -7.5vw;
    top: 9.5vw;
  }
}
.topServiceSwiper__en--03 {
  left: -6.5vw;
  top: 8.5vw;
}
@media screen and (min-width: 1920px) {
  .topServiceSwiper__en--03 {
    left: -110px;
    top: 160px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__en--03 {
    left: -11.5vw;
    top: 14.5vw;
  }
}
.topServiceSwiper__en--04 {
  left: -16vw;
  top: 18.5vw;
}
@media screen and (min-width: 1920px) {
  .topServiceSwiper__en--04 {
    left: -305px;
    top: 350px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__en--04 {
    left: -30vw;
    top: 33.5vw;
  }
}
.topServiceSwiper__img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.topServiceSwiper__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.topServiceSwiper__txts {
  padding-left: 60px;
  padding-right: 40px;
  width: 53.13%;
}
@media (max-height: 900px) {
  .topServiceSwiper__txts {
    padding-left: 30px;
    padding-right: 30px;
    width: 42.13%;
  }
}
@media screen and (max-width: 1080px) {
  .topServiceSwiper__txts {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__txts {
    margin-top: 60px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
@media (max-height: 900px) {
  .topServiceSwiper .topServiceSwiper__en--01 {
    font-size: 5.2vw;
    left: -7vw;
    top: 8vw;
  }
}
@media (max-height: 900px) {
  .topServiceSwiper .topServiceSwiper__en--02 {
    font-size: 5.2vw;
    left: -2.5vw;
    top: 4vw;
  }
}
@media (max-height: 900px) {
  .topServiceSwiper .topServiceSwiper__en--03 {
    font-size: 5.2vw;
    left: -4.5vw;
    top: 6vw;
  }
}
@media (max-height: 900px) {
  .topServiceSwiper .topServiceSwiper__en--04 {
    font-size: 5.2vw;
    left: -11.3vw;
    top: 13vw;
  }
}
.topServiceSwiper__txtsBox {
  margin-bottom: 40px;
  max-width: 550px;
  position: relative;
  width: 100%;
}
@media (max-height: 900px) {
  .topServiceSwiper__txtsBox {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__txtsBox {
    margin-bottom: 0;
    max-width: 100%;
  }
}
.topServiceSwiper__num {
  position: absolute;
  top: -85px;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .topServiceSwiper__num {
    top: -70px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__num {
    top: -40px;
  }
}
.topServiceSwiper__num svg {
  width: 100%;
}
.topServiceSwiper__num--01 {
  max-width: 120px;
  right: 43px;
}
@media screen and (max-width: 1080px) {
  .topServiceSwiper__num--01 {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__num--01 {
    max-width: 90px;
    right: 0;
  }
}
.topServiceSwiper__num--02 {
  max-width: 140px;
  right: 13px;
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__num--02 {
    max-width: 105px;
    right: 0;
  }
}
.topServiceSwiper__num--03 {
  max-width: 140px;
  right: 13px;
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__num--03 {
    max-width: 105px;
    right: 0;
  }
}
.topServiceSwiper__num--04 {
  max-width: 140px;
  right: 13px;
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__num--04 {
    max-width: 105px;
    right: 0;
  }
}
.topServiceSwiper__ttl {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 320px;
  position: relative;
  z-index: 2;
}
@media (max-height: 900px) {
  .topServiceSwiper__ttl {
    margin-top: 210px;
  }
}
@media screen and (max-width: 1080px) {
  .topServiceSwiper__ttl {
    font-size: 30px;
    margin-top: 230px;
  }
}
@media screen and (max-width: 768px) {
  .topServiceSwiper__ttl {
    font-size: 25px;
    margin-top: 0;
  }
}
.topServiceSwiper .topService-swiper-pagination {
  align-items: center;
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  overflow: visible;
  padding-bottom: 60px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-height: 900px) {
  .topServiceSwiper .topService-swiper-pagination {
    margin-top: 30px;
  }
}
.topServiceSwiper .swiper-pagination-bullet {
  align-items: center;
  background: transparent;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  cursor: pointer;
  display: block;
  display: inline-flex;
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 400;
  height: auto;
  justify-content: center;
  margin: 0 !important;
  opacity: 1;
  padding: 0;
  position: relative;
  width: auto;
}
.topServiceSwiper .swiper-pagination-bullet::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #fff;
  bottom: -10px;
  content: "";
  height: 2px; /* 最終の太さ=2px */
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0); /* 横0%、縦0%（見えない） */
  transform-origin: left center; /* 横=左起点／縦=中央起点で上下に広がる */
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease; /* 横0.1s、縦も同時に0.1sで出現 */
  width: 100%;
  will-change: transform;
}
@media screen and (min-width: 769px) {
  .topServiceSwiper .swiper-pagination-bullet:hover::after {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1); /* 横: 左→右に伸びる／縦: 0→2pxへ上下に広がる */
  }
}
.topServiceSwiper .swiper-pagination-bullet-active {
  font-weight: 700;
  opacity: 1;
}
.topServiceSwiper .swiper-pagination-bullet-active::after {
  -webkit-transform: scaleX(1) scaleY(1);
  -webkit-transform-origin: left center;
  background-color: #fff;
  bottom: -10px;
  content: "";
  height: 2px; /* 最終の太さ=2px */
  left: 0;
  position: absolute;
  transform: scaleX(1) scaleY(1); /* 横0%、縦0%（見えない） */
  transform-origin: left center; /* 横=左起点／縦=中央起点で上下に広がる */
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease; /* 横0.1s、縦も同時に0.1sで出現 */
  width: 100%;
  will-change: transform;
}

.topService .c-txt {
  color: #fff;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
@media (max-height: 900px) {
  .topService .c-txt {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1080px) {
  .topService .c-txt {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .topService .c-txt {
    margin-top: 20px;
  }
}
.topService .c-btn {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
@media (max-height: 900px) {
  .topService .c-btn {
    margin-top: 30px;
    min-height: 65px;
    min-width: 285px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .topService .c-btn svg {
    right: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .topService .c-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .topService .c-btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
@media (max-height: 900px) {
  .topService .c-btn span {
    font-size: 20px;
  }
}

/* =======================================
スクロールアニメーション用
======================================= */
body.is-scroll-locked {
  left: 0;
  overflow: hidden; /* ★追記：慣性スクロールの暴発抑制 */
  position: fixed;
  right: 0;
  width: 100%;
}

/* =======================================
    SP表示
    ======================================= */
.topServiceList {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 30px;
}

/* =======================================
topWork  制作実績
======================================= */
.topWork {
  position: relative;
  z-index: 0;
}
.topWork::before {
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.topWork__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.topWork__bg img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.topWork .c-inner-md {
  position: relative;
  z-index: 3;
}
.topWork__ttls {
  position: relative;
  z-index: 3;
}
.topWork .c-ttl,
.topWork .c-subTtl {
  color: #fff;
  text-align: center;
}
.topWork .c-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .topWork .c-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .topWork .c-btn {
    margin-top: 30px;
  }
}
.topWork__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .topWork__list {
    gap: 10px;
    margin-top: 45px;
  }
}
.topWork__list li {
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1080px) {
  .topWork__list li {
    width: calc((100% - 30px) / 4);
  }
}
.topWork__link {
  background-color: #000;
  display: block;
  flex-grow: 1;
  padding-bottom: 40px;
  padding-top: 40px;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 1500px) {
  .topWork__link {
    padding-bottom: 2.666vw;
    padding-top: 2.666vw;
  }
}
@media screen and (max-width: 768px) {
  .topWork__link {
    padding-bottom: 5.333vw;
    padding-top: 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .topWork__link:hover {
    cursor: pointer;
    opacity: 1;
  }
  .topWork__link:hover .topNewWork__img svg {
    right: 5px;
  }
  .topWork__link:hover .topNewWork__img::after {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .topWork__link:hover .topNewWork__img::before {
    -webkit-transform: translate(-50%, -50%) rotate(-15deg);
    transform: translate(-50%, -50%) rotate(-15deg);
  }
}
.topWork__imgWrap {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 75.75%;
}
@media screen and (max-width: 768px) {
  .topWork__imgWrap {
    width: 85.96%;
  }
}
.topWork__en {
  -webkit-transform: rotate(90deg) translateZ(0);
  color: #fff;
  font-family: var(--font-en);
  font-size: 50px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  transform: rotate(90deg) translateZ(0);
  z-index: 14;
}
@media screen and (max-width: 1500px) {
  .topWork__en {
    font-size: 3.3333vw;
  }
}
@media screen and (max-width: 768px) {
  .topWork__en {
    font-size: 12vw;
  }
}
@media screen and (max-width: 560px) {
  .topWork__en {
    font-size: 11vw;
  }
}
.topWork__en--graphic {
  left: -107px;
  top: 40px;
}
@media screen and (max-width: 1500px) {
  .topWork__en--graphic {
    left: -7.133vw;
    top: 2.667vw;
  }
}
@media screen and (max-width: 768px) {
  .topWork__en--graphic {
    left: -21.5vw;
    top: 12.5vw;
  }
}
@media screen and (max-width: 560px) {
  .topWork__en--graphic {
    left: -19.5vw;
    top: 11.5vw;
  }
}
.topWork__en--web {
  left: -70px;
  top: 1px;
}
@media screen and (max-width: 1500px) {
  .topWork__en--web {
    left: -4.333vw;
    top: -0.267vw;
  }
}
@media screen and (max-width: 768px) {
  .topWork__en--web {
    left: -13vw;
    top: 3.5vw;
  }
}
@media screen and (max-width: 560px) {
  .topWork__en--web {
    left: -12vw;
    top: 3.5vw;
  }
}
.topWork__en--movie {
  left: -84px;
  top: 13px;
}
@media screen and (max-width: 1500px) {
  .topWork__en--movie {
    left: -5.6vw;
    top: 0.867vw;
  }
}
@media screen and (max-width: 768px) {
  .topWork__en--movie {
    left: -16.5vw;
    top: 8.5vw;
  }
}
@media screen and (max-width: 560px) {
  .topWork__en--movie {
    left: -15.5vw;
    top: 7.5vw;
  }
}
.topWork__en--sign {
  left: -151px;
  top: 86px;
}
@media screen and (max-width: 1500px) {
  .topWork__en--sign {
    left: -10vw;
    top: 5.467vw;
  }
}
@media screen and (max-width: 768px) {
  .topWork__en--sign {
    left: -32vw;
    top: 23.5vw;
  }
}
@media screen and (max-width: 560px) {
  .topWork__en--sign {
    left: -30vw;
    top: 21.5vw;
  }
}
.topWork__txts {
  margin-left: auto;
  margin-right: auto;
  width: 75.75%;
}
@media screen and (max-width: 768px) {
  .topWork__txts {
    width: 85.96%;
  }
}
.topWork__link {
  display: block;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (min-width: 769px) {
  .topWork__link:hover {
    cursor: pointer;
    opacity: 1;
  }
  .topWork__link:hover .topWork__img svg {
    right: 5px;
  }
  .topWork__link:hover .topWork__img::after {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .topWork__link:hover .topWork__img::before {
    -webkit-transform: translate(-50%, -50%) rotate(-15deg);
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  .topWork__link:hover .topWork__subttl {
    opacity: 0.6;
  }
  .topWork__link:hover .topWork__subCat {
    opacity: 0.6;
  }
}
.topWork__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.topWork__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.topWork__img svg {
  bottom: 15px;
  position: absolute;
  right: 15px;
  transition: right 0.2s ease;
  width: 17px;
  z-index: 4;
}
@media screen and (max-width: 1080px) {
  .topWork__img svg {
    width: 14px;
  }
}
@media screen and (max-width: 768px) {
  .topWork__img svg {
    width: 18px;
  }
}
@media screen and (max-width: 560px) {
  .topWork__img svg {
    width: 14px;
  }
}
.topWork__img::after {
  background: rgba(0, 0, 0, 0);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.2s ease;
  width: 100%;
  z-index: 2;
}
.topWork__img::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  color: #fff;
  content: "Check!";
  font-family: var(--font-en);
  font-size: 32px;
  left: 50%;
  line-height: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .topWork__img::before {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .topWork__img::before {
    content: none;
  }
}
.topWork__cat {
  background-color: #fff;
  border-radius: 4px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  margin-right: auto;
  margin-top: 10px;
  padding: 4px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .topWork__cat {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .topWork__cat {
    border-radius: 2.5px;
    font-size: 10px;
  }
}
.topWork__subttl {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #fff;
  display: -webkit-box;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  overflow: hidden;
  text-align: left;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 1080px) {
  .topWork__subttl {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .topWork__subttl {
    font-size: 16px;
  }
}
.topWork__subCat {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-right: auto;
  margin-top: 10px;
  transition: opacity 0.2s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .topWork__subCat {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .topWork__subCat {
    font-size: 12px;
  }
}
.topWork__txtBtn {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .topWork__txtBtn {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .topWork__txtBtn {
    font-size: 14px;
  }
}
.topWork__txtBtn svg {
  bottom: 2px;
  display: inline-block;
  margin-left: 6px;
  position: relative;
  right: 0;
  transition: right 0.3s ease;
  vertical-align: middle;
  width: 20px;
}
@media screen and (max-width: 1080px) {
  .topWork__txtBtn svg {
    width: 17px;
  }
}
@media screen and (max-width: 768px) {
  .topWork__txtBtn svg {
    width: 15px;
  }
}
.topWork__txtBtn {
  cursor: pointer;
}
.topWork__txtBtn::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #fff;
  bottom: -10px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0); /* 横0%、縦0%（見えない） */
  transform-origin: left center; /* 横=左起点／縦=中央起点で上下に広がる */
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease; /* 横0.1s、縦も同時に0.1sで出現 */
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .topWork__txtBtn::after {
    -webkit-transform: scaleX(1) scaleY(1);
    bottom: -5px;
    transform: scaleX(1) scaleY(1);
  }
}
@media screen and (min-width: 769px) {
  .topWork__txtBtn:hover::after {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1); /* 横: 左→右に伸びる／縦: 0→2pxへ上下に広がる */
  }
  .topWork__txtBtn:hover svg {
    right: -7px;
  }
}

/* =======================================
topWork  制作実績 SPスライダー
======================================= */
.topWorkSwiper {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .topWorkSwiper {
    margin-top: 30px;
  }
}
.topWorkSwiper .topWorkSwiper__pagination {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  overflow: visible;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.topWorkSwiper .topWorkSwiper__pagination button {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 100px;
  cursor: pointer;
  display: block;
  display: block;
  height: 15px;
  margin: 0 !important;
  opacity: 1;
  padding: 0;
  position: relative;
  transition: background-color 0.2s eas;
  width: 15px;
}
@media screen and (min-width: 769px) {
  .topWorkSwiper .topWorkSwiper__pagination button:hover {
    background-color: #fff;
  }
}
.topWorkSwiper .topWorkSwiper__pagination button.is-active {
  background-color: #fff;
}

/* スライドが1枚のときの見た目調整 */
.topWorkSwiper.is-single .swiper-wrapper {
  -webkit-transform: none !important;
  display: block;
  transform: none !important;
}
.topWorkSwiper.is-single .swiper-slide {
  margin: 0 auto;
  max-width: 480px;
  width: 80%;
}

/* =======================================
BLOG&NEWS
======================================= */
.topBlogNews {
  background-color: #000;
}
.topBlogNews .c-ttl,
.topBlogNews .c-subTtl {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .topBlogNews .c-ttl {
    line-height: 1;
    margin-bottom: 10px;
  }
}
.topBlogNews__flex {
  align-items: flex-start;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .topBlogNews__flex {
    flex-direction: column;
    gap: 0;
    margin-top: 30px;
  }
}
.topBlogNews__menuList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .topBlogNews__menuList {
    flex-direction: row;
    gap: 40px;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .topBlogNews__menuList li {
    font-size: 14px;
  }
  .topBlogNews__menuList li:not(:last-of-type) {
    position: relative;
  }
  .topBlogNews__menuList li:not(:last-of-type)::after {
    -webkit-transform: translateY(-50%);
    background-color: #fff;
    content: "";
    height: 58%;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
}
.topBlogNews__menuLnk {
  border-bottom: 2px solid transparent;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  transition: border-bottom 0.2s ease, color 0.2s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .topBlogNews__menuLnk {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .topBlogNews__menuLnk {
    font-size: 14px;
  }
}
.topBlogNews__menuLnk.is-active {
  border-bottom: 2px solid #888888;
  color: #888888;
}
@media screen and (min-width: 769px) {
  .topBlogNews__menuLnk:hover {
    border-bottom: 2px solid #888888;
    color: #888888;
  }
}
.topBlogNews__lists {
  width: 70.09%;
}
@media screen and (max-width: 768px) {
  .topBlogNews__lists {
    width: 100%;
  }
}
.topBlogNews__list > li {
  border-bottom: 1px dashed #888888;
}
.topBlogNews__link {
  display: block;
  padding-top: 20px;
}
@media screen and (min-width: 769px) {
  .topBlogNews__link:hover {
    cursor: pointer;
  }
  .topBlogNews__link:hover .topBlogNews__time,
  .topBlogNews__link:hover .topBlogNews__ttl,
  .topBlogNews__link:hover .c-txt {
    opacity: 0.6;
  }
  .topBlogNews__link:hover .topBlogNews__arrow {
    right: -10px;
  }
}
.topBlogNews__time, .topBlogNews__ttl,
.topBlogNews .c-txt {
  color: #fff;
  transition: opacity 0.2s ease;
}
.topBlogNews__time {
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .topBlogNews__time {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .topBlogNews__time {
    font-size: 12px;
  }
}
.topBlogNews__ttl {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .topBlogNews__ttl {
    font-size: 20px;
    margin-top: 5px;
  }
}
.topBlogNews .c-txt {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .topBlogNews .c-txt {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
  }
}
.topBlogNews__cats {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .topBlogNews__cats {
    gap: 5px;
    margin-top: 5px;
  }
}
.topBlogNews__cats li {
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
}
@media screen and (max-width: 1080px) {
  .topBlogNews__cats li {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .topBlogNews__cats li {
    border-radius: 3px;
    font-size: 12px;
    padding: 4px 10px;
  }
}
.topBlogNews__cats li.bg-black {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
}
.topBlogNews__cats li.bg-white {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.topBlogNews__arrow {
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  margin-left: auto;
  position: relative;
  right: 0;
  transition: right 0.2s ease;
  width: 60px;
}
@media screen and (max-width: 1080px) {
  .topBlogNews__arrow {
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .topBlogNews__arrow {
    width: 30px;
  }
}
.topBlogNews__arrow svg {
  width: 12px;
}
@media screen and (max-width: 1080px) {
  .topBlogNews__arrow svg {
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .topBlogNews__arrow svg {
    width: 6px;
  }
}
.topBlogNews .c-btn {
  margin-left: auto;
  margin-top: 80px;
}
@media screen and (max-width: 1080px) {
  .topBlogNews .c-btn {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .topBlogNews .c-btn {
    margin-right: auto;
    margin-top: 30px;
  }
}

.topBlogNews__list.is-hide {
  display: none;
}

/* =======================================
topRecruitPartner
======================================= */
.topRecruitPartner .c-ttl,
.topRecruitPartner .c-subTtl {
  color: #fff;
}
.topRecruitPartner .c-inner {
  position: relative;
  z-index: 3;
}
.topRecruitPartner__flex {
  align-items: flex-end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .topRecruitPartner__flex {
    align-items: flex-start;
    flex-direction: column;
  }
}
.topRecruitPartner__line {
  background-color: #fff;
  height: 2px;
  margin-top: 40px;
  max-width: 110px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .topRecruitPartner__line {
    margin-top: 30px;
    max-width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .topRecruitPartner__line {
    margin-top: 20px;
    max-width: 55px;
  }
}
.topRecruitPartner__txt {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .topRecruitPartner__txt {
    font-size: 16px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topRecruitPartner__txt {
    font-size: 14px;
    margin-top: 20px;
  }
}
.topRecruitPartner .topRecruit,
.topRecruitPartner .topPartner {
  position: relative;
}
.topRecruitPartner .topRecruit::before,
.topRecruitPartner .topPartner::before {
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.topRecruitPartner__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.topRecruitPartner__bg img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topRecruitPartner .c-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =======================================
お問い合わせ
======================================= */
.contact {
  background-color: #fff;
}
.contact__ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (max-width: 1080px) {
  .contact__ttl {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .contact__ttl {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .contact .c-txt {
    padding-bottom: 10px;
  }
}

/*----------------------------------------------------------
フォーム部分
------------------------------------------------------------*/
.c-form {
  padding-top: 130px;
}
@media screen and (max-width: 1080px) {
  .c-form {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .c-form {
    border-top: 1px solid #000;
    padding-top: 70px;
  }
}

.wpcf7-form .c-form__flex {
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1080px) {
  .wpcf7-form .c-form__flex {
    gap: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-form .c-form__flex {
    gap: 40px;
    padding-bottom: 40px;
  }
}

span.wpcf7-spinner {
  display: none !important;
}

.flex_top p {
  align-items: flex-start !important;
}

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

.inputbox p {
  align-items: center;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .inputbox p {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.inputbox {
  /*----------------------------------------------------------
    //フォームの項目
    ------------------------------------------------------------*/
}
.inputbox .form_ttl {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  justify-content: space-between;
  line-height: 1.4;
  width: 330px;
}
@media screen and (max-width: 1080px) {
  .inputbox .form_ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .inputbox .form_ttl {
    font-size: 14px;
    justify-content: flex-start;
    width: 100%;
  }
}
.inputbox {
  /*----------------------------------------------------------
    //フォームの入力エリア
    ------------------------------------------------------------*/
}
.inputbox input[type=text],
.inputbox input[type=email],
.inputbox input[type=tel],
.inputbox input[type=number],
.inputbox input[type=url] {
  height: 55px;
}
@media screen and (max-width: 768px) {
  .inputbox input[type=text],
  .inputbox input[type=email],
  .inputbox input[type=tel],
  .inputbox input[type=number],
  .inputbox input[type=url] {
    height: 41px;
  }
}
.inputbox input[type=text],
.inputbox input[type=email],
.inputbox input[type=tel],
.inputbox input[type=number],
.inputbox input[type=url],
.inputbox textarea {
  background-color: #fff;
  border: none;
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inputbox input[type=text],
  .inputbox input[type=email],
  .inputbox input[type=tel],
  .inputbox input[type=number],
  .inputbox input[type=url],
  .inputbox textarea {
    font-size: 14px;
    padding: 5px;
  }
}
.inputbox textarea {
  height: 200px;
  overflow-y: auto;
  resize: vertical;
}

/* =======================================
チェックボックス/ラジオ 共通化（checkList）
======================================= */
.checkList .wpcf7-checkbox,
.checkList .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  top: -6px;
}
@media screen and (max-width: 768px) {
  .checkList .wpcf7-checkbox,
  .checkList .wpcf7-radio {
    gap: 13px;
    top: -4px;
  }
}
.checkList .wpcf7-checkbox .wpcf7-list-item,
.checkList .wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0;
}
.checkList .wpcf7-checkbox .wpcf7-list-item label,
.checkList .wpcf7-radio .wpcf7-list-item label {
  align-items: baseline;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .checkList .wpcf7-checkbox .wpcf7-list-item label,
  .checkList .wpcf7-radio .wpcf7-list-item label {
    gap: 10px;
  }
}
.checkList .wpcf7-checkbox .wpcf7-list-item,
.checkList .wpcf7-radio .wpcf7-list-item {
  /* ✅ checkbox / radio の見た目を同一にする */
}
.checkList .wpcf7-checkbox .wpcf7-list-item input[type=checkbox],
.checkList .wpcf7-checkbox .wpcf7-list-item input[type=radio],
.checkList .wpcf7-radio .wpcf7-list-item input[type=checkbox],
.checkList .wpcf7-radio .wpcf7-list-item input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 26px;
  margin: 0;
  position: relative;
  top: 6px;
  width: 26px;
}
@media screen and (max-width: 768px) {
  .checkList .wpcf7-checkbox .wpcf7-list-item input[type=checkbox],
  .checkList .wpcf7-checkbox .wpcf7-list-item input[type=radio],
  .checkList .wpcf7-radio .wpcf7-list-item input[type=checkbox],
  .checkList .wpcf7-radio .wpcf7-list-item input[type=radio] {
    height: 20px;
    top: 4px;
    width: 20px;
  }
}
.checkList .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]::after,
.checkList .wpcf7-checkbox .wpcf7-list-item input[type=radio]::after,
.checkList .wpcf7-radio .wpcf7-list-item input[type=checkbox]::after,
.checkList .wpcf7-radio .wpcf7-list-item input[type=radio]::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  content: "";
  display: block;
  height: 11px;
  left: 52%;
  opacity: 0;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: opacity 0.3s ease;
  width: 5px;
}
@media screen and (max-width: 768px) {
  .checkList .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]::after,
  .checkList .wpcf7-checkbox .wpcf7-list-item input[type=radio]::after,
  .checkList .wpcf7-radio .wpcf7-list-item input[type=checkbox]::after,
  .checkList .wpcf7-radio .wpcf7-list-item input[type=radio]::after {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    height: 8px;
    width: 4px;
  }
}
.checkList .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked,
.checkList .wpcf7-checkbox .wpcf7-list-item input[type=radio]:checked,
.checkList .wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked,
.checkList .wpcf7-radio .wpcf7-list-item input[type=radio]:checked {
  background-color: transparent;
}
.checkList .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked::after,
.checkList .wpcf7-checkbox .wpcf7-list-item input[type=radio]:checked::after,
.checkList .wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked::after,
.checkList .wpcf7-radio .wpcf7-list-item input[type=radio]:checked::after {
  opacity: 1;
}
.checkList .wpcf7-checkbox .wpcf7-list-item,
.checkList .wpcf7-radio .wpcf7-list-item {
  /* テキスト */
}
.checkList .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label,
.checkList .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .checkList .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label,
  .checkList .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .checkList .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label,
  .checkList .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 14px;
  }
}
.checkList {
  /* pタグで囲まれてるので、余計な余白が出る場合の保険 */
}
.checkList p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap[data-name=your_service] .wpcf7-checkbox,
  .wpcf7-form-control-wrap[data-name=how_know] .wpcf7-checkbox,
  .wpcf7-form-control-wrap[data-name=how_know_required] .wpcf7-checkbox {
    gap: 4px !important;
  }
}

/*----------------------------------------------------------
プライバシーポリシー
------------------------------------------------------------*/
.privacybox {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .privacybox {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .privacybox {
    gap: 10px;
    margin-top: 40px;
  }
}
.privacybox p {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1;
  text-align: center;
}
.privacybox .wpcf7-form-control-wrap {
  position: initial;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.privacybox .wpcf7-list-item {
  margin: 0;
}
.privacybox .wpcf7-list-item-label {
  display: none;
}
.privacybox .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .privacybox .wpcf7-checkbox {
    gap: 13px;
  }
}
.privacybox .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin: 0;
}
.privacybox .wpcf7-checkbox .wpcf7-list-item label {
  align-items: baseline;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .privacybox .wpcf7-checkbox .wpcf7-list-item label {
    gap: 10px;
  }
}
.privacybox .wpcf7-checkbox .wpcf7-list-item {
  /* チェックボックス */
}
.privacybox .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 26px;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
  width: 26px;
}
@media screen and (max-width: 768px) {
  .privacybox .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
    height: 20px;
    width: 20px;
  }
}
.privacybox .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  display: block;
  height: 11px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: opacity 0.3s ease;
  width: 5px;
}
@media screen and (max-width: 768px) {
  .privacybox .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 8px;
    width: 4px;
  }
}
.privacybox .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked {
  background-color: #000;
}
.privacybox .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked::after {
  opacity: 1;
}
.privacybox {
  /* テキスト */
}
.privacybox .privacyTxt {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .privacybox .privacyTxt {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .privacybox .privacyTxt {
    font-size: 14px;
  }
}

.privacyTxtLink {
  color: #000;
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .privacyTxtLink:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}
@media screen and (max-width: 1080px) {
  .privacyTxtLink {
    font-size: 11px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .privacyTxtLink {
    font-size: 9px;
    margin-top: 10px;
  }
}

.privacybox .wpcf7-form-control-wrap {
  position: initial;
}

/*----------------------------------------------------------
 任意
------------------------------------------------------------*/
.optional::after {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  color: #000;
  content: "任意";
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 5.5px 7px 6.5px 7px;
}
@media screen and (max-width: 768px) {
  .optional::after {
    border-radius: 3px;
    font-size: 9px;
    padding: 3px 4px;
  }
}

/*----------------------------------------------------------
 必須
------------------------------------------------------------*/
.required.is-red::after {
  background-color: #da4345 !important;
}

.required::after {
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  content: "必須";
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 5.5px 7px 6.5px 7px;
}
@media screen and (max-width: 768px) {
  .required::after {
    border-radius: 3px;
    font-size: 9px;
    padding: 3px 4px;
  }
}

/*----------------------------------------------------------
  バリデーションエラー 送信ボタンクリック時
------------------------------------------------------------*/
.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}

.is-error textarea,
.is-error input[type=text],
.is-error input[type=email],
.is-error input[type=tel],
.is-error input[type=number],
.is-error input[type=url] {
  border: 2px solid #da4345 !important;
}
@media screen and (max-width: 768px) {
  .is-error textarea,
  .is-error input[type=text],
  .is-error input[type=email],
  .is-error input[type=tel],
  .is-error input[type=number],
  .is-error input[type=url] {
    border: 1px solid #da4345 !important;
  }
}

/* =======================================
エラーメッセージ
======================================= */
.wpcf7 {
  position: relative;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #da4345;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
}
@media screen and (max-width: 1080px) {
  .wpcf7 .wpcf7-not-valid-tip {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7 .wpcf7-not-valid-tip {
    font-size: 12px;
  }
}
.wpcf7 div.wpcf7-response-output {
  border: none !important;
  bottom: 0;
  color: #da4345;
  font-size: 16px;
  left: 0;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .wpcf7 div.wpcf7-response-output {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7 div.wpcf7-response-output {
    font-size: 12px;
  }
}

.ajax-loader {
  -webkit-transform: translate(-50%, -50%);
  left: 110%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.privacybox .wpcf7-not-valid-tip {
  -webkit-transform: translateX(-50%) !important;
  left: 50% !important;
  top: -160%;
  transform: translateX(-50%) !important;
  width: 100% !important;
}
@media screen and (max-width: 768px) {
  .privacybox .wpcf7-not-valid-tip {
    top: -140%;
  }
}

.wpcf7 div.wpcf7-response-output {
  bottom: -40px;
}

/*----------------------------------------------------------
送信ボタン
------------------------------------------------------------*/
.submit_btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .submit_btn {
    margin-top: 30px;
  }
}
.submit_btn p,
.submit_btn span,
.submit_btn input {
  border-radius: 100px;
  display: block;
  min-height: 60px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .submit_btn p,
  .submit_btn span,
  .submit_btn input {
    min-height: 55px;
  }
}
@media screen and (max-width: 768px) {
  .submit_btn p,
  .submit_btn span,
  .submit_btn input {
    min-height: 50px;
  }
}
.submit_btn input {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  transition: color 0.2s ease;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .submit_btn input {
    font-size: 16px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .submit_btn input {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.submit_btn svg {
  transition: right 0.2s ease;
}
.submit_btn::after {
  content: none;
}
@media screen and (min-width: 769px) {
  .submit_btn:hover svg {
    right: 20px;
  }
  .submit_btn:hover svg path {
    stroke: #fff;
  }
}
.submit_btn.is-disabled {
  background-color: #888888;
  border: 1px solid #888888;
}

/* =======================================
確認ページ
======================================= */
.c-formConfirm {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}
.c-formConfirm .hidden-fields-container {
  display: none;
}
.c-formConfirm__item {
  display: flex;
}
.c-formConfirm__item:not(:last-of-type) .c-formConfirm__answer {
  border-bottom: 1px solid #000;
}
.c-formConfirm__item:not(:last-of-type) .c-formConfirm__ttl {
  border-bottom: 1px solid #fff;
}
.c-formConfirm__ttl {
  align-items: center;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  height: 100%;
  line-height: 1.5;
  min-height: 99px;
  padding: 20px;
  width: 300px;
}
@media screen and (max-width: 1080px) {
  .c-formConfirm__ttl {
    font-size: 15px;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-formConfirm__ttl {
    font-size: 12px;
    min-height: 57px;
    padding: 10px;
    padding: 20px 10px;
    width: 110px;
  }
}
.c-formConfirm__answer {
  align-items: center;
  background-color: #fff;
  color: #000;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  min-height: 99px;
  padding: 20px;
  width: 100%;
  word-break: break-all;
}
@media screen and (max-width: 1080px) {
  .c-formConfirm__answer {
    font-size: 15px;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-formConfirm__answer {
    font-size: 14px;
    min-height: 57px;
    padding: 20px 10px;
  }
}
.c-formConfirm__btns {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-inline: auto;
  margin-top: 120px;
  max-width: 80%;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .c-formConfirm__btns {
    gap: 15px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .c-formConfirm__btns {
    gap: 10px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 560px) {
  .c-formConfirm__btns {
    max-width: 100%;
  }
}
.c-formConfirm__btns .c-btn {
  max-width: 370px;
  min-width: 150px;
  padding: 0;
  width: 100%;
}
.c-formConfirm__btns .c-btn p,
.c-formConfirm__btns .c-btn span,
.c-formConfirm__btns .c-btn input {
  border-radius: 100px;
  display: block;
  min-height: 60px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .c-formConfirm__btns .c-btn p,
  .c-formConfirm__btns .c-btn span,
  .c-formConfirm__btns .c-btn input {
    min-height: 55px;
  }
}
@media screen and (max-width: 768px) {
  .c-formConfirm__btns .c-btn p,
  .c-formConfirm__btns .c-btn span,
  .c-formConfirm__btns .c-btn input {
    min-height: 50px;
  }
}
.c-formConfirm__btns .c-btn input {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .c-formConfirm__btns .c-btn input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-formConfirm__btns .c-btn input {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .c-formConfirm__btns .c-btn input {
    font-size: 12px;
  }
}
.c-formConfirm__btns .c-btn svg {
  transition: right 0.2s ease;
}
@media screen and (max-width: 400px) {
  .c-formConfirm__btns .c-btn svg {
    right: 7px;
  }
}
.c-formConfirm__btns .c-btn::after {
  content: none;
}
.c-formConfirm__btns .c-btn--white input {
  color: #000;
}
.c-formConfirm__btns .c-btn--white span {
  color: #000;
}
.c-formConfirm__btns .c-btn--white svg path {
  stroke: #000;
}
@media screen and (min-width: 769px) {
  .c-formConfirm__btns .c-btn--white:hover svg {
    right: 20px;
  }
  .c-formConfirm__btns .c-btn--white:hover svg path {
    stroke: #000;
  }
}
.c-formConfirm__btns .c-btn--black input {
  color: #fff;
}
.c-formConfirm__btns .c-btn--black span {
  color: #fff;
}
.c-formConfirm__btns .c-btn--black svg path {
  stroke: #fff;
}
@media screen and (min-width: 769px) {
  .c-formConfirm__btns .c-btn--black:hover svg {
    right: 20px;
  }
  .c-formConfirm__btns .c-btn--black:hover svg path {
    stroke: #fff;
  }
}

/*----------------------------------------------------------
送信完了ページ
------------------------------------------------------------*/
.thanks .downloadTxt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 130px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .thanks .downloadTxt {
    font-size: 16px;
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .thanks .downloadTxt {
    font-size: 12px;
    margin-top: 35px;
  }
}
.thanks .c-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .thanks .c-btn {
    margin-top: 10px;
  }
}
.thanks .c-btn svg {
  transition: right 0.2s ease;
}
.thanks .c-btn::after {
  content: none;
}
@media screen and (min-width: 769px) {
  .thanks .c-btn:hover span {
    color: #fff;
  }
  .thanks .c-btn:hover svg {
    right: 20px;
  }
  .thanks .c-btn:hover svg path {
    stroke: #fff;
  }
}

/* =======================================
強制削除
======================================= */
[data-name=inquiry_type] {
  display: none !important;
}

[data-name=inquiry_subject] {
  display: none !important;
}

.notFound__ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .notFound__ttl {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .notFound__ttl {
    font-size: 25px;
  }
}
.notFound__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .notFound__txt {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .notFound__txt {
    font-size: 12px;
    margin-top: 10px;
  }
}
.notFound .c-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .notFound .c-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .notFound .c-btn {
    margin-top: 35px;
  }
}

/* =======================================
Blog & News 記事
======================================= */
.singlePost {
  background-color: #fff;
}
.singlePost p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: justify;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .singlePost p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost p {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.singlePost h2 {
  border-bottom: 1px solid #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 20px;
  margin-top: 120px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .singlePost h2 {
    font-size: 28px;
    line-height: 1.6;
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost h2 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    margin-top: 60px;
  }
}
.singlePost h3 {
  align-items: baseline;
  display: flex;
  font-size: 24px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-top: 120px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .singlePost h3 {
    font-size: 20px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost h3 {
    font-size: 16px;
    gap: 6px;
    margin-bottom: 10px;
    margin-top: 60px;
  }
}
.singlePost h3::before {
  -webkit-transform: skewX(-20deg);
  background-color: #000;
  content: "";
  height: 29px;
  overflow: hidden;
  position: relative;
  top: 4px;
  transform: skewX(-20deg);
  width: 10px;
}
@media screen and (max-width: 1080px) {
  .singlePost h3::before {
    height: 26px;
    width: 9px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost h3::before {
    height: 22.5px;
    width: 7px;
  }
}
.singlePost .wp-block-list {
  list-style: revert;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .singlePost .wp-block-list {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.singlePost .wp-block-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
  list-style-position: inside;
  list-style-type: revert;
  padding: revert;
  text-align: justify;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .singlePost .wp-block-list li {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost .wp-block-list li {
    font-size: 14px;
  }
}
.singlePost .wp-block-list li .wp-block-list {
  margin-bottom: 0;
  margin-top: 0;
  padding: revert;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .singlePost .wp-block-list li .wp-block-list {
    padding-left: 10px;
  }
}
.singlePost .wp-block-table {
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .singlePost .wp-block-table {
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost .wp-block-table {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.singlePost .wp-block-table th,
.singlePost .wp-block-table td {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding: 4px 10px;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 1080px) {
  .singlePost .wp-block-table th,
  .singlePost .wp-block-table td {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost .wp-block-table th,
  .singlePost .wp-block-table td {
    font-size: 12px;
    padding: 2.5px 5px;
  }
}
.singlePost .wp-block-table td {
  border: 1px solid #000;
}
.singlePost .wp-block-table thead th {
  background: #000;
  color: #fff;
  text-align: center;
}
.singlePost .wp-block-table thead th:first-of-type {
  border-left: 1px solid #000;
}
.singlePost .wp-block-table thead th:last-of-type {
  border-right: 1px solid #000;
}
.singlePost .wp-block-table thead th:not(:first-of-type) {
  border-left: 1px solid #fff;
}
.singlePost .wp-block-image {
  margin-bottom: 120px;
}
@media screen and (max-width: 1080px) {
  .singlePost .wp-block-image {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost .wp-block-image {
    margin-bottom: 60px;
  }
}
.singlePost .wp-block-image:not(:first-of-type) {
  margin-top: 120px;
}
@media screen and (max-width: 1080px) {
  .singlePost .wp-block-image:not(:first-of-type) {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost .wp-block-image:not(:first-of-type) {
    margin-top: 60px;
  }
}
.singlePost .wp-block-image img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* =======================================
Works 記事
======================================= */
.singleWorks {
  background-color: #fff;
}
.singleWorks__cat {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .singleWorks__cat {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorks__cat {
    font-size: 16px;
  }
}
.singleWorks__ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .singleWorks__ttl {
    font-size: 24px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorks__ttl {
    font-size: 16px;
    margin-top: 10px;
  }
}

.singleWorksPost {
  background-color: #fff;
}
.singleWorksPost__wrap {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__wrap {
    gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__wrap {
    gap: 60px;
  }
}
.singleWorksPost__ttl {
  align-items: baseline;
  display: flex;
  font-size: 24px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__ttl {
    font-size: 16px;
    gap: 6px;
    margin-bottom: 10px;
  }
}
.singleWorksPost__ttl::before {
  -webkit-transform: skewX(-20deg);
  background-color: #000;
  content: "";
  height: 29px;
  overflow: hidden;
  position: relative;
  top: 4px;
  transform: skewX(-20deg);
  width: 10px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__ttl::before {
    height: 26px;
    width: 9px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__ttl::before {
    height: 22.5px;
    width: 7px;
  }
}
.singleWorksPost__item--top .c-txt {
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__item--top .c-txt {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__item--top .c-txt {
    margin-top: 20px;
  }
}
.singleWorksPost__topImg {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__topImg {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__topImg {
    margin-top: 20px;
  }
}
.singleWorksPost__imgList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__imgList {
    gap: 30px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__imgList {
    gap: 20px;
    margin-top: 20px;
  }
}
.singleWorksPost__video {
  position: relative;
}
.singleWorksPost__video iframe {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}
.singleWorksPost__imgFlex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__imgFlex {
    gap: 20px 30px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__imgFlex {
    flex-direction: column;
    gap: 20px;
  }
}
.singleWorksPost__imgFlexItem {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__imgFlexItem {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__imgFlexItem {
    width: 100%;
  }
}
.singleWorksPost__desc {
  border-top: 1px solid #d2d2d2;
}
.singleWorksPost__desc li {
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  min-height: 100px;
  padding: 16px 40px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__desc li {
    min-height: 80px;
    padding: 15px 30px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__desc li {
    min-height: 60px;
    padding: 20px 10px;
  }
}
.singleWorksPost__desc-ttl {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  width: 210px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__desc-ttl {
    font-size: 14px;
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__desc-ttl {
    font-size: 12px;
    width: 95px;
  }
}
.singleWorksPost__desc-txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__desc-txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__desc-txt {
    font-size: 14px;
  }
}
.singleWorksPost__desc-txt--regular {
  font-weight: 400;
}
.singleWorksPost__desc-txt a {
  display: block;
}
.singleWorksPost__desc-txt a svg {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .singleWorksPost__desc-txt a svg {
    margin-left: 6px;
    width: 10px;
  }
}
.singleWorksPost__desc-txt a span {
  word-wrap: break-word;
  color: #475dd1;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__desc-txt a span {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__desc-txt a span {
    font-size: 12px;
  }
}
.singleWorksPost__desc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .singleWorksPost__desc-list {
    gap: 10px;
  }
}
.singleWorksPost__desc-listCat {
  display: flex;
  flex-wrap: wrap;
}
.singleWorksPost__desc-listCat p {
  font-weight: 700;
}
.singleWorksPost__desc-listTag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.singleWorksPost__desc-listTag .parent-cat {
  align-items: center;
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  display: flex;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  padding: 7.5px 18.5px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__desc-listTag .parent-cat {
    font-size: 12px;
    padding: 6.5px 15.5px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__desc-listTag .parent-cat {
    border-radius: 3px;
    font-size: 10px;
    padding: 3.5px 11.5px;
  }
}
.singleWorksPost__desc-listTag .second-cat {
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  padding: 7.5px 18.5px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__desc-listTag .second-cat {
    font-size: 12px;
    padding: 6.5px 15.5px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__desc-listTag .second-cat {
    border-radius: 3px;
    font-size: 10px;
    padding: 3.5px 11.5px;
  }
}
.singleWorksPost__imgCards {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__imgCards {
    gap: 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__imgCards {
    gap: 20px;
    margin-top: 10px;
  }
}
.singleWorksPost__imgCards li {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1080px) {
  .singleWorksPost__imgCards li {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .singleWorksPost__imgCards li {
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
    width: 100%;
  }
}
.singleWorksPost__roleList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media screen and (max-width: 768px) {
  .singleWorksPost__roleList {
    gap: 5px 10px;
  }
}
.singleWorksPost__roleList p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* =======================================
bottomPost 
======================================= */
.bottomPost {
  background-color: #fff;
  border-top: 1px solid #000;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 1080px) {
  .bottomPost {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPost {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.bottomPost .c-inner {
  padding-bottom: 43px;
  padding-top: 60px;
}
@media screen and (max-width: 1080px) {
  .bottomPost .c-inner {
    padding-bottom: 40px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPost .c-inner {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.bottomPost__date {
  color: #888888;
  display: block;
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .bottomPost__date {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPost__date {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.bottomPost__ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .bottomPost__ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPost__ttl {
    font-size: 16px;
  }
}
.bottomPost__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .bottomPost__cats {
    gap: 10px;
    margin-top: 10px;
  }
}
.bottomPost__cats p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .bottomPost__cats p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPost__cats p {
    font-size: 12px;
    line-height: 1.2;
  }
}
.bottomPost__catsMain {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .bottomPost__catsMain {
    margin-top: 10px;
  }
}
.bottomPost__catsMain .black-cat {
  align-items: center;
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  display: flex;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  padding: 7.5px 18.5px;
}
@media screen and (max-width: 1080px) {
  .bottomPost__catsMain .black-cat {
    font-size: 12px;
    padding: 6.5px 15.5px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPost__catsMain .black-cat {
    border-radius: 3px;
    font-size: 10px;
    padding: 3.5px 11.5px;
  }
}
.bottomPost__catsMain .white-cat {
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  padding: 7.5px 18.5px;
}
@media screen and (max-width: 1080px) {
  .bottomPost__catsMain .white-cat {
    font-size: 12px;
    padding: 6.5px 15.5px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPost__catsMain .white-cat {
    border-radius: 3px;
    font-size: 10px;
    padding: 3.5px 11.5px;
  }
}

/* =======================================
bottomPrevNext
======================================= */
.bottomPrevNext {
  background-color: #fff;
  border-top: 1px solid #000;
  padding-bottom: 67px;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 67px;
}
@media screen and (max-width: 768px) {
  .bottomPrevNext {
    padding-bottom: 33.5px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 33.5px;
  }
}
.bottomPrevNext__inner {
  align-items: center;
  display: flex;
  gap: 100px;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .bottomPrevNext__inner {
    gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPrevNext__inner {
    gap: 60px;
  }
}
.bottomPrevNext__link {
  align-items: center;
  display: flex;
  gap: 40px;
  max-width: 43%;
}
@media screen and (max-width: 1080px) {
  .bottomPrevNext__link {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPrevNext__link {
    gap: 0px;
  }
}
@media screen and (min-width: 769px) {
  .bottomPrevNext__link:hover {
    cursor: pointer;
  }
  .bottomPrevNext__link:hover.bottomPrevNext__link--prev .bottomPrevNext__arrow {
    left: -10px;
  }
  .bottomPrevNext__link:hover.bottomPrevNext__link--next .bottomPrevNext__arrow {
    right: -10px;
  }
}
.bottomPrevNext__link--prev .bottomPrevNext__arrow {
  -webkit-transform: rotate(180deg);
  left: 0px;
  transform: rotate(180deg);
  transition: left 0.2s ease;
}
.bottomPrevNext__link--next .bottomPrevNext__arrow {
  right: 0px;
  transition: right 0.2s ease;
}
.bottomPrevNext__arrow {
  position: relative;
  width: 80px;
}
@media screen and (max-width: 1080px) {
  .bottomPrevNext__arrow {
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPrevNext__arrow {
    width: 40px;
  }
}
.bottomPrevNext__txts {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .bottomPrevNext__txts {
    font-size: 16px;
  }
}
.bottomPrevNext__cats {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 1080px) {
  .bottomPrevNext__cats {
    gap: 5px;
    margin-top: 5px;
  }
}
.bottomPrevNext__cats .c-txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.bottomPrevNext .is-disabled {
  opacity: 0;
  pointer-events: none;
}
.bottomPrevNext__ArchiveLink {
  -webkit-transform: translateX(-50%) translateY(-50%);
  display: block;
  flex-shrink: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50px;
  width: 50px;
}
@media screen and (max-width: 1080px) {
  .bottomPrevNext__ArchiveLink {
    width: 35px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPrevNext__ArchiveLink {
    width: 25px;
  }
}
@media screen and (min-width: 769px) {
  .bottomPrevNext__ArchiveLink:hover .bottomPrevNext__ArchiveTxt:after {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1); /* 横: 左→右に伸びる／縦: 0→2pxへ上下に広がる */
  }
}
.bottomPrevNext__ArchiveTxt {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .bottomPrevNext__ArchiveTxt {
    font-size: 14px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .bottomPrevNext__ArchiveTxt {
    font-size: 10px;
    margin-top: 10px;
  }
}
.bottomPrevNext__ArchiveTxt {
  /* 下線アニメーション */
}
.bottomPrevNext__ArchiveTxt::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #000;
  bottom: -3px;
  content: "";
  height: 2px; /* 最終の太さ=2px */
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0); /* 横0%、縦0%（見えない） */
  transform-origin: left center; /* 横=左起点／縦=中央起点で上下に広がる */
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease; /* 横0.1s、縦も同時に0.1sで出現 */
  width: 100%;
  will-change: transform;
}

/* =======================================
ボタン
======================================= */
.wp-block-button {
  margin-left: auto !important;
  margin-right: auto !important;
}
.wp-block-button__link {
  align-items: center;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 100px;
  display: flex;
  font-size: 24px;
  font-weight: 500;
  justify-content: center;
  min-height: 80px;
  min-width: 300px;
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  transition: color 0.1s ease, background-color 0.1s ease;
}
@media screen and (max-width: 1080px) {
  .wp-block-button__link {
    font-size: 20px;
    min-height: 65px;
    min-width: 285px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-button__link {
    font-size: 14px;
    min-height: 50px;
    min-width: 270px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.wp-block-button__link::after {
  -webkit-transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 13 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.625 0.780762L10.625 8.78076L0.625 16.7808' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 18px;
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .wp-block-button__link::after {
    height: 15px;
    right: 20px;
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-button__link::after {
    height: 11px;
    right: 15px;
    width: 7px;
  }
}
@media (min-width: 769px) {
  .wp-block-button__link:hover {
    background-color: #fff;
    color: #000;
  }
  .wp-block-button__link:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 13 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.625 0.780762L10.625 8.78076L0.625 16.7808' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  }
}

/* =======================================
Blog & News
======================================= */
.archiveBg {
  background-color: #fff;
}

.c-post {
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .c-post {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-post {
    margin-top: 0px;
  }
}
.c-post__list > li {
  border-bottom: 1px dashed #888888;
}
.c-post__link {
  align-items: flex-start;
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .c-post__link {
    gap: 20px;
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .c-post__link {
    flex-direction: column;
    gap: 5px;
    padding-bottom: 0;
    padding-top: 40px;
  }
}
.c-post__link {
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .c-post__link:hover .c-post__img {
    border-radius: 20px;
  }
  .c-post__link:hover .c-post__img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .c-post__link:hover .c-post__ttl {
    color: #888888;
  }
  .c-post__link:hover .c-post__arrow {
    right: -10px;
  }
}
.c-post__img {
  aspect-ratio: 354/250;
  flex-shrink: 0;
  overflow: hidden;
  transition: border-radius 0.2s ease;
  width: 32.18%;
}
@media screen and (max-width: 1080px) {
  .c-post__img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .c-post__img {
    width: 100%;
  }
}
.c-post__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  -webkit-transform: scale(1);
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 100%;
}
.c-post__txts {
  display: block;
}
.c-post__time, .c-post__ttl,
.c-post .c-txt {
  color: #000;
  transition: opacity 0.2s ease;
}
.c-post__time {
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .c-post__time {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-post__time {
    font-size: 12px;
  }
}
.c-post__ttl {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  overflow: hidden;
  transition: color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .c-post__ttl {
    font-size: 20px;
    margin-top: 5px;
  }
}
.c-post .c-txt {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-post .c-txt {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
  }
}
.c-post__cats {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-post__cats {
    gap: 5px;
    margin-top: 5px;
  }
}
.c-post__cats li {
  border-radius: 5px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
}
@media screen and (max-width: 1080px) {
  .c-post__cats li {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .c-post__cats li {
    border-radius: 3px;
    font-size: 12px;
    padding: 4px 10px;
  }
}
.c-post__cats li.bg-black {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
}
.c-post__cats li.bg-white {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.c-post__arrow {
  align-items: center;
  aspect-ratio: 1/1;
  bottom: 10px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  position: absolute;
  right: 0;
  transition: right 0.2s ease;
  width: 60px;
}
@media screen and (max-width: 1080px) {
  .c-post__arrow {
    bottom: 10px;
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-post__arrow {
    bottom: initial;
    margin-top: 0;
    position: relative;
    right: initial;
    width: 30px;
  }
}
.c-post__arrow svg {
  width: 12px;
}
@media screen and (max-width: 1080px) {
  .c-post__arrow svg {
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-post__arrow svg {
    width: 6px;
  }
}

.c-post__empty {
  border: none !important;
}

/* =======================================
一覧ページ用ページネーション
======================================= */
.wp-pagenavi {
  align-items: center;
  display: flex;
  gap: 60px;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .wp-pagenavi {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    gap: 30px;
  }
}
.wp-pagenavi a {
  display: flex;
}
.wp-pagenavi {
  /* 選択中のページ*/
}
.wp-pagenavi .current {
  align-items: center;
  border: none !important;
  color: #000;
  display: flex;
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 400 !important;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 1px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .wp-pagenavi .current {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .current {
    font-size: 16px;
  }
}
.wp-pagenavi .current::after {
  -webkit-transform: scaleX(1) scaleY(1);
  -webkit-transform-origin: left center;
  background-color: #000;
  bottom: -5px;
  content: "";
  height: 2px; /* 最終の太さ=2px */
  left: 0;
  position: absolute;
  transform: scaleX(1) scaleY(1);
  transform-origin: left center;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  width: 100%;
}
.wp-pagenavi {
  /* 選択中以外のページ */
}
.wp-pagenavi .larger {
  align-items: center;
  background-color: #ffffff;
  border: none !important;
  color: #000;
  display: flex;
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 400 !important;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 1px;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 1080px) {
  .wp-pagenavi .larger {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .larger {
    font-size: 16px;
  }
}
.wp-pagenavi .larger::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #000;
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0);
  transform-origin: left center;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  width: 100%;
  will-change: transform;
}
@media screen and (min-width: 769px) {
  .wp-pagenavi .larger:hover::after {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
}
.wp-pagenavi .smaller {
  align-items: center;
  background-color: #ffffff;
  border: none !important;
  color: #000;
  display: flex;
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 400 !important;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 1px;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 1080px) {
  .wp-pagenavi .smaller {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .smaller {
    font-size: 16px;
  }
}
.wp-pagenavi .smaller::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #000;
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0);
  transform-origin: left center;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  width: 100%;
  will-change: transform;
}
@media screen and (min-width: 769px) {
  .wp-pagenavi .smaller:hover::after {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
}
.wp-pagenavi {
  /* ...部分*/
}
.wp-pagenavi .extend {
  display: none !important;
}
.wp-pagenavi {
  /* 現在のページ/全ページの数 部分*/
}
.wp-pagenavi .pages {
  display: none !important;
}
.wp-pagenavi {
  /* 最後部分*/
}
.wp-pagenavi .last {
  display: none !important;
}
.wp-pagenavi {
  /* 最初部分*/
}
.wp-pagenavi .first {
  display: none !important;
}
.wp-pagenavi .previouspostslink {
  align-items: center;
  aspect-ratio: 1/1;
  border: 1px solid #000 !important;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  left: 0;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  width: 43px;
}
@media screen and (max-width: 1080px) {
  .wp-pagenavi .previouspostslink {
    max-width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .previouspostslink {
    max-width: 30px;
  }
}
.wp-pagenavi .previouspostslink svg {
  width: 8px;
}
@media screen and (max-width: 1080px) {
  .wp-pagenavi .previouspostslink svg {
    width: 7px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .previouspostslink svg {
    width: 5px;
  }
}
.wp-pagenavi .previouspostslink {
  transition: left 0.3s ease;
}
@media screen and (min-width: 769px) {
  .wp-pagenavi .previouspostslink:hover {
    cursor: pointer;
    left: -15px;
  }
}
.wp-pagenavi .nextpostslink {
  align-items: center;
  aspect-ratio: 1/1;
  border: 1px solid #000 !important;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  right: 0;
  width: 43px;
}
@media screen and (max-width: 1080px) {
  .wp-pagenavi .nextpostslink {
    max-width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .nextpostslink {
    max-width: 30px;
  }
}
.wp-pagenavi .nextpostslink svg {
  width: 8px;
}
@media screen and (max-width: 1080px) {
  .wp-pagenavi .nextpostslink svg {
    width: 7px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .nextpostslink svg {
    width: 5px;
  }
}
.wp-pagenavi .nextpostslink {
  transition: right 0.3s ease;
}
@media screen and (min-width: 769px) {
  .wp-pagenavi .nextpostslink:hover {
    cursor: pointer;
    right: -15px;
  }
}

.archiveNavi {
  align-items: center;
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .archiveNavi {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .archiveNavi {
    gap: 30px;
  }
}

/* 1ページ目のとき、左に矢印 */
.firstPage__arrow {
  align-items: center;
  aspect-ratio: 1/1;
  border: 1px solid #888;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  max-width: 43px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .firstPage__arrow {
    max-width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .firstPage__arrow {
    max-width: 30px;
  }
}
.firstPage__arrow svg {
  width: 8px;
}
@media screen and (max-width: 1080px) {
  .firstPage__arrow svg {
    width: 7px;
  }
}
@media screen and (max-width: 768px) {
  .firstPage__arrow svg {
    width: 5px;
  }
}
.firstPage__arrow svg path {
  stroke: #888;
}

/* 最後のページのとき、右に矢印 */
.lastPage__arrow {
  align-items: center;
  aspect-ratio: 1/1;
  border: 1px solid #888;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  max-width: 43px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .lastPage__arrow {
    max-width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .lastPage__arrow {
    max-width: 30px;
  }
}
.lastPage__arrow svg {
  width: 8px;
}
@media screen and (max-width: 1080px) {
  .lastPage__arrow svg {
    width: 7px;
  }
}
@media screen and (max-width: 768px) {
  .lastPage__arrow svg {
    width: 5px;
  }
}
.lastPage__arrow svg path {
  stroke: #888;
}

/* =======================================
works
======================================= */
.c-postWorks__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 70px;
  justify-content: flex-start;
}
@media screen and (max-width: 1080px) {
  .c-postWorks__list {
    gap: 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-postWorks__list {
    gap: 40px;
    margin-top: 40px;
  }
}
.c-postWorks__item {
  width: calc((100% - 140px) / 3);
}
@media screen and (max-width: 1080px) {
  .c-postWorks__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .c-postWorks__item {
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
    width: 100%;
  }
}
.c-postWorks__link {
  display: block;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (min-width: 769px) {
  .c-postWorks__link:hover {
    cursor: pointer;
    opacity: 1;
  }
  .c-postWorks__link:hover .c-postWorks__img svg {
    right: 10px;
  }
  .c-postWorks__link:hover .c-postWorks__img::after {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .c-postWorks__link:hover .c-postWorks__img::before {
    -webkit-transform: translate(-50%, -50%) rotate(-15deg);
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  .c-postWorks__link:hover .c-postWorks__subttl {
    opacity: 0.6;
  }
  .c-postWorks__link:hover .c-postWorks__subCat {
    opacity: 0.6;
  }
}
.c-postWorks__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.c-postWorks__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.c-postWorks__img svg {
  bottom: 20px;
  position: absolute;
  right: 20px;
  transition: right 0.2s ease;
  width: 22px;
  z-index: 4;
}
@media screen and (max-width: 1080px) {
  .c-postWorks__img svg {
    width: 14px;
  }
}
@media screen and (max-width: 768px) {
  .c-postWorks__img svg {
    width: 18px;
  }
}
@media screen and (max-width: 560px) {
  .c-postWorks__img svg {
    width: 14px;
  }
}
.c-postWorks__img::after {
  background: rgba(0, 0, 0, 0);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.2s ease;
  width: 100%;
  z-index: 2;
}
.c-postWorks__img::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  color: #fff;
  content: "Check!";
  font-family: var(--font-en);
  font-size: 32px;
  left: 50%;
  line-height: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .c-postWorks__img::before {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .c-postWorks__img::before {
    content: none;
  }
}
.c-postWorks__cat {
  background-color: #000;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-right: auto;
  margin-top: 10px;
  padding: 4px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .c-postWorks__cat {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .c-postWorks__cat {
    border-radius: 2.5px;
    font-size: 10px;
  }
}
.c-postWorks__subttl {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #000;
  display: -webkit-box;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  overflow: hidden;
  text-align: left;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 1080px) {
  .c-postWorks__subttl {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .c-postWorks__subttl {
    font-size: 16px;
  }
}
.c-postWorks__subCats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.c-postWorks__subCat {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  transition: opacity 0.2s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .c-postWorks__subCat {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .c-postWorks__subCat {
    font-size: 12px;
  }
}

/* =======================================
プライバシーポリシー
======================================= */
.policy {
  background-color: #fff;
}
.policy__wrap {
  padding-top: 120px;
}
@media screen and (max-width: 1080px) {
  .policy__wrap {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .policy__wrap {
    padding-top: 30px;
  }
}
.policy__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-top: 120px;
}
@media screen and (max-width: 1080px) {
  .policy__list {
    gap: 60px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .policy__list {
    gap: 40px;
    padding-top: 30px;
  }
}
.policy__list h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
@media screen and (max-width: 1080px) {
  .policy__list h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .policy__list h3 {
    font-size: 16px;
  }
}
.policy__list .c-txt {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 1080px) {
  .policy__list .c-txt {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .policy__list .c-txt {
    margin-top: 10px;
  }
}
.policy__list .c-txt .indentTxt {
  display: block;
  padding-left: 3.2em;
  text-indent: -1.2em;
}
.policy__list .c-txt .inlineLink {
  color: #888888;
}

/* =======================================
会社概要
======================================= */
.company {
  background-color: #fff;
}
.company .c-txt {
  text-align: justify;
}
.company .c-txt .indentTxt {
  display: block;
  padding-left: 3.2em;
  text-indent: -1.2em;
}
.company .c-txt .inlineLink {
  color: #888888;
}
.company__wrap {
  padding-top: 120px;
}
@media screen and (max-width: 1080px) {
  .company__wrap {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .company__wrap {
    padding-top: 30px;
  }
}

.companyList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 1080px) {
  .companyList {
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .companyList {
    gap: 40px;
    padding-top: 30px;
  }
}
.companyList li {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  padding: 20px 60px 40px 60px;
}
@media screen and (max-width: 1080px) {
  .companyList li {
    padding: 20px 40px 30px 40px;
  }
}
@media screen and (max-width: 768px) {
  .companyList li {
    padding: 10px 20px 20px 20px;
  }
}
.companyList__flex {
  align-items: center;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1080px) {
  .companyList__flex {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .companyList__flex {
    gap: 20px;
  }
}
.companyList__nums {
  align-items: center;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .companyList__nums {
    gap: 5px;
  }
}
.companyList h3 {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 1080px) {
  .companyList h3 {
    font-size: 21px;
  }
}
@media screen and (max-width: 768px) {
  .companyList h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.companyList__num {
  font-family: var(--font-num);
  font-size: 70px;
  font-weight: 500;
  line-height: 1.17;
}
@media screen and (max-width: 1080px) {
  .companyList__num {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .companyList__num {
    font-size: 50px;
  }
}
.companyList__icon {
  flex-shrink: 0;
  width: 38px;
}
@media screen and (max-width: 1080px) {
  .companyList__icon {
    width: 32px;
  }
}
@media screen and (max-width: 768px) {
  .companyList__icon {
    width: 27px;
  }
}
.companyList__txts .c-txt {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .companyList__txts .c-txt {
    line-height: 2.2;
    margin-top: 5px;
  }
}

/* =======================================
Strengths フロンティアの強み
======================================= */
.companyStrengths {
  background-color: #000;
}
.companyStrengths .c-ttl,
.companyStrengths .c-subTtl {
  color: #fff;
  text-align: center;
}

.companyStrengthsList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .companyStrengthsList {
    gap: 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .companyStrengthsList {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
}
.companyStrengthsList li {
  background-color: #fff;
  min-height: 580px;
  padding: 30px;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1080px) {
  .companyStrengthsList li {
    min-height: 530px;
    padding: 25px;
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .companyStrengthsList li {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    min-height: initial;
    padding: 15px;
    width: 100%;
  }
}
.companyStrengthsList__flex {
  align-items: flex-start;
  display: flex;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .companyStrengthsList__flex {
    gap: 10px;
  }
}
.companyStrengthsList__nums {
  align-items: center;
  display: flex;
}
.companyStrengthsList h3 {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .companyStrengthsList h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .companyStrengthsList h3 {
    font-size: 18px;
  }
}
.companyStrengthsList__num {
  font-family: var(--font-num);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.17;
}
@media screen and (max-width: 1080px) {
  .companyStrengthsList__num {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .companyStrengthsList__num {
    font-size: 30px;
  }
}
.companyStrengthsList__icon {
  flex-shrink: 0;
  width: 19px;
}
.companyStrengthsList__img {
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .companyStrengthsList__img {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .companyStrengthsList__img {
    margin-top: 10px;
  }
}
.companyStrengthsList .c-txt {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .companyStrengthsList .c-txt {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .companyStrengthsList .c-txt {
    font-size: 12px;
    margin-top: 10px;
  }
}

/* =======================================
comopany information 会社情報
======================================= */
.comopanyInformation {
  background-color: #fff;
}

.comopanyInformationLst {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .comopanyInformationLst {
    padding-top: 30px;
  }
}
.comopanyInformationLst__item {
  border-bottom: 1px solid #d2d2d2;
  display: flex;
}
.comopanyInformationLst__dt {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 30px 0 30px 30px;
  width: 250px;
}
@media screen and (max-width: 1080px) {
  .comopanyInformationLst__dt {
    font-size: 16px;
    padding: 25px 0 25px 25px;
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .comopanyInformationLst__dt {
    font-size: 14px;
    padding: 15px 0 15px 10px;
    width: 105px;
  }
}
.comopanyInformationLst__dd {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 30px 30px 30px 0;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .comopanyInformationLst__dd {
    font-size: 16px;
    padding: 25px 25px 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .comopanyInformationLst__dd {
    font-size: 14px;
    padding: 15px 10px 15px 0;
  }
}
.comopanyInformationLst__dd .txt-b {
  display: block;
  font-weight: 400;
}
.comopanyInformationLst__dd .txt-b:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .comopanyInformationLst__dd .txt-b:not(:first-of-type) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .comopanyInformationLst__dd .txt-b:not(:first-of-type) {
    margin-top: 10px;
  }
}
.comopanyInformationLst__dd-item {
  align-items: baseline;
  display: flex;
  line-height: 1.4;
  position: relative;
}
.comopanyInformationLst__dd-item::before {
  content: "・";
  display: block;
}

/* =======================================
採用情報
======================================= */
.recruit {
  background-color: #fff;
}
.recruit__ttlWrap {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .recruit__ttlWrap {
    padding-top: 30px;
  }
}
.recruit__subTtl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .recruit__subTtl {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recruit__subTtl {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
  }
}
.recruit__img {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .recruit__img {
    margin-top: 30px;
  }
}
.recruit__img img {
  height: auto;
}

.recruitFlex {
  display: flex;
  gap: 100px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .recruitFlex {
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .recruitFlex {
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    width: 88%;
  }
}
.recruitFlex__item {
  width: calc((100% - 100px) / 2);
}
@media screen and (max-width: 1080px) {
  .recruitFlex__item {
    width: calc((100% - 50px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .recruitFlex__item {
    width: 100%;
  }
}
.recruitFlex__ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .recruitFlex__ttl {
    font-size: 25px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recruitFlex__ttl {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 10px;
  }
}
.recruitFlex .c-txt {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .recruitFlex .c-txt {
    margin-top: 5px;
  }
}

/* =======================================
Parsonality
======================================= */
.recruitParsonality {
  background-color: #000;
}
.recruitParsonality__flex {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .recruitParsonality__flex {
    flex-direction: column;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
.recruitParsonality__txts {
  width: 36.36%;
}
@media screen and (max-width: 768px) {
  .recruitParsonality__txts {
    width: 100%;
  }
}
.recruitParsonality__txts .p-ttl,
.recruitParsonality__txts .p-subTtl {
  color: #fff;
}
.recruitParsonality__ttl {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  padding-top: 60px;
}
@media screen and (max-width: 1080px) {
  .recruitParsonality__ttl {
    font-size: 25px;
    line-height: 1.4;
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .recruitParsonality__ttl {
    border-top: 1px solid #fff;
    font-size: 20px;
    padding-top: 30px;
  }
}
.recruitParsonality__list {
  margin-top: 10px;
}
.recruitParsonality__list li {
  align-items: baseline;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 5px;
  line-height: 1.4;
  line-height: 2.2;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .recruitParsonality__list li {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recruitParsonality__list li {
    font-size: 14px;
  }
}
.recruitParsonality__list li::before {
  content: "・";
  display: block;
}
.recruitParsonality__img {
  width: 58.18%;
}
@media screen and (max-width: 768px) {
  .recruitParsonality__img {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    width: 100%;
  }
}

/* =======================================
Occupations
======================================= */
.recruitOccupations {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .recruitOccupations .p-wrap {
    gap: 30px;
  }
}

.recruitOccupationsList {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
  padding-top: 60px;
}
@media screen and (max-width: 1080px) {
  .recruitOccupationsList {
    gap: 50px 30px;
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .recruitOccupationsList {
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    width: 100%;
  }
}
.recruitOccupationsList li {
  align-items: center;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  display: flex;
  gap: 20px;
  min-height: 150px;
  padding: 27px 20px;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1080px) {
  .recruitOccupationsList li {
    padding: 20px 15px;
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .recruitOccupationsList li {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    min-height: initial;
    padding: 20px;
    width: 100%;
  }
}
.recruitOccupationsList__icon {
  flex-shrink: 0;
  width: 100px;
}
@media screen and (max-width: 1080px) {
  .recruitOccupationsList__icon {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .recruitOccupationsList__icon {
    width: 50px;
  }
}
.recruitOccupationsList__ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .recruitOccupationsList__ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .recruitOccupationsList__ttl {
    font-size: 18px;
  }
}
.recruitOccupationsList .c-txt {
  line-height: 1.8;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .recruitOccupationsList .c-txt {
    margin-top: 10px;
  }
}

.recruitOccupationsLink {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  padding: 30px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .recruitOccupationsLink {
    min-height: 350px;
  }
}
@media screen and (max-width: 768px) {
  .recruitOccupationsLink {
    min-height: initial;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
  }
}
.recruitOccupationsLink::before {
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.recruitOccupationsLink__img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.recruitOccupationsLink__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.recruitOccupationsLink__en {
  color: #fff;
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.425;
  position: relative;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .recruitOccupationsLink__en {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruitOccupationsLink__en {
    font-size: 12px;
    line-height: 1.4;
  }
}
.recruitOccupationsLink__ttl {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
  position: relative;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .recruitOccupationsLink__ttl {
    font-size: 35px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recruitOccupationsLink__ttl {
    margin-top: 15px;
  }
}
@media screen and (max-width: 360px) {
  .recruitOccupationsLink__ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruitOccupationsLink__ttl span {
    display: inline-block;
    margin-top: 10px;
    padding-left: 30px;
  }
}
.recruitOccupationsLink .c-btn {
  margin-top: 40px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .recruitOccupationsLink .c-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruitOccupationsLink .c-btn {
    margin-top: 25px;
    text-align: center;
  }
}
@media screen and (max-width: 360px) {
  .recruitOccupationsLink .c-btn {
    min-width: 250px;
  }
}
@media screen and (min-width: 769px) {
  .recruitOccupationsLink .c-btn:hover {
    cursor: pointer;
  }
}
.recruitOccupationsLink .c-btn {
  background-color: transparent;
  border: 1px solid #fff;
}
.recruitOccupationsLink .c-btn span {
  color: #fff;
  line-height: 1.2;
}
.recruitOccupationsLink .c-btn::after {
  background-color: #fff !important;
  border-radius: 100px;
  content: "";
  height: 100%;
  inset: 0 auto 0 0;
  opacity: 0;
  position: absolute;
  transition: width 0.4s ease, opacity 0.4s ease;
  width: 0;
  z-index: 1;
}
.recruitOccupationsLink::after {
  background-color: #000;
  border-radius: 100px;
  content: "";
  height: 100%;
  inset: 0 auto 0 0;
  opacity: 0;
  position: absolute;
  transition: width 0.4s ease, opacity 0.4s ease;
  width: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .recruitOccupationsLink:hover {
    cursor: pointer;
  }
  .recruitOccupationsLink:hover::after {
    opacity: 1;
    width: 100%;
  }
  .recruitOccupationsLink:hover .c-btn::after {
    opacity: 1;
    width: 100%;
  }
  .recruitOccupationsLink:hover .c-btn span {
    color: #000;
  }
  .recruitOccupationsLink:hover .c-btn svg path {
    stroke: #000;
  }
}

/* =======================================
service　TOP
======================================= */
.service {
  background-color: #fff;
}

.serviceList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 1080px) {
  .serviceList {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .serviceList {
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
  }
}
.serviceList li {
  background-color: #fff;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  min-height: 580px;
  padding: 30px;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1080px) {
  .serviceList li {
    min-height: 530px;
    padding: 25px;
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .serviceList li {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    min-height: initial;
    padding: 15px;
    width: 100%;
  }
}
.serviceList__flex {
  align-items: flex-start;
  display: flex;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .serviceList__flex {
    gap: 10px;
  }
}
.serviceList__nums {
  align-items: center;
  display: flex;
}
.serviceList h3 {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .serviceList h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .serviceList h3 {
    font-size: 18px;
  }
}
.serviceList__num {
  font-family: var(--font-num);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.17;
}
@media screen and (max-width: 1080px) {
  .serviceList__num {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .serviceList__num {
    font-size: 30px;
  }
}
.serviceList__icon {
  flex-shrink: 0;
  width: 19px;
}
.serviceList__img {
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .serviceList__img {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .serviceList__img {
    margin-top: 10px;
  }
}
.serviceList .c-txt {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .serviceList .c-txt {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .serviceList .c-txt {
    font-size: 12px;
    margin-top: 10px;
  }
}

/* =======================================
serviceArchive
======================================= */
@media screen and (max-width: 768px) {
  .serviceArchive .c-pad {
    padding-bottom: 16vw;
    padding-top: 0;
  }
}
.serviceArchive--black {
  background-color: #000;
}
.serviceArchive--black .serviceArchive__flex {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .serviceArchive--black .serviceArchive__flex {
    flex-direction: column;
  }
}
.serviceArchive--black .c-txt,
.serviceArchive--black .serviceArchive__ttl,
.serviceArchive--black .serviceArchiveCat__ttl {
  color: #fff;
}
.serviceArchive--black .serviceArchive__num {
  -webkit-text-stroke: 1px #fff;
}
.serviceArchive--black .serviceArchiveCat__list li {
  background-color: #fff;
  color: #000;
}
.serviceArchive--black .c-btn {
  border: 1px solid #fff;
}
.serviceArchive--black .serviceArchive__imgWrap::after {
  background-color: #000;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
.serviceArchive--white {
  background-color: #fff;
}
.serviceArchive--white .serviceArchive__flex {
  align-items: flex-start;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .serviceArchive--white .serviceArchive__flex {
    flex-direction: column;
  }
}
.serviceArchive--white .c-txt,
.serviceArchive--white .serviceArchive__ttl,
.serviceArchive--white .serviceArchiveCat__ttl {
  color: #000;
}
.serviceArchive--white .serviceArchive__num {
  -webkit-text-stroke: 1px #000;
}
.serviceArchive--white .serviceArchiveCat__list li {
  background-color: #000;
  color: #fff;
}
.serviceArchive--white .serviceArchive__imgWrap::after {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .serviceArchive--white .serviceArchive__imgWrap::before {
    background-color: #fff;
    content: "";
    height: 100%;
    left: -20px;
    position: absolute;
    top: 0;
    width: 20px;
    z-index: 0;
  }
}
.serviceArchive__imgWrap {
  padding-top: 5.2vw;
  position: relative;
  width: 44.54%;
}
@media screen and (min-width: 1920px) {
  .serviceArchive__imgWrap {
    padding-top: 98px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchive__imgWrap {
    padding-top: 16vw;
    position: relative;
    width: 100%;
    z-index: 1;
  }
}
.serviceArchive__en {
  -webkit-transform: rotate(90deg);
  color: #fff;
  font-family: var(--font-en);
  font-size: 6.25vw;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  mix-blend-mode: difference;
  position: absolute;
  transform: rotate(90deg);
  z-index: 2;
}
@media screen and (min-width: 1920px) {
  .serviceArchive__en {
    font-size: 120px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchive__en {
    font-size: 13.33vw;
  }
}
.serviceArchive__en--01 {
  left: -8vw;
  top: 8.5vw;
}
@media screen and (min-width: 1920px) {
  .serviceArchive__en--01 {
    left: -155px;
    top: 160px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchive__en--01 {
    left: -20vw;
    top: 22.5vw;
  }
}
.serviceArchive__en--02 {
  right: -3.5vw;
  top: 3.5vw;
}
@media screen and (min-width: 1920px) {
  .serviceArchive__en--02 {
    right: -70px;
    top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchive__en--02 {
    left: -9.5vw;
    right: initial;
    top: 11.5vw;
  }
}
.serviceArchive__en--03 {
  left: -5.5vw;
  top: 5.5vw;
}
@media screen and (min-width: 1920px) {
  .serviceArchive__en--03 {
    left: -110px;
    top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchive__en--03 {
    left: -14vw;
    top: 15.5vw;
  }
}
.serviceArchive__en--04 {
  right: -14vw;
  top: 14vw;
}
@media screen and (min-width: 1920px) {
  .serviceArchive__en--04 {
    right: -280px;
    top: 270px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchive__en--04 {
    left: -32vw;
    right: initial;
    top: 34vw;
  }
}
.serviceArchive__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.serviceArchive__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.serviceArchive__txts {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .serviceArchive__txts {
    position: relative;
    width: 100%;
    z-index: 2;
  }
}
.serviceArchive__txtsBox {
  max-width: 550px;
  padding-bottom: 40px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .serviceArchive__txtsBox {
    max-width: 100%;
    padding-bottom: 0;
  }
}
.serviceArchive__num {
  font-family: var(--font-num);
  position: relative;
}
@media screen and (max-width: 768px) {
  .serviceArchive__num {
    margin-top: -25px;
  }
}
.serviceArchive__num--01 {
  max-width: 120px;
}
@media screen and (max-width: 768px) {
  .serviceArchive__num--01 {
    max-width: 90px;
  }
}
.serviceArchive__num--02 {
  max-width: 140px;
}
@media screen and (max-width: 768px) {
  .serviceArchive__num--02 {
    max-width: 105px;
  }
}
.serviceArchive__num--03 {
  max-width: 140px;
}
@media screen and (max-width: 768px) {
  .serviceArchive__num--03 {
    max-width: 105px;
  }
}
.serviceArchive__num--04 {
  max-width: 140px;
}
@media screen and (max-width: 768px) {
  .serviceArchive__num--04 {
    max-width: 105px;
  }
}
.serviceArchive__ttl {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: -25px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .serviceArchive__ttl {
    font-size: 30px;
    margin-top: -18px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchive__ttl {
    font-size: 25px;
    margin-top: 10px;
  }
}
.serviceArchive .c-txt {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .serviceArchive .c-txt {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchive .c-txt {
    margin-top: 20px;
  }
}
.serviceArchive .c-btn {
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .serviceArchive .c-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchive .c-btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}

.serviceArchiveCat {
  align-items: baseline;
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .serviceArchiveCat {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchiveCat--first {
    margin-top: 20px;
  }
}
.serviceArchiveCat__ttl {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  margin-right: 10px;
  width: 85px;
}
@media screen and (max-width: 1080px) {
  .serviceArchiveCat__ttl {
    font-size: 13px;
    margin-right: 7px;
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchiveCat__ttl {
    font-size: 12px;
    margin-right: 5px;
    width: 72.5px;
  }
}
.serviceArchiveCat__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 1080px) {
  .serviceArchiveCat__list {
    gap: 7px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchiveCat__list {
    gap: 5px;
  }
}
.serviceArchiveCat__list li {
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  padding: 7.5px 20px;
}
@media screen and (max-width: 1080px) {
  .serviceArchiveCat__list li {
    border-radius: 4px;
    font-size: 13px;
    padding: 6px 15px;
  }
}
@media screen and (max-width: 768px) {
  .serviceArchiveCat__list li {
    border-radius: 3px;
    font-size: 12px;
    padding: 4px 4px;
  }
}

/* =======================================
パートナー募集
======================================= */
.partner > .c-inner > .p-ttl-wrap .p-ttl {
  font-size: 35px;
}
@media screen and (max-width: 1080px) {
  .partner > .c-inner > .p-ttl-wrap .p-ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .partner > .c-inner > .p-ttl-wrap .p-ttl {
    font-size: 20px;
  }
}

.partnerList {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
  padding-top: 60px;
}
@media screen and (max-width: 1080px) {
  .partnerList {
    gap: 50px 30px;
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .partnerList {
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    width: 100%;
  }
}
.partnerList li {
  align-items: center;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  display: flex;
  gap: 20px;
  min-height: 240px;
  padding: 28px 20px;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1080px) {
  .partnerList li {
    padding: 20px 15px;
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .partnerList li {
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    min-height: initial;
    padding: 20px;
    width: 100%;
  }
}
.partnerList__icon {
  flex-shrink: 0;
  width: 100px;
}
@media screen and (max-width: 1080px) {
  .partnerList__icon {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .partnerList__icon {
    width: 50px;
  }
}
.partnerList__ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .partnerList__ttl {
    font-size: 18px;
  }
}
.partnerList .c-txt {
  line-height: 1.8;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .partnerList .c-txt {
    margin-top: 10px;
  }
}

/* =======================================
Flow  
======================================= */
.partnerFlow {
  background: #fff;
}
.partnerFlow__list {
  display: flex;
  padding-top: 60px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .partnerFlow__list {
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .partnerFlow__list {
    flex-direction: column;
    gap: 60px;
    padding-top: 30px;
    width: 100%;
  }
}
.partnerFlow__list li {
  position: relative;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .partnerFlow__list li {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    width: 100%;
  }
}
.partnerFlow__arrow {
  -webkit-transform: translateY(-50%);
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}
@media screen and (max-width: 768px) {
  .partnerFlow__arrow {
    -webkit-transform: translateX(50%) rotate(90deg);
    bottom: -60px;
    right: 50%;
    top: initial;
    transform: translateX(50%) rotate(90deg);
    width: 30px;
  }
}
.partnerFlow__num {
  font-family: var(--font-num);
  font-size: 60px;
  font-weight: 300;
  line-height: 1.166;
}
@media screen and (max-width: 768px) {
  .partnerFlow__num {
    font-size: 50px;
  }
}
.partnerFlow__ttl {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .partnerFlow__ttl {
    font-size: 20px;
    margin-top: 0px;
  }
}
.partnerFlow__icon {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .partnerFlow__icon {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .partnerFlow__icon svg {
    margin-left: auto;
    margin-right: auto;
    max-width: 220px;
    width: 100%;
  }
}
.partnerFlow .c-txt {
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  max-width: 180px;
}
@media screen and (max-width: 1080px) {
  .partnerFlow .c-txt {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .partnerFlow .c-txt {
    margin-top: 20px;
    max-width: 100%;
    text-align: center;
  }
}

/* ===== service parts ===== */
/* =======================================
サービス topセクション
======================================= */
.s-Top {
  background-color: #fff;
}

/* =======================================
Trouble こんなお悩みありませんか？
======================================= */
.troubleList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 20px;
}
@media screen and (max-width: 1080px) {
  .troubleList {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .troubleList {
    gap: 20px;
    padding-top: 30px;
  }
}
.troubleList li {
  background-color: #fff;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  padding: 30px;
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1080px) {
  .troubleList li {
    padding: 25px;
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .troubleList li {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
    width: 100%;
  }
}
.troubleList__ttl {
  align-items: center;
  display: flex;
  font-size: 24px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.4;
  min-height: 102px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .troubleList__ttl {
    font-size: 20px;
    min-height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .troubleList__ttl {
    font-size: 16px;
    line-height: 1.8;
    min-height: initial;
  }
}
.troubleList__img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  max-width: 200px;
  width: 71.7%;
}
@media screen and (max-width: 768px) {
  .troubleList__img {
    margin-top: 10px;
    width: 35.22%;
  }
}
.troubleList .c-txt {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .troubleList .c-txt {
    margin-top: 10px;
  }
}

/* =======================================
サービス meritセクション
======================================= */
.s-merit {
  background-color: #000;
}
.s-merit .p-ttl,
.s-merit .p-subTtl {
  color: #fff;
}
.s-merit .sp__bdTop::after {
  background: #fff;
}
.s-merit .meritList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 45px;
}
@media screen and (max-width: 1080px) {
  .s-merit .meritList {
    gap: 35px;
  }
}
@media screen and (max-width: 768px) {
  .s-merit .meritList {
    gap: 30px;
    padding-top: 30px;
  }
}
.s-merit .meritList__ttls {
  align-items: center;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .s-merit .meritList__ttls {
    align-items: baseline;
    gap: 10px;
  }
}
.s-merit .meritList__nums {
  align-items: center;
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .s-merit .meritList__nums {
    align-items: baseline;
    gap: 2px;
  }
}
.s-merit .meritList__icon {
  flex-shrink: 0;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .s-merit .meritList__icon {
    position: relative;
    top: 4px;
    width: 15px;
  }
}
.s-merit .meritList__num {
  color: #fff;
  font-family: var(--font-num);
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .s-merit .meritList__num {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .s-merit .meritList__num {
    font-size: 22px;
  }
}
.s-merit .meritList__ttl {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1080px) {
  .s-merit .meritList__ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .s-merit .meritList__ttl {
    font-size: 16px;
    line-height: 1.8;
  }
}
.s-merit .meritList .c-txt {
  color: #fff;
  margin-top: 15px;
}
/* =======================================
サービス topセクション
======================================= */
.s-Top {
  background-color: #fff;
}

/* =======================================
サービス workセクション
======================================= */
.s-work {
  position: relative;
  z-index: 0;
}
.s-work::before {
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.s-work__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.s-work__bg img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.s-work .c-inner-md {
  position: relative;
  z-index: 3;
}
.s-work__ttls {
  position: relative;
  z-index: 3;
}
.s-work .c-ttl,
.s-work .c-subTtl {
  color: #fff;
  text-align: center;
}
.s-work .c-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .s-work .c-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .s-work .c-btn {
    margin-top: 30px;
  }
}
.s-work__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .s-work__list {
    gap: 10px;
    margin-top: 45px;
  }
}
.s-work__list li {
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1080px) {
  .s-work__list li {
    width: calc((100% - 30px) / 4);
  }
}
.s-work__link {
  background-color: #000;
  display: block;
  padding-bottom: 40px;
  padding-top: 40px;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 1500px) {
  .s-work__link {
    padding-bottom: 2.666vw;
    padding-top: 2.666vw;
  }
}
@media screen and (max-width: 768px) {
  .s-work__link {
    padding-bottom: 5.333vw;
    padding-top: 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .s-work__link:hover {
    cursor: pointer;
    opacity: 1;
  }
  .s-work__link:hover .topNewWork__img svg {
    right: 5px;
  }
  .s-work__link:hover .topNewWork__img::after {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .s-work__link:hover .topNewWork__img::before {
    -webkit-transform: translate(-50%, -50%) rotate(-15deg);
    transform: translate(-50%, -50%) rotate(-15deg);
  }
}
.s-work__imgWrap {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 75.75%;
}
@media screen and (max-width: 768px) {
  .s-work__imgWrap {
    width: 85.96%;
  }
}
.s-work__en {
  -webkit-transform: rotate(90deg) translateZ(0);
  color: #fff;
  font-family: var(--font-en);
  font-size: 50px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  transform: rotate(90deg) translateZ(0);
  z-index: 4;
}
@media screen and (max-width: 1500px) {
  .s-work__en {
    font-size: 3.3333vw;
  }
}
@media screen and (max-width: 768px) {
  .s-work__en {
    font-size: 12vw;
  }
}
@media screen and (max-width: 560px) {
  .s-work__en {
    font-size: 11vw;
  }
}
.s-work__en--graphic {
  left: -107px;
  top: 40px;
}
@media screen and (max-width: 1500px) {
  .s-work__en--graphic {
    left: -7.133vw;
    top: 2.667vw;
  }
}
@media screen and (max-width: 768px) {
  .s-work__en--graphic {
    left: -21.5vw;
    top: 12.5vw;
  }
}
@media screen and (max-width: 560px) {
  .s-work__en--graphic {
    left: -19.5vw;
    top: 11.5vw;
  }
}
.s-work__en--web {
  left: -65px;
  top: -4px;
}
@media screen and (max-width: 1500px) {
  .s-work__en--web {
    left: -4.333vw;
    top: -0.267vw;
  }
}
@media screen and (max-width: 768px) {
  .s-work__en--web {
    left: -13vw;
    top: 3.5vw;
  }
}
@media screen and (max-width: 560px) {
  .s-work__en--web {
    left: -12vw;
    top: 3.5vw;
  }
}
.s-work__en--movie {
  left: -84px;
  top: 13px;
}
@media screen and (max-width: 1500px) {
  .s-work__en--movie {
    left: -5.6vw;
    top: 0.867vw;
  }
}
@media screen and (max-width: 768px) {
  .s-work__en--movie {
    left: -16.5vw;
    top: 8.5vw;
  }
}
@media screen and (max-width: 560px) {
  .s-work__en--movie {
    left: -15.5vw;
    top: 7.5vw;
  }
}
.s-work__en--sign {
  left: -150px;
  top: 82px;
}
@media screen and (max-width: 1500px) {
  .s-work__en--sign {
    left: -10vw;
    top: 5.467vw;
  }
}
@media screen and (max-width: 768px) {
  .s-work__en--sign {
    left: -32vw;
    top: 23.5vw;
  }
}
@media screen and (max-width: 560px) {
  .s-work__en--sign {
    left: -30vw;
    top: 21.5vw;
  }
}
.s-work__txts {
  margin-left: auto;
  margin-right: auto;
  width: 75.75%;
}
@media screen and (max-width: 768px) {
  .s-work__txts {
    width: 85.96%;
  }
}
.s-work__link {
  display: block;
  flex-grow: 1;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (min-width: 769px) {
  .s-work__link:hover {
    cursor: pointer;
    opacity: 1;
  }
  .s-work__link:hover .s-work__img svg {
    right: 5px;
  }
  .s-work__link:hover .s-work__img::after {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .s-work__link:hover .s-work__img::before {
    -webkit-transform: translate(-50%, -50%) rotate(-15deg);
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  .s-work__link:hover .s-work__subttl {
    opacity: 0.6;
  }
  .s-work__link:hover .s-work__subCat {
    opacity: 0.6;
  }
}
.s-work .s-work__thumbnail {
  width: 100%;
}
.s-work__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.s-work__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.s-work__img svg {
  bottom: 15px;
  position: absolute;
  right: 15px;
  transition: right 0.2s ease;
  width: 17px;
  z-index: 4;
}
@media screen and (max-width: 1080px) {
  .s-work__img svg {
    width: 14px;
  }
}
@media screen and (max-width: 768px) {
  .s-work__img svg {
    width: 18px;
  }
}
@media screen and (max-width: 560px) {
  .s-work__img svg {
    width: 14px;
  }
}
.s-work__img::after {
  background: rgba(0, 0, 0, 0);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.2s ease;
  width: 100%;
  z-index: 2;
}
.s-work__img::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  color: #fff;
  content: "Check!";
  font-family: var(--font-en);
  font-size: 32px;
  left: 50%;
  line-height: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .s-work__img::before {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .s-work__img::before {
    content: none;
  }
}
.s-work__cat {
  background-color: #fff;
  border-radius: 4px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  margin-right: auto;
  margin-top: 10px;
  padding: 4px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .s-work__cat {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .s-work__cat {
    border-radius: 2.5px;
    font-size: 10px;
  }
}
.s-work__subttl {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #fff;
  display: -webkit-box;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  overflow: hidden;
  text-align: left;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 1080px) {
  .s-work__subttl {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .s-work__subttl {
    font-size: 16px;
  }
}
.s-work__subCat {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-right: auto;
  margin-top: 10px;
  transition: opacity 0.2s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .s-work__subCat {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .s-work__subCat {
    font-size: 12px;
  }
}
.s-work__txtBtn {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .s-work__txtBtn {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .s-work__txtBtn {
    font-size: 14px;
  }
}
.s-work__txtBtn svg {
  bottom: 2px;
  display: inline-block;
  margin-left: 6px;
  position: relative;
  right: 0;
  transition: right 0.3s ease;
  vertical-align: middle;
  width: 20px;
}
@media screen and (max-width: 1080px) {
  .s-work__txtBtn svg {
    width: 17px;
  }
}
@media screen and (max-width: 768px) {
  .s-work__txtBtn svg {
    width: 15px;
  }
}
.s-work__txtBtn {
  cursor: pointer;
}
.s-work__txtBtn::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #fff;
  bottom: -10px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0); /* 横0%、縦0%（見えない） */
  transform-origin: left center; /* 横=左起点／縦=中央起点で上下に広がる */
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease; /* 横0.1s、縦も同時に0.1sで出現 */
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .s-work__txtBtn::after {
    -webkit-transform: scaleX(1) scaleY(1);
    bottom: -5px;
    transform: scaleX(1) scaleY(1);
  }
}
@media screen and (min-width: 769px) {
  .s-work__txtBtn:hover::after {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1); /* 横: 左→右に伸びる／縦: 0→2pxへ上下に広がる */
  }
  .s-work__txtBtn:hover svg {
    right: -7px;
  }
}

/* =======================================
サービス workセクション SPスライダー
======================================= */
.s-workSwiper {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .s-workSwiper {
    margin-top: 30px;
  }
}
.s-workSwiper .s-workSwiper__pagination {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  overflow: visible;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.s-workSwiper .s-workSwiper__pagination button {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 100px;
  cursor: pointer;
  display: block;
  display: block;
  height: 15px;
  margin: 0 !important;
  opacity: 1;
  padding: 0;
  position: relative;
  transition: background-color 0.2s eas;
  width: 15px;
}
@media screen and (min-width: 769px) {
  .s-workSwiper .s-workSwiper__pagination button:hover {
    background-color: #fff;
  }
}
.s-workSwiper .s-workSwiper__pagination button.is-active {
  background-color: #fff;
}

/* スライドが1枚のときの見た目調整 */
.s-workSwiper.is-single .swiper-wrapper {
  -webkit-transform: none !important;
  display: block;
  transform: none !important;
}
.s-workSwiper.is-single .swiper-slide {
  margin: 0 auto;
  max-width: 480px;
  width: 80%;
}

/* =======================================
サービス Costセクション
======================================= */
.s-cost {
  background-color: #fff;
}

.s-costTable {
  border-collapse: collapse;
  margin-top: 60px;
  table-layout: fixed;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .s-costTable {
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .s-costTable {
    margin-top: 20px;
  }
}
.s-costTable th {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 10px;
}
@media screen and (max-width: 1080px) {
  .s-costTable th {
    font-size: 14px;
    padding: 15px 5px;
  }
}
@media screen and (max-width: 768px) {
  .s-costTable th {
    font-size: 14px;
    padding: 7px 5px;
  }
}
.s-costTable td {
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding: 20px 10px;
  text-align: left;
  word-break: break-word;
}
@media screen and (max-width: 1080px) {
  .s-costTable td {
    font-size: 14px;
    padding: 15px 5px;
  }
}
@media screen and (max-width: 768px) {
  .s-costTable td {
    font-size: 14px;
    padding: 10px 5px;
  }
}
.s-costTable thead th {
  background: #000;
  color: #fff;
  text-align: center;
}
.s-costTable thead th:not(:first-of-type) {
  border-left: 1px solid #fff;
}
.s-costList {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .s-costList {
    gap: 40px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .s-costList {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
}
.s-costList__item {
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  padding: 30px;
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 1080px) {
  .s-costList__item {
    padding: 25px;
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .s-costList__item {
    padding: 20px;
    width: 100%;
  }
}
.s-costList__flex {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 10px;
  justify-content: flex-start;
}
@media screen and (max-width: 1080px) {
  .s-costList__flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .s-costList__flex {
    flex-direction: row;
    gap: 0px 5px;
  }
}
.s-costList__ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 1080px) {
  .s-costList__ttl {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .s-costList__ttl {
    font-size: 20px;
    line-height: 1.4;
  }
}
.s-costList__en {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 1080px) {
  .s-costList__en {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .s-costList__en {
    font-size: 12px;
  }
}
.s-costList .c-txt {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .s-costList .c-txt {
    margin-top: 5px;
  }
}

/* =======================================
サービス Planセクション
======================================= */
.s-plan {
  background-color: #fff;
}
.s-plan .p-catchWrap {
  padding-top: 20px;
}
@media screen and (max-width: 1080px) {
  .s-plan .p-catchWrap {
    padding-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .s-plan .p-catchWrap {
    padding-top: 30px;
  }
}

.s-planList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .s-planList {
    gap: 30px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .s-planList {
    gap: 20px;
    margin-top: 30px;
  }
}
.s-planList__item {
  align-items: center;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  display: flex;
  gap: 40px;
  padding: 40px;
}
@media screen and (max-width: 1080px) {
  .s-planList__item {
    gap: 30px;
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .s-planList__item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}
.s-planList__img {
  flex-shrink: 0;
  width: 29.56%;
}
@media screen and (max-width: 768px) {
  .s-planList__img {
    margin-left: auto;
    margin-right: auto;
    width: 68.1%;
  }
}
.s-planList__subTtl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1080px) {
  .s-planList__subTtl {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .s-planList__subTtl {
    font-size: 14px;
  }
}
.s-planList__ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 10px;
}
@media screen and (max-width: 1080px) {
  .s-planList__ttl {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .s-planList__ttl {
    font-size: 20px;
  }
}
.s-planList .s-planList__ttl + .c-txt {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .s-planList .s-planList__ttl + .c-txt {
    margin-top: 10px;
  }
}

/* =======================================
サービス voiceセクション
======================================= */
.s-voice {
  position: relative;
}
.s-voice__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.s-voice__bg img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.s-voice::after {
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.s-voice .c-inner {
  position: relative;
  z-index: 3;
}
.s-voice .p-ttl {
  color: #fff;
}
.s-voice .p-subTtl {
  color: #fff;
  line-height: 2.2;
}
.s-voice .sp__bdTop::after {
  background: #fff;
}
.s-voice .c-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .s-voice .c-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .s-voice .c-btn {
    margin-top: 30px;
  }
}

.voiceList {
  display: flex;
  flex-wrap: wrap;
  gap: 90px 60px;
  padding-top: 60px;
}
@media screen and (max-width: 1080px) {
  .voiceList {
    gap: 50px 30px;
    padding-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .voiceList {
    flex-direction: column;
    gap: 30px 20px;
    padding-top: 30px;
  }
}
.voiceList li {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 1080px) {
  .voiceList li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .voiceList li {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    width: 100%;
  }
}
.voiceList__img {
  aspect-ratio: 520/400;
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .voiceList__img {
    aspect-ratio: 520/400;
    border-radius: 40px;
  }
}
@media screen and (max-width: 768px) {
  .voiceList__img {
    aspect-ratio: 670/515;
    border-radius: 32px;
  }
}
.voiceList__img img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.voiceList__ttl {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #fff;
  display: -webkit-box;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .voiceList__ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .voiceList__ttl {
    font-size: 20px;
    line-height: 1.4;
  }
}
.voiceList .c-txt {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  color: #fff;
  display: -webkit-box;
  font-weight: 300;
  margin-top: 10px;
  overflow: hidden;
}

/* =======================================
サービス Othersセクション
======================================= */
.s-others {
  background-color: #000;
}
.s-others .p-ttl,
.s-others .p-subTtl {
  color: #fff;
}
.s-others .sp__bdTop::after {
  background: #fff;
}

.s-othersList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .s-othersList {
    gap: 30px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .s-othersList {
    gap: 20px;
    margin-top: 30px;
  }
}
.s-othersList__item {
  align-items: center;
  background-color: #fff;
  display: flex;
  gap: 40px;
  padding: 40px;
}
@media screen and (max-width: 1080px) {
  .s-othersList__item {
    gap: 30px;
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .s-othersList__item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}
.s-othersList__img {
  flex-shrink: 0;
  width: 29.56%;
}
@media screen and (max-width: 768px) {
  .s-othersList__img {
    margin-left: auto;
    margin-right: auto;
    width: 68.1%;
  }
}
.s-othersList__cat {
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  padding: 6px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .s-othersList__cat {
    font-size: 13px;
    margin-bottom: 15px;
    padding: 5px 15px;
  }
}
@media screen and (max-width: 768px) {
  .s-othersList__cat {
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 10px;
    padding: 3px 10px;
  }
}
.s-othersList__ttl {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .s-othersList__ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .s-othersList__ttl {
    font-size: 20px;
  }
}
.s-othersList .s-othersList__ttl + .c-txt {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .s-othersList .s-othersList__ttl + .c-txt {
    margin-top: 10px;
  }
}

/* =======================================
下層サービスページ Menu
======================================= */
.s-menu {
  background-color: #fff;
}
.s-menu .bottom-txt {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .s-menu .bottom-txt {
    margin-top: 30px;
  }
}

.s-menuBtns {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 80px;
  padding-top: 50px;
}
@media screen and (max-width: 1080px) {
  .s-menuBtns {
    gap: 35px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .s-menuBtns {
    gap: 30px;
    padding-top: 30px;
  }
}
.s-menuBtns__link {
  border: 2px solid #000;
  display: block;
  position: relative;
  width: calc((100% - 80px) / 2);
}
@media screen and (max-width: 768px) {
  .s-menuBtns__link {
    margin-left: auto;
    margin-right: auto;
    max-width: 510px;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .s-menuBtns__link:hover {
    cursor: pointer;
  }
  .s-menuBtns__link:hover::after {
    width: 100%;
  }
  .s-menuBtns__link:hover .s-menuBtns__ttl {
    color: #fff;
  }
  .s-menuBtns__link:hover .s-menuBtns__ttl::after {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  .s-menuBtns__link:hover .c-txt {
    color: #fff;
  }
  .s-menuBtns__link:hover .s-menuBtns__arrow {
    right: 10px;
  }
}
.s-menuBtns__link::after {
  background-color: #000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.3s ease;
  width: 0;
}
.s-menuBtns__box {
  align-items: flex-start;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-height: 222px;
  padding: 40px 30px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .s-menuBtns__box {
    min-height: 210px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .s-menuBtns__box {
    min-height: 133px;
    padding: 15px;
  }
}
.s-menuBtns__ttl {
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  position: relative;
  transition: color 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .s-menuBtns__ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .s-menuBtns__ttl {
    font-size: 20px;
  }
}
.s-menuBtns__ttl::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #fff;
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0);
  transform-origin: left center;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 100%;
  will-change: transform;
}
.s-menuBtns .c-txt {
  color: #000;
  line-height: 1.8;
  position: relative;
  transition: color 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .s-menuBtns .c-txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .s-menuBtns .c-txt {
    font-size: 12px;
  }
}
.s-menuBtns__arrow {
  bottom: -20px;
  max-width: 80px;
  position: relative;
  position: absolute;
  right: 30px;
  transition: right 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .s-menuBtns__arrow {
    bottom: -15px;
    max-width: 60px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .s-menuBtns__arrow {
    bottom: -10px;
    max-width: 40px;
    right: 15px;
  }
}

/* =======================================
サービス Production exampleセクション
======================================= */
.s-example {
  position: relative;
  z-index: 0;
}
.s-example__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.s-example__bg img {
  -o-object-fit: cover;
  -o-object-position: center center;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.s-example::before {
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.s-example .c-inner {
  position: relative;
  z-index: 3;
}
.s-example .p-ttl {
  color: #fff;
}
.s-example .p-subTtl {
  color: #fff;
  line-height: 2.2;
}
.s-example .sp__bdTop::after {
  background: #fff;
}
.s-example__list {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .s-example__list {
    gap: 20px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .s-example__list {
    margin-top: 20px;
  }
}
.s-example__list li {
  width: calc((100% - 140px) / 3);
}
@media screen and (max-width: 1080px) {
  .s-example__list li {
    width: calc((100% - 40px) / 3);
  }
}
.s-example__link {
  display: block;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (min-width: 769px) {
  .s-example__link:hover {
    cursor: pointer;
    opacity: 1;
  }
  .s-example__link:hover .topNewWork__img svg {
    right: 5px;
  }
  .s-example__link:hover .topNewWork__img::after {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .s-example__link:hover .topNewWork__img::before {
    -webkit-transform: translate(-50%, -50%) rotate(-15deg);
    transform: translate(-50%, -50%) rotate(-15deg);
  }
}
.s-example__imgWrap {
  position: relative;
}
.s-example__link {
  display: block;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (min-width: 769px) {
  .s-example__link:hover {
    cursor: pointer;
    opacity: 1;
  }
  .s-example__link:hover .s-example__img svg {
    bottom: 10px;
  }
  .s-example__link:hover .s-example__img::after {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .s-example__link:hover .s-example__img::before {
    -webkit-transform: translate(-50%, -50%) rotate(-15deg);
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  .s-example__link:hover .s-example__subttl {
    opacity: 0.6;
  }
  .s-example__link:hover .s-example__subCat {
    opacity: 0.6;
  }
}
.s-example__thumbnail {
  -o-object-fit: cover;
  -o-object-position: center center;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.s-example__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.s-example__img svg {
  -webkit-transform: rotate(90deg);
  bottom: 20px;
  position: absolute;
  right: 20px;
  transform: rotate(90deg);
  transition: bottom 0.2s ease;
  width: 22px;
  z-index: 4;
}
@media screen and (max-width: 1080px) {
  .s-example__img svg {
    width: 14px;
  }
}
@media screen and (max-width: 768px) {
  .s-example__img svg {
    width: 18px;
  }
}
@media screen and (max-width: 560px) {
  .s-example__img svg {
    width: 14px;
  }
}
.s-example__img::after {
  background: rgba(0, 0, 0, 0);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.2s ease;
  width: 100%;
  z-index: 2;
}
.s-example__img::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  color: #fff;
  content: "Check!";
  font-family: var(--font-en);
  font-size: 32px;
  left: 50%;
  line-height: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .s-example__img::before {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .s-example__img::before {
    content: none;
  }
}
.s-example__cat {
  background-color: #000;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-right: auto;
  margin-top: 10px;
  padding: 4px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .s-example__cat {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .s-example__cat {
    border-radius: 2.5px;
    font-size: 10px;
  }
}
.s-example__subttl {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #fff;
  display: -webkit-box;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  overflow: hidden;
  text-align: left;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 1080px) {
  .s-example__subttl {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .s-example__subttl {
    font-size: 16px;
  }
}
.s-example__subCat {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  line-height: 1.3;
  margin-right: auto;
  margin-top: 10px;
  transition: opacity 0.2s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .s-example__subCat {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .s-example__subCat {
    font-size: 12px;
  }
}

/* =======================================
サービス exampleセクション SPスライダー
======================================= */
.s-exampleSwiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .s-exampleSwiper {
    margin-top: 30px;
  }
}
.s-exampleSwiper .s-exampleSwiper__pagination {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  overflow: visible;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.s-exampleSwiper .s-exampleSwiper__pagination button {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 100px;
  cursor: pointer;
  display: block;
  display: block;
  height: 15px;
  margin: 0 !important;
  opacity: 1;
  padding: 0;
  position: relative;
  transition: background-color 0.2s eas;
  width: 15px;
}
@media screen and (min-width: 769px) {
  .s-exampleSwiper .s-exampleSwiper__pagination button:hover {
    background-color: #fff;
  }
}
.s-exampleSwiper .s-exampleSwiper__pagination button.is-active {
  background-color: #fff;
}

/* スライドが1枚のときの見た目調整 */
.s-exampleSwiper.is-single .swiper-wrapper {
  -webkit-transform: none !important;
  display: block;
  transform: none !important;
}
.s-exampleSwiper.is-single .swiper-slide {
  margin: 0 auto;
  max-width: 480px;
  width: 80%;
}

/* =======================================
s-exampleList
======================================= */
.s-exampleList {
  background-color: #fff;
}
.s-exampleList__list {
  display: flex;
  flex-direction: column;
  gap: 240px;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__list {
    gap: 180px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__list {
    gap: 120px;
  }
}
.s-exampleList__subTtl {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__subTtl {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__subTtl {
    font-size: 16px;
  }
}
.s-exampleList__ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 20px;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__ttl {
    font-size: 18px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__ttl {
    font-size: 16px;
  }
}
.s-exampleList__picture {
  display: block;
  margin-top: 20px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__picture {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__picture {
    margin-top: 10px;
  }
}
.s-exampleList__video {
  margin-top: 20px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__video {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__video {
    margin-top: 10px;
  }
}
.s-exampleList .c-txt {
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .s-exampleList .c-txt {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList .c-txt {
    margin-top: 25px;
  }
}
.s-exampleList .c-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .s-exampleList .c-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList .c-btn {
    margin-top: 20px;
  }
}
.s-exampleList__desc {
  border-top: 1px solid #d2d2d2;
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__desc {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__desc {
    margin-top: 10px;
  }
}
.s-exampleList__desc li {
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  min-height: 65px;
  padding: 16px 40px;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__desc li {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__desc li {
    min-height: 60px;
    padding: 20px 10px;
  }
}
.s-exampleList__desc-ttl {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  width: 210px;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__desc-ttl {
    font-size: 14px;
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__desc-ttl {
    font-size: 12px;
    width: 95px;
  }
}
.s-exampleList__desc-txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__desc-txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__desc-txt {
    font-size: 14px;
  }
}
.s-exampleList__desc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .s-exampleList__desc-list {
    gap: 10px;
  }
}
.s-exampleList__desc-txt_regular {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 1080px) {
  .s-exampleList__desc-txt_regular {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .s-exampleList__desc-txt_regular {
    font-size: 12px;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */