@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  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;
}

* {
  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: #666666;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a:hover p:hover {
  opacity: 0.7;
}
a:hover img:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  font-size: 62.5%;
  color: #000;
  font-family: "Ubuntu", sans-serif;
  overflow-x: hidden;
}

.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 {
  margin: auto;
  max-width: 120rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .l-container {
    max-width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 93.3333333333vw;
  }
}

.l-header {
  width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}
.l-header__Inner {
  padding: 3.5rem 2.6rem 3rem 3.8rem;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__Inner {
    padding: 2.6666666667vw 4vw;
  }
}
.l-header__Logo {
  max-width: 12.3rem;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .l-header__Logo {
    width: 21.3333333333vw;
  }
}
.l-header__Logo-Txt {
  font-size: 1.2rem;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-header__Openbtn {
    position: absolute;
    top: 3.4666666667vw;
    right: 5.2533333333vw;
    z-index: 10000;
    width: 8vw;
    height: 5.3333333333vw;
  }
}
.l-header__Openbtn span {
  display: inline-block;
  position: absolute;
  left: 50%;
  border-radius: 5px;
  background: #57BEF9;
  width: 8vw;
  height: 0.2666666667vw;
  transform: translateX(-50%);
  transition: 0.6s;
}
.l-header__Openbtn span:nth-of-type(1) {
  top: 0;
}
.l-header__Openbtn span:nth-of-type(2) {
  top: 2.6666666667vw;
}
.l-header__Openbtn span:nth-of-type(3) {
  top: 5.3333333333vw;
}
.l-header__Openbtn.-active span:nth-of-type(1) {
  transform: rotate(-45deg);
  left: calc(50% - 16px);
  top: 2.6666666667vw;
}
.l-header__Openbtn.-active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__Openbtn.-active span:nth-of-type(3) {
  transform: rotate(45deg);
  left: calc(50% - 16px);
  top: 2.6666666667vw;
}
@media screen and (max-width: 767px) {
  .l-header__Nav {
    position: fixed;
    width: 100%;
    height: calc(100vh - 13.3333333333vw);
    background: #fff;
    right: -100%;
    top: 12vw;
    transition: all 0.4s;
    z-index: 1000;
    padding: 5.3333333333vw 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__Nav.-active {
    right: 0;
  }
}
.l-header__Nav > ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__Nav > ul {
    display: block;
  }
}
.l-header__Nav > ul > li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__Nav > ul > li {
    margin-bottom: 4vw;
  }
}
.l-header__Nav > ul > li > a {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  display: inline-block;
  padding: 0 1.5rem;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .l-header__Nav > ul > li > a {
    font-size: 1.1666666667vw;
    padding: 0 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__Nav > ul > li > a {
    padding: 0;
    height: auto;
    font-size: 4.2666666667vw;
  }
}
.l-header__Nav > ul > li > a:hover {
  color: #57BEF9;
}
.l-header__Nav > ul > li.-contact {
  width: 16.9rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .l-header__Nav > ul > li.-contact {
    width: 15vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__Nav > ul > li.-contact {
    margin: auto;
    width: 80vw;
  }
}
.l-header__Nav > ul > li.-contact a {
  border: 0.1rem solid #000;
  border-radius: 5rem;
  position: relative;
  padding: 1.3rem 0;
  font-size: 1.2rem;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .l-header__Nav > ul > li.-contact a {
    font-size: 1.1666666667vw;
    padding: 1.1666666667vw 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header__Nav > ul > li.-contact a {
    font-size: 3.7333333333vw;
    border-radius: 8vw;
    padding: 2.6666666667vw;
  }
}
.l-header__Nav > ul > li.-contact a:before {
  content: "";
  position: absolute;
  top: calc(50% - 0.35rem);
  right: 1.9rem;
  width: 1.1rem;
  height: 0.7rem;
  background: url("./../img/icon_headcontact_arrow.svg");
  background-size: cover;
}
.l-header__Nav > ul > li.-contact a:hover {
  background: #DF702F;
  color: #000;
  opacity: 1;
}

.fixBtn {
  position: fixed;
  right: 0;
  top: 45rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .fixBtn {
    display: none;
  }
}

.l-main {
  width: 100%;
  max-width: 100%;
}

.p-footcontact {
  margin-top: -6rem;
  background: linear-gradient(-90deg, transparent 0%, transparent 50%, #000 50%, #000 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footcontact {
    margin-top: 0;
    background: #000;
  }
}
.p-footcontact:before {
  content: "";
  width: 2rem;
  height: 16rem;
  background: #DF702F;
  position: absolute;
  top: -10rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-footcontact:before {
    width: 2.6666666667vw;
    height: 21.3333333333vw;
    top: -13.3333333333vw;
  }
}
.p-footcontact .l-container {
  padding: 8rem 0;
  background: #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footcontact .l-container {
    background: none;
    padding: 13.3333333333vw 0;
  }
}
.p-footcontact .l-container:before {
  content: "";
  width: 11.2rem;
  height: 2.7rem;
  background: #EA4891;
  position: absolute;
  top: 3.1rem;
  right: -4.2rem;
}
@media screen and (max-width: 767px) {
  .p-footcontact .l-container:before {
    width: 14.9333333333vw;
    height: 3.6vw;
    top: 4.1333333333vw;
    right: -5.6vw;
  }
}
.p-footcontact .l-container:after {
  content: "";
  width: 6rem;
  height: 8rem;
  background: #57BEF9;
  position: absolute;
  bottom: -4rem;
  right: 22.3rem;
}
@media screen and (max-width: 767px) {
  .p-footcontact .l-container:after {
    width: 8vw;
    height: 10.6666666667vw;
    bottom: -5.3333333333vw;
    right: 3.0666666667vw;
  }
}
.p-footcontact-Flex {
  padding: 0 6rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .p-footcontact-Flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-footcontact-Flex {
    padding: 0;
    display: block;
  }
}
.p-footcontact .c-Ttl {
  margin-bottom: 0;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-footcontact .c-Ttl {
    text-align: center;
    margin-bottom: 5.3333333333vw;
  }
}
.p-footcontact .c-Ttl .-eng {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-footcontact .c-Ttl .-eng {
    display: inline-block;
  }
}
.p-footcontact .c-Ttl .-jp {
  display: block;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .p-footcontact .c-Ttl .-jp {
    padding-left: 2.6666666667vw;
    display: inline-block;
  }
}
.p-footcontact .c-Btn {
  width: 28.5rem;
  background: #000;
  border: 0.1rem solid #fff;
  color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .p-footcontact .c-Btn {
    margin-top: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-footcontact .c-Btn {
    margin: auto;
    width: 66.6666666667vw;
  }
}
.p-footcontact .c-Btn:before {
  background-image: url(./../img/icon_btnarrow_white.svg);
  transition: 0.3s;
}
.p-footcontact .c-Btn:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}
.p-footcontact .c-Btn:hover:before {
  background-image: url(./../img/icon_btnarrow_black.svg);
}
.p-footcontact-Detail {
  margin: 0 2.4rem 0 9.3rem;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .p-footcontact-Detail {
    margin: 0 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-footcontact-Detail {
    margin: 0 auto 5.3333333333vw;
    text-align: center;
  }
}
.p-footcontact-Detail-Txt {
  font-size: 1.4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-footcontact-Detail-Txt {
    font-size: 3.7333333333vw;
  }
}
.p-footcontact-Detail-Number a {
  font-size: 3.4rem;
  font-weight: 500;
  color: #fff;
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-footcontact-Detail-Number a {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-footcontact-Detail-Number a {
    font-size: 7.4666666667vw;
  }
}
.p-footcontact-Detail-Number a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.953rem;
  height: 2.873rem;
  background: url(./../img/icon_tel_white.svg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-footcontact-Detail-Number a:before {
    width: 3.7333333333vw;
    height: 5.3333333333vw;
  }
}
.p-footcontact-Detail-Number span {
  font-size: 1.2rem;
  margin-left: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
  .p-footcontact-Detail-Number span {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-footcontact-Detail-Number span {
    font-size: 3.2vw;
    display: block;
  }
}

.l-footer .l-container {
  display: flex;
  padding: 6rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .l-footer .l-container {
    display: block;
    padding: 8vw 0 5.3333333333vw;
  }
}
.l-footer__Info {
  max-width: 28.7rem;
  width: 50%;
  margin-right: 11.5rem;
}
@media screen and (max-width: 1200px) {
  .l-footer__Info {
    margin-right: 8.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__Info {
    max-width: none;
    width: 100%;
    margin-right: 0;
  }
}
.l-footer__Info-Logo {
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__Info-Logo {
    width: 40vw;
    margin-bottom: 5.3333333333vw;
  }
}
.l-footer__Info-Address {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.2rem;
  margin-bottom: 3.1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__Info-Address {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.l-footer__Info-Tel {
  display: flex;
  align-items: center;
}
.l-footer__Info-Tel a {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-left: 1.6rem;
  position: relative;
  color: #000;
}
@media screen and (max-width: 767px) {
  .l-footer__Info-Tel a {
    font-size: 3.7333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.l-footer__Info-Tel a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1.471rem;
  background: url(./../img/icon_tel_black.svg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .l-footer__Info-Tel a:before {
    width: 3.7333333333vw;
    height: 5.3333333333vw;
  }
}
.l-footer__Info-Tel span {
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__Info-Tel span {
    font-size: 2.6666666667vw;
    padding-left: 2.6666666667vw;
  }
}
.l-footer__Sns {
  display: flex;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__Sns {
    margin-top: 2.6666666667vw;
  }
}
.l-footer__Sns a {
  padding: 0 2rem 0 0;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .l-footer__Sns a {
    padding-right: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
}
.l-footer__Sns .fa-twitter:before {
  content: "𝕏";
  font-family: unset;
  font-weight: bold;
}
.l-footer__Links {
  max-width: 48.7rem;
  width: 50%;
  display: flex;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__Links {
    width: 100%;
    max-width: none;
    padding-top: 8vw;
    flex-wrap: wrap;
  }
}
.l-footer__Links-List {
  margin-right: 8rem;
}
@media screen and (max-width: 1200px) {
  .l-footer__Links-List {
    margin-right: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__Links-List {
    width: 50%;
    margin-right: 0;
  }
}
.l-footer__Links-List:last-child {
  margin-right: 0;
}
.l-footer__Links-List li {
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__Links-List li {
    margin-bottom: 5.3333333333vw;
  }
}
.l-footer__Links-List li a {
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer__Links-List li a {
    font-size: 3.7333333333vw;
  }
}
.l-footer__End {
  background: #000;
}
.l-footer__End .l-container {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer__End .l-container {
    padding: 2.6666666667vw 0;
    justify-content: center;
  }
}
.l-footer__End-Link {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer__End-Link {
    display: none;
  }
}
.l-footer__End-Copy {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer__End-Copy {
    font-size: 3.7333333333vw;
  }
}

.c-Ttl {
  color: #000;
  font-weight: 700;
  margin-bottom: 5rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-Ttl {
    margin-bottom: 5.3333333333vw;
  }
}
.c-Ttl .-eng {
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-Ttl .-eng {
    font-size: 8vw;
  }
}
.c-Ttl .-jp {
  padding-left: 2.2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-Ttl .-jp {
    padding-left: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.c-Ttl__Sub {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 5rem;
  margin-bottom: 2rem;
  letter-spacing: 0.3rem;
}

.c-Btn {
  display: block;
  width: 19.98rem;
  text-align: center;
  background: #FBED56;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 3rem;
  line-height: 1;
  padding: 1.7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-Btn {
    width: 53.3333333333vw;
    font-size: 3.7333333333vw;
    border-radius: 8vw;
    padding: 4vw;
  }
}
.c-Btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 1.09rem;
  height: 0.7rem;
  background: url("./../img/icon_btnarrow_black.svg");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-Btn:before {
    right: 5.3333333333vw;
    width: 4.2666666667vw;
    height: 2.6666666667vw;
  }
}

.eachTextAnime {
  opacity: 0;
}
.eachTextAnime span {
  opacity: 0;
  display: inline-block;
}
.eachTextAnime.appeartext {
  opacity: 1;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-top__Mv {
  position: relative;
  width: 100%;
  height: 60vw;
}
@media screen and (min-width: 1501px) {
  .p-top__Mv {
    height: 900px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Mv {
    height: auto;
  }
}
.p-top__Mv:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.p-top__Mv .swiper-wrapper {
  transition-timing-function: linear;
}
@media screen and (min-width: 1501px) {
  .p-top__Mv .swiper-slide {
    width: 1500px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Mv .swiper-slide {
    width: 100% !important;
  }
}
.p-top__Mv-Ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100.5rem;
  font-size: 16rem;
  z-index: 100;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 15rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__Mv-Ttl {
    width: 93.3333333333vw;
    font-size: 16vw;
    line-height: 19.2vw;
  }
}
.p-top__Mv-Ttl .-ttl01 span:nth-of-type(1) {
  color: #DF702F;
}
.p-top__Mv-Ttl .-ttl02 {
  padding-left: 17.9rem;
}
@media screen and (max-width: 767px) {
  .p-top__Mv-Ttl .-ttl02 {
    padding-left: 5.3333333333vw;
  }
}
.p-top__Mv-Ttl .-ttl02 span:nth-of-type(1) {
  color: #EA4891;
}
.p-top__Mv-Ttl .-ttl02 span:last-of-type {
  color: #57BEF9;
}
.p-top__Mv-Subttl {
  position: absolute;
  font-size: 3.6rem;
  z-index: 100;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  top: 45%;
  left: 62%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top__Mv-Subttl {
    font-size: 4.2666666667vw;
    top: 47%;
    left: 70%;
    width: 50.6666666667vw;
  }
}
.p-top__Message {
  padding-bottom: 10rem;
  background: #F2F2F2;
}
@media screen and (max-width: 767px) {
  .p-top__Message {
    padding: 13.3333333333vw 0 21.3333333333vw;
  }
}
.p-top__Message-Flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top__Message-Flex {
    display: block;
  }
}
.p-top__Message-Thum {
  width: 41.6%;
  height: 52rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__Message-Thum {
    width: 100%;
    height: auto;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top__Message-Thum:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 65rem;
  height: 52rem;
  content: "";
  background: url("./../img/img_top_message_01.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1501px) {
  .p-top__Message-Thum:before {
    background-position: top center;
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Message-Thum:before {
    display: none;
  }
}
.p-top__Message-Detail {
  width: 53.3%;
}
@media screen and (max-width: 767px) {
  .p-top__Message-Detail {
    width: 100%;
  }
}
.p-top__Message-Detail-Subttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 5rem;
}
@media screen and (max-width: 1200px) {
  .p-top__Message-Detail-Subttl {
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Message-Detail-Subttl {
    font-size: 4.8vw;
    line-height: 6.4vw;
    text-align: justify;
  }
}
.p-top__Message-Detail-Name {
  padding: 6rem 0 3.7rem 6.6rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-top__Message-Detail-Name {
    padding: 2.5vw 0 1.25vw 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Message-Detail-Name {
    padding: 8vw 0;
  }
}
@media screen and (max-width: 1200px) {
  .p-top__Message-Detail-Name img {
    width: 25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Message-Detail-Name img {
    width: 40vw;
  }
}
.p-top__Message-Detail-Name:before {
  position: absolute;
  top: -6.6rem;
  right: 11.7rem;
  width: 18.6rem;
  height: 34.4rem;
  content: "";
  background: url("./../img/illust_president.svg");
  background-size: cover;
}
@media screen and (max-width: 1200px) {
  .p-top__Message-Detail-Name:before {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Message-Detail-Name:before {
    top: -13.3333333333vw;
    right: 0;
    width: 40vw;
    height: 74.1333333333vw;
  }
}
.p-top__Products {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top__Products {
    padding: 13.3333333333vw 0;
  }
}
.p-top__Products-Flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top__Products-Flex {
    display: block;
    margin-bottom: 8vw;
  }
}
.p-top__Products-Catch {
  font-size: 3rem;
  line-height: 5rem;
  letter-spacing: 0.05em;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .p-top__Products-Catch {
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Products-Catch {
    font-size: 4.8vw;
    line-height: 6.4vw;
    text-align: justify;
  }
}
.p-top__Products-List {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .p-top__Products-List {
    margin-bottom: 5.3333333333vw;
  }
}
.p-top__Products-Item {
  width: 25vw;
}
@media screen and (max-width: 767px) {
  .p-top__Products-Item {
    width: 50%;
  }
}
.p-top__Products-Item a {
  width: 100%;
  height: 33.3333333333vw;
  display: block;
  position: relative;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top__Products-Item a {
    height: 53.3333333333vw;
  }
}
.p-top__Products-Item:nth-child(1) a {
  background-image: url("./../img/img_top_products_01.png");
}
.p-top__Products-Item:nth-child(2) a {
  background-image: url("./../img/img_top_products_02.png");
}
.p-top__Products-Item:nth-child(3) a {
  background-image: url("./../img/img_top_products_03.png");
}
.p-top__Products-Item:nth-child(4) a {
  background-image: url("./../img/img_top_products_04.png");
}
.p-top__Products-Item:nth-child(5) a {
  background-image: url("./../img/img_top_products_05.png");
}
.p-top__Products-Item:nth-child(6) a {
  background-image: url("./../img/img_top_products_06.png");
}
.p-top__Products-Item:nth-child(7) a {
  background-image: url("./../img/img_top_products_07.png");
}
.p-top__Products-Item:nth-child(8) a {
  background-image: url("./../img/img_top_products_08.png");
}
.p-top__Products-Item-Box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-top__Products-Item-Box-Thum {
  height: 8.6666666667vw;
  margin-bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top__Products-Item-Box-Thum {
    height: 18.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Products-Item-Box-Thum img {
    width: auto;
    height: 100%;
  }
}
.p-top__Products-Item-Box-Ttl {
  margin-top: 2rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__Products-Item-Box-Ttl {
    margin-top: 5.3333333333vw;
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Products .c-Btn {
    margin: auto;
  }
}
.p-top__Case {
  padding-top: 11rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__Case {
    padding-top: 13.3333333333vw;
  }
}
.p-top__Case:before {
  content: "";
  width: 16rem;
  height: 2rem;
  background: #52C9B7;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-top__Case:before {
    width: 21.3333333333vw;
    height: 2.6666666667vw;
  }
}
.p-top__Case-Wrap {
  background: #EA4891;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Wrap {
    padding: 5.3333333333vw;
  }
}
.p-top__Case-Wrap .swiper-slide {
  padding: 4rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Wrap .swiper-slide {
    padding: 5.3333333333vw;
  }
}
.p-top__Case-Wrap .swiper-button-next,
.p-top__Case-Wrap .swiper-button-prev {
  color: #000;
  background-image: none;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Wrap .swiper-button-next,
  .p-top__Case-Wrap .swiper-button-prev {
    display: flex;
  }
}
.p-top__Case-Slidewrap {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Slidewrap {
    margin-bottom: 5.3333333333vw;
  }
}
.p-top__Case-Category {
  display: inline-block;
  color: #fff;
  border-radius: 5rem;
  padding: 1rem 2rem;
  text-align: center;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Category {
    border-radius: 26.6666666667vw;
    padding: 1.3333333333vw 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-top__Case-Category.-pink {
  background: #EA4891;
}
.p-top__Case-Category.-green {
  background: #52C9B7;
}
.p-top__Case-Itemttl {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Itemttl {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-top__Case-Txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top__Case-Flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Flex {
    display: block;
  }
}
.p-top__Case-Flex-Name {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Flex-Name {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-top__Case-Flex-Btn {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  padding-right: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Flex-Btn {
    font-size: 3.7333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.p-top__Case-Flex-Btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.1rem;
  background: url(./../img/icon_btnarrow_black.svg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Flex-Btn:before {
    width: 3.7333333333vw;
    height: 2.4vw;
  }
}
.p-top__Case-Box {
  background: #fff;
  max-width: 83rem;
  width: 100%;
  border-radius: 1rem;
  padding: 3.7rem 5.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Box {
    text-align: center;
    padding: 5.3333333333vw;
    display: block;
    border-radius: 2.6666666667vw;
  }
}
.p-top__Case-Box-Ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-top__Case-Box-Ttl {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Case-Box .c-Btn {
    display: inline-block;
  }
}
.p-top__Recruit {
  padding: 10rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__Recruit {
    padding: 13.3333333333vw 0;
  }
}
.p-top__Recruit:before {
  content: "";
  width: 16rem;
  height: 2rem;
  background: #57BEF9;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top__Recruit:before {
    width: 21.3333333333vw;
    height: 2.6666666667vw;
  }
}
.p-top__Recruit-Inner {
  max-width: 102.7rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .p-top__Recruit-Inner {
    max-width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Recruit-Inner {
    max-width: 93.3333333333vw;
    display: block;
  }
}
.p-top__Recruit-Detail {
  width: 54.5%;
}
@media screen and (max-width: 767px) {
  .p-top__Recruit-Detail {
    width: 100%;
  }
}
.p-top__Recruit-Txt {
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top__Recruit-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top__Recruit-Thum {
  width: 41.6%;
}
@media screen and (max-width: 767px) {
  .p-top__Recruit-Thum {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Recruit .c-Btn.vsp {
    margin: auto;
  }
}
.p-top__Instagram {
  padding: 11.5rem 0 10rem;
  background: #57BEF9;
}
@media screen and (max-width: 767px) {
  .p-top__Instagram {
    padding: 13.3333333333vw 0;
  }
}
.p-top__Instagram-Flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1160px) {
  .p-top__Instagram-Flex {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Instagram-Flex {
    display: block;
    margin-bottom: 0;
  }
}
.p-top__Instagram .c-Ttl {
  color: #fff;
  margin-bottom: 0;
}
@media screen and (max-width: 1160px) {
  .p-top__Instagram .c-Ttl {
    margin-bottom: 3rem;
  }
}
.p-top__Instagram-Txt {
  font-size: 1.4rem;
  color: #fff;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
  max-width: 70rem;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .p-top__Instagram-Txt {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Instagram-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top__Instagram-List {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top__Instagram-List {
    margin-bottom: 5.3333333333vw;
    justify-content: flex-start;
  }
}
.p-top__Instagram-List li {
  width: 23%;
  margin-bottom: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-top__Instagram-List li {
    margin-bottom: 4vw;
    width: 28vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Instagram-List li:nth-child(3n+2) {
    margin: 0 4vw 4vw;
  }
}
.p-top__Instagram .c-Btn {
  width: 28.6rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-top__Instagram .c-Btn {
    width: 66.6666666667vw;
  }
}
.p-top__Blog {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-top__Blog {
    padding: 13.3333333333vw 0;
  }
}
.p-top__Blog .c-Ttl {
  text-align: center;
  display: block;
}
.p-top__Blog .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-top__Blog-List {
  display: flex;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top__Blog-List {
    display: block;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top__Blog-Item {
  width: 31.6%;
}
@media screen and (max-width: 767px) {
  .p-top__Blog-Item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.p-top__Blog-Item:nth-child(2) {
  margin: 0 2.6%;
}
@media screen and (max-width: 767px) {
  .p-top__Blog-Item:nth-child(2) {
    margin: 2.6666666667vw 0;
  }
}
.p-top__Blog-Thum {
  margin-bottom: 2.2rem;
  height: 28rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__Blog-Thum {
    width: 26.6666666667vw;
    height: 26.6666666667vw;
    margin-bottom: 0;
    border: 1px solid #ccc;
  }
}
.p-top__Blog-Thum img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top__Blog-Sp {
    width: calc(100% - 32vw);
  }
}
.p-top__Blog-Flex {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__Blog-Flex {
    margin-bottom: 1.3333333333vw;
  }
}
.p-top__Blog-Flex-Date {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top__Blog-Flex-Date {
    font-size: 2.6666666667vw;
  }
}
.p-top__Blog-Flex-Cate {
  line-height: 1;
  margin-left: 0.7rem;
  padding-left: 0.7rem;
  border-left: 0.1rem solid #000;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__Blog-Flex-Cate {
    margin-left: 1.3333333333vw;
    padding-left: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
.p-top__Blog-Subttl {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__Blog-Subttl {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 0;
  }
}
.p-top__Blog-Txt {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__Blog-Txt {
    display: none;
  }
}
.p-top__Blog .c-Btn {
  width: 28.5rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-top__Blog .c-Btn {
    width: 66.6666666667vw;
  }
}
.p-top__Tiktok {
  padding: 10rem 0;
  background: #FBED56;
}
@media screen and (max-width: 767px) {
  .p-top__Tiktok {
    padding: 13.3333333333vw 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Tiktok .l-container {
    max-width: 100%;
  }
}
.p-top__Tiktok .c-Ttl {
  text-align: center;
  display: block;
}
.p-top__Tiktok .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top__Tiktok .tiktok-feed-list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Tiktok #tiktok-feed-feed-0 .tiktok-feed-item {
    position: static !important;
    height: 66.6666666667vw !important;
  }
}
@media screen and (max-width: 767px) {
  .p-top__Tiktok .tiktok-feed-list[data-feed_layout=masonry] .tiktok-feed-item,
  .p-top__Tiktok .tiktok-feed-list[data-feed_layout=gallery] .tiktok-feed-item {
    min-width: auto !important;
    width: 50% !important;
  }
}
.p-top__Tiktok .c-Btn {
  width: 28.5rem;
  margin: auto;
  background: #000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__Tiktok .c-Btn {
    width: 66.6666666667vw;
  }
}
.p-top__Tiktok .c-Btn:before {
  background-image: url("./../img/icon_btnarrow_white.svg");
}
.p-top__What {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-top__What {
    padding: 13.3333333333vw 0;
  }
}
.p-top__What .c-Ttl {
  text-align: center;
  display: block;
}
.p-top__What .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-top__What-Movie {
  max-width: 100rem;
  width: 100%;
  padding-top: 56.25%;
  margin: 0 auto 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__What-Movie {
    margin: 0 auto 5.3333333333vw;
  }
}
.p-top__What-Movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-top__What-Bnr {
  max-width: 100rem;
  width: 100%;
  margin: auto;
}
.p-top__News {
  padding: 10rem 0;
  background: url("./../img/img_top_news_bg.jpg");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top__News {
    padding: 13.3333333333vw 0;
  }
}
.p-top__News .l-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top__News .l-container {
    display: block;
  }
}
.p-top__News-Box {
  max-width: 80rem;
  width: 100%;
}
.p-top__News-List {
  margin-bottom: 2rem;
}
.p-top__News-Item {
  border-bottom: 0.1rem solid #D5D5D5;
}
.p-top__News-Anchor {
  display: flex;
  align-items: center;
  padding: 1.6rem 2.6rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-top__News-Anchor {
    padding: 2.6666666667vw 0;
    display: block;
  }
}
.p-top__News-Date {
  font-size: 1.4rem;
  margin-right: 2.9rem;
}
@media screen and (max-width: 767px) {
  .p-top__News-Date {
    font-size: 3.7333333333vw;
    margin-right: 0;
    margin-bottom: 1.3333333333vw;
    display: block;
  }
}
.p-top__News-Ttl {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top__News-Ttl {
    font-size: 4.2666666667vw;
  }
}
.p-top__News-Btn {
  text-align: right;
}
.p-top__News-Btn a {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  padding-right: 2.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__News-Btn a {
    font-size: 3.7333333333vw;
    padding-right: 7.4666666667vw;
  }
}
.p-top__News-Btn a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.096rem;
  height: 0.72rem;
  background: url(./../img/icon_btnarrow_black.svg);
  background-size: cover;
  background-position: right center;
}
@media screen and (max-width: 767px) {
  .p-top__News-Btn a:before {
    width: 4.2666666667vw;
    height: 2.6666666667vw;
  }
}

.p-servicelist {
  background: #F2F2F2;
  position: relative;
  z-index: 10;
}
.p-servicelist-Inner {
  max-width: 83rem;
  width: 100%;
  margin: auto;
}
.p-servicelist-List {
  transform: translateY(-12.5rem);
  display: flex;
  justify-content: space-between;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .p-servicelist-List {
    transform: translateY(0);
    display: block;
  }
}
.p-servicelist-Item {
  width: 48%;
  max-width: 39rem;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-servicelist-Item {
    max-width: none;
    overflow: hidden;
    width: 100%;
  }
}
.p-servicelist-Item:before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  position: absolute;
  right: 2.6rem;
  bottom: -1.2rem;
  font-size: 8.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-servicelist-Item:before {
    right: 5.3333333333vw;
    bottom: -1.8666666667vw;
    font-size: 12.8vw;
  }
}
.p-servicelist-Item:nth-child(1) .p-servicelist-Anchor {
  background: #DF702F;
}
.p-servicelist-Item:nth-child(2) .p-servicelist-Anchor {
  background: #57BEF9;
}
.p-servicelist-Item:nth-child(3) .p-servicelist-Anchor {
  background: #57BEF9;
}
.p-servicelist-Anchor {
  display: block;
  position: relative;
  color: #fff;
  padding: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-servicelist-Anchor {
    padding: 4vw;
  }
}
.p-servicelist-Number {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 0.3rem;
  line-height: 1;
  display: block;
  margin-bottom: 6.3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-servicelist-Number {
    font-size: 4.8vw;
    padding-left: 2.6666666667vw;
    margin-bottom: 8vw;
  }
}
.p-servicelist-Number:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.8rem;
  transform: translateY(-50%);
  width: 2.3rem;
  height: 0.1rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-servicelist-Number:before {
    left: -4vw;
    width: 4vw;
    height: 0.2666666667vw;
  }
}
.p-servicelist-Subttl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-servicelist-Subttl {
    font-size: 7.4666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-servicelist-Eng {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-servicelist-Eng {
    font-size: 3.2vw;
    margin-bottom: 0;
  }
}
.p-servicelist-Arrow {
  display: inline-block;
  width: 4.3rem;
}
@media screen and (max-width: 767px) {
  .p-servicelist-Arrow {
    position: absolute;
    top: calc(50% - 4vw);
    right: 5.3333333333vw;
    width: 8vw;
  }
}

.p-contact__Wrap {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap {
    padding: 13.3333333333vw 0;
  }
}
.p-contact__Wrap-Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Flex {
    display: block;
    margin-bottom: 4vw;
  }
}
.p-contact__Wrap-Flex-Txt {
  width: 58%;
  max-width: 74rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Flex-Txt {
    width: 100%;
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-contact__Wrap-Flex-Detail {
  width: 40%;
  max-width: 41.2rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Flex-Detail {
    width: 100%;
    text-align: center;
  }
}
.p-contact__Wrap-Flex-Detail-Txt {
  font-size: 1.6rem;
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Flex-Detail-Txt {
    width: 100%;
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-contact__Wrap-Flex-Detail-Number a {
  font-size: 3.4rem;
  font-weight: 500;
  color: #000;
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Flex-Detail-Number a {
    padding-left: 8vw;
    font-size: 7.4666666667vw;
  }
}
.p-contact__Wrap-Flex-Detail-Number a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.953rem;
  height: 2.873rem;
  background: url(./../img/icon_tel_black.svg);
  background-size: cover;
}
.p-contact__Wrap-Flex-Detail-Number span {
  font-size: 1.6rem;
  margin-left: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Flex-Detail-Number span {
    font-size: 4.2666666667vw;
    margin-top: 1.3333333333vw;
    margin-left: 0;
    display: block;
  }
}
.p-contact__Wrap-Support {
  margin-bottom: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Support {
    margin-bottom: 13.3333333333vw;
  }
}
.p-contact__Wrap-Table {
  width: 100%;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Table {
    margin-bottom: 5.3333333333vw;
  }
}
.p-contact__Wrap-Th {
  width: 34.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  vertical-align: top;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Th {
    display: block;
    width: 100%;
    font-size: 4.2666666667vw;
    padding-top: 0;
    padding-bottom: 1.3333333333vw;
  }
}
.p-contact__Wrap-Th.-pt0 {
  padding-top: 0;
}
.p-contact__Wrap-Th:after {
  content: "*";
  color: #DE0000;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Th br {
    display: none;
  }
}
.p-contact__Wrap-Td {
  width: calc(100% - 34.2rem);
  font-size: 1.6rem;
  padding-bottom: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Td {
    display: block;
    width: 100%;
    font-size: 4.2666666667vw;
    padding-bottom: 5.3333333333vw;
  }
}
.p-contact__Wrap-Td input[type=text] {
  font-size: 1.57rem;
  padding: 2.5rem;
  line-height: 1;
  border: 0.1rem solid #ccc;
  width: 100%;
  outline: none;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Td input[type=text] {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw;
  }
}
.p-contact__Wrap-Td textarea {
  font-size: 1.6rem;
  padding: 2.5rem;
  border: 0.1rem solid #ccc;
  width: 100%;
  min-height: 24rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Td textarea {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw;
    min-height: 40vw;
  }
}
.p-contact__Wrap-Td .vertical-item {
  margin-bottom: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Td .vertical-item {
    margin-bottom: 4vw;
  }
}
.p-contact__Wrap-Td input[type=radio] {
  display: none;
}
.p-contact__Wrap-Td input[type=radio] + span.mwform-radio-field-text {
  display: inline-block;
  position: relative;
  padding-left: 2.7rem;
  font-size: 1.57rem;
  color: #000;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Td input[type=radio] + span.mwform-radio-field-text {
    font-size: 3.7333333333vw;
    padding-left: 5.6vw;
  }
}
.p-contact__Wrap-Td input[type=radio] + span.mwform-radio-field-text:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #ccc;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Td input[type=radio] + span.mwform-radio-field-text:before {
    width: 4vw;
    height: 4vw;
    margin-top: -1.8666666667vw;
  }
}
.p-contact__Wrap-Td input[type=radio]:checked + span.mwform-radio-field-text::after {
  position: absolute;
  top: 50%;
  left: 0.4rem;
  content: "";
  background: #DF702F;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.6rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Td input[type=radio]:checked + span.mwform-radio-field-text::after {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
    left: 0.8vw;
    margin-top: -1.0666666667vw;
  }
}
.p-contact__Wrap-Td .error {
  margin-top: 0.5rem;
}
.p-contact__Wrap-Agree {
  text-align: center;
  font-size: 1.6rem;
  color: #000;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-Agree {
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-contact__Wrap-Agree a {
  color: #01ABBA;
  text-decoration: underline;
}
.p-contact__Wrap-AgreeCheck {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-AgreeCheck {
    margin-bottom: 5.3333333333vw;
  }
}
.p-contact__Wrap-AgreeCheck input[type=checkbox] {
  display: none;
}
.p-contact__Wrap-AgreeCheck input[type=checkbox] + span.mwform-checkbox-field-text {
  display: inline-block;
  position: relative;
  padding-left: 3.5rem;
  font-size: 1.6rem;
  color: #000;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-AgreeCheck input[type=checkbox] + span.mwform-checkbox-field-text {
    font-size: 3.7333333333vw;
    padding-left: 5.6vw;
  }
}
.p-contact__Wrap-AgreeCheck input[type=checkbox] + span.mwform-checkbox-field-text:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #000;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-AgreeCheck input[type=checkbox] + span.mwform-checkbox-field-text:before {
    width: 4vw;
    height: 4vw;
    margin-top: -1.8666666667vw;
  }
}
.p-contact__Wrap-AgreeCheck input[type=checkbox]:checked + span.mwform-checkbox-field-text::after {
  position: absolute;
  top: 50%;
  left: 0.6rem;
  content: "";
  width: 0.5rem;
  height: 1rem;
  margin-top: -0.6rem;
  border-right: 0.3rem solid #DF702F;
  border-bottom: 0.3rem solid #DF702F;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap-AgreeCheck input[type=checkbox]:checked + span.mwform-checkbox-field-text::after {
    left: 1.3333333333vw;
    width: 1.3333333333vw;
    height: 2.6666666667vw;
    margin-top: -1.6vw;
    border-right: 0.8vw solid #DF702F;
    border-bottom: 0.8vw solid #DF702F;
  }
}
.p-contact__Wrap .submit_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap .submit_wrap {
    margin: auto;
  }
}
.p-contact__Wrap .submit_wrap input[type=submit].send_btn {
  background-position: center right 2rem;
  background-size: 1.09rem;
  background-repeat: no-repeat;
  background-image: url(./../img/icon_btnarrow_white.svg);
  background-color: #000;
  color: #fff;
  max-width: 27.6rem;
  width: 100%;
  display: block;
  margin: auto;
  text-align: center;
  font-weight: 700;
  transition: 0.6s;
  font-size: 1.4rem;
  border-radius: 3rem;
  padding: 2.1rem 0;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__Wrap .submit_wrap input[type=submit].send_btn {
    width: 64vw;
    font-size: 3.7333333333vw;
    padding: 4vw;
    border-radius: 8vw;
  }
}
.p-contact__Wrap .mw_wp_form_confirm .p-contact__Wrap-Agree {
  display: none;
}
.p-contact__Thanks {
  padding: 10rem 0;
}
.p-contact__Thanks-Txt {
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 6rem;
}
.p-contact__Thanks .p-servicelist {
  background: none;
}
.p-contact__Thanks .p-servicelist-List {
  transform: translateY(0);
  margin-bottom: 6rem;
}
.p-contact__Thanks .c-Btn {
  background: #000;
  color: #fff;
  width: 27.6rem;
  margin: auto;
}
.p-contact__Thanks .c-Btn:before {
  background-image: url("./../img/icon_btnarrow_white.svg");
}

.p-form {
  padding: 6.4rem 0 5.4rem;
}
.p-form__Ttl {
  text-align: center;
  font-weight: 700;
  color: #000;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 2.9rem;
}
.p-form__Txt {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  color: #57BEF9;
  letter-spacing: -0.05em;
  margin-bottom: 1.6rem;
}
.p-form__Attention {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 2.4rem;
  line-height: 2rem;
}
.p-form__Attention .-require {
  font-size: 1.3rem;
  background: #c1272d;
  color: #fff;
  line-height: 1;
  font-weight: 300;
  padding: 0 0.5rem;
}
.p-form__Box {
  max-width: 67rem;
  margin: auto;
  width: 100%;
}
.p-form .p-country-name {
  display: none;
}
.p-form__Table {
  width: 100%;
}
.p-form__Th {
  width: 21.5rem;
  font-size: 1.57rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1.5rem;
}
.p-form__Th.-vat {
  vertical-align: top;
}
.p-form__Th.-pt15 {
  padding-top: 1.5rem;
}
.p-form__Th .-require {
  position: absolute;
  right: 0;
  font-size: 1.3rem;
  background: #c1272d;
  color: #fff;
  line-height: 1;
  font-weight: 300;
  padding: 0.5rem 0.8rem;
}
.p-form__Th .-any {
  position: absolute;
  right: 0;
  font-size: 1.3rem;
  background: #b3b3b3;
  color: #fff;
  line-height: 1;
  font-weight: 300;
  padding: 0.5rem 0.8rem;
}
.p-form__Th .-small {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
}
.p-form__Td {
  padding-left: 2rem;
  padding-bottom: 1.5rem;
  width: calc(100% - 21.5rem);
  font-size: 1.57rem;
}
.p-form__Td input[type=text] {
  font-size: 1.57rem;
  padding: 1.2rem;
  border: 0.1rem solid #ccc;
  width: 100%;
  border-radius: 1rem;
  outline: none;
}
.p-form__Td textarea {
  font-size: 1.57rem;
  padding: 1.2rem;
  border: 0.1rem solid #ccc;
  width: 100%;
  border-radius: 1rem;
  min-height: 14rem;
}
.p-form__Td .horizontal-item {
  display: inline-block;
  width: 17.5rem;
  margin-left: 0 !important;
  margin-bottom: 2rem;
}
.p-form__Td .horizontal-item:nth-child(n+3) {
  margin-bottom: 0;
}
.p-form__Td input[type=radio] {
  display: none;
}
.p-form__Td input[type=radio] + span.mwform-radio-field-text {
  display: inline-block;
  position: relative;
  padding-left: 2.7rem;
  font-size: 1.57rem;
  color: #000;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.p-form__Td input[type=radio] + span.mwform-radio-field-text:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #ccc;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  border-radius: 50%;
}
.p-form__Td input[type=radio]:checked + span.mwform-radio-field-text::after {
  position: absolute;
  top: 50%;
  left: 0.4rem;
  content: "";
  background: #57BEF9;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.6rem;
  border-radius: 50%;
}
.p-form__Td input[type=checkbox] {
  display: none;
}
.p-form__Td input[type=checkbox] + span.mwform-checkbox-field-text {
  display: inline-block;
  position: relative;
  padding-left: 2.7rem;
  font-size: 1.57rem;
  color: #000;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.p-form__Td input[type=checkbox] + span.mwform-checkbox-field-text:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #ccc;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  border-radius: 50%;
}
.p-form__Td input[type=checkbox]:checked + span.mwform-checkbox-field-text::after {
  position: absolute;
  top: 50%;
  left: 0.4rem;
  content: "";
  background: #57BEF9;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.6rem;
  border-radius: 50%;
}
.p-form__Td .input_mail {
  display: none;
}
.p-form__Td .selectWrap {
  width: 16.9rem;
  border: 1px solid #ccc;
  position: relative;
  padding: 0.5rem;
  margin-bottom: 0.95rem;
}
.p-form__Td .selectWrap:before {
  content: "";
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.65rem);
  width: 0;
  height: 0;
  border: 0.85rem solid transparent;
  border-top: 1.3rem solid #57BEF9;
  pointer-events: none;
}
.p-form__Td .selectWrap select {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  font-size: 1.5rem;
  outline: none;
}
.p-form__Td .selectWrap select::-ms-expand {
  display: none;
}
.p-form__Td .-douitxt {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.p-form .submit_wrap {
  display: flex;
  margin: 5rem auto 0;
  justify-content: center;
  align-items: center;
}
.p-form .submit_wrap input[type=submit].send_btn {
  background: linear-gradient(90deg, rgb(41, 171, 226) 0%, rgb(0, 81, 146) 100%);
  color: #fff;
  max-width: 30rem;
  width: 100%;
  display: block;
  margin: auto;
  text-align: center;
  font-weight: 600;
  transition: 0.6s;
  font-size: 2rem;
  border-radius: 0.5rem;
  padding: 1.5rem 0;
  line-height: 1;
  letter-spacing: -0.05em;
}
.p-form .mw_wp_form_confirm .p-contact__Wrap-AgreeCheck {
  display: none;
}

.p-btnbox {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-btnbox {
    display: block;
  }
}
.p-btnbox-Item {
  width: 50%;
  border: 4rem solid;
  padding: 6rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-btnbox-Item {
    width: 100%;
    border: 5.3333333333vw solid;
    padding: 5.3333333333vw;
  }
}
.p-btnbox-Item-Ttl {
  text-align: center;
  color: #000;
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-btnbox-Item-Ttl {
    margin-bottom: 5.3333333333vw;
  }
}
.p-btnbox-Item-Ttl .-eng {
  font-size: 3.6rem;
  display: block;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-btnbox-Item-Ttl .-eng {
    font-size: 7.4666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-btnbox-Item-Ttl .-jp {
  font-size: 1.4rem;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-btnbox-Item-Ttl .-jp {
    font-size: 3.2vw;
  }
}
.p-btnbox-Item-Txt {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto 3rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-btnbox-Item-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-btnbox-Item .c-Btn {
  margin: auto;
  color: #fff;
  width: 24.3rem;
}
@media screen and (max-width: 767px) {
  .p-btnbox-Item .c-Btn {
    width: 66.6666666667vw;
  }
}
.p-btnbox-Item .c-Btn:before {
  background-image: url(./../img/icon_btnarrow_white.svg);
}
.p-btnbox-Item.-pink {
  border-color: #EA4891;
}
.p-btnbox-Item.-pink .c-Btn {
  background: #EA4891;
}
.p-btnbox-Item.-green {
  border-color: #00ACBA;
}
.p-btnbox-Item.-green .c-Btn {
  background: #00ACBA;
}

.p-undermv {
  position: relative;
}
.p-undermv:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.p-undermv:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 43rem;
  height: 2rem;
  background: #57BEF9;
}
@media screen and (max-width: 767px) {
  .p-undermv:after {
    width: 57.3333333333vw;
    height: 2.6666666667vw;
  }
}
.p-undermv .l-container {
  position: relative;
  height: 49.5rem;
}
@media screen and (max-width: 767px) {
  .p-undermv .l-container {
    height: 106.6666666667vw;
  }
}
.p-undermv__Box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-undermv__Box-Jp {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding-left: 4.1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-undermv__Box-Jp {
    font-size: 4.2666666667vw;
    padding-left: 10.6666666667vw;
  }
}
.p-undermv__Box-Jp:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 0.2rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-undermv__Box-Jp:before {
    width: 6.4vw;
    height: 0.5333333333vw;
  }
}
.p-undermv__Box-Ttl {
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-undermv__Box-Ttl {
    font-size: 10.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-undermv__Box-Ttl::first-letter {
  color: #DF702F;
}
.p-undermv__Box-Txt {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-undermv__Box-Txt {
    font-size: 3.7333333333vw;
  }
}
.p-undermv.-product {
  background: url("./../img/img_product_mv.jpg");
  background-size: cover;
}
.p-undermv.-company {
  background: url("./../img/img_company_mv.jpg");
  background-size: cover;
}
.p-undermv.-recruit {
  position: relative;
}
.p-undermv.-recruit:before {
  display: none;
}
.p-undermv.-recruit .entryBtn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 33vw;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-undermv.-recruit .entryBtn {
    position: fixed !important;
    top: 50vh;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 100;
  }
}
.p-undermv.-recruit .entryBtn.fixed {
  position: fixed;
  bottom: auto;
  top: 10rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-undermv.-recruit .entryBtn.fixed {
    top: 50vh;
    transform: translateY(-50%);
    bottom: auto;
  }
}
.p-undermv.-recruit .entryBtn.none {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .p-undermv.-recruit .entryBtn.none {
    opacity: 1;
    visibility: initial;
  }
}
.p-undermv.-blog {
  background-image: url("./../img/img_blog_mv.jpg");
  background-size: cover;
  background-color: #c3c3c3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-undermv.-blog {
    background-image: url("./../img/img_blog_mv_sp.jpg");
    background-size: cover;
  }
}
.p-undermv.-blog .p-undermv__Lady {
  width: 37.8rem;
  position: absolute;
  right: 24.2vw;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-undermv.-blog .p-undermv__Lady {
    width: 54.9333333333vw;
    right: -5.3333333333vw;
  }
}
.p-undermv.-blog:before {
  display: none;
}
.p-undermv.-privacy .p-undermv__Box-Jp,
.p-undermv.-privacy .p-undermv__Box-Ttl {
  color: #000;
}
.p-undermv.-privacy .p-undermv__Box-Jp:before,
.p-undermv.-privacy .p-undermv__Box-Ttl:before {
  background: #000;
}
.p-undermv.-privacy:before {
  display: none;
}
.p-undermv.-contact .p-undermv__Box-Jp,
.p-undermv.-contact .p-undermv__Box-Ttl {
  color: #000;
}
.p-undermv.-contact .p-undermv__Box-Jp:before,
.p-undermv.-contact .p-undermv__Box-Ttl:before {
  background: #000;
}
.p-undermv.-contact:before {
  display: none;
}
.p-undermv.-entry .p-undermv__Box-Jp,
.p-undermv.-entry .p-undermv__Box-Ttl {
  color: #000;
}
.p-undermv.-entry .p-undermv__Box-Jp:before,
.p-undermv.-entry .p-undermv__Box-Ttl:before {
  background: #000;
}
.p-undermv.-entry:before {
  display: none;
}
.p-undermv.-entry .l-container {
  height: 30.5rem;
}
@media screen and (max-width: 767px) {
  .p-undermv.-entry .l-container {
    height: 53.3333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .p-breadcrumb {
    background: linear-gradient(-90deg, transparent 0%, transparent 93.3333333333vw, #EA4891 93.3333333333vw, #EA4891 100%);
  }
}
.p-breadcrumb__List {
  position: relative;
  min-width: 28rem;
  display: inline-flex;
  align-items: center;
  padding: 2.4rem 4.3rem 2.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__List {
    min-width: auto;
    padding: 2.6666666667vw 5.3333333333vw;
    background: #EA4891;
  }
}
.p-breadcrumb__List:before {
  content: "";
  position: absolute;
  width: calc(100% + 50vw);
  height: 100%;
  top: 0;
  right: 0;
  background: #EA4891;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__List:before {
    display: none;
  }
}
.p-breadcrumb__Item {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__Item {
    font-size: 2.6666666667vw;
    margin-right: 6.9333333333vw;
  }
}
.p-breadcrumb__Item:last-child {
  margin-right: 0;
}
.p-breadcrumb__Item a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__Item a {
    font-size: 2.6666666667vw;
  }
}
.p-breadcrumb__Item a:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -1.8rem;
  width: 0;
  height: 0;
  border: 0.658rem solid transparent;
  border-right: 0.424rem solid transparent;
  border-left: 0.424rem solid #fff;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__Item a:before {
    right: -5.3333333333vw;
    border: 1.3333333333vw solid transparent;
    border-right: 1.0666666667vw solid transparent;
    border-left: 1.0666666667vw solid #fff;
  }
}

.p-company__Mission {
  padding: 7.2rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-company__Mission {
    padding: 13.3333333333vw 0;
  }
}
.p-company__Mission-Flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-company__Mission-Flex {
    display: block;
  }
}
.p-company__Mission-Thum {
  width: 44%;
  height: 44.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company__Mission-Thum {
    width: 100%;
    height: auto;
    margin-bottom: 5.3333333333vw;
  }
}
.p-company__Mission-Thum:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 67.8rem;
  height: 44.5rem;
  content: "";
  background: url("./../img/img_company_mission.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1501px) {
  .p-company__Mission-Thum:before {
    background-position: top center;
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .p-company__Mission-Thum:before {
    display: none;
  }
}
.p-company__Mission-Detail {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-company__Mission-Detail {
    width: 100%;
  }
}
.p-company__Mission-Detail-Subttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-company__Mission-Detail-Subttl {
    font-size: 5.3333333333vw;
    line-height: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-company__Mission-Detail-Catch {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-company__Mission-Detail-Catch {
    font-size: 4.8vw;
    line-height: 5.8666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-company__Mission-Detail-Txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.45rem;
}
@media screen and (max-width: 767px) {
  .p-company__Mission-Detail-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}
.p-company__Articles {
  padding: 10rem 0;
  background: #FBED56;
}
@media screen and (max-width: 767px) {
  .p-company__Articles {
    padding: 13.3333333333vw 0;
  }
}
.p-company__Articles .c-Ttl {
  text-align: center;
  display: block;
}
.p-company__Articles .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-company__Articles .swiperWrap {
  position: relative;
}
.p-company__Articles .swiperWrap .swiper {
  overflow: hidden;
}
.p-company__Articles-List {
  justify-content: space-between;
}
.p-company__Articles-List.vpc {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-company__Articles-List.vpc {
    display: none;
  }
}
.p-company__Articles-Item {
  width: 24.16%;
  background-color: #fff;
  position: relative;
  padding-bottom: 19.2rem;
  background-size: 29rem;
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media screen and (max-width: 767px) {
  .p-company__Articles-Item {
    width: 100%;
    padding-bottom: 51.2vw;
    background-size: 77.3333333333vw;
  }
}
.p-company__Articles-Item:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 0.6rem;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-company__Articles-Item:before {
    width: 16vw;
    height: 1.6vw;
  }
}
.p-company__Articles-Item:nth-child(1) {
  background-image: url("./../img/illust_company_articles_01.png");
}
.p-company__Articles-Item:nth-child(1):before {
  background: #DF702F;
}
.p-company__Articles-Item:nth-child(1) .p-company__Articles-Number span {
  color: #DF702F;
}
.p-company__Articles-Item:nth-child(2) {
  background-image: url("./../img/illust_company_articles_02.png");
}
.p-company__Articles-Item:nth-child(2):before {
  background: #EA4891;
}
.p-company__Articles-Item:nth-child(2) .p-company__Articles-Number span {
  color: #EA4891;
}
.p-company__Articles-Item:nth-child(3) {
  background-image: url("./../img/illust_company_articles_03.png");
}
.p-company__Articles-Item:nth-child(3):before {
  background: #57BEF9;
}
.p-company__Articles-Item:nth-child(3) .p-company__Articles-Number span {
  color: #57BEF9;
}
.p-company__Articles-Item:nth-child(4) {
  background-image: url("./../img/illust_company_articles_04.png");
}
.p-company__Articles-Item:nth-child(4):before {
  background: #68BE5C;
}
.p-company__Articles-Item:nth-child(4) .p-company__Articles-Number span {
  color: #68BE5C;
}
.p-company__Articles-Number {
  padding-top: 5.6rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-company__Articles-Number {
    padding-top: 7.4666666667vw;
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-company__Articles-Number span {
  margin-left: 0.9rem;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-company__Articles-Number span {
    font-size: 7.4666666667vw;
    margin-left: 1.3333333333vw;
  }
}
.p-company__Articles-Subttl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.1rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company__Articles-Subttl {
    height: 13.6vw;
    font-size: 4.8vw;
  }
}
.p-company__Overview {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-company__Overview {
    padding: 13.3333333333vw 0;
  }
}
.p-company__Overview-Wrap {
  max-width: 86rem;
  width: 100%;
  margin: 0 auto 10rem;
}
@media screen and (max-width: 767px) {
  .p-company__Overview-Wrap {
    margin: 0 auto 13.3333333333vw;
  }
}
.p-company__Overview-Wrap table {
  width: 100%;
}
.p-company__Overview-Wrap table tr {
  border-bottom: 0.1rem solid #ccc;
}
.p-company__Overview-Wrap table tr th {
  padding: 3rem 2rem;
  width: 16.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-company__Overview-Wrap table tr th {
    padding: 4vw;
    width: 100%;
    display: block;
    font-size: 3.7333333333vw;
  }
}
.p-company__Overview-Wrap table tr th.-vat {
  padding-top: 3.7rem;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-company__Overview-Wrap table tr th.-vat {
    vertical-align: middle;
    padding-top: 4vw;
  }
}
.p-company__Overview-Wrap table tr th span {
  display: block;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.p-company__Overview-Wrap table tr td {
  width: calc(100% - 16.4rem);
  padding: 3rem 0;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 3rem;
}
@media screen and (max-width: 767px) {
  .p-company__Overview-Wrap table tr td {
    padding: 0 4vw 4vw;
    width: 100%;
    display: block;
    font-size: 3.7333333333vw;
  }
}
.p-company__Overview .swiper-wrapper {
  transition-timing-function: linear;
}
.p-company__Overview .swiper-slide {
  width: 26.6666666667vw !important;
}
@media screen and (max-width: 767px) {
  .p-company__Overview .swiper-slide {
    width: 50vw !important;
  }
}
.p-company__Location {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-company__Location {
    padding-bottom: 13.3333333333vw;
  }
}
.p-company__Location .c-Ttl {
  text-align: center;
  display: block;
}
.p-company__Location .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-company__Location-List {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 14rem;
}
@media screen and (max-width: 767px) {
  .p-company__Location-List {
    display: block;
  }
}
.p-company__Location-Item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-company__Location-Item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-company__Location-Item:nth-child(2) {
    margin: 8vw auto;
  }
}
.p-company__Location-Item-Thum {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company__Location-Item-Thum {
    margin-bottom: 5.3333333333vw;
  }
}
.p-company__Location-Item-Ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company__Location-Item-Ttl {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-company__Location-Item-Txt {
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company__Location-Item-Txt {
    font-size: 3.7333333333vw;
    line-height: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-company__Location-Item .c-Btn {
  margin: auto;
  width: 24.3rem;
  background: #fff;
  border: 0.1rem solid #000;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-company__Location-Item .c-Btn {
    width: 66.6666666667vw;
  }
}
.p-company__Location-Item .c-Btn:hover {
  opacity: 1;
  background: #DF702F;
}

.p-blog__Wrap {
  padding: 7.2rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Wrap {
    padding: 13.3333333333vw 0;
  }
}
.p-blog__Wrap-List {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Wrap-List {
    justify-content: space-between;
    margin-bottom: 5.3333333333vw;
  }
}
.p-blog__Wrap-Item {
  width: 31.6%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Wrap-Item {
    width: 49%;
    margin-bottom: 5.3333333333vw;
  }
}
.p-blog__Wrap-Item:nth-child(3n+2) {
  margin: 0 2.6% 4rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Wrap-Item:nth-child(3n+2) {
    margin: 0 0 5.3333333333vw;
  }
}
.p-blog__Wrap-Thum {
  margin-bottom: 2.2rem;
  height: 28rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-blog__Wrap-Thum {
    margin-bottom: 5.3333333333vw;
    height: 40vw;
  }
}
.p-blog__Wrap-Thum img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}
.p-blog__Wrap-Flex {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}
.p-blog__Wrap-Flex-Date {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-blog__Wrap-Flex-Date {
    font-size: 2.6666666667vw;
  }
}
.p-blog__Wrap-Flex-Cate {
  line-height: 1;
  margin-left: 0.7rem;
  padding-left: 0.7rem;
  border-left: 0.1rem solid #000;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-blog__Wrap-Flex-Cate {
    margin-left: 1.3333333333vw;
    padding-left: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
.p-blog__Wrap-Subttl {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Wrap-Subttl {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 0;
  }
}
.p-blog__Wrap-Txt {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Wrap-Txt {
    display: none;
  }
}
.p-blog .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-blog .wp-pagenavi a,
.p-blog .wp-pagenavi span {
  font-size: 1.4rem;
  margin: 0 1rem;
  border: none;
  color: #000;
  padding: 0;
  border-bottom: 0.2rem solid transparent;
}
@media screen and (max-width: 767px) {
  .p-blog .wp-pagenavi a,
  .p-blog .wp-pagenavi span {
    font-size: 3.2vw;
  }
}
.p-blog .wp-pagenavi a.current,
.p-blog .wp-pagenavi span.current {
  font-weight: normal;
  border-bottom: 0.2rem solid #000;
}
.p-blog .wp-pagenavi .previouspostslink {
  margin-right: 10rem;
  width: 19.8rem;
  display: block;
  padding: 1.9rem;
  text-align: center;
  border-radius: 2.4rem;
  background: #000;
  color: #fff;
  line-height: 1;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-blog .wp-pagenavi .previouspostslink {
    margin-right: 5.3333333333vw;
    width: 40vw;
    padding: 2.6666666667vw;
    border-radius: 13.3333333333vw;
    font-size: 3.2vw;
  }
}
.p-blog .wp-pagenavi .previouspostslink:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%) rotate(180deg);
  width: 1.09rem;
  height: 0.7rem;
  background: url(./../img/icon_btnarrow_white.svg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-blog .wp-pagenavi .previouspostslink:before {
    display: none;
  }
}
.p-blog .wp-pagenavi .nextpostslink {
  margin-left: 10rem;
  width: 19.8rem;
  display: block;
  padding: 1.9rem;
  text-align: center;
  border-radius: 2.4rem;
  background: #000;
  color: #fff;
  line-height: 1;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-blog .wp-pagenavi .nextpostslink {
    margin-left: 5.3333333333vw;
    width: 40vw;
    padding: 2.6666666667vw;
    border-radius: 13.3333333333vw;
    font-size: 3.2vw;
  }
}
.p-blog .wp-pagenavi .nextpostslink:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 1.09rem;
  height: 0.7rem;
  background: url(./../img/icon_btnarrow_white.svg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-blog .wp-pagenavi .nextpostslink:before {
    display: none;
  }
}
.p-blog__Detail {
  padding: 7.2rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail {
    padding: 13.3333333333vw 0;
  }
}
.p-blog__Detail-Inner {
  max-width: 100rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Inner {
    max-width: 93.3333333333vw;
  }
}
.p-blog__Detail-Flex {
  display: flex;
  align-items: center;
}
.p-blog__Detail-Flex-Date {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Flex-Date {
    font-size: 2.6666666667vw;
  }
}
.p-blog__Detail-Flex-Cate {
  line-height: 1;
  margin-left: 0.7rem;
  padding-left: 0.7rem;
  border-left: 0.1rem solid #000;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Flex-Cate {
    margin-left: 1.3333333333vw;
    padding-left: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
.p-blog__Detail-Subttl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 6.6rem;
  border-bottom: 0.1rem solid #ccc;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Subttl {
    font-size: 5.3333333333vw;
    line-height: 7.4666666667vw;
    padding: 5.3333333333vw 0;
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont {
    margin-bottom: 13.3333333333vw;
  }
}
.p-blog__Detail-Cont h2 {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  color: #fff;
  background: #DF702F;
  line-height: 6.6rem;
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont h2 {
    font-size: 4.8vw;
    line-height: 6.4vw;
    padding: 2.6666666667vw;
    margin-bottom: 4vw;
  }
}
.p-blog__Detail-Cont h3 {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 2rem;
  padding-left: 2rem;
  border-left: 0.6rem solid #DF702F;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont h3 {
    font-size: 4.2666666667vw;
    padding-left: 4vw;
    border-left: 0.8vw solid #DF702F;
    margin-bottom: 4vw;
  }
}
.p-blog__Detail-Cont p,
.p-blog__Detail-Cont pre {
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont p,
  .p-blog__Detail-Cont pre {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-blog__Detail-Cont dl dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont dl dt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}
.p-blog__Detail-Cont dl dd {
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont dl dd {
    font-size: 3.2vw;
    line-height: 5.3333333333vw;
  }
}
.p-blog__Detail-Cont a {
  font-size: 1.8rem;
  color: #52C9B7;
  text-decoration: underline;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont a {
    font-size: 3.7333333333vw;
  }
}
.p-blog__Detail-Cont ul li {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  line-height: 3rem;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont ul li {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    padding-left: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-blog__Detail-Cont ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #DF702F;
}
.p-blog__Detail-Cont ul li > ul {
  margin-top: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont ul li > ul {
    margin-top: 2.6666666667vw;
  }
}
.p-blog__Detail-Cont ol {
  counter-reset: number 0;
}
.p-blog__Detail-Cont ol li {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  line-height: 3rem;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont ol li {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    padding-left: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-blog__Detail-Cont ol li:before {
  font-style: italic;
  counter-increment: number 1;
  content: counter(number) ". ";
  background: none;
  position: absolute;
  left: 0;
  top: initial;
  font-size: 2rem;
  color: #DF702F;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont ol li:before {
    font-size: 3.7333333333vw;
  }
}
.p-blog__Detail-Cont ol li > ol {
  margin-top: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail-Cont ol li > ol {
    margin-top: 2.6666666667vw;
  }
}
.p-blog__Detail .c-Btn {
  width: 24.3rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-blog__Detail .c-Btn {
    width: 66.6666666667vw;
  }
}

.p-privacy__Wrap {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-privacy__Wrap {
    padding: 13.3333333333vw 0;
  }
}
.p-privacy__Wrap-Dl {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__Wrap-Dl {
    margin-bottom: 8vw;
  }
}
.p-privacy__Wrap-Dt {
  font-size: 2.8rem;
  font-weight: 700;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 0.1rem solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-privacy__Wrap-Dt {
    font-size: 4.8vw;
    padding-bottom: 4vw;
    margin-bottom: 4vw;
  }
}
.p-privacy__Wrap-Dd {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__Wrap-Dd {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}
.p-privacy__Wrap-Dd ol {
  counter-reset: number 0;
}
.p-privacy__Wrap-Dd ol li {
  margin: 1em auto;
  padding-left: 1.5em;
  position: relative;
}
.p-privacy__Wrap-Dd ol li:before {
  counter-increment: number 1;
  content: counter(number) " .";
  font-size: 1.2em;
  color: #00ACBA;
  position: absolute;
  left: 0;
}
.p-privacy__Wrap-Dd ol ol {
  margin-left: 1em;
}
.p-privacy__Wrap-Dd .tar {
  display: block;
  text-align: right;
}
.p-privacy__Wrap-Txt {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-privacy__Wrap-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}

.p-product__Catch {
  padding: 7.2rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-product__Catch {
    padding: 13.3333333333vw 0 8vw;
  }
}
.p-product__Catch-Ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-product__Catch-Ttl {
    font-size: 5.3333333333vw;
    line-height: 9.6vw;
    margin-bottom: 8vw;
  }
}
.p-product__Catch-Ttl::first-letter {
  color: #EA4891;
}
.p-product__Catch-Txt {
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-product__Catch-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
    text-align: justify;
  }
}
.p-product__Nav {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-product__Nav {
    margin-bottom: 13.3333333333vw;
  }
}
.p-product__Nav-List {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-product__Nav-List {
    justify-content: space-between;
  }
}
.p-product__Nav-Item {
  width: 32.5%;
  border-bottom: 0.1rem solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-product__Nav-Item {
    width: 49%;
  }
}
.p-product__Nav-Item:nth-child(3n+2) {
  margin: 0 1.25%;
}
@media screen and (max-width: 767px) {
  .p-product__Nav-Item:nth-child(3n+2) {
    margin: 0;
  }
}
.p-product__Nav-Item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 2rem 3rem;
  color: #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-product__Nav-Item a {
    font-size: 3.2vw;
    padding: 4vw 4vw 4vw 0;
  }
}
.p-product__Nav-Item a:before {
  position: absolute;
  content: "";
  top: calc(50% + 0.8rem);
  transform: translateY(-50%);
  right: 3rem;
  width: 0;
  height: 0;
  border: 0.8rem solid transparent;
  border-right: 0.65rem solid transparent;
  border-left: 0.65rem solid transparent;
  border-top: 0.8rem solid #000;
}
@media screen and (max-width: 767px) {
  .p-product__Nav-Item a:before {
    top: calc(50% + 0.8vw);
    right: 0;
    border: 2.1333333333vw solid transparent;
    border-right: 1.6vw solid transparent;
    border-left: 1.6vw solid transparent;
    border-top: 2.1333333333vw solid #000;
  }
}
.p-product__Cont-Box {
  margin-bottom: 6rem;
  box-shadow: 0rem 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  padding: 6rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box {
    display: block;
    margin-bottom: 8vw;
    padding: 8vw;
  }
}
.p-product__Cont-Box:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem;
  height: 1rem;
  content: "";
}
.p-product__Cont-Box#-box01:before {
  background: #FF4500;
}
.p-product__Cont-Box#-box01 .p-product__Cont-Box-Detail:after {
  width: 18.667rem;
  height: 8.612rem;
  background-image: url("./../img/icon_product_01.svg");
}
.p-product__Cont-Box#-box02:before {
  background: #FF9300;
}
.p-product__Cont-Box#-box02 .p-product__Cont-Box-Detail:after {
  width: 11.311rem;
  height: 13.746rem;
  background-image: url("./../img/icon_product_02.svg");
}
.p-product__Cont-Box#-box03:before {
  background: #FFCE00;
}
.p-product__Cont-Box#-box03 .p-product__Cont-Box-Detail:after {
  right: 1.9rem;
  width: 9.04rem;
  height: 12.916rem;
  background-image: url("./../img/icon_product_03.svg");
}
.p-product__Cont-Box#-box04:before {
  background: #37B441;
}
.p-product__Cont-Box#-box04 .p-product__Cont-Box-Detail:after {
  width: 11.4rem;
  height: 11.409rem;
  background-image: url("./../img/icon_product_04.svg");
}
.p-product__Cont-Box#-box05:before {
  background: #3B62A2;
}
.p-product__Cont-Box#-box05 .p-product__Cont-Box-Detail:after {
  width: 11.602rem;
  height: 8.2rem;
  background-image: url("./../img/icon_product_05.svg");
}
.p-product__Cont-Box#-box06:before {
  background: #62A000;
}
.p-product__Cont-Box#-box06 .p-product__Cont-Box-Detail:after {
  right: 2.5rem;
  bottom: -0.8rem;
  width: 7.625rem;
  height: 11.409rem;
  background-image: url("./../img/icon_product_06.svg");
}
.p-product__Cont-Box#-box07:before {
  background: #8972F0;
}
.p-product__Cont-Box#-box07 .p-product__Cont-Box-Detail:after {
  right: 0;
  bottom: -0.8rem;
  width: 13.475rem;
  height: 4.344rem;
  background-image: url("./../img/icon_product_07.svg");
}
.p-product__Cont-Box#-box08:before {
  background: #A24B94;
}
.p-product__Cont-Box#-box08 .p-product__Cont-Box-Detail:after {
  right: 0;
  bottom: -0.8rem;
  width: 14.868rem;
  height: 13.942rem;
  background-image: url("./../img/icon_product_08.svg");
}
.p-product__Cont-Box#-box09:before {
  background: #E94891;
}
.p-product__Cont-Box-Thum {
  width: 38.8%;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box-Thum {
    width: 100%;
    margin-bottom: 4vw;
  }
}
.p-product__Cont-Box-Detail {
  width: 56.8%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box-Detail {
    width: 100%;
  }
}
.p-product__Cont-Box-Detail:after {
  position: absolute;
  right: 0;
  bottom: -2.7rem;
  content: "";
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box-Detail:after {
    bottom: 4vw;
  }
}
.p-product__Cont-Box-Detail-Number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box-Detail-Number {
    font-size: 3.7333333333vw;
    padding-left: 4vw;
    margin-bottom: 4vw;
  }
}
.p-product__Cont-Box-Detail-Number:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 0.1rem;
  background: #000;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box-Detail-Number:before {
    width: 2.6666666667vw;
  }
}
.p-product__Cont-Box-Detail-Ttl {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  line-height: 1;
  border-bottom: 0.1rem solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box-Detail-Ttl {
    font-size: 4.8vw;
    padding-bottom: 4vw;
    margin-bottom: 4vw;
  }
}
.p-product__Cont-Box-Detail-Txt {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #000;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box-Detail-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}
.p-product__Cont-Box.-after7 {
  display: block;
}
.p-product__Cont-Box.-after7 .p-product__Cont-Box-Flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box.-after7 .p-product__Cont-Box-Flex {
    display: block;
  }
}
.p-product__Cont-Box.-after7 .p-product__Cont-Box-Flex-Left {
  width: 48.1%;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box.-after7 .p-product__Cont-Box-Flex-Left {
    width: 100%;
    margin-bottom: 4vw;
  }
}
.p-product__Cont-Box.-after7 .p-product__Cont-Box-Flex-Left .p-product__Cont-Box-Thum {
  width: 100%;
}
.p-product__Cont-Box.-after7 .p-product__Cont-Box-Flex-Right {
  width: 48.1%;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box.-after7 .p-product__Cont-Box-Flex-Right {
    width: 100%;
  }
}
.p-product__Cont-Box.-after7 .p-product__Cont-Box-Flex-Right .p-product__Cont-Box-Thum {
  width: 100%;
}
.p-product__Cont-Box.-after7 .p-product__Cont-Box-Detail {
  width: 100%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box.-after7 .p-product__Cont-Box-Detail {
    margin-bottom: 5.3333333333vw;
  }
}
.p-product__Cont-Box.-after9 {
  display: block;
}
.p-product__Cont-Box.-after9 .p-product__Cont-Box-Flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box.-after9 .p-product__Cont-Box-Flex {
    display: block;
  }
}
.p-product__Cont-Box.-after9 .p-product__Cont-Box-Flex-Left {
  width: 48.1%;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box.-after9 .p-product__Cont-Box-Flex-Left {
    width: 100%;
    margin-bottom: 4vw;
  }
}
.p-product__Cont-Box.-after9 .p-product__Cont-Box-Flex-Left .p-product__Cont-Box-Thum {
  width: 100%;
}
.p-product__Cont-Box.-after9 .p-product__Cont-Box-Flex-Right {
  width: 48.1%;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box.-after9 .p-product__Cont-Box-Flex-Right {
    width: 100%;
  }
}
.p-product__Cont-Box.-after9 .p-product__Cont-Box-Flex-Right .p-product__Cont-Box-Thum {
  width: 100%;
}
.p-product__Cont-Box.-after9 .p-product__Cont-Box-Detail {
  width: 100%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-product__Cont-Box.-after9 .p-product__Cont-Box-Detail {
    margin-bottom: 5.3333333333vw;
  }
}

.p-recruit .p-undermv .swiper-wrapper {
  transition-timing-function: linear;
}
.p-recruit__Message {
  overflow: hidden;
  padding: 14.4rem 0 9.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__Message {
    padding: 13.3333333333vw 0;
  }
}
.p-recruit__Message:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 153.58rem;
  height: 100%;
  background: url("./../img/img_recruit_message_bg.png");
  background-size: cover;
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .p-recruit__Message:before {
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
.p-recruit__Message-Subttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Message-Subttl {
    font-size: 5.3333333333vw;
    line-height: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Message-Catch {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 3rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Message-Catch {
    font-size: 4.8vw;
    line-height: 5.8666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Message-Txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Message-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}
.p-recruit__Voice {
  padding: 10rem 0;
  background: #F5FAFF;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice {
    padding: 13.3333333333vw 0;
  }
}
.p-recruit__Voice .c-Ttl {
  text-align: center;
  display: block;
}
.p-recruit__Voice .c-Ttl::first-letter {
  color: #57BEF9;
}
.p-recruit__Voice .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-recruit__Voice-Subttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Subttl {
    font-size: 5.3333333333vw;
    line-height: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Voice-Txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
  text-align: center;
  margin-bottom: 5.7rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}
.p-recruit__Voice-Flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border: 1rem solid;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex {
    display: block;
    border: 2.6666666667vw solid;
  }
}
.p-recruit__Voice-Flex.-blue {
  border-color: #57BEF9;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex.-blue {
    margin-bottom: 8vw;
  }
}
.p-recruit__Voice-Flex.-blue .p-recruit__Voice-Flex-Detail {
  margin-right: 6.25%;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex.-blue .p-recruit__Voice-Flex-Detail {
    margin-right: auto;
  }
}
.p-recruit__Voice-Flex.-blue .p-recruit__Voice-Flex-Detail-Profile span {
  color: #57BEF9;
}
.p-recruit__Voice-Flex.-pink {
  flex-direction: row-reverse;
  border-color: #EA4891;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex.-pink {
    margin-bottom: 8vw;
  }
}
.p-recruit__Voice-Flex.-pink .p-recruit__Voice-Flex-Thum {
  margin-right: 4.6%;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex.-pink .p-recruit__Voice-Flex-Thum {
    margin-right: auto;
  }
}
.p-recruit__Voice-Flex.-pink .p-recruit__Voice-Flex-Detail {
  margin-left: 6.25%;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex.-pink .p-recruit__Voice-Flex-Detail {
    margin-left: auto;
  }
}
.p-recruit__Voice-Flex.-pink .p-recruit__Voice-Flex-Detail-Profile span {
  color: #EA4891;
}
.p-recruit__Voice-Flex.-orange {
  border-color: #DF702F;
}
.p-recruit__Voice-Flex.-orange .p-recruit__Voice-Flex-Detail {
  margin-right: 6.25%;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex.-orange .p-recruit__Voice-Flex-Detail {
    margin-right: auto;
  }
}
.p-recruit__Voice-Flex.-orange .p-recruit__Voice-Flex-Detail-Profile span {
  color: #DF702F;
}
.p-recruit__Voice-Flex-Thum {
  width: 28.5%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex-Thum {
    width: 60%;
    margin: auto;
  }
}
.p-recruit__Voice-Flex-Thum img {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex-Thum img {
    position: static;
  }
}
.p-recruit__Voice-Flex-Detail {
  padding: 5.3rem 0;
  width: 63.5%;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex-Detail {
    width: 100%;
    padding: 5.3333333333vw;
  }
}
.p-recruit__Voice-Flex-Detail-Profile {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex-Detail-Profile {
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Voice-Flex-Detail-Profile span {
  margin-right: 2rem;
}
.p-recruit__Voice-Flex-Detail-Voice {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex-Detail-Voice {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
    line-height: 6.4vw;
  }
}
.p-recruit__Voice-Flex-Detail-Comment {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Voice-Flex-Detail-Comment {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}
.p-recruit__Job {
  padding: 10rem 0;
  background: #E0EFFF;
}
@media screen and (max-width: 767px) {
  .p-recruit__Job {
    padding: 13.3333333333vw 0;
  }
}
.p-recruit__Job .c-Ttl {
  text-align: center;
  display: block;
}
.p-recruit__Job .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-recruit__Job-Subttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 5rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Job-Subttl {
    font-size: 5.3333333333vw;
    line-height: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Job-List {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-recruit__Job-List li {
  width: 24.4%;
  margin-bottom: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Job-List li {
    width: 48%;
    margin-bottom: 2.6666666667vw;
  }
}
.p-recruit__Environment {
  padding: 10rem 0;
  margin-bottom: 10rem;
  background: #FFFBDB;
}
@media screen and (max-width: 767px) {
  .p-recruit__Environment {
    padding: 13.3333333333vw 0;
    margin-bottom: 13.3333333333vw;
  }
}
.p-recruit__Environment .c-Ttl {
  text-align: center;
  display: block;
}
.p-recruit__Environment .c-Ttl::first-letter {
  color: #DF702F;
}
.p-recruit__Environment .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-recruit__Environment-Subttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 5rem;
  margin-bottom: 4.7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__Environment-Subttl {
    font-size: 5.3333333333vw;
    line-height: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Environment-List {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-recruit__Environment-List {
    display: block;
  }
}
.p-recruit__Environment-Item {
  width: 31.6%;
}
@media screen and (max-width: 767px) {
  .p-recruit__Environment-Item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__Environment-Item:nth-child(2) {
    margin: 5.3333333333vw auto;
  }
}
.p-recruit__Environment-Txt {
  line-height: 1;
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-recruit__Environment-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}
.p-recruit__Growth {
  padding: 0 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Growth {
    padding: 0 0 13.3333333333vw;
  }
}
.p-recruit__Growth-Flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6.8rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Growth-Flex {
    display: block;
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Growth-Flex-Left {
  width: 36.3%;
}
@media screen and (max-width: 767px) {
  .p-recruit__Growth-Flex-Left {
    width: 100%;
  }
}
.p-recruit__Growth-Flex-Right {
  width: 56.6%;
}
@media screen and (max-width: 767px) {
  .p-recruit__Growth-Flex-Right {
    width: 100%;
  }
}
.p-recruit__Growth-Flex .c-Ttl {
  margin-bottom: 3rem;
  display: block;
}
.p-recruit__Growth-Flex .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-recruit__Growth-Flex-Subttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Growth-Flex-Subttl {
    font-size: 5.3333333333vw;
    line-height: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Growth-Flex-Txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Growth-Flex-Txt {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__Growth-Flex-Thum {
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Interview {
  padding: 10rem 0;
  background: #FFF7FB;
}
@media screen and (max-width: 767px) {
  .p-recruit__Interview {
    padding: 13.3333333333vw 0;
  }
}
.p-recruit__Interview .c-Ttl {
  margin-bottom: 3rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__Interview .c-Ttl {
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Interview .c-Ttl::first-letter {
  color: #EA4891;
}
.p-recruit__Interview .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-recruit__Interview-Movie {
  max-width: 66.2rem;
  width: 55%;
  margin: auto;
  padding-top: 31.25%;
}
@media screen and (max-width: 767px) {
  .p-recruit__Interview-Movie {
    width: 100%;
    padding-top: 56.25%;
  }
}
.p-recruit__Interview-Movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-recruit__Flow {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__Flow {
    padding: 13.3333333333vw 0;
  }
}
.p-recruit__Flow .c-Ttl {
  display: block;
}
.p-recruit__Flow .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-recruit__Flow-Thum {
  display: block;
}
.p-recruit__Guidelines {
  padding: 10rem 0;
  background: #FFF9F5;
}
@media screen and (max-width: 767px) {
  .p-recruit__Guidelines {
    padding: 13.3333333333vw 0;
  }
}
.p-recruit__Guidelines .c-Ttl {
  margin-bottom: 3rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__Guidelines .c-Ttl {
    margin-bottom: 5.3333333333vw;
  }
}
.p-recruit__Guidelines .c-Ttl::first-letter {
  color: #DF702F;
}
.p-recruit__Guidelines .c-Ttl .-jp {
  padding-left: 0;
  display: block;
}
.p-recruit__Guidelines-Wrap {
  width: 100%;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Guidelines-Wrap {
    margin-bottom: 8vw;
  }
}
.p-recruit__Guidelines-Table {
  width: 100%;
  background: #fff;
}
.p-recruit__Guidelines-Table th {
  background: #DF702F;
  color: #fff;
  padding: 3rem;
  width: 34.8rem;
  border: 0.1rem solid #ccc;
  font-size: 1.6rem;
  font-weight: 700;
  vertical-align: top;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Guidelines-Table th {
    padding: 4vw;
    width: 100%;
    display: block;
    font-size: 3.7333333333vw;
  }
}
.p-recruit__Guidelines-Table td {
  width: calc(100% - 34.8rem);
  border: 0.1rem solid #ccc;
  padding: 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__Guidelines-Table td {
    padding: 4vw;
    width: 100%;
    display: block;
    font-size: 3.7333333333vw;
  }
}
.p-recruit__Guidelines-Table td span {
  font-weight: 700;
  display: block;
}
.p-recruit__Guidelines .c-Btn {
  margin: auto;
  width: 27.6rem;
  background: #000;
  border: 0.1rem solid #fff;
  color: #fff;
  transition: 0.3s;
}
.p-recruit__Guidelines .c-Btn:before {
  background-image: url(./../img/icon_btnarrow_white.svg);
  transition: 0.3s;
}
.p-recruit__Guidelines .c-Btn:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}
.p-recruit__Guidelines .c-Btn:hover:before {
  background-image: url(./../img/icon_btnarrow_black.svg);
}

.p-company__Location-Slide {
  margin-top: 11.4rem;
}
@media screen and (max-width: 767px) {
  .p-company__Location-Slide {
    margin-top: 13.3333333333vw;
  }
}
.p-company__Location-Slide .swiper-wrapper {
  transition-timing-function: linear;
}

.p-entry__Wrap {
  padding: 10rem 0 35.4rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap {
    padding: 13.3333333333vw 0;
  }
}
.p-entry__Wrap-Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Flex {
    display: block;
    margin-bottom: 4vw;
  }
}
.p-entry__Wrap-Flex-Txt {
  width: 58%;
  max-width: 74rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Flex-Txt {
    width: 100%;
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-entry__Wrap-Flex-Detail {
  width: 40%;
  max-width: 41.2rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Flex-Detail {
    width: 100%;
    text-align: center;
  }
}
.p-entry__Wrap-Flex-Detail-Txt {
  font-size: 1.6rem;
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Flex-Detail-Txt {
    width: 100%;
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-entry__Wrap-Flex-Detail-Number a {
  font-size: 3.4rem;
  font-weight: 500;
  color: #000;
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Flex-Detail-Number a {
    padding-left: 8vw;
    font-size: 7.4666666667vw;
  }
}
.p-entry__Wrap-Flex-Detail-Number a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.953rem;
  height: 2.873rem;
  background: url(./../img/icon_tel_black.svg);
  background-size: cover;
}
.p-entry__Wrap-Flex-Detail-Number span {
  font-size: 1.6rem;
  margin-left: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Flex-Detail-Number span {
    font-size: 4.2666666667vw;
    margin-top: 1.3333333333vw;
    margin-left: 0;
    display: block;
  }
}
.p-entry__Wrap-Support {
  margin-bottom: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Support {
    margin-bottom: 13.3333333333vw;
  }
}
.p-entry__Wrap-Table {
  width: 100%;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Table {
    margin-bottom: 5.3333333333vw;
  }
}
.p-entry__Wrap-Th {
  width: 34.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  vertical-align: top;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Th {
    display: block;
    width: 100%;
    font-size: 4.2666666667vw;
    padding-top: 0;
    padding-bottom: 1.3333333333vw;
  }
}
.p-entry__Wrap-Th.-pt0 {
  padding-top: 0;
}
.p-entry__Wrap-Th:after {
  content: "*";
  color: #DE0000;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Th br {
    display: none;
  }
}
.p-entry__Wrap-Th.-any:after {
  display: none;
}
.p-entry__Wrap-Td {
  width: calc(100% - 34.2rem);
  font-size: 1.6rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td {
    display: block;
    width: 100%;
    font-size: 4.2666666667vw;
    padding-bottom: 5.3333333333vw;
  }
}
.p-entry__Wrap-Td.-pbWide {
  padding-bottom: 6.8rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td.-pbWide {
    padding-bottom: 5.3333333333vw;
  }
}
.p-entry__Wrap-Td .selectwrap {
  max-width: 31.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td .selectwrap {
    max-width: none;
    width: 100%;
  }
}
.p-entry__Wrap-Td .selectwrap:before {
  position: absolute;
  pointer-events: none;
  top: calc(50% - 0.8rem);
  right: 1.6rem;
  width: 0;
  height: 0;
  border: 1.65rem solid transparent;
  border-top: 1.9rem solid #ccc;
  content: "";
}
.p-entry__Wrap-Td .selectwrap select {
  font-size: 1.57rem;
  padding: 2.5rem;
  line-height: 1;
  border: 0.1rem solid #ccc;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td .selectwrap select {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw;
  }
}
.p-entry__Wrap-Td input[type=text],
.p-entry__Wrap-Td input[type=email] {
  font-size: 1.57rem;
  padding: 2.5rem;
  line-height: 1;
  border: 0.1rem solid #ccc;
  width: 100%;
  outline: none;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td input[type=text],
  .p-entry__Wrap-Td input[type=email] {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw;
  }
}
.p-entry__Wrap-Td textarea {
  font-size: 1.6rem;
  padding: 2.5rem;
  border: 0.1rem solid #ccc;
  width: 100%;
  min-height: 24rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td textarea {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw;
    min-height: 40vw;
  }
}
.p-entry__Wrap-Td .vertical-item {
  margin-bottom: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td .vertical-item {
    margin-bottom: 4vw;
  }
}
.p-entry__Wrap-Td .mwform-radio-field {
  margin-right: 7.6rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td .mwform-radio-field {
    margin-right: 5.3333333333vw;
  }
}
.p-entry__Wrap-Td input[type=radio] {
  display: none;
}
.p-entry__Wrap-Td input[type=radio] + span.mwform-radio-field-text {
  display: inline-block;
  position: relative;
  padding-left: 5rem;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td input[type=radio] + span.mwform-radio-field-text {
    font-size: 3.7333333333vw;
    padding-left: 5.6vw;
  }
}
.p-entry__Wrap-Td input[type=radio] + span.mwform-radio-field-text:before {
  position: absolute;
  top: calc(50% - 1.75rem);
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #ccc;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td input[type=radio] + span.mwform-radio-field-text:before {
    top: calc(50% - 2.1333333333vw);
    width: 4vw;
    height: 4vw;
  }
}
.p-entry__Wrap-Td input[type=radio]:checked + span.mwform-radio-field-text::after {
  position: absolute;
  top: calc(50% - 1.2rem);
  left: 0.6rem;
  content: "";
  background: #DF702F;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td input[type=radio]:checked + span.mwform-radio-field-text::after {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
    left: 0.8vw;
    top: calc(50% - 1.3333333333vw);
  }
}
.p-entry__Wrap-Td input[type=checkbox] {
  display: none;
}
.p-entry__Wrap-Td input[type=checkbox] + span.mwform-checkbox-field-text {
  display: inline-block;
  position: relative;
  padding-left: 5rem;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td input[type=checkbox] + span.mwform-checkbox-field-text {
    font-size: 3.7333333333vw;
    padding-left: 5.6vw;
  }
}
.p-entry__Wrap-Td input[type=checkbox] + span.mwform-checkbox-field-text:before {
  position: absolute;
  top: calc(50% - 1.4rem);
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #ccc;
  width: 3.1rem;
  height: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td input[type=checkbox] + span.mwform-checkbox-field-text:before {
    width: 4vw;
    height: 4vw;
    top: calc(50% - 2.4vw);
  }
}
.p-entry__Wrap-Td input[type=checkbox]:checked + span.mwform-checkbox-field-text::after {
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.2rem;
  content: "";
  width: 0.75rem;
  height: 1.5rem;
  /* margin-top: -0.6rem; */
  border-right: 0.3rem solid #DF702F;
  border-bottom: 0.3rem solid #DF702F;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td input[type=checkbox]:checked + span.mwform-checkbox-field-text::after {
    width: 1.3333333333vw;
    height: 2.6666666667vw;
    left: 1.3333333333vw;
    top: calc(50% - 2.1333333333vw);
  }
}
.p-entry__Wrap-Td .-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td .-flex {
    gap: 2.6666666667vw;
  }
}
.p-entry__Wrap-Td .-flex input {
  width: 14.7rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Td .-flex input {
    width: 21.3333333333vw;
  }
}
.p-entry__Wrap-Td .error {
  margin-top: 0.5rem;
}
.p-entry__Wrap-Agree {
  text-align: center;
  font-size: 1.6rem;
  color: #000;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-Agree {
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-entry__Wrap-Agree a {
  color: #01ABBA;
  text-decoration: underline;
}
.p-entry__Wrap-AgreeCheck {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-AgreeCheck {
    margin-bottom: 5.3333333333vw;
  }
}
.p-entry__Wrap-AgreeCheck input[type=checkbox] {
  display: none;
}
.p-entry__Wrap-AgreeCheck input[type=checkbox] + span.mwform-checkbox-field-text {
  display: inline-block;
  position: relative;
  padding-left: 3.5rem;
  font-size: 1.6rem;
  color: #000;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-AgreeCheck input[type=checkbox] + span.mwform-checkbox-field-text {
    font-size: 3.7333333333vw;
    padding-left: 5.6vw;
  }
}
.p-entry__Wrap-AgreeCheck input[type=checkbox] + span.mwform-checkbox-field-text:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #000;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-AgreeCheck input[type=checkbox] + span.mwform-checkbox-field-text:before {
    width: 4vw;
    height: 4vw;
    margin-top: -1.8666666667vw;
  }
}
.p-entry__Wrap-AgreeCheck input[type=checkbox]:checked + span.mwform-checkbox-field-text::after {
  position: absolute;
  top: 50%;
  left: 0.6rem;
  content: "";
  width: 0.5rem;
  height: 1rem;
  margin-top: -0.6rem;
  border-right: 0.3rem solid #DF702F;
  border-bottom: 0.3rem solid #DF702F;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap-AgreeCheck input[type=checkbox]:checked + span.mwform-checkbox-field-text::after {
    left: 1.3333333333vw;
    width: 1.3333333333vw;
    height: 2.6666666667vw;
    margin-top: -1.6vw;
    border-right: 0.8vw solid #DF702F;
    border-bottom: 0.8vw solid #DF702F;
  }
}
.p-entry__Wrap .submit_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap .submit_wrap {
    margin: auto;
  }
}
.p-entry__Wrap .submit_wrap input[type=submit].send_btn {
  background-position: center right 2rem;
  background-size: 1.09rem;
  background-repeat: no-repeat;
  background-image: url(./../img/icon_btnarrow_white.svg);
  background-color: #000;
  color: #fff;
  max-width: 27.6rem;
  width: 100%;
  display: block;
  margin: auto;
  text-align: center;
  font-weight: 700;
  transition: 0.6s;
  font-size: 1.4rem;
  border-radius: 3rem;
  padding: 2.1rem 0;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-entry__Wrap .submit_wrap input[type=submit].send_btn {
    width: 64vw;
    font-size: 3.7333333333vw;
    padding: 4vw;
    border-radius: 8vw;
  }
}
.p-entry__Wrap .mw_wp_form_confirm .p-entry__Wrap-Td .selectwrap:before,
.p-entry__Wrap .mw_wp_form_confirm .p-entry__Wrap-Agree,
.p-entry__Wrap .mw_wp_form_confirm .p-entry__Wrap-AgreeCheck {
  display: none;
}
.p-entry__Thanks {
  padding: 10rem 0;
}
.p-entry__Thanks-Txt {
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 6rem;
}
.p-entry__Thanks .p-servicelist {
  background: none;
}
.p-entry__Thanks .p-servicelist-List {
  transform: translateY(0);
  margin-bottom: 6rem;
}
.p-entry__Thanks .c-Btn {
  background: #000;
  color: #fff;
  width: 27.6rem;
  margin: auto;
}
.p-entry__Thanks .c-Btn:before {
  background-image: url("./../img/icon_btnarrow_white.svg");
}

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

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