@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

html {
  height: auto;
  min-height: 100%;
  background: rgb(41, 44, 49);
  background: linear-gradient(180deg, rgb(41, 44, 49) 0%, rgb(50, 84, 96) 21%, rgb(11, 25, 41) 41%, rgb(62, 43, 16) 59%, rgb(15, 38, 28) 78%, rgb(13, 13, 14) 100%);
}

body {
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  min-height: 100vh;
}
* {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

a {
  color: #fff;
}
a:hover {
  opacity: 0.8;
}

main {
  text-align: center;
}

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

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

.l-header {
  display: flex;
  justify-content: space-between;
  max-width: 1180px;
  margin: auto;
  width: 94%;
  padding-top: 1.4%;
}
@media screen and (max-width: 520px) {
  .l-header {
    padding-top: 4%;
  }
}

.p-keyvisual {
  padding-top: 1%;
  max-width: 1180px;
  margin: auto;
}
.p-keyvisual video {
  height: auto;
  width: 100%;
}

.p-nav {
  width: 80%;
  padding-top: 1.6%;
}
.p-nav__inner {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}
@media screen and (max-width: 820px) {
  .p-nav__inner {
    display: block;
    text-align: center;
    padding: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgb(41, 44, 49) 0%, rgb(50, 84, 96) 21%, rgb(11, 25, 41) 41%, rgb(62, 43, 16) 59%, rgb(15, 38, 28) 78%, rgb(13, 13, 14) 100%);
    transform: translateX(100vw);
    transition: all 0.3s linear;
  }
  .p-nav.is-active {
    transform: translateX(0);
  }
}
.p-nav-item {
  margin-left: 5%;
}
.p-nav-item a {
  color: #fff;
  text-decoration: none;
  font-family: "Teko", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  position: relative;
}
.p-nav-item a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  transform: scaleX(0);
  transition: 0.2s ease-in-out;
  height: 1px;
  margin: auto;
}
.p-nav-item a:hover::before {
  transform: scaleX(1);
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  .p-nav-item a {
    font-size: 3vw;
  }
}
@media screen and (min-width: 1280px) {
  .p-nav-item a {
    font-size: 24px;
  }
}
@media screen and (max-width: 760px) {
  .p-nav-item a {
    font-size: 20px;
  }
}
@media screen and (max-width: 820px) {
  .p-nav-item {
    margin-left: 0;
    margin-bottom: 34px;
  }
  .p-nav-item:last-child {
    background-color: #DDA934;
    display: block;
    padding: 8px 0 6px;
    border: solid 1px #000;
    box-shadow: 0 0 0 2px #fff;
  }
}
.p-nav-btn {
  display: none;
}
@media screen and (max-width: 820px) {
  .p-nav-btn {
    display: block;
    position: fixed;
    z-index: 2;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
  }
}
.p-nav-menu {
  display: none;
}
@media screen and (max-width: 820px) {
  .p-nav-menu {
    position: fixed;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 250ms ease;
    cursor: pointer;
    z-index: 200;
  }
  .p-nav-menu span {
    position: relative;
    display: block;
    width: 50%;
    height: 2px;
    background-color: #fff;
    float: left;
    transform-origin: center center;
    transition: transform 250ms ease;
    z-index: 200;
  }
  .p-nav-menu span:nth-of-type(1) {
    transform: translateY(-5px);
  }
  .p-nav-menu span:nth-of-type(3) {
    transform: translateY(5px);
  }
}
.p-nav-menu.is-active {
  background-color: transparent;
  transform: rotate(-360deg);
  transition: transform 250ms ease;
}
.p-nav-menu.is-active span {
  background-color: white;
  transition: transform 250ms ease;
}
.p-nav-menu.is-active span:nth-of-type(1) {
  transform: translateY(1px) rotate(45deg);
}
.p-nav-menu.is-active span:nth-of-type(2) {
  display: none;
}
.p-nav-menu.is-active span:nth-of-type(3) {
  transform: translateY(-1px) rotate(-45deg);
}

