@charset "UTF-8";

/*----
recruit---------------------------------*/

.mainvisual {
  margin-bottom: 50px;
  margin-bottom: 2.604166667vw;
}

.mainvisual .cont01 h2 {
  position: absolute;
  width: 1300px;
  width: 67.70833333vw;
  bottom: 0;
  z-index: 4;
  overflow: hidden;
}

.mainvisual .cont01 h2 .cont03 {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

.mainvisual .cont01 h2 .cont03 svg g {
  display: inline-block;
  overflow: hidden;
}

.mainvisual .cont01 h2 .cont03 svg path {
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  opacity: 0;
}

/*テキストアニメーション*/

.mainvisual.show .cont01 h2 .cont03 svg path {
  animation: maintext 0.5s 1.5s 1 forwards;
}

.mainvisual.show .cont01 h2 .cont03 svg path:nth-child(2) {
  animation-delay: 1.56s;
}

.mainvisual.show .cont01 h2 .cont03 svg path:nth-child(3) {
  animation-delay: 1.62s;
}

.mainvisual.show .cont01 h2 .cont03 svg path:nth-child(4) {
  animation-delay: 1.68s;
}

.mainvisual.show .cont01 h2 .cont03 svg path:nth-child(5) {
  animation-delay: 1.74s;
}

.mainvisual.show .cont01 h2 .cont03 svg path:nth-child(6) {
  animation-delay: 1.8s;
}

.mainvisual.show .cont01 h2 .cont03 svg path:nth-child(7) {
  animation-delay: 1.86s;
}

.mainvisual.show .cont01 h2 .cont03 svg path:nth-child(8) {
  animation-delay: 1.92s;
}

.mainvisual.show .cont01 h2 .cont03 svg path:nth-child(9) {
  animation-delay: 1.98s;
}

.mainvisual.show .cont01 h2 .cont03 svg path:nth-child(10) {
  animation-delay: 2.02s;
}

@keyframes maintext {
  0% {
    opacity: 0;
    transform: translate(0, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.mainvisual .cont01 p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  z-index: 5;
  opacity: 0;
}

.mainvisual.show .cont01 p {
  animation: opacity 0.5s ease-out 2.5s 1 forwards;
}

.mainvisual .cont01 p a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mainvisual .cont01 p a span:first-child {
  position: relative;
  bottom: 20px;
}

.mainvisual.show .cont01 p a span:first-child {
  animation: scroll 1s ease 0s infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate3d(0, 0px, 0) skewY(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) skewY(0);
  }
}

.mainvisual .cont01 p a span:last-child {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  letter-spacing: 1.5px;
  color: #fff;
  width: 150px;
  width: 7.8125vw;
  text-align: center;
  background-color: #000;
  border-radius: 30px;
}

.mainvisual ul {
  position: relative;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  overflow: hidden;
}

.mainvisual ul:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 1350px;
  height: 70.3125vw;
  display: inline-block;
  position: absolute;
  border-radius: 0 0 200% 200% /0 0 100% 100%;
  z-index: 1;
  opacity: 0;
}

.mainvisual.show ul:before {
  animation: mainbg 0.5s ease-out 0s 1 forwards;
}

@keyframes mainbg {
  0% {
    opacity: 0;
    height: 0;
    transform: translate(0, -100%) skewY(0);
  }
  100% {
    opacity: 0.4;
    transform: translate(0, 0) skewY(0);
    height: 100%;
  }
}

.mainvisual ul li {
  position: relative;
  z-index: 2;
  /* overflow: hidden; */
}

.mainvisual ul li:first-child {
  opacity: 0;
}

.mainvisual.show ul li:first-child {
  animation: paint 0.5s ease-out 0s 1 forwards;
}

@keyframes paint {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    opacity: 1;
  }
}

.mainvisual ul li:nth-child(2) {
  opacity: 0;
  transform: translate(0, 0) scale(0);
}

.mainvisual ul li:nth-child(3) {
  opacity: 0;
  transform: translate(0, 0) scale(0);
}

.mainvisual ul li:nth-child(4) {
  opacity: 0;
  transform: translate(0, 0) scale(1.6);
}

.mainvisual ul li:last-child {
  opacity: 0;
  transform: translate(0, 0) scale(0) rotate(180deg);
}

.mainvisual.show ul li:nth-child(2) {
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 1.2s;
}

.mainvisual.show ul li:nth-child(3) {
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 0.6s;
}

.mainvisual.show ul li:nth-child(4) {
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 0.9s;
}

.mainvisual.show ul li:last-child {
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0deg);
  transition-delay: 0.3s;
}

.mainvisual ul li:nth-child(2) {
  position: absolute;
  width: 670px;
  width: 34.89583333vw;
  top: 220px;
  top: 11.45833333vw;
  top: 90px;
  top: 4.6875vw;
  right: 65.4%;
}

.mainvisual ul li:nth-child(3) {
  position: absolute;
  width: 610px;
  width: 31.77083333vw;
  bottom: 235px;
  bottom: 12.23958333vw;
  bottom: 300px;
  bottom: 15.625vw;
  right: 51vw;
  z-index: 3;
}

.mainvisual ul li:nth-child(4) {
  position: absolute;
  width: 770px;
  width: 40.10416667vw;
  top: 120px;
  top: 6.25vw;
  top: 60px;
  top: 3.125vw;
  left: 38.5vw;
}

.mainvisual ul li:last-child {
  position: absolute;
  bottom: 450px;
  bottom: 23.4375vw;
  bottom: 500px;
  bottom: 26.04166667vw;
  width: 830px;
  width: 43.22916667vw;
  right: 0;
}

