@charset "UTF-8";
/* =================================
  Foundation
================================= */
/*
  Reset
————————————————————————————————————————— */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}
input[type="submit"], input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}
select::-ms-expand {
  display: none;
}
/*
  Settings
————————————————————————————————————————— */
/*
  Base
————————————————————————————————————————— */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  font-stretch: normal;
  color: #212121;
  line-height: 1;
}
/* =================================
  Layout
================================= */
/*
  layout
————————————————————————————————————————— */
.l-main {
  flex: 1;
}
.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-wrapper {
  width: 94%;
  max-width: 1680px;
  margin: 0 auto;
}
.l-wrapper02 {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  /* ======================
  layout(1199)
  =========================*/
  .l-wrapper {
    width: 100%;
    max-width: 90%;
  }
  .l-wrapper02 {
    width: 100%;
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
  layout(767)
  =========================*/
  html, body, .l-main {
    overflow-x: hidden;
  }
  .l-header {
    width: 100%;
    height: 63px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    transition: all 0.6s ease;
  }
  .l-header.is-active {
    background: rgba(255, 255, 255, 0.9);
  }
}
/* =================================
  Object
================================= */
/*
  component
————————————————————————————————————————— */
.c-btnTrigger {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 100;
  width: 40px;
  height: 40px;
  margin: auto;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.c-btnTrigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #212121;
}
.c-btnTrigger, .c-btnTrigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.c-btnTrigger span:nth-of-type(1) {
  top: 0;
}
.c-btnTrigger span:nth-of-type(2) {
  top: 5px;
}
.c-btnTrigger span:nth-of-type(3) {
  top: 10px;
}
#toggleBtn span:nth-of-type(1) {
  -webkit-animation: toggleBtn-bar01 0.75s forwards;
  animation: toggleBtn-bar01 0.75s forwards;
}
@-webkit-keyframes toggleBtn-bar01 {
  0% {
    -webkit-transform: translateY(5px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(5px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes toggleBtn-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#toggleBtn span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
#toggleBtn span:nth-of-type(3) {
  -webkit-animation: toggleBtn-bar03 0.75s forwards;
  animation: toggleBtn-bar03 0.75s forwards;
}
@keyframes toggleBtn-bar03 {
  0% {
    transform: translateY(-5px) rotate(-45deg);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#toggleBtn.active span:nth-of-type(1) {
  -webkit-animation: active-toggleBtn-bar01 0.75s forwards;
  animation: active-toggleBtn-bar01 0.75s forwards;
}
@keyframes active-toggleBtn-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(5px) rotate(18deg);
  }
}
#toggleBtn.active span:nth-of-type(2) {
  opacity: 0;
}
#toggleBtn.active span:nth-of-type(3) {
  -webkit-animation: active-toggleBtn-bar03 0.75s forwards;
  animation: active-toggleBtn-bar03 0.75s forwards;
}
@keyframes active-toggleBtn-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-5px) rotate(-18deg);
  }
}
.c-pageTOP {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 28px;
  height: 28px;
  display: inline-block;
}
.c-arrow-link {
  position: relative;
  display: block;
  overflow: hidden;
  width: 28px;
  height: 28px;
}
.c-arrow-link:hover .c-arrow-link--icon:before {
  transform: translateY(-10px) rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}
.c-arrow-link:hover .c-arrow-link--icon:after {
  transform: translateY(0) rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 1;
}
.c-arrow-link--icon {
  margin: auto 0;
  line-height: 1;
}
.c-arrow-link--icon:before, .c-arrow-link--icon:after {
  content: "";
  display: inline-block;
  border-top: solid 1px #212121;
  border-right: solid 1px #212121;
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  margin: auto;
  height: 20px;
  transition: all 0.5s ease-out;
  transform: rotate(-45deg);
}
.c-arrow-link--icon:after {
  transform: translateY(10px) rotate(-45deg);
  opacity: 0;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  component(768)
  =========================*/
  .c-btnTrigger {
    position: absolute;
    top: 25px;
    right: 20px;
  }
}
/*
  footer
————————————————————————————————————————— */
.p-footer .p-footer__movie {
  background: #212121;
  position: relative;
}
.p-footer video {
  width: 100%;
  outline: none;
  border: none;
  aspect-ratio: 2.4;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}
