@charset "UTF-8";
/*reset*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

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

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

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

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

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

a {
  text-decoration: none;
  color: black;
}

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

* {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700; /* 400を利用時指定する */
  font-style: normal;
  letter-spacing: -0.1em;
  line-height: 1.5;
  font-size: 16px;
}

a {
  transition: 0.4s all;
}

a:hover {
  opacity: 0.5;
}

.pchl {
  display: none;
}

.sphl {
  display: inline;
}

.pchb {
  display: none;
}

.sphb {
  display: block;
}

.s-title {
  font-size: 104px;
  color: #E26920;
  margin-bottom: 0.5em;
  position: relative;
  display: inline-block;
}

.s-title.white {
  color: white;
}

/* animation title*/
.s-title {
  z-index: 1;
  clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.s-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #E26920;
  transform: scaleX(1);
  transform: scale(100%);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left center;
  transition-delay: 0.3s;
}
.s-title.white::before {
  background: #fff;
}
.s-title.is-show {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.s-title.is-show::before {
  transform: scaleX(0);
  transform-origin: right center;
}

.mask-title {
  z-index: 1;
  clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.mask-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #E26920;
  transform: scaleX(1);
  transform: scale(100%);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left center;
  transition-delay: 0.3s;
}
.mask-title.white::before {
  background: #fff;
}
.mask-title.is-show {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.mask-title.is-show::before {
  transform: scaleX(0);
  transform-origin: right center;
}

.orange-marker {
  font-size: inherit;
  background: #E26920;
  display: inline;
  padding: 0.2em 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1280px;
}

.inner {
  margin: auto;
  width: 800px;
  position: relative;
  left: -40px;
}

#back-movie {
  position: fixed;
  z-index: -5;
  height: 100vh;
  width: 100vw;
  background-image: url("../img/fv-movie_img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#back-movie video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/*

最初のアニメーション

*/
#first-loading {
  display: none;
}
#first-loading.is-active {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #E26920;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  /* 全体消し */
  animation: loading-out 0.45s cubic-bezier(0.22, 1, 0.36, 1) 2.1s forwards;
}

.first-loading__inner {
  position: relative;
  width: 20vw;
  max-width: 420px;
  min-width: 180px;
  overflow: hidden;
  text-align: right;
  padding-top: 4em;
}

/* 白マスク */
.first-loading.is-active .first-loading__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #fff;
  clip-path: inset(0 100% 0 0);
  animation: white-block-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards, white-block-out 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

/* 共通 */
.first-loading__logo {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0);
}

.first-loading.is-active .first-loading__logo.--logo01 {
  position: relative;
  z-index: 1;
  width: 60%;
  animation: logo-mask-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  display: inline-block;
  padding: 0 0.1em;
  top: -3em;
}

.first-loading.is-active .first-loading__logo.--logo02 {
  position: relative;
  inset: 0;
  z-index: 2;
  margin-top: 3em;
  animation: logo-mask-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  width: 100%;
  transform: skewY(-15deg);
  top: -3em;
}

/* 白ブロック */
@keyframes white-block-in {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
/* 白ブロック  */
@keyframes white-block-out {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 100%);
  }
}
/* ロゴ表示 */
@keyframes logo-mask-in {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
/* 全体消す */
@keyframes loading-out {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 100%);
  }
}
/* SP調整 */
@media screen and (max-width: 640px) {
  .first-loading__inner {
    width: 55vw;
  }
  .first-loading__inner {
    text-align: left;
    min-width: auto;
    padding-top: 0;
  }
  .first-loading.is-active .first-loading__logo.--logo01 {
    top: 0;
  }
  .first-loading.is-active .first-loading__logo.--logo02 {
    top: 0;
    margin-top: 0em;
  }
}
/* =========================
  共通：画面内に入る前
========================= */
.js-scroll-reveal {
  visibility: hidden;
}

.js-scroll-reveal.is-show {
  visibility: visible;
}

/* =========================
  下からフェードイン
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(2em);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* aタグ用 hover */
a.fade-up:hover {
  opacity: 0.5;
}

#navi-g {
  position: fixed;
  width: 100%;
  z-index: 10;
}
#navi-g .inner {
  left: auto;
  width: 1280px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1280px) {
  #navi-g .inner {
    width: 100%;
  }
}
#navi-g .inner .cover-back {
  width: 270px;
  height: 570px;
  position: fixed;
  background: url("../img/gn-back.svg") no-repeat;
  background-size: contain;
  right: 0;
  transition: 0.5s all;
}
@media (min-width: 1441px) {
  #navi-g .inner .cover-back {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
  }
}
#navi-g .inner .logo {
  width: 110px;
  margin: 22px 32px 0 auto;
  padding: 5px;
}
#navi-g .inner .list {
  transform: skew(-4deg, -11deg);
  position: absolute;
  top: 212px;
  left: 53px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.5em;
  font-size: 16px;
  color: #fff;
}
#navi-g .inner .list::before {
  content: "";
  width: 165px;
  height: 2px;
  background: #fff;
  top: -20px;
  left: 0;
  position: absolute;
}
#navi-g .inner .list .gn-one {
  position: relative;
  padding-left: 1.5em;
}
#navi-g .inner .list .gn-one::before {
  content: "";
  position: absolute;
  left: 0em;
  box-sizing: border-box;
  width: 0.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #fff;
  top: 0.5em;
  transition: 0.2s all;
}
#navi-g .inner .list .gn-one:hover::before {
  transform: translateX(0.5em);
}
#navi-g #gn-btn {
  display: none;
}

