@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1001px) {
  .is-sp {
    display: none !important;
  }
}
body {
  font-size: 16px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 14px;
  }
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .inner {
    padding: 0 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

a {
  font-family: "Noto Sans JP", sans-serif;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ddd;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 8px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 10px 0;
  }
}
.header.active {
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .inner {
  max-width: 1300px;
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .logo {
  max-width: 200px;
}
@media screen and (max-width: 1000px) {
  .header .logo {
    max-width: 150px;
  }
}
.header .logo a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .logo a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .right ul li {
  margin-right: 40px;
  text-align: center;
}
.header .right ul li a {
  display: block;
  text-decoration: none;
}
.header .right ul li a .en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto Slab", serif;
  color: #fe9b4b;
  margin-bottom: 8px;
  font-size: 14px;
}
.header .right ul li a .en .char {
  display: inline-block;
  -webkit-animation: none;
          animation: none;
  will-change: transform;
}
.header .right ul li a .ja {
  color: #111;
  -webkit-transition: color 0.35s ease, opacity 0.35s ease;
  transition: color 0.35s ease, opacity 0.35s ease;
}
.header .right ul li a:hover .en .char {
  -webkit-animation: headerNavWave 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: headerNavWave 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  -webkit-animation-delay: calc(var(--char-index) * 35ms);
          animation-delay: calc(var(--char-index) * 35ms);
}
.header .right ul li a:hover .ja {
  color: #000;
}
.header .right .header-btn a {
  color: #fff;
  padding: 10px 40px;
  border: 1px solid #fe9b4b;
  background: #fe9b4b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .right .header-btn a:hover {
  background: #fff;
  color: #fe9b4b;
}
@-webkit-keyframes headerNavWave {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes headerNavWave {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fv {
  position: relative;
}
.fv::after {
  position: absolute;
  content: "";
  background: rgba(100, 100, 100, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv video {
  width: 100%;
  max-height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv .fv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  max-width: 750px;
}
@media screen and (max-width: 1000px) {
  .fv .fv-title {
    width: 90%;
  }
}

/* ========================================
   FV基本
======================================== */
.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fv-wrap {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
  background: #fff;
}

/* ========================================
   動画
======================================== */
.fv-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@-webkit-keyframes fv-video-start {
  0% {
    -webkit-transform: translateX(-50%) scale(1.14);
            transform: translateX(-50%) scale(1.14);
    object-position: center 0%;
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1.05);
            transform: translateX(-50%) scale(1.05);
    object-position: center 5%;
  }
}

@keyframes fv-video-start {
  0% {
    -webkit-transform: translateX(-50%) scale(1.14);
            transform: translateX(-50%) scale(1.14);
    -o-object-position: center 0%;
       object-position: center 0%;
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1.05);
            transform: translateX(-50%) scale(1.05);
    -o-object-position: center 5%;
       object-position: center 5%;
  }
}
@-webkit-keyframes fv-video-pan {
  0% {
    -webkit-transform: translateX(-50%) scale(1.05);
            transform: translateX(-50%) scale(1.05);
    object-position: center 0%;
  }
  50% {
    -webkit-transform: translateX(-50.5%) scale(1.08);
            transform: translateX(-50.5%) scale(1.08);
    object-position: center 11%;
  }
  100% {
    -webkit-transform: translateX(-49.5%) scale(1.06);
            transform: translateX(-49.5%) scale(1.06);
    object-position: center 20%;
  }
}
@keyframes fv-video-pan {
  0% {
    -webkit-transform: translateX(-50%) scale(1.05);
            transform: translateX(-50%) scale(1.05);
    -o-object-position: center 0%;
       object-position: center 0%;
  }
  50% {
    -webkit-transform: translateX(-50.5%) scale(1.08);
            transform: translateX(-50.5%) scale(1.08);
    -o-object-position: center 11%;
       object-position: center 11%;
  }
  100% {
    -webkit-transform: translateX(-49.5%) scale(1.06);
            transform: translateX(-49.5%) scale(1.06);
    -o-object-position: center 20%;
       object-position: center 20%;
  }
}
/* ========================================
   タイトル
======================================== */
.fv-title {
  position: absolute;
  top: 50%;
  left: clamp(30px, 7vw, 120px);
  z-index: 5;
  width: min(760px, 68vw);
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
}

.fv-title img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.98);
          transform: translateY(40px) scale(0.98);
  clip-path: inset(0 100% 0 0);
  -webkit-animation: fv-title-in 1.8s 3.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: fv-title-in 1.8s 3.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@-webkit-keyframes fv-title-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px) scale(0.98);
            transform: translateY(40px) scale(0.98);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes fv-title-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px) scale(0.98);
            transform: translateY(40px) scale(0.98);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
  }
}
/* ========================================
   オープニング
======================================== */
.fv-opening {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
}

/* ========================================
   上下左右の白い背景
======================================== */
.fv-panel {
  position: absolute;
  display: block;
  background: #fff;
  will-change: transform;
}