.p-footer .p-footer__about {
  padding: 120px 0 70px;
  background: #F9FCFC;
}
.p-footer .p-footer__about .l-wrapper {
  position: relative;
}
.p-footer .p-about__flex {
  padding-bottom: 120px;
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.p-footer .p-about__address h2 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  margin-bottom: 60px;
}
.p-footer .p-about__address .p-footer__logo {
  width: 250px;
  margin-bottom: 40px;
}
.p-footer .p-about__address address {
  font-size: 0.875rem;
  line-height: 2;
}
.p-footer .p-about__address address span {
  font-weight: 700;
}
.p-footer .ctaButton {
  display: block;
  width: 350px;
  text-align: right;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}
.p-footer .ctaButton span {
  padding: 18px 20px;
  display: block;
  position: relative;
  color: #FFF;
  background: #F1FF2B;
}
.p-footer .ctaButton span:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.6s;
  background: #212121;
  opacity: 1;
  z-index: 1;
}
.p-footer .ctaButton span p {
  position: relative;
  z-index: 10;
}
.p-footer .ctaButton:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  /* 中央に配置 */
  transform: translateY(-50%);
  /* 縦中央揃え */
  left: 20px;
  width: 18px;
  height: 1px;
  background: #FFF;
  transition: 0.3s;
  z-index: 10;
}
.p-footer .ctaButton:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  /* 中央に配置 */
  transform: translate(-50%, -50%) rotate(-135deg);
  /* 縦横中央揃え */
  left: 33px;
  width: 9px;
  height: 9px;
  border-left: 1.5px solid #FFF;
  border-bottom: 1.5px solid #FFF;
  transition: 0.3s;
  z-index: 10;
}
.p-footer .ctaButton:hover {
  background: #F1FF2B;
  color: #212121;
}
.p-footer .ctaButton:hover::before {
  width: 54px;
  background: #212121;
}
.p-footer .ctaButton:hover::after {
  left: 69px;
  border-left: 1.5px solid #212121;
  border-bottom: 1.5px solid #212121;
}
.p-footer .ctaButton:hover span p {
  color: #212121;
  position: relative;
  z-index: 10;
}
.p-footer .ctaButton:hover span::before {
  width: 0;
  opacity: 0;
}
.p-footer .p-footer__list {
  text-align: right;
  margin-top: 40px;
}
.p-footer .p-footer__item a {
  font-family: "Helvetica LT Std Roman", sans-serif;
  font-size: 1rem;
  color: #212121;
  display: inline-block;
  padding-bottom: 6px;
  position: relative;
}
.p-footer .p-footer__item a::after {
  background-color: #212121;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.p-footer .p-footer__item a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.p-footer .copyRights {
  font-family: "Helvetica LT Std Roman", sans-serif;
  font-size: 0.875rem;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .p-footer .p-footer__movie {
    padding: 55px 0;
  }
  .p-footer video {
    aspect-ratio: 1;
  }
  .p-footer .p-footer__about {
    padding: 80px 0 40px;
  }
  .p-footer .p-about__flex {
    padding-bottom: 80px;
    margin-bottom: 30px;
    flex-direction: column;
  }
  .p-footer .p-about__address h2 {
    font-size: 2.75rem;
    margin-bottom: 40px;
  }
  .p-footer .p-about__address .p-footer__logo {
    margin-bottom: 30px;
  }
  .p-footer .ctaButton {
    width: 100%;
    max-width: 350px;
    text-align: left;
  }
  .p-footer .ctaButton:before {
    left: unset;
    right: 24px;
  }
  .p-footer .ctaButton:after {
    left: unset;
    right: 20px;
  }
  .p-footer .ctaButton:hover {
    background: #212121;
    color: #fff;
  }
  .p-footer .ctaButton:hover::before {
    width: 18px;
    background: #fff;
  }
  .p-footer .ctaButton:hover::after {
    left: unset;
    right: 20px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
  }
  .p-footer .ctaButton:hover span p {
    color: #fff;
  }
  .p-footer .ctaButton:hover span::before {
    width: 100%;
    opacity: 1;
  }
  .p-footer .p-footer__list {
    text-align: left;
    margin-top: 30px;
  }
  .p-footer .p-footer__item a {
    font-size: 0.875rem;
  }
  .p-footer .copyRights {
    font-size: 0.75rem;
  }
}
/*
  header
————————————————————————————————————————— */
.p-header__logo {
  position: fixed;
  top: 40px;
  left: 40px;
  width: 100px;
  z-index: 99;
}
#globalMenu {
  display: block;
  position: fixed;
  top: 0;
  right: -480px;
  bottom: 0;
  width: 480px;
  background: rgba(255, 255, 255, 0.9);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 10;
  opacity: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#globalMenu .p-globalMenu__logo {
  width: 290px;
  margin-bottom: 70px;
}
#globalMenu .inner {
  width: fi-contetent;
  margin-inline: auto;
}
#globalMenu ul {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
#globalMenu ul a {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #212121;
  display: inline-block;
  padding-bottom: 6px;
  position: relative;
}
#globalMenu ul a::after {
  background-color: #212121;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