#fv-area {
  height: 100vh;
  min-height: 700px;
  max-height: 1400px;
  position: relative;
  display: block;
}
#fv-area .fv-white {
  width: 100%;
  background: #fff;
  height: 50vh;
  position: relative;
  min-height: 350px;
  position: relative;
  max-height: 650px;
}
#fv-area .fv-white .inner {
  height: 100%;
}
#fv-area .fv-white .inner .title {
  position: absolute;
  bottom: -3em;
  right: 0;
  transform: skewY(-15deg);
  background: #fff;
  width: 620px;
  z-index: 4;
}
#fv-area::after {
  content: "";
  height: 120vh;
  width: 1280px;
  background: url(../img/title-gara-pc.webp);
  background-repeat: no-repeat;
  background-position: right -10vh;
  position: absolute;
  top: 0;
  left: calc(50% - 640px - 330px);
  z-index: 3;
  background-size: contain;
}
@media screen and (min-height: 1000px) and (max-height: 1400px) {
  #fv-area::after {
    height: 112%;
    background-position: right -110px;
  }
}
@media screen and (max-height: 700px) {
  #fv-area::after {
    height: 850px;
    background-position: 350px -100px;
  }
}
@media screen and (min-height: 1400px) {
  #fv-area::after {
    height: 1580px;
    background-position: right -30px;
  }
}

#first, #second, #third, #child-page-sec {
  overflow: hidden;
  position: relative;
}
#first::after, #second::after, #third::after, #child-page-sec::after {
  content: "";
  height: 100%;
  width: 440px;
  background: url("../img/gara-left.webp");
  background-repeat: repeat-y;
  background-position: top right;
  position: absolute;
  top: 0;
  left: calc(50% - 640px - 280px);
  z-index: 3;
  background-size: 50%;
}

#child-page-sec {
  background-size: 50%;
}
#child-page-sec::after {
  background-size: 50%;
}

#about {
  position: relative;
  z-index: 3;
  width: 100%;
  display: block;
}
#about .side__line {
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 102%;
  height: 860px;
  background: #fff;
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(0 660px, 100% 0px, 100% 860px, 0 860px);
}
#about .inner {
  z-index: 2;
  padding-top: 100px;
}
#about .s-title {
  font-size: 104px;
  color: #fff;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  transform: skewY(-15deg);
}
#about .sub-title {
  margin-top: 1em;
  font-size: 46px;
  color: #fff;
  margin-bottom: 0.5em;
  position: relative;
  display: inline-block;
  transform: skewY(-15deg);
  text-wrap: nowrap;
}
#about .sub-title .orange-marker {
  text-wrap: nowrap;
}
#about .text {
  font-size: 32px;
  color: #fff;
  position: relative;
  line-height: 2;
  transform: skewY(-15deg);
}
#about .aisatsu {
  font-size: 70px;
  color: #fff;
  position: relative;
  line-height: 1.8;
  top: 1em;
  line-height: 2;
  display: inline-block;
  transform: skewY(-15deg);
}
#about .profile {
  display: flex;
  position: relative;
  top: 12em;
}
#about .profile img {
  width: 280px;
  border-radius: 50%;
  height: auto;
  z-index: 2;
  border: 2px solid #E26920;
}
#about .profile .text {
  display: block;
  position: absolute;
  left: 190px;
  top: calc(50% - 2em);
  line-height: 1.25;
  font-size: 32px;
  padding: 0.5em 1.5em 0.5em 4em;
  background: #E26920;
  transform: none;
}

#action {
  background-color: #fff;
  padding-top: 220px;
  display: block;
}
#action .inner {
  height: 1350px;
  position: relative;
}
#action .title {
  color: #E26920;
  writing-mode: vertical-rl;
  position: absolute;
  right: 40px;
  top: 0;
  font-size: 60px;
  height: 7.5em;
  border-left: 2px solid #E26920;
  padding-left: 0.5em;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#action .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #E26920;
  transform: scaleY(1);
  transform: scale(100%);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center top;
  transition-delay: 0.3s;
}
#action .title.is-show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#action .title.is-show::before {
  transform: scaleY(0);
  transform-origin: center bottom;
}
#action .action-one {
  position: absolute;
  background: url("../img/st-1.webp") no-repeat center;
  background-size: contain;
  height: 400px;
  width: 660px;
}
#action .action-one .sub-title {
  color: #fff;
  font-size: 40px;
  position: absolute;
  text-align: center;
}
#action .action-one .text {
  padding: 1em;
  background: #E26920;
  color: #fff;
  font-size: 24px;
  width: 18em;
  position: absolute;
  z-index: 1;
  clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#action .action-one .text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #E26920;
  transform: scaleX(1);
  transform: scale(100%);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left center;
  transition-delay: 0.3s;
}
#action .action-one.is-show .text {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
#action .action-one.is-show .text::before {
  transform: scaleX(0);
  transform-origin: right center;
}
#action .action-one.sonoichi {
  top: 0;
  left: 0;
  width: 100%;
  background-position: 0px 0px;
  background-image: url("../img/st-1.webp");
  height: 590px;
}
#action .action-one.sonoichi .sub-title {
  left: 120px;
  top: 190px;
}
#action .action-one.sonoichi .text {
  left: 110px;
  top: 330px;
  width: 490px;
}
#action .action-one.sononi {
  top: 520px;
  left: 0px;
  width: 100%;
  background-position: right;
  background-image: url(../img/st-2.webp);
  height: 520px;
}
#action .action-one.sononi .sub-title {
  right: 120px;
  top: 210px;
}
#action .action-one.sononi .text {
  left: 0;
  top: 100px;
  width: 400px;
}
#action .action-one.sonosan {
  top: 870px;
  left: 0px;
  width: 100%;
  background-position: left 0px;
  background-image: url(../img/st-3.webp);
  height: 490px;
}
#action .action-one.sonosan .sub-title {
  left: 80px;
  top: 170px;
}
#action .action-one.sonosan .text {
  left: auto;
  right: 60px;
  top: 170px;
  width: 370px;
}

#history {
  background-color: #fff;
  padding-top: 160px;
  display: block;
}
#history .inner {
  padding-bottom: 80px;
  position: relative;
}
#history .inner .back-img {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: url("../img/history-back.webp");
  background-size: auto 100%;
  background-position: top right;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 0% 100%, 0% 100%, 0% 0);
}
#history .inner .back-img.js-scroll-effect.is-show {
  animation: mask-back-show 3s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes mask-back-show {
  from {
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
#history .list {
  z-index: 1;
  position: relative;
}
#history .list .history-one {
  display: flex;
  gap: 3em;
  margin-bottom: 1em;
}
#history .list .history-one:last-child {
  margin-bottom: 0em;
}
#history .list .history-one .year {
  width: 18%;
  line-height: 1;
  font-size: 80px;
  color: #E26920;
}
#history .list .history-one .text {
  line-height: 1.7;
  font-size: 24px;
  width: 68%;
  background: #fff;
  padding: 0.5em;
}
#history .future {
  position: relative;
  font-size: 40px;
  color: #E26920;
  margin: 1em 0;
  padding: 0 1em;
  display: inline-block;
  z-index: 1;
}
#history .future::after, #history .future::before {
  content: "";
  position: absolute;
  left: 0.5em;
  height: 1.5em;
  width: 2px;
  transform: rotate(45deg);
  background-color: #E26920;
}
#history .future::before {
  left: auto;
  right: 0.25em;
}