.wrap.is-active {
  position: relative;
}
.wrap.is-active::before {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, rgb(41, 44, 49) 0%, rgb(50, 84, 96) 21%, rgb(11, 25, 41) 41%, rgb(62, 43, 16) 59%, rgb(15, 38, 28) 78%, rgb(13, 13, 14) 100%);
  content: "";
  z-index: 1;
}

.p-logo {
  width: 12%;
  max-width: 120px;
  margin-bottom: 0.5%;
}
.p-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 520px) {
  .p-logo {
    width: 21%;
    margin-left: 1.6%;
    padding-bottom: 1.8%;
  }
}

.p-top-catch {
  margin-top: 6%;
  padding: 8.2% 0 3.3%;
  background: url(../images/top_online_recording_pc.jpg) center center no-repeat;
  background-size: cover;
  margin-bottom: 6%;
}
@media screen and (max-width: 520px) {
  .p-top-catch {
    background-image: url(../images/top_online_recording_sp.jpg);
    margin-top: 31vw;
    position: relative;
    padding-bottom: 6.5vw;
    margin-bottom: 13%;
  }
}
.p-top-catch__title {
  text-align: center;
  font-size: 22px;
  text-shadow: 3px 3px 10px #000;
  line-height: 1;
}
@media screen and (max-width: 520px) {
  .p-top-catch__title {
    font-size: 3.5vw;
    position: relative;
    margin-top: -31vw;
    letter-spacing: 0.02em;
    text-shadow: none;
  }
}
.p-top-catch__title span {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 2.8%;
}
@media screen and (max-width: 520px) {
  .p-top-catch__title span {
    font-size: 8.8vw;
    letter-spacing: 0.02em;
  }
}
.p-top-catch__text {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 16px;
  margin-top: 3.6%;
  line-height: 2;
  text-shadow: 3px 3px 10px #000;
}
@media screen and (max-width: 520px) {
  .p-top-catch__text {
    margin-top: 44vw;
    font-size: 15px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.44);
    padding: 15px 0 17px;
  }
}
.p-top-catch .c-more-arrow-btn {
  max-width: 640px;
}
@media screen and (max-width: 520px) {
  .p-top-catch .c-more-arrow-btn {
    margin-top: 11px;
  }
  .p-top-catch .c-more-arrow-btn a {
    font-size: 16px;
    padding-right: 26px;
  }
  .p-top-catch .c-more-arrow-btn a::before {
    width: 114px;
  }
}