/* 上 */
.fv-panel-top {
  top: 0;
  left: 0;
  width: 100%;
  height: calc(50% + 2px);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: fv-panel-top-open 3.8s 0.35s cubic-bezier(0.76, 0, 0.24, 1) forwards;
          animation: fv-panel-top-open 3.8s 0.35s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

/* 下 */
.fv-panel-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(50% + 2px);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: fv-panel-bottom-open 3.8s 0.35s cubic-bezier(0.76, 0, 0.24, 1) forwards;
          animation: fv-panel-bottom-open 3.8s 0.35s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

/* 左 */
.fv-panel-left {
  top: 0;
  left: 0;
  width: calc(50% + 2px);
  height: 100%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-animation: fv-panel-left-open 4.1s 0.55s cubic-bezier(0.76, 0, 0.24, 1) forwards;
          animation: fv-panel-left-open 4.1s 0.55s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

/* 右 */
.fv-panel-right {
  top: 0;
  right: 0;
  width: calc(50% + 2px);
  height: 100%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-animation: fv-panel-right-open 4.1s 0.55s cubic-bezier(0.76, 0, 0.24, 1) forwards;
          animation: fv-panel-right-open 4.1s 0.55s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

/*
上下を先に少し開き、
左右がわずかに遅れて開く
*/
@-webkit-keyframes fv-panel-top-open {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  12% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  48% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(-102%);
            transform: translateY(-102%);
  }
}
@keyframes fv-panel-top-open {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  12% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  48% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(-102%);
            transform: translateY(-102%);
  }
}
@-webkit-keyframes fv-panel-bottom-open {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  12% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  48% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(102%);
            transform: translateY(102%);
  }
}
@keyframes fv-panel-bottom-open {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  12% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  48% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(102%);
            transform: translateY(102%);
  }
}
@-webkit-keyframes fv-panel-left-open {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  15% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  52% {
    -webkit-transform: translateX(-8%);
            transform: translateX(-8%);
  }
  100% {
    -webkit-transform: translateX(-102%);
            transform: translateX(-102%);
  }
}
@keyframes fv-panel-left-open {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  15% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  52% {
    -webkit-transform: translateX(-8%);
            transform: translateX(-8%);
  }
  100% {
    -webkit-transform: translateX(-102%);
            transform: translateX(-102%);
  }
}
@-webkit-keyframes fv-panel-right-open {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  15% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  52% {
    -webkit-transform: translateX(8%);
            transform: translateX(8%);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}
@keyframes fv-panel-right-open {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  15% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  52% {
    -webkit-transform: translateX(8%);
            transform: translateX(8%);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}
/* ========================================
   中央の細いライン
======================================== */
.fv-center-line {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 13;
  display: block;
  background: rgba(100, 100, 100, 0.2);
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}

/* 横線 */
.fv-center-line-horizontal {
  width: 0;
  height: 1px;
  -webkit-animation: fv-line-horizontal 2.8s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: fv-line-horizontal 2.8s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 縦線 */
.fv-center-line-vertical {
  width: 1px;
  height: 0;
  -webkit-animation: fv-line-vertical 2.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: fv-line-vertical 2.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@-webkit-keyframes fv-line-horizontal {
  0% {
    width: 0;
    opacity: 0;
  }
  25% {
    width: 46vw;
    opacity: 0.5;
  }
  65% {
    width: 74vw;
    opacity: 0.25;
  }
  100% {
    width: 100vw;
    opacity: 0;
  }
}

@keyframes fv-line-horizontal {
  0% {
    width: 0;
    opacity: 0;
  }
  25% {
    width: 46vw;
    opacity: 0.5;
  }
  65% {
    width: 74vw;
    opacity: 0.25;
  }
  100% {
    width: 100vw;
    opacity: 0;
  }
}
@-webkit-keyframes fv-line-vertical {
  0% {
    height: 0;
    opacity: 0;
  }
  25% {
    height: 42vh;
    opacity: 0.4;
  }
  65% {
    height: 72vh;
    opacity: 0.18;
  }
  100% {
    height: 100vh;
    opacity: 0;
  }
}
@keyframes fv-line-vertical {
  0% {
    height: 0;
    opacity: 0;
  }
  25% {
    height: 42vh;
    opacity: 0.4;
  }
  65% {
    height: 72vh;
    opacity: 0.18;
  }
  100% {
    height: 100vh;
    opacity: 0;
  }
}
/* ========================================
   薄いグレーの楕円
======================================== */
.fv-orbits {
  position: absolute;
  inset: 0;
  z-index: 14;
  overflow: hidden;
  pointer-events: none;
}

.fv-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border: 1px solid rgba(95, 95, 95, 0.14);
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
}

/* 横長 */
.fv-orbit01 {
  width: 42vmin;
  height: 20vmin;
  -webkit-animation: fv-orbit01 4.2s 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: fv-orbit01 4.2s 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 縦長 */
.fv-orbit02 {
  width: 25vmin;
  height: 54vmin;
  border-color: rgba(95, 95, 95, 0.1);
  -webkit-animation: fv-orbit02 4.5s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: fv-orbit02 4.5s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 外側 */
.fv-orbit03 {
  width: 62vmin;
  height: 32vmin;
  border-color: rgba(95, 95, 95, 0.07);
  -webkit-animation: fv-orbit03 4.8s 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: fv-orbit03 4.8s 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@-webkit-keyframes fv-orbit01 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(-22deg) scale(0.45);
            transform: translate(-50%, -50%) rotate(-22deg) scale(0.45);
  }
  20% {
    opacity: 0.55;
  }
  48% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(35deg) scale(3.4);
            transform: translate(-50%, -50%) rotate(35deg) scale(3.4);
  }
}

@keyframes fv-orbit01 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(-22deg) scale(0.45);
            transform: translate(-50%, -50%) rotate(-22deg) scale(0.45);
  }
  20% {
    opacity: 0.55;
  }
  48% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(35deg) scale(3.4);
            transform: translate(-50%, -50%) rotate(35deg) scale(3.4);
  }
}
@-webkit-keyframes fv-orbit02 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(20deg) scale(0.4);
            transform: translate(-50%, -50%) rotate(20deg) scale(0.4);
  }
  22% {
    opacity: 0.38;
  }
  52% {
    opacity: 0.18;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(2.9);
            transform: translate(-50%, -50%) rotate(-45deg) scale(2.9);
  }
}
@keyframes fv-orbit02 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(20deg) scale(0.4);
            transform: translate(-50%, -50%) rotate(20deg) scale(0.4);
  }
  22% {
    opacity: 0.38;
  }
  52% {
    opacity: 0.18;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(2.9);
            transform: translate(-50%, -50%) rotate(-45deg) scale(2.9);
  }
}
@-webkit-keyframes fv-orbit03 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(42deg) scale(0.35);
            transform: translate(-50%, -50%) rotate(42deg) scale(0.35);
  }
  25% {
    opacity: 0.25;
  }
  55% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(100deg) scale(2.5);
            transform: translate(-50%, -50%) rotate(100deg) scale(2.5);
  }
}
@keyframes fv-orbit03 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(42deg) scale(0.35);
            transform: translate(-50%, -50%) rotate(42deg) scale(0.35);
  }
  25% {
    opacity: 0.25;
  }
  55% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(100deg) scale(2.5);
            transform: translate(-50%, -50%) rotate(100deg) scale(2.5);
  }
}
/* ========================================
   スマホ
======================================== */
@media screen and (max-width: 767px) {
  .fv-wrap {
    min-height: 600px;
  }
  .fv-title {
    left: 24px;
    width: calc(100% - 48px);
  }
  .fv-orbit01 {
    width: 64vmin;
    height: 31vmin;
  }
  .fv-orbit02 {
    width: 38vmin;
    height: 82vmin;
  }
  .fv-orbit03 {
    width: 94vmin;
    height: 48vmin;
  }
  @-webkit-keyframes fv-video-pan {
    0% {
      -webkit-transform: translateX(-50%) scale(1.08);
              transform: translateX(-50%) scale(1.08);
      object-position: center 0%;
    }
    100% {
      -webkit-transform: translateX(-50%) scale(1.12);
              transform: translateX(-50%) scale(1.12);
      object-position: center 16%;
    }
  }
  @keyframes fv-video-pan {
    0% {
      -webkit-transform: translateX(-50%) scale(1.08);
              transform: translateX(-50%) scale(1.08);
      -o-object-position: center 0%;
         object-position: center 0%;
    }
    100% {
      -webkit-transform: translateX(-50%) scale(1.12);
              transform: translateX(-50%) scale(1.12);
      -o-object-position: center 16%;
         object-position: center 16%;
    }
  }
}
/* ========================================
   動きを減らす設定
======================================== */
@media (prefers-reduced-motion: reduce) {
  .fv-video,
  .fv-title img,
  .fv-panel,
  .fv-orbit,
  .fv-center-line {
    -webkit-animation: none;
            animation: none;
  }
  .fv-video {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -o-object-position: center top;
       object-position: center top;
  }
  .fv-title img {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    clip-path: none;
  }
  .fv-opening {
    display: none;
  }
}
/* ========================================
   FVスクロールアウト
======================================== */
/*
FVを一定時間固定して、
その間のスクロール量をアニメーションに使う
*/
.fv-scroll-area {
  position: relative;
  height: 170vh;
  background: #fff;
}