#client {
  background-color: #fff;
  padding: 160px 0 240px;
  display: block;
}
#client .title {
  font-size: 28px;
  display: inline-block;
  color: #E26920;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #E26920;
}
#client .list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
  margin-top: 60px;
}
#client .list .client-one {
  height: 50px;
  width: auto;
}
#client .list .client-one img {
  height: 100%;
  width: auto;
}

#service .main-obi {
  background: url("../img/service_1.webp") no-repeat center;
  background-size: cover;
  position: relative;
  padding: 80px;
}
#service .main-obi .s-title {
  margin-bottom: 0.25em;
}
#service .main-obi .sub-title {
  font-size: 28px;
  color: #fff;
}
#service .main-obi::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #E26920;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
}
#service .service-one {
  background: url("../img/service_2.webp") no-repeat center;
  background-size: cover;
  border-top: 1px solid #E26920;
  position: relative;
  padding: 120px;
  color: #fff;
}
#service .service-one::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
#service .service-one.genre1 {
  background-image: url("../img/service_2.webp");
}
#service .service-one.genre2 {
  background-image: url("../img/service_3.webp");
}
#service .service-one.genre3 {
  background-image: url("../img/service_4.webp");
}
#service .service-one .title {
  display: inline-block;
  background: #fff;
  color: #E26920;
  padding: 0.25em;
  font-size: 60px;
}
#service .service-one .sub-title {
  font-size: 40px;
  margin-top: 1em;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
#service .service-one .lead {
  font-size: 28px;
}
#service .service-one .point {
  margin-top: 40px;
  list-style: disc;
  list-style-position: inside;
  font-size: 20px;
  letter-spacing: 0;
}
#service .service-one .point .point-one {
  font-size: 20px;
  margin-bottom: 1em;
  letter-spacing: 0;
}
#service .service-one .summary {
  margin-top: 40px;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 2;
}
#service .service-one .more-info {
  border: 1px solid #fff;
  padding: 3em;
  margin-top: 40px;
}
#service .service-one .more-info .sub-title {
  margin-top: 0em;
}
#service .service-one .more-info .point {
  -moz-column-count: 2;
       column-count: 2;
}
#service .service-one .more-info.example .point {
  -moz-column-count: 1;
       column-count: 1;
}
#service .service-one .more-info.example .point .point-one {
  display: inline-block;
}
#service .service-one .more-info.example .point .point-one .one-c {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 14px;
}
#service .service-one .more-info .min-title {
  font-size: 28px;
  margin: 1em auto 0 0;
}
#service .service-one .more-info .point-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 3em;
  margin-top: 1em;
  padding-left: 3em;
}
#service .service-one .more-info .point-sub .point-one {
  font-size: 16px;
  list-style: disc;
}
#service .service-one .link-list {
  margin-top: 40px;
}
#service .service-one .link-list .d-btn {
  background: #fff;
  color: #E26920;
  padding: 1em 1em 1em 2.25em;
  width: 400px;
  border-radius: 0.5em;
  position: relative;
  display: block;
  font-size: 24px;
  overflow: hidden;
}
#service .service-one .link-list .d-btn span {
  font-size: 24px;
  z-index: 2;
  position: relative;
  transition: 0.4s;
}
#service .service-one .link-list .d-btn::before {
  content: "";
  position: absolute;
  left: 1em;
  box-sizing: border-box;
  width: 1.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #E26920;
  top: calc(50% - 0.25em);
  z-index: 1;
  transition: 0.4s;
  transform: translateX(0);
}
#service .service-one .link-list .d-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #E26920;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
#service .service-one .link-list .d-btn:hover {
  opacity: 1;
}
#service .service-one .link-list .d-btn:hover span {
  color: #fff;
}
#service .service-one .link-list .d-btn:hover::before {
  border-left: 0.5em solid #fff;
  transform: translateX(0.5em);
}
#service .service-one .link-list .d-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

#voice {
  background-color: #F5F5F5;
  padding: 160px 0 110px;
  display: block;
}
#voice .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#voice .list .voice-one {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding: 6em 3em 7em;
  justify-content: space-between;
  align-items: flex-start;
  background-image: url("../img/fuki.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#voice .list .voice-one .v-image {
  width: 48%;
  height: auto;
}
#voice .list .voice-one .pc-right {
  width: 48%;
}
#voice .list .voice-one .pc-right .title {
  background-color: #E26920;
  background-color: rgba(235, 103, 24, 0.9);
  padding: 1em;
  font-size: 28px;
  line-height: 1.7;
  color: #fff;
}
#voice .list .voice-one .pc-right .name {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1em;
  margin-top: 1em;
  font-size: 20px;
}
#voice .list .voice-one .text {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1em;
  -moz-columns: 1;
       columns: 1;
  letter-spacing: 0.01em;
  line-height: 2;
}

#media {
  background-color: #fff;
  padding: 160px 0 0;
  display: block;
}
#media .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
}
#media .list .media-one {
  width: 47%;
  position: relative;
}
#media .list .media-one .icon {
  width: 40%;
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  border: 2px solid #E26920;
  filter: drop-shadow(5px 5px 0px #E26920);
}
#media .list .media-one .info {
  z-index: 1;
  width: 70%;
  position: relative;
  left: 30%;
  background: #fff;
  border: 2px solid #E26920;
  top: 0;
  padding: 2em 2em 2em 3em;
  border-radius: 0.5em;
}
#media .list .media-one .info .snsicon {
  max-height: 2em;
  width: auto;
}
#media .list .media-one .info .title {
  font-size: 20px;
  margin-top: 0.5em;
  line-height: 1.5;
}
#media .list .media-one .info .id-text {
  color: #E26920;
  text-decoration: underline;
  margin-top: 0.5em;
  padding-left: 1em;
  position: relative;
}
#media .list .media-one .info .id-text::before {
  content: "";
  position: absolute;
  left: 0em;
  box-sizing: border-box;
  width: 1.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #E26920;
  top: 0.5em;
  top: calc(50% - 0.1em);
}