.p-works {
  text-align: center;
}
.p-works-wrapper {
  min-height: 90vh;
}
.p-works__term-list {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0 auto 4%;
  padding: 0;
}
@media screen and (max-width: 760px) {
  .p-works__term-list {
    margin-bottom: 35px;
  }
}
.p-works__term-list-item {
  font-size: 2.5vw;
  font-family: "Teko", sans-serif;
  font-weight: 400;
  line-height: 1;
  padding: 1.2% 2%;
  border-bottom: solid 1px rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .p-works__term-list-item {
    font-size: 3vw;
  }
}
@media screen and (max-width: 760px) {
  .p-works__term-list-item {
    font-size: 3.4vw;
  }
}
@media screen and (min-width: 1280px) {
  .p-works__term-list-item {
    font-size: 30px;
  }
}
@media screen and (max-width: 520px) {
  .p-works__term-list-item {
    font-size: 18px;
    border: none;
  }
}
.p-works__term-list-item::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  content: "";
}
.p-works__term-list-item.isActive {
  position: relative;
}
.p-works__term-list-item.isActive::before {
  background-color: #fff !important;
}
.p-works__term-list-item:hover::before {
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 520px) {
  .p-works__term-list {
    width: 88.6%;
    justify-content: space-between;
    border-bottom: solid 1px rgba(255, 255, 255, 0.18);
  }
}
.p-works__title {
  display: inline-block;
  font-size: 33px;
  letter-spacing: 0.03em;
  font-family: "Teko", sans-serif;
  position: relative;
  text-align: center;
  font-weight: 400;
  margin-bottom: 3.5%;
}
@media screen and (max-width: 520px) {
  .p-works__title {
    margin-bottom: 5.6%;
  }
}
.p-works__title::before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  content: "";
  left: -24px;
  top: 35%;
}
.p-works__title::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  content: "";
  right: -20px;
  top: 35%;
}
.p-works__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  max-width: 994px;
  width: 90%;
  margin: auto;
  padding: 0;
}
@media screen and (max-width: 760px) {
  .p-works__list {
    display: block;
    width: 88.6%;
  }
}
.p-works__item {
  width: 47%;
  text-align: left;
  margin-bottom: 5%;
}
@media screen and (max-width: 760px) {
  .p-works__item {
    width: 100%;
    margin-bottom: 50px;
  }
}
.p-works__item figure {
  width: 100%;
  aspect-ratio: 16/9;
}
.p-works__item iframe {
  width: 100%;
  height: 100%;
}
.p-works__item .wp-block-embed__wrapper {
  height: 25vw !important;
  max-height: 280px !important;
}
@media screen and (max-width: 760px) {
  .p-works__item .wp-block-embed__wrapper {
    max-height: 100% !important;
    height: 100% !important;
  }
}
.p-works__item .wp-block-image {
  height: 25vw !important;
  max-height: 280px;
}
.p-works__item .wp-block-image img {
  display: block;
  margin: auto;
  height: 100%;
  width: auto;
}
@media screen and (max-width: 760px) {
  .p-works__item .wp-block-image {
    max-height: 100% !important;
    height: 100% !important;
  }
}
.p-works__item-category {
  display: flex;
  margin-bottom: 3.7%;
}
.p-works__item-category .post_category {
  display: block;
  border: solid 1px rgba(255, 255, 255, 0.3);
  font-family: "Teko", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 6px;
  margin-right: 2%;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .p-works__item-category .post_category {
    font-size: 15px;
  }
}
@media screen and (max-width: 520px) {
  .p-works__item-category .post_category {
    padding: 4px;
  }
}
.p-works__item-content {
  border: solid 1px #fff;
  overflow: hidden;
}
@media screen and (max-width: 760px) {
  .p-works__item-content {
    height: 53vw;
  }
  .p-works__item-content figure {
    height: 100%;
  }
}
.p-works__item-title {
  text-align: left;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.26);
  font-size: 18px;
  padding: 0 4%;
  margin-bottom: 5.2%;
  min-height: 84px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p-works__item-title span {
  width: 100%;
  display: block;
}
@media screen and (max-width: 820px) {
  .p-works__item-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 520px) {
  .p-works__item-title {
    min-height: auto;
    padding: 2.4% 2.2%;
    margin-bottom: 4.2%;
  }
}
.p-works__item-artist {
  font-style: normal;
  font-size: 0.9em;
  padding-left: 18px;
  position: relative;
  display: inline-block;
}
.p-works__item-artist::before {
  position: absolute;
  content: "/";
  left: 6px;
  top: -1px;
}
.p-works__no-data {
  font-size: 20px;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.03em;
  opacity: 0.8;
}
.p-works .c-more-arrow-btn {
  max-width: 994px;
  width: 90%;
  margin: -22px auto 0;
}
@media screen and (max-width: 520px) {
  .p-works .c-more-arrow-btn {
    width: 88.6%;
  }
}
.p-works .c-more-arrow-btn a::before {
  width: 105px;
}
.p-works__loader {
  margin: 3vw auto;
}
@media screen and (max-width: 520px) {
  .p-works__loader {
    zoom: 0.8;
    margin: 5vw auto;
  }
}

.line-scale-pulse-out-rapid > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
  animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}

.line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
  -webkit-animation-delay: -0.25s !important;
  animation-delay: -0.25s !important;
}

.line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
  -webkit-animation-delay: 0s !important;
  animation-delay: 0s !important;
}