@keyframes move01 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(20px, -30px);
  }
  50.1% {
    transform: translate(20px, -30px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes move02 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(-20px, 20px);
  }
  50.1% {
    transform: translate(-20px, 20px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes move03 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0px, 20px);
  }
  50.1% {
    transform: translate(0px, 20px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes move04 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  50.1% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.recruitCont01 {
  position: relative;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 1520px;
  width: 80%;
  margin: 0 auto 200px;
  margin-bottom: 10.41666667vw;
}

.recruitCont01 h2 {
  width: 350px;
  width: 18.22916667vw;
  position: absolute;
  right: 0;
}

.recruitCont01 p {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  font-weight: bold;
  line-height: 1.7;
  /* letter-spacing: 1px; */
  display: inline-block;
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
  opacity: 0;
}

.recruitCont01 div.last p:last-child {
  margin-bottom: 0;
}

.recruitCont01 p > span {
  display: block;
}

/*---テキストアニメーション---*/

.recruitCont01 div.target.inview p:nth-child(2) {
  animation-delay: 0.5s;
}

.recruitCont01 div.target.inview p {
  overflow: hidden;
  display: block;
  animation: 0.5s ease-out 0.2s 1;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
}

.recruitCont02.inview {
  animation: flip-right 0.5s ease 0s 1 forwards;
}

@keyframes flip-right {
  0% {
    opaccity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

.recruitCont a,
.recruitCont02 a,
.recruitCont03 a {
  position: relative;
  z-index: 2;
  padding-bottom:5px;
}

.recruitCont02 a:hover {
  opacity: 1;
}

/*.recruitCont02 a:before {
 * content: "";
 * background-repeat: repeat;
 * width: 100%;
 * height: 100%;
 * display: inline-block;
 * position: absolute;
 * z-index: 1;
 * background-color: #000;
 * opacity: 0.5;
}*/

/*1250の時*/

/*.recruitCont02 a:after {
 * content: "";
 * border-right: 1px solid #fff;
 * border-top: 1px solid #fff;
 * width: 120px;
 * width: 9.6vw;
 * height: 120px;
 * height: 9.6vw;
 * display: inline-block;
 * position: absolute;
 * top: 35px;
 * top: 2.8vw;
 * right: 35px;
 * right: 2.8vw;
 * z-index: 4;
}*/

.recruitCont02 ul {
  width: 93.22916667%;
  position: absolute;
  top: 100px;
  top: 5.208333333vw;
  left: 4%;
  margin: 0 auto;
  z-index: 2;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translate(0, 50px) skewY(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) skewY(0);
  }
}
/*
.recruitCont .info_link,
.recruitCont02 .info_link,
.recruitCont03 .info_link {
  @media (min-width: 769px) {
    height: 467px;
    width: auto;
  }
}
   */
.recruitCont02 .info_link .btn:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.5s;
}

.recruitCont02 .info_link .btn:hover:before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.recruitCont02 .info_link a  h2 {
  position: relative;
  width: 1185px;
  margin-bottom: 35px;
  right: 25px;
  right: 1.302083333vw;
  opacity: 0;
  overflow: hidden;
}

.recruitCont02.inview ul li h2 {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.recruitCont02 .info_link a  p {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  text-shadow: 0px 0px 5px #212121a6;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
  overflow: hidden;
  display: inline-block;
  opacity: 0;
}

.recruitCont02.inview ul li p {
  -webkit-animation: fadein 0.6s ease 0.7s forwards;
  animation: fadein 0.6s ease 0.7s forwards;
}

.recruitCont02 .info_link a:before {
  content: "";
  width: 99%;
  height: 95%;
  display: block;
  margin: 0px;
  position: absolute;
  top: 5px;
  left: 4px;
}

.recruitCont03.inview {
  animation: flip-left 0.5s ease 0s 1 forwards;
}

@keyframes flip-left {
  0% {
    opaccity: 0;
    transform: rotateY(-90deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

.recruitCont03 a:hover {
  opacity: 1;
}

/*.recruitCont03 a:before {
 * content: "";
 * background-repeat: repeat;
 * width: 100%;
 * height: 100%;
 * display: inline-block;
 * position: absolute;
 * z-index: 1;
 * background-color: #000;
 * opacity: 0.5;
}*/

/*1250pxの時*/

/*.recruitCont03 a:after {
 * content: "";
 * border-right: 1px solid #fff;
 * border-top: 1px solid #fff;
 * width: 120px;
 * width: 9.6vw;
 * height: 120px;
 * height: 9.6vw;
 * display: inline-block;
 * position: absolute;
 * top: 35px;
 * top: 2.8vw;
 * right: 35px;
 * right: 2.8vw;
 * z-index: 4;
}*/

.recruitCont03 ul {
  width: 93.22916667%;
  position: absolute;
  top: 110px;
  top: 5.729166667vw;
  left: 4%;
  margin: 0 auto;
  z-index: 2;
}

.recruitCont .info_link .btn,
.recruitCont02 .info_link .btn,
.recruitCont03 .info_link .btn {
  font-family: "Century Gothic", "sans-serif", "arial";
  display: flex;
  justify-content: center;
  font-size: 18px;
  width: 50%;
  color: #fff;
  background-color: #000;
  padding: 32.5px 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  margin: 0 auto 90px auto ;
}
.recruitCont .info_link .btn:hover,
.recruitCont02 .info_link .btn:hover,
.recruitCont03 .info_link .btn:hover  {
  color: #000;
}

.recruitCont .info_link a :before,
.recruitCont02 .info_link a :before,
.recruitCont03 .info_link a :before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.5s;
}

.recruitCont .info_link a :hover:before,
.recruitCont02 .info_link a :hover:before,
.recruitCont03 .info_link a :hover:before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.recruitCont .info_link a span,
.recruitCont02 .info_link a span,
.recruitCont03 .info_link a span {
  margin-right: 5px;
}

.recruitCont03 .info_link a  h2 {
  position: relative;
  width: 1185px;
  margin-bottom: 70px;
  right: 25px;
  opacity: 0;
  overflow: hidden;
}

.recruitCont03.inview ul li h2 {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.recruitCont03 .info_link a  p {
  color: #fff;
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  text-shadow: 0px 0px 5px #212121a6;
  line-height: 1.5;
  font-weight: bold;
  overflow: hidden;
  display: inline-block;
  opacity: 0;
}

.recruitCont03.inview ul li p {
  -webkit-animation: fadein 0.6s ease 0.7s forwards;
  animation: fadein 0.6s ease 0.7s forwards;
}

.recruitCont03 .info_link a:before {
  content: "";
  width: 99%;
  height: 95%;
  display: block;
  margin: 0px;
  position: absolute;
  top: 5px;
  left: 4px;
}

.recruitCont04.inview {
  animation: flip-right 0.5s ease 0s 1 forwards;
}

.recruitCont04 a {
  position: relative;
  z-index: 2;
}

.recruitCont04 a:hover {
  opacity: 1;
}

/*.recruitCont04 a:before {
 * content: "";
 * background-repeat: repeat;
 * width: 100%;
 * height: 100%;
 * display: inline-block;
 * position: absolute;
 * z-index: 1;
 * background-color: #000;
 * opacity: 0.5;
}*/

/*1250pxの時*/

/*.recruitCont04 a:after {
 * content: "";
 * border-right: 1px solid #fff;
 * border-top: 1px solid #fff;
 * width: 120px;
 * width: 9.6vw;
 * height: 120px;
 * height: 9.6vw;
 * display: inline-block;
 * position: absolute;
 * top: 35px;
 * top: 2.8vw;
 * right: 35px;
 * right: 2.8vw;
 * z-index: 4;
}*/

.recruitCont04 ul {
  width: 93.22916667%;
  position: absolute;
  top: 150px;
  top: 7.8125vw;
  left: 4%;
  margin: 0 auto;
  z-index: 2;
}

.recruitCont04 .info_link .btn{
  margin-bottom: 90px;
  font-family: "Century Gothic", "sans-serif", "arial";
  display: flex;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background-color: #000;
  width: 400px;
  padding: 32.5px 0;
  position: relative;
  z-index: 1;
  opacity: 0;
}

.recruitCont04 .info_link .btn:hover {
  color: #000;
}

.recruitCont04 .info_link .btn:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.5s;
}

.recruitCont04 .info_link .btn:hover:before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.recruitCont04 .info_link a h2 {
  position: relative;
  width: 1495px;
  margin-bottom: 70px;
  right: 25px;
  opacity: 0;
  overflow: hidden;
}

.recruitCont04.inview ul li h2 {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.recruitCont04 .info_link a p {
  font-size: 18px;
  text-shadow: 0px 0px 5px #212121a6;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
  overflow: hidden;
  display: inline-block;
  opacity: 0;
}

.recruitCont04.inview ul li p {
  -webkit-animation: fadein 0.6s ease 0.7s forwards;
  animation: fadein 0.6s ease 0.7s forwards;
}

.recruitCont04 .info_link a {
  position: relative;
  width: 400px;
}

.recruitCont04 .info_link a:before {
  content: "";
  width: 99%;
  height: 95%;
  display: block;
  margin: 0px;
  position: absolute;
  top: 5px;
  left: 4px;
}

.recruitCont04 .cont01 a {
  margin: 20px 20px 0;
  position: relative;
  z-index: 3;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  font-family: "Century Gothic", "sans-serif", "arial";
  padding: 46px 0;
  padding: 2.395833333vw 0;
  position: relative;
  z-index: 1;
  border: 1px solid #000;
  opacity: 0;
}

.recruitCont04.inview .cont01 a {
  -webkit-animation: fadein 0.6s ease 1.3s forwards;
  animation: fadein 0.6s ease 1.3s forwards;
}

.recruitCont04 .cont01 a:hover {
  color: #000;
}

.recruitCont04 .cont01 a:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.5s;
}

.recruitCont04 .cont01 a:hover:before {
  transform: scale(1, 1);
  transform-origin: left top;
}

.recruitCont,
.recruitCont02,
.recruitCont03,
.recruitCont04.inview, {
  position: relative;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  margin-bottom: 150px;
  height:400px;
}


.recruitCont04 .cont01 div a:after {
  display: none;
}
/* 画像縦横比調整  */
.info_fig .pc{
/*    height: 467px; */
    width: auto;
    object-fit: contain;
}
.info_fig .sp{
    width: auto;
    object-fit: contain;
}
/* PC size*/
@media (min-width: 769px) {
  .recruitCont,
  .recruitCont02,
  .recruitCont03{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .compCont04 .sp {
    display: none;
  }
}
/* スマホ size*/
@media (max-width: 768px) {
  .info_link .btn{
    width: 80%;
  }
  .recruitCont03{
     display: grid;
   }
  .info_fig{  order: 1; }
  .info_link{ order: 2; }
}


/* recruitCont 余白調整 */
.info_fig,.info_link{
  margin: 20px 25px 0px 25px;
}

.info_link .btn {
  -webkit-animation: fadein 0.6s ease 1s forwards;
  animation: fadein 0.6s ease 1s forwards;
}

.info_link p{
    font-size: 18px;
    text-shadow: 0px 0px 5px #212121a6;
    line-height: 1.5;
    font-weight: bold;
    margin: 15px 0px;
    padding: 15px;
  }
/* recruitCont 背景色 */
.info_link{
  background-color:#e6e6e6;
}


/*-----
インタビュー------------------------*/

.interviewvisual {
  font-family: Arial, Roboto, 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
  margin-bottom: 150px;
  margin-bottom: 7.8125vw;
}

.interviewvisual:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 1350px;
  height: 70.3125vw;
  display: inline-block;
  position: absolute;
  border-radius: 0 0 200% 200% /0 0 100% 100%;
  z-index: 1;
  opacity: 0.4;
}

.interviewvisual figure {
  padding-top: 225px;
  padding-top: 11.71875vw;
  width: 1820px;
  width: 94.79166667%;
  position: relative;
  z-index: 2;
}

.interviewvisual .title {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  bottom: 50px;
  bottom: 2.604166667vw;
}

.interviewvisual h2 {
  color: #fff;
  font-size: 110px;
  font-size: 5.729166667vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
  letter-spacing: -0.2rem;
}

.interviewvisual h2 span {
  display: inline;
  background: #000;
  padding-right: 10px;
  padding-right: 0.5208333333vw;
}

.interviewCont01 {
  font-family: Arial, Roboto, 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 1460px;
  width: 76.04166667%;
  margin: 0 auto 150px;
  margin-bottom: 7.8125vw;
}

.interviewCont01 .interviewfield {
  margin-bottom: 150px;
  margin-bottom: 7.8125vw;
}

.interviewCont01 .interviewfield h3 {
  text-align: center;
  font-size: 45px;
  font-size: 2.34375vw;
  letter-spacing: 1.8px;
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.interviewCont01 .interviewfield h3 span {
  display: block;
  font-size: 30px;
  font-size: 1.5625vw;
  letter-spacing: 2px;
  font-weight: normal;
  margin-bottom: 10px;
}

.interviewCont01 .interviewfield img {
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
}

.interviewCont01 .interviewfield h4 {
  margin-bottom: 60px;
  margin-bottom: 3.125vw;
  font-size: 40px;
  font-size: 2.083333333vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.interviewCont01 .interviewfield h4 span {
  background: #000;
  color: #fff;
  display: inline;
  padding: 0 4px;
  /* padding: 0 1.302083333vw; */
}

.interviewCont01 .interviewfield p {
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
  font-size: 27px;
  font-size: 1.40625vw;
  line-height: 2;
}

/*-----ウェルスペックで踊れ
about--------------------*/

.aboutvisual {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.aboutvisual:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 1450px;
  height: 75.52083333vw;
  display: inline-block;
  position: absolute;
  border-radius: 0 0 200% 200% /0 0 100% 100%;
  z-index: 1;
  opacity: 0.4;
}

.aboutvisual .area {
  position: relative;
  width: 1820px;
  width: 94.79166667%;
  margin: 0 auto;
  padding-top: 140px;
  /* padding-top: 13.02083333vw; */
  z-index: 2;
}

.aboutvisual h2 {
  margin-bottom: 50px;
  margin-bottom: 2.604166667vw;
}

.aboutvisual figure {
  margin-bottom: 150px;
  margin-bottom: 7.8125vw;
}

.aboutvisual p {
  text-align: center;
  font-size: 30px;
  font-size: 1.5625vw;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 230px;
  margin-bottom: 11.97916667vw;
}

.aboutvisual ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.aboutvisual ul li {
  margin: 0 70px 70px 0;
  margin: 0 3.645833333vw 3.645833333vw 0;
}

.aboutvisual ul li:nth-child(3) {
  margin-right: 0;
}

.aboutvisual ul li:nth-child(5) {
  margin-right: 0;
}

.aboutvisual ul li:nth-child(n + 5) {
  margin-bottom: 0;
}

.aboutvisual ul li a {
  display: flex;
  align-items: center;
}

.aboutvisual ul li a span {
  font-size: 35px;
  font-size: 1.822916667vw;
  font-weight: bold;
}

.aboutvisual ul li a span:first-child {
  margin-right: 30px;
  margin-right: 1.5625vw;
}

.aboutvisual ul li a span:last-child {
  width: 45px;
  width: 2.34375vw;
}

div.bg {
  background-image: url(../img/company/pc/bg03-min.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 180px;
  padding-top: 9.375vw;
  padding-bottom: 200px;
  padding-bottom: 10.41666667vw;
  opacity: 0;
}

div.bg.target {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.aboutCont01 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 1450px;
  width: 75.52083333%;
  margin: 0 auto 250px;
  margin-bottom: 13.02083333vw;
}

.aboutCont01 .target,
.aboutCont02 .target,
.aboutCont03 .target,
.aboutCont04 .target,
.aboutCont05 .target,
.aboutCont06 .target {
  opacity: 0;
}

.aboutCont01 .target.inview,
.aboutCont02 .target.inview,
.aboutCont03 .target.inview,
.aboutCont04 .target.inview,
.aboutCont05 .target.inview,
.aboutCont06 .target.inview {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.aboutCont01 h3 {
  width: 1230px;
  width: 64.0625vw;
  margin: 0 auto 120px;
  margin-bottom: 6.25vw;
}

.aboutCont01 figure {
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.aboutCont01 h4 {
  font-size: 35px;
  font-size: 1.822916667vw;
  margin-bottom: 70px;
  margin-bottom: 3.645833333vw;
}

.aboutCont01 p {
  font-size: 25px;
  font-size: 1.302083333vw;
  line-height: 2;
}

.aboutCont01 p span {
  display: inline-block;
  margin-bottom: 65px;
  margin-bottom: 3.385416667vw;
}

.aboutCont02 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 75.52083333%;
  margin: 0 auto 250px;
  margin-bottom: 13.02083333vw;
}

.aboutCont02 h3 {
  width: 1040px;
  width: 54.16666667vw;
  margin: 0 auto 120px;
  margin-bottom: 6.25vw;
}

.aboutCont02 .target {
  opacity: 0;
}

.aboutCont02 .target.inview {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.aboutCont02 figure {
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.aboutCont02 p {
  font-size: 25px;
  font-size: 1.302083333vw;
  line-height: 2;
}

.aboutCont02 p span {
  display: inline-block;
  margin-bottom: 65px;
  margin-bottom: 3.385416667vw;
}

.aboutCont03 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 75.52083333%;
  margin: 0 auto 250px;
  margin-bottom: 13.02083333vw;
}

.aboutCont03 h3 {
  width: 1290px;
  width: 67.1875vw;
  margin: 0 auto 120px;
  margin-bottom: 6.25vw;
}

.aboutCont03 figure {
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.aboutCont03 p {
  font-size: 25px;
  font-size: 1.302083333vw;
  line-height: 2;
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.aboutCont03 ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.aboutCont03 ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50%;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
  padding: 80px 0;
  padding: 4.166666667vw 0;
}

.aboutCont03 ul li:nth-child(2n) {
  border-right: 0;
}

.aboutCont03 ul li:nth-child(n + 3) {
  border-bottom: 0;
}

.aboutCont03 ul li:before {
  content: "";
  text-align: center;
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  position: absolute;
  right: -1px;
  bottom: -1px;
}

.aboutCont03 ul li:nth-child(2n):before {
  left: 0px;
}

.aboutCont03 ul li:nth-child(n + 3):before {
  top: 0px;
}

.aboutCont03 ul li p {
  font-size: 35px;
  font-size: 1.822916667vw;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 0;
}

.aboutCont04 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 75.52083333%;
  margin: 0 auto 250px;
  margin-bottom: 13.02083333vw;
}

.aboutCont04 h3 {
  width: 1740px;
  width: 90.625vw;
  margin: 0 calc(50% - 45vw) 120px;
  margin-bottom: 6.25vw;
}

.aboutCont04 figure {
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.aboutCont04 h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.aboutCont04 h4 span {
  font-size: 35px;
  font-size: 1.822916667vw;
  margin-right: 15px;
  margin-right: 0.78125vw;
}

.aboutCont04 h4 img {
  width: 350px;
  width: 18.22916667vw;
}

.aboutCont04 p {
  font-size: 25px;
  font-size: 1.302083vw;
  line-height: 2;
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.aboutCont04 div {
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 100px;
  margin-bottom: 5.208333333vw;
}

.aboutCont04 div.cont01 {
  background-image: url(../img/company/pc/bg01.svg);
}

.aboutCont04 div.cont02 {
  background-image: url(../img/company/pc/bg04.svg);
}

.aboutCont04 div.cont03 {
  background-image: url(../img/company/pc/bg01.svg);
}

.aboutCont04 div h5 {
  font-size: 35px;
  font-size: 1.822916667vw;
  text-align: center;
}

.aboutCont04 div p {
  margin-bottom: 0;
  padding: 60px 75px 75px 75px;
  padding: 3.125vw 3.90625vw 3.90625vw 3.90625vw;
}

.aboutCont04 div p.center {
  text-align: center;
  padding: 0;
  margin-bottom: 50px;
}

.aboutCont04 h6 {
  text-align: center;
  font-size: 35px;
  font-size: 1.822916667vw;
  letter-spacing: -1.3px;
}

.aboutCont05 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 75.52083333%;
  margin: 0 auto;
}

.aboutCont05 h3 {
  width: 1200px;
  width: 62.5vw;
  margin: 0 auto 120px;
  margin-bottom: 6.25vw;
}

.aboutCont05 figure {
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.aboutCont05 div {
  margin-bottom: 150px;
  margin-bottom: 7.8125vw;
}

.aboutCont05 div h4 {
  font-size: 35px;
  font-size: 1.822916667vw;
  margin-bottom: 70px;
  margin-bottom: 3.645833333vw;
}

.aboutCont05 div p {
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
  font-size: 25px;
  font-size: 1.302083vw;
  line-height: 2;
}

.aboutCont05 p {
  font-size: 25px;
  font-size: 1.302083vw;
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.aboutCont05 p span {
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
  display: inline-block;
}

.aboutCont06 {
  background: #000;
  padding: 200px 0;
  padding: 10.41666667vw 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  margin-bottom: 250px;
  margin-bottom: 13.02083333vw;
}

.aboutCont06 h3 {
  width: 1820px;
  width: 94.79166667%;
  margin: 0 auto 150px;
  margin-bottom: 7.8125vw;
}

.aboutCont06 table {
  width: 75.52083333%;
  margin: 0 auto;
}

.aboutCont06 table tbody tr th {
  line-height: 1.5;
  vertical-align: middle;
  padding-right: 60px;
  padding-right: 3.125vw;
  padding-bottom: 150px;
  padding-bottom: 7.8125vw;
}

.aboutCont06 table tbody tr:last-child th {
  padding-bottom: 0;
}

.aboutCont06 table tbody tr:first-child th img {
  width: 420px;
  width: 21.875vw;
  margin: 0 0 0 auto;
}

.aboutCont06 table tbody tr:nth-child(2) th img {
  width: 210px;
  width: 10.9375vw;
  margin: 0 0 0 auto;
  opacity: 0.9;
}

.aboutCont06 table tbody tr:nth-child(3) th img {
  width: 110px;
  width: 22.729167vw;
  margin: 0 0 0 auto;
  opacity: 0.9;
}

.aboutCont06 table tbody tr:nth-child(4) th img {
  width: 330px;
  width: 17.1875vw;
  margin: 0 0 0 auto;
  opacity: 0.9;
}

.aboutCont06 table tbody tr:last-child th img {
  width: 110px;
  /* width: 5.729166667vw; */
  width: 19.729167vw;
  margin: 0 0 0 auto;
}

.aboutCont06 table tbody tr td {
  color: #fff;
  padding-left: 60px;
  padding-left: 3.125vw;
  vertical-align: middle;
  font-size: 25px;
  font-size: 1.302083vw;
  line-height: 2;
  padding-bottom: 150px;
  padding-bottom: 7.8125vw;
}

.aboutCont06 table tbody tr:last-child td {
  padding-bottom: 0;
}

.aboutCont06 table tbody tr td span {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  font-size: 30px;
  font-size: 1.5625vw;
}

/*-----会社概要
------------------------------------*/

.compvisual {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
}

.compvisual:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 346px;
  /* height: 70.3125vw; */
  display: inline-block;
  position: absolute;
  z-index: 1;
  opacity: 0.4;
}

.compvisual:after {
  content: "";
  background-color: #fff;
  background-repeat: repeat;
  width: 100%;
  height: 95px;
  /* height: 70.3125vw; */
  display: inline-block;
  position: absolute;
  top: 317px;
  z-index: 2;
  transform: skewY(-3deg);
}

.compvisual .cont01 {
  padding-top: 240px;
  width: 75.52083333%;
  margin: 0 auto;
  /* margin-bottom: 15.625vw; */
}

.compvisual .cont01 h2 {
  text-align: center;
  font-size: 100px;
  letter-spacing: 25px;
  line-height: 1.2;
  margin-bottom: 230px;
  margin-bottom: 11.97916667vw;
  position: relative;
  z-index: 3;
}

.compvisual .cont01 h2 span {
  display: block;
  margin-bottom: 0;
}

.compvisual .cont01 h2 small {
  font-family: "Century Gothic", "sans-serif", "arial";
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 3px;
  color: #fff;
  background-color: #000;
  display: inline-block;
  padding: 2px 12px;
}

.compCont01 {
  width: 75.52083333%;
  margin: 0 auto 160px;
  margin-bottom: 3.5vw;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  opacity: 0;
  transform: translate(0, 50px) skewY(0);
  transition: all 0.8s;
}

.compCont01.inview {
  opacity: 1;
  transform: translate(0, 0) skewY(0);
}

.compCont01 h3 {
  /*margin-bottom: 50px;*/
  margin-bottom: 3.5vw;
  display: flex;
  align-items: center;
}

.compCont01 h3 strong {
  font-family: "Century Gothic", "sans-serif", "arial";
  margin-right: 50px;
  margin-right: 2.604166667vw;
  font-size: 24px;
  font-size: max(24px, 2vw);
  font-weight: bold;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  -webkit-text-fill-color: white;
}

.compCont01 h3 span {
  font-size: 25px;
  font-size: max(17px, 1.302083333vw);
  background-color: #000;
  color: #fff;
  padding: 3px 10px;
  font-weight: normal;
}

.compCont01 h4 {
  font-size: 24px;
  font-size: max(24px, 2vw);
  font-weight: bold;
  position: relative;
  right: 17px;
  right: 0.8854166667vw;
  letter-spacing: 2px;
  /* margin-bottom: 80px; */
  /* margin-bottom: 4.166666667vw; */
  margin-bottom: 10px; /* 58px */
}

.compCont01 p {
/*  font-size: 18px;*/
  font-size: max(18px, 1.5vw);
  line-height: 2;
}

.compCont01 p span {
  display: inline-block;
  /*margin-bottom: 60px;*/
  margin-bottom: 3.125vw;
}

.compCont01 p span:last-child {
  margin-bottom: 0px;
}

.compCont01 p.message{
  margin-bottom: 3.5vw; /* 140px */
  font-weight: 700;
}
.compCont01 p.message.message_large{
  font-size: max(24px, 2vw);
  line-height: 1.5;
  margin-bottom: 70px;
}

.compCont01 h5 {
  /* font-size: 45px; */
  /* font-size: max(22px, 2.34375vw); */
  font-size: 24px;
  font-size: max(24px, 2vw);
  font-weight: bold;
  position: relative;
  right: 30px;
  right: 1.5625vw;
  letter-spacing: 2px;
  /*margin-bottom: 70px;*/
  margin-bottom: 3.645833333vw;
}

.compCont01 ul{
  margin-bottom:  50px;
}
.compCont01 ul li {
  margin-left: 80px;
  margin-left: 4.166666667vw;
  margin-bottom: 50px;
  /*margin-bottom: 2.604166667vw;*/
  display: flex;
}

.compCont01 ul li:last-child {
  margin-bottom: 0;
}

.compCont01 ul li h6 {
  font-size: 24px;
  font-size: max(24px, 2vw);
  font-weight: bold;
  letter-spacing: 1.5px;
  position: relative;
  /*margin-bottom: 20px;*/
  margin-bottom: 1.041666667vw;
}

.compCont01 ul li span {
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  position: relative;
  top: -3px;
  margin-right: 20px;
  font-weight: bold;
}

.compCont01 ul li p {
  margin-bottom: 0;
}

.company_bg{
  margin-bottom: 3.5vw; /* 165px */
}

.company_bg img{
  aspect-ratio: 1920 / 664;
  object-fit: cover;
  max-height: 664px;
}
.company_bg02 img{
  object-position: 50% 30%;
}

.compCont02 {
  width: 79.42708333%;
  margin: 0 160px 160px 235px;
  margin: 0 8.333333333vw 8.333333333vw 12.23958333vw;
  opacity: 0;
  transform: translate(0, 50px) skewY(0);
  transition: all 0.8s;
}

.compCont02.inview {
  opacity: 1;
  transform: translate(0, 0) skewY(0);
}

.compCont02 h3 {
  margin-bottom: 55px;
  margin-bottom: 2.864583333vw;
  display: flex;
  align-items: center;
}

.compCont02 h3 strong {
  font-family: "Century Gothic", "sans-serif", "arial";
  margin-right: 50px;
  margin-right: 2.604166667vw;
  font-size: 24px;
  font-size: max(24px, 2vw);
  font-weight: bold;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  -webkit-text-fill-color: white;
}

.compCont02 h3 span {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  background-color: #000;
  color: #fff;
  padding: 3px 10px;
  font-weight: normal;
}

.compCont02 h4 {
  font-size: 24px;
  font-size: max(24px, 2vw);
  font-weight: bold;
  position: relative;
  right: 30px;
  right: 1.5625vw;
  letter-spacing: 2px;
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
}

.compCont02 p {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  line-height: 2;
  margin-bottom: 100px;
  margin-bottom: 5.208333333vw;
}

.compCont02 p span {
  display: inline-block;
  /*margin-bottom: 60px;*/
  margin-bottom: 3.125vw;
}

.compCont02 p span:last-child {
  margin-bottom: 0;
}

/* .compCont02 h5 {
  font-size: 45px;
  font-size: max(22px, 2.34375vw);
  font-weight: bold;
  position: relative;
  right: 30px;
  right: 1.5625vw;
  letter-spacing: 2px;
  margin-bottom: 70px;
  margin-bottom: 3.645833333vw;
} */

/* .compCont02 ul li {
  margin-left: 80px;
  margin-left: 4.166666667vw;
  margin-bottom: 50px;
  margin-bottom: 2.604166667vw;
  display: flex;
}

.compCont02 ul li:last-child {
  margin-bottom: 0;
}

.compCont02 ul li h6 {
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  font-weight: bold;
  letter-spacing: 1.5px;
  position: relative;
  margin-bottom: 20px;
  margin-bottom: 1.041666667vw;
}

.compCont02 ul li span {
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  position: relative;
  top: -3px;
  margin-right: 20px;
  font-weight: bold;
}

.compCont02 ul li p {
  margin-bottom: 0;
} */

.compCont03 {
  width: 75.52083333%;
  margin: 0 auto 300px;
  margin-bottom: 15.625vw;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  opacity: 0;
  transform: translate(0, 50px) skewY(0);
  transition: all 0.8s;
}

.compCont03.inview {
  opacity: 1;
  transform: translate(0, 0) skewY(0);
}

.compCont03 h3 {
  margin-bottom: 55px;
  margin-bottom: 2.864583333vw;
  display: flex;
  align-items: center;
}

.compCont03 h3 strong {
  font-family: "Century Gothic", "sans-serif", "arial";
  margin-right: 50px;
  margin-right: 2.604166667vw;
  font-size: 24px;
  font-size: max(24px, 2vw);
  font-weight: bold;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  -webkit-text-fill-color: white;
}

.compCont03 h3 span {
  font-size: 18px;
  /*font-size: 18px;*/
  font-size: max(18px, 1.5vw);
  background-color: #000;
  color: #fff;
  padding: 3px 10px;
  font-weight: normal;
}

.compCont03 h4 {
  font-size: 24px;
  font-size: max(24px, 2vw);
  font-weight: bold;
  position: relative;
  right: 10px;
  right: 0.5208333333vw;
  letter-spacing: 2px;
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
}

.compCont03 p {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  line-height: 2;
  margin-bottom: 100px;
  margin-bottom: 5.208333333vw;
}

.compCont03 h5 {
  font-size: 45px;
  font-size: max(22px, 2.34375vw);
  font-weight: bold;
  position: relative;
  right: 30px;
  right: 1.5625vw;
  letter-spacing: 2px;
  margin-bottom: 70px;
  margin-bottom: 3.645833333vw;
}

.compCont03 .cont05 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 80px;
  margin-left: 4.166666667vw;
}

.compCont03 div {
  width: 50%;
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  font-weight: bold;
  letter-spacing: 1.5px;
}

.compCont03 div:first-child,
.compCont03 div:nth-child(2) {
  margin-bottom: 100px;
  margin-bottom: 5.208333333vw;
}

.compCont03 div h6 {
  margin-bottom: 25px;
  margin-bottom: 1.302083333vw;
}

.compCont03 div ul li {
  font-size: 14px;
  font-size: max(14px, 1.5vw);
  line-height: 2;
  font-weight: normal;
}

.compCont03 div h6 span {
  margin-right: 20px;
}

.compCont04 {
  width: 75.52083333%;
  margin: 0 auto 300px;
  margin-bottom: 15.625vw;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  opacity: 0;
  transform: translate(0, 50px) skewY(0);
  transition: all 0.8s;
}

.compCont04.inview {
  opacity: 1;
  transform: translate(0, 0) skewY(0);
}

.compCont04 h3 {
  font-size: 35px;
  font-size: 1.822916667vw;
  margin-bottom: 100px;
  margin-bottom: 5.208333333vw;
}

.compCont04 table tbody tr {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  border-bottom: 1px solid #000;
}

.compCont04 table tbody tr:last-child {
  border-bottom: 0;
}

.compCont04 table tbody tr th {
  padding: 70px 0;
  padding: 3.645833vw 0;
  width: 440px;
  width: 22.91666667vw;
}

.compCont04 table tbody tr:first-child th {
  padding-top: 0;
}

.compCont04 table tbody tr:last-child th {
  padding-bottom: 0;
}

.compCont04 table tbody tr td {
  line-height: 2;
  padding: 70px 0 70px 165px;
  padding: 3.645833333vw 0 3.645833333vw 0vw;
  letter-spacing: 1px;
}

.compCont04 table tbody tr:first-child td {
  padding-top: 0;
}

.compCont04 table tbody tr:last-child td {
  display: flex;
  padding-bottom: 0;
}
.compCont04 table tbody .office td {
  display: flex;
  padding-bottom: 0;
}

.compCont04 table tbody tr td p {
  font-family: "Century Gothic", "sans-serif", "arial";
  font-size: 30px;
  font-size: 1.5625vw;
  font-weight: 500;
}

.compCont04 table tbody tr td p:first-child {
  margin-right: 120px;
  margin-right: 6.25vw;
}

.compCont04 table tbody tr td p span {
  display: block;
    font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1.3px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  font-weight: normal;
}

.compCont04 table tbody tr td p span:first-child {
  margin: 15px 0 10px 0;
  /*margin: 0.78125vw 0 0.5208333333vw 0;*/
}

.compCont04 .business_license a{
  display: inline;
}

/*-----求人詳細
--------------------------------*/

.detailmainvisual {
  margin-bottom: 300px;
  margin-bottom: 15.625vw;
}

.detailmainvisual:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 346px;
  /* height: 70.3125vw; */
  display: inline-block;
  position: absolute;
  z-index: 1;
  opacity: 0.4;
}

.detailmainvisual:after {
  content: "";
  background-color: #fff;
  background-repeat: repeat;
  width: 100%;
  height: 95px;
  /* height: 70.3125vw; */
  display: inline-block;
  position: absolute;
  top: 317px;
  z-index: 2;
  transform: skewY(-3deg);
}

.detailmainvisual .cont01 {
  padding-top: 240px;
  width: 1455px;
  width: 75.78125vw;
  margin: 0 auto;
}

.detailmainvisual .cont01 h2 {
  text-align: center;
  font-size: 100px;
  letter-spacing: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 3;
}

.detailmainvisual .cont01 h2 span {
  display: block;
  margin-bottom: 0;
}

.detailmainvisual .cont01 h2 small {
  font-family: "Century Gothic", "sans-serif", "arial";
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 3px;
  color: #fff;
  background-color: #000;
  display: inline-block;
  padding: 2px 12px;
}

.detailCont01 {
  width: 75.52083333%;
  margin: 0 auto 300px;
  margin-bottom: 15.625vw;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
}

.detailCont01 table tbody tr {
 font-size: 24px;
  opacity: 0;
  transform: translate(0, 50px) skewY(0);
  border-bottom: none;
  transition: all 0.8s;
  /* transition-delay: .3s; */
}

.detailCont01 table tbody tr.inview {
  opacity: 1;
  transform: translate(0, 0) skewY(0);
  border-bottom: 1px solid #000;
}

.detailCont01 table tbody tr:last-child {
  border-bottom: 0;
}

.detailCont01 table tbody tr th {
  padding: 70px 0;
  padding: 3.645833333vw 0px;
  width: 440px;
  width: 22.91666667vw;
}

.detailCont01 table tbody tr:first-child th {
  padding-top: 0;
}

.detailCont01 table tbody tr:last-child th {
  padding-bottom: 0;
}

.detailCont01 table tbody tr td {
  line-height: 2;
  letter-spacing: 1px;
  padding: 70px 0;
  padding: 3.645833333vw 0px;
}

.detailCont01 table tbody tr:first-child td {
  padding-top: 0;
}

.detailCont01 table tbody tr:last-child td {
  padding-bottom: 0;
}

.detailCont01 table tbody tr td h4 {
  font-size: 24px;
  margin-bottom: 60px;
  line-height: 2;
  margin-bottom: 3.125vw;
  letter-spacing: -1px;
}

.detailCont01 table tbody tr:nth-child(6) td h4 {
  font-weight: normal;
  margin-bottom: 15px;
  margin-bottom: 0.78125vw;
}

.detailCont01 table tbody tr td h4 span {
  margin: 0 -10px;
  margin: 0 -0.5208333333vw;
}

.detailCont01 table tbody tr td ul {
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.detailCont01 table tbody tr td ul:last-child {
  margin-bottom: 0px;
}

.detailCont01 table tbody tr td ul li {
  /* margin-bottom: 10px; */
  /* margin-bottom: 0.5208333333vw; */
  line-height: 2.2;
  letter-spacing: 0.5px;
}

.detailCont01 table tbody tr td ul li:last-child {
  margin-bottom: 0;
  line-height: 2;
}

.detailCont01 table tbody tr td ul li h5 {
  font-weight: normal;
  margin-bottom: 15px;
  margin-bottom: 0.78125vw;
}

.detailCont01 table tbody tr td div {
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
  margin-bottom: 60px;
  margin-bottom: 3.125vw;
}

.detailCont01 table tbody tr td div:last-child {
  margin-bottom: 0;
}

.detailCont01 table tbody tr td div h5 {
  font-weight: normal;
  margin-bottom: 20px;
  margin-bottom: 1.041666667vw;
}

.detailCont01 table tbody tr td div p span {
  display: block;
  margin-bottom: 0;
}

.detailCont01 table tbody tr td p {
  line-height: 2.2;
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
  margin-bottom: 60px;
  margin-bottom: 3.125vw;
}

.detailCont01 table tbody tr td p:last-child {
  margin-bottom: 0;
}

.detailCont01 table tbody tr td p span {
  display: block;
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
  margin-bottom: 60px;
  margin-bottom: 3.125vw;
}

/*-----エントリー
------------------------*/

.entryCont01 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
  opacity: 1;
}

.entryCont01:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 290px;
  height: max(250px, 15.10416667vw);
  display: inline-block;
  position: absolute;
  z-index: 1;
  opacity: 0.4;
}

.entryCont01:after {
  content: "";
  background-color: #fff;
  background-repeat: repeat;
  width: 100%;
  height: 95px;
  height: 15.10416667vw;
  display: inline-block;
  position: absolute;
  top: 265px;
  top: max(233px, 13.80208333vw);
  z-index: 2;
  transform: skewY(-3deg);
}

.entryCont01 .cont01 {
  padding-top: 200px;
  padding-top: max(170px, 10.41666667vw);
  width: 1000px;
  max-width: 95%;
  margin: 0 auto;
}

.entryCont01 h2 {
  text-align: center;
  font-size: 100px;
  font-size: max(75px, 5.208333vw);
  letter-spacing: 20px;
  letter-spacing: 1.041666667vw;
  line-height: 1.2;
  margin-bottom: 100px;
  margin-bottom: max(50px, 5.208333333vw);
  position: relative;
  z-index: 3;
}

.entryCont01 h2 small {
  font-family: "Century Gothic", "sans-serif", "arial";
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 3px;
  color: #fff;
  background-color: #000;
  display: inline-block;
  padding: 2px 12px;
}

.entryCont01 h2 span {
  display: block;
  margin-bottom: 0;
}

.entryCont01 .cont01 p {
  font-size: 18px;
  /* font-size: max(15px, 0.9375vw); */
  letter-spacing: 1.3px;
  line-height: 2.2;
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
  position: relative;
  z-index: 3;
}

.entryCont01 .cont01 p a {
  display: inline;
  color: #b51010;
}

.entryCont01 p strong {
  margin-right: 45px;
}

.entryCont01 p small {
  color: #b51010;
}

.entryCont01 .cont02 {
  display: flex;
  justify-content: flex-start;
  /* background-color: #000; */
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.entryCont01 .cont02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 20px 0;
  /* padding: max(15px, 1.302083333vw) 0; */
  width: 270px;
  /* width: max(240px, 14.0625vw); */
  background-color: #000;
}

.entryCont01 .cont02 a img {
  width: 25px;
  /* width: max(15px, 1.302083333vw); */
  margin-right: 25px;
  /* margin-right: max(10px, 1.302083333vw); */
}

.entryCont01 .cont02 a p {
  margin-bottom: 0;
  font-size: 16px;
  /* font-size: max(14px, 0.8333333333vw); */
  letter-spacing: 0.15625vw;
}

.entryCont01 .cont03 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 1000px;
  max-width: 95%;
  margin: 0 auto;
}

.entryCont01 .cont03 h3 {
  font-size: 30px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.entryCont01 .cont03 ul {
  display: flex;
}

.entryCont01 .cont03 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0f0f0;
  margin-right: 20px;
  padding: 15px;
}

.entryCont01 .cont03 ul li:last-child {
  flex-direction: unset;
  align-items: unset;
  margin-right: 0;
}

.entryCont01 .cont03 ul li span {
  text-align: center;
  /* flex-grow: 1; */
}

.entryCont01 .cont03 ul li span:first-child {
  font-family: "Century Gothic", "sans-serif", "arial";
  font-size: 40px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  -webkit-text-fill-color: #fff;
  margin-bottom: 15px;
}

.entryCont01 .cont03 ul li span:last-child {
  font-size: 16px;
  font-size: max(14px, 0.8333333333vw);
  margin: 0;
}

.entryCont01 .cont03 ul li .cont04 {
  display: flex;
  flex-direction: column;
  margin-right: 15px;
}

.entryCont01 .cont03 ul li .cont05 ul {
  flex-direction: column;
}

.entryCont01 .cont03 ul li .cont05 ul li {
  padding: 15px;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: unset;
  font-size: 16px;
  line-height: 1.2;
  background-color: #fff;
}

.entryCont01 .cont03 ul li .cont05 ul li:last-child {
  margin-bottom: 0;
}

.entryCont01 .cont03 ul li .cont05 ul li span {
  text-align: left;
  font-size: 18px;
  font-size: max(16px, 0.9375vw);
  -webkit-text-stroke-width: unset;
  -webkit-text-stroke-color: transparent;
  -webkit-text-fill-color: #000;
  margin: 0 10px 0 0;
}

.entryCont01 .cont03 ul li .cont05 ul li:first-child span:last-child {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-size: max(14px, 0.8333333333vw);
  line-height: 1.5;
}

.entryCont01 .cont03 ul li .cont05 ul li small {
  display: block;
  font-size: 11px;
}

.entryCont02 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 1000px;
  max-width: 95%;
  margin: 0 auto 90px;
  margin-bottom: 4.6875vw;
}

.entryCont02 h3 {
  font-size: 30px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border-bottom: 1px solid #000;
}

.entryCont02 ul li {
  display: flex;
  flex-direction: column;
}

.entryCont02 ul li:nth-child(2),
.entryCont02 ul li:nth-child(4),
.entryCont02 ul li:nth-child(5),
.entryCont02 ul li:nth-child(6),
.entryCont02 ul li:nth-child(7),
.entryCont02 ul li:nth-child(8) {
}

.entryCont02 ul li:nth-child(6) {
  flex-direction: unset;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border-bottom: 1px solid #000;
}

.entryCont02 ul li:nth-child(8) {
/*  margin-bottom: 40px;*/
}

.entryCont02 ul li:nth-child(8) div {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
  align-items: flex-start;
  margin-bottom: 20px;
}

.entryCont02 ul li > div {
  /* padding-right: 50px; */
  /* padding-right: 2.604166667vw; */
  font-size: 20px;
  letter-spacing: 1.3px;
  box-sizing: content-box;
}

.entryCont02 ul li div:last-child {
  padding-right: 0;
}

.entryCont02 ul li div div {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
  flex-direction: column;
}

.entryCont02 ul li:nth-child(4) div div p:first-child,
.entryCont02 ul li:nth-child(4) div div p:nth-child(2) {
  width: 100%;
  justify-content: flex-start;
}

.entryCont02 ul li div p small {
  color: #b51010;
  margin-right: 10px;
  position: absolute;
  right: 0;
}

.entryCont02 ul li div p {
  font-size: 16px;
  /* font-size: max(14px, 0.8333333333vw); */
}

.entryCont02 ul li:nth-child(2) div p:nth-child(2) {
  width: 72%;
}

.entryCont02 ul li div p:first-child {
  font-weight: bold;
  width: 21%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.entryCont02 ul li:nth-child(7) div p:first-child {
  /* margin-right: 54px; */
}

.entryCont02 ul li:nth-child(7) div p:nth-child(2) {
  width: 72%;
}

.entryCont02 ul li:nth-child(6) div p:first-child {
  width: 100%;
}

.entryCont02 ul li div p:first-child span {
  margin-right: 54px;
}

.entryCont02 ul li:nth-child(4) div div:nth-child(2) p span,
.entryCont02 ul li:nth-child(5) div div:nth-child(2) p span {
  margin-right: 0px;
}

.entryCont02 ul li:nth-child(4) div div:nth-child(2) p span span {
  margin-right: 15px;
}

.entryCont02 ul li div {
  position: relative;
  box-sizing: border-box;
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border-bottom: 1px solid #000;
  justify-content: center;
  align-items: center;
}

.entryCont02 ul li:nth-child(5) div,
.entryCont02 ul li:nth-child(6) div {
  align-items: flex-start;
}

.entryCont02 ul li:nth-child(6) div {
  justify-content: flex-end;
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.entryCont02 ul li:nth-child(5) div div {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
  width: 72%;
  justify-content: flex-start;
}

.entryCont02 ul li:nth-child(5) div div:nth-child(2) p:last-child {
}

.entryCont02 ul li div input {
  border: 1px solid #000;
  background-image: none !important;
  padding: 0 25px 15px 25px;
  font-size: 18px;
  /* font-size: max(15px, 0.9375vw); */
  font-weight: bold;
  letter-spacing: 1.3px;
  vertical-align: unset;
  border-radius: 5px;
}

.entryCont02 ul li:nth-child(4) div:last-child div {
  width: 72%;
}

.entryCont02 ul li:nth-child(5) div:last-child > p {
  flex-direction: column;
  width: auto;
  align-items: flex-start;
}

.entryCont02 ul li:nth-child(4) div:last-child > p,
.entryCont02 ul li:nth-child(5) div:last-child > p {
  display: flex;
  letter-spacing: 1.3px;
  margin-bottom: 0;
  line-height: 1.8;
}

.entryCont02 ul li:nth-child(4) div:last-child > span,
.entryCont02 ul li:nth-child(5) div:last-child > span {
  padding-right: 40px;
  margin: 0 !important;
}

.entryCont02 ul li:nth-child(4) div:last-child > span:nth-child(2),
.entryCont02 ul li:nth-child(5) div:last-child > span:nth-child(3) {
  padding-right: 0px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin: 0 !important;
}

.entryCont02 input[type="radio"] {
  appearance: none;
  display: none;
}

.entryCont02 input[type="radio"] + span {
  position: relative;
  display: flex;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 30px;
  align-items: center;
}

.entryCont02 p:first-child input[type="radio"] + span {
  margin-right: 0;
}

.entryCont02 input[type="radio"] + span:before {
  /* font-family: "Font Awesome 5 Free"; */
  font-size: 20px;
  content: "◯";
  display: inline-block;
  margin-right: 0.5em;
  font-weight: 400;
  color: #000;
}

.entryCont02 input[type="radio"]:checked + span:before {
  content: "◉";
  font-weight: 400;
}

.entryCont02 ul li:nth-child(6) div:last-child {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.entryCont02 ul li:last-child div:last-child {
  width: calc(100% - 220px);
}

.entryCont02 ul li:nth-child(6) div:last-child div {
  /* display: flex; */
  /* flex-wrap: wrap; */
  border: none;
  padding-bottom: 0;
  flex-direction: unset;
  justify-content: flex-start;
  margin-bottom: 20px;
  width: 100%;
}

.entryCont02 ul li:nth-child(6) div:last-child div div .cont05,
.entryCont02 ul li:nth-child(6) div:last-child div div .cont06 {
  line-height: 2;
}

.entryCont02 ul li:nth-child(6) div:last-child .cont01 {
  /* margin-right: 4%; */
}

.entryCont02 ul li:nth-child(6) div:last-child .cont01,
.entryCont02 ul li:nth-child(6) div:last-child .cont02 {
}

.entryCont02 ul li:nth-child(6) div:last-child div p {
  /* padding-right: 35px; */
  font-size: 16px;
  letter-spacing: 1.3px;
  box-sizing: content-box;
  font-weight: bold;
  justify-content: flex-start;
  width: 23%;
}

.entryCont02 ul li:nth-child(6) div:last-child div p:nth-child(2) {
  width: 37%;
  margin-right: 3%;
}

.entryCont02 ul li:nth-child(6) div:last-child div p:nth-child(3) {
}

.entryCont02 ul li:nth-child(6) div:last-child div p:nth-child(4) {
  width: 23%;
}

.entryCont02 ul li:nth-child(6) div:last-child .cont01 p:first-child:after {
  content: "*";
  color: #b51010;
}

.entryCont02 ul li:nth-child(6) div:last-child .cont05 p:first-child:after {
  display: none;
}

.entryCont02 ul li div:last-child select {
  border: 2px solid #dcd7ca;
  font-size: 18px;
  /* font-size: max(14px, 0.9375vw); */
  letter-spacing: 1.3px;
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
  z-index: 2;
  background-color: transparent;
  padding: 5px 25px 20px 25px;
  border: 1px solid #000;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border-width: 0.1rem;
  max-width: 100%;
  width: 29%;
}

.entryCont02 ul li:nth-child(6) div:last-child select {
  font-size: 14px;
  /* font-size: max(14px, 0.9375vw); */
  width: 100%;
  padding: 5px;
  text-align: center;
}

.entryCont02 ul li:nth-child(6) div:last-child input {
  /* border: none; */
  /* border-bottom: 1px solid #000; */
  padding: 0 25px 20px 25px;
  padding: 5px;
  /* width: 60%; */
  /* width: 13.54166667vw; */
  margin-right: 0;
  font-size: 14px;
  /* font-size: max(14px, 0.9375vw); */
  letter-spacing: 1.3px;
  box-sizing: border-box;
  font-weight: bold;
}

.entryCont02 ul li div:last-child textarea {
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 18px;
  padding: 0 25px 15px 25px;
}

#ui-datepicker-div {
  z-index: 2 !important;
}

td.ui-datepicker-week-end:first-child a.ui-state-default {
  background-color: #ffecec;
  color: #f00 !important;
}

td.ui-datepicker-week-end:last-child a.ui-state-default {
  background-color: #eaeaff;
  color: #00f !important;
}

td.ui-datepicker-week-end a.ui-state-hover {
  opacity: 0.8;
}

td.ui-datepicker-week-end a.ui-state-highlight {
  background-color: #fffa90 !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: transparent !important;
}

.entryCont02 .cont04 {
  display: flex;
  justify-content: center;
}

.entryCont02 .cont04 p button {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 20px 0;
  font-size: 16px;
  letter-spacing: 3px;
  text-decoration: none;
  background-color: #000;
}

.entryCont02 .cont04 p button.confirm {
  width: 270px;
}

.entryCont02 .cont04 p button.back {
  width: 150px;
  margin-right: 100px;
}

.entryCont02 .cont04 p button.complete {
  width: 270px;
}

.entryCont02 .cont04 p img {
  width: 40px;
  margin-left: 15px;
}

.entryComplete {
  padding-top: 300px;
  margin-bottom: 300px;
}

.entryComplete p {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  text-align: center;
  font-size: 18px;
  line-height: 2;
}

.entryComfirm {
  padding-top: 260px;
}

.entryComfirm .entryCont02 ul li:nth-child(2) div p:nth-child(2) {
  width: 66%;
}

.entryComfirm .entryCont02 ul li div {
  justify-content: flex-start;
}

.entryComfirm .entryCont02 ul li:nth-child(6) div:last-child div {
  width: 100%;
}

.entryCont03 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 1000px;
  max-width: 95%;
  margin: 0 auto;
  text-align: center;
}

.entryCont03 .cont01 {
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.entryCont03 .cont01 p {
  font-size: 18px;
  font-size: max(16px, 0.9375vw);
  margin-bottom: 20px;
}

.entryCont03 .cont01 p strong {
  font-family: "Century Gothic", "sans-serif", "arial";
  font-size: 35px;
  font-size: max(28px, 1.822916667vw);
  margin-right: 20px;
}

.entryCont03 .cont01 p span {
}

.entryCont03 .cont01 p small {
  font-size: 14px;
  font-size: max(12px, 0.7291666667vw);
}

.entryCont03 .cont02 {
  width: 60%;
  margin: 0 auto 90px;
  margin-bottom: 4.6875vw;
  padding: 30px 0;
  background-color: #f8f8f8;
}

.entryCont03 .cont02 a {
}

.entryCont03 .cont02 a p {
  font-size: 20px;
  /*font-size: max(16px, 1.041666667vw);*/
  font-weight: bold;
  line-height: 2;
}

/*------お問い合わせ
--------------------------------------------*/

.contactCont01 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
}

.contactCont01:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 290px;
  height: max(250px, 15.10416667vw);
  display: inline-block;
  position: absolute;
  z-index: 1;
  opacity: 0.4;
}

.contactCont01:after {
  content: "";
  background-color: #fff;
  background-repeat: repeat;
  width: 100%;
  height: 95px;
  height: 15.10416667vw;
  display: inline-block;
  position: absolute;
  top: 265px;
  top: max(233px, 13.80208333vw);
  z-index: 2;
  transform: skewY(-3deg);
}

.contactCont01 .cont01 {
  padding-top: 200px;
  padding-top: max(170px, 10.41666667vw);
  width: 1000px;
  max-width: 95%;
  margin: 0 auto;
}

.contactCont01 .cont01 h2 {
  text-align: center;
  font-size: 100px;
  font-size: max(75px, 5.208333vw);
  letter-spacing: 20px;
  letter-spacing: 1.041666667vw;
  line-height: 1.2;
  margin-bottom: 100px;
  margin-bottom: max(50px, 5.208333333vw);
  position: relative;
  z-index: 3;
}

.contactCont01 .cont01 h2 span {
  display: block;
  margin-bottom: 0;
}

.contactCont01 .cont01 h2 small {
  font-family: "Century Gothic", "sans-serif", "arial";
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 3px;
  color: #fff;
  background-color: #000;
  display: inline-block;
  padding: 2px 12px;
}

.contactCont01 .cont01 p {
  font-size: 18px;
  /* font-size: max(15px, 0.9375vw); */
  letter-spacing: 1.3px;
  line-height: 2.2;
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
  position: relative;
  z-index: 3;
}

.contactCont01 .cont01 p strong {
  display: flex;
}

.contactCont01 .cont01 p small {
  color: #b51010;
  display: block;
}

.contactCont01 .cont01 .cont02 {
  display: inline-block;
  background-color: #000;
}

.contactCont01 .cont01 .cont02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 20px 0;
  /* padding: max(15px, 1.302083333vw) 0; */
  width: 290px;
  /* width: max(240px, 14.0625vw); */
}

.contactCont01 .cont01 .cont02 a img {
  width: 25px;
  /* width: max(15px, 1.302083333vw); */
  margin-right: 25px;
  /* margin-right: max(10px, 1.302083333vw); */
}

.contactCont01 .cont01 .cont02 a p {
  margin-bottom: 0;
  font-size: 16px;
  /* font-size: max(14px, 0.8333333333vw); */
  letter-spacing: 0.15625vw;
}

.contactCont02 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  width: 1000px;
  max-width: 95%;
  margin: 0 auto 300px;
  margin-bottom: 15.625vw;
}

.contactCont02 ul li {
  display: flex;
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
}

.contactCont02 ul li:first-child {
  width: 47.5%;
}

.contactCont02 ul li > div {
  padding-right: 50px;
  padding-right: 2.604166667vw;
}

.contactCont02 ul li:first-child > div {
  padding-right: 0;
}

.contactCont02 ul li div {
  position: relative;
  box-sizing: border-box;
}

.contactCont02 ul li div p {
  font-size: 16px;
  /* font-size: max(14px, 0.8333333333vw);*/
}

.contactCont02 ul li div p:first-child {
  font-weight: bold;
  margin-bottom: 25px;
  margin-bottom: max(10px, 1.302083333vw);
}

.contactCont02 ul li:nth-child(2) div:last-child {
  padding-right: 140px;
  padding-right: 7.291666667vw;
}

.contactCont02 ul li:nth-child(2) div:last-child {
  padding-right: 0;
}

.contactCont02 ul li:nth-child(3) div:last-child {
  padding-right: 70px;
  padding-right: 3.645833333vw;
}

.contactCont02 ul li:nth-child(3) div:last-child {
  padding-right: 0;
}

.contactCont02 ul li:last-child div:last-child {
  /* width: calc(100% - 206px); */
  width: 100%;
  padding-right: 0;
}

.contactCont02 ul li div input {
  border: none;
  border-bottom: 1px solid #000;
  background-image: none !important;
  padding: 0 25px 15px 25px;
  font-size: 18px;
  /* font-size: max(15px, 0.9375vw); */
  font-weight: bold;
  letter-spacing: 1.3px;
  vertical-align: unset;
}

.contactCont02 ul li div small {
  color: #b51010;
}

.contactCont02 ul li div:last-child textarea {
  border: none;
  border-bottom: 1px solid #000;
  padding: 0;
  /* height: 300px; */
  font-size: 20px;
  width: 100%;
}

.contactCont02 .cont03 {
  display: flex;
  justify-content: center;
}

.contactCont02 .cont03 p button {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 20px 0;
  font-size: 16px;
  letter-spacing: 3px;
  text-decoration: none;
  background-color: #000;
}

.contactCont02 .cont03 p button.contactconfirm {
  width: 270px;
}

.contactCont02 .cont03 p button.contactcomplete {
  width: 270px;
}

.contactCont02 .cont03 p button.contactback {
  width: 150px;
  margin-right: 100px;
}

.contactCont02 .cont03 p img {
  width: 40px;
  margin-left: 15px;
}

.contactComfirm {
  /* padding-top: 300px; */
  padding-top: 260px;
  /* padding-top: max(170px, 10.41666667vw); */
}

.contactComplete {
  padding-top: 300px;
  margin-bottom: 300px;
}

.contactComplete p {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  text-align: center;
  font-size: 18px;
  line-height: 2;
}

/*----question---*/

.quesvisual {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  margin-bottom: 500px;
  margin-bottom: max(290px, 26.04166667vw);
}

.quesvisual:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 900px;
  height: max(750px, 46.875vw);
  display: inline-block;
  position: absolute;
  border-radius: 0 0 200% 200% /0 0 100% 100%;
  z-index: 1;
  opacity: 0.4;
}

.quesvisual .cont01 {
  padding-top: 140px;
  /* width: 1450px; */
  /* width: 75.52083333vw; */
  margin: 0 auto;
  width: 1450px;
  max-width: 85%;
  position: relative;
}

.quesvisual .cont01 h2 {
  width: 1450px;
  width: 70%;
  margin: 0 auto 100px;
  margin-bottom: 5.208333333vw;
  position: relative;
  z-index: 2;
}

.quesvisual .cont02 {
  position: relative;
  z-index: 2;
}

.quesvisual .cont02 p {
  text-align: center;
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.8;
}

.quesvisual .cont02 p span {
  display: block;
  margin-bottom: 50px;
  margin-bottom: 2.604166667vw;
}

.quesvisual .cont02 p span:last-child {
  margin-bottom: 0;
}

.questionbg {
  background-image: url(../img/question/pc/bg02.png);
  background-size: contain;
  /* background-position: top; */
  background-repeat: repeat;
}

.quesCont01 {
  position: relative;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  margin-bottom: 300px;
  margin-bottom: 15.625vw;
}

.quesCont01 .target {
  opacity: 0;
}

.quesCont01 .target.inview {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.quesCont01 .target > div {
  opacity: 0;
}

.quesCont01 .target.inview > div {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.quesCont01 .target.inview > div:nth-child(2) {
  animation-delay: 0.4s;
}

.quesCont01 .target.inview > div:nth-child(3) {
  animation-delay: 0.8s;
}

.quesCont01 .target.inview > div:nth-child(4) {
  animation-delay: 1.2s;
}

.quesCont01 h3 {
  width: 670px;
  width: max(230px, 34.89583333vw);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.quesCont01 figure {
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.quesCont01 p {
  text-align: center;
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  line-height: 2;
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.quesCont01 .s_01 {
  width: 1150px;
  max-width: 90%;
  margin: 0 auto;
}

.quesCont01 .s_01 .accordion {
  margin-bottom: 40px;
}

.quesCont01 .s_01 .accordion.last {
  margin-bottom: 0;
}

.quesCont01 .s_01 .accordion .accordion_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
}

.quesCont01 .s_01 .accordion .accordion_header.open {
  margin-bottom: 40px;
}

.quesCont01 .s_01 .accordion .accordion_header div span {
  font-size: 32px;
  font-size: max(23px, 1.666666667vw);
  font-weight: bold;
  margin-right: 15px;
}

.quesCont01 .s_01 .accordion .accordion_header span.icon {
  width: 80px;
  width: max(65px, 4.166666667vw);
  animation: slide 1s ease-in-out 0s infinite forwards;
  position: absolute;
  z-index: 3;
  left: -26px;
}

@keyframes slide {
  0% {
    transform: translate(0, 0) skewX(0);
  }
  50% {
    transform: translate(5px, 0) skewX(0);
  }
  51% {
    transform: translate(5px, 0) skewX(0);
  }
  100% {
    transform: translate(0, 0) skewX(0);
  }
}

.quesCont01 .s_01 .accordion .accordion_header div {
  display: flex;
  align-items: center;
  border: 2px solid #000;
  border-radius: 190px;
  padding: 35px 25px 35px 75px;
  padding: max(20px, 1.822916667vw) max(20px, 1.302083333vw) max(20px, 1.822916667vw) max(60px, 3.90625vw);
  line-height: 1.5;
  box-shadow: 2px 4px #000;
  transition: all 0.3s;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.quesCont01 .s_01 .accordion .accordion_header div:hover {
  box-shadow: none;
  background: #fff;
  transform: translate3d(0, 5px, 0);
}

.quesCont01 .s_01 .accordion .accordion_header div img {
  width: 30px;
  width: max(25px, 1.5625vw);
}

.quesCont01 .s_01 .accordion .accordion_inner {
  display: none;
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac {
  width: 100%;
  display: flex;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 4px #000;
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac:before {
  content: "";
  background-image: url(../img/question/pc/bg01.png);
  background-repeat: repeat;
  display: inline-block;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac:after {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac li {
  font-size: max(18px, 1.25vw);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 1.5px;
  position: relative;
  width: calc(100% - 100px);
  z-index: 2;
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac li strong {
  background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255, 120, 100) 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, rgb(255, 120, 100) 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, rgb(255, 120, 100) 50%);
  background-image: -o-linear-gradient(left, transparent 50%, rgb(255, 120, 100) 50%);
  background-image: linear-gradient(left, transparent 50%, rgb(255, 120, 100) 50%);
  background-repeat: repeat-x;
  background-size: 200% 0.8em;
  background-position: 0 0.8em;
  transition: all 1.5s ease;
  font-weight: bold;
}

.quesCont01 .s_01 .accordion .accordion_inner.open .box_one ul.txt_a_ac li strong {
  background-position: -100% 0.8em;
}

.quesCont01 .s_01 .accordion .accordion_inner.open .box_one ul.txt_a_ac li span {
  display: block;
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac li a {
  display: inline-block;
  text-decoration: solid;
  font-weight: bold;
  color: #ff7864;
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac li:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100px;
  margin-right: 50px;
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac li:first-child span {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  font-weight: bold;
  line-height: 1.5;
  margin: 0 calc(50% - 50vw);
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac li:first-child span small {
  font-size: 19px;
  font-size: max(14px, 0.9895833333vw);
  letter-spacing: 0.5px;
}

.quesCont01 .s_01 .accordion .accordion_inner .box_one ul.txt_a_ac li img {
  margin-bottom: 20px;
}

.questionCont02 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  /* width: 1450px; */
  /* max-width: 90%; */
  margin: 0 auto 150px;
  margin-bottom: max(100px, 7.8125vw);
}

.questionCont02 .cont01 {
  /* width: 1450px; */
  /* max-width: 85%; */
  margin: 0 auto 150px;
  margin-bottom: max(100px, 7.8125vw);
}

.questionCont02 .target .cont01 figure {
  opacity: 0;
}

.questionCont02 .target.inview .cont01 figure {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.questionCont02 .target .cont01 h3 {
  opacity: 0;
}

.questionCont02 .target.inview .cont01 h3 {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.questionCont02 .target .cont01 p {
  opacity: 0;
}

.questionCont02 .target.inview .cont01 p {
  -webkit-animation: fadein 0.6s ease 0.8s forwards;
  animation: fadein 0.6s ease 0.8s forwards;
}

.questionCont02 .cont01 figure {
  margin: 0 calc(50% - 50vw) 140px;
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.questionCont02 .cont01 h3 {
  font-family: Arial, Roboto, 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  font-size: 90px;
  font-size: max(45px, 4.6875vw);
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.questionCont02 .cont01 h3 span {
  margin: 0 20px;
  margin: 0 max(10px, 1.041666667vw);
}

.questionCont02 .cont01 p {
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  line-height: 2.5;
  text-align: center;
}

.questionCont02 .cont02 {
  /* width: 1450px; */
  /* max-width: 85%; */
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.questionCont02 .target .cont02 {
  opacity: 0;
}

.questionCont02 .target.inview .cont02 {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.questionCont02 .cont02 h3 {
  display: grid;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.questionCont02 .cont02 h3 .line {
  -webkit-transform: skewX(155deg);
  -moz-transform: skewX(155deg);
  transform: skewX(155deg);
  border: 2px solid #000;
  padding: 10px 0;
  box-shadow: 5px 4px #000;
  margin-bottom: 40px;
}

.questionCont02 .cont02 h3 small {
  font-size: 20px;
  /*font-size: max(15px, 1.041666667vw);*/
  letter-spacing: 1.5px;
  -webkit-transform: skewX(-155deg);
  -moz-transform: skewX(-155deg);
  transform: skewX(-155deg);
  font-weight: bold;
}

.questionCont02 .cont02 h3 div {
  font-family: Arial, Roboto, 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.questionCont02 .cont02 h3 span {
  font-size: 65px;
  font-size: max(50px, 3.385416667vw);
  margin-right: 20px;
  margin-right: max(10px, 1.041666667vw);
}

.questionCont02 .cont02 h3 span:nth-child(2) {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  position: relative;
  top: 6px;
  top: 0.3125vw;
}

.questionCont02 .cont02 h3 span:nth-child(3) {
  margin-right: 20px;
  margin-right: max(10px, 1.041666667vw);
}

.questionCont02 .cont02 h3 img {
  width: 60px;
  width: max(45px, 3.125vw);
}

.questionCont02 .cont03 {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.questionCont02 .cont03 .line {
  position: relative;
  left: 25px;
  left: 1.302083333vw;
  margin-bottom: 60px;
  margin-bottom: max(40px, 3.125vw);
  /* padding: 15px 25px; */
  /* box-sizing: content-box; */
  display: inline-block;
}

.questionCont02 .target .cont03 .line {
  opacity: 0;
}

.questionCont02 .target.inview .cont03 .line {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.questionCont02 .cont03 .line:before {
  content: "";
  -webkit-transform: skewX(155deg);
  -moz-transform: skewX(155deg);
  transform: skewX(155deg);
  background-image: url(../img/question/pc/bg01.png);
  background-repeat: repeat;
  /* padding: 15px 30px; */
  /* padding: max(10px, 0.78125vw) max(20px, 1.5625vw); */
  box-sizing: border-box;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
}

.questionCont02 .cont03 .line h4 {
  display: inline-block;
  font-size: 24px;
  font-size: max(24px, 2vw);
  padding: 15px 30px;
  padding: max(10px, 0.78125vw) max(20px, 1.5625vw);
  font-family: Arial, Roboto, 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.questionCont02 .cont03 .cont09 {
  display: flex;
  margin-bottom: 150px;
  margin-bottom: max(100px, 7.8125vw);
}

.questionCont02 .target .cont03 .cont09 {
  opacity: 0;
}

.questionCont02 .target.inview .cont03 .cont09 {
  -webkit-animation: fadein 0.6s ease 0.8s forwards;
  animation: fadein 0.6s ease 0.8s forwards;
}

.questionCont02 .target.inview .cont03 .cont09 div {
  width: 47%;
}

.questionCont02 .cont03 .cont04 {
  margin-right: 6%;
}

.questionCont02 .cont03 div h5 {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-size: max(24px, 2vw);
  padding: 6px 15px;
  padding: max(5px, 0.3125vw) max(10px, 0.78125vw);
  margin-bottom: 40px;
  font-family: Arial, Roboto, 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.questionCont02 .cont03 .cont04 h5 {
  background-color: #ff4738;
}

.questionCont02 .cont03 div ul li {
  font-size: 28px;
  font-size: max(19px, 1.458333333vw);
  font-weight: bold;
  line-height: 2.5;
}

.questionCont02 .cont03 .cont05 h5 {
  background-color: #4533da;
}

.questionCont02 .cont03 div ul li span {
  margin-right: 20px;
  margin-right: max(10px, 1.041666667vw);
}

.questionCont02 .cont03 .cont05 ul li small {
  font-size: 20px;
  /*font-size: max(15px, 1.041666667vw);*/
}

.questionCont02 .cont06 {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.questionCont02 .cont06 .line {
  position: relative;
  left: 25px;
  margin-bottom: 60px;
  box-sizing: content-box;
  display: inline-block;
}

.questionCont02 .cont06.target .line {
  opacity: 0;
}

.questionCont02 .cont06.target.inview .line {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.questionCont02 .cont06 .line h4 {
  display: inline-block;
  font-size: max(24px, 2vw);
  padding: 15px 30px;
  padding: max(10px, 0.78125vw) max(20px, 1.5625vw);
  font-family: Arial, Roboto, 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.questionCont02 .cont06 .line:before {
  content: "";
  -webkit-transform: skewX(155deg);
  -moz-transform: skewX(155deg);
  transform: skewX(155deg);
  background-image: url(../img/question/pc/bg01.png);
  background-repeat: repeat;
  padding: 15px 30px;
  padding: max(10px, 0.78125vw) max(20px, 1.5625vw);
  box-sizing: border-box;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
}

.questionCont02 .cont06 .cont10 {
  display: flex;
  margin-bottom: 150px;
  margin-bottom: max(100px, 7.8125vw);
}

.questionCont02 .cont06.target .cont10 {
  opacity: 0;
}

.questionCont02 .cont06.target.inview .cont10 {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.questionCont02 .cont06 .cont10 div {
  width: 47%;
}

.questionCont02 .cont06 div h5 {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-size: max(24px, 2vw);
  padding: 6px 15px;
  padding: max(5px, 0.3125vw) max(10px, 0.78125vw);
  margin-bottom: 40px;
  margin-bottom: 40px;
  font-family: Arial, Roboto, 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.questionCont02 .cont06 .cont07 h5 {
  background-color: #ff4738;
}

.questionCont02 .cont06 div ul li {
  font-size: 28px;
  font-size: max(19px, 1.458333333vw);
  font-weight: bold;
  line-height: 2.5;
}

.questionCont02 .cont06 div ul li span {
  margin-right: 20px;
  margin-right: max(10px, 1.041666667vw);
}

.questionCont02 .cont06 .cont08 h5 {
  background-color: #4533da;
}

.questionCont02 .cont06 .cont07 {
  margin-right: 6%;
}

.questionCont02 .target > p {
  opacity: 0;
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  text-align: center;
  line-height: 2;
  margin-bottom: 150px;
  margin-bottom: max(100px, 7.8125vw);
}

.questionCont02 .target.inview > p {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.questionCont02 .cont11 p {
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  text-align: center;
  line-height: 2;
  letter-spacing: -0.5px;
}

.questionCont02 .target .cont11 p span {
  opacity: 0;
}

.questionCont02 .target.inview .cont11 p span {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.questionCont02 .target.inview .cont11 p span:nth-child(2) {
  animation-delay: 0.8s;
}

.questionCont02 .target.inview .cont11 p span:nth-child(3) {
  animation-delay: 1.2s;
}

.questionCont02 .target.inview .cont11 p span a {
  display: inline;
  color: #ff7864;
}

.questionCont02 .cont11 span {
  display: block;
  margin-bottom: 60px;
  margin-bottom: max(40px, 3.125vw);
}

.questionCont02 .cont11 span:last-child {
  margin-bottom: 0;
}

.questionCont03 {
  width: 1450px;
  max-width: 90%;
  margin: 0 auto 300px;
  margin-bottom: 15.625vw;
}

.questionCont03 h3 {
  width: 430px;
  margin: 0 auto 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.questionCont03 .target h3 {
  opacity: 0;
}

.questionCont03 .target.inview h3 {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.questionCont03 h3:after {
  content: "";
  display: block;
  width: 112%;
  height: 34px;
  background-image: url(../img/question/pc/img03.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate(-6%, 0);
}

.questionCont03 h3 img {
  padding-bottom: 40px;
}

.questionCont03 p {
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  text-align: center;
  line-height: 2;
  letter-spacing: 1.5px;
}

.questionCont03 p span {
  display: block;
  margin-bottom: 60px;
  margin-bottom: max(40px, 3.125vw);
}

.questionCont03 p span:nth-child(2) {
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.questionCont03 p span:last-child {
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.questionCont03 .target p span {
  opacity: 0;
}

.questionCont03 .target.inview p span {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.questionCont03 .target.inview p span:nth-child(2) {
  animation-delay: 0.8s;
}

.questionCont03 .target.inview p span:nth-child(3) {
  animation-delay: 1.2s;
}

.questionCont03 .target.inview p span:nth-child(4) {
  animation-delay: 1.6s;
}

.questionCont03 a {
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: #000;
  padding: 45px 0;
  padding: max(25px, 2.34375vw) 0;
}

.questionCont03 .target.inview a {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.questionCont03 a p {
  font-size: 45px;
  font-size: max(30px, 2.34375vw);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  margin-bottom: max(20px, 1.302083333vw);
}

.questionCont03 a small {
  font-family: "Century Gothic", "sans-serif", "arial";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
}

.questionCont03 a small span {
  width: 10px;
  margin-right: 5px;
}

.questionCont03 a small i {
  margin: 0 20px;
}

/*----情報社会で踊れ------
--------------------------*/

.inforbg01 {
  background-image: url(../img/information/pc/bg01.png);
  background-repeat: repeat;
}

.informationvisual {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  margin-bottom: 380px;
  margin-bottom: 19.79166667vw;
}

.informationvisual:before {
  content: "";
  background-image: url(../img/recruit/pc/dot.png);
  background-repeat: repeat;
  width: 100%;
  height: 900px;
  height: max(750px, 46.875vw);
  /* display: inline-block; */
  position: absolute;
  border-radius: 0 0 200% 200% /0 0 100% 100%;
  z-index: 1;
  opacity: 0.4;
}

.informationvisual .cont01 {
  padding-top: 140px;
  /* width: 1450px; */
  /* width: 75.52083333vw; */
  margin: 0 auto;
  width: 1450px;
  max-width: 85%;
  position: relative;
}

.informationvisual .cont01 h2 {
  width: 1450px;
  width: 70%;
  margin: 0 auto 100px;
  margin-bottom: 5.208333333vw;
  position: relative;
  z-index: 2;
}

.informationvisual .cont01 .cont02 {
  position: relative;
  z-index: 2;
}

.informationvisual .cont01 .cont02 p {
  text-align: center;
  font-size: 30px;
  font-size: max(23px, 1.5625vw);
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.8;
}

.informationvisual .cont01 .cont02 p span {
  display: block;
  margin-bottom: 50px;
  margin-bottom: 2.604166667vw;
}

.informationvisual .cont01 .cont02 p span:last-child {
  margin-bottom: 0;
}

.inforCont01 {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  width: 1300px;
  max-width: 85%;
  margin: 0 auto 300px;
  margin-bottom: 15.625vw;
}

.inforCont01 h3 {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto 180px;
  margin-bottom: 9.375vw;
}

.inforCont01.target h3 {
  opacity: 0;
}

.inforCont01.target.inview h3 {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont01 .cont01 {
  display: flex;
  justify-content: space-between;
}

.inforCont01.target .cont01 {
  opacity: 0;
}

.inforCont01.target.inview .cont01 {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.inforCont01 .cont01 div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inforCont01 .cont01 div figure {
  max-width: 90%;
  margin: 0 auto 140px;
  margin-bottom: 7.291666667vw;
}

.inforCont01 .cont01 div h4 {
  /* すべて縦方向に表示 */
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 24px;
  font-size: max(24px, 2vw);
  flex-grow: 1;
  margin-bottom: 100px;
  margin-bottom: 5.208333333vw;
  position: relative;
}

.inforCont01 .cont01 div a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inforCont01 .cont01 div a > span:first-child {
  font-size: 15px;
  font-size: max(10px, 0.78125vw);
  position: relative;
  bottom: 30px;
  animation: scroll 1s ease 0s infinite;
}

.inforCont01 .cont01 div a > span:last-child {
  font-family: "Century Gothic", "sans-serif", "arial";
  font-size: 32px;
  font-size: max(23px, 1.666666667vw);
  font-weight: bold;
  padding-bottom: 20px;
}

.inforCont01 .cont01 div a:after {
  content: "";
  width: 110%;
  border-bottom: 2px solid #000;
  height: 2px;
  display: block;
}

.inforCont01 .cont01 div a span span:first-child {
  margin-right: 10px;
}

.inforCont01 .cont01 .cont02 h4 span {
  position: relative;
  top: -15px;
  top: -0.78125vw;
}

.inforCont01 .cont01 .cont02 a > span:first-child {
  color: #ff4738;
}

.inforCont01 .cont01 .cont03 h4 > span {
  position: relative;
  top: -15px;
  top: -0.78125vw;
}

.inforCont01 .cont01 .cont03 a > span:first-child {
  color: #0cc7dc;
}

.inforCont01 .cont01 .cont04 h4 span {
  position: relative;
  top: -13px;
  top: -0.6770833333vw;
}

.inforCont01 .cont01 .cont04 a > span:first-child {
  color: #f54f7e;
}

.inforCont02 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
}

.inforCont02 .cont01 {
  position: relative;
}

.inforCont02 .cont01.target {
  opacity: 0;
}

.inforCont02 .cont01.target.inview {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont02 .cont01 figure {
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.inforCont02 .cont01 .cont02 img {
  position: absolute;
  top: -80px;
  top: -4.166666667vw;
  left: 100px;
  left: 5.208333333vw;
  width: 280px;
  width: max(130px, 14.58333333vw);
}

.inforCont02 .cont01 .cont02 h3 {
  position: absolute;
  top: 50%;
  left: 16%;
  transform: translateY(-50%) translateX(0%);
  -webkit-transform: translateY(-50%) translateX(0%);
  /* margin: auto; */
  z-index: 2;
  font-size: 125px;
  font-size: 6.510416667vw;
  background: #fff;
  padding: 0 20px;
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

.inforCont02 .cont01 .cont02 h3 > span span {
  margin: 0 -50px;
  margin: 0 -2.604166667vw;
}

.inforCont02 .cont14 {
  width: 1460px;
  /* width: 76.04166667%; */
  max-width: 90%;
  margin: 0 auto;
}

.inforCont02 .cont14 .target > p {
  font-size: 30px;
  font-size: max(18px, 1.5625vw);
  letter-spacing: 1.5px;
  line-height: 2;
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.inforCont02 .cont14 .target > p span {
  display: block;
}

.inforCont02 .cont14 .target > p {
  opacity: 0;
}

.inforCont02 .cont14 .target.inview > p {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont02 .cont14 > p span:first-child {
  margin-bottom: 70px;
  margin-bottom: 3.645833333vw;
}

.inforCont02 .cont03 {
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
}

.inforCont02 .cont14 .target .cont03 {
  opacity: 0;
}

.inforCont02 .cont14 .target.inview .cont03 {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.inforCont02 .cont03 h4 {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  display: flex;
  font-size: 46px;
  font-size: max(30px, 2.395833333vw);
  margin-bottom: 50px;
  margin-bottom: 2.604166667vw;
}

.inforCont02 .cont03 h4 .line {
  display: inline-block;
  position: relative;
  padding: 30px 15px;
  padding: max(20px, 1.5625vw) max(10px, 0.78125vw);
  bottom: 30px;
  bottom: max(20px, 1.5625vw);
  left: -15px;
  left: max(-10px, -0.78125vw);
}

.inforCont02 .cont03 h4 .line:before {
  content: "";
  -webkit-transform: skewX(155deg);
  -moz-transform: skewX(155deg);
  transform: skewX(155deg);
  background-image: url(../img/question/pc/bg01.png);
  background-repeat: repeat;
  box-sizing: border-box;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px 15px;
  padding: max(20px, 1.5625vw) max(10px, 0.78125vw);
  bottom: 0;
  left: 0;
}

.inforCont02 .cont03 p {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  line-height: 2;
}

.inforCont02 .cont03 p span {
  display: block;
  margin-bottom: 70px;
  margin-bottom: 3.645833333vw;
}

.inforCont02 .target .cont04 {
  opacity: 0;
}

.inforCont02 .target.inview .cont04 {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont02 .cont04 {
  padding: 60px 0;
  padding: 3.125vw 0;
  /* padding: max(45px,3.125vw) 0; */
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.inforCont02 .cont04 h4 {
  font-size: 24px;
  font-size: max(24px, 2vw);
  text-align: center;
  margin-bottom: 50px;
  margin-bottom: 2.604166667vw;
}

.inforCont02 .cont04 ul {
  display: flex;
  justify-content: center;
}

.inforCont02 .cont04 ul li {
  margin-right: 120px;
  margin-right: 6.25vw;
  display: flex;
  flex-direction: column;
}

.inforCont02 .cont04 ul li:last-child {
  margin-right: 0;
}

.inforCont02 .cont04 ul li span {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.inforCont02 .cont04 ul li span span {
  font-size: 30px;
  font-size: max(18px, 1.5625vw);
}

.inforCont02 .cont04 ul li span span:first-child {
  font-size: 25px;
  font-size: max(15px, 1.302083333vw);
  margin-right: 15px;
}

.inforCont02 .cont04 ul li:first-child span span:first-child {
  color: #ff4738;
}

.inforCont02 .cont04 ul li:nth-child(2) span span:first-child {
  color: #4533da;
}

.inforCont02 .cont04 ul li:nth-child(3) span span:first-child {
  color: #0cc7dc;
}

.inforCont02 .cont04 ul li:last-child span span:first-child {
  color: #f54f7e;
}

.inforCont02 .cont04 ul li h5 {
  font-size: 24px;
  font-size: max(24px, 2vw);
  letter-spacing: 2px;
}

.inforCont02 .cont05 h4 {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-size: max(24px, 2vw);
  margin-bottom: 45px;
  margin-bottom: 2.34375vw;
}

.inforCont02 .cont14 .cont05.target h4 {
  opacity: 0;
}

.inforCont02 .cont14 .cont05.target.inview h4 {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont02 .cont05 small {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  line-height: 1.8;
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
  display: block;
}

.inforCont02 .cont14 .cont05.target > small {
  opacity: 0;
}

.inforCont02 .cont14 .cont05.target.inview > small {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont02 .cont05 div {
  margin-bottom: 70px;
  margin-bottom: 3.645833333vw;
}

.inforCont02 .cont05.target div {
  opacity: 0;
}

.inforCont02 .cont05.target.inview div {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont02 .cont05.target.inview div:nth-child(3) {
  animation-delay: 0.4s;
}

.inforCont02 .cont05.target.inview div:nth-child(4) {
  animation-delay: 0.8s;
}

.inforCont02 .cont05.target.inview div:nth-child(5) {
  animation-delay: 1.2s;
}

.inforCont02 .cont05 div h5 {
  font-size: 24px;
  font-size: max(24px, 2vw);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.inforCont02 .cont05 div h5 small {
  margin-bottom: 0;
  color: #fff;
  background-color: #000;
  margin-left: 20px;
  letter-spacing: 1.5px;
}

.inforCont02 .cont05 div ul {
  display: flex;
  flex-wrap: wrap;
}

.inforCont02 .cont05 div ul li {
  width: 25%;
  border: 2px solid #000;
  border-right: 0;
  padding: 10px 20px;
  padding: 0.5208333333vw 1.041666667vw;
}

.inforCont02 .cont05 div ul li:nth-child(4) {
  border-right: 2px solid #000;
}

.inforCont02 .cont05 div ul li:last-child {
  border-top: 0;
  border-right: 2px solid #000;
  width: 100%;
}

.inforCont02 .cont05 div ul li p {
  /* display: flex; */
  font-size: 28px;
  font-size: max(18px, 1.458333333vw);
  font-weight: bold;
  letter-spacing: 1.5px;
}

.inforCont02 .cont05 div ul li p:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.inforCont02 .cont05 div ul li:last-child p:last-child {
  text-align: left;
  font-size: 28px;
  font-size: max(20px, 1.458333333vw);
  justify-content: flex-start;
  align-items: baseline;
}

.inforCont02 .cont05 div ul li:first-child p span {
  color: #ff4738;
}

.inforCont02 .cont05 div ul li:nth-child(2) p span {
  color: #4533da;
}

.inforCont02 .cont05 div ul li:nth-child(3) p span {
  color: #0cc7dc;
}

.inforCont02 .cont05 div ul li:nth-child(4) p span {
  color: #f54f7e;
}

.inforCont02 .cont05 div ul li p strong {
  font-family: "游ゴシック", "Yu Gothic";
  font-size: 44px;
  font-size: max(20px, 2.291666667vw);
}

.inforCont02 .cont05 div ul li:last-child p span:first-child {
  margin-right: 30px;
}

.inforCont02 .cont05 div ul li span strong {
  font-size: 40px;
  font-size: max(20px, 2.083333333vw);
  position: relative;
  top: 3px;
  top: 0.15625vw;
}

.inforCont02 .cont05 .cont08 {
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.inforCont02 .cont05 .s_01 {
  margin-bottom: 140px;
  margin-bottom: max(100px, 7.291666667vw);
}

.inforCont02 .cont05 .s_01 .accordion.one {
  text-align: center;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header {
  display: inline-block;
  transition: all 0.6s;
  margin-bottom: 0;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header.open {
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header:after {
  content: "";
  border-bottom: 2px solid #000;
  width: 110%;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  right: 5%;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header div {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  font-weight: bold;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header span {
  font-size: 30px;
  font-size: max(18px, 1.5625vw);
  margin-right: 20px;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header i.bar {
  width: 20px;
  width: max(15px, 1.041666667vw);
  display: block;
  position: relative;
  transition: all 0.3s;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header i.bar:before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  color: #000;
  background: #000;
  transition: all 0.3s;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header.open i.bar:before {
  transform: rotate(180deg);
  height: 0;
  left: 0;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header i.bar:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  margin: auto;
  color: #000;
  background: #000;
  transition: all 0.3s;
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_header.open i.bar:after {
  left: 0;
  transform: rotate(180deg);
}

.inforCont02 .cont05 .s_01 .accordion.one .accordion_inner {
  display: none;
  text-align: left;
}

.inforCont02 .cont05 .cont13 {
  text-align: center;
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.inforCont02 .cont05 .cont13 p {
  font-size: 30px;
  font-size: max(18px, 1.5625vw);
}

.inforCont02 .cont05 .cont13 p:first-child {
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.inforCont02 .cont05 .cont13 p:last-child {
  line-height: 2.5;
}

.inforCont03 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  margin-bottom: 350px;
  margin-bottom: 18.22916667vw;
}

.inforCont03 .cont01 {
  position: relative;
}

.inforCont03 .cont01.target {
  opacity: 0;
}

.inforCont03 .cont01.target.inview {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont03 .cont01 figure {
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.inforCont03 .cont01 .cont02 img {
  position: absolute;
  top: -80px;
  top: -4.166666667vw;
  left: 100px;
  left: 5.208333333vw;
  width: 280px;
  width: max(130px, 14.58333333vw);
}

.inforCont03 .cont01 .cont02 h3 {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  position: absolute;
  top: 50%;
  left: 12.8%;
  transform: translateY(-50%) translateX(0%);
  -webkit-transform: translateY(-50%) translateX(0%);
  /* margin: auto; */
  z-index: 2;
  font-size: 95px;
  font-size: 4.947916667vw;
  background: #fff;
  padding: 0 20px;
}

.inforCont03 .cont01 .cont02 h3 span:nth-child(2) {
  margin: 0 -50px;
  margin: 0 -2.604166667vw;
}

.inforCont03 .cont03 {
  width: 1460px;
  /* width: 76.04166667%; */
  max-width: 90%;
  margin: 0 auto 200px;
  margin-bottom: 10.41666667vw;
}

.inforCont03 .cont03 h4 {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  display: flex;
  font-size: 24px;
  font-size: max(24px, 2vw);
  margin-bottom: 50px;
  margin-bottom: 2.604166667vw;
}

.inforCont03 .cont03.target h4 {
  opacity: 0;
}

.inforCont03 .cont03.target.inview h4 {
  -webkit-animation: fadein 0.6s ease 0.4s forwards;
  animation: fadein 0.6s ease 0.4s forwards;
}

.inforCont03 .cont03 h4 .line {
  display: inline-block;
  position: relative;
  padding: 30px 15px;
  padding: max(20px, 1.5625vw) max(10px, 0.78125vw);
  bottom: 30px;
  bottom: max(20px, 1.5625vw);
  left: -15px;
  left: max(-10px, -0.78125vw);
}

.inforCont03 .cont03 h4 .line span {
  margin: 0 -15px;
  margin: 0 -0.78125vw;
}

.inforCont03 .cont03 h4 .line:before {
  content: "";
  -webkit-transform: skewX(155deg);
  -moz-transform: skewX(155deg);
  transform: skewX(155deg);
  background-image: url(../img/question/pc/bg01.png);
  background-repeat: repeat;
  box-sizing: border-box;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px 15px;
  padding: max(20px, 1.5625vw) max(10px, 0.78125vw);
  bottom: 0;
  left: 0;
}

.inforCont03 .cont03 p {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  line-height: 2;
}

.inforCont03 .cont03 p:first-child {
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.inforCont03 .cont03.target p:first-child {
  opacity: 0;
}

.inforCont03 .cont03.target.inview p:first-child {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont03 .cont03.target p:last-child {
  opacity: 0;
}

.inforCont03 .cont03.target.inview p:last-child {
  -webkit-animation: fadein 0.6s ease 0.8s forwards;
  animation: fadein 0.6s ease 0.8s forwards;
}

.inforCont03 .cont04 {
  width: 1460px;
  max-width: 90%;
  margin: 0 auto 240px;
  margin-bottom: 12.5vw;
}

.inforCont03 .cont04.target {
  opacity: 0;
}

.inforCont03 .cont04.target.inview {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont03 .cont04 .cont05 {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
}

.inforCont03 .cont04 .cont05 div {
  display: flex;
  align-items: flex-end;
}

.inforCont03 .cont04 .cont05 figure {
  width: 165px;
  width: max(100px, 8.59375vw);
  margin-right: 50px;
  margin-right: 2.604166667vw;
}

.inforCont03 .cont04 .cont05 h4 {
  /* display: flex; */
  /* flex-direction: column; */
  margin-right: 60px;
  margin-right: 3.125vw;
}

.inforCont03 .cont04 .cont05 h4 small {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  padding: 0 10px;
  margin-bottom: 20px;
}

.inforCont03 .cont04 .cont05 h4 > span {
  display: block;
  line-height: 1;
}

.inforCont03 .cont04 .cont05 h4 span span:first-child {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  margin-right: 20px;
}

.inforCont03 .cont04 .cont05 h4 span span:last-child {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
}

.inforCont03 .cont04 .cont05 p {
  display: flex;
  align-items: center;
  padding: 10px 50px;
  padding: 0.5208333333vw 2.604166667vw;
  border: 2px solid #000;
}

.inforCont03 .cont04 .cont05 p span:first-child {
  font-size: 27px;
  font-size: max(15px, 1.40625vw);
  margin-right: 20px;
}

.inforCont03 .cont04 .cont05 p span:last-child {
  width: 10px;
}

.inforCont03 .cont04 .cont06 {
  display: flex;
  align-items: center;
}

.inforCont03 .cont04 .cont06 ul {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  width: 100%;
}

.inforCont03 .cont04 .cont06 ul li {
  position: relative;
  display: flex;
  font-weight: bold;
}

.inforCont03 .cont04 .cont06 ul li:first-child {
  padding-bottom: 30px;
  align-items: flex-end;
}

.inforCont03 .cont04 .cont06 ul li:last-child {
  align-items: flex-end;
}

.inforCont03 .cont04 .cont06 ul li:last-child:before {
  background-image: url(../img/information/pc/btn01.svg);
  width: 40px;
}

.inforCont03 .cont04 .cont06 ul li:after {
  content: "";
  height: 100%;
  width: 2px;
  display: inline;
  position: absolute;
  border-left: 2px solid #000;
  top: 8px;
  left: 35px;
  left: max(30px, 1.822916667vw);
  z-index: 1;
}

.inforCont03 .cont04 .cont06 ul li:last-child:after {
  display: none;
}

.inforCont03 .cont04 .cont06 ul li div p {
  /* -webkit-text-combine: horizontal; */
  /* writing-mode: horizontal-tb; */
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  letter-spacing: 1.5px;
  line-height: 2;
  width: calc(100% - 110px);
}

.inforCont03 .cont04 .cont06 ul li div p span {
  display: block;
  padding: 0;
  margin-right: 0;
  position: relative;
  padding-left: 20px;
}
.inforCont03 .cont04 .cont06 ul li div p span::before {
  content: "・";
  position: absolute;
  left: 0;
}

.inforCont03 .cont04 .cont06 ul li:nth-child(5) div p {
  margin-bottom: 0;
}

.inforCont03 .cont04 .cont06 ul li:nth-child(5) {
  padding-bottom: 30px;
  margin-bottom: 0;
}

.inforCont03 .cont04 .cont06 ul li div {
  display: flex;
  align-items: center;
  margin-bottom: 90px;
  margin-bottom: 4.6875vw;
}

.inforCont03 .cont04 .cont06 ul li div > span {
  /* font-size: 24px; */
  /* font-size: max(30px, 1.875vw); */
  position: relative;
  z-index: 2;
  background-color: #fff;
  /* padding: 20px 0; */
  margin-right: 100px;
  margin-right: 5.208333333vw;
  width: 70px;
  width: max(60px, 3.645833333vw);
  display: block;
}

.inforCont03 .cont04 .cont06 ul li:first-child span {
  padding: 0;
  margin-right: 0;
  font-size: 20px;
  /*font-size: max(18px, 1.041666667vw);*/
  display: flex;
  position: relative;
  left: 27px;
  left: max(22px, 1.40625vw);
  background-color: transparent;
}

.inforCont03 .cont04 .cont06 ul li:last-child span:last-child {
  padding: 0;
  margin-right: 0;
}

.inforCont03 .cont04 .cont06 ul li:last-child span:last-child img {
  width: 25px;
  width: max(20px, 1.302083333vw);
  position: relative;
  left: 24px;
  left: max(20px, 1.25vw);
  transform: rotate(90deg);
}

.inforCont04 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic";
  padding-bottom: 300px;
}

.inforCont04 .cont01 {
  position: relative;
}

.inforCont04 .cont01.target {
  opacity: 0;
}

.inforCont04 .cont01.target.inview {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont04 .cont01 figure {
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.inforCont04 .cont01 .cont02 img {
  position: absolute;
  top: -80px;
  top: -4.166666667vw;
  left: 100px;
  left: 5.208333333vw;
  width: 280px;
  width: max(130px, 14.58333333vw);
}

.inforCont04 .cont01 .cont02 h3 {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  position: absolute;
  top: 50%;
  left: 10.4%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(0%);
  /* margin: auto; */
  z-index: 2;
  font-size: 125px;
  font-size: 6.510416667vw;
  background: #fff;
  padding: 0 20px;
}

.inforCont04 .cont01 .cont02 h3 span:first-child {
  margin: 0 -70px;
  margin: 0 -3.645833333vw;
}

.inforCont04 .cont03 p {
  font-size: 30px;
  font-size: max(18px, 1.5625vw);
  letter-spacing: 1.5px;
  line-height: 2;
  margin-bottom: 100px;
  margin-bottom: max(60px, 5.208333333vw);
}

.inforCont04 .cont03 .target > p {
  opacity: 0;
}

.inforCont04 .cont03 .target.inview > p {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont04 .cont03 > p:first-child {
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
}

.inforCont04 .cont03 > p:nth-child(2) {
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
}

.inforCont04 .cont03 .target.inview > p:nth-child(2) {
  animation-delay: 0.4s;
}

.inforCont04 .cont03 .target.inview > p:nth-child(3) {
  animation-delay: 0.8s;
}

.inforCont04 .cont03 p strong {
  display: inline-block;
}

.inforCont04 .cont03 {
  width: 1460px;
  max-width: 90%;
  margin: 0 auto;
  /* margin-bottom: 10.41666667vw; */
}

.inforCont04 .cont03 h4 {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  display: flex;
  font-size: 24px;
  font-size: max(24px, 2vw);
  margin-bottom: 50px;
  margin-bottom: 2.604166667vw;
}

.inforCont04 .cont03 .target h4 {
  opacity: 0;
}

.inforCont04 .cont03 .target.inview h4 {
  -webkit-animation: fadein 0.6s ease 1.2s forwards;
  animation: fadein 0.6s ease 1.2s forwards;
}

.inforCont04 .cont03 h4 .line {
  display: inline-block;
  position: relative;
  padding: 30px 15px;
  padding: max(20px, 1.5625vw) max(10px, 0.78125vw);
  bottom: 30px;
  bottom: max(20px, 1.5625vw);
  left: -15px;
  left: max(-10px, -0.78125vw);
}

.inforCont04 .cont03 h4 .line:before {
  content: "";
  -webkit-transform: skewX(155deg);
  -moz-transform: skewX(155deg);
  transform: skewX(155deg);
  background-image: url(../img/question/pc/bg01.png);
  background-repeat: repeat;
  box-sizing: border-box;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px 15px;
  padding: max(20px, 1.5625vw) max(10px, 0.78125vw);
  bottom: 0;
  left: 0;
}

.inforCont04 .cont03 .cont12 div {
  display: flex;
  align-items: flex-end;
  position: relative;
}

.inforCont04 .cont03 .cont12 {
  margin-bottom: 200px;
  margin-bottom: 10.41666667vw;
}

.inforCont04 .cont03 .cont12.target {
  opacity: 0;
}

.inforCont04 .cont03 .cont12.target.inview {
  -webkit-animation: fadein 0.6s ease 0.8s forwards;
  animation: fadein 0.6s ease 0.8s forwards;
}

.inforCont04 .cont03 .cont12 .cont04:after {
  content: "";
  height: 100%;
  width: 2px;
  display: inline;
  position: absolute;
  border-left: 2px solid #000;
  top: 15px;
  left: 45px;
  z-index: 1;
}

.inforCont04 .cont03 div aside {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 95px;
  font-size: max(65px, 4.947916667vw);
  font-family: "游ゴシック", "Yu Gothic";
  font-weight: bold;
  margin-right: 40px;
  margin-right: max(20px, 2.083333333vw);
  letter-spacing: -3px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.inforCont04 .cont03 div article {
  font-weight: bold;
}

.inforCont04 .cont03 div article p {
  display: flex;
  align-items: baseline;
  line-height: 1;
  margin: 0 20px 25px 0;
}

.inforCont04 .cont03 div article p small {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  margin-right: 15px;
}

.inforCont04 .cont03 div article p strong {
  font-family: "游ゴシック", "Yu Gothic";
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  letter-spacing: -1px;
  position: relative;
  top: 3px;
}

.inforCont04 .cont03 div article p span {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
}

.inforCont04 .cont03 div article ul li {
  display: flex;
  flex-direction: column;
}

.inforCont04 .cont03 div article ul li:first-child {
  margin-bottom: 20px;
}

.inforCont04 .cont03 div article ul li small {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  margin-bottom: 5px;
}

.inforCont04 .cont03 div article ul li span {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  display: flex;
}

.inforCont04 .cont03 div article ul li span span {
  background-color: #000;
  color: #fff;
  padding: 0 10px;
  margin-right: 15px;
}

.inforCont04 .cont03 .cont04 {
  padding-bottom: 60px;
}

.inforCont04 .cont03 .s_01 {
  padding-bottom: 60px;
}

.inforCont04 .cont03 .s_01:after {
  content: "";
  height: 100%;
  width: 2px;
  display: inline;
  position: absolute;
  border-left: 2px solid #000;
  top: 2px;
  left: 45px;
  z-index: 1;
}

.accordion_header {
  cursor: pointer;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_header {
  align-items: center;
  padding: 30px 0;
  background-color: #fff;
  z-index: 2;
  width: 100%;
  position: relative;
  left: 30px;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_header.open {
  display: none;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_header i.bar {
  width: 30px;
  display: block;
  position: relative;
  transition: all 0.3s;
  margin-right: 20px;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_header i.bar:before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  color: #000;
  background: #000;
  transition: all 0.3s;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_header i.bar:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  margin: auto;
  color: #000;
  background: #000;
  transition: all 0.3s;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_header span {
  font-family: "Century Gothic", "sans-serif", "arial";
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  font-weight: bold;
  margin-right: 10px;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_inner {
  display: none;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_inner .cont05 {
  padding-bottom: 60px;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_inner .cont05:after {
  content: "";
  height: 100%;
  width: 2px;
  display: inline;
  position: absolute;
  border-left: 2px solid #000;
  top: 2px;
  left: 45px;
  z-index: 1;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_inner .cont05 aside {
  padding-bottom: 50px;
}

.inforCont04 .cont03 .s_01 .accordion.one .accordion_inner .cont08 aside {
  padding-bottom: 50px;
}

.inforCont04 .cont03 .cont09 aside {
  padding-bottom: 50px;
}

.inforCont04 .cont10 {
  width: 1460px;
  /* width: 76.04166667%; */
  max-width: 90%;
  margin: 0 auto 200px;
  margin-bottom: 10.41666667vw;
  text-align: center;
}

.inforCont04 .cont10 h4 {
  font-size: 46px;
  font-size: max(30px, 2.395833333vw);
  margin-bottom: 120px;
  margin-bottom: 6.25vw;
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  display: block;
}

.inforCont04 .cont10.target h4 {
  opacity: 0;
}

.inforCont04 .cont10.target.inview h4 {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont04 .cont10 p {
  line-height: 2;
  font-size: 18px;
  font-size: max(18px, 1.5vw);
}

.inforCont04 .cont10 p span {
  display: block;
  margin-bottom: 80px;
  margin-bottom: 4.166666667vw;
}

.inforCont04 .cont11 {
  width: 1460px;
  max-width: 90%;
  text-align: center;
  margin: 0 auto 200px;
  margin-bottom: 10.41666667vw;
}

.inforCont04 .cont11 a {
  display: inline-block;
}

.inforCont04 .cont11 a h4 {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.inforCont04 .cont11.target a h4 {
  opacity: 0;
}

.inforCont04 .cont11.target.inview a h4 {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont04 .cont11 div a:after {
  content: "";
  border-bottom: 2px solid #000;
  width: 110%;
  display: inline-block;
  position: relative;
  right: 5%;
}

.inforCont04 .cont11 a h4 span {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  margin-right: 15px;
}

.inforCont04 .cont11 a h4 img {
  width: 14px;
}

.inforCont04 .cont13.target {
  opacity: 0;
}

.inforCont04 .cont13.target.inview {
  -webkit-animation: fadein 0.6s ease 0s forwards;
  animation: fadein 0.6s ease 0s forwards;
}

.inforCont04 .cont13 a {
  width: 1460px;
  width: 76.04166667%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: #000;
  padding: 30px 0;
  padding: max(20px, 1.5625vw) 0;
}

.inforCont04 .cont13 a p {
  font-size: 18px;
  font-size: max(18px, 1.5vw);
  font-weight: bold;
  letter-spacing: 1.5px;
  text-align: center;
  line-height: 2;
  margin-bottom: 0;
}

.inforCont04 .cont13 a small {
  font-family: "Century Gothic", "sans-serif", "arial";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-size: max(18px, 1.5vw);
}

.inforCont04 .cont13 a small span {
  width: 10px;
  margin-right: 5px;
}

.inforCont04 .cont13 a small i {
  margin: 0 20px;
}

.NavMenu .st {
  font-size: 18px !important;
  font-weight: 600 !important;
}

.footer-btn {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 150px;
}

.footer-btn ul {
  display: flex;
  justify-content: center;
}
.footer-btn ul li {
  margin: 0 10px;
}
.footer-btn ul li a {
  display: block;
  width: 600px;
  height: 140px;
  overflow: hidden;
  position: relative;
 
}
.footer-btn ul li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: 0.4s ease-in-out;
}
.footer-btn ul li a img:nth-child(2) {
  opacity: 0;
}
.footer-btn ul li a:hover img:nth-of-type(1) {
  opacity: 0;
}
.footer-btn ul li a:hover img:nth-of-type(2) {
  opacity: 1;
}

/** 個人情報保護方針 */
.compvisual .cont01 span,.compCont01 strong{
@media screen and (max-width: 956px) {
     font-size:20px;
}
  
@media screen and (min-width: 956px) {
    font-size:50px;

  }
}
  
/** エントリー 個人情報保護方針 */
  
.entryCont02 .p-check{
  margin-bottom: 40px;
  text-align: center;
  font-size:20px;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}
.entryCont02 .p-check input {
  vertical-align: middle;
  margin-block: calc((1lh - 1.5em) / 2);
  display: inline-block;
  margin-right: 0.5em;

}

/** end 個人情報保護方針 */
/** エントリー メンテナンス */
  
.maintCont01 .c-aline{
  margin-bottom: 40px;
  text-align: center;
  font-size:20px;
  font-weight: bold;
  line-height: 1.7;
}
.maintCont02 {
@media screen and (max-width: 956px) {
    margin-bottom: 80px;
}
@media screen and (min-width: 956px) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 80px;
  }
}
.maintCont02 li a img {
@media screen and (max-width: 956px) {
  height: 70px;
  width: 240px;
  display: block;
  margin: 40px auto;
}
@media screen and (min-width: 956px) {
  height: 70px;
  width: 240px;
  display: block;
  margin: 0 auto;
}
}
/** end エントリー メンテナンス */