#news {
  background-color: #fff;
  padding: 160px 0;
  display: block;
}
#news .list {
  display: flex;
  gap: 1em;
  flex-direction: column;
}
#news .list .link-one {
  display: flex;
  gap: 2em;
  position: relative;
  padding-bottom: 1em;
  border-bottom: 1px solid #E26920;
  padding-left: 2em;
}
#news .list .link-one::before {
  content: "";
  position: absolute;
  left: 0em;
  box-sizing: border-box;
  width: 1.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #E26920;
  top: 0.5em;
  transition: 0.2s all;
}
#news .list .link-one:hover::before {
  transform: translateX(0.5em);
}
#news .list .link-one .date {
  color: #E26920;
  width: 20%;
  line-height: 1.5;
}
#news .list .link-one .text {
  width: 80%;
  line-height: 1.5;
}

#recruit {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 160px 0;
}
#recruit .s-title {
  font-size: 80px;
}
#recruit .sub-catch img {
  width: 100%;
  height: auto;
}
#recruit .lead {
  width: 70%;
  margin-top: 3em;
  line-height: 2;
  color: #fff;
}
#recruit .btn-wrap {
  display: flex;
  gap: 2em;
  margin-top: 4em;
}
#recruit .d-btn {
  background: #fff;
  color: #E26920;
  padding: 1em 1em 1em 2.25em;
  width: 400px;
  border-radius: 0.5em;
  position: relative;
  display: block;
  font-size: 24px;
  overflow: hidden;
}
#recruit .d-btn span {
  font-size: 24px;
  z-index: 2;
  position: relative;
  transition: 0.4s;
}
#recruit .d-btn::before {
  content: "";
  position: absolute;
  left: 1em;
  box-sizing: border-box;
  width: 1.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #E26920;
  top: calc(50% - 0.25em);
  z-index: 1;
  transition: 0.4s;
  transform: translateX(0);
}
#recruit .d-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #E26920;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
#recruit .d-btn:hover {
  opacity: 1;
}
#recruit .d-btn:hover span {
  color: #fff;
}
#recruit .d-btn:hover::before {
  border-left: 0.5em solid #fff;
  transform: translateX(0.5em);
}
#recruit .d-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

#company {
  background-color: white;
  padding-top: 160px;
}
#company .info {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
#company .info .info-one {
  display: flex;
  width: 100%;
  gap: 2em;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 1em;
  border-bottom: 2px solid #E26920;
}
#company .info .info-one .heading {
  color: #E26920;
  font-size: 20px;
  line-height: 1.7;
  width: 20%;
}
#company .info .info-one .text {
  font-size: 20px;
  line-height: 1.7;
}
#company .info .info-one .text li {
  font-size: 20px;
  line-height: 1.7;
  list-style: disc;
  list-style-position: inside;
}

#inquiry {
  background-color: #E26920;
  position: relative;
  overflow: hidden;
  padding-top: 370px;
  padding-bottom: 150px;
  color: #fff;
}
#inquiry .side__line {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 102%;
  height: 360px;
  background: #fff;
  z-index: 2;
  pointer-events: none;
  clip-path: polygon(0 0px, 100% 0px, 100% 2px, 0 352px);
}
#inquiry .form-wrap {
  background: #fff;
  border-radius: 0.5em;
  padding: 4em 7em 6em;
}
#inquiry .form-wrap .form-in-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
#inquiry .form-wrap .form-in-wrap .form-one-q {
  color: #333333;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1em;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .question {
  position: relative;
  color: #E26920;
  font-size: 20px;
  padding-left: 1em;
  display: flex;
  width: 100%;
  align-items: flex-start;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .question .hissu {
  display: inline-block;
  margin-left: 1em;
  padding: 0.1em 1em;
  background: #E26920;
  border-radius: 0.4em;
  color: #fff;
  width: 5em;
  text-align: center;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .question::after {
  content: "";
  position: absolute;
  left: 0em;
  box-sizing: border-box;
  width: 0.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #E26920;
  top: 0.5em;
  transition: 0.2s all;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer {
  position: relative;
  width: 100%;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item span {
  font-size: 20px;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap .wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  left: 0em;
  box-sizing: border-box;
  width: 0.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #E26920;
  top: 0.5em;
  transition: 0.2s all;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap select {
  all: unset;
  box-sizing: border-box;
  position: relative;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap input, #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap textarea, #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap select {
  padding: 0.2em;
  font-size: 20px;
  border: #333 solid 1px;
  border-radius: 0.3em;
  padding: 0.75em;
  letter-spacing: 0;
  width: 100%;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap input[type=radio], #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap input[type=checkbox] {
  width: auto;
  margin-left: 0;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-checkbox label {
  width: 20em;
  display: flex;
  justify-content: flex-start;
  gap: 1em;
  padding: 1.5em;
  border: 1px solid #333;
  border-radius: 0.4em;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-checkbox label .wpcf7-list-item-label {
  letter-spacing: 0;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .info {
  margin-top: 1em;
}
#inquiry .form-wrap .form-in-wrap .form-one-q .answer .info a {
  text-decoration: underline;
}
#inquiry .form-wrap .submit-wrap {
  width: 100%;
  position: relative;
  border-radius: 0.4em;
  overflow: hidden;
  background: #E26920;
}
#inquiry .form-wrap .submit-wrap::before {
  content: "";
  position: absolute;
  left: calc(50% - 5.5em);
  box-sizing: border-box;
  width: 0.4em;
  height: 0.4em;
  border: 0.4em solid transparent;
  border-left: 0.8em solid #fff;
  top: calc(50% - 0.4em);
  z-index: 3;
  transition: 0.3s all;
}
#inquiry .form-wrap .submit-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
#inquiry .form-wrap .submit-wrap input[type=submit] {
  all: unset;
  display: block;
  margin: auto;
  width: 100%;
  color: #fff;
  padding: 2em;
  border-radius: 0.5em;
  position: relative;
  font-size: 20px;
  letter-spacing: 0;
  box-sizing: border-box;
  text-align: center;
  border: 2px solid #E26920;
  cursor: pointer;
  transition: 0.2s all;
  z-index: 2;
}
#inquiry .form-wrap .submit-wrap:hover::before {
  border-left: 0.8em solid #E26920;
  left: calc(50% - 4.5em);
}
#inquiry .form-wrap .submit-wrap:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
#inquiry .form-wrap .submit-wrap:hover input[type=submit] {
  color: #E26920;
}
#inquiry .form-wrap .wpcf7-response-output {
  color: #333;
  font-size: 80%;
  padding: 1em;
}
#inquiry .form-wrap .wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2em;
  margin: auto;
}
#inquiry .form-wrap .wpcf7-not-valid-tip {
  margin-top: 0.5em;
  font-weight: bold;
  text-decoration: underline;
}
#inquiry .form-wrap .wpcf7-list-item first last {
  margin: 0;
}