@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }
  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale-pulse-out-rapid > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
  animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}

.line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
  -webkit-animation-delay: -0.25s !important;
  animation-delay: -0.25s !important;
}

.line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
  -webkit-animation-delay: 0s !important;
  animation-delay: 0s !important;
}

.p-engineer {
  position: relative;
  text-align: left;
}
.p-engineer--wrappe {
  position: relative;
}
.p-engineer__img {
  width: 61.5%;
}
.p-engineer__img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 820px) {
  .p-engineer__img {
    width: 100%;
  }
}
.p-engineer__text {
  font-size: 1.4vw;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-bottom: 3%;
}
@media screen and (min-width: 1280px) {
  .p-engineer__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 820px) {
  .p-engineer__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 760px) {
  .p-engineer__text {
    font-size: 14px;
  }
}
.p-engineer__text-wrapper {
  width: 61%;
  position: absolute;
  top: 0;
  right: 5%;
  background-color: rgba(0, 0, 0, 0.51);
  padding: 4.4% 3%;
  height: 62%;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .p-engineer__text-wrapper {
    position: relative;
    width: 89%;
    margin-top: -40vw;
    z-index: 2;
    right: auto;
    padding: 6%;
  }
}
.p-engineer__name {
  border-bottom: solid 1px #fff;
  font-size: 33px;
  font-family: "Teko", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding-bottom: 1%;
  margin-bottom: 3.5%;
}
@media screen and (max-width: 820px) {
  .p-engineer__name {
    font-size: 26px;
  }
}

.p-recording__main-text {
  position: relative;
  width: 90%;
  max-width: 1080px;
  margin: -16vw auto 0;
  background: rgba(0, 0, 0, 0.75);
  padding: 3% 5% 4%;
  text-align: left;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.02em;
}
.p-recording__main-text p {
  /*
  text-shadow: 3px 3px 10px #000,
  -3px 3px 10px #000,
  3px -3px 10px #000,
  -3px -3px 10px #000;
  */
}
@media screen and (min-width: 1280px) {
  .p-recording__main-text {
    font-size: 19px;
  }
}
@media screen and (max-width: 820px) {
  .p-recording__main-text {
    font-size: 14px;
  }
}
.p-recording__kv {
  margin-bottom: 7.2%;
}
@media screen and (max-width: 820px) {
  .p-recording__kv {
    margin-bottom: 10%;
  }
}
@media screen and (max-width: 760px) {
  .p-recording__kv {
    margin-bottom: 12%;
  }
}
.p-recording__price {
  text-align: left;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto 6.7%;
}
@media screen and (max-width: 820px) {
  .p-recording__price {
    margin-bottom: 10%;
  }
}
@media screen and (max-width: 760px) {
  .p-recording__price {
    margin-bottom: 12%;
  }
}
.p-recording__price-text {
  font-size: 15px;
  padding-left: 1%;
}
@media screen and (max-width: 820px) {
  .p-recording__price-text {
    font-size: 15px;
  }
}
.p-recording__flow {
  text-align: left;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto 6%;
}
@media screen and (max-width: 820px) {
  .p-recording__flow {
    margin-bottom: 12%;
  }
}
.p-recording__equipment {
  text-align: left;
  max-width: 1080px;
  width: 90%;
  margin: auto;
}

.p-mastering__main-text {
  position: relative;
  width: 90%;
  max-width: 1080px;
  margin: -16vw auto 0;
  background: rgba(0, 0, 0, 0.75);
  padding: 3% 5% 4%;
  text-align: left;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 820px) {
  .p-mastering__main-text {
    font-size: 14px;
  }
}
.p-mastering__main-text p {
  /*
  text-shadow: 3px 3px 10px #000,
  -3px 3px 10px #000,
  3px -3px 10px #000,
  -3px -3px 10px #000;
  a {
      text-shadow: none;
  }
  */
}
.p-mastering__kv {
  margin-bottom: 7.2%;
}
@media screen and (max-width: 820px) {
  .p-mastering__kv {
    margin-bottom: 10%;
  }
}
.p-mastering__price {
  text-align: left;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto 6.7%;
}
@media screen and (max-width: 820px) {
  .p-mastering__price {
    margin-bottom: 10%;
  }
}
.p-mastering__price-text {
  font-size: 15px;
  padding-left: 1%;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  .p-mastering__price-text {
    font-size: 15px;
  }
}
.p-mastering__flow {
  text-align: left;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto 6%;
}