.fv-scroll-area .fv {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  /*
  JSから渡される0〜1の値
  */
  --fv-exit-progress: 0;
  --fv-title-progress: 0;
}

/*
元のmin-height:800pxを上書き
*/
.fv-scroll-area .fv-wrap {
  width: 100%;
  height: 100vh;
  min-height: 0;
  opacity: calc(1 - var(--fv-exit-progress) * 0.95);
  -webkit-transform: translateY(calc(var(--fv-exit-progress) * -8vh)) scale(calc(1 - var(--fv-exit-progress) * 0.045));
          transform: translateY(calc(var(--fv-exit-progress) * -8vh)) scale(calc(1 - var(--fv-exit-progress) * 0.045));
  -webkit-filter: blur(calc(var(--fv-exit-progress) * 5px));
          filter: blur(calc(var(--fv-exit-progress) * 5px));
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform, opacity, filter;
}

/* ========================================
   動画のスクロールアウト
======================================== */
.fv-scroll-area .fv-video {
  -webkit-transform: translateX(-50%) scale(calc(1 + var(--fv-exit-progress) * 0.08));
          transform: translateX(-50%) scale(calc(1 + var(--fv-exit-progress) * 0.08));
  -webkit-filter: saturate(calc(1 - var(--fv-exit-progress) * 0.25)) brightness(calc(1 - var(--fv-exit-progress) * 0.14));
          filter: saturate(calc(1 - var(--fv-exit-progress) * 0.25)) brightness(calc(1 - var(--fv-exit-progress) * 0.14));
  will-change: transform, filter;
}

/* ========================================
   タイトルは少し先に退場
======================================== */
.fv-scroll-area .fv-title {
  opacity: calc(1 - var(--fv-title-progress));
  -webkit-transform: translateY(calc(-50% - var(--fv-title-progress) * 45px)) scale(calc(1 - var(--fv-title-progress) * 0.04));
          transform: translateY(calc(-50% - var(--fv-title-progress) * 45px)) scale(calc(1 - var(--fv-title-progress) * 0.04));
  -webkit-filter: blur(calc(var(--fv-title-progress) * 4px));
          filter: blur(calc(var(--fv-title-progress) * 4px));
  will-change: transform, opacity, filter;
}

/* ========================================
   スクロールアウト用の白いシャッター
======================================== */
.fv-exit-cover {
  position: absolute;
  inset: 0;
  z-index: 20;
  overflow: hidden;
  pointer-events: none;
}

.fv-exit-cover span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 51%;
  background: #fff;
  will-change: transform;
}

.fv-exit-cover-top {
  top: 0;
  -webkit-transform: translateY(calc(-101% + var(--fv-exit-progress) * 101%));
          transform: translateY(calc(-101% + var(--fv-exit-progress) * 101%));
}

.fv-exit-cover-bottom {
  bottom: 0;
  -webkit-transform: translateY(calc(101% - var(--fv-exit-progress) * 101%));
          transform: translateY(calc(101% - var(--fv-exit-progress) * 101%));
}

