@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
figure,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

/*iosのフォームボタンリセット*/
input[type=submit],
input[type=button],
input[type=reset] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

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

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

html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
    scroll-padding-top: 2.6666666667vw;
  }
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.6s;
}
a img {
  transition: 0.6s;
}
a:hover {
  opacity: 0.7;
}
a:hover p:hover {
  opacity: 0.7;
}

body {
  color: #000;
  overflow-x: hidden;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-feature-settings: "palt" 1;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.js-fade {
  opacity: 0;
  transition-duration: 1.1s;
}

.js-fade.js-fade-top {
  transform: translate(0px, -40px);
}

.js-fade.js-fade-bottom {
  transform: translateY(50px);
}

.js-fade.js-fade-left {
  transform: translate(-20px, 0px);
}

.js-fade.js-fade-right {
  transform: translate(20px, 0px);
}

.js-fade.is-active {
  transform: translate(0, 0);
  opacity: 1;
}

.l-container {
  width: 110rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 67rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s;
}
.l-header.-fixed {
  background: #fff;
  border-bottom: 0.1rem solid #ddd;
}
.l-header__Inner {
  display: flex;
  max-width: 110rem;
  padding: 2.5rem 0;
  margin: auto;
}
.l-header__Logo {
  width: 15.6rem;
}
.l-header__Openbtn {
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 10000;
  width: 11rem;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 1.6rem;
  cursor: pointer;
}
.l-header__Openbtn span {
  width: 4.8rem;
  height: 0.2rem;
  border-radius: 0.5rem;
  background: #e8380d;
  transition: 0.6s;
  transform-origin: center;
}
.l-header__Openbtn.-active span:nth-child(1) {
  transform: translateY(1.7rem) rotate(45deg);
}
.l-header__Openbtn.-active span:nth-child(2) {
  opacity: 0;
}
.l-header__Openbtn.-active span:nth-child(3) {
  transform: translateY(-1.7rem) rotate(-45deg);
}
.l-header__Nav {
  width: 100vw;
  height: 100vh;
  background: #e8380d;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: 0.3s;
  padding: 15rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__Nav.-active {
  transform: translateX(0);
}
.l-header__Nav-Inner {
  max-width: 32rem;
  margin: auto;
}
.l-header__Nav-Logo {
  width: 13.8rem;
  margin: 0 auto 4.8rem;
}
.l-header__Nav-List {
  display: flex;
  flex-flow: column;
  gap: 4.8rem;
}
.l-header__Nav-Item {
  text-align: center;
}
.l-header__Nav-Item a {
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l-header__Inner {
    padding: 0 4rem;
    height: 14.4rem;
    align-items: center;
  }
  .l-header__Logo {
    width: 20.1rem;
  }
  .l-header__Openbtn {
    width: 17.6rem;
    height: 14.2rem;
    gap: 2.8rem;
  }
  .l-header__Openbtn span {
    width: 7.6rem;
  }
  .l-header__Openbtn.-active span:nth-child(1) {
    transform: translateY(3rem) rotate(45deg);
  }
  .l-header__Openbtn.-active span:nth-child(2) {
    opacity: 0;
  }
  .l-header__Openbtn.-active span:nth-child(3) {
    transform: translateY(-3rem) rotate(-45deg);
  }
  .l-header__Nav {
    padding: 15rem 0;
  }
  .l-header__Nav-Inner {
    max-width: 64rem;
  }
  .l-header__Nav-Logo {
    width: 24.6rem;
    margin: 0 auto 7.2rem;
  }
  .l-header__Nav-List {
    display: flex;
    flex-flow: column;
    gap: 8rem;
  }
  .l-header__Nav-Item a {
    font-size: 4rem;
  }
}
.pagetop {
  margin-top: 7.5rem;
  text-align: right;
  overflow: hidden;
}
.pagetop__Btn {
  width: 10rem;
  display: inline-block;
  transform: translateY(100%);
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.pagetop__Btn.is-active {
  transform: translateY(0);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  border-top: 0.1rem solid #ccc;
  border-bottom: 0.1rem solid #ccc;
  padding: 2.5rem 10rem;
}
.breadcrumbs li {
  font-size: 1.4rem;
  color: #222;
  padding-right: 1.8rem;
  margin-right: 1.8rem;
  position: relative;
}
.breadcrumbs li:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.8rem;
  content: "";
  background: url("./../img/icon_bread_arrow.svg");
  background-size: cover;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.breadcrumbs li.-home {
  padding-left: 2.2rem;
}
.breadcrumbs li.-home:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  content: "";
  background: url("./../img/icon_home.svg");
  background-size: cover;
}
.breadcrumbs li a {
  font-size: 1.4rem;
  color: #e8380d;
}

.l-footer {
  padding-bottom: 1.3rem;
}
.l-footer__Grade {
  background: linear-gradient(to right, #e8380d 0%, #e8380d 50%, #f8b62d 50%, #f8b62d 100%);
  position: relative;
}
.l-footer__Grade:before {
  position: absolute;
  content: "";
  background: url(./../img/bg_bottom_creaters.png);
  background-size: 100%;
  width: 50vw;
  height: 100%;
  left: 50%;
  top: 0;
}
.l-footer__Flex {
  display: flex;
  justify-content: space-between;
}
.l-footer__Spwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-footer__Box {
  width: calc(50% - 12rem);
  padding: 5rem 0;
  position: relative;
}
.l-footer__Box-Ttl {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 3.6rem;
  font-weight: bold;
}
.l-footer__Box-Ttl span {
  position: relative;
}
.l-footer__Box-Ttl span:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}
.l-footer__Box-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}
.l-footer__Box-Btn {
  width: 23.6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #222;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: auto;
  border-radius: 5rem;
  position: relative;
  border: 0.2rem solid #222;
}
.l-footer__Box-Btn:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url(./../img/icon_creaters_btn_arrow.svg);
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  pointer-events: none;
  transition: 0.6s;
}
.l-footer__Box-Btn:hover {
  background: #fff;
  color: #222;
  opacity: 1;
}
.l-footer__Box-Btn:hover:after {
  background-image: url("./../img/icon_creaters_btn_arrow_hover.svg");
}
.l-footer__Box.-contact {
  color: #fff;
}
.l-footer__Box.-contact .l-footer__Box-Ttl > span {
  padding-left: 5.5rem;
}
.l-footer__Box.-contact .l-footer__Box-Ttl > span:before {
  background: url("./../img/icon_footer_contact.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.2rem;
  height: 4.2rem;
}
.l-footer__Box.-creaters .l-footer__Box-Ttl > span {
  padding-left: 5.7rem;
}
.l-footer__Box.-creaters .l-footer__Box-Ttl > span:before {
  background: url("./../img/icon_footer_creaters.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.9rem;
  height: 4.4rem;
}
.l-footer__Cont {
  padding: 5rem 0 1rem;
}
.l-footer__Cont .l-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 120rem;
}
.l-footer__Cont-Logo {
  width: 13.9rem;
  margin-right: 2rem;
}
.l-footer__Cont-Info {
  font-size: 1.2rem;
  line-height: 3rem;
  letter-spacing: 0.04em;
}
.l-footer__Cont-Info-Flex {
  display: flex;
  justify-content: space-between;
}
.l-footer__Cont-Nav {
  display: flex;
  flex-wrap: wrap;
  max-width: 58rem;
}
.l-footer__Cont-Nav li {
  line-height: 3rem;
  padding-right: 1rem;
  margin-right: 1rem;
}
.l-footer__Cont-Nav li:nth-child(1), .l-footer__Cont-Nav li:nth-child(2), .l-footer__Cont-Nav li:nth-child(3), .l-footer__Cont-Nav li:nth-child(5), .l-footer__Cont-Nav li:nth-child(6) {
  position: relative;
}
.l-footer__Cont-Nav li:nth-child(1):before, .l-footer__Cont-Nav li:nth-child(2):before, .l-footer__Cont-Nav li:nth-child(3):before, .l-footer__Cont-Nav li:nth-child(5):before, .l-footer__Cont-Nav li:nth-child(6):before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: #222;
  width: 0.1rem;
  height: 1rem;
}
.l-footer__Cont-Nav li a {
  font-size: 1.2rem;
  line-height: 3rem;
  letter-spacing: 0.08em;
}
.l-footer__Copy {
  margin-top: 3.3rem;
  width: 120rem;
}
.l-footer__Copy span {
  font-size: 1rem;
  padding-right: 1rem;
}
.l-footer__Copy a {
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .pagetop {
    text-align: center;
  }
  .pagetop__Btn {
    width: 13.8rem;
  }
  .breadcrumbs {
    padding: 4rem;
    white-space: nowrap;
    overflow: scroll;
  }
  .breadcrumbs li {
    font-size: 2.8rem;
    padding-right: 4rem;
    margin-right: 4rem;
  }
  .breadcrumbs li:after {
    width: 1rem;
    height: 1.6rem;
  }
  .breadcrumbs li.-home {
    padding-left: 4.4rem;
  }
  .breadcrumbs li.-home:before {
    width: 3.2rem;
    height: 3.2rem;
  }
  .breadcrumbs li a {
    font-size: 2.8rem;
  }
  .l-footer {
    padding-bottom: 5rem;
  }
  .l-footer__Grade {
    background: none;
  }
  .l-footer__Grade:before {
    width: 100%;
    height: 50%;
    left: 0;
    top: 50%;
    z-index: 10;
  }
  .l-footer__Grade .l-container {
    width: 100%;
    max-width: none;
  }
  .l-footer__Spwrap {
    display: block;
    width: 67rem;
  }
  .l-footer__Spflex {
    display: flex !important;
    flex-flow: column;
    gap: 0;
  }
  .l-footer__Flex {
    display: block;
  }
  .l-footer__Box {
    width: 100%;
    padding: 7.6rem 0;
  }
  .l-footer__Box-Ttl {
    font-size: 4rem;
    margin-bottom: 6.5rem;
    position: relative;
    z-index: 10;
  }
  .l-footer__Box-Txt {
    width: 67.5rem;
    text-align: justify;
    font-size: 2.4rem;
    line-height: 4.8rem;
    margin: 0 auto 7rem;
    position: relative;
    z-index: 10;
  }
  .l-footer__Box-Btn {
    width: 47.2rem;
    height: 12rem;
    border-radius: 10rem;
    font-size: 3.2rem;
    position: relative;
    z-index: 10;
  }
  .l-footer__Box-Btn:after {
    width: 4rem;
    height: 2.8rem;
    right: 4rem;
    z-index: 10;
  }
  .l-footer__Box.-contact {
    background: #e8380d;
  }
  .l-footer__Box.-contact .l-footer__Box-Ttl {
    color: #fff;
  }
  .l-footer__Box.-contact .l-footer__Box-Ttl > span {
    padding-left: 12rem;
  }
  .l-footer__Box.-contact .l-footer__Box-Ttl > span:before {
    width: 8.8rem;
    height: 8.8rem;
  }
  .l-footer__Box.-contact .l-footer__Box-Ttl > span .vsp {
    display: inline-block;
  }
  .l-footer__Box.-contact .l-footer__Box-Txt {
    color: #fff;
  }
  .l-footer__Box.-creaters {
    background: #f8b62d;
  }
  .l-footer__Box.-creaters .l-footer__Box-Ttl > span {
    padding-left: 12rem;
  }
  .l-footer__Box.-creaters .l-footer__Box-Ttl > span:before {
    width: 9.4rem;
    height: 8.8rem;
  }
  .l-footer__Box.-creaters .l-footer__Box-Ttl > span .vsp {
    display: inline-block;
  }
  .l-footer__Cont {
    padding: 6rem 0 0;
  }
  .l-footer__Cont .l-container {
    display: block;
    width: 67rem;
  }
  .l-footer__Cont-Logo {
    width: 23.3rem;
    margin: 0 0 4.8rem;
  }
  .l-footer__Cont-Info {
    font-size: 2.4rem;
    line-height: 5rem;
    padding-bottom: 6rem;
    margin-bottom: 2.7rem;
    border-bottom: 0.1rem solid #f8b62d;
    margin-right: 0;
  }
  .l-footer__Cont-Info-Flex {
    flex-flow: column;
    gap: 0;
  }
  .l-footer__Cont-Nav {
    flex-flow: column;
    gap: 0;
    max-width: none;
    margin-bottom: 5rem;
    padding-bottom: 1.7rem;
    width: 100%;
    border-bottom: 0.1rem solid #f8b62d;
  }
  .l-footer__Cont-Nav li {
    width: 100%;
    line-height: 3rem;
  }
  .l-footer__Cont-Nav li:nth-child(1), .l-footer__Cont-Nav li:nth-child(2), .l-footer__Cont-Nav li:nth-child(3), .l-footer__Cont-Nav li:nth-child(5), .l-footer__Cont-Nav li:nth-child(6) {
    position: relative;
  }
  .l-footer__Cont-Nav li:nth-child(1):before, .l-footer__Cont-Nav li:nth-child(2):before, .l-footer__Cont-Nav li:nth-child(3):before, .l-footer__Cont-Nav li:nth-child(5):before, .l-footer__Cont-Nav li:nth-child(6):before {
    display: none;
  }
  .l-footer__Cont-Nav li a {
    font-size: 2.4rem;
    display: block;
    padding: 3.3rem 0;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .l-footer__Copy {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 67rem;
  }
  .l-footer__Copy span {
    font-size: 1.8rem;
    padding-right: 0;
  }
  .l-footer__Copy a {
    font-size: 1.8rem;
  }
}
.c-Ttl {
  margin-bottom: 1.7333333333vw;
  text-align: center;
  line-height: 1;
}
.c-Ttl .-jp {
  display: block;
  font-size: 1.2vw;
  margin-bottom: 1.6vw;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.c-Ttl .-eng {
  display: block;
  font-size: 3.2vw;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.c-catch {
  font-size: 1.1333333333vw;
  line-height: 2.0666666667vw;
  text-align: center;
}

@media screen and (min-width: 1441px) {
  .c-Ttl {
    margin-bottom: 26px;
  }
  .c-Ttl .-jp {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .c-Ttl .-eng {
    font-size: 48px;
  }
  .c-catch {
    font-size: 17px;
    line-height: 31px;
  }
}
@media screen and (max-width: 767px) {
  .c-Ttl {
    margin-bottom: 5.3333333333vw;
  }
  .c-Ttl .-jp {
    font-size: 3.348vw;
    margin-bottom: 4.5333333333vw;
  }
  .c-Ttl .-eng {
    font-size: 8.952vw;
  }
  .c-catch {
    font-size: 3.4666666667vw;
    line-height: 5.7653333333vw;
  }
}
@keyframes scaleAnimation {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.p-top__Mv {
  background: url("./../img/bg_top_mv.png");
  background-size: contain;
}
.p-top__Mv .l-container {
  position: relative;
  min-height: 66rem;
  height: 100vh;
}
.p-top__Mv-Ttl {
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4.7rem;
  writing-mode: vertical-rl;
  height: 100%;
  text-align: center;
  letter-spacing: 0.27em;
  font-weight: bold;
}
.p-top__Mv-Thum {
  position: absolute;
}
.p-top__Mv-Thum.-thum01 {
  width: 27.6rem;
  height: 43.6rem;
  top: 50%;
  transform: translateY(-50%);
  left: -0.4rem;
}
.p-top__Mv-Thum.-thum01 img {
  width: 37.8rem;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 50px));
  transition: 0.6s;
  transition-delay: 0.6s;
  display: inline-block;
  opacity: 0;
}
.p-top__Mv-Thum.-thum01:before {
  position: absolute;
  content: "";
  width: 21.3rem;
  height: 6.3rem;
  top: -3.4rem;
  right: -9rem;
  background: url("./../img/fuki_top_mv_01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  transform: scale(0);
}
.p-top__Mv-Thum.-thum01:after {
  position: absolute;
  content: "";
  width: 27.6rem;
  height: 43.6rem;
  top: 0;
  left: 0;
  background: url("./../img/frame_top_mv_01.svg");
  background-size: cover;
}
.p-top__Mv-Thum.-thum01.is-active img {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.p-top__Mv-Thum.-thum01.is-active:before {
  transform: scale(1);
}
.p-top__Mv-Thum.-thum02 {
  width: 27.6rem;
  height: 43.6rem;
  top: 50%;
  transform: translateY(-50%);
  right: 0rem;
}
.p-top__Mv-Thum.-thum02 img {
  width: 33.6rem;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 50px));
  transition: 0.6s;
  transition-delay: 0.9s;
  display: inline-block;
  opacity: 0;
}
.p-top__Mv-Thum.-thum02:before {
  position: absolute;
  content: "";
  width: 21.3rem;
  height: 6.3rem;
  top: -3.4rem;
  left: -11.5rem;
  background: url(./../img/fuki_top_mv_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  transition-delay: 0.3s;
  transform: scale(0);
}
.p-top__Mv-Thum.-thum02:after {
  position: absolute;
  content: "";
  width: 27.6rem;
  height: 43.6rem;
  top: 0;
  left: 0;
  background: url("./../img/frame_top_mv_02.svg");
  background-size: cover;
}
.p-top__Mv-Thum.-thum02.is-active img {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.p-top__Mv-Thum.-thum02.is-active:before {
  transform: scale(1);
}
.p-top__Mv-Btns {
  display: flex;
  position: absolute;
  bottom: -4.4rem;
  right: 0;
  gap: 2.3rem;
  z-index: 10;
}
.p-top__Mv-Btns a {
  display: block;
  width: 14.5rem;
  transition: 0.3s;
}
.p-top__Mv-Btns a:nth-of-type(2) {
  width: 12.9rem;
}
.p-top__Mv-Btns a:hover {
  transform: scale(1.1);
}
.p-top__Catch {
  padding: 10rem 0 8rem;
}
.p-top__Catch-Ttl {
  max-width: 77.5rem;
  transform: translateX(0.5rem);
  width: 100%;
  margin: 0 auto 4rem;
}
.p-top__Catch-Txt {
  letter-spacing: 0.11em;
  line-height: 6.3rem;
  font-size: 2.6rem;
  text-align: center;
}
.p-top__Strongpoint {
  margin-bottom: 5rem;
}
.p-top__Strongpoint .swiper-wrapper {
  transition-timing-function: linear;
}
.p-top__Strongpoint .swiper-wrapper .swiper-slide {
  width: 268.8rem;
}
.p-top__Step {
  margin-bottom: 5rem;
}
.p-top__Step-Txt {
  font-size: 2.4rem;
  line-height: 5rem;
  letter-spacing: 0.13em;
  margin-bottom: 19rem;
  transform: translateX(-2.5rem);
}
.p-top__Step-List {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 5rem;
}
.p-top__Step-List:before {
  position: absolute;
  content: "";
  width: 110rem;
  height: 21.8rem;
  bottom: 0;
  left: 0;
  background: url("./../img/bar_top_step.svg");
  background-size: cover;
}
.p-top__Step-Item {
  max-width: 32.5rem;
  width: 30%;
  position: relative;
}
.p-top__Step-Item-Box {
  background: #fef0d5;
  border-radius: 50rem 50rem 0 0;
  padding: 10rem 4rem 4rem;
  position: relative;
  transition: 0.6s;
  transform: translateY(50px);
  opacity: 0;
}
.p-top__Step-Item-Box:before {
  position: absolute;
  content: "";
  width: 12.2rem;
  height: 13.1rem;
  top: -6.3rem;
  right: -1.5rem;
  background-size: cover;
}
.p-top__Step-Item-No {
  width: 4.2rem;
  position: absolute;
  left: 50%;
  top: -6rem;
  transform: translate(-50%, 50px);
  z-index: 10;
  transition: 0.6s;
  opacity: 0;
}
.p-top__Step-Item-Ttl {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
}
.p-top__Step-Item-Detail {
  margin-bottom: 2.8rem;
  text-align: center;
}
.p-top__Step-Item-Detail span {
  max-width: 23.1rem;
  width: 100%;
  display: inline-block;
  background: #fff;
  color: #e8380d;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0.8rem 0;
}
.p-top__Step-Item-Txt {
  font-size: 1.6rem;
  line-height: 3.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-bottom: 1.3rem;
}
.p-top__Step-Item ul li {
  padding-left: 2.5rem;
  position: relative;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3.9rem;
}
.p-top__Step-Item ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1rem;
  height: 1rem;
  background: #e8380d;
  border-radius: 50%;
}
.p-top__Step-Item:nth-child(1) .p-top__Step-Item-Box {
  transition-delay: 0.6s;
}
.p-top__Step-Item:nth-child(1) .p-top__Step-Item-Box:before {
  background-image: url("./../img/icon_top_step_up_01.svg");
}
.p-top__Step-Item:nth-child(2) {
  transform: translateY(-10rem);
}
.p-top__Step-Item:nth-child(2) .p-top__Step-Item-No {
  transition-delay: 1.2s;
}
.p-top__Step-Item:nth-child(2) .p-top__Step-Item-Box {
  transition-delay: 1.8s;
}
.p-top__Step-Item:nth-child(2) .p-top__Step-Item-Box:before {
  background-image: url("./../img/icon_top_step_up_02.svg");
}
.p-top__Step-Item:nth-child(3) {
  transform: translateY(-21rem);
}
.p-top__Step-Item:nth-child(3) .p-top__Step-Item-No {
  transition-delay: 2.4s;
}
.p-top__Step-Item:nth-child(3) .p-top__Step-Item-Box {
  transition-delay: 3s;
}
.p-top__Step-Item:nth-child(3) .p-top__Step-Item-Box:before {
  background-image: url("./../img/icon_top_step_up_03.svg");
}
.p-top__Step-Item.is-active .p-top__Step-Item-No {
  transform: translate(-50%, 0);
  opacity: 1;
}
.p-top__Step-Item.is-active .p-top__Step-Item-Box {
  transform: translate(0, 0);
  opacity: 1;
}
.p-top__Step-Grow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  margin-top: -16rem;
}
.p-top__Step-Grow-Txt {
  font-size: 3.2rem;
  font-weight: 500;
}
.p-top__Step-Grow-Icon {
  width: 20.6rem;
  animation: scaleAnimation 2s infinite ease-in-out;
}
.p-top__Service {
  padding: 14.6rem 0 61.3rem;
  position: relative;
}
.p-top__Service:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 142.6rem;
  height: 224.7rem;
  content: "";
  background: url("./../img/bg_top_service.svg");
  background-size: cover;
  border-radius: 100rem 100rem 0 0;
  z-index: -1;
}
.p-top__Service-Ttl {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 600;
  margin-bottom: 4.5rem;
}
.p-top__Service-Ttl ruby {
  ruby-align: center;
}
.p-top__Service-Ttl rt {
  font-size: 1.2rem;
}
.p-top__Service-Catch {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 8.5rem;
}
.p-top__Service-List {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-top__Service-Item {
  width: 33.3333333333%;
  padding: 2.4rem 0 1.5rem;
  position: relative;
}
.p-top__Service-Item:before {
  position: absolute;
  width: 0.2rem;
  height: calc(100% - 3rem);
  content: "";
  top: 0;
  right: 0;
  background: #f8b62d;
}
.p-top__Service-Item:after {
  position: absolute;
  height: 0.2rem;
  content: "";
  bottom: 0;
  left: 0;
  background: #f8b62d;
}
.p-top__Service-Item:nth-child(1) {
  position: relative;
}
.p-top__Service-Item:nth-child(1):after {
  width: calc(100% - 3rem);
}
.p-top__Service-Item:nth-child(2) {
  position: relative;
  transition-delay: 0.3s;
}
.p-top__Service-Item:nth-child(2):after {
  left: 3rem;
  width: calc(100% - 6rem);
}
.p-top__Service-Item:nth-child(3) {
  transition-delay: 0.6s;
}
.p-top__Service-Item:nth-child(3):before {
  display: none;
}
.p-top__Service-Item:nth-child(3):after {
  left: auto;
  right: 0;
  width: calc(100% - 3rem);
}
.p-top__Service-Item:nth-child(5) {
  transition-delay: 0.3s;
}
.p-top__Service-Item:last-child {
  transition-delay: 0.6s;
}
.p-top__Service-Item:last-child:before {
  display: none;
}
.p-top__Service-Item:nth-child(n+4) {
  padding: 7.5rem 0 0rem;
  border-bottom: none;
}
.p-top__Service-Item:nth-child(n+4):before {
  top: auto;
  bottom: 0;
}
.p-top__Service-Item:nth-child(n+4):after {
  display: none;
}
.p-top__Service-Item-Ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  min-height: 8rem;
}
.p-top__Service-Item-Thum {
  width: 17rem;
  margin: 0 auto 4rem;
}
.p-top__Service-Item-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.05em;
  width: 23rem;
  margin: 0 auto 3rem;
}
.p-top__Service-Item-Dl {
  width: 23rem;
  margin: 0 auto 2rem;
}
.p-top__Service-Item-Dt {
  text-align: center;
  background: #fff;
  color: #e8380d;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
}
.p-top__Service-Item-Dd {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.05em;
  text-align: justify;
}
.p-top__Service-Btn {
  text-align: center;
  margin-top: 7rem;
  animation: scaleAnimation 2s infinite ease-in-out;
}
.p-top__Service-Btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53.3rem;
  height: 10rem;
  background: #222;
  color: #fff;
  border-radius: 10rem;
  font-size: 2.6rem;
  text-align: center;
  position: relative;
  padding-left: 8.6rem;
}
.p-top__Service-Btn a:before {
  position: absolute;
  width: 6.7rem;
  height: 10.8rem;
  content: "";
  background: url("./../img/icon_top_srvice_btn.svg");
  background-size: cover;
  bottom: 0;
  left: 9.5rem;
  pointer-events: none;
}
.p-top__Service-Btn a:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url("./../img/icon_btn_arrow.svg");
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  pointer-events: none;
}
.p-top__Creaters {
  background: #fef0d5;
}
.p-top__Creaters .l-container {
  padding: 9.6rem 0 12rem;
  position: relative;
}
.p-top__Creaters-Chara {
  margin-top: -65rem;
  margin-bottom: -15rem;
  display: flex;
  justify-content: space-between;
}
.p-top__Creaters-Chara .-main {
  width: 51rem;
  transform: translateY(100%);
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  z-index: -1;
  transition-delay: 0.6s;
}
.p-top__Creaters-Chara .-left,
.p-top__Creaters-Chara .-right {
  padding-top: 46rem;
  width: 25.4rem;
}
.p-top__Creaters-Chara.is-active .-main {
  transform: translateY(0);
}
.p-top__Creaters-Heart {
  position: absolute;
  top: -38rem;
  right: -8rem;
  width: 36rem;
  height: 32.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("./../img/icon_creaters_heart.svg");
  background-size: cover;
}
.p-top__Creaters-Heart p {
  color: #222;
  text-align: center;
  font-size: 2.4rem;
  line-height: 4.4rem;
  letter-spacing: 0.08em;
}
.p-top__Creaters-Ttl {
  color: #e8380d;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  text-align: center;
  font-style: italic;
  font-weight: 600;
  font-size: 5.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 7.2rem;
}
.p-top__Creaters-List {
  display: flex;
  flex-wrap: wrap;
  gap: 4.2rem 4rem;
}
.p-top__Creaters-Item {
  max-width: 34rem;
  width: 32%;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
}
.p-top__Creaters-Item:nth-child(2), .p-top__Creaters-Item:nth-child(5) {
  transition-delay: 0.3s;
}
.p-top__Creaters-Item:nth-child(3), .p-top__Creaters-Item:last-child {
  transition-delay: 0.6s;
}
.p-top__Creaters-Item-Detail {
  padding: 2.6rem 4rem;
}
.p-top__Creaters-Item-Name {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 2.8rem;
}
.p-top__Creaters-Item-Category {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.p-top__Creaters-Item-Category span {
  max-width: 12.3rem;
  width: 50%;
  display: inline-block;
  padding: 0.5rem;
  text-align: center;
  font-size: 1.2rem;
  border: 0.2rem solid #000;
}
.p-top__Creaters-Item-Category span.-liver {
  border-color: #f8b62d;
  background: #f8b62d;
}
.p-top__Creaters-Item-Type {
  background: #fef0d5;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.p-top__Creaters-Item-Txt {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 3.2rem;
  text-align: justify;
}
.p-top__Creaters-Item-Btn {
  width: 21.6rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0.2rem solid #222;
  background: #222;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin: 3.2rem auto 0;
  border-radius: 5rem;
  position: relative;
}
.p-top__Creaters-Item-Btn:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url("./../img/icon_creaters_btn_arrow.svg");
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
  pointer-events: none;
  transition: 0.6s;
}
.p-top__Creaters-Item-Btn:hover {
  background: #fff;
  color: #222;
  opacity: 1;
}
.p-top__Creaters-Item-Btn:hover:after {
  background-image: url("./../img/icon_creaters_btn_arrow_hover.svg");
}
.p-top__Creaters-Notfound {
  font-size: 1.6rem;
  text-align: center;
}
.p-top__Recruitment {
  background: url("./../img/bg_top_recruitment.png");
  background-color: #f8b62d;
  background-position: top center;
  background-size: contain;
}
.p-top__Recruitment .l-container {
  position: relative;
  padding: 4.1rem 0;
}
.p-top__Recruitment .l-container:before {
  position: absolute;
  width: 13.9rem;
  height: 22.62rem;
  content: "";
  left: 0;
  bottom: 0;
  background: url(./../img/icon_top_recruitment_chara.svg);
  background-size: cover;
}
.p-top__Recruitment-Ttl {
  text-align: center;
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}
.p-top__Recruitment-Ttl span {
  padding-left: 2.6rem;
  position: relative;
}
.p-top__Recruitment-Ttl span:before {
  position: absolute;
  width: 7.1rem;
  height: 6.3rem;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -6rem;
  background: url("./../img/icon_top_recruitment_ttl.svg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.p-top__Recruitment-Txt {
  font-size: 1.6rem;
  color: #fff;
  line-height: 3.2rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-top__Recruitment-Btn {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3rem;
  animation: scaleAnimation 2s infinite ease-in-out;
}
.p-top__Recruitment-Btn span {
  width: 23.6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #222;
  border: 0.2rem solid #222;
  border-radius: 5rem;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  z-index: 10;
  transition: 0.6s;
}
.p-top__Recruitment-Btn:before {
  position: absolute;
  width: 17.3rem;
  height: 17.3rem;
  content: "";
  background: url(./../img/icon_explosion.svg);
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  pointer-events: none;
  z-index: -10;
}
.p-top__Recruitment-Btn:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url(./../img/icon_btn_arrow.svg);
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  pointer-events: none;
  transition: 0.6s;
}
.p-top__Recruitment-Btn:hover {
  opacity: 1;
}
.p-top__Recruitment-Btn:hover span {
  background: #fff;
  color: #222;
  opacity: 1;
}
.p-top__Recruitment-Btn:hover:after {
  background-image: url("./../img/icon_creaters_btn_arrow_hover.svg");
}
.p-top__About {
  padding: 9.3rem 0 10rem;
}
.p-top__About-Ttl {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 5.5rem;
}
.p-top__About-Ttl ruby {
  ruby-align: center;
}
.p-top__About-Ttl rt {
  font-size: 1.2rem;
}
.p-top__About-Flex {
  display: flex;
  justify-content: space-between;
}
.p-top__About-Thum {
  max-width: 50.6rem;
  width: 48%;
}
.p-top__About-Detail {
  max-width: 51.7rem;
  width: 48%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.p-top__About-Detail-Txt {
  font-size: 1.6rem;
  line-height: 4rem;
  letter-spacing: 0.06em;
}
.p-top__About-Detail-President {
  text-align: right;
  font-size: 2.2rem;
}
.p-top__About-Detail-President span {
  padding-right: 2rem;
  font-size: 1.6rem;
}
.p-top__Company {
  margin-bottom: 11rem;
}
.p-top__Company-Ttl {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 5.5rem;
}
.p-top__Company-Wrap {
  max-width: 70rem;
  width: 100%;
  margin: auto;
}
.p-top__Company-Table {
  width: 100%;
}
.p-top__Company-Table tr {
  border-top: 0.1rem solid #d1dae1;
}
.p-top__Company-Table tr:last-of-type {
  border-bottom: 0.1rem solid #d1dae1;
}
.p-top__Company-Table th {
  width: 16rem;
  font-size: 1.6rem;
  line-height: 8rem;
  letter-spacing: 0.06em;
}
.p-top__Company-Table td {
  width: calc(100% - 16rem);
  font-size: 1.6rem;
  line-height: 8rem;
  letter-spacing: 0.06em;
}
.p-top__News {
  margin-bottom: 11rem;
}
.p-top__News-Ttl {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 5.5rem;
}
.p-top__News-Wrap {
  max-width: 70rem;
  width: 100%;
  margin: 0 auto 6rem;
}
.p-top__News-Table {
  width: 100%;
}
.p-top__News-Table tr {
  border-top: 0.1rem solid #d1dae1;
}
.p-top__News-Table tr:last-of-type {
  border-bottom: 0.1rem solid #d1dae1;
}
.p-top__News-Table th {
  width: 16rem;
  font-size: 1.6rem;
  line-height: 8rem;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  color: #e8380d;
}
.p-top__News-Table td {
  width: calc(100% - 16rem);
  font-size: 1.6rem;
  line-height: 8rem;
  letter-spacing: 0.06em;
}
.p-top__News-Btn {
  width: 23.6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #222;
  color: #fff;
  border: 0.2rem solid #222;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: 5rem auto 0;
  border-radius: 5rem;
  position: relative;
  transition: 0.6s;
}
.p-top__News-Btn:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url(./../img/icon_creaters_btn_arrow.svg);
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  pointer-events: none;
  transform: 0.6s;
}
.p-top__News-Btn:hover {
  background: #fff;
  color: #222;
  opacity: 1;
}
.p-top__News-Btn:hover:after {
  background-image: url("./../img/icon_creaters_btn_arrow_hover.svg");
}

@media screen and (max-width: 767px) {
  @keyframes scaleAnimation {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }
  .p-top__Mv {
    background: url("./../img/bg_top_mv_sp.png");
    background-size: contain;
  }
  .p-top__Mv .l-container {
    position: relative;
    min-height: 125rem;
    height: auto;
  }
  .p-top__Mv-Ttl {
    position: absolute;
    font-size: 4.7rem;
    color: #fff;
    writing-mode: vertical-rl;
    height: auto;
    text-align: center;
    letter-spacing: 0.27em;
    transform: translate(0, 0);
  }
  .p-top__Mv-Ttl.-ttl01 {
    top: 30.8rem;
    left: auto;
    right: 10.7rem;
  }
  .p-top__Mv-Ttl.-ttl02 {
    top: 68.3rem;
    left: 10.7rem;
  }
  .p-top__Mv-Thum {
    position: absolute;
  }
  .p-top__Mv-Thum.-thum01 {
    width: 27.4rem;
    height: 43.3rem;
    top: 16rem;
    left: 4rem;
    transform: translateY(0);
  }
  .p-top__Mv-Thum.-thum01 img {
    width: 32rem;
  }
  .p-top__Mv-Thum.-thum01:before {
    position: absolute;
    content: "";
    width: 21.3rem;
    height: 6.3rem;
    top: -3.4rem;
    right: -9rem;
    background: url("./../img/fuki_top_mv_01.svg");
    background-size: cover;
    transition: 0.3s;
    transform: scale(0);
  }
  .p-top__Mv-Thum.-thum01.is-active:before {
    transform: scale(1);
  }
  .p-top__Mv-Thum.-thum02 {
    width: 27.4rem;
    height: 43.3rem;
    top: 60.6rem;
    right: 4rem;
    transform: translateY(0);
  }
  .p-top__Mv-Thum.-thum02 img {
    width: 33.6rem;
  }
  .p-top__Mv-Thum.-thum02:before {
    position: absolute;
    content: "";
    width: 21.3rem;
    height: 6.3rem;
    top: -3.4rem;
    left: -11.5rem;
    background: url(./../img/fuki_top_mv_02.svg);
    background-size: cover;
    transition: 0.3s;
    transition-delay: 0.3s;
    transform: scale(0);
  }
  .p-top__Mv-Thum.-thum02.is-active:before {
    transform: scale(1);
  }
  .p-top__Mv-Btns {
    bottom: -6.3rem;
    right: auto;
    left: 50%;
    gap: 4.2rem;
    transform: translateX(-50%);
  }
  .p-top__Mv-Btns a {
    display: block;
    width: 21.4rem;
  }
  .p-top__Mv-Btns a:nth-of-type(2) {
    width: 19rem;
  }
  .p-top__Catch {
    padding: 20rem 0 10.8rem;
  }
  .p-top__Catch-Ttl {
    max-width: 52.5rem;
    margin-bottom: 8.3rem;
  }
  .p-top__Catch-Txt {
    letter-spacing: 0.05em;
    line-height: 8.2rem;
    font-size: 3.4rem;
  }
  .p-top__Strongpoint {
    margin-bottom: 0;
  }
  .p-top__Strongpoint .swiper-wrapper {
    transition-timing-function: linear;
  }
  .p-top__Strongpoint .swiper-wrapper .swiper-slide {
    width: 126.2rem;
    padding-right: 5rem;
    padding-bottom: 5rem;
  }
  .p-top__Step {
    margin-bottom: 5rem;
  }
  .p-top__Step-Txt {
    font-size: 2.8rem;
    text-align: center;
    line-height: 5rem;
    letter-spacing: 0.05em;
    margin-bottom: 19rem;
    transform: translateX(0);
  }
  .p-top__Step-List {
    flex-flow: column;
    padding-top: 29.3rem;
  }
  .p-top__Step-List:before {
    width: 75rem;
    height: 14.8rem;
    bottom: auto;
    top: 0;
    left: -4rem;
    background: url("./../img/bar_top_step_sp.svg");
    background-size: cover;
  }
  .p-top__Step-Grow {
    justify-content: center;
    margin-top: -16rem;
  }
  .p-top__Step-Grow-Icon {
    width: 23.3rem;
  }
  .p-top__Step-Item {
    max-width: 48.7rem;
    width: 100%;
    margin: 0 auto 15rem;
  }
  .p-top__Step-Item:before {
    position: absolute;
    content: "";
    width: 18.4rem;
    height: 19.5rem;
    top: -9.2rem;
    right: -4rem;
    background-size: cover;
  }
  .p-top__Step-Item-Box {
    padding: 15.5rem 3rem 7rem;
    position: relative;
  }
  .p-top__Step-Item-No {
    width: 6.2rem;
    top: -9rem;
  }
  .p-top__Step-Item-Ttl {
    font-size: 4.2rem;
    margin-bottom: 5rem;
  }
  .p-top__Step-Item-Detail {
    margin-bottom: 2.8rem;
  }
  .p-top__Step-Item-Detail span {
    max-width: 35rem;
    font-size: 3rem;
    padding: 1.2rem 0;
  }
  .p-top__Step-Item-Aco {
    position: absolute;
    bottom: -3.7rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7.4rem;
  }
  .p-top__Step-Item-Aco.-op {
    transform: translateX(-50%) rotate(180deg);
  }
  .p-top__Step-Item-Txt {
    font-size: 2.4rem;
    line-height: 4.8rem;
  }
  .p-top__Step-Item ul li {
    font-size: 2.4rem;
    line-height: 4.8rem;
  }
  .p-top__Step-Item:nth-child(1) .p-top__Step-Item-Box {
    transition-delay: 0.6s;
  }
  .p-top__Step-Item:nth-child(2) {
    transform: translateY(0);
  }
  .p-top__Step-Item:nth-child(2) .p-top__Step-Item-No {
    transition-delay: 0s;
  }
  .p-top__Step-Item:nth-child(2) .p-top__Step-Item-Box {
    transition-delay: 0.6s;
  }
  .p-top__Step-Item:nth-child(3) {
    transform: translateY(0);
  }
  .p-top__Step-Item:nth-child(3) .p-top__Step-Item-No {
    transition-delay: 0s;
  }
  .p-top__Step-Item:nth-child(3) .p-top__Step-Item-Box {
    transition-delay: 0.6s;
  }
  .p-top__Step-Item-Sphide {
    display: none;
  }
  .p-top__Service {
    padding: 12.3rem 0 47rem;
  }
  .p-top__Service:before {
    width: 75rem;
    height: 461.6rem;
    background: url("./../img/bg_top_service_sp.svg");
    background-size: cover;
  }
  .p-top__Service-Ttl {
    font-size: 5rem;
    margin-bottom: 7.2rem;
  }
  .p-top__Service-Ttl rt {
    font-size: 2rem;
  }
  .p-top__Service-Catch {
    line-height: 6rem;
    font-size: 3rem;
    margin-bottom: 8.2rem;
  }
  .p-top__Service-List {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    flex-wrap: wrap;
  }
  .p-top__Service-Item {
    width: 100%;
    padding: 7.5rem 0;
    border-right: none;
    border-bottom: 0.2rem solid #f8b62d;
  }
  .p-top__Service-Item:after {
    display: none;
  }
  .p-top__Service-Item:before {
    display: none;
  }
  .p-top__Service-Item:nth-child(1) {
    position: relative;
  }
  .p-top__Service-Item:nth-child(2) {
    transition-delay: 0s;
  }
  .p-top__Service-Item:nth-child(3) {
    transition-delay: 0s;
  }
  .p-top__Service-Item:nth-child(5) {
    transition-delay: 0s;
  }
  .p-top__Service-Item:nth-child(n+4) {
    padding: 7.5rem 0;
    border-bottom: 0.2rem solid #f8b62d;
  }
  .p-top__Service-Item:last-child {
    transition-delay: 0s;
    border-bottom: none;
  }
  .p-top__Service-Item-Ttl {
    font-size: 4.2rem;
    margin-bottom: 4rem;
    min-height: auto;
  }
  .p-top__Service-Item-Ttl br {
    display: none;
  }
  .p-top__Service-Item-Flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
  }
  .p-top__Service-Item-Thum {
    width: 24.4rem;
    margin: 0;
  }
  .p-top__Service-Item-Txt {
    font-size: 2.4rem;
    line-height: 4.8rem;
    width: 36.5rem;
    margin: 0;
  }
  .p-top__Service-Item-Dl {
    width: 100%;
    margin: 0 auto;
  }
  .p-top__Service-Item-Dt {
    font-size: 2rem;
    padding: 0.5rem;
    margin-bottom: 3.5rem;
  }
  .p-top__Service-Item-Dd {
    font-size: 2rem;
  }
  .p-top__Service-Btn {
    margin-top: 0;
  }
  .p-top__Service-Btn a {
    width: 67rem;
    height: 10rem;
    font-size: 3.2rem;
  }
  .p-top__Service-Btn a:after {
    width: 4.6rem;
    height: 3.2rem;
    right: 5rem;
  }
  .p-top__Creaters .l-container {
    padding: 9.4rem 0;
  }
  .p-top__Creaters-Chara {
    margin-top: -46.6rem;
    margin-bottom: -8.5rem;
  }
  .p-top__Creaters-Chara .-main {
    width: 33.1rem;
  }
  .p-top__Creaters-Chara .-left,
  .p-top__Creaters-Chara .-right {
    padding-top: 32rem;
    width: 15.2rem;
  }
  .p-top__Creaters-Heart {
    display: none;
  }
  .p-top__Creaters-Ttl {
    font-size: 5rem;
    margin-bottom: 7rem;
  }
  .p-top__Creaters-Txt {
    text-align: center;
    font-size: 3rem;
    line-height: 6rem;
    letter-spacing: 0.08em;
    margin-bottom: 8rem;
  }
  .p-top__Creaters-List {
    flex-flow: column;
    gap: 6rem 0;
  }
  .p-top__Creaters-Item {
    max-width: 100%;
    width: 100%;
    position: relative;
    border-radius: 5rem;
  }
  .p-top__Creaters-Item:nth-child(2), .p-top__Creaters-Item:nth-child(5) {
    transition-delay: 0s;
  }
  .p-top__Creaters-Item:nth-child(3), .p-top__Creaters-Item:last-child {
    transition-delay: 0s;
  }
  .p-top__Creaters-Item-Detail {
    padding: 2.6rem 4rem 4.6rem;
  }
  .p-top__Creaters-Item-Name {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .p-top__Creaters-Item-Category {
    justify-content: space-between;
    margin-bottom: 3.2rem;
  }
  .p-top__Creaters-Item-Category span {
    max-width: 29.5rem;
    width: 49%;
    padding: 1rem;
    font-size: 2.4rem;
  }
  .p-top__Creaters-Item-Type {
    padding: 1rem 2rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .p-top__Creaters-Item-Txt {
    font-size: 2.8rem;
    line-height: 4.8rem;
    margin-bottom: 0;
  }
  .p-top__Creaters-Item-Btn {
    display: none;
  }
  .p-top__Creaters-Notfound {
    font-size: 3.2rem;
  }
  .p-top__Recruitment {
    background: url("./../img/bg_top_recruitment_sp.svg");
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .p-top__Recruitment .l-container {
    position: relative;
    padding: 4.1rem 0 13.7rem;
  }
  .p-top__Recruitment .l-container:before {
    display: none;
  }
  .p-top__Recruitment-Ttl {
    font-size: 4.9rem;
    margin-bottom: 5.8rem;
  }
  .p-top__Recruitment-Ttl span {
    padding-top: 11rem;
    padding-left: 0;
    position: relative;
    display: inline-block;
  }
  .p-top__Recruitment-Ttl span:before {
    position: absolute;
    width: 8.59rem;
    height: 7.7rem;
    content: "";
    top: 0;
    transform: translate(-50%, 0);
    left: 50%;
  }
  .p-top__Recruitment-Txt {
    font-size: 2.4rem;
    line-height: 5rem;
    letter-spacing: 0.08em;
    margin-bottom: 8rem;
  }
  .p-top__Recruitment-Btn {
    position: relative;
    display: inline-block;
    top: 50%;
    right: 0;
    margin-top: -3rem;
    animation: scaleAnimation 2s infinite ease-in-out;
  }
  .p-top__Recruitment-Btn span {
    width: 67rem;
    height: 10rem;
    border-radius: 5rem;
    font-size: 3.2rem;
    position: relative;
  }
  .p-top__Recruitment-Btn span:before {
    position: absolute;
    width: 14.38rem;
    height: 10.8rem;
    content: "";
    left: 6rem;
    bottom: 0;
    background: url(./../img/icon_top_recruitment_chara_sp.svg);
    background-size: cover;
  }
  .p-top__Recruitment-Btn:before {
    width: 18.8rem;
    height: 18.8rem;
    background: url(./../img/icon_explosio_sp.svg);
    background-size: cover;
    transform: translate(50%, -50%);
    right: 50%;
  }
  .p-top__Recruitment-Btn:after {
    width: 4.6rem;
    height: 3.2rem;
    right: 5rem;
    z-index: 10;
  }
  .p-top__About {
    padding: 8.2rem 0 11rem;
  }
  .p-top__About-Ttl {
    margin-bottom: 7rem;
  }
  .p-top__About-Ttl rt {
    font-size: 2rem;
  }
  .p-top__About-Flex {
    flex-flow: column-reverse;
    gap: 6.6rem;
  }
  .p-top__About-Thum {
    max-width: 38rem;
    width: 100%;
    margin: auto;
  }
  .p-top__About-Detail {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: 6.6rem;
  }
  .p-top__About-Detail-Txt {
    font-size: 2.4rem;
    line-height: 6rem;
    text-align: center;
    white-space: nowrap;
  }
  .p-top__About-Detail-President {
    text-align: center;
    font-size: 3rem;
  }
  .p-top__About-Detail-President span {
    font-size: 2rem;
  }
  .p-top__Company {
    margin-bottom: 11rem;
  }
  .p-top__Company-Ttl {
    margin-bottom: 8rem;
  }
  .p-top__Company-Table {
    width: 100%;
  }
  .p-top__Company-Table th {
    padding: 2rem 0;
    width: 20rem;
    font-size: 2.4rem;
    line-height: 4.8rem;
    vertical-align: top;
  }
  .p-top__Company-Table td {
    padding: 2rem 0;
    width: calc(100% - 20rem);
    font-size: 2.4rem;
    line-height: 4.8rem;
  }
  .p-top__News {
    margin-bottom: 11rem;
  }
  .p-top__News-Ttl {
    margin-bottom: 8rem;
  }
  .p-top__News-Table {
    width: 100%;
  }
  .p-top__News-Table tr {
    border-top: 0.1rem solid #d1dae1;
  }
  .p-top__News-Table tr:last-of-type {
    border-bottom: 0.1rem solid #d1dae1;
  }
  .p-top__News-Table th {
    padding-top: 3rem;
    width: 100%;
    display: block;
    font-size: 2.4rem;
    line-height: 2.88rem;
  }
  .p-top__News-Table td {
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%;
    display: block;
    font-size: 2.4rem;
    line-height: 2.88rem;
  }
  .p-top__News-Btn {
    width: 67rem;
    height: 10rem;
    border-radius: 5rem;
    font-size: 3.2rem;
  }
  .p-top__News-Btn:after {
    width: 4.6rem;
    height: 3.2rem;
    right: 5rem;
    z-index: 10;
  }
}
.p-work__Mv {
  padding: 15.5rem 0 8rem;
  background: url("./../img/bg_work_mv.svg");
  background-size: 136.6rem;
  background-repeat: no-repeat;
  background-position: top center;
}
.p-work__Mv-Box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 136.6rem;
  height: 41.5rem;
  overflow: hidden;
}
.p-work__Mv-Box .-chara {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  width: 9.6rem;
  transform: translate(-50%, 100%);
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.p-work__Mv-Box .-chara.is-active {
  transform: translate(-50%, 0);
}
.p-work__Mv-Ttl {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 30rem;
}
.p-work__Mv-Ttl ruby {
  ruby-align: center;
}
.p-work__Mv-Ttl rt {
  font-size: 1.2rem;
}
.p-work__Mv-Txt {
  width: 76.8rem;
  margin: auto;
  text-align: center;
  font-size: 2rem;
  line-height: 3.5rem;
}
.p-work__Category {
  margin-bottom: 5.5rem;
}
.p-work__Category-Ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.p-work__Category-List {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-work__Category-Item a {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-weight: bold;
  border: 0.2rem solid #E0E0E0;
  border-radius: 5rem;
}
.p-work__Category-Flex {
  display: flex;
  align-items: center;
}
.p-work__Category-Flex .p-work__Category-Ttl {
  margin-bottom: 0;
}
.p-work__Category-Flex .p-work__Category-Ttl a {
  padding-left: 7rem;
  position: relative;
}
.p-work__Category-Flex .p-work__Category-Ttl a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6rem;
  height: 6rem;
  background-color: #222;
  background-image: url("./../img/icon_arrow_back.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.2rem;
  border-radius: 50rem;
}
.p-work__Category-Active {
  line-height: 1;
  font-size: 3rem;
  font-weight: bold;
  padding-left: 2rem;
  margin-left: 2rem;
  border-left: 0.2rem solid #E0E0E0;
}
.p-work__Category-Active span {
  font-size: 2.4rem;
  padding-right: 0.8rem;
}
.p-work__Achievement {
  margin-bottom: 5.6rem;
}
.p-work__Achievement-List {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.p-work__Achievement-Item {
  width: 30%;
  max-width: 36.8rem;
  border: 0.1rem solid #E0E0E0;
  border-radius: 5rem;
  overflow: hidden;
}
.p-work__Achievement-Item-Thum img {
  max-width: none;
  width: 100%;
}
.p-work__Achievement-Item-Detail {
  padding: 2.4rem;
}
.p-work__Achievement-Item-Category {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
  margin-bottom: 2rem;
}
.p-work__Achievement-Item-Category li a {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-weight: bold;
  border: 0.2rem solid #E0E0E0;
  border-radius: 5rem;
}
.p-work__Achievement-Item-Ttl {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 3.5rem;
}
.p-work__Achievement-Item-Client {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.p-work__Achievement-Item-Sns {
  display: flex;
  margin-bottom: 1.5rem;
}
.p-work__Achievement-Item-Sns dt {
  font-size: 1.4rem;
}
.p-work__Achievement-Item-Sns dd {
  font-size: 1.4rem;
}
.p-work__Achievement-Item-Sns dd span:after {
  content: ",";
}
.p-work__Achievement-Item-Sns dd span:last-of-type:after {
  display: none;
}
.p-work__Achievement-Item-Measures {
  display: flex;
  flex-wrap: wrap;
}
.p-work__Achievement-Item-Measures li {
  font-size: 1.4rem;
}
.p-work__Achievement-Item-Measures li:after {
  content: "／";
}
.p-work__Achievement-Item-Measures li:last-of-type:after {
  display: none;
}

.p-worksingle {
  padding-top: 15.2rem;
}
.p-worksingle__Mv-Ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.p-worksingle__Mv-Ttl ruby {
  ruby-align: center;
}
.p-worksingle__Mv-Ttl rt {
  font-size: 1.2rem;
}
.p-worksingle__Mv-Client {
  font-size: 4.6rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.p-worksingle__Mv-List {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
  margin-bottom: 5.7rem;
}
.p-worksingle__Mv-List li a {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-weight: bold;
  border: 0.2rem solid #E0E0E0;
  border-radius: 5rem;
}
.p-worksingle__Mv-Thum {
  margin-bottom: 6rem;
}
.p-worksingle__Detail {
  max-width: 76.8rem;
  width: 100%;
  margin: auto;
}
.p-worksingle__Detail-Ttl {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 5.4rem;
  margin-bottom: 6rem;
}
.p-worksingle__Detail-Comment {
  font-size: 2.4rem;
  line-height: 4.2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.p-worksingle__Detail-Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.p-worksingle__Detail-Box {
  max-width: 38.4rem;
  width: 49%;
  background: #F1F1F1;
  padding: 6.4rem 4rem;
}
.p-worksingle__Detail-Box dt {
  font-size: 2rem;
  font-weight: bold;
  line-height: 4.2rem;
}
.p-worksingle__Detail-Box dd {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.p-worksingle__Detail-Box dd span:after {
  content: "／";
}
.p-worksingle__Detail-Box dd span:last-of-type:after {
  display: none;
}
.p-worksingle__Detail-Maintxt {
  margin-bottom: 9rem;
}
.p-worksingle__Detail-Maintxt h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.p-worksingle__Detail-Maintxt h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.p-worksingle__Detail-Maintxt p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3.4rem;
}
.p-worksingle__Detail-Btn {
  text-align: center;
  margin-top: 8rem;
}
.p-worksingle__Detail-Btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53.3rem;
  height: 10rem;
  background: #222;
  color: #fff;
  border-radius: 10rem;
  font-size: 2.6rem;
  text-align: center;
  position: relative;
  padding-left: 8.6rem;
}
.p-worksingle__Detail-Btn a ruby {
  ruby-align: center;
}
.p-worksingle__Detail-Btn a rt {
  font-size: 1.2rem;
}
.p-worksingle__Detail-Btn a:before {
  position: absolute;
  width: 6.7rem;
  height: 10.8rem;
  content: "";
  background: url("./../img/icon_top_srvice_btn.svg");
  background-size: cover;
  bottom: 0;
  left: 9.5rem;
  pointer-events: none;
}
.p-worksingle__Detail-Btn a:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url("./../img/icon_btn_arrow.svg");
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-work__Mv {
    padding: 22rem 0 11.2rem;
    background: url("./../img/bg_work_mv_sp.svg");
    background-size: 75rem;
    background-repeat: no-repeat;
    background-position: top center;
  }
  .p-work__Mv-Box {
    width: 75rem;
    height: 53rem;
  }
  .p-work__Mv-Box .-chara {
    bottom: -1rem;
    width: 9.6rem;
  }
  .p-work__Mv-Ttl {
    font-size: 5.6rem;
    margin-bottom: 30rem;
  }
  .p-work__Mv-Ttl rt {
    font-size: 2.4rem;
  }
  .p-work__Mv-Txt {
    width: 67rem;
    margin: auto;
    text-align: center;
    font-size: 3.2rem;
    line-height: 5.6rem;
  }
  .p-work__Category {
    margin-bottom: 8rem;
  }
  .p-work__Category-Ttl {
    font-size: 4.8rem;
    margin-bottom: 2.5rem;
  }
  .p-work__Category-List {
    gap: 2rem;
  }
  .p-work__Category-Item a {
    display: inline-block;
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
  .p-work__Category-Flex {
    flex-flow: column;
    gap: 6rem;
    align-items: baseline;
  }
  .p-work__Category-Flex .p-work__Category-Ttl {
    margin-bottom: 0;
  }
  .p-work__Category-Flex .p-work__Category-Ttl a {
    padding-left: 11.4rem;
    position: relative;
  }
  .p-work__Category-Flex .p-work__Category-Ttl a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 9.6rem;
    height: 9.6rem;
    background-size: 4rem;
  }
  .p-work__Category-Active {
    font-size: 4.2rem;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
  .p-work__Category-Active span {
    font-size: 2.8rem;
  }
  .p-work__Achievement {
    margin-bottom: 5.6rem;
  }
  .p-work__Achievement-List {
    flex-flow: column;
    gap: 4rem;
  }
  .p-work__Achievement-Item {
    width: 100%;
    max-width: 100%;
  }
  .p-work__Achievement-Item-Detail {
    padding: 4rem;
  }
  .p-work__Achievement-Item-Category {
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .p-work__Achievement-Item-Category li a {
    display: inline-block;
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
  .p-work__Achievement-Item-Ttl {
    font-size: 3.2rem;
    line-height: 4.8rem;
    margin-bottom: 4rem;
  }
  .p-work__Achievement-Item-Client {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
  .p-work__Achievement-Item-Sns {
    margin-bottom: 3rem;
  }
  .p-work__Achievement-Item-Sns dt {
    font-size: 2.8rem;
  }
  .p-work__Achievement-Item-Sns dd {
    font-size: 2.8rem;
  }
  .p-work__Achievement-Item-Measures li {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
  .p-worksingle {
    padding-top: 23.2rem;
    margin-bottom: 33.8rem;
  }
  .p-worksingle__Mv-Ttl {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .p-worksingle__Mv-Ttl rt {
    font-size: 2.4rem;
  }
  .p-worksingle__Mv-Client {
    font-size: 5.6rem;
    margin-bottom: 3.4rem;
  }
  .p-worksingle__Mv-List {
    gap: 2rem;
    margin-bottom: 12rem;
  }
  .p-worksingle__Mv-List li a {
    display: inline-block;
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
  .p-worksingle__Mv-Thum {
    margin-bottom: 11.2rem;
  }
  .p-worksingle__Detail {
    max-width: 67rem;
    width: 100%;
    margin: auto;
  }
  .p-worksingle__Detail-Ttl {
    font-size: 5.6rem;
    line-height: 8.4rem;
    margin-bottom: 12rem;
  }
  .p-worksingle__Detail-Comment {
    font-size: 4rem;
    line-height: 6rem;
    margin-bottom: 4.8rem;
  }
  .p-worksingle__Detail-Flex {
    flex-flow: column;
    gap: 0.1rem;
    margin-bottom: 12rem;
  }
  .p-worksingle__Detail-Box {
    max-width: 100%;
    width: 100%;
    padding: 6.8rem 4rem;
  }
  .p-worksingle__Detail-Box dt {
    font-size: 3.6rem;
    line-height: 8.4rem;
  }
  .p-worksingle__Detail-Box dd {
    font-size: 3.2rem;
    line-height: 5.6rem;
  }
  .p-worksingle__Detail-Maintxt {
    margin-bottom: 9rem;
  }
  .p-worksingle__Detail-Maintxt h3 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 5rem;
  }
  .p-worksingle__Detail-Maintxt h4 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  .p-worksingle__Detail-Maintxt p {
    font-size: 3.2rem;
    line-height: 5.6rem;
    margin-bottom: 6.8rem;
  }
  .p-worksingle__Detail-Btn {
    margin-top: 12.8rem;
  }
  .p-worksingle__Detail-Btn a {
    width: 67rem;
    height: 13.6rem;
    font-size: 3.2rem;
    text-align: center;
    position: relative;
    padding-left: 8.6rem;
  }
  .p-worksingle__Detail-Btn a rt {
    font-size: 2.4rem;
  }
  .p-worksingle__Detail-Btn a:before {
    width: 8.2rem;
    height: 13.6rem;
    left: 14rem;
  }
  .p-worksingle__Detail-Btn a:after {
    width: 4rem;
    height: 2.8rem;
    right: 4rem;
  }
}
.p-creaters {
  background: linear-gradient(180deg, #fff 0%, #fff 44.6rem, #FEF0D5 44.6rem, #FEF0D5 100%);
  padding-bottom: 5.5rem;
}
.p-creaters__Mv {
  padding: 15.5rem 0 8rem;
}
.p-creaters__Mv-Ttl {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 3.8rem;
}
.p-creaters__Mv-Ttl ruby {
  ruby-align: center;
}
.p-creaters__Mv-Ttl rt {
  font-size: 1.2rem;
}
.p-creaters__Mv-Chara {
  width: 40rem;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.p-creaters__Mv-Chara .-main {
  width: 17.4rem;
}
.p-creaters__Mv-Chara .-left,
.p-creaters__Mv-Chara .-right {
  padding-top: 15rem;
  width: 9.2rem;
}
.p-creaters__Mv-Txt {
  width: 76.8rem;
  margin: auto;
  text-align: center;
  font-size: 2rem;
  line-height: 3.5rem;
}
.p-creaters__Category {
  margin-bottom: 5.5rem;
}
.p-creaters__Category-Ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.p-creaters__Category-List {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-creaters__Category-Item a {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-weight: bold;
  border: 0.2rem solid #E0E0E0;
  border-radius: 5rem;
  background: #fff;
}
.p-creaters__Achievement {
  margin-bottom: 5.6rem;
}
.p-creaters__Achievement-List {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.p-creaters__Achievement-Item {
  width: 30%;
  max-width: 36.8rem;
  border: 0.1rem solid #E0E0E0;
  border-radius: 5rem;
}
.p-creaters__Achievement-Item-Detail {
  padding: 2.4rem;
}
.p-creaters__Achievement-Item-Category {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
  margin-bottom: 2rem;
}
.p-creaters__Achievement-Item-Category li a {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-weight: bold;
  border: 0.2rem solid #E0E0E0;
  border-radius: 5rem;
}
.p-creaters__Achievement-Item-Ttl {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 3.5rem;
}
.p-creaters__Achievement-Item-Client {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.p-creaters__Achievement-Item-Sns {
  display: flex;
  margin-bottom: 1.5rem;
}
.p-creaters__Achievement-Item-Sns dt {
  font-size: 1.4rem;
}
.p-creaters__Achievement-Item-Sns dd {
  font-size: 1.4rem;
}
.p-creaters__Achievement-Item-Sns dd span:after {
  content: ",";
}
.p-creaters__Achievement-Item-Sns dd span:last-of-type:after {
  display: none;
}
.p-creaters__Achievement-Item-Measures {
  display: flex;
  flex-wrap: wrap;
}
.p-creaters__Achievement-Item-Measures li {
  font-size: 1.4rem;
}
.p-creaters__Achievement-Item-Measures li:after {
  content: "／";
}
.p-creaters__Achievement-Item-Measures li:last-of-type:after {
  display: none;
}

.p-createrssingle {
  padding-top: 15.2rem;
}
.p-createrssingle__Mv-Ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.p-createrssingle__Mv-Ttl ruby {
  ruby-align: center;
}
.p-createrssingle__Mv-Ttl rt {
  font-size: 1.2rem;
}
.p-createrssingle__Mv-Client {
  font-size: 4.6rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.p-createrssingle__Mv-List {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
  margin-bottom: 5.7rem;
}
.p-createrssingle__Mv-List li a {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-weight: bold;
  border: 0.2rem solid #E0E0E0;
  border-radius: 5rem;
}
.p-createrssingle__Mv-Thum {
  margin-bottom: 6rem;
  overflow: hidden;
}
.p-createrssingle__Mv-Thum .slider {
  margin-bottom: 2.5rem;
}
.p-createrssingle__Mv-Thum .slider img {
  max-width: none;
  width: 100%;
  object-fit: cover;
}
.p-createrssingle__Mv-Thum .slider-thumbnail .swiper-wrapper {
  display: flex;
  gap: 1.5rem;
}
.p-createrssingle__Mv-Thum .slider-thumbnail .swiper-slide {
  width: calc(14.2857142857% - 1.3rem);
  border-radius: 1rem;
  overflow: hidden;
  border: 0.2rem solid transparent;
}
.p-createrssingle__Mv-Thum .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  border: 0.2rem solid #222;
}
.p-createrssingle__Mv-Thum .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.p-createrssingle__Detail {
  max-width: 76.8rem;
  width: 100%;
  margin: auto;
}
.p-createrssingle__Detail-Comment {
  font-size: 3.6rem;
  line-height: 5.4rem;
  font-weight: bold;
  margin-bottom: 6rem;
}
.p-createrssingle__Detail-Acount {
  margin-bottom: 5.5rem;
}
.p-createrssingle__Detail-Acount dt {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.p-createrssingle__Detail-Acount dd ul {
  display: flex;
  gap: 4rem;
}
.p-createrssingle__Detail-Acount dd ul li {
  width: 2.8rem;
}
.p-createrssingle__Detail-Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.p-createrssingle__Detail-Box {
  max-width: 38.4rem;
  width: 49%;
  background: #F1F1F1;
  padding: 6.4rem 4rem;
}
.p-createrssingle__Detail-Box dt {
  font-size: 2rem;
  font-weight: bold;
  line-height: 4.2rem;
}
.p-createrssingle__Detail-Box dd {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.p-createrssingle__Detail-Box dd span:after {
  content: "／";
}
.p-createrssingle__Detail-Box dd span:last-of-type:after {
  display: none;
}
.p-createrssingle__Detail-Maintxt {
  margin-bottom: 9rem;
}
.p-createrssingle__Detail-Maintxt h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.p-createrssingle__Detail-Maintxt h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.p-createrssingle__Detail-Maintxt p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3.4rem;
}
.p-createrssingle__Detail-Btn {
  text-align: center;
  margin-top: 8rem;
}
.p-createrssingle__Detail-Btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53.3rem;
  height: 10rem;
  background: #222;
  color: #fff;
  border-radius: 10rem;
  font-size: 2.6rem;
  text-align: center;
  position: relative;
  padding-left: 8.6rem;
}
.p-createrssingle__Detail-Btn a ruby {
  ruby-align: center;
}
.p-createrssingle__Detail-Btn a rt {
  font-size: 1.2rem;
}
.p-createrssingle__Detail-Btn a:before {
  position: absolute;
  width: 6.7rem;
  height: 10.8rem;
  content: "";
  background: url("./../img/icon_top_srvice_btn.svg");
  background-size: cover;
  bottom: 0;
  left: 7rem;
  pointer-events: none;
}
.p-createrssingle__Detail-Btn a:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url("./../img/icon_btn_arrow.svg");
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-creaters {
    background: linear-gradient(180deg, #fff 0%, #fff 42rem, #FEF0D5 42rem, #FEF0D5 100%);
    margin-bottom: 33.6rem;
    padding-bottom: 10.8rem;
  }
  .p-creaters__Mv {
    padding: 15.5rem 0 8rem;
  }
  .p-creaters__Mv-Ttl {
    font-size: 5.6rem;
    margin-bottom: 3.6rem;
  }
  .p-creaters__Mv-Ttl rt {
    font-size: 2.4rem;
  }
  .p-creaters__Mv-Chara {
    width: 27.2rem;
  }
  .p-creaters__Mv-Chara .-main {
    width: 11.8rem;
  }
  .p-creaters__Mv-Chara .-left,
  .p-creaters__Mv-Chara .-right {
    padding-top: 11.5rem;
    width: 6.2rem;
  }
  .p-creaters__Mv-Txt {
    width: 67rem;
    font-size: 3.2rem;
    line-height: 5.6rem;
  }
  .p-creaters__Category {
    margin-bottom: 8rem;
  }
  .p-creaters__Category-Ttl {
    font-size: 4.8rem;
    margin-bottom: 2.5rem;
  }
  .p-creaters__Category-List {
    gap: 2rem;
  }
  .p-creaters__Category-Item a {
    display: inline-block;
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
  .p-createrssingle {
    padding-top: 26.4rem;
  }
  .p-createrssingle__Mv-Ttl {
    font-size: 4rem;
    margin-bottom: 3.4rem;
  }
  .p-createrssingle__Mv-Client {
    font-size: 5.6rem;
    margin-bottom: 3.4rem;
  }
  .p-createrssingle__Mv-List {
    gap: 2rem;
    margin-bottom: 11.2rem;
  }
  .p-createrssingle__Mv-List li a {
    display: inline-block;
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
  .p-createrssingle__Mv-Thum {
    margin-bottom: 11.2rem;
    overflow: hidden;
  }
  .p-createrssingle__Mv-Thum .slider {
    margin-bottom: 3.2rem;
  }
  .p-createrssingle__Mv-Thum .slider-thumbnail .swiper-wrapper {
    gap: 1.6rem;
  }
  .p-createrssingle__Mv-Thum .slider-thumbnail .swiper-slide {
    width: 20.8rem;
  }
  .p-createrssingle__Detail {
    max-width: 67rem;
  }
  .p-createrssingle__Detail-Comment {
    font-size: 5.6rem;
    line-height: 8.4rem;
    margin-bottom: 11.4rem;
  }
  .p-createrssingle__Detail-Acount {
    margin-bottom: 5.5rem;
  }
  .p-createrssingle__Detail-Acount dt {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 4.8rem;
  }
  .p-createrssingle__Detail-Acount dd ul {
    gap: 4.8rem;
  }
  .p-createrssingle__Detail-Acount dd ul li {
    width: 5.6rem;
  }
  .p-createrssingle__Detail-Flex {
    flex-flow: column;
    gap: 0.1rem;
    margin-bottom: 12rem;
  }
  .p-createrssingle__Detail-Box {
    max-width: 100%;
    width: 100%;
    padding: 6.8rem 4rem;
  }
  .p-createrssingle__Detail-Box dt {
    font-size: 3.6rem;
    line-height: 8.4rem;
  }
  .p-createrssingle__Detail-Box dd {
    font-size: 3.2rem;
    line-height: 5.6rem;
  }
  .p-createrssingle__Detail-Maintxt {
    margin-bottom: 9rem;
  }
  .p-createrssingle__Detail-Maintxt h3 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 5rem;
  }
  .p-createrssingle__Detail-Maintxt h4 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  .p-createrssingle__Detail-Maintxt p {
    font-size: 3.2rem;
    line-height: 5.6rem;
    margin-bottom: 6.8rem;
  }
  .p-createrssingle__Detail-Btn {
    margin-top: 12.8rem;
  }
  .p-createrssingle__Detail-Btn a {
    width: 67rem;
    height: 13.6rem;
    font-size: 3.2rem;
    text-align: center;
    position: relative;
    padding-left: 8.6rem;
  }
  .p-createrssingle__Detail-Btn a rt {
    font-size: 2.4rem;
  }
  .p-createrssingle__Detail-Btn a:before {
    width: 8.2rem;
    height: 13.6rem;
    left: 9rem;
  }
  .p-createrssingle__Detail-Btn a:after {
    width: 4rem;
    height: 2.8rem;
    right: 4rem;
  }
}
.p-privacy__Inner {
  max-width: 76.8rem;
  width: 100%;
  margin: auto;
}
.p-privacy__Ttl {
  font-size: 4.6rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 6.9rem;
  padding: 17.6rem 0 13rem;
}
.p-privacy__Lead {
  font-size: 1.6rem;
  margin-bottom: 6rem;
}
.p-privacy__Dl {
  margin-bottom: 6rem;
}
.p-privacy__Dt {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 4.2rem;
  margin-bottom: 2.5rem;
}
.p-privacy__Dd {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.p-privacy__Dd ul li {
  font-size: 1.6rem;
  line-height: 2.8rem;
}

@media screen and (max-width: 767px) {
  .p-privacy {
    margin-bottom: 32.6rem;
  }
  .p-privacy__Inner {
    max-width: 67rem;
  }
  .p-privacy__Ttl {
    font-size: 5.6rem;
    line-height: 8.4rem;
    padding: 27rem 0 13rem;
  }
  .p-privacy__Lead {
    font-size: 3.2rem;
    line-height: 5.6rem;
    margin-bottom: 12rem;
  }
  .p-privacy__Dl {
    margin-bottom: 12rem;
  }
  .p-privacy__Dt {
    font-size: 4rem;
    line-height: 6rem;
    margin-bottom: 6rem;
  }
  .p-privacy__Dd {
    font-size: 3.2rem;
    line-height: 5.6rem;
  }
  .p-privacy__Dd ul li {
    font-size: 3.2rem;
    line-height: 5.6rem;
  }
}
.p-contact__Inner {
  max-width: 76.8rem;
  width: 100%;
  margin: auto;
}
.p-contact__Ttl {
  font-size: 4.6rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 6.9rem;
  padding: 17.6rem 0 7.7rem;
}
.p-contact__Icon {
  width: 13rem;
  margin: 0 auto 7.2rem;
}
.p-contact__Txt {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.p-contact__Attention {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 5.5rem;
}
.p-contact__Wrap {
  max-width: 76.8rem;
  width: 100%;
}
.p-contact__Table {
  width: 100%;
  margin-bottom: 5.7rem;
}
.p-contact__Table tr {
  display: block;
  padding-bottom: 3.4rem;
}
.p-contact__Table th {
  font-weight: bold;
  font-size: 1.8rem;
  display: block;
  width: 100%;
  line-height: 1;
  margin-bottom: 2rem;
}
.p-contact__Table th span {
  color: #fff;
  background: #e8380d;
  line-height: 1;
  padding: 0.2rem 0.8rem;
  font-size: 1.2rem;
  margin-left: 0.8rem;
}
.p-contact__Table td {
  display: block;
  width: 100%;
}
.p-contact__Table td .fieldwrap {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.p-contact__Table td .fieldwrap .adBtn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0.2rem solid #222;
  background: #222;
  color: #fff;
  font-size: 1.3rem;
  padding: 1rem 2rem;
  letter-spacing: 0.1em;
  border-radius: 5rem;
}
.p-contact__Table td.-flex p {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.6rem;
}
.p-contact__Table td select {
  width: 22.2rem;
  border: 0.1rem solid #ccc;
  border-radius: 3.2rem;
  font-size: 1.6rem;
  height: 6.4rem;
  padding: 1rem;
  display: flex;
  align-items: center;
}
.p-contact__Table td input[type=text],
.p-contact__Table td input[type=email],
.p-contact__Table td input[type=tel] {
  width: 100%;
  border: 0.1rem solid #ccc;
  border-radius: 3.2rem;
  font-size: 1.6rem;
  height: 6.4rem;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
}
.p-contact__Table td textarea {
  width: 100%;
  border: 0.1rem solid #ccc;
  min-height: 32.4rem;
  border-radius: 3.2rem;
  font-size: 1.6rem;
  height: 6.4rem;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
}
.p-contact__Table td .-attention {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #6D6D6D;
}
.p-contact__Table td .wpcf7-list-item {
  font-size: 1.8rem;
  margin-right: 3rem;
  margin-bottom: 3rem;
}
.p-contact__Table td .wpcf7-list-item-label {
  padding-left: 3.2rem;
  position: relative;
}
.p-contact__Table td .wpcf7-list-item-label:before {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border: 0.2rem solid #ccc;
  content: "";
  left: 0;
  border-radius: 0.2rem;
}
.p-contact__Table td .wpcf7-list-item-label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.3rem;
  width: 0.6rem;
  height: 1.2rem;
  border-right: 0.2rem solid #e8380d;
  border-bottom: 0.2rem solid #e8380d;
  transform: rotate(45deg) translateY(-70%);
  opacity: 0;
}
.p-contact__Table td input[type=checkbox] {
  display: none;
}
.p-contact__Table td input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.p-contact__Table td .wpcf7-not-valid-tip {
  margin-top: 1rem;
  font-size: 1.4rem;
}
.p-contact__Check {
  text-align: center;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 5.6rem;
}
.p-contact__Check .wpcf7-list-item-label {
  padding-left: 3.2rem;
  position: relative;
}
.p-contact__Check .wpcf7-list-item-label:before {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border: 0.2rem solid #ccc;
  content: "";
  left: 0;
  border-radius: 0.2rem;
}
.p-contact__Check .wpcf7-list-item-label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.3rem;
  width: 0.6rem;
  height: 1.2rem;
  border-right: 0.2rem solid #e8380d;
  border-bottom: 0.2rem solid #e8380d;
  transform: rotate(45deg) translateY(-70%);
  opacity: 0;
}
.p-contact__Check input[type=checkbox] {
  display: none;
}
.p-contact__Check input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.p-contact__Check a {
  color: #e8380d;
  text-decoration: underline;
}
.p-contact input[type=submit] {
  margin: auto;
  display: block;
  width: 53.3rem;
  height: 10rem;
  background-color: #222;
  color: #fff;
  border-radius: 10rem;
  font-size: 2.6rem;
  text-align: center;
  position: relative;
  background-image: url(./../img/icon_btn_arrow.svg);
  background-size: 2rem;
  background-position: right 2.5rem center;
  background-repeat: no-repeat;
}
.p-contact input[type=submit]:disabled {
  opacity: 0.6;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .p-contact {
    margin-bottom: 34rem;
  }
  .p-contact__Inner {
    max-width: 67rem;
  }
  .p-contact__Ttl {
    font-size: 5.6rem;
    line-height: 8.4rem;
    padding: 25.2rem 0 6.4rem;
  }
  .p-contact__Icon {
    width: 17.6rem;
    margin: 0 auto 6.4rem;
  }
  .p-contact__Txt {
    font-size: 4rem;
    line-height: 6rem;
    margin-bottom: 2.5rem;
  }
  .p-contact__Attention {
    font-size: 3.2rem;
    line-height: 5.6rem;
    margin-bottom: 12rem;
  }
  .p-contact__Wrap {
    max-width: 67rem;
    width: 100%;
  }
  .p-contact__Table {
    width: 100%;
    margin-bottom: 5.7rem;
  }
  .p-contact__Table tr {
    display: block;
    padding-bottom: 6rem;
  }
  .p-contact__Table th {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .p-contact__Table th span {
    padding: 0.5rem 1.4rem;
    font-size: 2.4rem;
    margin-left: 0.8rem;
  }
  .p-contact__Table td {
    display: block;
    width: 100%;
  }
  .p-contact__Table td .fieldwrap .adBtn {
    font-size: 2.6rem;
    padding: 2rem 4rem;
  }
  .p-contact__Table td.-flex p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
    font-size: 3.2rem;
  }
  .p-contact__Table td select {
    width: 44.4rem;
    font-size: 3.2rem;
    height: 11.2rem;
    padding: 1rem;
    border-radius: 10rem;
  }
  .p-contact__Table td input[type=text],
  .p-contact__Table td input[type=email],
  .p-contact__Table td input[type=tel] {
    font-size: 3.2rem;
    height: 11.2rem;
    padding: 1rem 3rem;
    border-radius: 10rem;
  }
  .p-contact__Table td textarea {
    padding: 2rem 3rem;
    min-height: 44.8rem;
    font-size: 3.2rem;
  }
  .p-contact__Table td .-attention {
    margin-top: 1rem;
    font-size: 2.8rem;
  }
  .p-contact__Table td .wpcf7-list-item {
    font-size: 3.2rem;
    margin-right: 4rem;
    margin-bottom: 6rem;
  }
  .p-contact__Table td .wpcf7-list-item-label {
    padding-left: 6.8rem;
    position: relative;
  }
  .p-contact__Table td .wpcf7-list-item-label:before {
    width: 4.8rem;
    height: 4.8rem;
  }
  .p-contact__Table td .wpcf7-list-item-label:after {
    left: 0.6rem;
    width: 1.2rem;
    height: 2.4rem;
    border-right: 0.4rem solid #e8380d;
    border-bottom: 0.4rem solid #e8380d;
  }
  .p-contact__Check {
    font-size: 3.2rem;
    margin-bottom: 5.6rem;
  }
  .p-contact__Check .wpcf7-list-item-label {
    padding-left: 6.8rem;
    position: relative;
  }
  .p-contact__Check .wpcf7-list-item-label:before {
    width: 4.8rem;
    height: 4.8rem;
  }
  .p-contact__Check .wpcf7-list-item-label:after {
    left: 0.6rem;
    width: 1.2rem;
    height: 2.4rem;
    border-right: 0.4rem solid #e8380d;
    border-bottom: 0.4rem solid #e8380d;
  }
  .p-contact input[type=submit] {
    width: 67rem;
    height: 12.8rem;
    border-radius: 20rem;
    font-size: 3.2rem;
    background-size: 4rem;
    background-position: right 6rem center;
    background-repeat: no-repeat;
  }
  .p-contact input[type=submit]:disabled {
    opacity: 0.6;
  }
}
.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.p-complete {
  padding: 18rem 0 17rem;
  position: relative;
}
.p-complete:before {
  position: absolute;
  right: 0;
  top: 0.3rem;
  width: 18.9rem;
  height: 30rem;
  content: "";
  background: url("./../img/chara_complete.svg");
  background-size: cover;
  content: "";
}
.p-complete__Inner {
  max-width: 76.8rem;
  width: 100%;
  margin: auto;
}
.p-complete__Thum {
  width: 48.8rem;
  margin: 0 auto 1.5rem;
}
.p-complete__Ttl {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 6rem;
}
.p-complete__Txt {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 5.7rem;
}
.p-complete__Btn {
  margin: auto;
  width: 23.6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #222;
  border-radius: 5rem;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  position: relative;
}
.p-complete__Btn:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url(./../img/icon_btn_arrow.svg);
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-complete {
    padding: 28.8rem 0 40rem;
  }
  .p-complete:before {
    top: 3.2rem;
    width: 17.6rem;
    height: 28rem;
  }
  .p-complete__Inner {
    max-width: 67rem;
    width: 100%;
    margin: auto;
  }
  .p-complete__Thum {
    width: 51rem;
    margin: 0 auto 1.6rem;
  }
  .p-complete__Ttl {
    font-size: 4rem;
    margin-bottom: 8rem;
  }
  .p-complete__Txt {
    font-size: 3.2rem;
    line-height: 5.6rem;
    margin-bottom: 8rem;
  }
  .p-complete__Btn {
    width: 47.2rem;
    height: 12rem;
    border-radius: 10rem;
    font-size: 3.2rem;
  }
  .p-complete__Btn:after {
    width: 4rem;
    height: 3.8rem;
    right: 3.6rem;
    background-position: right;
  }
}
.custom-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  margin-top: 6rem;
}
.custom-pagination-wrapper .extend {
  display: none;
}
.custom-pagination-wrapper .nextpostslink {
  display: block;
  width: 6rem;
  height: 6rem;
  background-color: #000;
  background-image: url(./../img/icon_btn_arrow.svg);
  background-size: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10rem;
}
.custom-pagination-wrapper .nextpostslink.disabled {
  background-color: #B1B1B1;
  pointer-events: none;
}
.custom-pagination-wrapper .previouspostslink {
  display: block;
  width: 6rem;
  height: 6rem;
  background-color: #000;
  background-image: url(./../img/icon_btn_arrow.svg);
  background-size: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  border-radius: 10rem;
}
.custom-pagination-wrapper .previouspostslink.disabled {
  background-color: #B1B1B1;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .custom-pagination-wrapper {
    gap: 6rem;
    margin-top: 8rem;
  }
  .custom-pagination-wrapper .nextpostslink {
    width: 12rem;
    height: 12rem;
    background-size: 4rem;
    border-radius: 10rem;
  }
  .custom-pagination-wrapper .previouspostslink {
    width: 12rem;
    height: 12rem;
    background-size: 4rem;
    border-radius: 10rem;
  }
}
.p-notfound .l-container {
  position: relative;
  padding-top: 10rem;
}
.p-notfound__Thum {
  width: 40rem;
  margin: auto;
}
.p-notfound__Ttl {
  position: absolute;
  width: 110rem;
  top: 58rem;
  left: 0;
}
.p-notfound__Txt {
  position: absolute;
}
.p-notfound__Txt.-txt01 {
  width: 38.6rem;
  top: 18.4rem;
  left: 3rem;
}
.p-notfound__Txt.-txt02 {
  width: 26.8rem;
  top: 20.9rem;
  right: 4.5rem;
}
.p-notfound__Btn {
  position: absolute;
  top: 74.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 23.6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #222;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: auto;
  border-radius: 5rem;
}
.p-notfound__Btn:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url(./../img/icon_creaters_btn_arrow.svg);
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-notfound .l-container {
    position: relative;
    padding-top: 10rem;
  }
  .p-notfound__Thum {
    width: 35rem;
  }
  .p-notfound__Ttl {
    position: absolute;
    width: 100%;
    top: 51rem;
    left: 0;
  }
  .p-notfound__Txt {
    position: absolute;
  }
  .p-notfound__Txt.-txt01 {
    width: 27.6rem;
    top: 18.4rem;
    left: 0;
  }
  .p-notfound__Txt.-txt02 {
    width: 20.8rem;
    top: 16.9rem;
    right: 0;
  }
  .p-notfound__Btn {
    width: 67rem;
    height: 10rem;
    border-radius: 5rem;
    font-size: 3.2rem;
    top: 63rem;
  }
  .p-notfound__Btn:after {
    width: 4rem;
    height: 2.8rem;
    right: 4rem;
    z-index: 10;
  }
}
.p-news__Mv {
  padding: 15.5rem 0 13.6rem;
}
.p-news__Mv-Ttl {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.p-news__Mv-Ttl ruby {
  ruby-align: center;
}
.p-news__Mv-Ttl rt {
  font-size: 1.2rem;
}
.p-news__Category {
  margin-bottom: 5.5rem;
}
.p-news__Category-Inner {
  max-width: 76.8rem;
  margin: auto;
}
.p-news__Category-Ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.p-news__Category-List {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-news__Category-Item a {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-weight: bold;
  border: 0.2rem solid #E0E0E0;
  border-radius: 5rem;
}
.p-news__Cont-Inner {
  max-width: 76.8rem;
  margin: 0 auto 5.5rem;
}
.p-news__Cont-Item {
  border-top: 0.1rem solid #E0E0E0;
  padding: 3rem 0;
}
.p-news__Cont-Item:last-child {
  border-bottom: 0.1rem solid #E0E0E0;
}
.p-news__Cont-Item-Flex {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.p-news__Cont-Item-Category {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  font-weight: bold;
  border: 0.2rem solid #E0E0E0;
  border-radius: 5rem;
}
.p-news__Cont-Item-Date {
  font-size: 1.6rem;
}
.p-news__Cont-Item-Ttl a {
  font-size: 1.6rem;
  font-weight: bold;
}

.p-newssingle {
  padding-top: 15.2rem;
}
.p-newssingle__Mv {
  max-width: 76.8rem;
  margin: auto;
}
.p-newssingle__Mv-Client {
  font-size: 3.6rem;
  line-height: 5.4rem;
  font-weight: bold;
  margin-bottom: 5.7rem;
}
.p-newssingle__Mv-Thum {
  max-width: 76.8rem;
  margin: 0 auto 6rem;
}
.p-newssingle__Detail {
  max-width: 76.8rem;
  width: 100%;
  margin: auto;
}
.p-newssingle__Detail-Maintxt {
  margin-bottom: 9rem;
}
.p-newssingle__Detail-Maintxt h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.p-newssingle__Detail-Maintxt h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.p-newssingle__Detail-Maintxt p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 3.4rem;
}
.p-newssingle__Detail-Btn {
  text-align: center;
  margin-top: 8rem;
}
.p-newssingle__Detail-Btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53.3rem;
  height: 10rem;
  background: #222;
  color: #fff;
  border-radius: 10rem;
  font-size: 2.6rem;
  text-align: center;
  position: relative;
  padding-left: 8.6rem;
}
.p-newssingle__Detail-Btn a ruby {
  ruby-align: center;
}
.p-newssingle__Detail-Btn a rt {
  font-size: 1.2rem;
}
.p-newssingle__Detail-Btn a:before {
  position: absolute;
  width: 6.7rem;
  height: 10.8rem;
  content: "";
  background: url("./../img/icon_top_srvice_btn.svg");
  background-size: cover;
  bottom: 0;
  left: 9.5rem;
  pointer-events: none;
}
.p-newssingle__Detail-Btn a:after {
  position: absolute;
  width: 2rem;
  height: 1.4rem;
  content: "";
  background: url("./../img/icon_btn_arrow.svg");
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-news__Mv {
    padding: 22.4rem 0 15.2rem;
  }
  .p-news__Mv-Ttl {
    font-size: 5.6rem;
  }
  .p-news__Mv-Ttl rt {
    font-size: 2.4rem;
  }
  .p-news__Category {
    margin-bottom: 5.5rem;
  }
  .p-news__Category-Inner {
    max-width: 67rem;
  }
  .p-news__Category-Ttl {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
  }
  .p-news__Category-List {
    gap: 2rem;
  }
  .p-news__Category-Item a {
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
  .p-news__Cont-Inner {
    max-width: 67rem;
    margin: 0 auto 5.5rem;
  }
  .p-news__Cont-Item {
    padding: 4rem 0;
  }
  .p-news__Cont-Item-Flex {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .p-news__Cont-Item-Category {
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
  .p-news__Cont-Item-Date {
    font-size: 3.2rem;
  }
  .p-news__Cont-Item-Ttl a {
    font-size: 3.2rem;
  }
  .p-newssingle {
    padding-top: 21.6rem;
    margin-bottom: 10.6rem;
  }
  .p-newssingle__Mv {
    width: 67rem;
  }
  .p-newssingle__Mv-Client {
    font-size: 5.6rem;
    line-height: 8.4rem;
    margin-bottom: 3.4rem;
  }
  .p-newssingle__Mv-Thum {
    margin-bottom: 11.2rem;
  }
  .p-newssingle__Detail {
    max-width: 67rem;
    width: 100%;
    margin: auto;
  }
  .p-newssingle__Detail-Maintxt {
    margin-bottom: 9rem;
  }
  .p-newssingle__Detail-Maintxt h3 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 5rem;
  }
  .p-newssingle__Detail-Maintxt h4 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  .p-newssingle__Detail-Maintxt p {
    font-size: 3.2rem;
    line-height: 5.6rem;
    margin-bottom: 6.8rem;
  }
  .p-newssingle__Detail-Btn {
    margin-top: 12.8rem;
  }
  .p-newssingle__Detail-Btn a {
    width: 67rem;
    height: 13.6rem;
    font-size: 3.2rem;
    text-align: center;
    position: relative;
    padding-left: 8.6rem;
  }
  .p-newssingle__Detail-Btn a rt {
    font-size: 2.4rem;
  }
  .p-newssingle__Detail-Btn a:before {
    width: 8.2rem;
    height: 13.6rem;
    left: 14rem;
  }
  .p-newssingle__Detail-Btn a:after {
    width: 4rem;
    height: 2.8rem;
    right: 4rem;
  }
}
.vpc {
  display: block;
}
@media screen and (max-width: 767px) {
  .vpc {
    display: none;
  }
}

.vsp {
  display: none;
}
@media screen and (max-width: 767px) {
  .vsp {
    display: block;
  }
}