.p-contact {
  width: 88%;
  max-width: 650px;
  margin: auto;
}
.p-contact input[type=text],
.p-contact input[type=email] {
  width: calc(100% + 26px);
  height: 47px;
  margin-bottom: 12px;
  margin-top: 10px;
  margin-left: -26px;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}
@media screen and (max-width: 820px) {
  .p-contact input[type=text],
.p-contact input[type=email] {
    margin-left: -20px;
    width: calc(100% + 20px);
  }
}
.p-contact input[type=text] + span,
.p-contact input[type=email] + span {
  font-size: 0.9em;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  position: relative;
  color: red;
}
.p-contact input[type=text] + span::before,
.p-contact input[type=email] + span::before {
  position: absolute;
  content: "↑";
  left: -20px;
}
.p-contact textarea {
  width: calc(100% + 26px);
  margin-left: -26px;
  margin-top: 10px;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}
@media screen and (max-width: 820px) {
  .p-contact textarea {
    margin-left: -20px;
    width: calc(100% + 20px);
  }
}
.p-contact input[type=submit] {
  background-color: #DDA934;
  border: solid 1px #fff;
  font-size: 15px;
  padding: 6px 30px;
  -webkit-appearance: none;
  border-radius: 0;
  color: #000;
  cursor: pointer;
}
.p-contact input[type=submit]:hover {
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}
.p-contact p {
  text-align: left;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
}
@media screen and (max-width: 820px) {
  .p-contact p {
    font-size: 15px;
    padding-left: 20px;
  }
}
.p-contact p::before {
  position: absolute;
  color: #DDA934;
  content: "■";
  left: 0;
}
.p-contact p:nth-child(6) {
  padding-left: 0;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-contact p:nth-child(6) {
    text-align: right;
  }
}
.p-contact p:nth-child(6)::before {
  display: none;
}
.p-contact .screen-reader-response p {
  text-align: center;
}
.p-contact .screen-reader-response p::before {
  display: none;
}
.p-contact .screen-reader-response ul {
  display: none;
}
.p-contact .wpcf7-response-output {
  display: none;
}

.p-pagetop {
  position: fixed;
  bottom: 44px;
  right: 24px;
  width: 36px;
  height: 36px;
  border: solid 1px #fff;
  background-color: rgba(255, 255, 255, 0.4);
  transition: 0.3s;
  cursor: pointer;
}
.p-pagetop::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #fff transparent;
  content: "";
}
.p-pagetop:hover {
  background-color: rgba(255, 255, 255, 0.2);
  bottom: 50px;
}