#footer {
  background-color: #E26920;
  position: relative;
  overflow: hidden;
  padding-top: 370px;
  padding-bottom: 150px;
  color: #fff;
}
#footer .inner {
  z-index: 3;
}
#footer .side__line {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 102%;
  height: 360px;
  background: #fff;
  z-index: 2;
  pointer-events: none;
  clip-path: polygon(0 350px, 100% 0px, 100% 2px, 0 352px);
}
#footer .logo {
  width: 150px;
  display: block;
  height: auto;
  z-index: 5;
}
#footer .sub-title {
  font-size: 28px;
  color: #fff;
  margin-top: 1em;
}
#footer .menu {
  list-style: none;
  padding: 0;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 2em;
  width: 60%;
}
#footer .menu .link {
  padding-left: 1.5em;
  position: relative;
}
#footer .menu .link::before {
  content: "";
  position: absolute;
  left: 0;
  box-sizing: border-box;
  width: 0.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #fff;
  top: 0.5em;
  transition: 0.2s all;
}
#footer .menu .link:hover::before {
  transform: translateX(0.5em);
}
#footer .pplink {
  margin-top: 3em;
  display: inline-block;
  font-size: 12px;
  text-decoration: underline;
  color: #fff;
}
#footer .copyright {
  margin-top: 1em;
  font-size: 12px;
}

.child-page {
  background-color: #fff;
}
.child-page #child-page-sec {
  background-color: #fff;
}
.child-page #child-page-sec .page-title {
  background: #E26920;
  position: relative;
}
.child-page #child-page-sec .page-title .inner {
  padding: 10em 0;
}
.child-page #child-page-sec .page-title .s-title {
  margin: auto;
  line-height: 1;
  padding-right: 0.2em;
  padding-bottom: 0.2em;
  font-size: 80px;
}
.child-page #child-page-sec #contents .text {
  letter-spacing: 0;
}
.child-page #child-page-sec #contents .inner {
  padding-top: 5em;
  padding-bottom: 0em;
}
.child-page #child-page-sec #contents .lead {
  font-size: 20px;
  letter-spacing: 0em;
}
.child-page #child-page-sec #contents .long-text {
  font-size: 20px;
  margin-top: 1em;
  letter-spacing: 0em;
}
.child-page #child-page-sec #contents .link-list {
  margin-top: 40px;
}
.child-page #child-page-sec #contents .link-list .d-btn {
  background: #fff;
  color: #E26920;
  padding: 1em 1em 1em 2.25em;
  width: 400px;
  border-radius: 0.5em;
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px solid #E26920;
  font-size: 20px;
  z-index: 3;
}
.child-page #child-page-sec #contents .link-list .d-btn span {
  z-index: 2;
  position: relative;
  transition: 0.4s;
  font-size: 20px;
}
.child-page #child-page-sec #contents .link-list .d-btn::before {
  content: "";
  position: absolute;
  left: 1em;
  box-sizing: border-box;
  width: 1.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #E26920;
  top: calc(50% - 0.25em);
  z-index: 1;
  transition: 0.4s;
  transform: translateX(0);
}
.child-page #child-page-sec #contents .link-list .d-btn::before {
  content: "";
  position: absolute;
  left: 1em;
  box-sizing: border-box;
  width: 1.25em;
  height: 0.25em;
  border: 0.25em solid transparent;
  border-left: 0.5em solid #E26920;
  top: calc(50% - 0.25em);
  z-index: 1;
  transition: 0.4s;
  transform: translateX(0);
}
.child-page #child-page-sec #contents .link-list .d-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #E26920;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.child-page #child-page-sec #contents .link-list .d-btn:hover {
  opacity: 1;
}
.child-page #child-page-sec #contents .link-list .d-btn:hover span {
  color: #fff;
}
.child-page #child-page-sec #contents .link-list .d-btn:hover::before {
  border-left: 0.5em solid #fff;
  transform: translateX(0.5em);
}
.child-page #child-page-sec #contents .link-list .d-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.child-page #child-page-sec #contents .side__line {
  position: relative;
  left: -2px;
  top: -1px;
  width: 102%;
  height: 350px;
  background: #fff;
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(0 0px, 100% 0px, 100% 2px, 0 352px);
}
.child-page #child-page-sec #contents .pptext .lead {
  margin-top: 2em;
  letter-spacing: 0;
}
.child-page #child-page-sec #contents .pptext .one-text {
  margin-top: 0.5em;
  letter-spacing: 0;
}
.child-page #child-page-sec #contents .pptext .one-text a {
  word-break: break-word;
}
.child-page #child-page-sec #contents .pptext ul {
  margin-top: 0.5em;
  list-style: disc;
  list-style-position: inside;
}
.child-page #child-page-sec #contents .pptext li {
  letter-spacing: 0;
}
.child-page #footer {
  margin-top: -350px;
}
.child-page #footer .side__line {
  display: none;
}