#globalMenu ul a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
#globalMenu.open {
  right: 0;
  opacity: 1;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .p-header__logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 93px;
    z-index: 98;
  }
  #globalMenu {
    right: -100%;
    width: 100%;
    z-index: 99;
  }
  #globalMenu .p-globalMenu__logo {
    width: 270px;
    margin-bottom: 40px;
  }
  #globalMenu ul {
    row-gap: 25px;
  }
  #globalMenu ul a {
    font-size: 1.375rem;
  }
}
/*
top
————————————————————————————————————————— */
.p-top__mainvisual {
  position: relative;
  height: 100vh;
}
.p-top__mainvisual #video-fixed {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  background: #F9FCFC;
}
.p-top__mainvisual video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  min-height: 100%;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}
.scrollDown a {
  font-family: "Arial", sans-serif;
  display: inline-block;
  position: absolute;
  left: 40px;
  bottom: 80px;
  z-index: 2;
  padding-bottom: 60px;
  color: #212121;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  overflow: hidden;
  opacity: 0;
  transition: all 2.2s ease;
}
.scrollDown a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: #212121;
}
.scrollDown a.is-active {
  opacity: 1;
}
.scrollDown a span {
  transform: rotate(-180deg);
  display: block;
}
#scrollDown a::after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.p-top__about {
  padding-top: 300px;
}
.p-top__about h2 {
  max-width: 1000px;
  margin-bottom: 60px;
}
.p-top__about h2 div {
  width: fit-content;
}
.p-top__about h2 div.u-underLine::after {
  transition: all 0.7s ease;
  height: 21px;
  bottom: -10px;
}
.p-top__about p {
  font-size: 1.0625rem;
  line-height: 2;
}
.p-top__work {
  padding-top: 300px;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-top__work .p-top__work::-webkit-scrollbar {
  display: none;
}
.p-top__work h2 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  margin-bottom: 80px;
}
.p-top__work .p-work__box picture {
  display: block;
}
.p-top__work .p-work__text {
  padding-top: 60px;
  padding-bottom: 300px;
  position: relative;
}
.p-top__work .illust01 {
  position: absolute;
  top: -230px;
  right: -200px;
  width: 50%;
  max-width: 900px;
  z-index: -99;
}
.p-top__work .illust02_1 {
  position: absolute;
  top: 90px;
  right: -22%;
  width: 58%;
  max-width: 1300px;
  transition: 1.5s;
  transition-delay: 1.6s;
  transform: translate(70%, 0);
  z-index: -99;
}
.p-top__work .illust02_1.is-active {
  opacity: 1;
  transform: none;
}
.p-top__work .illust02_2 {
  position: absolute;
  top: 170px;
  right: -25%;
  width: 57%;
  max-width: 1300px;
  transition: 1.5s;
  transition-delay: 1.8s;
  transform: translate(70%, 0);
  z-index: -99;
}
.p-top__work .illust02_2.is-active {
  opacity: 1;
  transform: none;
}
.p-top__work .illust02_3 {
  position: absolute;
  top: 200px;
  right: -25%;
  width: 60%;
  max-width: 1300px;
  transition: 1.5s;
  transition-delay: 2s;
  transform: rotate(-50deg) translate(90%, -140px);
  z-index: -99;
}
.p-top__work .illust02_3.is-active {
  opacity: 1;
  transform: rotate(-50deg) translate(-12%, -140px);
}
.p-top__work .illust03 {
  position: absolute;
  top: -60px;
  right: -220px;
  width: 50%;
  max-width: 900px;
  z-index: -1;
}
.p-top__work .illust04 {
  position: absolute;
  top: -80px;
  right: -220px;
  width: 50%;
  max-width: 900px;
  z-index: -1;
}
.p-top__work .illust05 {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 40%;
  max-width: 800px;
  z-index: -1;
}
.p-top__work .titleBox {
  margin-bottom: 40px;
}
.p-top__work .titleBox.ja {
  margin-bottom: 20px;
}
.p-top__work .titleBox h3 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.5;
  display: inline-block;
  margin-bottom: 16px;
}
.p-top__work .titleBox h3 div {
  display: inline-block;
}
.p-top__work .titleBox h3 div::after {
  height: 20px;
  bottom: -6px;
}
.p-top__work .titleBox h3.ja {
  font-size: 1.625rem;
}
.p-top__work .titleBox h3.ja:after {
  bottom: -10px;
}
.p-top__work .titleBox span {
  font-size: 0.75rem;
  display: block;
}
.p-top__work p {
  font-size: 1.0625rem;
  line-height: 2;
  width: 60%;
  max-width: 935px;
  text-align: justify;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1400px) {
  .p-top__about {
    padding-top: 200px;
  }
  .p-top__about h2 {
    max-width: 700px;
    margin-bottom: 50px;
  }
  .p-top__about h2 .titleBox {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .p-top__about h2 .titleBox div {
    display: inline-block;
    width: fit-content;
  }
  .p-top__about h2 img {
    width: auto;
    height: 29px;
  }
  .p-top__work {
    padding-top: 200px;
  }
  .p-top__work h2 {
    font-size: 3.3125rem;
    margin-bottom: 55px;
  }
  .p-top__work .p-work__text {
    padding-top: 50px;
    padding-bottom: 200px;
  }
  .p-top__work .titleBox {
    margin-bottom: 30px;
  }
  .p-top__work .titleBox h3 {
    font-size: 1.75rem;
  }
  .p-top__work .titleBox h3.ja {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
	project(767)
	=========================*/
  .scrollDown a {
    left: 20px;
    bottom: 60px;
  }
  .p-top__about h2 {
    max-width: 350px;
  }
  .p-top__about h2.u-underLine::after {
    height: 21px;
  }
  .p-top__about p {
    font-size: 1rem;
  }
  .p-top__work h2 {
    font-size: 2.75rem;
    margin-bottom: 60px;
  }
  .p-top__work .p-work__text {
    padding-top: 40px;
    padding-bottom: 380px;
  }
  .p-top__work .p-work__text .l-wrapper {
    background: #fff;
    width: 100%;
    max-width: 100%;
    padding: 0 5%;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  .p-top__work .illust01 {
    top: unset;
    bottom: 70px;
    right: -150px;
    width: 120%;
  }
  .p-top__work .illust02_1 {
    top: unset;
    bottom: 300px;
    right: -110%;
    width: 200%;
    max-width: 900px;
    transition: 1.5s;
    transition-delay: 1.6s;
    transform: translate(50%, 0);
    z-index: -10;
  }
  .p-top__work .illust02_2 {
    top: unset;
    bottom: 230px;
    right: -120%;
    width: 200%;
    max-width: 900px;
    transition: 1.5s;
    transition-delay: 1.8s;
    transform: translate(50%, 0);
    z-index: -10;
  }
  .p-top__work .illust02_3 {
    top: unset;
    bottom: -320px;
    right: -25%;
    width: 200%;
    max-width: 900px;
    transition: 1.5s;
    transition-delay: 2s;
    transform: rotate(-50deg) translate(160%, -260px);
    z-index: -10;
  }
  .p-top__work .illust02_3.is-active {
    transform: rotate(-50deg) translate(65%, -260px);
    z-index: -10;
  }
  .p-top__work .illust03 {
    top: unset;
    bottom: 120px;
    right: -200px;
    width: 135%;
  }
  .p-top__work .illust04 {
    top: unset;
    bottom: 120px;
    right: -200px;
    width: 135%;
  }
  .p-top__work .illust05 {
    top: unset;
    bottom: 160px;
    right: -14%;
    width: 110%;
  }
  .p-top__work .titleBox {
    margin-bottom: 40px;
  }
  .p-top__work .titleBox h3 {
    font-size: 1.875rem;
    margin-bottom: 21px;
  }
  .p-top__work .titleBox h3.ja {
    font-size: 1.5rem;
  }
  .p-top__work p {
    width: 100%;
    font-size: 1rem;
  }
}
/*
PRIVACY POLICY
————————————————————————————————————————— */
.p-policy {
  padding-top: 300px;
  padding-bottom: 300px;
  background: #F9FCFC;
}
.p-policy h2 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.2;
  margin-bottom: 120px;
}
.p-policy h3 {
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 2;
}
.p-policy p {
  font-size: 1.0625rem;
  line-height: 2;
}
.p-policy .p-policy__box:not(:last-child) {
  padding-bottom: 60px;
  margin-bottom: 60px;
  position: relative;
}
.p-policy .p-policy__box:not(:last-child):after {
  content: "";
  display: inline-block;
  background: #212121;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-policy .policyLink {
  color: #212121;
  text-decoration: underline;
}
/*
レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .p-policy {
    padding-top: 160px;
    padding-bottom: 200px;
  }
  .p-policy h2 {
    font-size: 2.75rem;
    margin-bottom: 80px;
  }
  .p-policy h3 {
    font-size: 1rem;
  }
  .p-policy p {
    font-size: 1rem;
  }
  .p-policy .p-policy__box:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
/*
  CONTACT
————————————————————————————————————————— */
.p-contact {
  background: #F9FCFC;
  padding-top: 300px;
  padding-bottom: 300px;
}
.p-contact h2 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  margin-bottom: 120px;
}
.p-contact h2 span {
  font-weight: 400;
  font-size: 1.0625rem;
}
.p-contact p {
  font-size: 1.0625rem;
  line-height: 2;
}
.p-contact .remark {
  color: #B56AFF;
}
.p-contact .policyLink {
  color: #212121;
  text-decoration: underline;
}
.p-contact .confirmOn {
  display: none;
}
.p-contact ::placeholder {
  color: #B4B4B4;
}
.p-contact .mw_wp_form .error {
  font-size: 93%;
  color: #B70000;
  display: block;
  position: absolute;
  bottom: -35px;
}
.p-contact .p-contact__wrap {
  margin-top: 80px;
  margin-bottom: 60px;
}
.p-contact .p-contact__dl {
  margin-bottom: 80px;
}
.p-contact .p-contact__dl:last-child {
  margin-bottom: 0;
}
.p-contact .p-contact__dt, .p-contact .p-contact__dd {
  font-size: 1.0625rem;
  line-height: 2;
}
.p-contact .p-contact__dt {
  margin-bottom: 20px;
}
.p-contact .p-contact__dd {
  position: relative;
}
.p-contact .p-contact__dd.flexBox {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.p-contact .p-contact__dd.flexBox02 {
  display: flex;
  align-items: center;
}
.p-contact .p-contact__dd .space {
  background: #DCDCDC;
  width: 20px;
  height: 1px;
  display: block;
  margin-left: 20px;
  margin-right: 20px;
}
.p-contact .con_name, .p-contact .con_kana, .p-contact .con_company, .p-contact .con_mail, .p-contact .con_tel, .p-contact .con_textarea {
  font-size: 1.0625rem;
  line-height: 2;
  width: 350px;
  height: 60px;
  background: #fff;
  border: solid 1px #DCDCDC;
  padding: 16px 30px;
  padding-left: 20px;
}
.p-contact .con_company, .p-contact .con_mail {
  width: 100%;
}
.p-contact .con_textarea {
  width: 100%;
  height: 250px;
}
.p-contact .con_tel {
  width: 200px;
}
.p-contact .p-contact__btn-wrap {
  margin-top: 80px;
}
.p-contact .con_submit {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 350px;
}
.p-contact .con_submit input[type="submit"] {
  font-size: 1.0625rem;
  width: 350px;
  padding: 15px 20px;
  background-color: #191919;
  color: #fff;
}
.p-contact .con_back {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 350px;
}
.p-contact .con_back input[type="submit"] {
  font-size: 1.0625rem;
  width: 350px;
  padding: 15px 20px;
  background-color: #7D7D7D;
  color: #fff;
}
.p-contact .mw_wp_form_confirm .confirmOff {
  display: none;
}
.p-contact .mw_wp_form_confirm .confirmOn {
  display: block;
}
.p-contact .mw_wp_form_confirm .p-contact__dl {
  margin-bottom: 55px;
}
.p-contact .mw_wp_form_confirm .p-contact__dl:last-child {
  margin-bottom: 0;
}
.p-contact .mw_wp_form_confirm .p-contact__dt {
  color: #B4B4B4;
  margin-bottom: 15px;
}
.p-contact .mw_wp_form_confirm .p-contact__dd {
  border-bottom: 1px solid #DCDCDC;
  padding-bottom: 30px;
}
.p-contact .mw_wp_form_confirm .p-contact__dd .space {
  width: 7px;
  margin-right: 7px;
  margin-left: 7px;
  background: #212121;
}
.p-contact .mw_wp_form_confirm .remark {
  display: none;
}
.p-contact .mw_wp_form_confirm .p-contact__btn-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.p-contact .thanksButton {
  font-size: 1.0625rem;
  display: block;
  width: 350px;
  height: 55px;
  line-height: 1.4;
  padding: 15px 20px;
  text-align: center;
  margin-top: 70px;
  color: #fff;
  background: #7D7D7D;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .p-contact {
    padding-top: 180px;
    padding-bottom: 200px;
  }
  .p-contact h2 {
    font-size: 2.75rem;
    line-height: 1.6;
    margin-bottom: 80px;
  }
  .p-contact h2 span {
    font-size: 1rem;
  }
  .p-contact p {
    font-size: 1rem;
  }
  .p-contact .p-contact__wrap {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .p-contact .p-contact__dl {
    margin-bottom: 50px;
  }
  .p-contact .p-contact__dt, .p-contact .p-contact__dd {
    font-size: 1rem;
  }
  .p-contact .p-contact__dt {
    margin-bottom: 15px;
  }
  .p-contact .p-contact__dd.flexBox {
    gap: 15px;
  }
  .p-contact .p-contact__dd .space {
    width: 14px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .p-contact .con_name, .p-contact .con_kana, .p-contact .con_company, .p-contact .con_mail, .p-contact .con_tel, .p-contact .con_textarea {
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    height: 50px;
    padding: 14px 20px;
  }
  .p-contact .con_textarea {
    height: 350px;
  }
  .p-contact .con_tel {
    width: 90px;
  }
  .p-contact .p-contact__btn-wrap {
    margin-top: 60px;
  }
  .p-contact .con_submit {
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
  }
  .p-contact .con_submit input[type="submit"] {
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }
  .p-contact .con_back {
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
  }
  .p-contact .con_back input[type="submit"] {
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }
  .p-contact .mw_wp_form_confirm .p-contact__dl {
    margin-bottom: 40px;
  }
  .p-contact .mw_wp_form_confirm .p-contact__dt {
    margin-bottom: 0;
  }
  .p-contact .mw_wp_form_confirm .p-contact__dd {
    padding-bottom: 15px;
  }
  .p-contact .mw_wp_form_confirm .p-contact__dd .space {
    width: 5px;
    margin-right: 5px;
    margin-left: 5px;
  }
  .p-contact .mw_wp_form_confirm .p-contact__btn-wrap {
    justify-content: center;
    flex-direction: column-reverse;
  }
  .p-contact .thanksButton {
    font-size: 1.0625rem;
    width: 100%;
    max-width: 350px;
    margin-top: 60px;
    height: 54px;
  }
}
/*
  utillity
————————————————————————————————————————— */
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.u-sp-none992 {
  display: none;
}
.u-sp-none768 {
  display: none;
}
.u-sp-none576 {
  display: none;
}
.u-m-auto {
  margin: 0 auto;
}
.u-display-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.u-position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.u-fade {
  opacity: 0;
  transition: all 1.5s ease;
}
.u-fade.is-active {
  opacity: 1;
  transform: none;
}
.u-fade-up {
  transform: translate(0, 50px);
}
.u-fade-up02 {
  transition: 1.5s;
  transition-delay: 1.6s;
  transform: translate(0, 100px);
}
.u-fade-lr {
  transition: 1.5s;
  transition-delay: 1.6s;
  transform: translate(-50%, 0);
}
.u-fade-rl {
  transition: 1.5s;
  transition-delay: 1.6s;
  transform: translate(50%, 0);
}
.u-underLine {
  position: relative;
  z-index: 1;
}
.u-underLine::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 25px;
  background: #F1FF2B;
  z-index: -1;
  transition: all 0.3s ease;
}
.u-underLine.underline::after {
  width: 100%;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (min-width: 992px) {
  /* ======================
  utility(992)
  =========================*/
  .u-sp-none992 {
    display: block;
  }
  .u-pc-none992 {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: none;
  }
}
@media screen and (min-width: 768px) {
  /* ======================
  utility(768)
  =========================*/
  .u-sp-none768 {
    display: block !important;
  }
  .u-pc-none768 {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  /* ======================
  utility(576)
  =========================*/
  .u-sp-none576 {
    display: block;
  }
  .u-pc-none576 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-visuallyHidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }
  .u-fade-up02 {
    transition: 0.8s;
    transition-delay: 1s;
  }
  .u-fade-lr {
    transition: 0.8s;
    transition-delay: 1s;
  }
  .u-fade-rl {
    transition: 0.8s;
    transition-delay: 1s;
  }
}