.p-footer {
  width: 90%;
  max-width: 1180px;
  margin: auto;
  border-top: solid 1px rgba(255, 255, 255, 0.18);
  padding-top: 4.6%;
  margin-top: 5.8%;
  padding-bottom: 3%;
}
@media screen and (max-width: 820px) {
  .p-footer {
    margin-top: 10%;
    padding-top: 6%;
  }
}
.p-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  max-width: 798px;
  margin: 0 auto 6%;
}
@media screen and (max-width: 520px) {
  .p-footer__nav {
    margin-bottom: 8%;
  }
}
.p-footer__nav-item {
  width: 24%;
}
@media screen and (max-width: 760px) {
  .p-footer__nav-item {
    width: 48.5%;
    margin-bottom: 3.4%;
  }
}
.p-footer__nav-item a {
  color: #fff;
  display: block;
  border: solid 1px #fff;
  text-align: center;
  font-family: "Teko", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
  padding-top: 18px;
  padding-bottom: 10px;
}
.p-footer__nav-item a span {
  display: block;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 3px 6px 8px;
}
.p-footer__nav-item a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .p-footer__nav-item a {
    font-size: 26px;
  }
}
@media screen and (max-width: 820px) {
  .p-footer__nav-item a {
    font-size: 2.8vw;
  }
  .p-footer__nav-item a span {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 760px) {
  .p-footer__nav-item a {
    width: 100%;
    font-size: 22px;
  }
  .p-footer__nav-item a span {
    font-size: 11px;
  }
}
.p-footer__nav-contact {
  width: 100%;
  margin-top: 3.4%;
}
.p-footer__nav-contact a {
  display: block;
  margin: auto;
  width: calc(50% - 8px);
  margin: auto;
  border: solid 1px #000;
  box-shadow: 0 0 0 3px #fff;
  background-color: #DDA934;
  color: #000;
  font-family: "Teko", sans-serif;
  font-size: 26px;
  text-align: center;
  padding: 22px 0 18px;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: 0.2s ease-in-out;
}
.p-footer__nav-contact a span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  position: relative;
  left: 14px;
  top: -4px;
}
.p-footer__nav-contact a:hover {
  border: solid 1px #fff;
}
@media screen and (max-width: 760px) {
  .p-footer__nav-contact a {
    width: 100%;
  }
}
.p-footer__copy {
  text-align: center;
  font-size: 14px;
  font-family: "Teko", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.c-page-title {
  display: inline-block;
  font-size: 35px;
  letter-spacing: 0.03em;
  font-family: "Teko", sans-serif;
  position: relative;
  text-align: center;
  font-weight: 400;
  margin-bottom: 4.8%;
  margin-top: 4.9%;
  line-height: 1.3;
}
@media screen and (max-width: 520px) {
  .c-page-title {
    font-size: 33px;
  }
}
@media screen and (min-width: 1280px) {
  .c-page-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 820px) {
  .c-page-title {
    margin-bottom: 9%;
  }
}
.c-page-title > i {
  font-style: normal;
  position: relative;
}
.c-page-title > i::before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  content: "";
  left: -24px;
  top: 40%;
}
@media screen and (max-width: 520px) {
  .c-page-title > i::before {
    top: 35%;
  }
}
.c-page-title > i::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  content: "";
  right: -20px;
  top: 40%;
}
@media screen and (max-width: 520px) {
  .c-page-title > i::after {
    top: 35%;
  }
}
.c-page-title span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.c-more-arrow-btn {
  width: 90%;
  margin: auto;
  text-align: right;
  margin-top: 40px;
  position: relative;
}
.c-more-arrow-btn a {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.03em;
  font-family: "Teko", sans-serif;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  position: relative;
  line-height: 1;
  padding-bottom: 14px;
  padding-right: 32px;
  text-shadow: 0px 0px 10px #000;
}
.c-more-arrow-btn a::before {
  position: absolute;
  background: url(/images/more_arrow.svg) top right no-repeat;
  width: 130px;
  height: 17px;
  content: "";
  bottom: 0;
  right: 0;
  background-size: 100%;
  transition: all 0.2s 0s ease;
}
.c-more-arrow-btn a:hover::before {
  right: -15px;
}