/**********************

SP

**********************/
@media screen and (max-width: 640px) {
  .pchl {
    display: inline;
  }
  .sphl {
    display: none;
  }
  .pchb {
    display: block;
  }
  .sphb {
    display: none;
  }
  body {
    min-width: auto;
  }
  * {
    font-size: 5vw;
  }
  .inner {
    width: 80vw;
    left: 0;
  }
  .s-title {
    font-size: 13vw;
    margin-bottom: 1em;
  }
  #back-movie {
    background-image: url("../img/fv-movie_img_sp.webp");
    height: 110lvh;
  }
  #navi-g #overlay {
    content: "";
    height: 130vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 0;
    display: none;
  }
  #navi-g .inner {
    width: 100%;
    height: 1vh;
  }
  #navi-g .inner .cover-back {
    width: 100%;
    height: 21vw;
    background-size: 90vw;
    background-position: 72vw -160vw;
    transition: 0.2s all ease-out;
  }
  #navi-g .inner .cover-back .logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 20vw;
    background-image: url(../img/sp-logo-back.webp);
    padding: 3vw 6vw 3vw 4vw;
    margin: 0;
    height: 21vw;
    background-size: 177%;
    background-position: -12vw -11vw;
  }
  #navi-g .inner .cover-back .list {
    display: none;
    font-size: 5vw;
    transform: rotate(0deg);
    top: 28vw;
    left: auto;
    right: 24vw;
    gap: 0.8em;
    transform: translateX(5vw) skewY(-15deg);
    transition: 0.2s 0.5s all;
    opacity: 0;
  }
  #navi-g .inner .cover-back .list::before {
    display: none;
  }
  #navi-g .inner .cover-back #gn-btn {
    display: block;
    position: absolute;
    top: 4vw;
    right: 4vw;
    color: #fff;
    width: 10vw;
    height: 11vw;
    cursor: pointer;
  }
  #navi-g .inner .cover-back #gn-btn .top-line {
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(100% 0%, 0% 0%, 0% 8%, 100% 8%);
    height: 5vw;
    width: 10vw;
    transition: 0.5s all;
  }
  #navi-g .inner .cover-back #gn-btn .middle-line {
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(100% 46%, 0% 46%, 0% 54%, 100% 54%);
    height: 5vw;
    width: 10vw;
    transition: 0.4s all ease-out;
  }
  #navi-g .inner .cover-back #gn-btn .bottom-line {
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(100% 92%, 0% 92%, 0% 100%, 100% 100%);
    height: 5vw;
    width: 10vw;
    transition: 0.4s all ease-out;
  }
  #navi-g .inner .cover-back #gn-btn .text {
    position: absolute;
    bottom: 0;
  }
  #navi-g .inner .cover-back.active {
    height: 120vh;
    background-size: 110vw;
    background-position: 7vw 0vw;
  }
  #navi-g .inner .cover-back.active .list {
    transform: translateX(0px) skewY(-15deg);
    opacity: 1;
    display: flex;
  }
  #navi-g .inner .cover-back.active #gn-btn .top-line {
    clip-path: polygon(100% 92%, 0% 0%, 0% 8%, 100% 100%);
  }
  #navi-g .inner .cover-back.active #gn-btn .middle-line {
    opacity: 0;
  }
  #navi-g .inner .cover-back.active #gn-btn .bottom-line {
    clip-path: polygon(100% 0%, 0% 92%, 0% 100%, 100% 8%);
  }
  #navi-g.active {
    height: 120vh;
    background-size: 110vw;
    background-position: 7vw 0vw;
  }
  #navi-g.active #overlay {
    display: block;
    backdrop-filter: blur(5px);
  }
  #navi-g.active .cover-back {
    width: 100%;
    height: 120vh;
    background-size: 120%;
    background-position: 5vw 0vw;
    clip-path: polygon(100% 0%, 0% 0%, 0% 25vw, 25vw 25vw, 9vw 250vw, 100% 250vw);
  }
  #navi-g.active .cover-back .list {
    transform: translateX(5vw) skewY(-15deg);
    opacity: 1;
    display: flex;
  }
  #navi-g.active .cover-back #gn-btn .top-line {
    clip-path: polygon(100% 92%, 0% 0%, 0% 8%, 100% 100%);
  }
  #navi-g.active .cover-back #gn-btn .middle-line {
    opacity: 0;
  }
  #navi-g.active .cover-back #gn-btn .bottom-line {
    clip-path: polygon(100% 0%, 0% 92%, 0% 100%, 100% 8%);
  }
  #fv-area {
    min-height: auto;
    max-height: auto;
    overflow: hidden;
    height: 180vw;
  }
  #fv-area .inner {
    width: 100%;
    position: inherit;
  }
  #fv-area::after {
    height: 180vw;
    width: 100vw;
    background-image: url(../img/title-gara-sp.webp);
    background-position: left top;
    top: -2vw;
    left: -27vw;
    background-size: contain;
  }
  #fv-area .fv-white {
    height: 100vw;
    min-height: auto;
    max-height: none;
  }
  #fv-area .fv-white .inner .title {
    width: 68vw;
    height: auto;
    position: absolute;
    right: auto;
    left: 20vw;
    bottom: auto;
    top: 43vw;
    transform: skewY(-15deg);
  }
  #first::after, #second::after, #third::after, #child-page-sec::after {
    width: 69vw;
    left: -53vw;
  }
  #child-page-sec::after {
    width: 47vw;
    left: -33vw;
    background-size: 55%;
  }
  #about {
    width: 100%;
    padding: 30vw 0 0vw;
  }
  #about .s-title {
    font-size: 15vw;
  }
  #about .sub-title {
    font-size: 7vw;
  }
  #about .text {
    font-size: 5.2vw;
  }
  #about .aisatsu {
    font-size: 6.5vw;
  }
  #about .aisatsu .orange-marker {
    text-wrap: nowrap;
  }
  #about .inner {
    width: 70vw;
    left: 3vw;
  }
  #about .profile {
    top: 4em;
  }
  #about .profile img {
    width: 45vw;
  }
  #about .profile .text {
    left: 34vw;
    font-size: 4vw;
    z-index: 2;
    top: 13vw;
    width: 47vw;
    padding: 1em 2em 1em 1em;
  }
  #about .side__line {
    height: 100vw;
    clip-path: polygon(100% 0, 0 40%, 0% 100%, 100% 100%);
  }
  #action {
    width: 100%;
    left: 0;
    padding-top: 40vw;
    position: relative;
  }
  #action .inner {
    width: 100%;
    left: auto;
    height: 435vw;
  }
  #action .title {
    right: 35vw;
    font-size: 11vw;
  }
  #action .action-one .sub-title {
    font-size: 7vw;
  }
  #action .action-one.sonoichi {
    top: 84vw;
    background-position: 7vw 0vw;
    height: 150vw;
  }
  #action .action-one.sonoichi .sub-title {
    left: 22vw;
    top: 35vw;
  }
  #action .action-one.sonoichi .text {
    left: 10vw;
    top: 60vw;
    width: 70%;
    font-size: 5vw;
  }
  #action .action-one.sononi {
    top: 195vw;
    background-position: -14vw 0vw;
    height: 150vw;
    z-index: 4;
  }
  #action .action-one.sononi .sub-title {
    left: 15vw;
    top: 40vw;
    right: auto;
  }
  #action .action-one.sononi .text {
    top: 64vw;
    left: 24vw;
    width: 70%;
    font-size: 5vw;
  }
  #action .action-one.sonosan {
    top: 305vw;
    background-position: 7vw 0vw;
    height: 150vw;
  }
  #action .action-one.sonosan .sub-title {
    left: 33vw;
    top: 40vw;
  }
  #action .action-one.sonosan .text {
    left: 10vw;
    top: 60vw;
    width: 70%;
    font-size: 5vw;
  }
  #history {
    width: 100%;
    padding: 30vw 0 0vw;
  }
  #history .inner {
    width: 80vw;
    left: auto;
    margin-right: 0;
    position: relative;
  }
  #history .inner .back-img {
    height: 100%;
    width: 100%;
    background-size: 100% 100%;
  }
  #history .list .history-one {
    position: relative;
    display: block;
    margin-right: 10vw;
  }
  #history .list .history-one .year {
    font-size: 10vw;
    transform: rotate(90deg);
    position: absolute;
    top: 4.5vw;
    left: 0;
  }
  #history .list .history-one .text {
    font-size: 4vw;
    width: 68vw;
    padding: 0.5em 0.5em 0.5em 15vw;
  }
  #history .future {
    font-size: 5vw;
  }
  #client {
    width: 100%;
    padding: 30vw 0 30vw;
  }
  #client .inner {
    width: 70vw;
    left: 3vw;
  }
  #client .title {
    font-size: 6vw;
    text-align: center;
    display: block;
  }
  #client .list {
    gap: 7vw 4vw;
    margin-top: 10vw;
    flex-direction: column;
    align-items: center;
  }
  #client .list .client-one {
    height: 12vw;
  }
  #service {
    width: 100%;
    padding: 0;
  }
  #service .main-obi {
    padding: 15vw 10vw;
    background-image: url("../img/service_1_sp.webp");
  }
  #service .main-obi .sub-title {
    font-size: 6vw;
  }
  #service .service-one {
    padding: 20vw 10vw;
  }
  #service .service-one.genre1 {
    background-image: url(../img/service_2_sp.webp);
    background-size: contain;
    background-position: top;
    background-color: #4f8fcd;
  }
  #service .service-one.genre2 {
    background-image: url("../img/service_3_sp.webp");
  }
  #service .service-one.genre3 {
    background-image: url("../img/service_4_sp.webp");
  }
  #service .service-one .title {
    font-size: 7vw;
  }
  #service .service-one .sub-title {
    font-size: 6.5vw;
    padding-bottom: 1em;
  }
  #service .service-one .lead {
    font-size: 5vw;
  }
  #service .service-one .point {
    margin-top: 6.5vw;
    font-size: 5vw;
  }
  #service .service-one .point .point-one {
    font-size: 5vw;
  }
  #service .service-one .point .point-one .company-name {
    font-size: 4vw;
  }
  #service .service-one .point .point-one .company-name a {
    font-size: 4vw;
  }
  #service .service-one .summary {
    margin-top: 6.5vw;
    font-size: 4vw;
  }
  #service .service-one .more-info {
    padding: 7vw;
    margin-top: 6.5vw;
  }
  #service .service-one .more-info .min-title {
    font-size: 6vw;
  }
  #service .service-one .more-info .point-sub {
    padding-left: 2em;
    gap: 0.4em 3em;
  }
  #service .service-one .more-info .point-sub .point-one {
    font-size: 4vw;
  }
  #service .service-one .more-info.example .point .point-one .one-c {
    font-size: 4vw;
    display: inline;
  }
  #service .service-one .link-list .d-btn {
    font-size: 5vw;
    width: 100%;
  }
  #service .service-one .link-list .d-btn span {
    font-size: 5vw;
  }
  #media {
    width: 100%;
    padding: 30vw 0 0vw;
  }
  #media .s-title {
    font-size: 11vw;
  }
  #media .inner {
    width: 70vw;
    left: 3vw;
  }
  #media .list {
    gap: 1em;
  }
  #media .list .media-one {
    width: 100%;
  }
  #media .list .media-one .info {
    width: 100%;
    left: auto;
    margin-top: 10vw;
    padding: 1.5em;
    position: relative;
    text-align: right;
  }
  #media .list .media-one .info .snsicon {
    display: inline;
  }
  #media .list .media-one .info .title {
    text-align: left;
    font-size: 5vw;
  }
  #media .list .media-one .info .id-text {
    text-align: left;
    font-size: 5vw;
  }
  #voice {
    width: 100%;
    padding: 30vw 0;
  }
  #voice .inner {
    width: 70vw;
    left: 3vw;
  }
  #voice .list {
    gap: 2em;
  }
  #voice .list .voice-one {
    padding: 0;
    position: relative;
    background: none;
  }
  #voice .list .voice-one .v-image {
    width: 100%;
  }
  #voice .list .voice-one .title {
    font-size: 6vw;
    background-image: url(../img/fuki.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    min-height: 50vw;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
  }
  #voice .list .voice-one .title .bkh {
    display: inline-block;
    width: 100%;
    margin: auto;
    padding: 0.5em;
    text-align: center;
    background-color: #E26920;
    color: #fff;
  }
  #voice .list .voice-one .pc-right {
    width: 100%;
    background: none;
  }
  #voice .list .voice-one .pc-right .title {
    display: none;
    padding: 0;
  }
  #voice .list .voice-one .pc-right .name {
    background: none;
    padding: 0;
    margin-top: 0;
    font-size: 5vw;
  }
  #voice .list .voice-one .text {
    -moz-columns: 1;
         columns: 1;
    background: none;
    padding: 0;
    line-height: 2;
    font-size: 80%;
  }
  #news {
    width: 100%;
    padding: 30vw 0 40vw;
  }
  #news .inner {
    width: 70vw;
    left: 3vw;
  }
  #news .list .link-one {
    flex-direction: column;
    padding-left: 0em;
    gap: 0.5em;
  }
  #news .list .link-one .date {
    width: 100%;
    padding-left: 1em;
  }
  #news .list .link-one .text {
    width: 100%;
  }
  #recruit {
    width: 100%; /*作業用暫定*/
    padding: 30vw 0;
  }
  #recruit .s-title {
    font-size: 10vw;
  }
  #recruit .lead {
    width: 100%;
  }
  #recruit .btn-wrap {
    margin-top: 3em;
    flex-direction: column;
    gap: 1em;
  }
  #recruit .btn-wrap .d-btn {
    width: 100%;
    font-size: 5vw;
  }
  #recruit .btn-wrap .d-btn span {
    font-size: 5vw;
  }
  #company {
    width: 100%;
    padding-bottom: 30vw;
    padding-top: 30vw;
  }
  #company .inner {
    width: 70vw;
    left: 3vw;
  }
  #company .info {
    gap: 1em;
  }
  #company .info .info-one {
    flex-direction: column;
    gap: 0.25em;
    padding-bottom: 0.5em;
  }
  #company .info .info-one .heading {
    font-size: 5vw;
    width: 100%;
  }
  #company .info .info-one .text {
    font-size: 5vw;
    width: 100%;
  }
  #company .info .info-one .text li {
    font-size: 5vw;
    line-height: 1.5;
    margin-bottom: 0.5em;
  }
  #inquiry {
    width: 100%;
    padding-top: 65vw;
    padding-bottom: 35vw;
  }
  #inquiry .side__line {
    position: absolute;
    top: -0.5vw;
    left: -0.5vw;
    width: 100%;
    height: 40vw;
    clip-path: polygon(0 0, 100% 0px, 100% 0.5vw, 0 40.5vw);
  }
  #inquiry .inner {
    margin: auto -2vw auto auto;
    width: 92vw;
    position: relative;
    z-index: 4;
  }
  #inquiry .form-wrap {
    padding: 3em 2em 4em 1.5em;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q {
    gap: 0.5em;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q .question {
    font-size: 5vw;
    align-items: center;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q .question .hissu {
    font-size: 4vw;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q .question ::after {
    top: 0.55em;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap input, #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap textarea, #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap select {
    font-size: 5vw;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap .wpcf7-radio {
    gap: 0.5em;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25em;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item span {
    font-size: 4.5vw;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-checkbox {
    display: block;
  }
  #inquiry .form-wrap .form-in-wrap .form-one-q .answer .wpcf7-checkbox label {
    width: 100%;
  }
  #inquiry .form-wrap .submit-wrap input[type=submit] {
    font-size: 5vw;
  }
  #footer {
    width: 100%;
    padding-top: 65vw;
    padding-bottom: 60vw;
  }
  #footer .logo {
    width: 40%;
  }
  #footer .sub-title {
    font-size: 7vw;
  }
  #footer .menu {
    gap: 1.5em;
    margin-top: 3em;
    width: 100%;
    flex-flow: column;
  }
  #footer .side__line {
    position: absolute;
    top: -0.5vw;
    left: -0.5vw;
    width: 100%;
    height: 40vw;
    clip-path: polygon(0 100%, 100% 0px, 100% 0.5vw, 0 40.5vw);
  }
  #footer .pplink {
    margin-top: 6em;
    font-size: 3.5vw;
  }
  #footer .copyright {
    font-size: 3.5vw;
  }
  .child-page {
    background-color: #fff;
  }
  .child-page #child-page-sec {
    background-color: #fff;
  }
  .child-page #child-page-sec::after {
    width: 47vw;
    left: -33vw;
    background-size: 65%;
  }
  .child-page #child-page-sec .page-title {
    background: #E26920;
    position: relative;
  }
  .child-page #child-page-sec .page-title .inner {
    padding: 5em 0;
    width: 70vw;
    left: 3vw;
  }
  .child-page #child-page-sec .page-title .s-title {
    margin: auto;
    line-height: 1;
    padding-right: 0.2em;
    padding-bottom: 0.2em;
    z-index: 4;
    font-size: 10vw;
  }
  .child-page #child-page-sec #contents .inner {
    z-index: 4;
    padding-bottom: 5em;
    width: 70vw;
    left: 3vw;
  }
  .child-page #child-page-sec #contents .link-list {
    margin-top: 2em;
  }
  .child-page #child-page-sec #contents .link-list .d-btn {
    width: 100%;
    font-size: 5vw;
  }
  .child-page #child-page-sec #contents .link-list .d-btn::before {
    top: calc(50% - 0.15em);
  }
  .child-page #child-page-sec #contents .link-list .d-btn span {
    font-size: 5vw;
  }
  .child-page #child-page-sec #contents .lead {
    font-size: 5vw;
  }
  .child-page #child-page-sec #contents .long-text {
    margin-top: 1em;
    font-size: 5vw;
  }
  .child-page #child-page-sec #contents .side__line {
    height: 100vw;
    clip-path: polygon(100% 0, 100% 2px, 0 40vw, 0% 0%);
    top: -2px;
  }
  .child-page #child-page-sec #contents .pptext .lead, .child-page #child-page-sec #contents .pptext .one-text, .child-page #child-page-sec #contents .pptext ul, .child-page #child-page-sec #contents .pptext li {
    font-size: 4vw;
  }
  .child-page #footer {
    margin-top: -100vw;
  }
}
/**********************

SP　fin

**********************//*# sourceMappingURL=style.css.map */