@charset "UTF-8";
.display-block {
  display: block !important;
}

html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media (min-width: 1074px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  color: #fff;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.85;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 9vw;
  z-index: 1000;
}

@media screen and (min-width: 768px) {
  .l-header {
    height: 6.25rem;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1074px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-bg-text {
  font-family: "azo-sans-web", sans-serif;
  font-size: 20vw;
  color: #b0b0b0;
  line-height: 0.8;
  opacity: 0.5;
}

/* 768px以上
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .c-bg-text {
    font-size: 7vw;
  }
}
.c-title {
  position: relative;
  display: inline-block;
  font-size: 6.5vw;
  color: #1e1d46;
  text-transform: uppercase;
}

.c-title::before {
  position: absolute;
  content: "";
  width: 7vw;
  height: 10vw;
  top: -30%;
  left: -7vw;
  background: url(../images/title-diagonal.png) no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .c-title {
    font-size: 3.5vw;
  }
  .c-title::before {
    width: 5vw;
    height: 5vw;
    left: -5vw;
  }
}
.p-drawer__inner {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 80%;
  height: 100vh;
  background: #181732;
  z-index: 8888;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.p-drawer .is-open {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.p-drawer__nav {
  position: absolute;
  font-size: 7vw;
  width: 100%;
  top: 20%;
  left: 25%;
}

.p-drawer__nav__item + .p-drawer__nav__item {
  margin-top: 7vw;
}

.p-drawer__logo {
  position: absolute;
  width: 30vw;
  height: auto;
  bottom: -42%;
  right: 45vw;
}

.p-drawer__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .5);
  z-index: 3000;
}

/* ハンバーガーメニュー
-----------------------------------------------------*/
.p-drawer__hamburger {
  position: fixed;
  width: 2.9375rem;
  height: 1.625rem;
  top: 7vw;
  right: 7vw;
  cursor: pointer;
  z-index: 9999;
}

.p-drawer__hamburger span {
  position: absolute;
  display: inline-block;
  height: 0.5vw;
  right: 0;
  background: #000;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.p-drawer__hamburger span:nth-of-type(1) {
  top: 0;
  width: 12vw;
}

.p-drawer__hamburger span:nth-of-type(2) {
  top: 2.5vw;
  width: 12vw;
}

.p-drawer__hamburger span:nth-of-type(3) {
  top: 5vw;
  width: 8vw;
}

/* クリック時
------------------------------------*/
.p-drawer__hamburger.active span {
  background-color: #fff;
}

.p-drawer__hamburger.active span:nth-of-type(1) {
  top: 0;
  left: 3px;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
  width: 80%;
}

.p-drawer__hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.p-drawer__hamburger.active span:nth-of-type(3) {
  top: 12px;
  left: 3px;
  -webkit-transform: translateY(-6px) rotate(135deg);
          transform: translateY(-6px) rotate(135deg);
  width: 80%;
}

.p-footer {
  display: none;
  padding-top: 10vw;
  background-color: #181732;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 6vw;
  }
}

.p-footer__inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.p-footer__logo {
  width: 15vw;
  margin-left: auto;
  margin-right: auto;
}

.p-footer__top {
  margin-top: 4vw;
}

.p-footer__top-info {
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.p-footer__top-company {
  position: relative;
  font-size: 5vw;
  font-weight: 700;
  margin-top: 1.3vw;
  padding-left: 8vw;
}

.p-footer__top-company::before {
  position: absolute;
  content: "";
  width: 6vw;
  height: 5vw;
  top: 0.5vw;
  left: 0;
  background: url(../images/logo-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-footer__top-company::before {
    width: 3.5vw;
    height: 3vw;
  }
}

.p-footer__top-detail {
  font-size: 3.2vw;
  font-weight: 700;
  margin-top: 5vw;
}
@media screen and (min-width: 768px) {
  .p-footer__top-detail {
    font-size: 1.3vw;
    margin-top: 3vw;
  }
}

.p-footer__top-detail-text + .p-footer__top-detail-text {
  margin-top: 0.7vw;
}

.p-footer__top-map {
  width: 80vw;
  margin-top: 5vw;
  margin-left: auto;
  margin-right: auto;
}

.p-footer__top-map iframe {
  width: 80vw;
  height: 40vw;
}

.p-footer__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.p-footer__middle {
  margin-top: 5vw;
}

.p-footer__middle-btn {
  display: block;
  font-size: 3.5vw;
  font-weight: 700;
  width: 60vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3.5vw;
  padding-bottom: 3.3vw;
  color: #212047;
  background-color: #fff;
  text-align: center;
}

.p-footer__middle-btn + .p-footer__middle-btn {
  margin-top: 3vw;
}

.p-footer__bottom {
  margin-top: 6.3vw;
}

.p-footer__bottom-btn {
  position: relative;
  display: block;
  font-size: 3.5vw;
  font-weight: 700;
  width: 60vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3.5vw;
  padding-right: 3.3vw;
  padding-bottom: 3.3vw;
  border: 1px solid #fff;
  text-align: center;
}

.p-footer__bottom-btn + .p-footer__bottom-btn {
  margin-top: 3vw;
}

.p-footer__bottom-btn::before {
  position: absolute;
  content: "";
  width: 3vw;
  height: 3vw;
  top: 50%;
  right: 4vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/footer-arrow.svg) no-repeat center center/contain;
}

.p-footer__copy {
  font-size: 3vw;
  font-weight: 700;
  margin-top: 6.8vw;
  text-align: center;
}

/* 768px以上
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: 11vw;
  }
  .p-footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4vw;
  }
  .p-footer__top-info {
    width: auto;
    width: initial;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
  .p-footer__top-company {
    font-size: 1.8vw;
    padding-left: 4.7vw;
  }
  .p-footer__top-company::before {
    top: -0.5vw;
  }
  .p-footer__top-map {
    width: auto;
    width: initial;
    margin: 0;
    margin: initial;
    padding-left: 3vw;
  }
  .p-footer__top-map iframe {
    width: 27vw;
    height: 20vw;
  }
  .p-footer__btn-wrap {
    display: block;
  }
  .p-footer__middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.5vw;
  }
  .p-footer__middle-btn {
    display: inline-block;
    font-size: 1.4vw;
    width: 18vw;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;
  }
  .p-footer__middle-btn + .p-footer__middle-btn {
    margin-top: 0;
    margin-left: 4vw;
  }
  .p-footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.5vw;
  }
  .p-footer__bottom-btn {
    display: inline-block;
    font-size: 1.4vw;
    width: 18vw;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
    padding-top: 1.5vw;
    padding-bottom: 1.3vw;
    padding-right: 2vw;
  }
  .p-footer__bottom-btn + .p-footer__bottom-btn {
    margin-top: 0;
    margin-left: 3.1vw;
  }
  .p-footer__bottom-btn::before {
    width: 1.3vw;
    height: 1.3vw;
    right: 1.5vw;
  }
  .p-footer__copy {
    font-size: 1.3vw;
  }
}
.p-free {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  padding-top: 7vw;
  padding-bottom: 9vw;
  background: url(../images/free-bg.jpg) no-repeat center center/cover;
}

.p-free__title {
  font-size: 6.5vw;
  text-align: center;
}

.p-free__box {
  width: 63vw;
  margin-top: 6vw;
  margin-left: auto;
  margin-right: auto;
}

.p-free__text {
  width: 74vw;
  margin-top: 7vw;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .p-free {
    padding-top: 3vw;
    padding-bottom: 5vw;
  }
  .p-free__title {
    font-size: 3.5vw;
  }
  .p-free__box {
    width: 35vw;
    margin-top: 3.5vw;
  }
  .p-free__text {
    width: 45vw;
    margin-top: 4vw;
  }
}
.p-fv {
  position: relative;
  padding-top: 9vw;
  padding-bottom: 53%;
  background: url(../images/fv-bg.jpg) no-repeat center center/cover;
}

.p-fv__top {
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.p-fv__top-logo {
  width: 13vw;
  margin-left: auto;
  margin-right: auto;
}

.p-fv__top-text-wrap {
  margin-top: 10vw;
}

.p-fv__top-text {
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.p-fv__top-text + .p-fv__top-text {
  margin-top: 1vw;
}

.p-fv__top-img {
  width: 80vw;
  margin-top: 1.875rem;
  margin-left: auto;
  margin-right: auto;
}

.p-fv__bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-top: 1.125rem;
  background-color: rgba(20, 18, 43, .7);
}

.p-fv__bottom-text {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 7.5vw;
  font-weight: 700;
  margin-right: 0.9375rem;
  text-align: right;
  line-height: 1;
}

.p-fv__bottom-text span {
  font-size: 5.3vw;
}

.p-fv__bottom-img {
  position: absolute;
  width: 60vw;
  top: 22vw;
  left: 0;
  z-index: 1;
}

.p-fv__bottom-phrase {
  display: inline-block;
  margin-top: 19%;
}

/* 768px以上
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-fv {
    padding-top: 6vw;
    padding-bottom: 23%;
  }
  .p-fv__top-logo {
    width: 4vw;
  }
  .p-fv__top-text-wrap {
    margin-top: 2vw;
  }
  .p-fv__top-text {
    width: 35vw;
  }
  .p-fv__top-img {
    width: 25vw;
  }
  .p-fv__bottom-text {
    font-size: 2vw;
    margin-right: 1.6875rem;
  }
  .p-fv__bottom-text span {
    font-size: 1.3vw;
  }
  .p-fv__bottom-img {
    width: 40vw;
    top: 1rem;
    left: 3.125rem;
  }
  .p-fv__bottom-phrase {
    margin-top: 12%;
  }
}
.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  padding-left: 2.3vw;
  padding-right: 1.2vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

.p-header__nav {
  height: inherit;
}

.p-header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item + .p-header__nav-item {
  margin-left: 2.1vw;
}

.p-header__nav-item--contact {
  position: relative;
  margin-left: 1vw !important;
  padding-left: 1vw;
}

.p-header__nav-item--contact::before {
  position: absolute;
  content: "";
  width: 0.2vw;
  height: 3vw;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #929292;
}

.p-header__nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-size: 2.1vw;
  color: #929292;
  height: inherit;
}

/* 768px以上
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-header__nav-item--contact::before {
    width: 0.1875rem;
    height: 2.1875rem;
  }
  .p-header__nav-item a {
    font-size: 1.25rem;
  }
}
.p-main {
  display: none;
}

.p-movie {
  background: url(../images/movie-bg.jpg) no-repeat center center/cover;
}

.p-movie__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 11vw;
  padding-bottom: 11vw;
}

.p-movie__content img {
  width: 15vw;
}
@media screen and (min-width: 768px) {
  .p-movie__content img {
    width: 20vw;
  }
}

.p-movie__item {
  padding-left: 5%;
  padding-right: 5%;
}

.p-movie__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4vw;
  font-weight: 700;
  color: #1d1742;
  background-color: #fff;
  text-align: center;
}

.p-movie__box {
  width: 50vw;
  height: 28vw;
  margin-top: 8%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-movie__box {
    width: 44vw;
    height: 23vw;
  }
}

@media screen and (min-width: 768px) {
  .p-movie__content {
    width: 75%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .p-movie__content img {
    width: 12vw;
  }
  .p-movie__title {
    font-size: 2vw;
  }
  .p-movie__box {
    width: 40vw;
    height: 20vw;
    margin-top: 8%;
  }
}
.p-news {
  position: relative;
  padding-top: 12vw;
  background: #1e1d46 url(../images/news-bg.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-top: 6vw;
  }
}

.p-news__head {
  text-align: center;
}

.p-news__head-title {
  color: #fff;
}

.p-news__items {
  max-width: 85vw;
  width: 100%;
  font-size: 3.5vw;
  margin-top: 8vw;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-news__items {
    max-width: 55vw;
    font-size: 3vw;
    margin-top: 4vw;
  }
}

.p-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4.5vw 3vw;
  background-color: #181732;
}
@media screen and (min-width: 768px) {
  .p-news__item {
    padding: 2vw;
  }
}

.p-news__item + .p-news__item {
  margin-top: 0.3125rem;
}

.p-news__item:last-child {
  padding-right: 23vw;
}
@media screen and (min-width: 768px) {
  .p-news__item:last-child {
    padding-right: 9vw;
  }
}

.p-news__item-date {
  width: 24vw;
}
@media screen and (min-width: 768px) {
  .p-news__item-date {
    width: 19vw;
  }
}

.p-news__item-title {
  position: relative;
  width: calc(100% - 19vw);
  padding-left: 6vw;
}

.p-news__item-title::before {
  position: absolute;
  content: "";
  width: 2.5vw;
  height: 2.5vw;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/news-arrow-white.svg) no-repeat center center/contain;
}

.p-news__bottom {
  position: relative;
  width: 41vw;
  margin-top: -17vw;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-news__bottom {
    width: 25vw;
    margin-right: 10vw;
  }
}

.p-news__bottom img {
  pointer-events: none;
}

.p-news__human {
  width: 41vw;
  height: 41vw;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-news__human {
    width: 25vw;
    height: 25vw;
  }
}

.p-news__btn-wrap {
  position: absolute;
  bottom: 5vw;
  right: 3vw;
}

.p-news__btn {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 3vw;
  width: 42vw;
  padding: 3.5vw 4.5vw 3vw 0;
  color: #1f1c1c;
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 1;
}

.p-news__btn::before {
  position: absolute;
  content: "";
  width: 2.8vw;
  height: 2.8vw;
  top: 50%;
  right: 2.5vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/news-arrow-blue.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-news__btn::before {
    width: 1.5vw;
    height: 1.5vw;
  }
}

/* 768px以上
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-news__items {
    font-size: 1.5vw;
  }
  .p-news__item-date {
    width: 13vw;
  }
  .p-news__item-title {
    width: calc(100% - 17vw);
    padding-left: 6vw;
  }
  .p-news__item-title::before {
    width: 1.5vw;
    height: 1.5vw;
  }
  .p-news__btn {
    font-size: 1.3vw;
    width: 21vw;
    padding: 1.5vw 2.5vw 1vw 0;
  }
}
.p-recruit {
  padding-top: 12vw;
  padding-bottom: 12vw;
  background: url(../images/recruit-bg.png) no-repeat left center/contain;
}
@media screen and (min-width: 768px) {
  .p-recruit {
    padding-top: 6vw;
    padding-bottom: 8.3vw;
  }
}

.p-recruit__head {
  text-align: center;
}

.p-recruit__items {
  position: relative;
  margin-top: 4vw;
}

.p-recruit__items::after {
  position: absolute;
  content: "";
  width: 30vw;
  height: 40vw;
  bottom: -3vw;
  left: 11vw;
  background: url(../images/recruit-human.png) no-repeat center center/contain;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-recruit__items::after {
    width: 25vw;
    height: 35vw;
    left: 20vw;
  }
}

.p-recruit__item01 {
  width: 60vw;
}
@media screen and (min-width: 768px) {
  .p-recruit__item01 {
    width: 40vw;
  }
}

.p-recruit__item02 {
  width: 60vw;
  margin-top: 10vw;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit__item02 {
    width: 40vw;
  }
}

.p-recruit__item-link {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.p-recruit__item-link--top {
  display: block;
  width: 70vw;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit__item-link--top {
    width: 55vw;
  }
}
@media screen and (min-width: 1700px) {
  .p-recruit__item-link--top {
    width: 52vw;
  }
}

.p-recruit__item-link--bottom {
  display: block;
  width: 70vw;
  margin-top: -0.2vw;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit__item-link--bottom {
    width: 55vw;
  }
}
@media screen and (min-width: 1700px) {
  .p-recruit__item-link--bottom {
    width: 52vw;
  }
}

.p-service {
  padding-top: 12vw;
  padding-bottom: 38vw;
}

.p-service__head {
  text-align: center;
}

.p-service__items {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4vw;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

/* 人のイラスト
--------------------------*/
.p-service__items::before {
  position: absolute;
  content: "";
  width: 41vw;
  height: 49vw;
  top: 28vw;
  left: 0;
  background: url(../images/service-human.png) no-repeat center center/contain;
}

/* 教本
--------------------------*/
.p-service__items::after {
  position: absolute;
  content: "";
  width: 42vw;
  height: 23vw;
  bottom: -30vw;
  left: 0;
  background: url(../images/service-book.png) no-repeat center center/contain;
}

.p-service__item01,
.p-service__item02 {
  width: 40vw;
}

.p-service__item03 {
  position: absolute;
  width: 54vw;
  bottom: -26vw;
  right: 8vw;
}

@media screen and (min-width: 768px) {
  .p-service {
    padding-top: 6vw;
    padding-bottom: 22vw;
  }
  .p-service__items {
    gap: initial;
    width: 60%;
  }
  .p-service__items::before {
    width: 28vw;
    height: 28vw;
    top: 18vw;
    left: 4vw;
  }
  .p-service__items::after {
    width: 33vw;
    height: 22vw;
    bottom: -20vw;
    left: 2vw;
  }
  .p-service__item01,
  .p-service__item02 {
    width: 25vw;
  }
  .p-service__item03 {
    width: 30vw;
    bottom: -10vw;
    right: 8vw;
  }
}
.p-single-post {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15vw;
  padding-bottom: 10vw;
  color: #181732;
}

.p-single-post__content h2 {
  font-size: 4vw;
}

.p-single-post__content p {
  font-size: 1.3vw;
  margin-top: 3.5vw;
}

.p-top__item01 {
  position: relative;
}

.p-top__item01-b {
  position: absolute;
  width: 38vw;
  height: 55.5vw;
  bottom: 0;
  right: 0;
}

.p-top__item02 {
  position: relative;
}

.p-top__item01-k {
  position: absolute;
  width: 43.4vw;
  height: 58vw;
  top: 0;
  left: 0;
}

/* item02-text
--------------------------*/
.p-top__item02-box {
  position: absolute;
  bottom: 27.5vw;
  right: 0;
}

.p-top__item02-box-phrase {
  font-size: 15vw;
}
@media screen and (min-width: 768px) {
  .p-top__item02-box-phrase {
    font-size: 7vw;
  }
}

.p-top__item02-box-img {
  position: absolute;
  width: 60vw;
  left: 20vw;
  bottom: -29vw;
}
@media screen and (min-width: 768px) {
  .p-top__item02-box-img {
    width: 31vw;
    left: 5vw;
    bottom: -20vw;
  }
}

/* -----------------------*/
.p-top__item03 {
  position: relative;
  margin-top: -16.4vw;
  z-index: 1;
}

.p-top__item03-ashiba {
  position: absolute;
  width: 35vw;
  height: 20vw;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-top__item03-ashiba {
    width: 25vw;
    height: 13vw;
  }
}

.p-top__item04 {
  position: relative;
  margin-top: -27.3vw;
  z-index: 2;
}

/* item04-text
--------------------------*/
.p-top__item04-box {
  position: absolute;
  bottom: 3vw;
  left: 10vw;
}

.p-top__item04-box-phrase {
  font-size: 13vw;
  color: #6e6e6e;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .p-top__item04-box-phrase {
    font-size: 7vw;
  }
}

.p-top__item04-box-img {
  position: absolute;
  width: 57vw;
  left: -2vw;
  bottom: 4vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top__item04-box-img {
    width: 25vw;
  }
}

/* -----------------------*/
.p-video {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  z-index: 9999;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease; /* フェードアウトにかかる時間とイージングを指定 */
}

.p-video.fade-out {
  opacity: 0;
}

.p-video video {
  width: 100%;
}

/* 768px以上
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-video {
    top: auto;
    top: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
