@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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;
  -moz-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;
}

.l-container {
  max-width: 110rem;
  width: 100%;
  margin: auto;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.l-header_inner {
  padding: 2.4rem 14rem 3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header_logo {
  width: 21.1rem;
}
.l-header_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.l-header_btns a {
  width: 16rem;
  height: 5rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
  border-radius: 3rem;
}
.l-header_btns a .-jp {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.l-header_btns a.-btn01 {
  background: url("./../img/btn_modal_01.png");
  background-size: cover;
  background-position: center;
}
.l-header_btns a.-btn02 {
  background: url("./../img/btn_modal_02.png");
  background-size: cover;
  background-position: center;
}
.l-header_btns a.-btn03 {
  width: 20rem;
  background: url("./../img/btn_modal_01.png");
  background-size: cover;
  background-position: center;
}
.l-header_menubtn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 8rem;
  height: 8rem;
  background: url("./../img/ico_menu.png");
  background-size: cover;
  cursor: pointer;
}

.modal {
  background: #000;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}
.modal_inner {
  max-width: 91rem;
  width: 100%;
}
.modal_box01 {
  margin: auto;
  max-width: 78rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 11rem;
}
.modal_bottoms {
  bottom: 0;
  left: 0;
  position: absolute;
  display: flex;
  align-items: center;
}
.modal_bottoms ul {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.modal_bottoms ul li {
  width: 2.9rem;
}
.modal_bottoms ul li:last-of-type {
  width: 3.9rem;
}
.modal_corplink {
  margin-right: 7.9rem;
}
.modal_corplink a {
  font-size: 1.4rem;
  color: #fff;
  position: relative;
  letter-spacing: 0.04em;
}
.modal_corplink a:after {
  position: absolute;
  right: -1.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: url("./../img/ico_blank_foot.svg");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.modal_dt {
  padding-left: 4rem;
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
  color: #fff;
}
.modal_dt:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.02rem;
  height: 2.975rem;
  content: "";
}
.modal_dt.-red:before {
  background: url("./../img/ico_foot_cube_01.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.modal_dt.-green:before {
  background: url("./../img/ico_foot_cube_02.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.modal_dt.-blue:before {
  background: url("./../img/ico_foot_cube_03.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.modal_dd h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #fff;
}
.modal_dd ul li {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.modal_dd ul li:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 0.1rem;
  background: #fff;
  content: "";
}
.modal_dd ul li a {
  color: #fff;
  font-size: 1.4rem;
}
.modal_dd ul li a.-blank {
  position: relative;
}
.modal_dd ul li a.-blank:after {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: url("./../img/ico_blank_foot.svg");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.modal_dd ul li:last-child {
  margin-bottom: 2rem;
}
.modal_box02 {
  background: #fff;
  border-radius: 2rem;
  padding: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.modal_box02 a {
  max-width: 30rem;
  width: 48%;
  height: 8rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
  border-radius: 5rem;
}
.modal_box02 a .-jp {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.modal_box02 a .-eng {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.modal_box02 a.-btn01 {
  background: url("./../img/btn_modal_01.png");
  background-size: cover;
  background-position: center;
}
.modal_box02 a.-btn02 {
  background: url("./../img/btn_modal_02.png");
  background-size: cover;
  background-position: center;
}
.modal_box02 a.-btn03 {
  background: url("./../img/btn_modal_01.png");
  background-size: cover;
  background-position: center;
}
.modal_menubtn {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  width: 8rem;
  height: 8rem;
  background: url("./../img/ico_menu_close.png");
  background-size: cover;
  cursor: pointer;
}
.modal.-op {
  opacity: 1;
  visibility: initial;
}

.fixBtn {
  position: fixed;
  display: none;
  width: 100%;
  bottom: 1rem;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
.fixBtn P {
  margin: auto;
  width: 100%;
  padding-right: 2rem;
  text-align: right;
  pointer-events: none;
}
.fixBtn P a {
  display: inline-block;
  pointer-events: all;
  width: 6rem;
}

.l-footer {
  padding: 8rem 0 3.2rem;
  position: relative;
  z-index: 10;
  background: #fff;
}
.l-footer .l-container {
  display: flex;
  justify-content: space-between;
}
.l-footer .l-container:last-of-type {
  margin-top: 4.4rem;
}
.l-footer_left {
  width: 26rem;
}
.l-footer_right {
  width: 70.5rem;
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
}
.l-footer_logo {
  margin-bottom: 2.3rem;
  transform: translateX(0.2rem);
}
.l-footer_address {
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.l-footer_tel {
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.04em;
}
.l-footer_dt {
  padding-left: 4rem;
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
}
.l-footer_dt:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.02rem;
  height: 2.975rem;
  content: "";
}
.l-footer_dt.-red:before {
  background: url("./../img/ico_foot_cube_01.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.l-footer_dt.-green:before {
  background: url("./../img/ico_foot_cube_02.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.l-footer_dt.-blue:before {
  background: url("./../img/ico_foot_cube_03.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.l-footer_dd h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.l-footer_dd ul li {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.l-footer_dd ul li:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 0.1rem;
  background: #000;
  content: "";
}
.l-footer_dd ul li a {
  color: #000;
  font-size: 1.4rem;
}
.l-footer_dd ul li a.-blank {
  position: relative;
}
.l-footer_dd ul li a.-blank:after {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: url("./../img/ico_blank_foot.svg");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.l-footer_dd ul li:last-child {
  margin-bottom: 2rem;
}
.l-footer_bottoms {
  display: flex;
  align-items: center;
}
.l-footer_bottoms ul {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.l-footer_bottoms ul li {
  width: 2.9rem;
}
.l-footer_bottoms ul li:last-of-type {
  width: 3.9rem;
}
.l-footer_corplink {
  margin-right: 7.9rem;
}
.l-footer_corplink a {
  font-size: 1.4rem;
  color: #000;
  position: relative;
  letter-spacing: 0.04em;
}
.l-footer_corplink a:after {
  position: absolute;
  right: -1.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: url("./../img/ico_blank_foot.svg");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.l-footer_copy {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  transform: translateY(0.6rem);
}

@media screen and (max-width: 750px) {
  .l-container {
    width: 90%;
  }
  .l-header_inner {
    padding: 0 0 0 1.3rem;
  }
  .l-header_logo {
    width: 33.4rem;
  }
  .l-header_btns {
    display: none;
  }
  .l-header_entry {
    display: none;
  }
  .l-header_menubtn {
    top: 1rem;
    right: 1rem;
    width: 10rem;
    height: 10rem;
  }
  .modal {
    align-items: flex-start;
    padding: 15rem 0;
    overflow: scroll;
  }
  .modal_inner {
    width: 90%;
  }
  .modal_box01 {
    border-top: 0.1rem solid #707070;
    flex-flow: column;
    margin-bottom: 24.8rem;
  }
  .modal_dt {
    padding: 4.8rem 0 4.8rem 6.8rem;
    font-size: 3.2rem;
    margin-bottom: 0;
    border-bottom: 0.1rem solid #707070;
    font-weight: 600;
  }
  .modal_dt:before {
    width: 4.8rem;
    height: 4.8rem;
  }
  .modal_dt:after {
    width: 3.8rem;
    height: 4.2rem;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("./../img/ico_plus.svg");
    background-size: cover;
  }
  .modal_dt.-op:after {
    width: 3.8rem;
    height: 0.2rem;
    background: url("./../img/ico_mynus.svg");
    background-size: cover;
  }
  .modal_dd {
    background: rgba(255, 255, 255, 0.25);
    padding: 2rem 6rem;
    display: none;
  }
  .modal_dd h3 {
    font-size: 2.4rem;
  }
  .modal_dd ul li {
    margin-bottom: 1.5rem;
    padding: 2.6rem 0 2.6rem 3rem;
    border-bottom: 0.1rem solid #707070;
    position: relative;
  }
  .modal_dd ul li:before {
    width: 2rem;
    height: 0.1rem;
  }
  .modal_dd ul li a {
    font-size: 2.8rem;
  }
  .modal_dd ul li a.-blank:after {
    right: -3.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
  .modal_dd ul li:last-child {
    margin-bottom: 0;
    border: none;
  }
  .modal_bottoms {
    position: static;
    margin-top: 8rem;
    justify-content: space-between;
  }
  .modal_bottoms ul {
    gap: 6rem;
  }
  .modal_bottoms ul li {
    width: 5.8rem;
  }
  .modal_bottoms ul li:last-of-type {
    width: 7.8rem;
  }
  .modal_corplink {
    margin-right: 7.9rem;
  }
  .modal_corplink a {
    font-size: 2.8rem;
  }
  .modal_corplink a:after {
    right: -3.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
  .modal_box02 {
    padding: 3.6rem;
    gap: 4rem;
    flex-flow: column;
  }
  .modal_box02 a {
    max-width: 51rem;
    width: 100%;
    height: 10rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  }
  .modal_box02 a .-jp {
    font-size: 2.8rem;
  }
  .modal_box02 a .-eng {
    font-size: 3.2rem;
  }
  .modal_box02 a.-btn01 {
    background: url(./../img/btn_modal_01.png);
    background-size: cover;
    background-position: center;
  }
  .modal_box02 a.-btn02 {
    background: url(./../img/btn_modal_02.png);
    background-size: cover;
    background-position: center;
  }
  .modal_box02 a.-btn03 {
    background: url("./../img/btn_modal_01.png");
    background-size: cover;
    background-position: center;
  }
  .modal_menubtn {
    top: 1rem;
    right: 1rem;
    width: 10rem;
    height: 10rem;
  }
  .l-footer {
    padding: 7rem 0;
  }
  .l-footer .l-container {
    flex-flow: column;
  }
  .l-footer_left {
    width: 100%;
  }
  .l-footer_right {
    display: none;
  }
  .l-footer_logo {
    width: 40rem;
    margin: 0 auto 5rem;
    transform: translateX(0);
  }
  .l-footer_address {
    text-align: center;
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .l-footer_address br {
    display: none;
  }
  .l-footer_tel {
    text-align: center;
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .l-footer_dl {
    width: 50%;
  }
  .l-footer_dt {
    padding-left: 4rem;
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .l-footer_dd h3 {
    font-size: 2.4rem;
  }
  .l-footer_dd ul li {
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
  }
  .l-footer_dd ul li:before {
    width: 2rem;
    height: 0.1rem;
  }
  .l-footer_dd ul li a {
    font-size: 2rem;
  }
  .l-footer_dd ul li a.-blank:after {
    right: -3.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
  .l-footer_dd ul li:last-child {
    margin-bottom: 5rem;
  }
  .l-footer_bottoms {
    justify-content: center;
  }
  .l-footer_bottoms ul li {
    width: 4rem;
  }
  .l-footer_bottoms ul li:last-of-type {
    width: 5rem;
  }
  .l-footer_corplink {
    margin-right: 7.9rem;
  }
  .l-footer_corplink a {
    font-size: 2.4rem;
  }
  .l-footer_corplink a:after {
    right: -3.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
  .l-footer_copy {
    margin-top: 5rem;
    font-size: 1.4rem;
    text-align: center;
    transform: translateY(0);
  }
  .fixBtn P a {
    width: 12rem;
  }
}
.c-btn {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding-right: 5.7rem;
  position: relative;
  color: #000;
}
.c-btn:before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4.6rem;
  height: 4.6rem;
  background: url("./../img/ico_btn_arrow_blk.svg");
  background-size: cover;
  border-radius: 50%;
  content: "";
  transition: 0.3s;
}
.c-btn span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.c-btn:hover:before {
  transform: translate(1rem, -50%);
  background: url("./../img/ico_btn_arrow_blk_hover.svg");
  background-size: cover;
}
.c-btn.-wht {
  color: #fff;
}
.c-btn.-wht:before {
  background: url("./../img/ico_btn_arrow_wht.svg");
  background-size: cover;
}
.c-btn.-wht span {
  border-bottom: 0.1rem solid #fff;
}
.c-btn.-wht:hover:before {
  transform: translate(1rem, -50%);
  background: url("./../img/ico_btn_arrow_wht_hover.svg");
  background-size: cover;
}

@media screen and (max-width: 750px) {
  .c-btn {
    padding-right: 10rem;
  }
  .c-btn:before {
    width: 8rem;
    height: 8rem;
  }
  .c-btn span {
    font-size: 2.8rem;
  }
}
img {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #666666;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
a:hover img:hover {
  opacity: 0.7;
  transition: 0.3s;
}

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

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

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

@media screen and (max-width: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
    overflow-x: hidden;
  }
}
/*フォント*/
body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
}

.js-fadeLeft {
  opacity: 0;
  transform: translateX(-10rem);
  transition: opacity 0.4s, transform 0.4s;
}
.js-fadeLeft.is-inview {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0.5s;
}

.js-fadeRight {
  opacity: 0;
  transform: translateX(10rem);
  transition: opacity 0.4s, transform 0.4s;
}
.js-fadeRight.is-inview {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0.5s;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.p-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*---------トップページ---------*/
.p-top {
  position: relative;
  width: 100%;
  overflow: clip;
}
.p-top_mv_video video {
  width: 100%;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}
.p-top_mv_ttl {
  position: absolute;
  width: 77.4rem;
  top: 67.3rem;
  left: 52.5rem;
  z-index: 10;
}
.p-top_mv .dice {
  position: absolute;
  z-index: 10;
  transition: 1.5s;
}
.p-top_mv .dice_container {
  animation: rotationBox 20s linear infinite forwards;
  height: 100%;
  position: relative;
  transform: translateZ(-10rem);
  transform-style: preserve-3d;
  width: 100%;
}
.p-top_mv .dice_face {
  align-items: center;
  background-color: #eee;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: absolute;
}
.p-top_mv .dice.-green .dice_face_front,
.p-top_mv .dice.-green .dice_face_back {
  background: #87e8dc;
}
.p-top_mv .dice.-green .dice_face_left,
.p-top_mv .dice.-green .dice_face_right {
  background: #21d5bf;
}
.p-top_mv .dice.-blue .dice_face_front,
.p-top_mv .dice.-blue .dice_face_back {
  background: #52bac8;
}
.p-top_mv .dice.-blue .dice_face_left,
.p-top_mv .dice.-blue .dice_face_right {
  background: #a0d9e1;
}
.p-top_mv .dice.-blue02 .dice_face_front,
.p-top_mv .dice.-blue02 .dice_face_back {
  background: #a0d9e1;
}
.p-top_mv .dice.-blue02 .dice_face_left,
.p-top_mv .dice.-blue02 .dice_face_right {
  background: #52bac8;
}
.p-top_mv .dice.-yellow .dice_face_front,
.p-top_mv .dice.-yellow .dice_face_back {
  background: #ffac00;
}
.p-top_mv .dice.-yellow .dice_face_left,
.p-top_mv .dice.-yellow .dice_face_right {
  background: #ffcf39;
}
.p-top_mv .dice.-red .dice_face_front,
.p-top_mv .dice.-red .dice_face_back {
  background: #e6483b;
}
.p-top_mv .dice.-red .dice_face_left,
.p-top_mv .dice.-red .dice_face_right {
  background: #ec746a;
}
.p-top_mv .-dice01 {
  height: 13.8rem;
  width: 13.8rem;
  top: 17.6rem;
  left: 8.3rem;
}
.p-top_mv .-dice01 .dice_face {
  height: 13.8rem;
  width: 13.8rem;
}
.p-top_mv .-dice01_front {
  transform: rotateY(0deg) translateZ(6.9rem);
}
.p-top_mv .-dice01_back {
  transform: rotateY(180deg) translateZ(6.9rem);
}
.p-top_mv .-dice01_left {
  transform: rotateY(-90deg) translateZ(6.9rem);
}
.p-top_mv .-dice01_right {
  transform: rotateY(90deg) translateZ(6.9rem);
}
.p-top_mv .-dice01_top {
  transform: rotateX(90deg) translateZ(6.9rem);
  background: url("./../img/top_mv_dice_01.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice01_bottom {
  transform: rotateX(-90deg) translateZ(6.9rem);
  background: url("./../img/top_mv_dice_01.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice02 {
  height: 12.2rem;
  width: 12.2rem;
  top: 50.7rem;
  left: 7.5rem;
}
.p-top_mv .-dice02 .dice_face {
  height: 12.2rem;
  width: 12.2rem;
}
.p-top_mv .-dice02_front {
  transform: rotateY(0deg) translateZ(6.1rem);
}
.p-top_mv .-dice02_back {
  transform: rotateY(180deg) translateZ(6.1rem);
}
.p-top_mv .-dice02_left {
  transform: rotateY(-90deg) translateZ(6.1rem);
}
.p-top_mv .-dice02_right {
  transform: rotateY(90deg) translateZ(6.1rem);
}
.p-top_mv .-dice02_top {
  transform: rotateX(90deg) translateZ(6.1rem);
  background: url("./../img/top_mv_dice_02.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice02_bottom {
  transform: rotateX(-90deg) translateZ(6.1rem);
  background: url("./../img/top_mv_dice_02.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice03 {
  height: 15.3rem;
  width: 15.3rem;
  top: 10.3rem;
  left: 36.7rem;
}
.p-top_mv .-dice03 .dice_face {
  height: 15.3rem;
  width: 15.3rem;
}
.p-top_mv .-dice03_front {
  transform: rotateY(0deg) translateZ(7.65rem);
}
.p-top_mv .-dice03_back {
  transform: rotateY(180deg) translateZ(7.65rem);
}
.p-top_mv .-dice03_left {
  transform: rotateY(-90deg) translateZ(7.65rem);
}
.p-top_mv .-dice03_right {
  transform: rotateY(90deg) translateZ(7.65rem);
}
.p-top_mv .-dice03_top {
  transform: rotateX(90deg) translateZ(7.65rem);
  background: url("./../img/top_mv_dice_03.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice03_bottom {
  transform: rotateX(-90deg) translateZ(7.65rem);
  background: url("./../img/top_mv_dice_03.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice04 {
  height: 13rem;
  width: 13rem;
  top: 43.4rem;
  left: 31.4rem;
}
.p-top_mv .-dice04 .dice_face {
  height: 13rem;
  width: 13rem;
}
.p-top_mv .-dice04_front {
  transform: rotateY(0deg) translateZ(6.5rem);
}
.p-top_mv .-dice04_back {
  transform: rotateY(180deg) translateZ(6.5rem);
}
.p-top_mv .-dice04_left {
  transform: rotateY(-90deg) translateZ(6.5rem);
}
.p-top_mv .-dice04_right {
  transform: rotateY(90deg) translateZ(6.5rem);
}
.p-top_mv .-dice04_top {
  transform: rotateX(90deg) translateZ(6.5rem);
  background: url("./../img/top_mv_dice_04.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice04_bottom {
  transform: rotateX(-90deg) translateZ(6.5rem);
  background: url("./../img/top_mv_dice_04.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice05 {
  height: 12.7rem;
  width: 12.7rem;
  top: 33.6rem;
  left: 59.3rem;
}
.p-top_mv .-dice05 .dice_face {
  height: 12.7rem;
  width: 12.7rem;
}
.p-top_mv .-dice05_front {
  transform: rotateY(0deg) translateZ(6.35rem);
}
.p-top_mv .-dice05_back {
  transform: rotateY(180deg) translateZ(6.35rem);
}
.p-top_mv .-dice05_left {
  transform: rotateY(-90deg) translateZ(6.35rem);
}
.p-top_mv .-dice05_right {
  transform: rotateY(90deg) translateZ(6.35rem);
}
.p-top_mv .-dice05_top {
  transform: rotateX(90deg) translateZ(6.35rem);
  background: url("./../img/top_mv_dice_05.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice05_bottom {
  transform: rotateX(-90deg) translateZ(6.35rem);
  background: url("./../img/top_mv_dice_05.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice06 {
  height: 9rem;
  width: 9rem;
  top: 16.8rem;
  left: 84.4rem;
}
.p-top_mv .-dice06 .dice_face {
  height: 9rem;
  width: 9rem;
}
.p-top_mv .-dice06_front {
  transform: rotateY(0deg) translateZ(4.5rem);
}
.p-top_mv .-dice06_back {
  transform: rotateY(180deg) translateZ(4.5rem);
}
.p-top_mv .-dice06_left {
  transform: rotateY(-90deg) translateZ(4.5rem);
}
.p-top_mv .-dice06_right {
  transform: rotateY(90deg) translateZ(4.5rem);
}
.p-top_mv .-dice06_top {
  transform: rotateX(90deg) translateZ(4.5rem);
  background: url("./../img/top_mv_dice_06.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice06_bottom {
  transform: rotateX(-90deg) translateZ(4.5rem);
  background: url("./../img/top_mv_dice_06.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice07 {
  height: 13.2rem;
  width: 13.2rem;
  top: 48rem;
  left: 79.7rem;
}
.p-top_mv .-dice07 .dice_face {
  height: 13.2rem;
  width: 13.2rem;
}
.p-top_mv .-dice07_front {
  transform: rotateY(0deg) translateZ(6.6rem);
}
.p-top_mv .-dice07_back {
  transform: rotateY(180deg) translateZ(6.6rem);
}
.p-top_mv .-dice07_left {
  transform: rotateY(-90deg) translateZ(6.6rem);
}
.p-top_mv .-dice07_right {
  transform: rotateY(90deg) translateZ(6.6rem);
}
.p-top_mv .-dice07_top {
  transform: rotateX(90deg) translateZ(6.6rem);
  background: url("./../img/top_mv_dice_07.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice07_bottom {
  transform: rotateX(-90deg) translateZ(6.6rem);
  background: url("./../img/top_mv_dice_07.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice08 {
  height: 18.6rem;
  width: 18.6rem;
  top: 17.8rem;
  left: 106.4rem;
}
.p-top_mv .-dice08 .dice_face {
  height: 18.6rem;
  width: 18.6rem;
}
.p-top_mv .-dice08_front {
  transform: rotateY(0deg) translateZ(9.3rem);
}
.p-top_mv .-dice08_back {
  transform: rotateY(180deg) translateZ(9.3rem);
}
.p-top_mv .-dice08_left {
  transform: rotateY(-90deg) translateZ(9.3rem);
}
.p-top_mv .-dice08_right {
  transform: rotateY(90deg) translateZ(9.3rem);
}
.p-top_mv .-dice08_top {
  transform: rotateX(90deg) translateZ(9.3rem);
  background: url("./../img/top_mv_dice_08.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice08_bottom {
  transform: rotateX(-90deg) translateZ(9.3rem);
  background: url("./../img/top_mv_dice_08.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice09 {
  height: 11.4rem;
  width: 11.4rem;
  top: 46rem;
  left: 103.7rem;
}
.p-top_mv .-dice09 .dice_face {
  height: 11.4rem;
  width: 11.4rem;
}
.p-top_mv .-dice09_front {
  transform: rotateY(0deg) translateZ(5.7rem);
}
.p-top_mv .-dice09_back {
  transform: rotateY(180deg) translateZ(5.7rem);
}
.p-top_mv .-dice09_left {
  transform: rotateY(-90deg) translateZ(5.7rem);
}
.p-top_mv .-dice09_right {
  transform: rotateY(90deg) translateZ(5.7rem);
}
.p-top_mv .-dice09_top {
  transform: rotateX(90deg) translateZ(5.7rem);
  background: url("./../img/top_mv_dice_09.jpg") center;
  background-size: cover;
}
.p-top_mv .-dice09_bottom {
  transform: rotateX(-90deg) translateZ(5.7rem);
  background: url("./../img/top_mv_dice_09.jpg") center;
  background-size: cover;
}
.p-top_mv .randomRotation1 {
  animation: randomRotation1 70s infinite linear;
}
.p-top_mv .randomRotation2 {
  animation: randomRotation2 70s infinite linear;
}
.p-top_mv .randomRotation3 {
  animation: randomRotation3 70s infinite linear;
}
.p-top_mv .randomRotation4 {
  animation: randomRotation4 70s infinite linear;
}
.p-top_mv .randomRotation5 {
  animation: randomRotation5 70s infinite linear;
}
.p-top_mv .randomRotation6 {
  animation: randomRotation6 70s infinite linear;
}
.p-top_mv .randomRotation7 {
  animation: randomRotation7 70s infinite linear;
}
.p-top_mv .randomRotation8 {
  animation: randomRotation8 70s infinite linear;
}
.p-top_mv .randomRotation9 {
  animation: randomRotation9 70s infinite linear;
}
@keyframes randomRotation1 {
  0% {
    transform: rotate3d(0.3, 0.25, 0.15, -45deg) rotateX(100deg) rotateY(20deg);
  }
  25% {
    transform: rotate3d(0.3, 0.25, 0.15, -30deg) rotateX(85deg) rotateY(5deg);
  }
  50% {
    transform: rotate3d(0.3, 0.25, 0.15, -60deg) rotateX(115deg) rotateY(35deg);
  }
  75% {
    transform: rotate3d(0.3, 0.25, 0.15, -25deg) rotateX(90deg) rotateY(10deg);
  }
  100% {
    transform: rotate3d(0.3, 0.25, 0.15, -45deg) rotateX(100deg) rotateY(20deg);
  }
}
@keyframes randomRotation2 {
  0% {
    transform: rotate3d(0.23, 0.06, 0.21, 86deg) rotateX(-120deg) rotateY(90deg);
  }
  25% {
    transform: rotate3d(0.23, 0.06, 0.21, 70deg) rotateX(-105deg) rotateY(75deg);
  }
  50% {
    transform: rotate3d(0.23, 0.06, 0.21, 100deg) rotateX(-135deg) rotateY(105deg);
  }
  75% {
    transform: rotate3d(0.23, 0.06, 0.21, 75deg) rotateX(-110deg) rotateY(80deg);
  }
  100% {
    transform: rotate3d(0.23, 0.06, 0.21, 86deg) rotateX(-120deg) rotateY(90deg);
  }
}
@keyframes randomRotation3 {
  0% {
    transform: rotate3d(0.26, 0.09, 0.04, 55deg) rotateX(-115deg) rotateY(35deg);
  }
  25% {
    transform: rotate3d(0.26, 0.09, 0.04, 40deg) rotateX(-100deg) rotateY(20deg);
  }
  50% {
    transform: rotate3d(0.26, 0.09, 0.04, 70deg) rotateX(-130deg) rotateY(50deg);
  }
  75% {
    transform: rotate3d(0.26, 0.09, 0.04, 45deg) rotateX(-105deg) rotateY(25deg);
  }
  100% {
    transform: rotate3d(0.26, 0.09, 0.04, 55deg) rotateX(-115deg) rotateY(35deg);
  }
}
@keyframes randomRotation4 {
  0% {
    transform: rotate3d(0.25, 0.08, 0.2, -70deg) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: rotate3d(0.25, 0.08, 0.2, -55deg) rotateX(15deg) rotateY(15deg);
  }
  50% {
    transform: rotate3d(0.25, 0.08, 0.2, -85deg) rotateX(-15deg) rotateY(-15deg);
  }
  75% {
    transform: rotate3d(0.25, 0.08, 0.2, -60deg) rotateX(10deg) rotateY(10deg);
  }
  100% {
    transform: rotate3d(0.25, 0.08, 0.2, -70deg) rotateX(0deg) rotateY(0deg);
  }
}
@keyframes randomRotation5 {
  0% {
    transform: rotate3d(0.22, -0.5, 0.24, -36deg) rotateX(-70deg) rotateY(13deg);
  }
  25% {
    transform: rotate3d(0.22, -0.5, 0.24, -21deg) rotateX(-55deg) rotateY(28deg);
  }
  50% {
    transform: rotate3d(0.22, -0.5, 0.24, -51deg) rotateX(-85deg) rotateY(-2deg);
  }
  75% {
    transform: rotate3d(0.22, -0.5, 0.24, -26deg) rotateX(-60deg) rotateY(23deg);
  }
  100% {
    transform: rotate3d(0.22, -0.5, 0.24, -36deg) rotateX(-70deg) rotateY(13deg);
  }
}
@keyframes randomRotation6 {
  0% {
    transform: rotate3d(0.28, 0.2, 0.06, 240deg) rotateX(45deg) rotateY(20deg);
  }
  25% {
    transform: rotate3d(0.28, 0.2, 0.06, 225deg) rotateX(30deg) rotateY(5deg);
  }
  50% {
    transform: rotate3d(0.28, 0.2, 0.06, 255deg) rotateX(60deg) rotateY(35deg);
  }
  75% {
    transform: rotate3d(0.28, 0.2, 0.06, 230deg) rotateX(35deg) rotateY(10deg);
  }
  100% {
    transform: rotate3d(0.28, 0.2, 0.06, 240deg) rotateX(45deg) rotateY(20deg);
  }
}
@keyframes randomRotation7 {
  0% {
    transform: rotate3d(0.02, 0.24, 3, 45deg) rotateX(100deg) rotateY(-25deg);
  }
  25% {
    transform: rotate3d(0.02, 0.24, 3, 30deg) rotateX(85deg) rotateY(-10deg);
  }
  50% {
    transform: rotate3d(0.02, 0.24, 3, 60deg) rotateX(115deg) rotateY(-40deg);
  }
  75% {
    transform: rotate3d(0.02, 0.24, 3, 35deg) rotateX(90deg) rotateY(-15deg);
  }
  100% {
    transform: rotate3d(0.02, 0.24, 3, 45deg) rotateX(100deg) rotateY(-25deg);
  }
}
@keyframes randomRotation8 {
  0% {
    transform: rotate3d(4.25, 3.08, 0.8, -60deg) rotateX(-20deg) rotateY(10deg);
  }
  25% {
    transform: rotate3d(4.25, 3.08, 0.8, -45deg) rotateX(-5deg) rotateY(25deg);
  }
  50% {
    transform: rotate3d(4.25, 3.08, 0.8, -75deg) rotateX(-35deg) rotateY(-5deg);
  }
  75% {
    transform: rotate3d(4.25, 3.08, 0.8, -50deg) rotateX(-10deg) rotateY(20deg);
  }
  100% {
    transform: rotate3d(4.25, 3.08, 0.8, -60deg) rotateX(-20deg) rotateY(10deg);
  }
}
@keyframes randomRotation9 {
  0% {
    transform: rotate3d(0.22, -8.5, 0.24, -25deg) rotateX(-100deg) rotateY(25deg);
  }
  25% {
    transform: rotate3d(0.22, -8.5, 0.24, -10deg) rotateX(-85deg) rotateY(40deg);
  }
  50% {
    transform: rotate3d(0.22, -8.5, 0.24, -40deg) rotateX(-115deg) rotateY(10deg);
  }
  75% {
    transform: rotate3d(0.22, -8.5, 0.24, -15deg) rotateX(-90deg) rotateY(35deg);
  }
  100% {
    transform: rotate3d(0.22, -8.5, 0.24, -25deg) rotateX(-100deg) rotateY(25deg);
  }
}
.p-top_overview {
  margin-top: 10rem;
  position: relative;
  z-index: 10;
}
.p-top_overview:before {
  position: absolute;
  width: 139.5rem;
  height: 59.5rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(./../img/bg_cube_top.png);
  background-size: cover;
  pointer-events: none;
}
.p-top_overview_ttl {
  max-width: 85.9rem;
  margin: 0 auto -0.5rem;
  transform: translateX(0.5rem);
}
.p-top_overview_flex {
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.p-top_overview_flex a {
  display: block;
  width: 54rem;
}
.p-top .sticky_btn {
  position: fixed;
  bottom: 7rem;
  right: 3rem;
  width: 28rem;
  display: inline-block;
  pointer-events: auto;
  z-index: 100;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
  visibility: hidden;
  transition: 0.6s;
}
.p-top .sticky_btn span {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 10;
  width: 2rem;
}
.p-top .sticky_btn a {
  display: block;
}
.p-top .sticky_btn.-active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
  visibility: initial;
}
.p-top .sticky_btn.-hide {
  opacity: 0 !important;
  visibility: hidden;
}
.p-top_about {
  margin-top: 13.8rem;
  position: relative;
  z-index: 10;
}
.p-top_about:before {
  position: absolute;
  width: 139.5rem;
  height: 59.5rem;
  bottom: 6.6rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(./../img/bg_cube_top.png);
  background-size: cover;
  pointer-events: none;
}
.p-top_about_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-top_about_flex .c-btn {
  transform: translateY(2rem);
}
.p-top_about_ttl {
  max-width: 45rem;
  transform: translateY(-4rem);
  padding-top: 16.8rem;
  padding-bottom: 10rem;
}
.p-top_about_cube {
  max-width: 40rem;
  transform: translate(4rem, -1rem);
}
.p-top_about_cube .dice {
  height: 24rem;
  width: 24rem;
}
.p-top_about_cube .dice_container {
  animation: randomRotation7 70s infinite linear;
  height: 100%;
  position: relative;
  transform: translateZ(-10rem);
  transform-style: preserve-3d;
  width: 100%;
}
.p-top_about_cube .dice_face {
  height: 24rem;
  width: 24rem;
  align-items: center;
  background-color: #eee;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: absolute;
}
.p-top_about_cube .dice_face_front {
  transform: rotateY(0deg) translateZ(12rem);
  background: url("./../img/top_about_dice_03.jpg");
  background-size: cover;
}
.p-top_about_cube .dice_face_back {
  transform: rotateY(180deg) translateZ(12rem);
  background: url("./../img/top_about_dice_03.jpg");
  background-size: cover;
}
.p-top_about_cube .dice_face_left {
  transform: rotateY(-90deg) translateZ(12rem);
  background: url("./../img/top_about_dice_02.jpg");
  background-size: cover;
}
.p-top_about_cube .dice_face_right {
  transform: rotateY(90deg) translateZ(12rem);
  background: url("./../img/top_about_dice_02.jpg");
  background-size: cover;
}
.p-top_about_cube .dice_face_top {
  transform: rotateX(90deg) translateZ(12rem);
  background: url("./../img/top_about_dice_01.jpg");
  background-size: cover;
}
.p-top_about_cube .dice_face_bottom {
  transform: rotateX(-90deg) translateZ(12rem);
  background: url("./../img/top_about_dice_01.jpg");
  background-size: cover;
}
.p-top_about_box.-box01 {
  margin-top: 1.8rem;
}
.p-top_about_box.-box02 {
  margin-top: 14.5rem;
  padding-bottom: 15rem;
}
.p-top_about_box.-box02 .p-top_about_flex {
  align-items: center;
}
.p-top_about_box.-box02 .p-top_about_flex > div {
  margin-left: 15em;
}
.p-top_about_box.-box02 .p-top_about_subttl {
  margin-bottom: 7.5rem;
}
.p-top_about_box.-box02 picture {
  width: 42rem;
  border-radius: 2rem;
  overflow: hidden;
}
.p-top_about_subttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-top_about_subttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-top_about_list {
  display: flex;
  gap: 4rem;
}
.p-top_about_item {
  width: 24.5rem;
}
.p-top_about_item a {
  color: #000;
}
.p-top_about_item a:hover .p-top_about_item_thum span img {
  transform: scale(1.1);
  opacity: 1;
}
.p-top_about_item_thum {
  border-radius: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: block;
}
.p-top_about_item_thum span {
  border-radius: 2rem;
  overflow: hidden;
  display: inline-block;
}
.p-top_about_item_thum img {
  transition: 0.3s;
}
.p-top_about_item.-red .p-top_about_item_thum {
  background: #FF5000;
}
.p-top_about_item.-green .p-top_about_item_thum {
  background: #32B330;
}
.p-top_about_item.-blue .p-top_about_item_thum {
  background: #28ACEA;
}
.p-top_about_item.-yellow .p-top_about_item_thum {
  background: #FFCF39;
}
.p-top_about_item_txt {
  font-size: 1.4rem;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
}
.p-top_bgblk {
  background: #000;
  padding: 15rem 0 15rem;
}
.p-top_work {
  margin-bottom: 15rem;
  position: relative;
  z-index: 1;
}
.p-top_work:before {
  position: absolute;
  width: 139.5rem;
  height: 59.5rem;
  bottom: 6.6rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(./../img/bg_cube_top.png);
  background-size: cover;
  pointer-events: none;
}
.p-top_work_ttl {
  width: 45rem;
  position: relative;
  z-index: 30;
  margin-bottom: 10.2rem;
  transform: translateX(-0.8rem);
}
.p-top_work_flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.p-top_work_flex_right {
  width: 49rem;
}
.p-top_work_flex.pcnone {
  display: none;
}
.p-top_work_box {
  border-radius: 2rem;
}
.p-top_work_box_ttl {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0.3rem 0.4rem rgba(0, 0, 120, 0.4);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.03em;
}
.p-top_work_box_ttl span {
  font-size: 1.4rem;
  display: block;
  text-shadow: none;
  letter-spacing: 0.03em;
}
.p-top_work_box.-workstyle {
  background: #FF5000;
  width: 57rem;
  padding: 1rem 1rem 2rem;
}
.p-top_work_box.-workstyle .p-top_work_box_thum {
  margin-bottom: 2rem;
}
.p-top_work_box.-workstyle .p-top_work_box_flex {
  display: flex;
  justify-content: space-between;
  padding: 2.3rem 2rem 0 2.2rem;
}
.p-top_work_box.-talent {
  background: #28ACEA;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 4rem;
  padding: 1rem 1rem 1rem 3rem;
}
.p-top_work_box.-talent .p-top_work_box_thum {
  width: 20rem;
}
.p-top_work_box.-talent .p-top_work_box_ttl {
  margin-bottom: 2.5rem;
  padding-top: 1rem;
  font-size: 2.8rem;
}
.p-top_work_box.-job {
  background: #32B330;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 1rem 1rem 1rem 3rem;
}
.p-top_work_box.-job .p-top_work_box_thum {
  width: 20rem;
}
.p-top_work_box.-job .p-top_work_box_ttl {
  margin-bottom: 4rem;
  padding-top: 1rem;
}
.p-top_people {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-top_people:before {
  content: "";
  background: url("./../img/top_people_bg_txt.svg");
  background-size: cover;
  width: 110rem;
  height: 7.8rem;
  position: absolute;
  top: 46.8rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-top_people_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 7rem;
}
.p-top_people_ttl {
  font-size: 6rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0.3rem 0.4rem rgba(0, 0, 120, 0.4);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
}
.p-top_people_ttl span {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  display: block;
  text-shadow: none;
  letter-spacing: 0.1em;
}
.p-top_people_box {
  opacity: 0;
  transform: 0.3s;
}
.p-top_people_position {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.p-top_people_name {
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 1rem;
}
.p-top_people .carousel-slider {
  margin-top: -3rem;
}
.p-top_people .carousel-slider .swiper-wrapper {
  display: flex;
  align-items: center;
  max-width: 100%;
  padding-bottom: 1rem;
}
.p-top_people .carousel-slider .swiper-slide {
  width: 41rem;
  height: 41rem;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-top_people .swiper-button-next,
.p-top_people .swiper-button-prev {
  top: 35rem;
  width: 3.2rem;
  height: 3.2rem;
  background: url("./../img/ico_btn_arrow_gry.svg");
  background-size: cover;
  transition: 0.3s;
}
.p-top_people .swiper-button-next:after,
.p-top_people .swiper-button-prev:after {
  display: none;
}
.p-top_people .swiper-button-next {
  right: 50%;
  transform: translateX(22rem);
}
.p-top_people .swiper-button-next:hover {
  background: url("./../img/ico_btn_arrow_blk_hover.svg");
  background-size: cover;
  transform: translateX(23rem);
}
.p-top_people .swiper-button-prev {
  left: 50%;
  transform: scale(-1, 1) translateX(22rem);
}
.p-top_people .swiper-button-prev:hover {
  background: url("./../img/ico_btn_arrow_blk_hover.svg");
  background-size: cover;
  transform: scale(-1, 1) translateX(23rem);
}
.p-top_people .swiper-slide-active {
  padding-top: 10rem;
}
.p-top_people .swiper-slide-active img {
  transition: 0.3s;
}
.p-top_people .swiper-slide-active .p-top_people_box {
  opacity: 1;
}
.p-top_people .swiper-slide-active a:hover {
  opacity: 1;
}
.p-top_people .swiper-slide-active a:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.p-top_recruit {
  padding: 15rem 0 13.1rem;
  position: relative;
  z-index: 1;
}
.p-top_recruit:before {
  position: absolute;
  width: 139.5rem;
  height: 59.5rem;
  top: 14rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(./../img/bg_cube_top.png);
  background-size: cover;
  pointer-events: none;
}
.p-top_recruit_ttl {
  width: 62.9rem;
  margin-bottom: 10rem;
}
.p-top_recruit_flex {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.p-top_recruit_box {
  width: 53rem;
  border-radius: 2rem;
  padding: 1.8rem 3rem 3rem;
}
.p-top_recruit_box.-blue {
  background: #28ACEA;
}
.p-top_recruit_box.-blue .p-top_recruit_subttl {
  width: 14.3rem;
  transform: translateX(-0.6rem);
}
.p-top_recruit_box.-green {
  background: #32B330;
}
.p-top_recruit_box.-green .p-top_recruit_subttl {
  width: 14.2rem;
  transform: translateX(-0.6rem);
}
.p-top_recruit_subttl {
  text-align: center;
  margin: 0 auto 1.7rem;
}
.p-top_recruit_thum {
  width: 16rem;
}
.p-top_recruit_list {
  width: 29rem;
  margin-top: -1rem;
}
.p-top_recruit_list li {
  padding: 1rem 0;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.5);
}
.p-top_recruit_list li a {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
  display: block;
}
.p-top_recruit_list li a:before {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background: url("./../img/ico_btn_arrow_wht.svg");
  background-size: cover;
  content: "";
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  transition: 0.3s;
}
.p-top_recruit_list li a:hover:before {
  background: url("./../img/ico_btn_arrow_wht_hover.svg");
  background-size: cover;
  transform: translate(1rem, -50%);
}
.p-top_recruit_list li.-blank a:before {
  display: none;
}
.p-top_recruit_list li.-blank a:after {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.74rem;
  height: 1.74rem;
  background: url("./../img/ico_blank.svg");
  background-size: cover;
  content: "";
}
.p-top_recruit_wht {
  margin-top: 10rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  padding: 5.3rem 4.2rem 3.8rem;
}
.p-top_recruit_wht_ttl {
  max-width: 77rem;
  margin: 0 auto 5rem;
}
.p-top_recruit_wht_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3.1rem 2.7rem;
}
.p-top_recruit_wht_dl {
  width: 32rem;
  border-bottom: 0.1rem solid rgba(112, 112, 112, 0.39);
  padding-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
}
.p-top_recruit_wht_dl:nth-child(-n+3) .p-top_recruit_wht_dt {
  margin-bottom: 0;
}
.p-top_recruit_wht_dl:nth-child(n+10) {
  display: block;
  padding: 0;
}
.p-top_recruit_wht_dl:nth-child(n+10) .p-top_recruit_wht_dt {
  margin-bottom: 1.7rem;
}
.p-top_recruit_wht_dl.-other {
  border: none;
}
.p-top_recruit_wht_dl.-other .p-top_recruit_wht_dd {
  padding-left: 0.6rem;
}
.p-top_recruit_wht_dt {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  transform: translateX(-0.7rem);
}
.p-top_recruit_wht_dt.-small {
  font-size: 1.4rem;
  transform: translateX(0.4rem);
  margin-bottom: 1rem !important;
}
.p-top_recruit_wht_dd {
  padding-left: 4.9rem;
  flex: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.p-top_recruit_wht_dd ul li a {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 500;
  position: relative;
  padding-right: 2.3rem;
  color: #000;
}
.p-top_recruit_wht_dd ul li a:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.195rem;
  height: 1.195rem;
  background: url("./../img/ico_blank_gray.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
.p-top_recruit_wht_dd ul li a.-noblank:after {
  display: none;
}
.p-top_recruit_wht_dd:before {
  position: absolute;
  content: "";
  background-size: cover;
}
.p-top_recruit_wht_dd.-icon01:before {
  top: 1.7rem;
  left: 0.2rem;
  width: 3.6rem;
  height: 3.2rem;
  background-image: url("./../img/ico_top_recruit_01.svg");
}
.p-top_recruit_wht_dd.-icon02 {
  padding-left: 5.9rem;
}
.p-top_recruit_wht_dd.-icon02:before {
  top: 0.7rem;
  left: 1.2rem;
  width: 3.5rem;
  height: 4.2rem;
  background-image: url("./../img/ico_top_recruit_02.svg");
}
.p-top_recruit_wht_dd.-icon03 {
  padding-left: 6.2rem;
}
.p-top_recruit_wht_dd.-icon03:before {
  top: 1.5rem;
  left: 1.8rem;
  width: 3.4rem;
  height: 3.4rem;
  background-image: url("./../img/ico_top_recruit_03.svg");
}
.p-top_recruit_wht_dd.-icon04 {
  padding-left: 5.6rem;
}
.p-top_recruit_wht_dd.-icon04:before {
  top: -0.7rem;
  left: 0.2rem;
  width: 4.3rem;
  height: 3.4rem;
  background-image: url("./../img/ico_top_recruit_04.svg");
}
.p-top_recruit_wht_dd.-icon05 {
  padding-left: 5.9rem;
}
.p-top_recruit_wht_dd.-icon05:before {
  top: -0.7rem;
  left: 1rem;
  width: 3.4rem;
  height: 3.3rem;
  background-image: url("./../img/ico_top_recruit_05.svg");
}
.p-top_recruit_wht_dd.-icon06 {
  padding-left: 6.3rem;
}
.p-top_recruit_wht_dd.-icon06:before {
  top: -0.7rem;
  left: 1.7rem;
  width: 3.2rem;
  height: 3.2rem;
  background-image: url("./../img/ico_top_recruit_06.svg");
}
.p-top_recruit_wht_dd.-icon07 {
  padding-left: 5.6rem;
}
.p-top_recruit_wht_dd.-icon07:before {
  top: -0.4rem;
  left: 0.5rem;
  width: 3.5rem;
  height: 2.8rem;
  background-image: url("./../img/ico_top_recruit_07.svg");
}
.p-top_recruit_wht_dd.-icon08 {
  padding-left: 5.9rem;
}
.p-top_recruit_wht_dd.-icon08:before {
  top: -0.1rem;
  left: 0.9rem;
  width: 3.7rem;
  height: 2.6rem;
  background-image: url("./../img/ico_top_recruit_08.svg");
}
.p-top_recruit_wht_dd.-icon09 {
  padding-left: 6.2rem;
}
.p-top_recruit_wht_dd.-icon09:before {
  top: -0.9rem;
  left: 1.4rem;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("./../img/ico_top_recruit_09.svg");
}
.p-top_recruit_wht_dd.-icon10 {
  padding-left: 5.6rem;
}
.p-top_recruit_wht_dd.-icon10:before {
  top: -0.9rem;
  left: 0.6rem;
  width: 3.8rem;
  height: 3.2rem;
  background-image: url("./../img/ico_top_recruit_10.svg");
}
.p-top_recruit_wht_dd.-icon11 {
  padding-left: 5.9rem;
}
.p-top_recruit_wht_dd.-icon11:before {
  top: -0.9rem;
  left: 1.6rem;
  width: 2.7rem;
  height: 3.5rem;
  background-image: url("./../img/ico_top_recruit_11.svg");
}
.p-top_recruit_wht_dd.-icon12:before {
  display: none;
}
.p-top_movie {
  background: #000;
  padding: 16.9rem 0 10rem;
  z-index: 10;
  position: relative;
}
.p-top_movie .l-container {
  position: relative;
  z-index: 10;
}
.p-top_movie_ttl {
  width: 97.2rem;
  margin: 0 auto 6rem;
}
.p-top_movie_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem 0;
}
.p-top_movie_item {
  width: 53rem;
}
.p-top_movie_item_thum {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.p-top_movie_item_thum iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-top_movie_item_txt {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 2.1rem;
}

/*---------問い合わせコンテンツ---------*/
.p-foot {
  background: url("./../img/foot_bg.png");
  background-size: cover;
  padding: 8.5rem 0 11rem;
  position: relative;
  z-index: 10;
}
.p-foot_txt {
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 3.6rem;
  letter-spacing: 0.04em;
  line-height: 2em;
}
.p-foot_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.p-foot_btns a {
  width: 30rem;
  height: 8rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
  border-radius: 5rem;
}
.p-foot_btns a .-jp {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.p-foot_btns a .-eng {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.p-foot_btns a.-btn01 {
  background: url("./../img/btn_modal_01_w300.png");
  background-size: cover;
  background-position: center;
}
.p-foot_btns a.-btn02 {
  background: url("./../img/btn_modal_02_w300.png");
  background-size: cover;
  background-position: center;
}
.p-foot_btns a.-btn03 {
  background: url("./../img/btn_modal_01.png");
  background-size: cover;
  background-position: center;
}

/*---------新卒採用募集要項---------*/
.p-job {
  padding-top: 25rem;
  position: relative;
}
.p-job:before {
  position: absolute;
  width: 130.7rem;
  height: 39.8rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube_corp.png");
  background-size: cover;
  pointer-events: none;
}
.p-job__Mv {
  margin-bottom: 12rem;
}
.p-job__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-job__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-job__Cont {
  border: 1rem solid #28ACEA;
  border-radius: 2rem;
  background: #fff;
  padding: 7rem 6rem;
  margin-bottom: 10rem;
}
.p-job__Cont.-last {
  margin-bottom: 25rem;
}
.p-job__Cont-Box {
  margin-bottom: 15rem;
}
.p-job__Cont-Box:last-of-type {
  margin-bottom: 0;
}
.p-job__Cont-Ttl {
  text-align: center;
  margin-bottom: 6rem;
}
.p-job__Cont-Ttl img {
  width: auto;
  height: 3.3rem;
}
.p-job__Cont-Dl {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 0.1rem solid #707070;
}
.p-job__Cont-Dt {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.p-job__Cont-Dd {
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.p-job__Cont-Dd .-small {
  font-size: 1.4rem;
}
.p-job__Cont-Dd .-bold {
  font-weight: bold;
}
.p-job__Cont-Dd ul li {
  margin-bottom: 2rem;
  position: relative;
}
.p-job__Cont-Dd ul li:before {
  content: "⚫︎";
}
.p-job__Cont-Dd ul li:last-child {
  margin-bottom: 0;
}
.p-job__Cont-Dd ul li .-gmap {
  margin-left: 1.5rem;
  font-family: "Montserrat", sans-serif;
  text-decoration: underline;
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
}
.p-job__Cont-Dd ul li .-gmap:after {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: url(./../img/ico_blank_foot.svg);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-job__Cont-Dd ul.-typenone li:before {
  display: none;
}
.p-job__Cont-Dd ul.-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-job__Cont-Dd ul.-flex li {
  width: 50%;
}
.p-job__Cont-Dd .c-btn {
  margin-top: 5.5rem;
}
.p-job__Cont-Flow {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.p-job__Cont-Flow:before {
  position: absolute;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-bottom: 2.4rem solid transparent;
  border-top: 2.4rem solid #707070;
  content: "";
  opacity: 0.5;
}
.p-job__Cont-Flow:last-child {
  margin-bottom: 0;
}
.p-job__Cont-Flow:last-child:before {
  display: none;
}
.p-job__Cont-Flow-Dt {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.p-job__Cont-Flow-Dd {
  text-align: center;
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.p-job__Cont-Flow-Dd a {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}
.p-job__More {
  margin-bottom: 25rem;
}
.p-job__More-Ttl {
  text-align: center;
  margin-bottom: 4rem;
}
.p-job__More-Ttl img {
  width: auto;
  height: 3.3rem;
}
.p-job__More-Flex {
  display: flex;
  justify-content: space-between;
}
.p-job__More-Flex a {
  display: block;
  width: 53rem;
}
.p-job__Talk {
  margin-bottom: 20rem;
}
.p-job__Talk-Ttl {
  text-align: center;
  margin-bottom: 4rem;
}
.p-job__Talk-Ttl img {
  width: auto;
  height: 3.3rem;
}
.p-job__Talk-Btn {
  margin: auto;
  width: 30rem;
  height: 8rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
  border-radius: 3rem;
  background: url("./../img/btn_modal_01_w300.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.p-job__Talk-Btn:after {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: url(./../img/ico_blank_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.p-job__Talk-Btn .-jp {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.p-job__Talk-Btn .-eng {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}

/*---------信和グループが手掛けるプロジェクト・技術---------*/
.p-project {
  padding-top: 25rem;
  position: relative;
}
.p-project:before {
  position: absolute;
  width: 130.7rem;
  height: 39.9rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube_corp.png");
  background-size: cover;
  pointer-events: none;
}
.p-project__Mv {
  margin-bottom: 20rem;
}
.p-project__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-project__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-project__Cont {
  padding-bottom: 15rem;
}
.p-project__Cont-Ttl {
  font-size: 2.8rem;
  line-height: 4.2rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 8rem;
  padding-left: 7.5rem;
  position: relative;
}
.p-project__Cont-Ttl:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5.6rem;
  height: 5.5rem;
  content: "";
}
.p-project__Cont-Ttl.-ttl01:before {
  background: url("./../img/ico_project_ttl_01.png");
  background-size: cover;
}
.p-project__Cont-Ttl.-ttl02:before {
  background: url("./../img/ico_project_ttl_02.png");
  background-size: cover;
}
.p-project__Cont-Ttl.-ttl03:before {
  background: url("./../img/ico_project_ttl_03.png");
  background-size: cover;
}
.p-project__Cont-Ttl.-ttl04:before {
  background: url("./../img/ico_project_ttl_04.png");
  background-size: cover;
}
.p-project__Cont-Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}
.p-project__Cont-Flex:last-of-type {
  margin-bottom: 0;
}
.p-project__Cont-Flex-Thum {
  width: 48rem;
}
.p-project__Cont-Flex-Detail {
  width: 54rem;
}
.p-project__Cont-Flex-Detail-Ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
}
.p-project__Cont-Flex-Detail-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
}
.p-project__Cont-Flex-Detail-Anchor {
  margin-top: 4rem;
}
.p-project__Cont-Flex-Detail-Anchor a {
  position: relative;
  font-size: 1.4rem;
  color: #000;
  border-bottom: 0.1rem solid #000;
}
.p-project__Cont-Flex-Detail-Anchor a:after {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: url(./../img/ico_blank_foot.svg);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-project__Cont-Flex.-rev {
  flex-direction: row-reverse;
}
.p-project__Cont-Links a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: underline;
}
.p-project__Cont.-cont02 {
  padding-top: 15rem;
  background: #000;
  color: #fff;
}
.p-project__Cont.-cont03 {
  padding-top: 15rem;
}
.p-project__Cont.-cont04 {
  padding-top: 15rem;
  background: #000;
  color: #fff;
}

/*---------その他のコンテンツ---------*/
.p-othercontents {
  padding: 34rem 0 20rem;
  position: relative;
}
.p-othercontents:before {
  position: absolute;
  width: 129.5rem;
  height: 26.1rem;
  top: 25rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube_other.png");
  background-size: cover;
  pointer-events: none;
}
.p-othercontents-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-othercontents-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-othercontents-List {
  display: flex;
  gap: 4rem;
}
.p-othercontents-List li {
  width: 34rem;
  border-radius: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.p-othercontents-List li.-corporate {
  padding: 1rem;
  background: #32B330;
}
.p-othercontents-List li.-workstyle {
  padding: 1rem;
  background: #FF5000;
}
.p-othercontents-List li.-workstyle h3 {
  margin-top: 3rem;
}
.p-othercontents-List li.-talent {
  padding: 1rem;
  background: #28ACEA;
}
.p-othercontents-List li.-talent h3 {
  font-size: 3rem;
  line-height: 4rem;
}
.p-othercontents-List li.-talent h3 span {
  margin-top: 0rem;
}
.p-othercontents-List li.-people {
  padding: 1rem;
  background: #FFCF39;
}
.p-othercontents-List li.-people h3 {
  margin-top: 3rem;
}
.p-othercontents-List li.-people h3 span {
  color: #000;
}
.p-othercontents-List li.-job {
  padding: 1rem;
  background: #32B330;
}
.p-othercontents-List li.-job h3 {
  margin-top: 3rem;
}
.p-othercontents-List li.-project {
  padding: 1rem;
  background: #FF5000;
}
.p-othercontents-List li.-project h3 {
  font-size: 3rem;
  line-height: 4rem;
}
.p-othercontents-List li.-project h3 span {
  margin-top: 0rem;
}
.p-othercontents-List li a {
  display: block;
}
.p-othercontents-List li a:hover img {
  opacity: 1;
}
.p-othercontents-List li h3 {
  padding-left: 2rem;
  margin-top: 1rem;
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0.3rem 0.4rem rgba(0, 0, 120, 0.4);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.03em;
}
.p-othercontents-List li h3 span {
  font-size: 1.4rem;
  display: block;
  text-shadow: none;
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

/*---------会社概要/事業領域---------*/
.p-corporate {
  padding-top: 25rem;
  position: relative;
}
.p-corporate:before {
  position: absolute;
  width: 130.7rem;
  height: 39.8rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube.png");
  background-size: cover;
  pointer-events: none;
}
.p-corporate__Mv {
  margin-bottom: 20rem;
}
.p-corporate__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-corporate__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-corporate__Overflow {
  margin-bottom: 20rem;
}
.p-corporate__Overflow-Ttl {
  width: 14.3rem;
  margin-bottom: 6rem;
}
.p-corporate__Overflow-Ttl span {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}
.p-corporate__Overflow-Flex {
  display: flex;
  justify-content: space-between;
}
.p-corporate__Overflow-Flex.-col4 {
  gap: 4rem;
  margin-bottom: 4rem;
}
.p-corporate__Overflow-Flex.-col2 {
  gap: 4rem;
}
.p-corporate__Overflow-Box {
  width: 24.5rem;
  border: 1rem solid;
  border-radius: 2rem;
  padding: 2rem 1rem;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-corporate__Overflow-Box.-orange {
  border-color: #FF5000;
}
.p-corporate__Overflow-Box.-blue {
  border-color: #28ACEA;
}
.p-corporate__Overflow-Box.-green {
  border-color: #32B330;
}
.p-corporate__Overflow-Box.-yellow {
  border-color: #FFCF39;
}
.p-corporate__Overflow-Box-Ttl {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.p-corporate__Overflow-Box-Companyname {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.p-corporate__Overflow-Box-Logo {
  width: 13rem;
  margin: auto;
}
.p-corporate__Overflow-Box-No {
  font-size: 7.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.p-corporate__Overflow-Box-No .-year {
  font-size: 2.4rem;
  writing-mode: tb-rl;
  letter-spacing: 0.2em;
}
.p-corporate__Overflow-Box-No .-small {
  font-size: 4.6rem;
}
.p-corporate__Overflow-Cont {
  width: 53rem;
  border: 1rem solid;
  border-radius: 2rem;
  padding: 1.5rem 3rem 3rem;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-corporate__Overflow-Cont.-orange {
  border-color: #FF5000;
}
.p-corporate__Overflow-Cont.-blue {
  border-color: #28ACEA;
}
.p-corporate__Overflow-Block {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.1rem solid #707070;
}
.p-corporate__Overflow-Block.-last {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.p-corporate__Overflow-Block-Ttl {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.p-corporate__Overflow-Block-Flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.p-corporate__Overflow-Block-Thum {
  width: 18rem;
}
.p-corporate__Overflow-Block-Detail {
  width: 25.5rem;
}
.p-corporate__Overflow-Block-Detail .-address {
  font-size: 1.4rem;
  line-height: 2.1rem;
  margin-bottom: 2rem;
}
.p-corporate__Overflow-Block-Detail .-access {
  font-size: 1.2rem;
}
.p-corporate__Overflow-Block-Sales {
  font-size: 10rem;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.p-corporate__Overflow-Block-Sales .-small {
  font-size: 6.2rem;
}
.p-corporate__Overflow-Block-Pr {
  font-size: 2.2rem;
  color: #FF5000;
  font-weight: 900;
  text-align: center;
}
.p-corporate__Overflow-Block-Pr .-big {
  font-size: 3rem;
}
.p-corporate__Overflow-Block-Graph {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3.8rem;
  width: 37rem;
  margin: auto;
}
.p-corporate__Overflow-Block-Graph li {
  width: 6.4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.p-corporate__Overflow-Block-Graph li:nth-child(2) {
  transition-delay: 0.3s;
}
.p-corporate__Overflow-Block-Graph li:nth-child(3) {
  transition-delay: 0.6s;
}
.p-corporate__Overflow-Block-Graph li:nth-child(4) {
  transition-delay: 0.9s;
}
.p-corporate__Overflow-Block-Graph.is-inview li {
  opacity: 1;
  transform: translate(0, 0);
}
.p-corporate__Overflow-Block-Txt {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.4rem;
}
.p-corporate__Businessarea {
  margin-bottom: 20rem;
}
.p-corporate__Businessarea-Ttl {
  width: 14.3rem;
  margin-bottom: 6rem;
}
.p-corporate__Businessarea-Box {
  border: 1rem solid;
  border-radius: 2rem;
  padding: 4.5rem 3rem 3rem;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-color: #FF5000;
}
.p-corporate__Businessarea-Box-Ttl {
  width: 55rem;
  margin: 0 auto 8rem;
  position: relative;
}
.p-corporate__Businessarea-Box-Ttl:before {
  position: absolute;
  content: "建設";
  font-size: 1.8rem;
  font-weight: bold;
  bottom: -4rem;
  left: -13rem;
}
.p-corporate__Businessarea-Box-Ttl:after {
  position: absolute;
  content: "不動産開発";
  font-size: 1.8rem;
  font-weight: bold;
  bottom: -4.7rem;
  right: -17rem;
}
.p-corporate__Businessarea-Box-Ttl span {
  position: relative;
  display: inline-block;
}
.p-corporate__Businessarea-Box-Ttl span:before {
  position: absolute;
  width: 11.8rem;
  height: 12.2rem;
  content: "";
  background: url("./../img/corporate_businessarea_01.png");
  background-size: cover;
  top: -1.8rem;
  left: -18rem;
}
.p-corporate__Businessarea-Box-Ttl span:after {
  position: absolute;
  width: 10.8rem;
  height: 12.9rem;
  content: "";
  background: url("./../img/corporate_businessarea_02.png");
  background-size: cover;
  top: -2.9rem;
  right: -18rem;
}
.p-corporate__Businessarea-Box-List {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
.p-corporate__Businessarea-Box-Item {
  text-align: center;
}
.p-corporate__Businessarea-Box-Item img {
  width: auto;
  height: 7.1rem;
}
.p-corporate__Businessarea-Box-Item-Name {
  margin-top: 2.5rem;
  line-height: 2.1rem;
  font-size: 1.4rem;
}
.p-corporate__Philosophy {
  margin-bottom: 20rem;
}
.p-corporate__Philosophy-Ttl {
  width: 14.3rem;
  margin-bottom: 6rem;
}
.p-corporate__Philosophy-List {
  border: 1rem solid #28ACEA;
  border-radius: 2rem;
  background: #fff;
  padding: 5rem 1.5rem;
}
.p-corporate__Philosophy-Item {
  width: 76.6rem;
  margin: 0 auto 4rem;
}
.p-corporate__Philosophy-Item:last-child {
  margin-bottom: 0;
}
.p-corporate__Philosophy-Item-Ttl {
  height: 3.3rem;
}
.p-corporate__Philosophy-Item-Ttl img {
  width: auto;
  height: 100%;
}
.p-corporate__Office {
  margin-bottom: 20rem;
}
.p-corporate__Office-Ttl {
  width: 20.3rem;
  margin-bottom: 6rem;
}
.p-corporate__Office-List {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}
.p-corporate__Office-Item {
  width: 34rem;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-corporate__Office-Item-Ttl {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem;
}
.p-corporate__Group-Ttl {
  width: 28rem;
  margin-bottom: 6rem;
}
.p-corporate__Group-List {
  border: 1rem solid #32B330;
  border-radius: 2rem;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  padding: 4rem;
}
.p-corporate__Group-Item {
  width: 22rem;
}

.p-more {
  margin-bottom: 15rem;
}
.p-more__Ttl {
  text-align: center;
}
.p-more__Ttl img {
  width: 86.3rem;
}
.p-more__Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.p-more__Flex a {
  display: block;
  width: 53rem;
}
.p-more__List {
  display: flex;
  justify-content: center;
  gap: 3.6rem;
}
.p-more__List li {
  width: 24.5rem;
  height: 8rem;
  border: 0.2rem solid #000;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}
.p-more__List li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #000;
  position: relative;
}

.p-entry {
  padding: 14.3rem 0 10rem;
  margin-bottom: 15rem;
  background: url("./../img/bg_new_entry.png");
  background-size: cover;
}
.p-entry__Ttl {
  text-align: center;
}
.p-entry__Ttl img {
  width: 60.1rem;
}
.p-entry__Btn {
  margin: 0 auto;
  width: 50rem;
  height: 8rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
  border-radius: 3rem;
  background: url(./../img/btn_modal_01_w500.png);
  background-size: cover;
  position: relative;
}
.p-entry__Btn:before {
  position: absolute;
  width: 1.8rem;
  height: 1.2rem;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/ico_arrow_down.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.p-entry__Btn .-jp {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  display: inline-block;
}
.p-entry__Btn .-eng {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.p-entry__Btn.-noarrow:before {
  display: none;
}
.p-entry__Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.p-entry__Flex a {
  display: block;
  width: 53rem;
}
.p-entry__List {
  width: 98rem;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.6rem;
}
.p-entry__List li {
  width: 30rem;
  height: 8rem;
  border: 0.2rem solid #000;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}
.p-entry__List li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #000;
  position: relative;
}
.p-entry__List li a:before {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  top: 50%;
  right: 2.1rem;
  transform: translateY(-50%);
  content: "";
  background: url("./../img/ico_blank_black.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.p-entry.-career {
  padding: 8.5rem 0 8rem;
}
.p-entry.-career.-mb0 {
  margin-bottom: 0;
}
.p-entry.-career .p-entry__Ttl img {
  width: 48.2rem;
}

.p-quickmovie {
  margin-bottom: 20rem;
}
.p-quickmovie__Ttl {
  text-align: center;
}
.p-quickmovie__Ttl img {
  width: 60.1rem;
}
.p-quickmovie__List {
  display: flex;
  justify-content: space-between;
  width: 110rem;
  margin: auto;
}
.p-quickmovie__List.-col {
  flex-wrap: wrap;
  gap: 4rem 0;
}
.p-quickmovie__List.-col .p-quickmovie__Item {
  width: 53rem;
}
.p-quickmovie__Item {
  width: 34rem;
  text-align: center;
}
.p-quickmovie__Item-Thum {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.p-quickmovie__Item-Thum iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-quickmovie__Item-Ttl {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 2.1rem;
}

/*---------新卒採用のご案内---------*/
.p-new {
  padding-top: 25rem;
  position: relative;
}
.p-new:before {
  position: absolute;
  width: 130.7rem;
  height: 39.8rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube_corp.png");
  background-size: cover;
  pointer-events: none;
}
.p-new__Mv {
  margin-bottom: 15rem;
}
.p-new__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-new__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-new__Opportunity {
  margin-bottom: 23rem;
}
.p-new__Opportunity-Ttl {
  text-align: center;
}
.p-new__Opportunity-Ttl img {
  width: 81.2rem;
}
.p-new__Opportunity-List {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem 0;
  margin-bottom: 4rem;
}
.p-new__Opportunity-Item {
  width: 34rem;
  box-sizing: border-box;
  border: 1rem solid;
  border-radius: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 2.5rem 2rem 2rem;
  background: #fff;
}
.p-new__Opportunity-Item:nth-child(1) {
  border-color: #ff5000;
}
.p-new__Opportunity-Item:nth-child(2) {
  border-color: #28ACEA;
}
.p-new__Opportunity-Item:nth-child(3) {
  border-color: #32B330;
}
.p-new__Opportunity-Item:nth-child(4) {
  border-color: #FFCF39;
}
.p-new__Opportunity-Item:nth-child(5) {
  border-color: #ff5000;
}
.p-new__Opportunity-Item:nth-child(6) {
  border-color: #28ACEA;
}
.p-new__Opportunity-Item-Ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.p-new__Opportunity-Item-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  min-height: 9.6rem;
}
.p-new__Opportunity-Flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-new__Opportunity-Flex a {
  width: 53rem;
  display: block;
}
.p-new__Entryintern {
  margin-bottom: 20rem;
}
.p-new__Entryintern-Ttl {
  text-align: center;
  margin-bottom: 1rem;
}
.p-new__Entryintern-Ttl img {
  width: 70.6rem;
}
.p-new__Entry {
  margin-bottom: 20rem;
}
.p-new__Entry-Ttl {
  text-align: center;
  margin-bottom: 1rem;
}
.p-new__Entry-Ttl img {
  width: 49.8rem;
}
.p-new__Entry-Subttl {
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.p-new__Entry-List {
  background: #E7F2F7;
  border-radius: 2rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 10rem;
}
.p-new__Entry-List.-bgnone {
  background: none;
  margin-bottom: 0;
}
.p-new__Entry-Item {
  width: 51rem;
  text-align: center;
}
.p-new__Entry-Item .-linktxt {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: underline;
  color: #000;
  margin-top: 1rem;
}
.p-new__Faq {
  margin-bottom: 20rem;
}
.p-new__Faq-Ttl {
  text-align: center;
  margin-bottom: 1rem;
}
.p-new__Faq-Ttl img {
  width: 34rem;
}
.p-new__Faq-Dl {
  width: 80rem;
  margin: auto;
  background: #28ACEA;
  border-radius: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 1rem 1rem;
  margin-bottom: 4rem;
}
.p-new__Faq-Dl:last-of-type {
  margin-bottom: 0;
}
.p-new__Faq-Dt {
  padding: 2.4rem 0 2.4rem 7rem;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 3.6rem;
  border-radius: 2rem;
  position: relative;
}
.p-new__Faq-Dt .-q {
  position: absolute;
  left: 1rem;
  top: 2rem;
  font-size: 3.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #D1E6F0;
}
.p-new__Faq-Dd {
  background: #fff;
  border-radius: 0 0 2rem 2rem;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
  padding: 4rem;
}

/*---------中途採用のご案内---------*/
.p-career {
  padding-top: 25rem;
  position: relative;
}
.p-career:before {
  position: absolute;
  width: 130.7rem;
  height: 39.8rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube_corp.png");
  background-size: cover;
  pointer-events: none;
}
.p-career__Mv {
  margin-bottom: 15rem;
}
.p-career__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-career__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-career__Employee {
  margin-bottom: 25rem;
}
.p-career__Employee-Ttl {
  margin-bottom: 6rem;
}
.p-career__Employee-Ttl img {
  width: 32.4rem;
}
.p-career__Employee-List {
  display: flex;
  justify-content: space-between;
}
.p-career__Employee-Item {
  width: 32rem;
  text-align: center;
}
.p-career__Employee-Item a {
  color: #000;
}
.p-career__Employee-Item-Thum {
  margin-bottom: 2rem;
}
.p-career__Employee-Item-Ttl {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 2.7rem;
  margin-bottom: 1rem;
}
.p-career__Employee-Item-Profile {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 2.1rem;
}
.p-career__Document {
  margin-bottom: 25rem;
}
.p-career__Document-Ttl {
  margin-bottom: 6rem;
}
.p-career__Document-Ttl img {
  width: 25.3rem;
}
.p-career__Document-List {
  display: flex;
  justify-content: space-between;
}
.p-career__Document-Item {
  width: 53rem;
}
.p-career__Document-Item a {
  display: block;
}
.p-career__Document-Item-Ttl {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}

/*---------信和の人たち---------*/
.p-people {
  padding-top: 25rem;
  position: relative;
}
.p-people:before {
  position: absolute;
  width: 130.7rem;
  height: 39.8rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube_corp.png");
  background-size: cover;
  pointer-events: none;
}
.p-people__Mv {
  margin-bottom: 19rem;
}
.p-people__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-people__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-people__Employee.-employee01 {
  padding-bottom: 23rem;
  position: relative;
}
.p-people__Employee.-employee01:before {
  content: "";
  background: url(./../img/people_bg_txt.svg);
  background-size: cover;
  width: 110rem;
  height: 7.8rem;
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-people__Employee.-employee02 {
  padding-bottom: 23rem;
  position: relative;
}
.p-people__Employee.-employee02:before {
  content: "";
  background: url(./../img/people_bg_txt.svg);
  background-size: cover;
  width: 110rem;
  height: 7.8rem;
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-people__Employee-Ttl {
  margin-bottom: 6rem;
}
.p-people__Employee-Ttl img {
  width: 10.6rem;
}
.p-people__Employee-List {
  display: flex;
  gap: 6rem;
}
.p-people__Employee-Item {
  width: 32rem;
  text-align: center;
}
.p-people__Employee-Item a {
  color: #000;
}
.p-people__Employee-Item-Thum {
  margin-bottom: 2rem;
}
.p-people__Employee-Item-Ttl {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 2.7rem;
  margin-bottom: 1rem;
}
.p-people__Employee-Item-Profile {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 2.1rem;
}

/*---------人材育成・資格取得---------*/
.p-talent {
  padding-top: 25rem;
  position: relative;
}
.p-talent:before {
  position: absolute;
  width: 130.7rem;
  height: 39.8rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube_corp.png");
  background-size: cover;
  pointer-events: none;
}
.p-talent__Mv {
  margin-bottom: 20rem;
}
.p-talent__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-talent__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-talent__Catch {
  margin-bottom: 10rem;
}
.p-talent__Catch-Ttl {
  text-align: center;
}
.p-talent__Catch-Ttl img {
  width: 79rem;
}
.p-talent__Program {
  margin-bottom: 14.5rem;
}
.p-talent__Program-Ttl {
  font-size: 2.8rem;
  line-height: 4.2rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 8rem;
  padding-left: 7.5rem;
  position: relative;
}
.p-talent__Program-Ttl:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5.6rem;
  height: 5.5rem;
  content: "";
  background: url(./../img/ico_project_ttl_01.png);
  background-size: cover;
}
.p-talent__Program-List {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}
.p-talent__Program-Item {
  width: 34rem;
  box-sizing: border-box;
  border: 0.3rem solid #ff5000;
  border-radius: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 2.5rem 2rem 2rem;
  background: #fff;
}
.p-talent__Program-Item-Ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.p-talent__Program-Item-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  min-height: 9.6rem;
}
.p-talent__Mentor {
  margin-bottom: 16rem;
}
.p-talent__Mentor-Flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.p-talent__Mentor-Detail {
  width: 53.4rem;
}
.p-talent__Mentor-Thum {
  width: 40rem;
}
.p-talent__Mentor-Ttl {
  font-size: 2.8rem;
  line-height: 4.2rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 8rem;
  padding-left: 7.5rem;
  position: relative;
}
.p-talent__Mentor-Ttl:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5.6rem;
  height: 5.5rem;
  content: "";
  background: url(./../img/ico_project_ttl_02.png);
  background-size: cover;
}
.p-talent__Mentor-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.p-talent__Develop {
  margin-bottom: 28rem;
}
.p-talent__Develop-Ttl {
  font-size: 2.8rem;
  line-height: 4.2rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 8rem;
  padding-left: 7.5rem;
  position: relative;
}
.p-talent__Develop-Ttl:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5.6rem;
  height: 5.5rem;
  content: "";
  background: url(./../img/ico_project_ttl_03.png);
  background-size: cover;
}
.p-talent__Develop-List {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}
.p-talent__Develop-Item {
  width: 34rem;
  box-sizing: border-box;
  border: 0.3rem solid #32B330;
  border-radius: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 2.5rem 2rem 2rem;
  background: #fff;
}
.p-talent__Develop-Item-Ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  white-space: nowrap;
}
.p-talent__Develop-Item-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  min-height: 9.6rem;
}
.p-talent__Bounty-Ttl {
  margin-bottom: 6rem;
  text-align: center;
}
.p-talent__Bounty-Ttl img {
  width: 60.5rem;
}
.p-talent__Bounty-List {
  display: flex;
  justify-content: space-between;
}
.p-talent__Bounty-Item {
  width: 34rem;
}
.p-talent__Bounty-Item:nth-child(1) .p-talent__Bounty-Item-Label {
  background: #FF5000;
}
.p-talent__Bounty-Item:nth-child(2) .p-talent__Bounty-Item-Label {
  background: #28ACEA;
  font-size: 1.4rem;
}
.p-talent__Bounty-Item:nth-child(3) .p-talent__Bounty-Item-Label {
  background: #32B330;
}
.p-talent__Bounty-Item-Label {
  width: 100%;
  height: 5rem;
  border-radius: 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-talent__Bounty-Item-Price {
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-talent__Bounty-Item-Price span {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 10rem;
}
.p-talent__Bounty-Txt {
  font-size: 1.2rem;
  line-height: 2.1rem;
  letter-spacing: 0.04em;
  color: #373737;
}

/*---------職種紹介---------*/
.p-jobs {
  padding-top: 25rem;
  position: relative;
}
.p-jobs:before {
  position: absolute;
  width: 130.7rem;
  height: 39.8rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube.png");
  background-size: cover;
  pointer-events: none;
}
.p-jobs__Mv {
  margin-bottom: 20rem;
}
.p-jobs__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-jobs__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-jobs__Links {
  margin: 0 auto;
  width: 82rem;
  border-radius: 1rem;
  background: #fff;
  border: 0.3rem solid #000;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  padding: 0 4rem;
}
.p-jobs__Links-Box {
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid #707070;
}
.p-jobs__Links-Box:last-of-type {
  border: none;
}
.p-jobs__Links-Ttl {
  font-size: 2.2rem;
  color: #707070;
  font-weight: bold;
  width: 18.4rem;
}
.p-jobs__Links-List {
  display: flex;
  align-items: center;
  width: 100%;
}
.p-jobs__Links-Item {
  width: 25%;
  text-align: center;
}
.p-jobs__Links-Item a {
  font-size: 2rem;
  font-weight: bold;
  padding: 3.5rem 0;
  position: relative;
  display: block;
  color: #000;
}
.p-jobs__Links-Item a:before {
  position: absolute;
  width: 1.4rem;
  height: 0.9rem;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/ico_arrow_down.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.p-jobs__Links-Item a span {
  font-size: 1.2rem;
  display: block;
  font-weight: normal;
}
.p-jobs__Sec {
  padding: 20rem 0 18.5rem;
  overflow: hidden;
}
.p-jobs__Sec#cont02, .p-jobs__Sec#cont04, .p-jobs__Sec#cont05, .p-jobs__Sec#cont07, .p-jobs__Sec#cont09 {
  background: #000;
  color: #fff;
}
.p-jobs__Sec#cont02 .p-jobs__Sec-Item a,
.p-jobs__Sec#cont02 .p-people__Employee-Item a, .p-jobs__Sec#cont04 .p-jobs__Sec-Item a,
.p-jobs__Sec#cont04 .p-people__Employee-Item a, .p-jobs__Sec#cont05 .p-jobs__Sec-Item a,
.p-jobs__Sec#cont05 .p-people__Employee-Item a, .p-jobs__Sec#cont07 .p-jobs__Sec-Item a,
.p-jobs__Sec#cont07 .p-people__Employee-Item a, .p-jobs__Sec#cont09 .p-jobs__Sec-Item a,
.p-jobs__Sec#cont09 .p-people__Employee-Item a {
  color: #fff;
}
.p-jobs__Sec-Ttl {
  margin-bottom: 6rem;
}
.p-jobs__Sec-Ttl img {
  width: auto;
  height: 3.3rem;
}
.p-jobs__Sec-Flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 14rem;
}
.p-jobs__Sec-Detail {
  width: 55rem;
}
.p-jobs__Sec-Thum {
  width: 50rem;
  height: 100%;
  position: relative;
}
.p-jobs__Sec-Dl {
  margin-bottom: 4rem;
}
.p-jobs__Sec-Dl:last-of-type {
  margin-bottom: 0;
}
.p-jobs__Sec-Dt {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  line-height: 1;
}
.p-jobs__Sec-Dd {
  font-size: 2rem;
  line-height: 3.5rem;
  letter-spacing: 0.04em;
}
.p-jobs__Sec-Subttl {
  font-size: 2.8rem;
  line-height: 5.6rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 6rem;
  padding-left: 7.5rem;
  position: relative;
}
.p-jobs__Sec-Subttl:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5.6rem;
  height: 5.5rem;
  content: "";
  background-size: cover;
}
.p-jobs__Sec-Subttl.-subttl01:before {
  background-image: url(./../img/ico_project_ttl_01.png);
}
.p-jobs__Sec-Subttl.-subttl02:before {
  background-image: url(./../img/ico_project_ttl_02.png);
}
.p-jobs__Sec-Subttl.-subttl03:before {
  background-image: url(./../img/ico_project_ttl_03.png);
}
.p-jobs__Sec-Illust {
  display: flex;
  gap: 4rem;
  margin-bottom: 15rem;
}
.p-jobs__Sec-Illust.-mb0 {
  margin-bottom: 0;
}
.p-jobs__Sec-Illust li {
  width: 34rem;
}
.p-jobs__Sec-List {
  display: flex;
  gap: 6.7rem;
}
.p-jobs__Sec-Item {
  width: 32rem;
  text-align: center;
}
.p-jobs__Sec-Item a {
  color: #000;
}
.p-jobs__Sec-Item-Thum {
  margin-bottom: 2rem;
}
.p-jobs__Sec-Item-Ttl {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 2.1rem;
  margin-bottom: 1rem;
}
.p-jobs__Sec-Item-Profile {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 2.1rem;
}

/*---------福利厚生・報奨制度---------*/
.p-workstyle {
  padding-top: 25rem;
  position: relative;
}
.p-workstyle:before {
  position: absolute;
  width: 130.7rem;
  height: 39.8rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/bg_cube.png");
  background-size: cover;
  pointer-events: none;
}
.p-workstyle__Mv {
  margin-bottom: 20rem;
}
.p-workstyle__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-workstyle__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-workstyle__Links {
  margin: 0 auto;
  width: 91rem;
  border-radius: 1rem;
  background: #fff;
  border: 0.3rem solid #000;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  padding: 0 4rem;
}
.p-workstyle__Links-List {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
}
.p-workstyle__Links-Item {
  text-align: center;
}
.p-workstyle__Links-Item a {
  font-size: 2rem;
  font-weight: bold;
  padding: 3.5rem 0 4.8rem;
  position: relative;
  display: block;
  color: #000;
}
.p-workstyle__Links-Item a:before {
  position: absolute;
  width: 1.4rem;
  height: 0.9rem;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("./../img/ico_arrow_down.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.p-workstyle__Links-Item a span {
  font-size: 1.2rem;
  display: block;
  font-weight: normal;
}
.p-workstyle__Benefits {
  padding-top: 19.6rem;
}
.p-workstyle__Benefits-Ttl {
  margin-bottom: 6rem;
}
.p-workstyle__Benefits-Ttl img {
  width: auto;
  height: 3.3rem;
}
.p-workstyle__Benefits-Wrap {
  margin-bottom: 15rem;
}
.p-workstyle__Benefits-Wrap.-wrap01 .p-workstyle__Benefits-Item {
  background: #FCF2EC;
}
.p-workstyle__Benefits-Wrap.-wrap02 .p-workstyle__Benefits-Item {
  background: #E7F2F7;
}
.p-workstyle__Benefits-Wrap.-wrap02 .p-workstyle__Benefits-Item:nth-child(4) .p-workstyle__Benefits-Item-Thum img {
  max-height: 5.5rem;
}
.p-workstyle__Benefits-Wrap.-wrap03 .p-workstyle__Benefits-Item {
  background: #EAF5EA;
}
.p-workstyle__Benefits-Wrap.-wrap03 .p-workstyle__Benefits-Item:nth-child(1) .p-workstyle__Benefits-Item-Thum {
  padding-bottom: 1.8rem;
}
.p-workstyle__Benefits-Wrap.-wrap04 {
  margin-bottom: 0;
}
.p-workstyle__Benefits-Wrap.-wrap04 .p-workstyle__Benefits-Item {
  background: #FAF6E7;
}
.p-workstyle__Benefits-Wrap.-wrap04 .p-workstyle__Benefits-Item:nth-child(3) .p-workstyle__Benefits-Item-Thum {
  margin-top: -0.5rem;
}
.p-workstyle__Benefits-Wrap.-wrap04 .p-workstyle__Benefits-Item:nth-child(4) .p-workstyle__Benefits-Item-Thum {
  padding-top: 2.8rem;
}
.p-workstyle__Benefits-Flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 6rem;
}
.p-workstyle__Benefits-Detail {
  width: 60.7rem;
}
.p-workstyle__Benefits-Thum {
  width: 43rem;
}
.p-workstyle__Benefits-Subttl {
  font-size: 2.8rem;
  line-height: 5.6rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 6rem;
  padding-left: 7.5rem;
  position: relative;
}
.p-workstyle__Benefits-Subttl:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5.6rem;
  height: 5.5rem;
  content: "";
  background-size: cover;
}
.p-workstyle__Benefits-Subttl.-subttl01:before {
  background-image: url(./../img/ico_project_ttl_01.png);
}
.p-workstyle__Benefits-Subttl.-subttl02:before {
  background-image: url(./../img/ico_project_ttl_02.png);
}
.p-workstyle__Benefits-Subttl.-subttl03:before {
  background-image: url(./../img/ico_project_ttl_03.png);
}
.p-workstyle__Benefits-Subttl.-subttl04:before {
  background-image: url(./../img/ico_project_ttl_04.png);
}
.p-workstyle__Benefits-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  min-height: 9.6rem;
}
.p-workstyle__Benefits-List {
  display: flex;
  gap: 4rem;
}
.p-workstyle__Benefits-Item {
  width: 24.5rem;
  padding: 2rem;
  border-radius: 2rem;
}
.p-workstyle__Benefits-Item-Ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.p-workstyle__Benefits-Item-Thum {
  text-align: center;
  margin-bottom: 2rem;
}
.p-workstyle__Benefits-Item-Thum img {
  max-width: 9.3rem;
  max-height: 7.9rem;
  width: auto;
  height: auto;
}
.p-workstyle__Benefits-Item-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
}
.p-workstyle__Benefits-Attention {
  font-size: 1.4rem;
  margin-top: 2rem;
}
.p-workstyle__Way {
  padding-top: 25rem;
}
.p-workstyle__Way-Ttl {
  width: 61.2rem;
  margin-bottom: 6rem;
}
.p-workstyle__Way-List {
  display: flex;
  justify-content: space-between;
}
.p-workstyle__Way-Item {
  width: 34rem;
}
.p-workstyle__Way-Item-Border {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 2rem;
  border: 1rem solid;
  padding: 1.6rem 0;
  background: #fff;
}
.p-workstyle__Way-Item-Ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
.p-workstyle__Way-Item-No {
  font-size: 4.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-workstyle__Way-Item-No span {
  font-size: 9.6rem;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}
.p-workstyle__Way-Item-Txt {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.p-workstyle__Way-Item-Attention {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.04em;
  color: #373737;
}
.p-workstyle__Way-Item:nth-child(1) .p-workstyle__Way-Item-Border {
  border-color: #FF5000;
}
.p-workstyle__Way-Item:nth-child(1) .p-workstyle__Way-Item-No {
  color: #FF5000;
}
.p-workstyle__Way-Item:nth-child(2) .p-workstyle__Way-Item-Border {
  border-color: #28ACEA;
}
.p-workstyle__Way-Item:nth-child(2) .p-workstyle__Way-Item-No {
  color: #28ACEA;
}
.p-workstyle__Way-Item:nth-child(3) .p-workstyle__Way-Item-Border {
  border-color: #32B330;
}
.p-workstyle__Way-Item:nth-child(3) .p-workstyle__Way-Item-No {
  color: #32B330;
}
.p-workstyle__Voice {
  padding-top: 23rem;
}
.p-workstyle__Voice-Ttl {
  width: 14.3rem;
  margin-bottom: 6rem;
}
.p-workstyle__Voice-Flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 6rem;
}
.p-workstyle__Voice-Detail {
  width: 61rem;
}
.p-workstyle__Voice-Thum {
  width: 52.9rem;
  margin-right: -9.3rem;
}
.p-workstyle__Voice-Subttl {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.p-workstyle__Voice-Name {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
}
.p-workstyle__Voice-Txt {
  text-align: justify;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
}
.p-workstyle__Voice-Txt .-bold {
  font-weight: bold;
}
.p-workstyle__Reward {
  padding-top: 16rem;
}
.p-workstyle__Reward-Ttl {
  width: 50.9rem;
  margin-bottom: 6rem;
}
.p-workstyle__Reward-Box {
  margin-bottom: 15rem;
}
.p-workstyle__Reward-Box:last-of-type {
  margin-bottom: 0;
}
.p-workstyle__Reward-Subttl {
  font-size: 2.8rem;
  line-height: 5.6rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 6rem;
  padding-left: 7.5rem;
  position: relative;
}
.p-workstyle__Reward-Subttl:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 5.6rem;
  height: 5.5rem;
  content: "";
  background-size: cover;
}
.p-workstyle__Reward-Subttl.-subttl01:before {
  background-image: url(./../img/ico_project_ttl_01.png);
}
.p-workstyle__Reward-Subttl.-subttl02:before {
  background-image: url(./../img/ico_project_ttl_02.png);
}
.p-workstyle__Reward-Subttl.-subttl03:before {
  background-image: url(./../img/ico_project_ttl_03.png);
}
.p-workstyle__Reward-Subttl.-subttl04:before {
  background-image: url(./../img/ico_project_ttl_04.png);
}
.p-workstyle__Reward-List {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
.p-workstyle__Reward-Item {
  width: 34rem;
}
.p-workstyle__Reward-Item:nth-child(1) .p-workstyle__Reward-Item-Label {
  background: #FF5000;
}
.p-workstyle__Reward-Item:nth-child(2) .p-workstyle__Reward-Item-Label {
  background: #28ACEA;
}
.p-workstyle__Reward-Item:nth-child(3) .p-workstyle__Reward-Item-Label {
  background: #32B330;
}
.p-workstyle__Reward-Item-Label {
  width: 100%;
  height: 5rem;
  border-radius: 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  line-height: 4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-workstyle__Reward-Item-Price {
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-workstyle__Reward-Item-Price span {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 10rem;
}
.p-workstyle__Reward-Plus {
  width: 7rem;
  margin: 4rem auto;
}
.p-workstyle__Reward-Abroad {
  width: 91rem;
  margin: auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 2rem;
  border: 1rem solid #FFCF39;
  padding: 3rem;
  background: #fff;
}
.p-workstyle__Reward-Abroad-Txt {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
.p-workstyle__Reward-Abroad-List {
  display: flex;
  justify-content: space-between;
}
.p-workstyle__Reward-Abroad-Item {
  width: 25.8rem;
}
.p-workstyle__Reward-Flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.p-workstyle__Reward-Detail {
  width: 60.7rem;
}
.p-workstyle__Reward-Thum {
  width: 43rem;
}
.p-workstyle__Reward-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
}
.p-workstyle__Emphasis {
  padding-top: 25rem;
}
.p-workstyle__Emphasis-Ttl {
  width: 63rem;
  margin-bottom: 6rem;
}
.p-workstyle__Emphasis-Flex {
  margin: auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 2rem;
  border: 1rem solid #FF5000;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  background: #fff;
}
.p-workstyle__Emphasis-Thum {
  width: 36rem;
}
.p-workstyle__Emphasis-Detail {
  width: 60rem;
}
.p-workstyle__Emphasis-Subttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2.8rem;
}
.p-workstyle__Emphasis-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
}
.p-workstyle__Emphasis-Txt .-bold {
  font-weight: bold;
}

/*---------福利厚生・報奨制度---------*/
.p-peopledetail {
  padding-top: 13.1rem;
}
.p-peopledetail__Mv {
  margin-bottom: 10rem;
}
.p-peopledetail__Mv .l-container {
  position: relative;
}
.p-peopledetail__Mv .l-container:before {
  position: absolute;
  width: 83.6rem;
  height: 51.4rem;
  top: -3.8rem;
  right: -9.6rem;
  content: "";
  background: url("./../img/bg_cube_peopledetail.png");
  background-size: cover;
  pointer-events: none;
}
.p-peopledetail__Mv-Flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
}
.p-peopledetail__Mv-Thum {
  width: 47.5rem;
}
.p-peopledetail__Mv-Detail {
  width: 56.9rem;
}
.p-peopledetail__Mv-Eng {
  font-size: 2.2rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.p-peopledetail__Mv-Position {
  margin-bottom: 1.5rem;
}
.p-peopledetail__Mv-Position span {
  display: inline-block;
  color: #fff;
  background: #000;
  border-radius: 1rem;
  font-size: 1.6rem;
  line-height: 1;
  padding: 1rem 1.2rem;
}
.p-peopledetail__Mv-Name {
  letter-spacing: 0.08em;
  font-size: 2rem;
  font-weight: bold;
}
.p-peopledetail__Mv-Name span {
  font-weight: 500;
  font-size: 1.4rem;
  margin-left: 1rem;
}
.p-peopledetail__Now {
  margin-bottom: 20rem;
}
.p-peopledetail__Now-Flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.p-peopledetail__Now-Thum {
  width: 47rem;
}
.p-peopledetail__Now-Detail {
  width: 57rem;
}
.p-peopledetail__Now-Subttl {
  width: 41.3rem;
  margin-bottom: 6rem;
}
.p-peopledetail__Now-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
}
.p-peopledetail__Flow {
  margin-bottom: 20rem;
}
.p-peopledetail__Flow-Ttl {
  width: 32.4rem;
  margin-bottom: 6rem;
}
.p-peopledetail__Flow-Thum {
  width: 85.8rem;
  margin: auto;
}
.p-peopledetail__Holiday {
  margin-bottom: 20rem;
}
.p-peopledetail__Holiday-Ttl {
  width: 30.8rem;
  margin-bottom: 6rem;
}
.p-peopledetail__Holiday-Flex {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}
.p-peopledetail__Holiday-Flex-Child {
  display: flex;
  gap: 2.2rem;
}
.p-peopledetail__Holiday-Thum {
  width: 31rem;
}
.p-peopledetail__Holiday-Txt {
  width: 18rem;
  font-size: 1.8rem;
  line-height: 3.6rem;
  letter-spacing: 0.04em;
}
.p-peopledetail__Faq {
  margin-bottom: 25rem;
}
.p-peopledetail__Faq-Ttl {
  width: 25.8rem;
  margin-bottom: 3.5rem;
}
.p-peopledetail__Faq-Flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.p-peopledetail__Faq-Thum {
  width: 35rem;
}
.p-peopledetail__Faq-Thum img {
  position: sticky;
  top: 10rem;
}
.p-peopledetail__Faq-Detail {
  width: 62rem;
}
.p-peopledetail__Faq-Dl {
  margin-bottom: 8rem;
}
.p-peopledetail__Faq-Dl:last-of-type {
  margin-bottom: 0;
}
.p-peopledetail__Faq-Dl dt {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 4.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  width: 49.2rem;
  margin-left: auto;
  background: #E6E6E6;
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  margin-bottom: 2.5rem;
}
.p-peopledetail__Faq-Dl dt .-q {
  margin-right: 3rem;
  width: 2.7rem;
  display: inline-block;
}
.p-peopledetail__Faq-Dl dt:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 0rem solid transparent;
  border-right: 5rem solid #E6E6E6;
  position: absolute;
  left: -4rem;
  top: 2.7rem;
}
.p-peopledetail__Faq-Dl dd {
  background: #D1E6F0;
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
}
.p-peopledetail__Faq-Dl dd:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-right: 0rem solid transparent;
  border-left: 5rem solid #D1E6F0;
  position: absolute;
  right: -4rem;
  top: 6rem;
}
.p-peopledetail__Faq-Dl dd .-answer {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  line-height: 4.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.p-peopledetail__Faq-Dl dd .-answer .-a {
  color: #fff;
  margin-right: 3rem;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: bold;
}
.p-peopledetail__Faq-Dl dd .-txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.p-peopledetail__Faq-Dl.-red dd {
  background: #F84F02;
}
.p-peopledetail__Faq-Dl.-red dd:after {
  border-left: 5rem solid #F84F02;
}
.p-peopledetail__Faq-Dl.-blue dd {
  background: #28ACEA;
}
.p-peopledetail__Faq-Dl.-blue dd:after {
  border-left: 5rem solid #28ACEA;
}
.p-peopledetail__Faq-Dl.-yellow dd {
  background: #FFCF39;
}
.p-peopledetail__Faq-Dl.-yellow dd .-answer,
.p-peopledetail__Faq-Dl.-yellow dd .-txt {
  color: #000;
}
.p-peopledetail__Faq-Dl.-yellow dd .-answer .-a,
.p-peopledetail__Faq-Dl.-yellow dd .-txt .-a {
  color: #000;
}
.p-peopledetail__Faq-Dl.-yellow dd:after {
  border-left: 5rem solid #FFCF39;
}
.p-peopledetail__Faq-Dl.-green dd {
  background: #32B330;
}
.p-peopledetail__Faq-Dl.-green dd:after {
  border-left: 5rem solid #32B330;
}
.p-peopledetail__Faq-Dl.-faq01 dt:before {
  position: absolute;
  left: -10.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5.6rem;
  height: 5.5rem;
  content: "";
  background-size: cover;
  background-image: url(./../img/ico_project_ttl_01.png);
  background-repeat: no-repeat;
}
.p-peopledetail__Faq-Dl.-faq02 dt:before {
  position: absolute;
  left: -10.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5.6rem;
  height: 5.5rem;
  content: "";
  background-size: cover;
  background-image: url(./../img/ico_project_ttl_02.png);
  background-repeat: no-repeat;
}
.p-peopledetail__Faq-Dl.-faq03 dt:before {
  position: absolute;
  left: -10.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5.6rem;
  height: 5.5rem;
  content: "";
  background-size: cover;
  background-image: url(./../img/ico_project_ttl_03.png);
  background-repeat: no-repeat;
}
.p-peopledetail__people {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-peopledetail__people:before {
  content: "";
  background: url("./../img/people_bg_txt.svg");
  background-size: cover;
  width: 110rem;
  height: 7.8rem;
  position: absolute;
  top: 41rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-peopledetail__people-Ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 8rem;
  letter-spacing: 0.04em;
}
.p-peopledetail__people .carousel-slider {
  margin-bottom: 8rem;
}
.p-peopledetail__people_box {
  opacity: 0;
  transform: 0.3s;
}
.p-peopledetail__people_position {
  text-align: center;
  color: #000;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.p-peopledetail__people_name {
  text-align: center;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 1rem;
}
.p-peopledetail__people .carousel-slider {
  margin-top: -3rem;
}
.p-peopledetail__people .carousel-slider .swiper-wrapper {
  display: flex;
  align-items: center;
  max-width: 100%;
  padding-bottom: 1rem;
}
.p-peopledetail__people .carousel-slider .swiper-slide {
  width: 41rem;
  height: 41rem;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-peopledetail__people .swiper-button-next,
.p-peopledetail__people .swiper-button-prev {
  top: 35rem;
  width: 3.2rem;
  height: 3.2rem;
  background: url("./../img/ico_btn_arrow_gry.svg");
  background-size: cover;
  transition: 0.3s;
}
.p-peopledetail__people .swiper-button-next:after,
.p-peopledetail__people .swiper-button-prev:after {
  display: none;
}
.p-peopledetail__people .swiper-button-next {
  right: 50%;
  transform: translateX(22rem);
}
.p-peopledetail__people .swiper-button-next:hover {
  background: url("./../img/ico_btn_arrow_blk_hover.svg");
  background-size: cover;
  transform: translateX(23rem);
}
.p-peopledetail__people .swiper-button-prev {
  left: 50%;
  transform: scale(-1, 1) translateX(22rem);
}
.p-peopledetail__people .swiper-button-prev:hover {
  background: url("./../img/ico_btn_arrow_blk_hover.svg");
  background-size: cover;
  transform: scale(-1, 1) translateX(23rem);
}
.p-peopledetail__people .swiper-slide-active {
  padding-top: 10rem;
}
.p-peopledetail__people .swiper-slide-active img {
  transition: 0.3s;
}
.p-peopledetail__people .swiper-slide-active .p-peopledetail__people_box {
  opacity: 1;
}
.p-peopledetail__people .swiper-slide-active a:hover {
  opacity: 1;
}
.p-peopledetail__people .swiper-slide-active a:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.p-peopledetail__people-Btn {
  text-align: center;
  padding-bottom: 2rem;
}

/*---------404---------*/
.p-notfound {
  padding-top: 25rem;
  position: relative;
}
.p-notfound:before {
  position: absolute;
  width: 130.7rem;
  height: 39.8rem;
  top: 20.3rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(./../img/bg_cube_corp.png);
  background-size: cover;
  pointer-events: none;
}
.p-notfound__Mv {
  margin-bottom: 10rem;
}
.p-notfound__Mv-Ttl {
  margin-bottom: 6rem;
  font-size: 6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0px 5px 6px rgba(0, 0, 120, 0.4);
}
.p-notfound__Mv-Ttl span {
  text-shadow: none;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.09em;
}
.p-notfound__Cont {
  margin-bottom: 10rem;
}
.p-notfound__Cont-Txt {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 5rem;
  text-align: center;
}
.p-notfound__Cont-Btn {
  text-align: center;
}
.p-notfound__Cont-Btn a {
  background: url(./../img/btn_modal_01.png);
  background-size: cover;
  background-position: center;
  width: 30rem;
  height: 8rem;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
  border-radius: 5rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}

/*---------絵と数字---------*/
.p-minute {
  position: relative;
}
.p-minute__pcslidetxt {
  position: fixed;
  width: 100%;
  top: 65rem;
  left: 0;
  padding-bottom: 11.7rem;
}
.p-minute__pcslidetxt .swiper-wrapper {
  transition-timing-function: linear;
}
.p-minute__pcslidetxt .swiper-slide {
  width: 144rem;
  padding-right: 34rem;
}
.p-minute__Flex {
  display: flex;
  justify-content: space-between;
}
.p-minute__Leftcont {
  width: calc((100% - 50rem) / 2);
  position: relative;
}
.p-minute__Leftcont-Inner {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
.p-minute__Leftcont-Box {
  width: 25rem;
  position: relative;
}
.p-minute__Leftcont-Box:before {
  position: absolute;
  content: "";
  pointer-events: none;
  width: 37.5rem;
  height: 58.5rem;
  background: url("./../img/minute_leftcont_cube.png");
  background-size: cover;
  top: -2.3rem;
  left: -6.7rem;
}
.p-minute__Leftcont-Ttl {
  width: 23.1rem;
  margin: 0 auto;
}
.p-minute__Leftcont-List {
  display: flex;
  flex-flow: column;
  gap: 3rem;
}
.p-minute__Leftcont-Item-Thum {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.p-minute__Leftcont-Item-Thum iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-minute__Leftcont-Item-Txt {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.p-minute__Rightcont {
  width: calc((100% - 50rem) / 2);
}
.p-minute__Rightcont-Inner {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
.p-minute__Rightcont-Box {
  width: 24rem;
  position: relative;
}
.p-minute__Rightcont-Box:before {
  position: absolute;
  content: "";
  pointer-events: none;
  width: 33.6rem;
  height: 61.5rem;
  background: url("./../img/minute_rightcont_cube.png");
  background-size: cover;
  top: -21.6rem;
  left: -2rem;
}
.p-minute__Rightcont-btns {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.p-minute__Rightcont-btns a {
  width: 24rem;
  height: 6.4rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
  border-radius: 3rem;
}
.p-minute__Rightcont-btns a .-jp {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.p-minute__Rightcont-btns a .-eng {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.p-minute__Rightcont-btns a.-btn01 {
  background: url("./../img/btn_modal_01.png");
  background-size: cover;
  background-position: center;
}
.p-minute__Rightcont-btns a.-btn02 {
  background: url("./../img/btn_modal_02.png");
  background-size: cover;
  background-position: center;
}
.p-minute__Rightcont-btns a.-btn03 {
  background: url("./../img/btn_modal_01.png");
  background-size: cover;
  background-position: center;
}
.p-minute__Centercont {
  background: #fff;
  width: 50rem;
  overflow: clip;
  z-index: 100;
}
.p-minute__Mv {
  position: relative;
  padding-top: 10.6666666667rem;
  padding-bottom: 22.6666666667rem;
}
.p-minute__Mv-Ttl {
  position: absolute;
  top: 49.3333333333rem;
  left: 0;
}
.p-minute__Mv-Ttl .-line {
  position: absolute;
  top: 0;
  left: -14rem;
  width: 66.2666666667rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Mv-Ttl .-ttl {
  position: absolute;
  top: 1.8666666667rem;
  left: 1.3333333333rem;
  width: 47.2rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Mv-Ttl.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Mv-Ttl.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Mv-Txt {
  position: absolute;
  width: 41.8666666667rem;
  top: 70.1333333333rem;
  left: 4.4rem;
}
.p-minute__Sec01 {
  position: relative;
  height: 159.0666666667rem;
}
.p-minute__Sec01:before {
  position: absolute;
  content: "";
  top: 55.4666666667rem;
  left: -5.7333333333rem;
  width: 62.9333333333rem;
  height: 72.2666666667rem;
  background: url("./../img/minute_sec01_bg.png");
  background-size: cover;
}
.p-minute__Sec01-Thum {
  position: absolute;
}
.p-minute__Sec01-Thum.-thum01 {
  width: 56.4rem;
  top: 0rem;
  left: -4.4rem;
}
.p-minute__Sec01-Thum.-thum02 {
  width: 43.6rem;
  top: 108.5333333333rem;
  left: 4.8rem;
}
.p-minute__Sec01-Txt {
  position: absolute;
  width: 46.9333333333rem;
  top: 74.6666666667rem;
  left: 1.6rem;
}
.p-minute__Sec01-Txt .-line {
  position: absolute;
  top: 8.6666666667rem;
  left: 0rem;
  width: 46.9333333333rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec01-Txt .-ttl {
  position: absolute;
  top: 8.6666666667rem;
  left: 0rem;
  width: 46.9333333333rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec01-Txt.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec01-Txt.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02 {
  padding-bottom: 20rem;
}
.p-minute__Sec02-Thum.-thum01 {
  width: 46rem;
  margin: 0 0 14.9333333333rem auto;
  position: relative;
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01 {
  position: absolute;
  width: 36rem;
  top: 25.3333333333rem;
  left: -2.6666666667rem;
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 36rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01 .-ttl {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 36rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02 {
  position: absolute;
  width: 31.3333333333rem;
  top: 33.0666666667rem;
  left: 8.9333333333rem;
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 31.3333333333rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02 .-ttl {
  position: absolute;
  top: 0.8rem;
  left: 0.6666666667rem;
  width: 30rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03 {
  position: absolute;
  width: 31.3333333333rem;
  top: 38rem;
  left: 4rem;
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 31.3333333333rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03 .-ttl {
  position: absolute;
  top: 0.8rem;
  left: 0.6666666667rem;
  width: 30rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum02 {
  width: 48.6666666667rem;
  margin: 0 0 14.8rem 0;
  position: relative;
}
.p-minute__Sec02-Thum.-thum02:before {
  position: absolute;
  top: 31.7333333333rem;
  left: 25.7333333333rem;
  width: 3.7333333333rem;
  height: 3.7333333333rem;
  content: "";
  background: url("./../img/icon_cross.png");
  background-size: cover;
  z-index: 100;
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01 {
  position: absolute;
  width: 38.6666666667rem;
  top: 25.3333333333rem;
  left: 9.6rem;
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 38.6666666667rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01 .-ttl {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 38.6666666667rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02 {
  position: absolute;
  width: 28.5333333333rem;
  top: 33.0666666667rem;
  left: 7.0666666667rem;
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 28.5333333333rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02 .-ttl {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 28.5333333333rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum03 {
  width: 47.4666666667rem;
  margin: 0 0 14.8rem auto;
  position: relative;
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01 {
  position: absolute;
  width: 20.2666666667rem;
  top: 26.4rem;
  left: -1.3333333333rem;
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 20.2666666667rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01 .-ttl {
  position: absolute;
  top: 0.6666666667rem;
  left: 0.6666666667rem;
  width: 18.9333333333rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02 {
  position: absolute;
  width: 40.2666666667rem;
  top: 30.2666666667rem;
  left: 0.6666666667rem;
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 40.2666666667rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02 .-ttl {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 40.2666666667rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum04 {
  width: 47.4666666667rem;
  margin: 0 0 13.3333333333rem auto;
  position: relative;
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01 {
  position: absolute;
  width: 21.2rem;
  top: 21.3333333333rem;
  left: 12.5333333333rem;
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 21.2rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01 .-ttl {
  position: absolute;
  top: 0.6666666667rem;
  left: 0.6666666667rem;
  width: 19.8666666667rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02 {
  position: absolute;
  width: 25.2rem;
  top: 26.8rem;
  left: 13.6rem;
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 25.2rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02 .-ttl {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 25.2rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03 {
  position: absolute;
  width: 36.6666666667rem;
  top: 29.3333333333rem;
  left: 4.4rem;
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03 .-line {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 36.6666666667rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03 .-ttl {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 36.6666666667rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec02-Btn {
  width: 32rem;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.p-minute__Sec03 {
  position: relative;
}
.p-minute__Sec03:before {
  position: absolute;
  content: "";
  top: -13.3333333333rem;
  left: 50%;
  transform: translateX(-50%);
  width: 73.8666666667rem;
  height: 73.8666666667rem;
  background: #EAEFF7;
  border-radius: 50%;
}
.p-minute__Sec03-Ttl {
  margin: 0 auto 1.8666666667rem;
  width: 36.8rem;
  position: relative;
}
.p-minute__Sec03-Ttl .-line {
  position: absolute;
  top: 4rem;
  left: 0rem;
  width: 36.8rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec03-Ttl .-ttl {
  position: absolute;
  top: 4rem;
  left: 0rem;
  width: 36.8rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec03-Ttl .-txt {
  margin: 0 auto;
  width: 28.9333333333rem;
  display: block;
}
.p-minute__Sec03-Ttl.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec03-Ttl.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec03-Txt {
  margin: 0 auto 1.8666666667rem;
  position: relative;
  text-align: right;
  font-size: 1.3333333333rem;
  padding-right: 1.3333333333rem;
  transform: translateY(-5.3333333333rem);
}
.p-minute__Sec03-Thum {
  position: relative;
}
.p-minute__Sec03-Thum.-thum01 {
  width: 43.6rem;
  margin: 0 -1.4666666667rem 0rem auto;
}
.p-minute__Sec03-Thum.-thum02 {
  width: 34rem;
  margin: 0 auto -6.2666666667rem;
}
.p-minute__Sec03-Thum.-thum03 {
  width: 28.9333333333rem;
  margin: 0 auto;
}
.p-minute__Sticky {
  position: sticky;
  top: -93.3333333333rem;
}
.p-minute__White {
  background: #fff;
  z-index: 10;
  position: relative;
  padding-top: 5.3333333333rem;
}
.p-minute__Sec04 {
  margin-bottom: 13.3333333333rem;
}
.p-minute__Sec05 {
  padding-bottom: 5.3333333333rem;
  position: relative;
}
.p-minute__Sec05:before {
  position: absolute;
  width: 100%;
  height: 34.6666666667rem;
  content: "";
  left: 0;
  bottom: -2.9333333333rem;
  background: url("./../img/minute_sec05_bg.png");
  background-size: cover;
}
.p-minute__Sec05-Ttl {
  width: 48rem;
  margin-left: 1.3333333333rem;
  margin-bottom: -2.6666666667rem;
  z-index: 10;
  position: relative;
  z-index: 100;
}
.p-minute__Sec05-Ttl .-line {
  position: absolute;
  top: 14rem;
  left: -4rem;
  width: 55.3333333333rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec05-Ttl .-ttl {
  position: absolute;
  top: 16.8rem;
  left: -0.4rem;
  width: 48rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec05-Ttl.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec05-Ttl.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec05-Box01 {
  margin-bottom: 1.3333333333rem;
}
.p-minute__Sec05-Box01 .swiper-wrapper {
  transition-timing-function: linear;
}
.p-minute__Sec05-Box01 .swiper-slide {
  width: 25.3333333333rem;
  padding-right: 1.3333333333rem;
}
.p-minute__Sec05-Box02 {
  margin-bottom: 8rem;
}
.p-minute__Sec05-Box02 .swiper-wrapper {
  transition-timing-function: linear;
}
.p-minute__Sec05-Box02 .swiper-slide {
  width: 25.3333333333rem;
  padding-right: 1.3333333333rem;
}
.p-minute__Sec05-Subttl {
  position: relative;
  z-index: 100;
  height: 20rem;
}
.p-minute__Sec05-Subttl .-line {
  position: absolute;
  top: 0;
  left: -1.3333333333rem;
  width: 54rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute__Sec05-Subttl .-ttl {
  position: absolute;
  top: 0rem;
  left: -1.4666666667rem;
  width: 54rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute__Sec05-Subttl.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec05-Subttl.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute__Sec05-Txt {
  position: relative;
}
.p-minute__Sec05-Txt.-txt01 {
  width: 31.0666666667rem;
  margin: 0 auto 5.8666666667rem;
}
.p-minute__Sec05-Txt.-txt02 {
  width: 32.4rem;
  margin: 0 auto;
}
.p-minute__Sec06-List {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 44.6666666667rem;
  margin: 0 auto 4rem;
}
.p-minute__Sec06-Item {
  width: 21.3333333333rem;
  background: #fff;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  border-radius: 1.3333333333rem;
}
.p-minute__Sec06-Item h3 {
  text-align: center;
  font-weight: bold;
  font-size: 2.1333333333rem;
  margin-bottom: 0.6666666667rem;
}
.p-minute__Sec06-Item p {
  text-align: center;
  font-size: 2.9333333333rem;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 5.6rem;
}
.p-minute__Sec06-Item p span {
  font-size: 6.1333333333rem;
}
.p-minute__Sec06-Item:nth-child(1) {
  border: 0.4rem solid #FF5000;
}
.p-minute__Sec06-Item:nth-child(2) {
  border: 0.4rem solid #28ACEA;
}
.p-minute__Sec06-Item:nth-child(3) {
  border: 0.4rem solid #32B330;
}
.p-minute__Sec06-Item:nth-child(4) {
  border: 0.4rem solid #FFCF39;
}
.p-minute__Sec06-From {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5.3333333333rem;
}
.p-minute__Sec06-From .-txt01 {
  width: 10.6666666667rem;
}
.p-minute__Sec06-From span {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 8.5333333333rem;
}
.p-minute__Sec06-From .-txt02 {
  width: 5.0666666667rem;
}
.p-minute__Sec07 {
  position: relative;
  padding-bottom: 13.3333333333rem;
}
.p-minute__Sec07:before {
  position: absolute;
  content: "";
  top: 12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120rem;
  height: 120rem;
  background: #FFCF39;
  border-radius: 50%;
}
.p-minute__Sec07-Thum {
  width: 41.4666666667rem;
  margin: 0 auto -12.6666666667rem;
}
.p-minute__Sec07-Txt {
  text-align: center;
  position: relative;
  z-index: 10;
  font-size: 2.6666666667rem;
  font-weight: bold;
  line-height: 4.6666666667rem;
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
}
.p-minute__Sec07-Bnr {
  display: block;
  position: relative;
  z-index: 10;
  width: 44.6666666667rem;
  margin: auto;
}

/*---------絵と数字 ver.02---------*/
/*---------絵と数字 ver.02---------*/
.p-minute-v2__Mv {
  position: relative;
}
.p-minute-v2__Mv:before {
  content: "";
  position: absolute;
  top: 71.4666666667rem;
  left: 0;
  width: 100%;
  height: 124.4rem;
  pointer-events: none;
  background: url("./../img/minute-v2_mv_bg.png");
  background-size: cover;
}
.p-minute-v2__Mv-Ttl {
  position: absolute;
  top: 52.9333333333rem;
  left: 0;
}
.p-minute-v2__Mv-Ttl .-line {
  position: absolute;
  top: 0;
  left: -14rem;
  width: 67.3333333333rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute-v2__Mv-Ttl .-ttl {
  position: absolute;
  top: 1.8666666667rem;
  left: 1.3333333333rem;
  width: 47.3333333333rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute-v2__Mv-Ttl.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Mv-Ttl.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Mv-Txt {
  position: absolute;
  width: 35.4666666667rem;
  top: 75.7333333333rem;
  left: 4.4rem;
}
.p-minute-v2__Sec01 {
  position: relative;
  margin-top: -30.4rem;
  padding-bottom: 2.6666666667rem;
}
.p-minute-v2__Sec01-Thum {
  width: 44.6666666667rem;
  margin: 0 auto 10rem;
}
.p-minute-v2__Sec01-Txt {
  width: 31.6rem;
  margin: auto;
}
.p-minute-v2__Sec02 {
  position: relative;
  z-index: 10;
  margin-bottom: 3.6rem;
}
.p-minute-v2__Sec02-Thum {
  width: 45.7333333333rem;
  margin: 0 auto 5.3333333333rem;
}
.p-minute-v2__Sec02-List {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 4rem;
  width: 33.3333333333rem;
  margin: auto;
}
.p-minute-v2__Sec02-Item {
  width: 100%;
}
.p-minute-v2__Sec02-Item-Border {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 2.6666666667rem;
  border: 0.5333333333rem solid;
  padding: 3.2rem 0;
  background: #fff;
}
.p-minute-v2__Sec02-Item-Ttl {
  text-align: center;
  font-size: 2.6666666667rem;
  font-weight: bold;
}
.p-minute-v2__Sec02-Item-No {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-minute-v2__Sec02-Item-No span {
  font-size: 8rem;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}
.p-minute-v2__Sec02-Item-Txt {
  text-align: center;
  font-size: 2.1333333333rem;
  font-weight: 500;
}
.p-minute-v2__Sec02-Item-Attention {
  margin-top: 0.6666666667rem;
  text-align: center;
  font-size: 1.3333333333rem;
  line-height: 1.6rem;
  letter-spacing: 0.04em;
  color: #373737;
}
.p-minute-v2__Sec02-Item:nth-child(1) .p-minute-v2__Sec02-Item-Border {
  border-color: #FF5000;
}
.p-minute-v2__Sec02-Item:nth-child(1) .p-minute-v2__Sec02-Item-No {
  color: #FF5000;
}
.p-minute-v2__Sec02-Item:nth-child(2) .p-minute-v2__Sec02-Item-Border {
  border-color: #28ACEA;
}
.p-minute-v2__Sec02-Item:nth-child(2) .p-minute-v2__Sec02-Item-No {
  color: #28ACEA;
}
.p-minute-v2__Sec02-Item:nth-child(3) .p-minute-v2__Sec02-Item-Border {
  border-color: #32B330;
}
.p-minute-v2__Sec02-Item:nth-child(3) .p-minute-v2__Sec02-Item-No {
  color: #32B330;
}
.p-minute-v2__Sec03 {
  position: relative;
}
.p-minute-v2__Sec03-Thum.-thum01 {
  position: relative;
  width: 60rem;
  margin: 0 -4.3333333333rem;
}
.p-minute-v2__Sec03-Thum.-thum02 {
  position: relative;
  width: 49.2rem;
  margin: -11.6rem auto 0 0.1333333333rem;
}
.p-minute-v2__Sec03-List {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6666666667rem 0;
  margin: 0 auto 5.3333333333rem;
}
.p-minute-v2__Sec03-List li {
  width: 24.6666666667rem;
}
.p-minute-v2__Sec03-Txt {
  width: 38.4rem;
  margin: 0 auto 5.3333333333rem;
}
.p-minute-v2__Sec03-Box {
  display: flex;
  justify-content: space-between;
  width: 45.3333333333rem;
  margin: auto;
  z-index: 10;
  position: relative;
}
.p-minute-v2__Sec03-Box a {
  display: block;
  width: 21.3333333333rem;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.4));
}
.p-minute-v2__Sec04 {
  margin-top: -2.6666666667rem;
}
.p-minute-v2__Sec04-Ttl {
  position: relative;
}
.p-minute-v2__Sec04-Ttl .-line {
  position: absolute;
  top: 18.1333333333rem;
  left: 4rem;
  width: 42.1333333333rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute-v2__Sec04-Ttl .-ttl {
  position: absolute;
  top: 18.1333333333rem;
  left: 4rem;
  width: 42.1333333333rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute-v2__Sec04-Ttl.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec04-Ttl.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec04-Box {
  margin-bottom: 1.0666666667rem;
}
.p-minute-v2__Sec04-Thum {
  width: 48.1333333333rem;
  margin-left: auto;
  margin-bottom: 1.3333333333rem;
}
.p-minute-v2__Sec04-Txt {
  width: 42rem;
  margin: auto;
  font-size: 1.8666666667rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  text-align: justify;
}
.p-minute-v2__Sec05-Ttl {
  position: relative;
}
.p-minute-v2__Sec05-Ttl .-line {
  position: absolute;
  top: 10rem;
  left: 3.0666666667rem;
  width: 43.8666666667rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute-v2__Sec05-Ttl .-ttl {
  position: absolute;
  top: 10rem;
  left: 3.0666666667rem;
  width: 43.8666666667rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute-v2__Sec05-Ttl.is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec05-Ttl.is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec05-List {
  margin: -2.6666666667rem auto 6.6666666667rem;
  width: 37.3333333333rem;
}
.p-minute-v2__Sec05-List li {
  margin-bottom: 2.6666666667rem;
  width: 37.3333333333rem;
  position: relative;
}
.p-minute-v2__Sec05-List li:nth-child(1) .-line {
  position: absolute;
  top: 17.6rem;
  left: -2.6666666667rem;
  width: 35.8666666667rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute-v2__Sec05-List li:nth-child(1) .-ttl {
  position: absolute;
  top: 17.6rem;
  left: -2.6666666667rem;
  width: 35.8666666667rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute-v2__Sec05-List li:nth-child(1).is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec05-List li:nth-child(1).is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec05-List li:nth-child(2) .-line {
  position: absolute;
  top: 18.4rem;
  right: -2.6666666667rem;
  width: 25.8666666667rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute-v2__Sec05-List li:nth-child(2) .-ttl {
  position: absolute;
  top: 18.4rem;
  right: -2.6666666667rem;
  width: 25.8666666667rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute-v2__Sec05-List li:nth-child(2).is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec05-List li:nth-child(2).is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec05-List li:nth-child(3) .-line {
  position: absolute;
  top: 17.8666666667rem;
  left: -2.6666666667rem;
  width: 32.5333333333rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute-v2__Sec05-List li:nth-child(3) .-ttl {
  position: absolute;
  top: 17.8666666667rem;
  left: -2.6666666667rem;
  width: 32.5333333333rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute-v2__Sec05-List li:nth-child(3).is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec05-List li:nth-child(3).is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec05-List li:nth-child(4) .-line {
  position: absolute;
  top: 17.2rem;
  right: -2.6666666667rem;
  width: 39.3333333333rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-minute-v2__Sec05-List li:nth-child(4) .-ttl {
  position: absolute;
  top: 17.2rem;
  right: -2.6666666667rem;
  width: 39.3333333333rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}
.p-minute-v2__Sec05-List li:nth-child(4).is-inview .-line {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec05-List li:nth-child(4).is-inview .-ttl {
  clip-path: inset(0 0 0 0);
}
.p-minute-v2__Sec06 {
  position: relative;
  padding-top: 10.6666666667rem;
  padding-bottom: 10.6666666667rem;
}
.p-minute-v2__Sec06:before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120rem;
  height: 120rem;
  background: #FAECE0;
  border-radius: 50%;
}
.p-minute-v2__Sec06-Txt {
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: bold;
  line-height: 4.6666666667rem;
  font-size: 2.6666666667rem;
  position: relative;
}
.p-minute-v2__Sec06-Txt.-txt01 {
  margin-bottom: 2.6666666667rem;
}
.p-minute-v2__Sec06-Txt.-txt02 {
  margin-bottom: 6.6666666667rem;
}
.p-minute-v2__Sec06-btns {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 5.3333333333rem;
  margin-bottom: 10.6666666667rem;
}
.p-minute-v2__Sec06-btns a {
  width: 32rem;
  height: 8.5333333333rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
  border-radius: 4rem;
}
.p-minute-v2__Sec06-btns a .-jp {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.p-minute-v2__Sec06-btns a .-eng {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2666666667rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.p-minute-v2__Sec06-btns a.-btn01 {
  background: url("./../img/btn_modal_01.png");
  background-size: cover;
  background-position: center;
}
.p-minute-v2__Sec06-btns a.-btn02 {
  background: url("./../img/btn_modal_02.png");
  background-size: cover;
  background-position: center;
}
.p-minute-v2__Sec06-btns a.-btn03 {
  background: url("./../img/btn_modal_01.png");
  background-size: cover;
  background-position: center;
}
.p-minute-v2__Sec06-Subttl {
  width: 38.4rem;
  margin: 0 auto 4rem;
  position: relative;
}
.p-minute-v2__Sec06-Box {
  display: flex;
  justify-content: space-between;
  width: 45.3333333333rem;
  margin: auto;
  z-index: 10;
  position: relative;
}
.p-minute-v2__Sec06-Box a {
  display: block;
  width: 21.3333333333rem;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.4));
}

@media screen and (max-width: 750px) {
  /*---------トップページ---------*/
  .p-top_mv_inner {
    max-width: 100%;
    height: 100vh;
  }
  .p-top_overview {
    margin-top: 10rem;
  }
  .p-top_overview:before {
    display: none;
  }
  .p-top_overview_ttl {
    width: 81.4rem;
    margin-left: calc(-5% - 3.2rem);
  }
  .p-top_overview_flex {
    display: flex;
    flex-flow: column;
    gap: 2rem;
  }
  .p-top_overview_flex a {
    width: 100%;
  }
  .p-top .sticky_btn {
    bottom: 15rem;
  }
  .p-top_about {
    margin-top: 20rem;
  }
  .p-top_about:before {
    background: url(./../img/bg_cube_top_sp.png);
    background-size: cover;
    width: 70.7rem;
    height: 87.1rem;
    bottom: auto;
    top: -10rem;
  }
  .p-top_about_ttl {
    width: 51.2rem;
  }
  .p-top_about_cube {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto 13rem;
    transform: translate(8rem, 0);
  }
  .p-top_about_cube .dice {
    height: 40rem;
    width: 40rem;
    display: inline-block;
  }
  .p-top_about_cube .dice_face {
    height: 40rem;
    width: 40rem;
  }
  .p-top_about_cube .dice_face_front {
    transform: rotateY(0deg) translateZ(20rem);
  }
  .p-top_about_cube .dice_face_back {
    transform: rotateY(180deg) translateZ(20rem);
  }
  .p-top_about_cube .dice_face_left {
    transform: rotateY(-90deg) translateZ(20rem);
  }
  .p-top_about_cube .dice_face_right {
    transform: rotateY(90deg) translateZ(20rem);
  }
  .p-top_about_cube .dice_face_top {
    transform: rotateX(90deg) translateZ(20rem);
  }
  .p-top_about_cube .dice_face_bottom {
    transform: rotateX(-90deg) translateZ(20rem);
  }
  .p-top_about_flex {
    flex-flow: column;
    align-items: flex-start;
  }
  .p-top_about_box.-box01 .p-top_about_flex {
    flex-flow: column;
    align-items: flex-end;
    margin-bottom: 8rem;
  }
  .p-top_about_box.-box02 .p-top_about_flex {
    display: block;
  }
  .p-top_about_box.-box02 .p-top_about_flex > div {
    display: flex;
    flex-flow: column;
    align-items: normal;
    gap: 8rem;
    margin-bottom: 8rem;
    margin-left: 0;
  }
  .p-top_about_box.-box02 .p-top_about_flex .c-btn {
    justify-content: flex-end;
  }
  .p-top_about_box.-box02 picture {
    width: 100%;
    display: block;
  }
  .p-top_about_box.-box02 .p-top_about_subttl {
    margin-bottom: 1rem;
  }
  .p-top_about_subttl {
    font-size: 7.2rem;
  }
  .p-top_about_subttl span {
    margin-top: 4rem;
    font-size: 2.8rem;
  }
  .p-top_about_list {
    flex-wrap: wrap;
    gap: 2rem 4%;
    margin-bottom: 8rem;
  }
  .p-top_about_item {
    width: 48%;
  }
  .p-top_about_item_txt {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
  .p-top_work {
    margin-bottom: 15rem;
  }
  .p-top_work:before {
    display: none;
  }
  .p-top_work_ttl {
    width: 60rem;
    margin: 0 auto 5rem 0;
    transform: translateX(0);
  }
  .p-top_work_flex {
    flex-flow: column;
    gap: 4rem;
  }
  .p-top_work_flex_right {
    width: 100%;
  }
  .p-top_work_flex.pcnone {
    display: flex;
  }
  .p-top_work_flex.spnone {
    display: none;
  }
  .p-top_work_box {
    border-radius: 2rem;
  }
  .p-top_work_box_ttl {
    font-size: 6rem;
    margin-bottom: 0 !important;
  }
  .p-top_work_box_ttl span {
    margin-top: 2rem;
    font-size: 2.8rem;
  }
  .p-top_work_box .c-btn {
    display: none;
  }
  .p-top_work_box.-workstyle {
    width: 100%;
    padding: 1rem;
  }
  .p-top_work_box.-workstyle .p-top_work_box_thum {
    margin-bottom: 2rem;
  }
  .p-top_work_box.-workstyle .p-top_work_box_flex {
    display: block;
    padding: 3.4rem 2rem;
  }
  .p-top_work_box.-talent {
    display: block;
    margin-bottom: 4rem;
    padding: 1rem;
  }
  .p-top_work_box.-talent .p-top_work_box_thum {
    width: 100%;
  }
  .p-top_work_box.-talent .p-top_work_box_ttl {
    margin-bottom: 0;
    font-size: 6rem;
    margin-bottom: 5.2rem;
  }
  .p-top_work_box.-talent .p-top_work_box_flex {
    display: block;
    padding: 3.4rem 2rem;
  }
  .p-top_work_box.-job {
    display: block;
    margin-bottom: 0;
    padding: 1rem;
  }
  .p-top_work_box.-job .p-top_work_box_thum {
    width: 100%;
  }
  .p-top_work_box.-job .p-top_work_box_ttl {
    margin-bottom: 0;
    margin-bottom: 5.2rem;
  }
  .p-top_work_box.-job .p-top_work_box_flex {
    display: block;
    padding: 3.4rem 2rem;
  }
  .p-top_people:before {
    width: 70rem;
    height: 4.8rem;
    top: 60rem;
  }
  .p-top_people_ttl {
    font-size: 7.2rem;
  }
  .p-top_people_ttl span {
    margin-top: 4rem;
    font-size: 2.8rem;
  }
  .p-top_people_flex {
    align-items: normal;
    flex-flow: column;
    gap: 8rem;
  }
  .p-top_people_flex .c-btn {
    justify-content: flex-end;
  }
  .p-top_people_position {
    font-size: 2.4rem;
  }
  .p-top_people_name {
    font-size: 2.8rem;
  }
  .p-top_people .carousel-slider .swiper-slide {
    width: 60rem;
    height: 60rem;
  }
  .p-top_people .carousel-slider .swiper-slide a:hover {
    opacity: 1;
  }
  .p-top_people .carousel-slider .swiper-slide a:hover img {
    opacity: 1;
  }
  .p-top_people .swiper-button-next,
  .p-top_people .swiper-button-prev {
    top: 65rem;
    width: 6.4rem;
    height: 6.4rem;
  }
  .p-top_people .swiper-button-next {
    transform: translateX(35rem);
  }
  .p-top_people .swiper-button-next:hover {
    transform: translateX(35rem);
  }
  .p-top_people .swiper-button-prev {
    transform: scale(-1, 1) translateX(35rem);
  }
  .p-top_people .swiper-button-prev:hover {
    transform: scale(-1, 1) translateX(35rem);
  }
  .p-top_people .swiper-slide-active {
    padding-top: 10rem;
  }
  .p-top_people .swiper-slide-active .p-top_people_box {
    opacity: 1;
  }
  .p-top_recruit_ttl {
    width: 60rem;
    margin: 0 auto 8rem 0;
  }
  .p-top_recruit_flex {
    display: flex;
    flex-flow: column;
    gap: 5rem;
  }
  .p-top_recruit_box {
    width: 100%;
    padding: 6rem 4rem;
  }
  .p-top_recruit_box.-green .p-top_recruit_subttl {
    width: 24.8rem;
    transform: translateX(0);
    margin: 0 auto 4rem 0;
  }
  .p-top_recruit_box.-blue .p-top_recruit_subttl {
    width: 24.8rem;
    transform: translateX(0);
    margin: 0 auto 4rem 0;
  }
  .p-top_recruit_thum {
    width: 100%;
  }
  .p-top_recruit_list {
    width: 100%;
  }
  .p-top_recruit_list li {
    padding: 2rem;
  }
  .p-top_recruit_list li a {
    font-size: 2.4rem;
  }
  .p-top_recruit_list li a:before {
    right: 2rem;
    width: 4.4rem;
    height: 4.4rem;
  }
  .p-top_recruit_list li.-blank a:after {
    right: 2rem;
    width: 3.5rem;
    height: 3.55rem;
  }
  .p-top_recruit_wht {
    padding: 5rem 3rem;
  }
  .p-top_recruit_wht_flex {
    flex-flow: column;
    gap: 4rem 0;
  }
  .p-top_recruit_wht_dl {
    width: 100%;
  }
  .p-top_recruit_wht_dt {
    font-size: 3.2rem;
  }
  .p-top_recruit_wht_dt.-small {
    font-size: 2.4rem;
  }
  .p-top_recruit_wht_dd {
    padding-left: 10rem !important;
    display: flex;
    flex: none;
    align-items: center;
    min-height: 8em;
  }
  .p-top_recruit_wht_dd ul li a {
    font-size: 2.8rem;
    line-height: 4.2rem;
    padding-right: 5rem;
  }
  .p-top_recruit_wht_dd ul li a:after {
    width: 3rem;
    height: 3rem;
  }
  .p-top_recruit_wht_dd.-icon01:before {
    width: 7.2rem;
    height: 6.4rem;
  }
  .p-top_recruit_wht_dd.-icon02:before {
    top: 0.7rem;
    left: 1.2rem;
    width: 7rem;
    height: 8.4rem;
  }
  .p-top_recruit_wht_dd.-icon03:before {
    top: 1.5rem;
    left: 1.8rem;
    width: 6.8rem;
    height: 6.8rem;
  }
  .p-top_recruit_wht_dd.-icon04:before {
    top: -0.7rem;
    left: 0.2rem;
    width: 8.6rem;
    height: 6.8rem;
  }
  .p-top_recruit_wht_dd.-icon05:before {
    top: -0.7rem;
    left: 1rem;
    width: 6.8rem;
    height: 6.6rem;
  }
  .p-top_recruit_wht_dd.-icon06:before {
    top: -0.7rem;
    left: 1.7rem;
    width: 6.4rem;
    height: 6.4rem;
  }
  .p-top_recruit_wht_dd.-icon07:before {
    top: -0.4rem;
    left: 0.5rem;
    width: 7rem;
    height: 5.6rem;
  }
  .p-top_recruit_wht_dd.-icon08:before {
    top: -0.1rem;
    left: 0.9rem;
    width: 7.4rem;
    height: 5.2rem;
  }
  .p-top_recruit_wht_dd.-icon09:before {
    top: -0.9rem;
    left: 1.4rem;
    width: 7rem;
    height: 7rem;
  }
  .p-top_recruit_wht_dd.-icon10:before {
    top: -0.9rem;
    left: 0.6rem;
    width: 7.6rem;
    height: 6.4rem;
  }
  .p-top_recruit_wht_dd.-icon11:before {
    top: -0.9rem;
    left: 1.6rem;
    width: 5.4rem;
    height: 7rem;
  }
  .p-top_recruit_wht_dd.-icon12 {
    padding-left: 0 !important;
  }
  .p-top_recruit_wht_dd.-icon12:before {
    display: none;
  }
  .p-top_movie {
    padding: 10rem 0;
  }
  .p-top_movie_ttl {
    width: 100%;
    margin: 0 auto 6rem;
  }
  .p-top_movie_list {
    flex-flow: column;
    gap: 8rem 0;
  }
  .p-top_movie_item {
    width: 100%;
  }
  .p-top_movie_item_txt {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
  .p-othercontents {
    padding: 10rem 0;
  }
  .p-othercontents:before {
    width: 70rem;
    height: 14.1rem;
    top: 8rem;
    z-index: -1;
  }
  .p-othercontents-Ttl span {
    font-size: 2.4rem;
  }
  .p-othercontents-List {
    flex-flow: column;
  }
  .p-othercontents-List li {
    width: 100%;
  }
  .p-othercontents-List li h3 {
    font-size: 6rem;
    line-height: 7rem;
  }
  .p-othercontents-List li h3 span {
    font-size: 2.4rem;
  }
  .p-othercontents-List li.-talent h3 {
    font-size: 6rem;
    line-height: 7rem;
    margin-top: 3rem;
  }
  /*---------問い合わせコンテンツ---------*/
  .p-foot {
    padding: 10rem 0;
  }
  .p-foot_btns {
    flex-flow: column;
  }
  .p-foot_btns a {
    max-width: 51rem;
    width: 100%;
    height: 10rem;
  }
  .p-foot_btns a .-jp {
    font-size: 2.8rem;
  }
  .p-foot_btns a .-eng {
    font-size: 3.2rem;
  }
  .p-foot_txt {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
  /*---------新卒採用募集要項---------*/
  .p-job {
    padding-top: 15rem;
  }
  .p-job:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-job__Mv-Ttl span {
    font-size: 2.8rem;
  }
  .p-job__More-Flex {
    flex-flow: column;
    gap: 2rem;
  }
  .p-job__More-Flex a {
    width: 100%;
  }
  .p-job__Cont {
    padding: 7rem 3rem;
  }
  .p-job__Cont-Dt {
    font-size: 3.6rem;
  }
  .p-job__Cont-Dd {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
  .p-job__Cont-Dd .-small {
    font-size: 2.8rem;
  }
  .p-job__Cont-Dd ul.-flex {
    display: block;
  }
  .p-job__Cont-Dd ul.-flex li {
    width: 100%;
  }
  .p-job__Cont-Dd ul li .-gmap {
    font-size: 2.4rem;
  }
  .p-job__Cont-Flow-Dt {
    font-size: 2.8rem;
  }
  .p-job__Cont-Flow-Dd {
    font-size: 2.4rem;
  }
  .p-job__Talk-Btn .-jp {
    font-size: 2.8rem;
  }
  .p-job__Talk-Btn .-eng {
    font-size: 2.8rem;
  }
  /*--------信和グループが手掛けるプロジェクト・技術--------*/
  .p-project {
    padding-top: 15rem;
  }
  .p-project:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-project__Mv {
    margin-bottom: 10rem;
  }
  .p-project__Mv-Ttl span {
    font-size: 2.8rem;
  }
  .p-project__Cont-Ttl {
    margin-bottom: 5rem;
  }
  .p-project__Cont-Flex {
    flex-flow: column;
    gap: 4rem;
  }
  .p-project__Cont-Flex.-rev {
    flex-direction: column;
  }
  .p-project__Cont-Flex-Thum, .p-project__Cont-Flex-Detail {
    width: 100%;
  }
  .p-project__Cont-Flex-Thum-Ttl, .p-project__Cont-Flex-Detail-Ttl {
    font-size: 2.4rem;
  }
  .p-project__Cont-Flex-Thum-Txt, .p-project__Cont-Flex-Detail-Txt {
    font-size: 2rem;
    line-height: 4.2rem;
  }
  .p-project__Cont-Flex-Thum-Anchor a, .p-project__Cont-Flex-Detail-Anchor a {
    font-size: 2rem;
  }
  .p-project__Cont-Flex-Thum-Anchor a:after, .p-project__Cont-Flex-Detail-Anchor a:after {
    right: -3.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
  /*--------会社概要/事業領域--------*/
  .p-corporate {
    padding-top: 15rem;
  }
  .p-corporate:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-corporate__Mv {
    margin-bottom: 10rem;
  }
  .p-corporate__Mv-Ttl span {
    font-size: 2.8rem;
  }
  .p-corporate__Overflow-Ttl {
    width: auto;
  }
  .p-corporate__Overflow-Ttl img {
    width: 14.3rem;
  }
  .p-corporate__Overflow-Ttl span {
    font-size: 2.8rem;
  }
  .p-corporate__Overflow-Flex {
    flex-wrap: wrap;
  }
  .p-corporate__Overflow-Box {
    width: calc(50% - 2rem);
  }
  .p-corporate__Overflow-Box-Ttl {
    font-size: 2.8rem;
  }
  .p-corporate__Overflow-Box-Companyname {
    font-size: 2.4rem;
  }
  .p-corporate__Overflow-Cont {
    padding: 3rem;
    width: 100%;
  }
  .p-corporate__Overflow-Block-Ttl {
    font-size: 2.8rem;
  }
  .p-corporate__Overflow-Block-Detail {
    width: 38.5rem;
  }
  .p-corporate__Overflow-Block .-address {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  .p-corporate__Overflow-Block .-access {
    font-size: 2rem;
  }
  .p-corporate__Overflow-Block-Graph {
    width: 100%;
  }
  .p-corporate__Overflow-Block-Graph li {
    width: 23%;
  }
  .p-corporate__Overflow-Block-Txt {
    margin-top: 2rem;
    font-size: 2rem;
  }
  .p-corporate__Businessarea-Box-Ttl:before, .p-corporate__Businessarea-Box-Ttl:after, .p-corporate__Businessarea-Box-Ttl span:before, .p-corporate__Businessarea-Box-Ttl span:after {
    display: none;
  }
  .p-corporate__Businessarea-Box-List {
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-corporate__Businessarea-Box-Item-Name {
    line-height: 2.8rem;
    font-size: 2.4rem;
  }
  .p-corporate__Philosophy-List {
    padding: 8rem 3.4rem;
  }
  .p-corporate__Philosophy-Item {
    width: 100%;
    margin-bottom: 6.8rem;
  }
  .p-corporate__Philosophy-Item-Ttl {
    height: auto;
    width: 100%;
  }
  .p-corporate__Philosophy-Item-Ttl img {
    width: 100%;
    height: auto;
  }
  .p-corporate__Philosophy-Item:nth-child(1) .p-corporate__Philosophy-Item-Ttl {
    width: 50.8rem;
  }
  .p-corporate__Philosophy-Item:nth-child(2) .p-corporate__Philosophy-Item-Ttl {
    width: 60rem;
  }
  .p-corporate__Philosophy-Item:nth-child(3) .p-corporate__Philosophy-Item-Ttl {
    width: 47.4rem;
  }
  .p-corporate__Office-Item {
    width: calc(50% - 2rem);
  }
  .p-corporate__Office-Item-Ttl {
    font-size: 2.4rem;
  }
  .p-corporate__Group-Item {
    width: calc(50% - 2rem);
  }
  .p-more__Ttl img {
    width: 100%;
  }
  .p-more__Flex {
    flex-flow: column;
  }
  .p-more__Flex a {
    width: 100%;
  }
  .p-more__List {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .p-more__List li {
    width: calc(50% - 1rem);
  }
  .p-more__List li a {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
  .p-entry {
    padding: 10rem 0;
    margin-bottom: 15rem;
  }
  .p-entry__Ttl img {
    width: 100%;
  }
  .p-entry__Btn {
    height: 10rem;
    border-radius: 10rem;
  }
  .p-entry__Btn .-jp {
    font-size: 2.8rem;
  }
  .p-entry__Btn .-eng {
    font-size: 2.4rem;
  }
  .p-entry__Flex {
    flex-flow: column;
  }
  .p-entry__Flex a {
    width: 100%;
  }
  .p-entry__List {
    width: 100%;
    gap: 2rem;
  }
  .p-entry__List li {
    width: calc(50% - 1rem);
  }
  .p-entry__List li a {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
  .p-entry.-career {
    padding: 10rem 0;
  }
  .p-entry.-career .p-entry__Ttl img {
    width: 100%;
  }
  .p-quickmovie__Ttl img {
    width: 100%;
  }
  .p-quickmovie__List {
    flex-flow: column;
    width: 100%;
    gap: 4rem 0;
  }
  .p-quickmovie__List.-col .p-quickmovie__Item {
    width: 100%;
  }
  .p-quickmovie__Item {
    width: 100%;
  }
  .p-quickmovie__Item-Ttl {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  /*---------新卒採用のご案内---------*/
  .p-new {
    padding-top: 15rem;
  }
  .p-new:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-new__Mv {
    margin-bottom: 10rem;
  }
  .p-new__Mv-Ttl span {
    font-size: 2.8rem;
  }
  .p-new__Opportunity {
    margin-bottom: 10rem;
  }
  .p-new__Opportunity-Ttl img {
    width: 100%;
  }
  .p-new__Opportunity-List {
    flex-flow: column;
  }
  .p-new__Opportunity-Item {
    width: 100%;
    padding: 3.5rem 3rem 3rem;
  }
  .p-new__Opportunity-Item-Ttl {
    font-size: 3.6rem;
  }
  .p-new__Opportunity-Item-Txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
    margin-bottom: 3rem;
    min-height: auto;
  }
  .p-new__Opportunity-Flex {
    flex-flow: column;
  }
  .p-new__Opportunity-Flex a {
    width: 100%;
  }
  .p-new__Entryintern {
    margin-bottom: 10rem;
  }
  .p-new__Entryintern-Ttl img {
    width: 100%;
  }
  .p-new__Entry {
    margin-bottom: 10rem;
  }
  .p-new__Entry-Ttl img {
    width: 100%;
  }
  .p-new__Entry-List {
    gap: 2rem;
  }
  .p-new__Entry-Item {
    width: 100%;
  }
  .p-new__Entry-Item .-linktxt {
    font-size: 2.4rem;
  }
  .p-new__Faq {
    margin-bottom: 10rem;
  }
  .p-new__Faq-Ttl img {
    width: 100%;
  }
  .p-new__Faq-Dl {
    width: 100%;
  }
  .p-new__Faq-Dt {
    padding: 2.4rem 0 2.4rem 7rem;
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
  .p-new__Faq-Dt .-q {
    top: 2.4rem;
  }
  .p-new__Faq-Dd {
    font-size: 2.4rem;
  }
  /*---------中途採用のご案内---------*/
  .p-career {
    padding-top: 15rem;
  }
  .p-career:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-career__Mv {
    margin-bottom: 10rem;
  }
  .p-career__Employee {
    margin-bottom: 10rem;
  }
  .p-career__Employee-List {
    flex-flow: column;
    gap: 4rem;
  }
  .p-career__Employee-Item {
    width: 100%;
    text-align: center;
  }
  .p-career__Employee-Item-Ttl {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  .p-career__Employee-Item-Profile {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  .p-career__Document {
    margin-bottom: 10rem;
  }
  .p-career__Document-Ttl {
    margin-bottom: 6rem;
  }
  .p-career__Document-Ttl img {
    width: 25.3rem;
  }
  .p-career__Document-List {
    flex-flow: column;
    gap: 4rem;
  }
  .p-career__Document-Item {
    width: 100%;
  }
  .p-career__Document-Item-Ttl {
    font-size: 2.4rem;
  }
  /*---------信和の人たち---------*/
  .p-people {
    padding-top: 15rem;
  }
  .p-people:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-people__Mv {
    margin-bottom: 10rem;
  }
  .p-people__Mv-Ttl span {
    font-size: 2.8rem;
  }
  .p-people__Employee.-employee01:before {
    width: 100%;
    height: 7vw;
  }
  .p-people__Employee.-employee02:before {
    width: 100%;
    height: 7vw;
  }
  .p-people__Employee-List {
    display: flex;
    gap: 0 4%;
  }
  .p-people__Employee-Item {
    width: 48%;
    text-align: center;
  }
  .p-people__Employee-Item-Ttl {
    font-weight: bold;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    line-height: 3.2rem;
    margin-bottom: 1rem;
  }
  .p-people__Employee-Item-Profile {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
  /*---------人材育成・資格取得---------*/
  .p-talent {
    padding-top: 15rem;
  }
  .p-talent:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-talent__Mv {
    margin-bottom: 10rem;
  }
  .p-talent__Mv-Ttl span {
    font-size: 2.8rem;
  }
  .p-talent__Catch-Ttl img {
    width: 100%;
  }
  .p-talent__Program {
    margin-bottom: 10rem;
  }
  .p-talent__Program-List {
    justify-content: space-between;
    gap: 4rem 0;
  }
  .p-talent__Program-Ttl {
    font-size: 3.2rem;
  }
  .p-talent__Program-Item {
    width: 100%;
  }
  .p-talent__Program-Item-Ttl {
    font-size: 3.6rem;
  }
  .p-talent__Program-Item-Txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
    margin-bottom: 3rem;
    min-height: auto;
  }
  .p-talent__Mentor {
    margin-bottom: 10rem;
  }
  .p-talent__Mentor-Flex {
    flex-flow: column;
  }
  .p-talent__Mentor-Ttl {
    font-size: 3.2rem;
  }
  .p-talent__Mentor-Detail {
    width: 100%;
  }
  .p-talent__Mentor-Thum {
    width: 100%;
    margin-bottom: 4rem;
  }
  .p-talent__Mentor-Txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .p-talent__Develop {
    margin-bottom: 10rem;
  }
  .p-talent__Develop-Ttl {
    font-size: 3.2rem;
  }
  .p-talent__Develop-List {
    justify-content: space-between;
    gap: 4rem 0;
  }
  .p-talent__Develop-Item {
    width: 100%;
  }
  .p-talent__Develop-Item-Ttl {
    font-size: 3.6rem;
  }
  .p-talent__Develop-Item-Txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
    margin-bottom: 3rem;
    min-height: auto;
  }
  .p-talent__Bounty-List {
    flex-flow: column;
    gap: 4rem;
  }
  .p-talent__Bounty-Item {
    width: 100%;
  }
  .p-talent__Bounty-Item:nth-child(2) .p-talent__Bounty-Item-Label {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .p-talent__Bounty-Item-Label {
    height: 8rem;
    font-size: 2.8rem;
    border-radius: 5rem;
  }
  .p-talent__Bounty-Txt {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  /*---------職種紹介---------*/
  .p-jobs {
    padding-top: 15rem;
  }
  .p-jobs:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-jobs__Mv {
    margin-bottom: 10rem;
  }
  .p-jobs__Mv-Ttl span {
    font-size: 2.8rem;
  }
  .p-jobs__Links {
    width: 90%;
    padding: 0 3rem;
  }
  .p-jobs__Links-Box {
    flex-flow: column;
  }
  .p-jobs__Links-List {
    gap: 2rem;
  }
  .p-jobs__Links-Ttl {
    padding-top: 3rem;
    font-size: 2.8rem;
    width: 100%;
  }
  .p-jobs__Links-Item {
    width: auto;
  }
  .p-jobs__Links-Item a {
    font-size: 2.8rem;
  }
  .p-jobs__Links-Item a span {
    font-size: 2.2rem;
  }
  .p-jobs__Sec {
    padding: 15rem 0;
  }
  .p-jobs__Sec-Ttl {
    margin-bottom: 6rem;
  }
  .p-jobs__Sec-Ttl img {
    width: auto;
    height: 3.3rem;
  }
  .p-jobs__Sec-Flex {
    gap: 4rem;
    flex-flow: column;
    margin-bottom: 10rem;
  }
  .p-jobs__Sec-Detail {
    width: 100%;
  }
  .p-jobs__Sec-Thum {
    width: 100%;
  }
  .p-jobs__Sec-Thum img {
    border-radius: 2rem;
    width: 100%;
    height: auto;
    position: static;
  }
  .p-jobs__Sec-Dt {
    font-size: 2.8rem;
  }
  .p-jobs__Sec-Dd {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .p-jobs__Sec-Subttl {
    margin-bottom: 3rem;
    font-size: 3.6rem;
  }
  .p-jobs__Sec-Illust {
    gap: 3rem 1rem;
    margin-bottom: 11rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-jobs__Sec-Illust li {
    width: calc(50% - 1rem);
  }
  .p-jobs__Sec-List {
    display: flex;
    gap: 0;
    justify-content: space-between;
  }
  .p-jobs__Sec-Item-Ttl {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    line-height: 3.2rem;
  }
  .p-jobs__Sec-Item-Profile {
    font-size: 2.4rem;
  }
  /*---------福利厚生・報奨制度---------*/
  .p-workstyle {
    padding-top: 15rem;
  }
  .p-workstyle:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-workstyle__Mv {
    margin-bottom: 10rem;
  }
  .p-workstyle__Mv-Ttl span {
    font-size: 2.8rem;
  }
  .p-workstyle__Links {
    width: 100%;
  }
  .p-workstyle__Links-List {
    flex-wrap: wrap;
    gap: 0rem 6rem;
    padding-bottom: 3rem;
  }
  .p-workstyle__Links-Item a {
    font-size: 2.8rem;
  }
  .p-workstyle__Benefits {
    padding-top: 15rem;
  }
  .p-workstyle__Benefits-Flex {
    flex-flow: column;
    gap: 4rem;
    margin-bottom: 2rem;
  }
  .p-workstyle__Benefits-Detail {
    width: 100%;
  }
  .p-workstyle__Benefits-Thum {
    width: 100%;
  }
  .p-workstyle__Benefits-Subttl {
    margin-bottom: 2rem;
    font-size: 3.2rem;
  }
  .p-workstyle__Benefits-Txt {
    min-height: auto;
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .p-workstyle__Benefits-List {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem 0;
  }
  .p-workstyle__Benefits-Item {
    width: 48%;
  }
  .p-workstyle__Benefits-Item-Ttl {
    font-size: 2.8rem;
  }
  .p-workstyle__Benefits-Item-Thum {
    margin-bottom: 3rem;
  }
  .p-workstyle__Benefits-Item-Txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .p-workstyle__Benefits-Attention {
    font-size: 2.4rem;
  }
  .p-workstyle__Benefits-Wrap.-wrap04 .p-workstyle__Benefits-Item:nth-child(3) .p-workstyle__Benefits-Item-Thum {
    margin-top: -0.5rem;
  }
  .p-workstyle__Way {
    padding-top: 15rem;
  }
  .p-workstyle__Way-List {
    flex-flow: column;
    gap: 4rem;
  }
  .p-workstyle__Way-Item {
    width: 100%;
  }
  .p-workstyle__Way-Item-Border {
    padding: 3.2rem 0;
  }
  .p-workstyle__Way-Item-Ttl {
    font-size: 3.6rem;
  }
  .p-workstyle__Way-Item-Txt {
    font-size: 2.8rem;
  }
  .p-workstyle__Way-Item-Attention {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .p-workstyle__Voice {
    padding-top: 15rem;
  }
  .p-workstyle__Voice-Flex {
    display: block;
  }
  .p-workstyle__Voice-Subttl {
    font-size: 3.2rem;
  }
  .p-workstyle__Voice-Name {
    font-size: 2.4rem;
  }
  .p-workstyle__Voice-Txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .p-workstyle__Voice-Thum {
    width: 100%;
    margin-right: 0;
  }
  .p-workstyle__Voice-Detail {
    width: 100%;
  }
  .p-workstyle__Reward {
    padding-top: 15rem;
  }
  .p-workstyle__Reward-Box {
    margin-bottom: 10rem;
  }
  .p-workstyle__Reward-List {
    gap: 2rem;
  }
  .p-workstyle__Reward-Subttl {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .p-workstyle__Reward-Item {
    width: calc(100% - 1.3333333333rem);
  }
  .p-workstyle__Reward-Item-Price {
    font-size: 3rem;
  }
  .p-workstyle__Reward-Item-Price span {
    font-size: 8rem;
  }
  .p-workstyle__Reward-Plus {
    width: 4rem;
    margin: 2rem auto;
  }
  .p-workstyle__Reward-Abroad {
    width: 100%;
  }
  .p-workstyle__Reward-Abroad-List {
    gap: 1rem;
  }
  .p-workstyle__Reward-Abroad-Item {
    width: calc(100% - 0.6666666667rem);
  }
  .p-workstyle__Reward-Flex {
    flex-flow: column;
    gap: 4rem;
  }
  .p-workstyle__Reward-Detail {
    width: 100%;
  }
  .p-workstyle__Reward-Thum {
    width: 100%;
  }
  .p-workstyle__Reward-Txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .p-workstyle__Emphasis {
    padding-top: 15rem;
  }
  .p-workstyle__Emphasis-Flex {
    flex-flow: column;
    gap: 4rem;
  }
  .p-workstyle__Emphasis-Thum {
    width: 100%;
  }
  .p-workstyle__Emphasis-Detail {
    width: 100%;
  }
  .p-workstyle__Emphasis-Subttl {
    font-size: 3.2rem;
    line-height: 5.6rem;
    margin-bottom: 2rem;
  }
  .p-workstyle__Emphasis-Txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  /*---------福利厚生・報奨制度---------*/
  .p-peopledetail {
    padding-top: 15rem;
  }
  .p-peopledetail__Mv {
    margin-bottom: 15.4rem;
  }
  .p-peopledetail__Mv .l-container:before {
    position: absolute;
    width: 70rem;
    height: 40rem;
    top: -3rem;
    z-index: -10;
    right: 50%;
    transform: translateX(50%);
  }
  .p-peopledetail__Mv-Flex {
    display: block;
  }
  .p-peopledetail__Mv-Detail {
    width: 100%;
  }
  .p-peopledetail__Mv-Eng {
    font-size: 4rem;
    margin: 0 auto 4rem;
  }
  .p-peopledetail__Mv-Thum {
    width: 63.2rem;
    margin: 0 auto 10.6rem;
  }
  .p-peopledetail__Mv-Position {
    display: inline-block;
  }
  .p-peopledetail__Mv-Position span {
    font-size: 2.4rem;
  }
  .p-peopledetail__Mv-Name {
    display: inline-block;
    font-size: 3.6rem;
    margin-left: 2rem;
  }
  .p-peopledetail__Mv-Name span {
    font-size: 2.4rem;
  }
  .p-peopledetail__Now {
    margin-bottom: 20rem;
  }
  .p-peopledetail__Now-Flex {
    flex-flow: column-reverse;
  }
  .p-peopledetail__Now-Thum {
    width: 100%;
    margin-bottom: 0;
  }
  .p-peopledetail__Now-Detail {
    width: 100%;
    margin-bottom: 6rem;
  }
  .p-peopledetail__Now-Subttl {
    width: 60.4rem;
    margin-bottom: 4rem;
  }
  .p-peopledetail__Now-Txt {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
  .p-peopledetail__Flow {
    margin-bottom: 10rem;
  }
  .p-peopledetail__Flow-Ttl {
    width: 47.4rem;
    margin-bottom: 6rem;
  }
  .p-peopledetail__Flow-Thum {
    width: 100%;
  }
  .p-peopledetail__Holiday {
    margin-bottom: 10rem;
  }
  .p-peopledetail__Holiday-Ttl {
    width: 45rem;
    margin-bottom: 6rem;
  }
  .p-peopledetail__Holiday-Flex {
    flex-flow: column;
    align-items: center;
    gap: 4rem;
  }
  .p-peopledetail__Holiday-Thum {
    width: 33rem;
  }
  .p-peopledetail__Holiday-Txt {
    width: calc(100% - 37rem);
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
  .p-peopledetail__Faq {
    margin-bottom: 10rem;
  }
  .p-peopledetail__Faq-Ttl {
    width: 37.8rem;
    margin-bottom: 6rem;
  }
  .p-peopledetail__Faq-Flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .p-peopledetail__Faq-Thum {
    width: 30%;
  }
  .p-peopledetail__Faq-Detail {
    width: 65%;
  }
  .p-peopledetail__Faq-Dl {
    margin-bottom: 8rem;
  }
  .p-peopledetail__Faq-Dl dt {
    width: 100%;
    font-size: 2.4rem;
  }
  .p-peopledetail__Faq-Dl dd .-answer {
    font-size: 2.4rem;
  }
  .p-peopledetail__Faq-Dl dd .-txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .p-peopledetail__people {
    margin-bottom: 10rem;
  }
  .p-peopledetail__people-Ttl {
    margin-bottom: 4rem;
  }
  .p-peopledetail__people_position {
    font-size: 2.4rem;
  }
  .p-peopledetail__people_name {
    font-size: 2.8rem;
  }
  .p-peopledetail__people .carousel-slider .swiper-slide {
    width: 60rem;
    height: 60rem;
  }
  .p-peopledetail__people .carousel-slider .swiper-slide a:hover {
    opacity: 1;
  }
  .p-peopledetail__people .carousel-slider .swiper-slide a:hover img {
    opacity: 1;
  }
  .p-peopledetail__people .swiper-button-next,
  .p-peopledetail__people .swiper-button-prev {
    top: 55rem;
    width: 6.4rem;
    height: 6.4rem;
  }
  .p-peopledetail__people .swiper-button-next {
    transform: translateX(35rem);
  }
  .p-peopledetail__people .swiper-button-next:hover {
    transform: translateX(35rem);
  }
  .p-peopledetail__people .swiper-button-prev {
    transform: scale(-1, 1) translateX(35rem);
  }
  .p-peopledetail__people .swiper-button-prev:hover {
    transform: scale(-1, 1) translateX(35rem);
  }
  .p-peopledetail__people .swiper-slide-active {
    padding-top: 10rem;
  }
  .p-peopledetail__people .swiper-slide-active .p-peopledetail__people_box {
    opacity: 1;
  }
  .p-peopledetail__people-Btn {
    text-align: center;
    padding-bottom: 2rem;
  }
  /*---------絵と数字---------*/
  .p-minute__pcslidetxt {
    display: none;
  }
  .p-minute__Flex {
    display: block;
  }
  .p-minute__Leftcont, .p-minute__Rightcont {
    display: none;
  }
  .p-minute__Centercont {
    background: #fff;
    width: 100%;
  }
  .p-minute__Mv {
    position: relative;
    padding-top: 21.3333333333vw;
    padding-bottom: 45.3333333333vw;
  }
  .p-minute__Mv-Ttl {
    position: absolute;
    top: 98.6666666667vw;
    left: 0;
  }
  .p-minute__Mv-Ttl .-line {
    position: absolute;
    top: 0;
    left: -28vw;
    width: 132.5333333333vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Mv-Ttl .-ttl {
    position: absolute;
    top: 3.7333333333vw;
    left: 2.6666666667vw;
    width: 94.4vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Mv-Ttl.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Mv-Ttl.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Mv-Txt {
    position: absolute;
    width: 83.7333333333vw;
    top: 140.2666666667vw;
    left: 8.8vw;
  }
  .p-minute__Sec01 {
    position: relative;
    height: 318.1333333333vw;
  }
  .p-minute__Sec01:before {
    position: absolute;
    content: "";
    top: 110.9333333333vw;
    left: -11.4666666667vw;
    width: 125.8666666667vw;
    height: 144.5333333333vw;
    background: url("./../img/minute_sec01_bg.png");
    background-size: cover;
  }
  .p-minute__Sec01-Thum {
    position: absolute;
  }
  .p-minute__Sec01-Thum.-thum01 {
    width: 112.8vw;
    top: 0vw;
    left: -8.8vw;
  }
  .p-minute__Sec01-Thum.-thum02 {
    width: 87.2vw;
    top: 217.0666666667vw;
    left: 9.6vw;
  }
  .p-minute__Sec01-Txt {
    position: absolute;
    width: 93.8666666667vw;
    top: 149.3333333333vw;
    left: 3.2vw;
  }
  .p-minute__Sec01-Txt .-line {
    position: absolute;
    top: 17.3333333333vw;
    left: 0vw;
    width: 93.8666666667vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec01-Txt .-ttl {
    position: absolute;
    top: 17.3333333333vw;
    left: 0vw;
    width: 93.8666666667vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec01-Txt.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec01-Txt.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02 {
    padding-bottom: 40vw;
  }
  .p-minute__Sec02-Thum.-thum01 {
    width: 92vw;
    margin: 0 0 29.8666666667vw auto;
    position: relative;
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01 {
    position: absolute;
    width: 72vw;
    top: 50.6666666667vw;
    left: -5.3333333333vw;
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 72vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01 .-ttl {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 72vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02 {
    position: absolute;
    width: 62.6666666667vw;
    top: 66.1333333333vw;
    left: 17.8666666667vw;
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 62.6666666667vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02 .-ttl {
    position: absolute;
    top: 1.6vw;
    left: 1.3333333333vw;
    width: 60vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03 {
    position: absolute;
    width: 62.6666666667vw;
    top: 76vw;
    left: 8vw;
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 62.6666666667vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03 .-ttl {
    position: absolute;
    top: 1.6vw;
    left: 1.3333333333vw;
    width: 60vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum01 .p-minute__Sec02-Thum-Txt.-txt03.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum02 {
    width: 97.3333333333vw;
    margin: 0 0 29.6vw 0;
    position: relative;
  }
  .p-minute__Sec02-Thum.-thum02:before {
    position: absolute;
    top: 63.4666666667vw;
    left: 51.4666666667vw;
    width: 7.4666666667vw;
    height: 7.4666666667vw;
    content: "";
    background: url("./../img/icon_cross.png");
    background-size: cover;
    z-index: 100;
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01 {
    position: absolute;
    width: 77.3333333333vw;
    top: 50.6666666667vw;
    left: 19.2vw;
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 77.3333333333vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01 .-ttl {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 77.3333333333vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02 {
    position: absolute;
    width: 57.0666666667vw;
    top: 66.1333333333vw;
    left: 14.1333333333vw;
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 57.0666666667vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02 .-ttl {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 57.0666666667vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum02 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum03 {
    width: 94.9333333333vw;
    margin: 0 0 29.6vw auto;
    position: relative;
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01 {
    position: absolute;
    width: 40.5333333333vw;
    top: 52.8vw;
    left: -2.6666666667vw;
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 40.5333333333vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01 .-ttl {
    position: absolute;
    top: 1.3333333333vw;
    left: 1.3333333333vw;
    width: 37.8666666667vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02 {
    position: absolute;
    width: 80.5333333333vw;
    top: 60.5333333333vw;
    left: 1.3333333333vw;
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 80.5333333333vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02 .-ttl {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 80.5333333333vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum03 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum04 {
    width: 94.9333333333vw;
    margin: 0 0 26.6666666667vw auto;
    position: relative;
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01 {
    position: absolute;
    width: 42.4vw;
    top: 42.6666666667vw;
    left: 25.0666666667vw;
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 42.4vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01 .-ttl {
    position: absolute;
    top: 1.3333333333vw;
    left: 1.3333333333vw;
    width: 39.7333333333vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt01.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02 {
    position: absolute;
    width: 50.4vw;
    top: 53.6vw;
    left: 27.2vw;
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 50.4vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02 .-ttl {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 50.4vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt02.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03 {
    position: absolute;
    width: 73.3333333333vw;
    top: 58.6666666667vw;
    left: 8.8vw;
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03 .-line {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 73.3333333333vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03 .-ttl {
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 73.3333333333vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Thum.-thum04 .p-minute__Sec02-Thum-Txt.-txt03.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec02-Btn {
    width: 64vw;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  .p-minute__Sec03 {
    position: relative;
  }
  .p-minute__Sec03:before {
    position: absolute;
    content: "";
    top: -26.6666666667vw;
    left: 50%;
    transform: translateX(-50%);
    width: 147.7333333333vw;
    height: 147.7333333333vw;
    background: #EAEFF7;
    border-radius: 50%;
  }
  .p-minute__Sec03-Ttl {
    margin: 0 auto 3.7333333333vw;
    width: 73.6vw;
    position: relative;
  }
  .p-minute__Sec03-Ttl .-line {
    position: absolute;
    top: 8vw;
    left: 0vw;
    width: 73.6vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec03-Ttl .-ttl {
    position: absolute;
    top: 8vw;
    left: 0vw;
    width: 73.6vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec03-Ttl .-txt {
    margin: 0 auto;
    width: 57.8666666667vw;
    display: block;
  }
  .p-minute__Sec03-Ttl.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec03-Ttl.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec03-Txt {
    margin: 0 auto 3.7333333333vw;
    position: relative;
    text-align: right;
    font-size: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    transform: translateY(-10.6666666667vw);
  }
  .p-minute__Sec03-Thum {
    position: relative;
  }
  .p-minute__Sec03-Thum.-thum01 {
    width: 87.2vw;
    margin: 0 -2.9333333333vw 0vw auto;
  }
  .p-minute__Sec03-Thum.-thum02 {
    width: 68vw;
    margin: 0 auto -12.5333333333vw;
  }
  .p-minute__Sec03-Thum.-thum03 {
    width: 57.8666666667vw;
    margin: 0 auto;
  }
  .p-minute__Sticky {
    position: sticky;
    top: -186.6666666667vw;
  }
  .p-minute__White {
    background: #fff;
    z-index: 10;
    position: relative;
    padding-top: 10.6666666667vw;
  }
  .p-minute__Sec04 {
    margin-bottom: 26.6666666667vw;
  }
  .p-minute__Sec05 {
    padding-bottom: 10.6666666667vw;
    position: relative;
  }
  .p-minute__Sec05:before {
    position: absolute;
    width: 100%;
    height: 69.3333333333vw;
    content: "";
    left: 0;
    bottom: -5.8666666667vw;
    background: url("./../img/minute_sec05_bg.png");
    background-size: cover;
  }
  .p-minute__Sec05-Ttl {
    width: 96vw;
    margin-left: 2.6666666667vw;
    margin-bottom: -5.3333333333vw;
    z-index: 10;
    position: relative;
    z-index: 100;
  }
  .p-minute__Sec05-Ttl .-line {
    position: absolute;
    top: 28vw;
    left: -8vw;
    width: 110.6666666667vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec05-Ttl .-ttl {
    position: absolute;
    top: 33.6vw;
    left: -0.8vw;
    width: 96vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec05-Ttl.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec05-Ttl.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec05-Box01 {
    margin-bottom: 2.6666666667vw;
  }
  .p-minute__Sec05-Box01 .swiper-wrapper {
    transition-timing-function: linear;
  }
  .p-minute__Sec05-Box01 .swiper-slide {
    width: 50.6666666667vw;
    padding-right: 2.6666666667vw;
  }
  .p-minute__Sec05-Box02 {
    margin-bottom: 16vw;
  }
  .p-minute__Sec05-Box02 .swiper-wrapper {
    transition-timing-function: linear;
  }
  .p-minute__Sec05-Box02 .swiper-slide {
    width: 50.6666666667vw;
    padding-right: 2.6666666667vw;
  }
  .p-minute__Sec05-Subttl {
    position: relative;
    z-index: 100;
    height: 40vw;
  }
  .p-minute__Sec05-Subttl .-line {
    position: absolute;
    top: 0;
    left: -2.6666666667vw;
    width: 108vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute__Sec05-Subttl .-ttl {
    position: absolute;
    top: 0vw;
    left: -2.9333333333vw;
    width: 108vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute__Sec05-Subttl.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec05-Subttl.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute__Sec05-Txt {
    position: relative;
  }
  .p-minute__Sec05-Txt.-txt01 {
    width: 62.1333333333vw;
    margin: 0 auto 11.7333333333vw;
  }
  .p-minute__Sec05-Txt.-txt02 {
    width: 64.8vw;
    margin: 0 auto;
  }
  .p-minute__Sec06-List {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 89.3333333333vw;
    margin: 0 auto 8vw;
  }
  .p-minute__Sec06-Item {
    width: 42.6666666667vw;
    background: #fff;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border-radius: 2.6666666667vw;
  }
  .p-minute__Sec06-Item h3 {
    text-align: center;
    font-weight: bold;
    font-size: 4.2666666667vw;
    margin-bottom: 1.3333333333vw;
  }
  .p-minute__Sec06-Item p {
    text-align: center;
    font-size: 5.8666666667vw;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 11.2vw;
  }
  .p-minute__Sec06-Item p span {
    font-size: 12.2666666667vw;
  }
  .p-minute__Sec06-Item:nth-child(1) {
    border: 0.8vw solid #FF5000;
  }
  .p-minute__Sec06-Item:nth-child(2) {
    border: 0.8vw solid #28ACEA;
  }
  .p-minute__Sec06-Item:nth-child(3) {
    border: 0.8vw solid #32B330;
  }
  .p-minute__Sec06-Item:nth-child(4) {
    border: 0.8vw solid #FFCF39;
  }
  .p-minute__Sec06-From {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10.6666666667vw;
  }
  .p-minute__Sec06-From .-txt01 {
    width: 21.3333333333vw;
  }
  .p-minute__Sec06-From span {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 17.0666666667vw;
  }
  .p-minute__Sec06-From .-txt02 {
    width: 10.1333333333vw;
  }
  .p-minute__Sec07 {
    position: relative;
    padding-bottom: 26.6666666667vw;
  }
  .p-minute__Sec07:before {
    position: absolute;
    content: "";
    top: 24vw;
    left: 50%;
    transform: translateX(-50%);
    width: 240vw;
    height: 240vw;
    background: #FFCF39;
    border-radius: 50%;
  }
  .p-minute__Sec07-Thum {
    width: 82.9333333333vw;
    margin: 0 auto -25.3333333333vw;
  }
  .p-minute__Sec07-Txt {
    text-align: center;
    position: relative;
    z-index: 10;
    font-size: 5.3333333333vw;
    font-weight: bold;
    line-height: 9.3333333333vw;
    letter-spacing: 0.04em;
    margin-bottom: 8vw;
  }
  .p-minute__Sec07-Bnr {
    display: block;
    position: relative;
    z-index: 10;
    width: 89.3333333333vw;
    margin: auto;
  }
  /*---------絵と数字 ver.02---------*/
  .p-minute-v2__Mv {
    position: relative;
  }
  .p-minute-v2__Mv:before {
    content: "";
    position: absolute;
    top: 142.9333333333vw;
    left: 0;
    width: 100%;
    height: 248.8vw;
    pointer-events: none;
    background: url("./../img/minute-v2_mv_bg.png");
    background-size: cover;
  }
  .p-minute-v2__Mv-Ttl {
    position: absolute;
    top: 105.8666666667vw;
    left: 0;
  }
  .p-minute-v2__Mv-Ttl .-line {
    position: absolute;
    top: 0;
    left: -28vw;
    width: 134.6666666667vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute-v2__Mv-Ttl .-ttl {
    position: absolute;
    top: 3.7333333333vw;
    left: 2.6666666667vw;
    width: 94.6666666667vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute-v2__Mv-Ttl.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Mv-Ttl.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Mv-Txt {
    position: absolute;
    width: 70.9333333333vw;
    top: 151.4666666667vw;
    left: 8.8vw;
  }
  .p-minute-v2__Sec01 {
    position: relative;
    margin-top: -60.8vw;
    padding-bottom: 5.3333333333vw;
  }
  .p-minute-v2__Sec01-Thum {
    width: 89.3333333333vw;
    margin: 0 auto 20vw;
  }
  .p-minute-v2__Sec01-Txt {
    width: 63.2vw;
    margin: auto;
  }
  .p-minute-v2__Sec02 {
    position: relative;
    z-index: 10;
    margin-bottom: 7.2vw;
  }
  .p-minute-v2__Sec02-Thum {
    width: 91.4666666667vw;
    margin: 0 auto 10.6666666667vw;
  }
  .p-minute-v2__Sec02-List {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    gap: 4rem;
    width: 66.6666666667vw;
    margin: auto;
  }
  .p-minute-v2__Sec02-Item {
    width: 100%;
  }
  .p-minute-v2__Sec02-Item-Border {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 5.3333333333vw;
    border: 1.0666666667vw solid;
    padding: 3.2rem 0;
    background: #fff;
  }
  .p-minute-v2__Sec02-Item-Ttl {
    text-align: center;
    font-size: 5.3333333333vw;
    font-weight: bold;
  }
  .p-minute-v2__Sec02-Item-No {
    font-size: 6.4vw;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-align: center;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
  .p-minute-v2__Sec02-Item-No span {
    font-size: 16vw;
    font-family: "Lato", sans-serif;
    font-weight: 900;
  }
  .p-minute-v2__Sec02-Item-Txt {
    text-align: center;
    font-size: 4.2666666667vw;
    font-weight: 500;
  }
  .p-minute-v2__Sec02-Item-Attention {
    margin-top: 1.3333333333vw;
    text-align: center;
    font-size: 2.6666666667vw;
    line-height: 3.2vw;
    letter-spacing: 0.04em;
    color: #373737;
  }
  .p-minute-v2__Sec02-Item:nth-child(1) .p-minute-v2__Sec02-Item-Border {
    border-color: #FF5000;
  }
  .p-minute-v2__Sec02-Item:nth-child(1) .p-minute-v2__Sec02-Item-No {
    color: #FF5000;
  }
  .p-minute-v2__Sec02-Item:nth-child(2) .p-minute-v2__Sec02-Item-Border {
    border-color: #28ACEA;
  }
  .p-minute-v2__Sec02-Item:nth-child(2) .p-minute-v2__Sec02-Item-No {
    color: #28ACEA;
  }
  .p-minute-v2__Sec02-Item:nth-child(3) .p-minute-v2__Sec02-Item-Border {
    border-color: #32B330;
  }
  .p-minute-v2__Sec02-Item:nth-child(3) .p-minute-v2__Sec02-Item-No {
    color: #32B330;
  }
  .p-minute-v2__Sec03 {
    position: relative;
  }
  .p-minute-v2__Sec03-Thum.-thum01 {
    position: relative;
    width: 120vw;
    margin: 0 -8.6666666667vw;
  }
  .p-minute-v2__Sec03-Thum.-thum02 {
    position: relative;
    width: 98.4vw;
    margin: -23.2vw auto 0 0.2666666667vw;
  }
  .p-minute-v2__Sec03-List {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.3333333333vw 0;
    margin: 0 auto 10.6666666667vw;
  }
  .p-minute-v2__Sec03-List li {
    width: 49.3333333333vw;
  }
  .p-minute-v2__Sec03-Txt {
    width: 76.8vw;
    margin: 0 auto 10.6666666667vw;
  }
  .p-minute-v2__Sec03-Box {
    display: flex;
    justify-content: space-between;
    width: 90.6666666667vw;
    margin: auto;
    z-index: 10;
    position: relative;
  }
  .p-minute-v2__Sec03-Box a {
    display: block;
    width: 42.6666666667vw;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.4));
  }
  .p-minute-v2__Sec04 {
    margin-top: -5.3333333333vw;
  }
  .p-minute-v2__Sec04-Ttl {
    position: relative;
  }
  .p-minute-v2__Sec04-Ttl .-line {
    position: absolute;
    top: 36.2666666667vw;
    left: 8vw;
    width: 84.2666666667vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute-v2__Sec04-Ttl .-ttl {
    position: absolute;
    top: 36.2666666667vw;
    left: 8vw;
    width: 84.2666666667vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute-v2__Sec04-Ttl.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec04-Ttl.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec04-Box {
    margin-bottom: 2.1333333333vw;
  }
  .p-minute-v2__Sec04-Thum {
    width: 96.2666666667vw;
    margin-left: auto;
    margin-bottom: 2.6666666667vw;
  }
  .p-minute-v2__Sec04-Txt {
    width: 84vw;
    margin: auto;
    font-size: 3.7333333333vw;
    line-height: 2em;
    letter-spacing: 0.04em;
    text-align: justify;
  }
  .p-minute-v2__Sec05-Ttl {
    position: relative;
  }
  .p-minute-v2__Sec05-Ttl .-line {
    position: absolute;
    top: 20vw;
    left: 6.1333333333vw;
    width: 87.7333333333vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute-v2__Sec05-Ttl .-ttl {
    position: absolute;
    top: 20vw;
    left: 6.1333333333vw;
    width: 87.7333333333vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute-v2__Sec05-Ttl.is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec05-Ttl.is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec05-List {
    margin: -5.3333333333vw auto 13.3333333333vw;
    width: 74.6666666667vw;
  }
  .p-minute-v2__Sec05-List li {
    margin-bottom: 5.3333333333vw;
    width: 74.6666666667vw;
    position: relative;
  }
  .p-minute-v2__Sec05-List li:nth-child(1) .-line {
    position: absolute;
    top: 35.2vw;
    left: -5.3333333333vw;
    width: 71.7333333333vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute-v2__Sec05-List li:nth-child(1) .-ttl {
    position: absolute;
    top: 35.2vw;
    left: -5.3333333333vw;
    width: 71.7333333333vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute-v2__Sec05-List li:nth-child(1).is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec05-List li:nth-child(1).is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec05-List li:nth-child(2) .-line {
    position: absolute;
    top: 36.8vw;
    right: -5.3333333333vw;
    width: 51.7333333333vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute-v2__Sec05-List li:nth-child(2) .-ttl {
    position: absolute;
    top: 36.8vw;
    right: -5.3333333333vw;
    width: 51.7333333333vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute-v2__Sec05-List li:nth-child(2).is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec05-List li:nth-child(2).is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec05-List li:nth-child(3) .-line {
    position: absolute;
    top: 35.7333333333vw;
    left: -5.3333333333vw;
    width: 65.0666666667vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute-v2__Sec05-List li:nth-child(3) .-ttl {
    position: absolute;
    top: 35.7333333333vw;
    left: -5.3333333333vw;
    width: 65.0666666667vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute-v2__Sec05-List li:nth-child(3).is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec05-List li:nth-child(3).is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec05-List li:nth-child(4) .-line {
    position: absolute;
    top: 34.4vw;
    right: -5.3333333333vw;
    width: 78.6666666667vw;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-minute-v2__Sec05-List li:nth-child(4) .-ttl {
    position: absolute;
    top: 34.4vw;
    right: -5.3333333333vw;
    width: 78.6666666667vw;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
  }
  .p-minute-v2__Sec05-List li:nth-child(4).is-inview .-line {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec05-List li:nth-child(4).is-inview .-ttl {
    clip-path: inset(0 0 0 0);
  }
  .p-minute-v2__Sec06 {
    position: relative;
    padding-top: 21.3333333333vw;
    padding-bottom: 21.3333333333vw;
  }
  .p-minute-v2__Sec06:before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240vw;
    height: 240vw;
    background: #FAECE0;
    border-radius: 50%;
  }
  .p-minute-v2__Sec06-Txt {
    text-align: center;
    letter-spacing: 0.04em;
    font-weight: bold;
    line-height: 9.3333333333vw;
    font-size: 5.3333333333vw;
    position: relative;
  }
  .p-minute-v2__Sec06-Txt.-txt01 {
    margin-bottom: 5.3333333333vw;
  }
  .p-minute-v2__Sec06-Txt.-txt02 {
    margin-bottom: 13.3333333333vw;
  }
  .p-minute-v2__Sec06-btns {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 10.6666666667vw;
    margin-bottom: 21.3333333333vw;
  }
  .p-minute-v2__Sec06-btns a {
    width: 64vw;
    height: 17.0666666667vw;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
    border-radius: 8vw;
  }
  .p-minute-v2__Sec06-btns a .-jp {
    font-size: 4vw;
    font-weight: bold;
    letter-spacing: 0.08em;
  }
  .p-minute-v2__Sec06-btns a .-eng {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5333333333vw;
    font-weight: bold;
    letter-spacing: 0.08em;
  }
  .p-minute-v2__Sec06-btns a.-btn01 {
    background: url("./../img/btn_modal_01.png");
    background-size: cover;
  }
  .p-minute-v2__Sec06-btns a.-btn02 {
    background: url("./../img/btn_modal_02.png");
    background-size: cover;
  }
  .p-minute-v2__Sec06-Subttl {
    width: 76.8vw;
    margin: 0 auto 8vw;
    position: relative;
  }
  .p-minute-v2__Sec06-Box {
    display: flex;
    justify-content: space-between;
    width: 90.6666666667vw;
    margin: auto;
    z-index: 10;
    position: relative;
  }
  .p-minute-v2__Sec06-Box a {
    display: block;
    width: 42.6666666667vw;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.4));
  }
  /*---------404---------*/
  .p-notfound {
    padding-top: 15rem;
  }
  .p-notfound:before {
    position: absolute;
    width: 70rem;
    height: 20.9rem;
    top: 12rem;
    z-index: -10;
  }
  .p-notfound__Mv {
    margin-bottom: 10rem;
  }
  .p-notfound__Mv-Ttl span {
    font-size: 2.8rem;
  }
  .p-notfound__Cont {
    margin-bottom: 10rem;
  }
  .p-notfound__Cont-Txt {
    font-size: 2.4rem;
    line-height: 3.6rem;
    margin-bottom: 6rem;
  }
  .p-notfound__Cont-Btn a {
    max-width: 51rem;
    width: 100%;
    height: 10rem;
    font-size: 2.8rem;
  }
}