/* ========================================
   次セクション
======================================== */
/* ========================================
   スマホ
======================================== */
@media screen and (max-width: 1000px) {
  .fv-scroll-area {
    height: 145vh;
  }
  .fv-scroll-area .fv-wrap {
    -webkit-transform: translateY(calc(var(--fv-exit-progress) * -5vh)) scale(calc(1 - var(--fv-exit-progress) * 0.025));
            transform: translateY(calc(var(--fv-exit-progress) * -5vh)) scale(calc(1 - var(--fv-exit-progress) * 0.025));
    -webkit-filter: blur(calc(var(--fv-exit-progress) * 3px));
            filter: blur(calc(var(--fv-exit-progress) * 3px));
  }
  .fv-scroll-area .fv-title {
    -webkit-transform: translateY(calc(-50% - var(--fv-title-progress) * 25px)) scale(calc(1 - var(--fv-title-progress) * 0.025));
            transform: translateY(calc(-50% - var(--fv-title-progress) * 25px)) scale(calc(1 - var(--fv-title-progress) * 0.025));
  }
}
/* ========================================
   動きを減らす設定
======================================== */
@media (prefers-reduced-motion: reduce) {
  .fv-scroll-area {
    height: auto;
  }
  .fv-scroll-area .fv {
    position: relative;
    height: auto;
  }
  .fv-scroll-area .fv-wrap {
    height: auto;
    min-height: 800px;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
  .fv-exit-cover {
    display: none;
  }
}
/* ========================================
   ハンバーガーボタン
======================================== */
.hamburger {
  position: relative;
  z-index: 110;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
}
.hamburger .hamburger-circle {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger .hamburger-circle::before {
  position: absolute;
  content: "";
  inset: 0;
  background: #fe9b4b;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger .hamburger-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 19px;
  height: 1px;
  background: #111;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger .hamburger-line01 {
  -webkit-transform: translate(-50%, -4px);
          transform: translate(-50%, -4px);
}
.hamburger .hamburger-line02 {
  -webkit-transform: translate(-50%, 4px);
          transform: translate(-50%, 4px);
}
.hamburger .hamburger-text {
  font-family: "Roboto Slab", serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.hamburger:hover .hamburger-line {
  background: #111;
}
.hamburger.is-active .hamburger-circle {
  border-color: #fe9b4b;
  background: #fe9b4b;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hamburger.is-active .hamburger-line {
  background: #fff;
}
.hamburger.is-active .hamburger-line01 {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-active .hamburger-line02 {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
/* ========================================
   ドロワー全体
======================================== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: visibility 0s linear 1s;
  transition: visibility 0s linear 1s;
}
.drawer.is-active {
  visibility: visible;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/* ========================================
   ドロワー背景
======================================== */
.drawer-bg {
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: circle(0% at calc(100% - 44px) 34px);
  -webkit-transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1);
  transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.drawer.is-active .drawer-bg {
  clip-path: circle(150% at calc(100% - 44px) 34px);
}

/* ========================================
   ドロワーコンテンツ
======================================== */
.drawer-inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  overflow-y: auto;
  padding: 105px 24px max(25px, env(safe-area-inset-bottom));
  color: #fff;
}

/* ========================================
   背景の装飾
======================================== */
.drawer-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.drawer-circle {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 1s ease, -webkit-transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 1s ease, -webkit-transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 1s ease, transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 1s ease, transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-circle01 {
  top: -15%;
  right: -35%;
  width: 105vw;
  height: 70vw;
  -webkit-transform: rotate(-25deg) scale(0.6);
          transform: rotate(-25deg) scale(0.6);
}

.drawer-circle02 {
  right: -45%;
  bottom: -18%;
  width: 125vw;
  height: 65vw;
  -webkit-transform: rotate(25deg) scale(0.6);
          transform: rotate(25deg) scale(0.6);
}

.drawer.is-active .drawer-circle {
  opacity: 1;
}
.drawer.is-active .drawer-circle01 {
  -webkit-transform: rotate(12deg) scale(1);
          transform: rotate(12deg) scale(1);
}
.drawer.is-active .drawer-circle02 {
  -webkit-transform: rotate(-12deg) scale(1);
          transform: rotate(-12deg) scale(1);
}

/* ========================================
   メニュー
======================================== */
.drawer-nav {
  position: relative;
  z-index: 3;
}
.drawer-nav ul li {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition-delay: calc(0.25s + var(--menu-index) * 0.1s);
          transition-delay: calc(0.25s + var(--menu-index) * 0.1s);
}
.drawer-nav ul li a {
  position: relative;
  display: grid;
  grid-template-columns: 0px 1fr 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #111;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.5);
}
.drawer-nav ul li a::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer-nav ul li .number {
  -ms-flex-item-align: start;
      align-self: start;
  padding-top: 27px;
  font-family: "Roboto Slab", serif;
  font-size: 10px;
  opacity: 0.7;
}
.drawer-nav ul li .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 13px;
}
.drawer-nav ul li .en {
  font-family: "Roboto Slab", serif;
  font-size: clamp(38px, 12vw, 55px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
.drawer-nav ul li .ja {
  font-size: 11px;
  font-weight: 500;
}
.drawer-nav ul li .arrow {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 0.5px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.4s ease, -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer-nav ul li .arrow::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-top: 0.7px solid #111;
  border-right: 0.7px solid #111;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
          transform: translate(-75%, -50%) rotate(45deg);
}

.drawer.is-active .drawer-nav li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ========================================
   お問い合わせ
======================================== */
.drawer-contact {
  position: relative;
  z-index: 3;
  margin-top: 40px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition-delay: 0.58s;
          transition-delay: 0.58s;
}
.drawer-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
  background: #fe9b4b;
  color: #fe9b4b;
  text-decoration: none;
  color: #fff;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer-contact a .en {
  font-family: "Roboto Slab", serif;
  font-size: 27px;
  line-height: 1;
}
.drawer-contact a .ja {
  margin-left: 15px;
  font-size: 11px;
}
.drawer-contact a .icon {
  margin-left: auto;
  font-size: 17px;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer-contact a:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.drawer-contact a:hover .icon {
  -webkit-transform: translate(4px, -4px);
          transform: translate(4px, -4px);
}

.drawer.is-active .drawer-contact {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ========================================
   ドロワーフッター
======================================== */
.drawer-footer {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
  padding-top: 35px;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0.72s;
  transition: opacity 0.8s ease 0.72s;
}
.drawer-footer p {
  margin: 0;
  font-family: "Roboto Slab", serif;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.drawer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.drawer-sns a {
  color: #fff;
  font-family: "Roboto Slab", serif;
  font-size: 10px;
  text-decoration: none;
  opacity: 0.75;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.drawer-sns a:hover {
  opacity: 1;
}

.drawer.is-active .drawer-footer {
  opacity: 1;
}

/* ========================================
   メニュー展開時
======================================== */
body.is-drawer-open {
  overflow: hidden;
}

body.is-drawer-open .header {
  background: transparent;
}
body.is-drawer-open .header .logo {
  position: relative;
  z-index: 110;
}

/* ========================================
   スマホ調整
======================================== */
@media screen and (max-width: 1000px) {
  .header {
    -webkit-transition: background 0.4s ease;
    transition: background 0.4s ease;
  }
  .header .inner {
    padding: 0 15px;
  }
  .drawer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .drawer-nav ul li .en {
    font-size: 12px;
    color: #fe9b4b;
    min-width: 38px;
  }
  .drawer-nav ul li .ja {
    font-size: 16px;
    font-weight: 400;
  }
  .drawer-contact a .ja {
    font-size: 16px;
  }
  .drawer-contact a .en {
    font-size: 12px;
  }
  .drawer-footer p {
    color: #111;
  }
  .drawer-sns a {
    color: #111;
  }
  .drawer-contact a {
    border-radius: 40px;
  }
}
.business-about {
  color: #111;
}
.business-about .inner {
  max-width: 1000px;
}
.business-about h2,
.business-about h3,
.business-about p {
  margin-top: 0;
}

/* 導入
------------------------------ */
.business-about__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.business-about__intro h2 {
  margin-bottom: 22px;
  font-size: clamp(25px, 2.8vw, 34px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.business-about__intro p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.035em;
}

/* 共通セクション
------------------------------ */
.business-about__heading {
  margin-bottom: 32px;
}
.business-about__heading h2,
.business-about__heading h3 {
  margin-bottom: 0;
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.035em;
}
.business-about__heading p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.025em;
}

/* リスト
------------------------------ */
.business-about__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.business-about__list li {
  position: relative;
  padding: 17px 0 17px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.business-about__list li::before {
  position: absolute;
  content: "";
  top: 27px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fe9b4b;
}
.business-about__list li:nth-child(-n+2) {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

/* 強調文
------------------------------ */
.business-about__important {
  margin-top: 35px;
  padding: 24px 0 24px 22px;
}
.business-about__important p {
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.035em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

/* 工程
------------------------------ */
.business-about__flow {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.business-about__flow-item {
  padding: 20px 20px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .business-about__flow-item {
    padding: 10px;
  }
}
.business-about__flow-item span {
  display: block;
  margin-bottom: 10px;
  color: #fe9b4b;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.business-about__flow-item p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.business-about__result {
  margin-top: 30px;
  text-align: center;
}
.business-about__result p {
  margin-bottom: 0;
  color: #fe9b4b;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.035em;
}

/* おすすめ
------------------------------ */
.business-about__recommend-message {
  margin: 30px 0 0;
  color: #fe9b4b;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

/* CTA
------------------------------ */
.business-about__cta-text {
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.035em;
}

.business-about__cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
  max-width: 500px;
  margin: 27px auto 0;
  padding: 15px 16px 15px 22px;
  border: 1px solid #fe9b4b;
  background: #fe9b4b;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.business-about__cta-button:hover {
  opacity: 0.82;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.business-about__cta-arrow {
  position: relative;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}
.business-about__cta-arrow::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8px;
  width: 13px;
  height: 1px;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.business-about__cta-arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.business-about__cta-note {
  margin: 12px 0 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  line-height: 1.7;
}

/* スマートフォン
------------------------------ */
@media screen and (max-width: 1000px) {
  .business-about {
    padding: 60px 0 75px;
  }
  .business-about__intro {
    text-align: left;
  }
  .business-about__intro h2 {
    margin-bottom: 18px;
    font-size: 21px;
    line-height: 1.75;
  }
  .business-about__intro h2 br {
    display: none;
  }
  .business-about__intro p {
    font-size: 13px;
  }
  .business-about__intro p br {
    display: none;
  }
  .business-about__heading {
    margin-bottom: 25px;
  }
  .business-about__list {
    display: block;
  }
  .business-about__list li {
    padding: 15px 0 15px 17px;
    font-size: 13px;
  }
  .business-about__list li::before {
    top: 24px;
  }
  .business-about__list li:nth-child(2) {
    border-top: 0;
  }
  .business-about__important {
    margin-top: 28px;
    padding: 18px 0 18px 16px;
  }
  .business-about__flow {
    display: block;
  }
  .business-about__flow-arrow {
    width: 1px;
    height: 24px;
    margin: 0 auto;
  }
  .business-about__flow-arrow::after {
    top: auto;
    right: auto;
    bottom: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(135deg);
            transform: translateX(-50%) rotate(135deg);
  }
  .business-about__result {
    margin-top: 25px;
  }
  .business-about__result p {
    font-size: 17px;
  }
  .business-about__recommend-message {
    margin-top: 25px;
    font-size: 16px;
  }
  .business-about__cta {
    margin-top: 55px;
    padding-top: 38px;
  }
  .business-about__cta-text {
    font-size: 16px;
  }
  .business-about__cta-button {
    width: 100%;
    margin-top: 22px;
    padding: 13px 13px 13px 17px;
    font-size: 12px;
  }
}
.business-about__heading h2,
.business-about__intro h2 {
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.business-about__heading h3 {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.business-about__intro p {
  font-size: 20px;
}

.business-about__list li {
  font-size: 18px;
  border: none !important;
  padding: 10px;
}

.business-about__list {
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 1000px) {
  .section {
    padding: 50px 0;
  }
}

.top1 {
  position: relative;
}
.top1 .bg-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 18%;
}
.top1 .inner {
  position: relative;
  z-index: 2;
}
.top1 .title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .top1 .title {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
.top1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .top1 .flex {
    display: block;
    margin-bottom: 30px;
  }
}
.top1 .flex .card {
  width: 23%;
}
@media screen and (max-width: 1000px) {
  .top1 .flex .card {
    width: 100%;
    margin-bottom: 30px;
  }
  .top1 .flex .card:last-child {
    margin-bottom: 0;
  }
}
.top1 .flex .card .icon {
  max-width: 150px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 1000px) {
  .top1 .flex .card .icon {
    max-width: 100px;
    margin-bottom: 10px;
  }
}
.top1 .flex .card .card-title {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .top1 .flex .card .card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.top1 .flex .card .description {
  font-size: 15px;
}
.top1 .bottom {
  padding: 50px 0 0;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1000px) {
  .top1 .bottom {
    padding: 30px 0 0;
  }
}
.top1 .bottom .title2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1000px) {
  .top1 .bottom .title2 {
    font-size: 16px;
  }
}
.top1 .bottom .text1 {
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .top1 .bottom .text1 {
    font-size: 14px;
  }
}

.nayami {
  background: #f7f7f7;
  border-radius: 26px 26px 0 0;
}
.nayami .title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .nayami .title {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
.nayami ul {
  background: #fff;
  padding: 40px 80px 60px;
  border-radius: 10px;
  max-width: 780px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .nayami ul {
    margin-bottom: 30px;
    padding: 20px 20px 30px;
  }
}
.nayami ul li {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .nayami ul li {
    padding: 10px 0;
    font-size: 14px;
  }
}
.nayami .bottom p {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1000px) {
  .nayami .bottom p {
    font-size: 16px;
  }
}

.business-about .title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .business-about .title {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
.business-about .lead {
  font-size: 20px;
  text-align: center;
  margin-top: 0;
}
@media screen and (max-width: 1000px) {
  .business-about .lead {
    font-size: 14px;
  }
}
.business-about .bottom p {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1000px) {
  .business-about .bottom p {
    font-size: 16px;
  }
}
.business-about .business-about__flow {
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .business-about .business-about__flow {
    margin-bottom: 30px;
  }
}

.recommend-section {
  border-radius: 24px 24px 0 0;
  background: rgb(249, 247, 244);
}

.business-about__recommend-message {
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .business-about__recommend-message {
    font-size: 18px;
  }
}

.cta {
  background: #444;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .cta {
    padding: 40px 0;
  }
}
.cta .business-about__cta-note {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .cta .business-about__cta-note {
    font-size: 12px;
  }
}
.cta .btn a {
  font-size: 20px;
  padding: 20px 40px;
  max-width: 600px;
}
@media screen and (max-width: 1000px) {
  .cta .btn a {
    font-size: 16px;
    padding: 15px;
  }
}
.cta .business-about__cta-text {
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .cta .business-about__cta-text {
    font-size: 16px;
  }
}

.business-about__list li::before {
  top: 15px;
}
@media screen and (max-width: 1000px) {
  .business-about__list li::before {
    top: 12px;
  }
}

.business-about__list li {
  padding: 0;
  padding-left: 15px;
  margin-bottom: 10px;
}

.business-about__flow-item {
  background: #eee;
}

@media screen and (min-width: 1001px) {
  .business-about__flow-item p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .business-about__cta {
    padding-top: 0;
    margin-top: 0;
  }
  .business-about__heading h2 {
    font-size: 22px;
  }
  .business-about__list li {
    font-size: 14px;
  }
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title .en {
  color: #FF1A1A;
  font-size: 22px;
}
@media screen and (max-width: 1000px) {
  .section-title .en {
    font-size: 14px;
  }
}
.section-title .ja {
  font-size: 36px;
}
@media screen and (max-width: 1000px) {
  .section-title .ja {
    font-size: 26px;
  }
}

.top-service ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .top-service ul {
    display: block;
  }
}
.top-service ul li {
  width: 31%;
  border: 0.5px solid #FF1A1A;
  border-radius: 8px;
  padding: 10px 0;
}
.top-service ul li p {
  padding: 20px 30px;
}
@media screen and (max-width: 1000px) {
  .top-service ul li p {
    padding: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .top-service ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .top-service ul li:last-child {
    margin-bottom: 0;
  }
}
.top-service ul li h3 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 20px 20px;
  position: relative;
}
.top-service ul li h3::after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70px;
  height: 6px;
  border-radius: 20px;
  content: "";
  background: #FF1A1A;
}
.top-service ul li p {
  font-weight: 500;
}

.section-btn {
  text-align: center;
}
.section-btn a {
  display: inline-block;
  padding: 15px 40px;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-weight: 600;
  background: #000;
  border: 1px solid #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .section-btn a {
    padding: 15px 25px;
    font-size: 14px;
  }
}
.section-btn a:hover {
  background: #fff;
  color: #000;
}

.works {
  background: #F5F1F1;
}
.works ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1001px) {
  .works ul li {
    width: calc(33.3333% - 13.3333333333px);
    margin-right: 20px;
  }
  .works ul li:nth-child(3n) {
    margin-right: 0;
  }
  .works ul li:nth-child(n+4) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .works ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .works ul li:last-child {
    margin-bottom: 0;
  }
}
.works ul li .img {
  margin-bottom: 20px;
}
.works ul li a {
  color: #111;
  display: block;
  padding: 20px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works ul li a:hover {
  opacity: 0.6;
}
.works ul li .title {
  font-weight: 500;
}
.works ul li .tag {
  line-height: 1;
  padding: 10px 20px;
  background: #fe9b4b;
  font-size: 14px;
  margin-top: 20px;
  display: inline-block;
  color: #fff;
}
.works .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .works .btn {
    margin-top: 30px;
  }
}

.top-works {
  background: #F5F1F1;
}
.top-works ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-works ul li .img {
  margin-bottom: 20px;
}
.top-works ul li a {
  color: #111;
  display: block;
  padding: 20px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-works ul li a:hover {
  opacity: 0.6;
}
.top-works ul li .title {
  font-weight: 500;
}
.top-works ul li .tag {
  line-height: 1;
  padding: 10px 20px;
  background: #fe9b4b;
  font-size: 14px;
  margin-top: 20px;
  display: inline-block;
  color: #fff;
}
.top-works .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .top-works .btn {
    margin-top: 30px;
  }
}

.voice .voice-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .voice .voice-ul {
    display: block;
  }
}
.voice .voice-ul li {
  position: relative;
  background: #F5F1F1;
  border-radius: 10px;
  padding: 20px;
}
.voice .voice-ul li .mark {
  position: absolute;
  top: -30px;
  right: -10px;
  max-width: 30px;
}
@media screen and (max-width: 1000px) {
  .voice .voice-ul li .mark {
    max-width: 15px;
    top: -20px;
    right: 0;
  }
}
@media screen and (min-width: 1001px) {
  .voice .voice-ul li {
    width: calc(50% - 20px);
    margin-right: 40px;
  }
  .voice .voice-ul li:nth-child(2n) {
    margin-right: 0;
  }
  .voice .voice-ul li:nth-child(n+3) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .voice .voice-ul li {
    width: 100%;
    margin-bottom: 40px;
  }
  .voice .voice-ul li:last-child {
    margin-bottom: 0;
  }
}
.voice .voice-ul li .voice-title {
  padding-bottom: 13px;
  border-bottom: 1px solid #333333;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .voice .voice-ul li .voice-title {
    font-size: 18px;
  }
}
.voice .voice-ul li .text-wrap {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.cta2 {
  background: url(../img/contact_back.jpg) no-repeat center center/cover;
  color: #fff;
}
.cta2 .section-title {
  text-align: left;
  margin-bottom: 0;
}
.cta2 .lead {
  font-family: "Noto Serif JP", serif;
}
.cta2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .cta2 .flex {
    display: block;
  }
}
.cta2 .flex .left {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .cta2 .flex .left {
    width: 100%;
  }
}
.cta2 .flex .right {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .cta2 .flex .right {
    width: 100%;
  }
}
.cta2 .flex .lead {
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .cta2 .flex .lead {
    margin-top: 30px;
  }
}
.cta2 .circle {
  position: relative;
  max-width: 80px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin-left: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .cta2 .circle {
    max-width: 40px;
  }
}
.cta2 .circle img {
  width: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .cta2 .circle img {
    width: 15px;
  }
}
.cta2 a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta2 a:hover .circle {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer {
  padding: 100px 0 20px;
}
.footer .inner {
  max-width: 1300px;
}
@media screen and (max-width: 1000px) {
  .footer .inner {
    max-width: 500px;
  }
}
@media screen and (max-width: 1000px) {
  .footer {
    padding: 50px 0 10px;
  }
}
.footer .logo {
  max-width: 200px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .footer .logo {
    margin: 0 auto;
    max-width: 180px;
    margin-bottom: 20px;
  }
}
.footer .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .logo a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.footer {
  background: #333;
  color: #fff;
}
.footer a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
.footer a:hover {
  opacity: 0.6;
}
.footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .footer .flex {
    display: block;
  }
}
.footer .flex .left {
  width: 48%;
  padding-right: 20px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .left {
    padding-right: 0;
    padding-bottom: 20px;
    width: 100%;
  }
}
.footer .flex .left .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
}
.footer .flex .left .address .office {
  font-size: 14px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .left .address .office {
    margin-bottom: 10px;
  }
}
.footer .flex .left .address .toyama,
.footer .flex .left .address .tokyo {
  width: 50%;
}
.footer .flex .left .address .toyama {
  margin-right: 30px;
}
@media screen and (max-width: 1000px) {
  .footer .flex .left .address .toyama {
    margin-right: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .footer .flex .left .zipcode {
    font-size: 10px;
  }
}
.footer .flex .right {
  width: 52%;
}
@media screen and (max-width: 1000px) {
  .footer .flex .right {
    width: 100%;
  }
}
.footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 120px;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .footer .sns {
    margin-right: auto;
    margin-top: 30px;
  }
}
.footer .sns li img {
  width: auto;
  height: 22px;
}
.footer .first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .footer .first {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer .first li {
  margin-right: 40px;
}
@media screen and (max-width: 1000px) {
  .footer .first li {
    margin-right: 0;
    width: 50%;
    margin-top: 10px;
  }
}
.footer .first li:last-child {
  margin-right: 0;
}
.footer .first li a {
  font-size: 16px;
  display: block;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .footer .first li a {
    font-size: 12px;
  }
}
.footer .first li a span {
  display: block;
  font-family: "Roboto Slab", serif;
  color: #fe9b4b;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .footer .first li a span {
    font-size: 10px;
    line-height: 1.2;
  }
}
.footer .second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .footer .second {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .second li {
  margin-right: 40px;
}
@media screen and (max-width: 1000px) {
  .footer .second li {
    margin-right: 0;
    margin: 10px 20px !important;
  }
}
.footer .second li:last-child {
  margin-right: 0;
}
.footer .second li a {
  font-size: 13px;
}
@media screen and (max-width: 1000px) {
  .footer .second li a {
    font-size: 12px;
  }
}
.footer .copy {
  text-align: center;
  font-size: 12px;
  font-family: "Roboto Slab", serif;
  margin-top: 60px;
}

.header .right .header-btn a {
  white-space: nowrap;
}

@media screen and (min-width: 1001px) {
  .contact {
    padding-top: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .contact {
    padding-top: 100px;
  }
}

@media screen and (min-width: 1001px) {
  .page-works {
    padding-top: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .page-works {
    padding-top: 100px;
  }
}

html {
  scroll-behavior: smooth;
}

#voice {
  position: relative;
  top: -85px;
}
@media screen and (max-width: 1000px) {
  #voice {
    top: -68px;
  }
}

@media screen and (min-width: 1001px) {
  .low {
    padding-top: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .low {
    padding-top: 100px;
  }
}

@media screen and (min-width: 1001px) {
  .privacy {
    padding-top: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .privacy {
    padding-top: 100px;
  }
}
.privacy .p-lead {
  margin-bottom: 40px;
}
.privacy .p-h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px solid #ed5c1e;
}
@media screen and (max-width: 1000px) {
  .privacy .p-h2 {
    font-size: 18px;
  }
}
.privacy .wrap {
  margin-bottom: 30px;
}
.privacy ul {
  margin-top: 10px;
  margin-left: 20px;
  margin-bottom: 10px;
}
.privacy ul li {
  list-style: auto;
}
.privacy a {
  color: #fe9b4b;
  text-decoration: underline;
}

@media screen and (min-width: 1001px) {
  .about {
    padding-top: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .about {
    padding-top: 100px;
  }
}
.about p {
  margin-bottom: 45px;
  line-height: 1.8;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .about p {
    font-size: 14px;
    text-align: left;
  }
}
.about .message-bold {
  font-weight: bold;
}

.company {
  padding-top: 0;
}

.about-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
}
.about-table tr:not(:last-child) td {
  border-bottom: 1px solid #e8e8e8;
}
.about-table td {
  padding: 22px 28px;
  font-size: 16px;
  line-height: 1.8;
  vertical-align: top;
}
@media screen and (max-width: 1000px) {
  .about-table td {
    font-size: 14px;
    padding: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .about-table td {
    display: block;
    width: 100%;
    padding: 16px 20px;
  }
}
.about-table .about-td__orenge {
  width: 220px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background: #fe9b4b;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1000px) {
  .about-table .about-td__orenge {
    width: 100%;
    text-align: left;
    border-bottom: none;
  }
}
.about-table .about-table__bottom {
  color: #333;
  background: #fff;
}
.about-table .about-margin__top {
  font-weight: 600;
}

.contact .inner {
  max-width: 800px;
  margin: 0 auto;
}
.contact .lead {
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .contact .lead {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.contact .contact-wrap .row {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .contact .contact-wrap .row {
    margin-bottom: 20px;
  }
}
.contact .contact-wrap .row .dt {
  margin-bottom: 7px;
  font-weight: 500;
}
.contact .contact-wrap .row .required {
  background: #FF1A1A;
  padding: 1px 10px;
  border-radius: 4px;
  margin-left: 20px;
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .contact .contact-wrap .row .required {
    font-size: 12px;
  }
}
.contact .contact-wrap .row .dt-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .contact-wrap textarea {
  height: 200px;
  resize: none;
}
.contact .checkbox {
  text-align: center;
}
.contact .checkbox a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #111;
  text-decoration: underline;
}
.contact .checkbox a:hover {
  opacity: 0.6;
}
.contact .submit {
  text-align: center;
}
.contact .submit input {
  background: #333;
  padding: 20px;
  color: #fff;
  max-width: 400px;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .contact .submit input {
    font-size: 16px;
  }
}

.thanks .lead {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .thanks .lead {
    text-align: left;
  }
}
.thanks .btn {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .thanks .btn {
    margin-top: 30px;
  }
}
.thanks .btn a {
  color: #fff;
  font-weight: 500;
  padding: 15px 50px;
  display: inline-block;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.thanks .btn a:hover {
  opacity: 0.6;
}

.single-works .contents {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .single-works .contents {
    margin-top: 30px;
  }
}
.single-works .inner {
  max-width: 800px;
  margin: 0 auto;
}
.single-works .inner a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: underline;
  font-weight: 600;
  color: #333;
}
.single-works .inner a:hover {
  opacity: 0.6;
}
.single-works .tag {
  line-height: 1;
  padding: 10px 20px;
  background: #fe9b4b;
  font-size: 18px;
  margin-top: 20px;
  display: inline-block;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .single-works .tag {
    font-size: 14px;
  }
}
.single-works .section-title .ja {
  font-size: 26px;
}
@media screen and (max-width: 1000px) {
  .single-works .section-title .ja {
    font-size: 20px;
    text-align: left;
  }
}

.work-slider1,
.work-slider2 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.work-slider1 .slick-track,
.work-slider2 .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.work-slider1 li,
.work-slider2 li {
  margin: 0 15px;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.work-slider1 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1000px) {
  .work-slider1 {
    margin-bottom: 40px !important;
  }
}

.work-slider1,
.work-slider2 {
  overflow: hidden;
  margin: 30px 0;
}
.work-slider1 .tag,
.work-slider2 .tag {
  display: none !important;
}
.work-slider1 .swiper-slide,
.work-slider2 .swiper-slide {
  width: 340px;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .work-slider1 .swiper-slide,
  .work-slider2 .swiper-slide {
    width: 220px;
  }
}
.work-slider1 a,
.work-slider2 a {
  display: block;
  color: #333;
  text-decoration: none;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
.work-slider1 .img,
.work-slider2 .img {
  overflow: hidden;
  border-radius: 10px;
}
.work-slider1 .img img,
.work-slider2 .img img {
  display: block;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.work-slider1 .title,
.work-slider2 .title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .work-slider1 .title,
  .work-slider2 .title {
    font-size: 12px;
    text-align: left;
  }
}
.work-slider1 .tag,
.work-slider2 .tag {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #fe9b4b;
  color: #fff;
  font-size: 14px;
}

.low a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #111;
  text-decoration: underline;
}

.pagination {
  margin-top: 60px;
}
.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination .page-numbers:hover {
  background: #FFAF02;
  color: #fff;
}
.pagination .page-numbers.current {
  background: #fe9b4b;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .pagination {
    margin-top: 40px;
  }
  .pagination .nav-links {
    gap: 6px;
  }
  .pagination .prev, .pagination .next {
    display: none;
  }
  .pagination .page-numbers {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
.pagination .prev {
  display: none;
}
.pagination .next {
  display: none;
}

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

.checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 34px;
  cursor: pointer;
}
.checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 3px;
  background: #fff;
}
.checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 20px;
  height: 6px;
  border-left: 6px solid #fe9b4b;
  border-bottom: 6px solid #fe9b4b;
  -webkit-transform: translateY(-70%) rotate(-45deg);
          transform: translateY(-70%) rotate(-45deg);
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.top-works .tag-wrap {
  text-align: center;
}
.top-works .tag {
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 13px;
}
@media screen and (max-width: 1000px) {
  .top-works .tag {
    font-size: 12px;
  }
}

.work-slider1 .tag, .work-slider2 .tag {
  display: inline-block !important;
}

body, html {
  overflow-wrap: break-word;
  word-break: break-word;
}

.wp-block-embed-amazon-kindle {
  text-align: center;
  margin-top: 20px;
  padding: 40px;
}

.wp-block-embed-amazon {
  text-align: center;
  margin-top: 20px;
  padding: 40px;
}

.p-block-embed-amazon {
  text-align: center;
  margin-top: 20px;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .amazon-wrap iframe {
    width: 100%;
    height: 1000px;
  }
}
.works ul li .title {
  text-align: center;
}

.page-works .tag-wrap {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .single-works .section-title .ja {
    text-align: center;
  }
}
.works ul li a {
  padding: 0 0 20px;
}

.works ul li .tag {
  margin-top: 10px;
}

.work-slider1 a, .work-slider2 a {
  padding: 0 0 20px;
}

.work-slider1 .img, .work-slider2 .img {
  border-radius: 10px 10px 0 0;
}

@media screen and (max-width: 1000px) {
  .work-slider1 .title, .work-slider2 .title {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 1000px) {
  .work-slider1 .title, .work-slider2 .title {
    display: none;
  }
  .top-works .tag-wrap {
    display: none;
  }
  .work-slider1 a, .work-slider2 a {
    padding-bottom: 0;
  }
  .work-slider1 .img, .work-slider2 .img {
    border-radius: 0px;
  }
  .work-slider1, .work-slider2 {
    margin: 10px 0;
  }
  .work-slider1 {
    margin-bottom: 10px !important;
  }
}