.c-section-title {
  font-family: "Teko", sans-serif;
  font-size: 22px;
  font-weight: 400;
  font-size: 42px;
  position: relative;
  padding-left: 20px;
  line-height: 1;
  border-bottom: solid 1px #fff;
  padding-bottom: 0.4%;
  margin-bottom: 2.2%;
}
@media screen and (max-width: 820px) {
  .c-section-title {
    margin-bottom: 2%;
  }
}
@media screen and (max-width: 760px) {
  .c-section-title {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 820px) {
  .c-section-title {
    font-size: 32px;
  }
}
.c-section-title::before {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  content: "";
  left: -3px;
  top: 15px;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .c-section-title::before {
    width: 10px;
    height: 10px;
    top: 12px;
    left: 0;
  }
}
.c-section-title span {
  display: inline-block;
  font-size: 16px;
  padding-left: 5%;
  position: relative;
  bottom: 3px;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .c-section-title span {
    padding-left: 30px;
    font-size: 12px;
  }
}
.c-section-title span::before {
  position: absolute;
  left: 30px;
  top: -6px;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #fff;
  transform: rotate(30deg);
}
@media screen and (max-width: 820px) {
  .c-section-title span::before {
    left: 17px;
  }
}

.c-flow-list {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding-top: 1.5%;
  padding-left: 0;
  list-style: none;
  margin-bottom: 4%;
}
.c-flow-list__item {
  background-color: rgba(255, 255, 255, 0.26);
  position: relative;
  margin-bottom: 3%;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.9;
  padding: 1.3% 5% 2% 60px;
}
.c-flow-list__item:not(:last-child)::before {
  position: absolute;
  height: 111%;
  width: 2px;
  content: "";
  background-color: #fff;
  top: 30px;
  left: 13px;
}
.c-flow-list__item p {
  margin-bottom: 1%;
}
@media screen and (max-width: 820px) {
  .c-flow-list__item {
    font-size: 14px;
    margin-bottom: 6%;
  }
}
.c-flow-list__item a {
  text-decoration: underline;
}
.c-flow-list__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  font-size: 34px;
  color: #000;
  font-family: "Teko", sans-serif;
  font-weight: 400;
  background-color: #fff;
  position: absolute;
  left: -13px;
  top: -13px;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .c-flow-list__number {
    width: 40px;
    height: 40px;
    font-size: 24px;
    left: -8px;
    top: -8px;
    padding-top: 5px;
  }
}
.c-flow-list__title {
  font-size: 20px;
  font-weight: 600;
  padding-top: 0.4%;
  letter-spacing: 0.02em;
  margin-bottom: 2%;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .c-flow-list__title {
    font-size: 16px;
    margin-bottom: 4%;
    padding-top: 3%;
  }
}

.c-layout01 {
  border: solid 1px #fff;
}
.c-layout01 dt {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  border-bottom: solid 1px #fff;
  padding: 1.6% 0;
}
@media screen and (max-width: 820px) {
  .c-layout01 dt {
    font-size: 14px;
  }
}
.c-layout01 dd {
  text-align: left;
  line-height: 2.14;
  padding: 3% 3% 2%;
  font-size: 15px;
}
@media screen and (max-width: 820px) {
  .c-layout01 dd {
    font-size: 13px;
  }
}
.c-layout01 dd p {
  padding-bottom: 1%;
}
.c-layout02 {
  font-size: 16px;
  padding-left: 24px;
  padding-top: 2%;
}
@media screen and (max-width: 820px) {
  .c-layout02 {
    font-size: 14px;
  }
}
.c-layout02 dt {
  font-weight: 600;
  position: relative;
  padding-bottom: 1%;
}
.c-layout02 dt::before {
  position: absolute;
  left: -18px;
  top: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 4.5px 0 4.5px;
  border-color: #fff transparent transparent transparent;
  content: "";
}
@media screen and (max-width: 820px) {
  .c-layout02 dt::before {
    border-width: 8px 4px 0 4px;
    top: 8px;
    left: -15px;
  }
}
.c-layout02 dd {
  margin-bottom: 2%;
}
@media screen and (max-width: 820px) {
  .c-layout02 dd {
    margin-bottom: 5%;
    margin-top: 1%;
  }
}
.c-layout03 {
  border: solid 1px #fff;
  padding: 1.5% 3%;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 15px;
}
.c-layout03 li {
  padding-left: 15px;
  position: relative;
}
.c-layout03 li::before {
  position: absolute;
  left: 0;
  top: 16px;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  content: "";
}
@media screen and (max-width: 520px) {
  .c-layout03 li {
    padding-left: 10px;
  }
  .c-layout03 li::before {
    top: 12px;
  }
}

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