@charset "UTF-8";
/* コメントヘッダーは_header.scssに記載 */
/*
Theme Name: foryouリクルート
Author: DXアカウント
Description: foryouリクルートサイト用テーマ
Version: 1.0

*/
#header {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  max-width: 2000px;
  width: 100vw;
  height: 62px;
  height: 88px;
  margin: auto;
  padding-left: 3vw;
  top: 0;
}
#header .gnav {
  display: flex;
}
#header .header-logo {
  padding-top: 8px;
  height: 80px;
  width: auto;
}
#header .gnav_list {
  padding-top: 16px;
}
#header nav { /* グローバルナビメニューのデザイン */
  color: #000;
  text-align: center;
}
#header nav ul {
  display: flex;
  justify-content: center;
}
#header nav ul ul {
  display: block;
}
#header nav ul li {
  position: relative;
}
#header nav ul li a {
  display: block;
  color: #000;
  font-weight: 500;
  padding: 20px 20px;
  transition: all 0.3s;
}
#header nav ul li a:hover {
  color: #E14324;
}
#header nav ul li li a {
  padding: 14px 22px;
  font-size: 14px;
}
#header nav ul li.parent::before {
  content: "";
  position: absolute;
  right: 7px;
  top: 24px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #646464;
  border-right: 2px solid #646464;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
#header nav ul li.parent ul {
  position: absolute;
  left: 0;
  top: 64px;
  z-index: 4;
  background-color: #a0a0a0;
  width: 156px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
#header nav {
  /* hoverしたら表示する */
}
#header nav li.parent:hover > ul,
#header nav li.parent ul li:hover > ul,
#header nav li.parent:active > ul,
#header nav li.parent ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
#header nav {
  /* 下層メニューのaタグのデザイン */
}
#header nav li.parent ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}
#header nav li.parent ul li:last-child > a {
  border-bottom: none;
}
#header nav li.parent ul li a:hover,
#header nav li.parent ul li a:active {
  background-color: #929292;
  background-color: #cdcdcd;
  color: #E14324;
}
#header .btn-header-entry {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 62px;
  height: 88px;
  background-color: #333333;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 2vw;
}
#header .btn-header-entry:hover {
  background-color: #E14324;
}
@media only screen and (max-width:1240px) {
  #header nav ul li a {
    padding: 20px 15px;
  }
  #header .btn-header-entry {
    width: 110px;
    margin-left: 1.5vw;
  }
  #header nav ul li.parent::before {
    right: 4px;
  }
}
@media only screen and (max-width:1170px) {
  #header {
    padding-left: 1vw;
    z-index: 100;
  }
  #header nav ul li a {
    padding: 20px 10px;
    font-size: 1.3rem;
  }
  #header .btn-header-entry {
    width: 80px;
    font-size: 1.3rem;
    margin-left: 1vw;
  }
  #header nav ul li.parent::before {
    right: 2px;
  }
}
@media only screen and (max-width:960px) {
  #header .gnav_list {
    display: none;
  }
  #header .btn-header-entry {
    position: fixed;
    top: 0;
    right: 72px;
    background-color: #E14324;
  }
}
@media screen and (max-width: 480px) {
  #header {
    height: 70px;
  }
  #header .header-logo {
    height: 62px;
    width: auto;
  }
  #header .btn-header-entry {
    height: 70px;
    width: 64px;
    right: 60px;
  }
}

.hamburger, .nav {
  display: none;
}

/* ハンバーガーボタン */
body {
  position: relative;
}

.hamburger {
  width: 35px;
  height: 16px;
  position: fixed;
  top: 27px;
  right: 60px;
  right: 1vw;
  z-index: 100;
  top: 0;
  right: 0;
  z-index: 101;
  width: 72px;
  height: 88px;
  background-color: #333333;
}

.hamburger_bar {
  display: block;
  width: 60%;
  height: 2px;
  position: absolute;
  left: 22%;
  background: #fff;
  transition: top 0.24s, opacity 0.24s, -webkit-transform 0.24s;
  transition: top 0.24s, transform 0.24s, opacity 0.24s;
  transition: top 0.24s, transform 0.24s, opacity 0.24s, -webkit-transform 0.24s;
}

.hamburger_menu {
  font-size: 10px;
  text-transform: uppercase;
  top: 68%;
  left: 24px;
  color: #fff;
  position: absolute;
}

.hamburger_bar:nth-child(1) {
  top: 28%;
}

.hamburger_bar:nth-child(2) {
  top: 44%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hamburger_bar:nth-child(3) {
  top: 60%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.hamburger_bar.is_active:nth-child(1) {
  top: 48%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.hamburger_bar.is_active:nth-child(2) {
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  opacity: 0;
}

.hamburger_bar.is_active:nth-child(3) {
  top: 48%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

@media only screen and (max-width:960px) {
  #header {
    position: fixed;
    background-color: #fff;
  }
  .hamburger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background: #E14324;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.24s;
    pointer-events: none;
    height: 100vh;
    overflow-y: scroll;
    padding: 120px 1em 70px;
  }
  .nav .wrap-logo {
    background-color: #e4e4e4;
    width: 100vw;
    top: 0;
    position: fixed;
    height: 88px;
  }
  .wrap-logo-sp {
    background-color: #000;
  }
  .wrap-logo-sp img {
    width: 200px;
    height: 62px;
    padding-top: 8px;
    padding-left: 2px;
  }
  .nav.is_active {
    opacity: 1;
    pointer-events: auto;
  }
  .sp_nav_list_wrap {
    position: absolute;
    top: 105px;
    padding-bottom: 100px;
    margin-top: 0;
  }
  .sp_nav_list {
    margin-top: 0;
    padding-top: 0;
  }
  .sp_nav_list ul li {
    font-size: 1.3rem;
    margin-top: 6px;
  }
  .sp_nav_list ul li span {
    font-family: "Noto Serif JP", serif;
    font-size: 2.8rem;
    display: block;
    line-height: 1.3;
  }
  .sp_nav_list ul .parent {
    margin-bottom: 10px;
  }
  .sp_nav_list ul .parent ul {
    list-style: disc;
    list-style-position: inside;
    margin-top: 5px;
    margin-left: 18px;
  }
  .sp_nav_list ul .parent ul li {
    margin-top: 0;
    font-size: 1.4rem;
  }
  .sp_nav_list ul .parent ul li::marker {
    font-size: 70%;
  }
  .btn-entry-sp {
    background-color: #333333;
    width: 300px;
    height: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 30px;
    padding: 30px 0;
  }
  .btn-entry-sp::after {
    content: "";
    position: absolute;
    right: 10%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media screen and (max-width: 480px) {
  .hamburger {
    height: 70px;
    width: 60px;
  }
  .hamburger_menu {
    left: 18px;
  }
  .nav .wrap-logo {
    height: 70px;
  }
}
/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

/* リセットCSS */
button {
  border-color: transparent;
  background: transparent;
  cursor: pointer;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

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

.page-about .wrap-business {
  display: flex;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 87px auto 80px;
  max-width: 2000px;
}
.page-about .wrap-business li {
  width: 33.3%;
  height: auto;
  aspect-ratio: 2/1.2;
  min-height: 162px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-blend-mode: darken;
  color: #fff;
  text-shadow: 0px 0px 57px rgba(0, 0, 0, 0.56);
}
.page-about .wrap-business li:nth-child(1) {
  background-image: url("./images/about/li01.webp");
  background-color: rgba(0, 0, 0, 0.2);
  background-position: bottom;
}
.page-about .wrap-business li:nth-child(2) {
  background-image: url("./images/about/li02.webp");
  background-color: rgb(0, 0, 0);
  background-color: #DEDEDE;
}
.page-about .wrap-business li:nth-child(3) {
  background-image: url("./images/about/li03.webp");
  background-color: rgba(0, 0, 0, 0.9);
  background-color: #D0D0D0;
}
.page-about .foryou-icon {
  display: block;
  margin: auto;
}
.page-about .section-main h3 {
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 730px;
  margin: 30px auto 100px;
}
.page-about .section-main h3 span:nth-child(1) {
  margin: auto;
  margin-left: 0;
}
.page-about .section-main h3 span:nth-child(2) {
  margin: auto;
}
.page-about .section-main h3 span:nth-child(3) {
  margin: auto;
  margin-right: 0;
}
.page-about .section-main .text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.1;
  text-align: center;
  margin: auto;
}
.page-about .wrap-movie {
  width: 100%;
  max-width: 1100px;
  margin: 80px auto 120px;
}
.page-about .wrap-movie video {
  width: 100%;
  height: auto;
  display: block;
}
.page-about .wrap-movie p {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}
.page-about .article01 {
  background-color: #F2f2f2;
  padding: 110px 0 230px;
}
.page-about .article01 h2 {
  font-size: 3.4rem;
  text-align: center;
  margin-bottom: 100px;
}
.page-about .article01 .sect01 h3, .page-about .article01 .sect02 h3, .page-about .article01 .sect03 h3 {
  font-size: 2.6rem;
  position: relative;
  z-index: 1;
}
.page-about .article01 .sect01 h3::before, .page-about .article01 .sect02 h3::before, .page-about .article01 .sect03 h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.page-about .article01 .sect01 .wrap, .page-about .article01 .sect02 .wrap, .page-about .article01 .sect03 .wrap {
  display: flex;
  gap: 56px;
  justify-content: center;
  align-items: center;
}
.page-about .article01 .sect01 .wrap .box p, .page-about .article01 .sect02 .wrap .box p, .page-about .article01 .sect03 .wrap .box p {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 24px 0 33px;
}
.page-about .article01 .sect01 {
  margin-bottom: 190px;
}
.page-about .article01 .sect01 h3::before {
  background-image: url("./images/common/num01.svg");
  width: 130px;
  height: 82px;
}
.page-about .article01 .sect02 {
  margin-bottom: 250px;
}
.page-about .article01 .sect02 h3::before {
  background-image: url("./images/common/num02.svg");
  width: 145px;
  height: 82px;
}
.page-about .article01 .sect02 .wrap {
  flex-direction: row-reverse;
}
.page-about .article01 .sect03 h3::before {
  background-image: url("./images/common/num03.svg");
  width: 145px;
  height: 82px;
}
.page-about .article01 .slider-wrap {
  margin-bottom: 180px;
}
.page-about .btn-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 220px;
  margin: auto;
  margin-right: 0;
}
.page-about .btn-box a {
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
}
.page-about .btn-box a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #333333;
}
.page-about .btn-box a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.page-about .btn-box a:hover::before {
  background: #E83816;
  transition: 0.3s;
}
@media only screen and (max-width:1024px) {
  .page-about .wrap-business {
    font-size: 2rem;
  }
  .page-about .section-main h3 {
    font-size: 2.5rem;
    gap: 16px;
    max-width: 600px;
    width: 100%;
  }
  .page-about .section-main .text {
    font-size: 2.2rem;
  }
  .page-about .article01 h2 {
    font-size: 3rem;
    margin-bottom: 60px;
  }
  .page-about .article01 .sect01 .wrap, .page-about .article01 .sect02 .wrap, .page-about .article01 .sect03 .wrap {
    gap: 20px;
  }
  .page-about .article01 .sect01 .wrap img, .page-about .article01 .sect02 .wrap img, .page-about .article01 .sect03 .wrap img {
    width: 55%;
  }
  .page-about .article01 .sect01 .wrap .box .h3, .page-about .article01 .sect02 .wrap .box .h3, .page-about .article01 .sect03 .wrap .box .h3 {
    font-size: 2.2rem;
  }
  .page-about .article01 .sect01 .wrap .box p, .page-about .article01 .sect02 .wrap .box p, .page-about .article01 .sect03 .wrap .box p {
    font-size: 1.6rem;
  }
  .page-about .article01 .btn-box {
    width: 190px;
  }
  .page-about .article01 .btn-box a {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width:768px) {
  .page-about .wrap-business {
    font-size: 2rem;
  }
  .page-about .foryou-icon {
    width: 140px;
  }
  .page-about .section-main h3 {
    font-size: 2.2rem;
  }
  .page-about .section-main .text {
    font-size: 2rem;
  }
  .page-about .article01 .sect01 .wrap, .page-about .article01 .sect02 .wrap, .page-about .article01 .sect03 .wrap {
    flex-direction: column;
    gap: 30px;
  }
  .page-about .article01 .sect01 .wrap img, .page-about .article01 .sect02 .wrap img, .page-about .article01 .sect03 .wrap img {
    width: 100%;
  }
  .page-about .article01 .sect01 .wrap .box, .page-about .article01 .sect02 .wrap .box, .page-about .article01 .sect03 .wrap .box {
    max-width: 600px;
    width: 100%;
  }
  .page-about .article01 .btn-box {
    width: 190px;
  }
  .page-about .article01 .btn-box a {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width:630px) {
  .page-about .wrap-business {
    font-size: 1.8rem;
    flex-direction: column;
  }
  .page-about .wrap-business li {
    width: 100%;
  }
  .page-about .section-main .text {
    font-size: 1.8rem;
  }
  .page-about .article01 {
    padding-bottom: 100px;
  }
  .page-about .article01 .sect01, .page-about .article01 .sect02, .page-about .article01 .sect03 {
    margin-bottom: 130px;
  }
  .page-about .article01 .sect01 .wrap, .page-about .article01 .sect02 .wrap, .page-about .article01 .sect03 .wrap {
    flex-direction: column;
    gap: 30px;
  }
  .page-about .article01 .sect01 .wrap img, .page-about .article01 .sect02 .wrap img, .page-about .article01 .sect03 .wrap img {
    width: 100%;
  }
  .page-about .article01 .sect01 .wrap .box, .page-about .article01 .sect02 .wrap .box, .page-about .article01 .sect03 .wrap .box {
    max-width: 600px;
    width: 100%;
  }
  .page-about .article01 .sect01 .wrap .box h3, .page-about .article01 .sect02 .wrap .box h3, .page-about .article01 .sect03 .wrap .box h3 {
    font-size: 2.2rem;
  }
  .page-about .article01 .sect01 .wrap .box p, .page-about .article01 .sect02 .wrap .box p, .page-about .article01 .sect03 .wrap .box p {
    font-size: 1.5rem;
  }
  .page-about .article01 .slider-wrap {
    margin-bottom: 100px;
  }
  .page-about .article01 .slider-wrap ul li img {
    height: 280px;
    width: auto;
  }
  .page-about .article01 .btn-box {
    width: 190px;
  }
  .page-about .article01 .btn-box a {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width:430px) {
  .page-about .section-main .text .sp-none {
    display: none;
  }
  .page-about .wrap-business {
    font-size: 1.6rem;
  }
  .page-about .article01 h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  .page-about .article01 .sect01, .page-about .article01 .sect02, .page-about .article01 .sect03, .page-about .article01 .slider-wrap {
    margin-bottom: 100px;
  }
  .page-about .article01 .slider-wrap ul li img {
    height: 220px;
    width: auto;
  }
}

/************************************* インタビュー一覧ページ */
.page-interview p.text {
  font-size: 2rem;
  font-weight: 500;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 90px;
}
.page-interview .wrap {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 200px;
}
.page-interview .wrap .box {
  width: 400px;
  max-width: 400px;
  margin-bottom: 130px;
}
.page-interview .wrap .box .staff-info {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  margin: 30px 0 5px;
  font-weight: 500;
  color: #E83816;
}
.page-interview .wrap .box .staff-info p:nth-child(1) {
  margin-right: 8px;
}
.page-interview .wrap .box .name {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
}
.page-interview .img_container {
  position: relative;
  width: 400px;
  height: 420px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.page-interview .img_container img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  transition: 0.4s ease-in-out;
}
.page-interview .img_container:hover img:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) scale(1.02) !important;
          transform: translate(-50%, -50%) scale(1.02) !important;
  opacity: 0;
}
@media only screen and (max-width:1300px) {
  .page-interview p.text {
    font-size: 1.8rem;
  }
  .page-interview .wrap .box {
    width: 330px;
    margin-bottom: 100px;
  }
  .page-interview .wrap .box .staff-info {
    font-size: 1.3rem;
    margin: 30px 0 3px;
  }
  .page-interview .img_container {
    width: 330px;
    height: 360px;
  }
  .page-interview .img_container img {
    width: 100%;
  }
}
@media only screen and (max-width:768px) {
  .page-interview p.text {
    font-size: 1.6rem;
  }
  .page-interview .wrap {
    gap: 18px;
  }
  .page-interview .wrap .box {
    margin-bottom: 70px;
    width: calc(50% - 10px);
    max-width: 330px;
  }
  .page-interview .wrap .box .staff-info {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .page-interview .img_container {
    width: 100%;
    height: 48vw;
  }
  .page-interview .img_container img {
    width: 100%;
  }
}
@media only screen and (max-width:630px) {
  .page-interview .wrap {
    gap: 10px;
  }
  .page-interview .wrap .box {
    width: calc(50% - 5px);
  }
  .page-interview .wrap .box .staff-info {
    font-size: 1.2rem;
  }
  .page-interview .wrap .box .name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .page-interview .wrap .box .staff-info p {
    text-align: center;
  }
}
@media only screen and (max-width:430px) {
  .page-interview .wrap {
    margin-bottom: 70px;
  }
  .page-interview .wrap .box .name {
    font-size: 1.8rem;
  }
}

/************************************* インタビュー個別ページ */
.page-interview-child article {
  overflow-x: hidden;
}
.page-interview-child .staff-header {
  position: relative;
  height: 520px;
  padding-top: 72px;
  background-color: #F2f2f2;
  overflow-x: hidden;
}
.page-interview-child .staff-header .name-en {
  font-family: "Lato", sans-serif;
  font-size: 7rem;
  line-height: 1.3;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 20px;
}
.page-interview-child .staff-header .name-en::after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #E83816;
  position: absolute;
  bottom: 0;
  left: 2px;
}
.page-interview-child .staff-header .name {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.page-interview-child .staff-header .img-chart {
  position: absolute;
  left: 40%;
  bottom: 80px;
  left: 34%;
  bottom: 40px;
  width: 360px;
}
.page-interview-child .staff-header .img-header {
  position: absolute;
  left: 65%;
  bottom: 0;
  z-index: 1;
}
.page-interview-child .staff-header .box {
  font-weight: 500;
}
.page-interview-child .staff-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 770px;
  height: 121px;
  background: #E83816 0% 0% no-repeat padding-box;
  opacity: 1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.page-interview-child .staff-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 694px;
  height: 159px;
  background: #AAAAAA 0% 0% no-repeat padding-box;
  opacity: 1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.page-interview-child .text {
  font-size: 1.7rem;
}
.page-interview-child .sub-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 22px;
}
.page-interview-child .sub-title::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #E83816;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-interview-child .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.page-interview-child .sect-story {
  position: relative;
  margin-top: 120px;
  padding-bottom: 160px;
}
.page-interview-child .sect-story .inner-container {
  max-width: 1044px;
}
.page-interview-child .sect-story img {
  margin: auto;
  display: block;
  width: 100%;
  height: auto;
}
.page-interview-child .sect-story h2 {
  font-size: 3.2rem;
  margin: 64px 0 36px;
}
.page-interview-child .sect-story .bg {
  background-color: #F2f2f2;
  width: 100vw;
  height: 52vw;
  max-height: 740px;
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.page-interview-child .sect-myjob, .page-interview-child .sect-challenge {
  margin-top: 100px;
  margin-bottom: 300px;
}
.page-interview-child .sect-myjob .wrap, .page-interview-child .sect-challenge .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 47px;
  position: relative;
}
.page-interview-child .sect-myjob .wrap .box, .page-interview-child .sect-challenge .wrap .box {
  max-width: 500px;
  width: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 54%;
}
.page-interview-child .sect-myjob .wrap img, .page-interview-child .sect-challenge .wrap img {
  width: 52vw;
  height: auto;
  margin: auto;
  margin-left: 0;
}
.page-interview-child .sect-myjob, .page-interview-child .sect-challenge {
  position: relative;
}
.page-interview-child .sect-myjob .bg, .page-interview-child .sect-challenge .bg {
  background-color: #F2f2f2;
  width: 70vw;
  height: 52vw;
  max-height: 765px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.page-interview-child .sect-challenge .wrap {
  flex-direction: row-reverse;
}
.page-interview-child .sect-challenge .wrap .box {
  left: 10%;
}
.page-interview-child .sect-challenge .wrap img {
  margin: auto;
  margin-left: inherit;
  margin-right: -50vw;
}
.page-interview-child .sect-challenge .bg {
  left: 0;
}
.page-interview-child .sect-private {
  position: relative;
  margin-bottom: 150px;
}
.page-interview-child .sect-private .inner-container {
  position: relative;
  max-width: 1000px;
  width: 75%;
}
.page-interview-child .sect-private .inner-container::after {
  content: "";
  background-image: url("./images/interview/text-private.svg");
  width: 89px;
  height: 581px;
  position: absolute;
  top: 0;
  right: -150px;
}
.page-interview-child .sect-private h2 {
  font-size: 2.4rem;
  text-align: center;
  margin: 60px auto 8px;
}
.page-interview-child .sect-private .text {
  text-align: center;
}
.page-interview-child .sect-private img {
  width: 100%;
  height: auto;
}
.page-interview-child .sect-private .slick-prev {
  left: 5px;
  z-index: 1;
}
.page-interview-child .sect-private .slick-next {
  right: 5px;
  z-index: 1;
}
.page-interview-child .sect-private .bg {
  background-color: #F2f2f2;
  width: 100vw;
  height: 52vw;
  height: 750px;
  max-height: 740px;
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.page-interview-child .sect-message .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F4F4F4;
}
.page-interview-child .sect-message .wrap img {
  width: 50%;
  height: auto;
  background-color: #E6E6E6;
}
.page-interview-child .sect-message .wrap .box {
  width: 50%;
  padding: 0 30px 0 6vw;
}
.page-interview-child .sect-good {
  background-color: #E6E6E6;
  padding: 80px 0 105px;
  position: relative;
}
.page-interview-child .sect-good .goodpoint {
  font-size: 2.2rem;
  font-weight: 500;
  padding: 7px 36px;
  background-color: #E6E6E6;
  border-radius: 30px 30px 0 0;
  position: absolute;
  top: -43px;
  left: 5vw;
}
.page-interview-child .sect-good .banzai {
  font-size: 2.4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 37px;
}
.page-interview-child .sect-good .banzai::before, .page-interview-child .sect-good .banzai::after {
  content: "";
  width: 3px;
  height: 40px;
  background-color: #E83816;
}
.page-interview-child .sect-good .banzai::before {
  margin-right: 30px;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
.page-interview-child .sect-good .banzai::after {
  margin-left: 30px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.page-interview-child .sect-good .box {
  background-color: #fff;
  padding: 40px 50px 50px;
  border-radius: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media only screen and (max-width:1024px) {
  .page-interview-child .staff-header .img-chart {
    width: 30%;
    height: auto;
  }
  .page-interview-child .staff-header .img-header {
    width: 40%;
    height: auto;
  }
  .page-interview-child .text {
    font-size: 1.6rem;
  }
  .page-interview-child .sub-title {
    font-size: 3.4rem;
  }
  .page-interview-child .sect-story {
    margin-top: 120px;
    padding-bottom: 160px;
  }
  .page-interview-child .sect-story h2 {
    font-size: 2.8rem;
    margin: 50px 0 36px;
  }
  .page-interview-child .sect-story .bg {
    height: 59vw;
    top: 40%;
  }
  .page-interview-child .sect-myjob .wrap, .page-interview-child .sect-challenge .wrap {
    gap: 47px;
  }
  .page-interview-child .sect-myjob .wrap .box, .page-interview-child .sect-challenge .wrap .box {
    width: 42%;
  }
  .page-interview-child .sect-myjob .wrap img, .page-interview-child .sect-challenge .wrap img {
    width: 52vw;
  }
  .page-interview-child .sect-private .inner-container::after {
    width: 65px;
    height: 54vw;
    right: -80px;
    background-size: contain;
  }
  .page-interview-child .sect-message .wrap {
    align-items: flex-end;
  }
  .page-interview-child .sect-message .wrap .box {
    padding: 0 30px 30px 30px;
    margin: auto;
  }
}
@media only screen and (max-width:768px) {
  .page-interview-child .staff-header .name-en {
    font-size: 5rem;
    margin-bottom: 12px;
    padding-bottom: 5px;
  }
  .page-interview-child .staff-header .name {
    font-size: 2.6rem;
  }
  .page-interview-child .staff-header .box {
    font-size: 1.4rem;
  }
  .page-interview-child .staff-header .img-chart {
    width: 38%;
    height: auto;
    left: 31%;
    z-index: 1;
  }
  .page-interview-child .sub-title {
    font-size: 3.2rem;
  }
  .page-interview-child .sect-story h2 {
    font-size: 2.6rem;
    margin: 50px 0 36px;
  }
  .page-interview-child .sect-story .bg {
    height: 70vw;
    top: 32%;
  }
  .page-interview-child .sect-myjob, .page-interview-child .sect-challenge {
    margin-top: 20px;
    margin-bottom: 180px;
  }
  .page-interview-child .sect-myjob .wrap, .page-interview-child .sect-challenge .wrap {
    flex-direction: column;
    gap: 47px;
  }
  .page-interview-child .sect-myjob .wrap .box, .page-interview-child .sect-challenge .wrap .box {
    max-width: 600px;
    width: 90%;
    margin: auto;
    position: initial;
    -webkit-transform: none;
            transform: none;
  }
  .page-interview-child .sect-myjob .wrap img, .page-interview-child .sect-challenge .wrap img {
    width: 90%;
  }
  .page-interview-child .sect-myjob .bg, .page-interview-child .sect-challenge .bg {
    width: 100vw;
    height: 82vw;
    height: 600px;
    top: 25%;
    -webkit-transform: none;
            transform: none;
  }
  .page-interview-child .sect-challenge .wrap img {
    margin-right: -90px;
  }
  .page-interview-child .sect-private {
    margin-bottom: 70px;
  }
  .page-interview-child .sect-private .inner-container::after {
    width: 65px;
    height: 54vw;
    right: -80px;
    background-size: contain;
  }
  .page-interview-child .sect-private .bg {
    height: 62vw;
    height: 480px;
  }
  .page-interview-child .sect-message .wrap {
    flex-direction: column;
    align-items: flex-end;
  }
  .page-interview-child .sect-message .wrap .box {
    padding: 70px 30px;
    margin: auto;
    width: 100%;
  }
  .page-interview-child .sect-message .wrap img {
    width: 100%;
  }
  .page-interview-child .sect-good {
    background-color: #dcdcdc;
  }
  .page-interview-child .sect-good .goodpoint {
    background-color: #dcdcdc;
    font-size: 2rem;
  }
  .page-interview-child .sect-good .banzai {
    font-size: 2.2rem;
  }
  .page-interview-child .sect-good .box {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width:630px) {
  .page-interview-child .staff-header {
    height: 600px;
    padding-top: 50px;
  }
  .page-interview-child .staff-header .name-en {
    font-size: 4.2rem;
  }
  .page-interview-child .staff-header .name {
    font-size: 2.2rem;
  }
  .page-interview-child .staff-header .img-chart {
    width: 40%;
    height: auto;
    left: 4%;
    bottom: 55px;
  }
  .page-interview-child .staff-header .img-header {
    width: 60%;
    height: auto;
    left: 40%;
    left: inherit;
    right: 0;
  }
  .page-interview-child .sect-story h2 {
    font-size: 2.4rem;
    margin: 30px 0 26px;
  }
  .page-interview-child .sect-story .bg {
    height: 500px;
  }
  .page-interview-child .text {
    font-size: 1.5rem;
  }
  .page-interview-child .sect-myjob .wrap img, .page-interview-child .sect-challenge .wrap img {
    width: 95%;
  }
  .page-interview-child .sect-myjob .bg, .page-interview-child .sect-challenge .bg {
    height: 550px;
  }
  .page-interview-child .sect-challenge .wrap img {
    margin-right: -40px;
  }
  .page-interview-child .sect-private .bg {
    height: 390px;
  }
  .page-interview-child .sect-good .banzai {
    font-size: 2rem;
    margin-bottom: 37px;
  }
  .page-interview-child .sect-good .banzai::before {
    margin-right: 40px;
    height: 70px;
  }
  .page-interview-child .sect-good .banzai::after {
    margin-left: 40px;
    height: 70px;
  }
  .page-interview-child .sect-good .banzai .pc-none {
    display: block;
  }
  .page-interview-child .sect-good .box {
    padding: 30px;
  }
}
@media only screen and (max-width:430px) {
  .page-interview-child .staff-header {
    height: 520px;
    padding-top: 32px;
  }
  .page-interview-child .staff-header .name-en {
    font-size: 4rem;
  }
  .page-interview-child .staff-header .name {
    font-size: 2.1rem;
  }
  .page-interview-child .staff-header .img-chart {
    width: 50%;
    height: auto;
    left: 1%;
    bottom: 5px;
  }
  .page-interview-child .staff-header .img-header {
    width: 68%;
    height: auto;
    left: inherit;
    right: -48px;
  }
  .page-interview-child .sect-story {
    margin-top: 50px;
  }
  .page-interview-child .sect-story h2 {
    font-size: 2rem;
  }
  .page-interview-child .sect-story .bg {
    height: 450px;
  }
  .page-interview-child .sect-myjob .bg, .page-interview-child .sect-challenge .bg {
    height: 86%;
  }
  .page-interview-child .sect-myjob, .page-interview-child .sect-challenge {
    margin-bottom: 130px;
  }
  .page-interview-child .sect-private {
    padding-top: 50px;
  }
  .page-interview-child .sect-private .inner-container {
    width: 95%;
    margin: auto;
  }
  .page-interview-child .sect-private .inner-container::after {
    content: none;
  }
  .page-interview-child .sect-good {
    padding: 50px 0 80px;
  }
  .page-interview-child .sect-good .banzai {
    font-size: 1.8rem;
  }
  .page-interview-child .sect-good .box {
    font-size: 1.5rem;
  }
}

.page-data {
  color: #E83816;
}
.page-data p {
  line-height: 1.2;
}
.page-data .p-title {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: solid 2px #E83816;
  padding-bottom: 8px;
}
.page-data .p-band {
  background-color: #E83816;
  color: #fff;
  font-size: 2.2rem;
  line-height: 0.8;
  padding: 14px 25px;
  margin-bottom: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-data .number84 {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-weight: bold;
  white-space: nowrap;
}
.page-data .number84 span {
  font-size: 8.4rem;
  font-weight: 900;
  font-family: "Lato", sans-serif;
  margin-right: 8px;
}
.page-data .number68 {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.6rem;
  font-weight: bold;
  white-space: nowrap;
}
.page-data .number68 span {
  font-size: 6.8rem;
  font-weight: 900;
  font-family: "Lato", sans-serif;
  margin-right: 8px;
}
.page-data .number-big {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 7rem;
  font-weight: bold;
  margin-bottom: 12px;
  white-space: nowrap;
}
.page-data .number-big span {
  font-size: 29rem;
  font-weight: 900;
  font-family: "Lato", sans-serif;
  margin-right: 8px;
}
.page-data .family-num {
  font-size: 6.8rem;
}
.page-data .wrap {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.page-data .wrap .box {
  background-color: #F2f2f2;
  border-radius: 20px;
  padding: 30px 33px;
  margin: auto;
}
.page-data .wrap .box .box-outer {
  display: flex;
  flex-direction: column;
}
.page-data .wrap02 .box-outer {
  width: 54%;
}
.page-data {
  /* ワイド */
}
.page-data .wrap .box-wide {
  width: 100%;
  margin-bottom: 10px;
}
.page-data .wrap .box-wide .box-inner {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  justify-content: space-between;
  padding: 0 20px;
}
.page-data .wrap03 .box-outer {
  width: 55%;
}
.page-data .wrap03 .box-outer .box {
  width: 100%;
  margin-bottom: 20px;
}
.page-data .wrap03 .box-outer .box02, .page-data .wrap03 .box-outer .box03 {
  display: flex;
  gap: 20px;
}
.page-data .wrap03 .box-outer .box02 .box, .page-data .wrap03 .box-outer .box03 .box {
  width: 50%;
}
.page-data .wrap03 .box-outer .box02 .box-red, .page-data .wrap03 .box-outer .box03 .box-red {
  color: #fff;
}
.page-data .wrap03 .box-outer .box02 .box-red .p-title, .page-data .wrap03 .box-outer .box03 .box-red .p-title {
  border-bottom: solid 2px #fff;
}
.page-data .wrap03 .img-staff {
  margin: auto;
}
.page-data .wrap04 {
  justify-content: flex-end;
  align-items: center;
}
.page-data .wrap04 .img-staff {
  margin: auto;
  width: 32%;
  max-height: 660px;
}
.page-data .wrap07 .box-image, .page-data .wrap08 .box-image {
  max-width: 620px;
  width: 50%;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
}
.page-data .wrap08 {
  flex-direction: row-reverse;
}
.page-data .wrap10 {
  margin-bottom: 0;
}
.page-data .wrap10 .box-image {
  width: 100%;
}
.page-data .wrap10 .box-image img {
  width: 100%;
  height: auto;
}
.page-data .img-staffs {
  width: 100%;
  height: auto;
}
.page-data {
  /* 創業・法人設立・店舗数 */
}
.page-data .data-founding, .page-data .data-incorporation, .page-data .data-store {
  width: 32%;
}
.page-data {
  /* 従業員数 */
}
.page-data .data-employee {
  width: 43%;
}
.page-data {
  /* 平均年齢 */
}
.page-data {
  /* 新卒・中途比率 */
}
.page-data {
  /* 社員男女割合 */
}
.page-data {
  /* 年間休日 */
}
.page-data .data-holiday, .page-data .data-dayoff {
  background-color: #E83816 !important;
}
.page-data {
  /* 持っている資格 */
}
.page-data .data-chart {
  width: 68% !important;
}
.page-data .data-chart .p-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-data .data-chart .legend {
  background-color: #fff;
  padding: 18px 25px;
  color: #E83816;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -100px;
}
.page-data .data-chart .legend p {
  line-height: 1.4;
}
.page-data .data-chart .img-chart {
  margin: auto;
  margin-right: 0;
  margin-top: -30px;
  display: block;
  max-width: 584px;
  width: 80%;
  height: auto;
}
.page-data {
  /* 働きやすい環境 */
}
.page-data .data-good-working {
  width: 70%;
  border-radius: 20px;
  padding: 30px 33px 20px;
  background-color: #E83816 !important;
}
.page-data .data-good-working .p-title2 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 20px;
}
.page-data .data-good-working .p-title3 {
  font-size: 1.6rem;
  font-weight: bold;
}
.page-data .data-good-working .box-wrap {
  display: flex;
  align-items: flex-start;
}
.page-data .data-good-working .box-wrap .box-wide .p-title3 {
  margin-bottom: 30px;
}
.page-data .data-good-working .box-wrap .box-wide .box-inner {
  padding: 0 10px;
}
.page-data .data-good-working .box-wrap .box {
  width: 43%;
}
.page-data .data-good-working .box-wrap .box02 {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-data .data-good-working .box-wrap .box02 .box {
  width: 100%;
  padding: 10px 30px 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  letter-spacing: 0;
}
.page-data .data-good-working .box-wrap .box02 .box .number84 {
  margin: 0;
}
.page-data .data-good-working .box-wrap .box02 .box .number84 span {
  line-height: 1;
}
.page-data {
  /* 1日の接客人数・保険と自費割合 */
}
.page-data .data-guests {
  width: 27%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-data .data-guests .box {
  width: 100%;
  padding: 20px 33px 10px;
}
.page-data {
  /* 週末の過ごし方 */
}
.page-data .data-family {
  max-width: 620px;
  width: 50%;
  height: 600px;
}
.page-data .data-family .p-text {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 18px;
  margin-left: 20px;
}
.page-data .data-family .box-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: auto;
}
.page-data .data-family .box-wrap li {
  background-color: #E83816;
  color: #fff;
  border-radius: 100px;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-data .data-family .box-wrap li .p-label {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.page-data .data-family .box-wrap li .num {
  font-family: "Lato", sans-serif;
  line-height: 1;
  font-weight: 900;
  margin-left: 10px;
}
.page-data .data-family .box-wrap li .num span {
  font-size: 3rem;
}
.page-data .data-family .box-wrap li.icon {
  background-color: transparent;
}
.page-data {
  /* 学生時代の部活 */
}
.page-data .data-club {
  max-width: 620px;
  width: 50%;
  height: 600px;
}
.page-data .data-club .box-wrap li {
  display: flex;
  font-weight: 900;
  margin-bottom: 30px;
}
.page-data .data-club .box-wrap li .rank {
  font-size: 5rem;
  white-space: nowrap;
}
.page-data .data-club .box-wrap li .rank span {
  font-size: 2.6rem;
}
.page-data .data-club .box-wrap li .name {
  font-size: 4.6rem;
  margin-left: 25px;
}
.page-data {
  /* 入社の決め手 */
}
.page-data .data-decision {
  max-width: 620px;
  width: 50%;
  font-weight: bold;
}
.page-data .data-decision .p-label {
  font-size: 2.2rem;
  margin: 50px 0 10px;
}
.page-data .data-decision .border {
  border: solid 2px #E83816;
  padding: 15px 22px;
  background-color: #fff;
}
.page-data .data-decision .box-wrap li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.page-data .data-decision .box-wrap li p {
  font-size: 2.6rem;
  margin-left: 28px;
}
.page-data .data-decision .box-wrap02 li {
  display: flex;
  align-items: center;
}
.page-data .data-decision .box-wrap02 li p {
  font-size: 2rem;
  margin-left: 28px;
}
.page-data .data-decision .box-wrap02 li:first-child {
  margin-bottom: 10px;
}
.page-data {
  /* 入社の決め手 */
}
.page-data .data-good {
  max-width: 620px;
  width: 50%;
  font-size: 2.2rem;
  font-weight: bold;
  background-color: #E83816 !important;
}
.page-data .data-good .p-label {
  color: #fff;
  margin-bottom: 20px;
}
.page-data .data-good .box-wrap {
  background-color: #fff;
  padding: 35px 32px;
}
.page-data .data-good .box-wrap li {
  margin-bottom: 16px;
  font-size: 2rem;
  position: relative;
  padding-left: 30px;
}
.page-data .data-good .box-wrap li::before {
  content: "";
  background-image: url("./images/data/icon-check.svg");
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 8px;
}
.page-data {
  /* foryouの好きなところ */
}
.page-data .data-like {
  width: 100%;
  background-color: #E83816 !important;
  color: #fff;
  display: flex;
  gap: 40px;
  font-weight: bold;
}
.page-data .data-like .p-label {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.page-data .data-like .box-inner {
  width: 50%;
}
.page-data .data-like .box-inner ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.page-data .data-like .box-inner ul li p {
  font-size: 2.4rem;
  padding: 30px 40px;
  background-color: #fff;
  color: #E83816;
  border-radius: 50px;
  line-height: 1;
  width: 100%;
  position: relative;
}
.page-data .data-like .box-inner ul li p:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-top: -10px;
  border-right-color: #fff;
  left: -18px;
  top: 50%;
}
.page-data .data-like .box-inner ul li:nth-child(odd) {
  flex-direction: row-reverse;
}
.page-data .data-like .box-inner ul li:nth-child(odd) p:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: inherit;
  right: -18px;
  top: 50%;
}
.page-data .data-like .box-inner2 {
  width: 50%;
}
.page-data .data-like .box-inner2 .p-label {
  margin-bottom: 30px;
}
.page-data .data-like .box-inner2 ul {
  padding: 35px;
  background-color: #fff;
  color: #E83816;
}
.page-data .data-like .box-inner2 ul li {
  margin-bottom: 16px;
  font-size: 2rem;
  position: relative;
  padding-left: 30px;
}
.page-data .data-like .box-inner2 ul li::before {
  content: "";
  background-image: url("./images/data/icon-check.svg");
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 8px;
}
.page-data .data-like .box-inner2 .img-icon {
  margin: auto;
  display: block;
  margin-top: 10px;
}
.page-data {
  /* 背景アイコン設定 */
}
.page-data .data-store, .page-data .data-employee, .page-data .data-age,
.page-data .data-male-female, .page-data .data-new-mid,
.page-data .data-insurance, .page-data .data-club,
.page-data .data-living-alone, .page-data .data-living-with {
  position: relative;
  z-index: 0;
}
.page-data .data-store::after, .page-data .data-employee::after, .page-data .data-age::after,
.page-data .data-male-female::after, .page-data .data-new-mid::after,
.page-data .data-insurance::after, .page-data .data-club::after,
.page-data .data-living-alone::after, .page-data .data-living-with::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 120px;
  height: 120px;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.page-data .data-store::after {
  background-image: url(./images/data/icon-house.svg);
  -webkit-transform: inherit;
          transform: inherit;
  left: 60%;
}
.page-data .data-employee::after {
  background-image: url(./images/data/icon-peoples.svg);
  width: 100%;
  height: 30%;
  top: 60%;
}
.page-data .data-age::after {
  background-image: url(./images/data/icon_people.svg);
}
.page-data .data-male-female::after {
  background-image: url(./images/data/icon-man-woman.svg);
}
.page-data .data-new-mid::after {
  background-image: url(./images/data/icon-students.svg);
  width: 160px;
  height: 100px;
  top: 38%;
}
.page-data .data-insurance::after {
  background-image: url(./images/data/icon-hand-heart.svg);
  width: 100px;
  height: 90px;
  left: 74%;
}
.page-data .data-club::after {
  background-image: url(./images/data/icon-sports.svg);
  width: 100%;
  height: 400px;
}
.page-data .data-living-alone::after,
.page-data .data-living-with::after {
  background-image: url(./images/data/icon-house.svg);
  width: 160px;
  height: 160px;
  width: 150%;
  height: 185%;
  top: -50%;
  left: 41%;
}
@media only screen and (max-width:1024px) {
  .page-data .p-title {
    font-size: 1.8rem;
  }
  .page-data .number84 {
    font-size: 3rem;
  }
  .page-data .number84 span {
    font-size: 7rem;
    margin-right: 8px;
  }
  .page-data .number68 {
    font-size: 2rem;
  }
  .page-data .number68 span {
    font-size: 5.2rem;
    margin-right: 8px;
  }
  .page-data .number-big {
    font-size: 5rem;
    margin-bottom: 12px;
  }
  .page-data .number-big span {
    font-size: 22rem;
    margin-right: 8px;
  }
  .page-data .p-band {
    font-size: 2rem;
    padding: 12px 22px;
    margin-bottom: 22px;
  }
  .page-data .wrap .box {
    padding: 18px 33px;
  }
  .page-data .wrap03 .img-staff {
    height: 510px;
  }
  .page-data .wrap04 .img-staff {
    height: 500px;
  }
  .page-data .data-employee {
    padding: 30px 33px !important;
  }
  .page-data .data-good-working {
    padding: 30px 10px 20px;
  }
  .page-data .data-good-working .p-title2 {
    font-size: 2.3rem;
    margin-left: 18px;
  }
  .page-data .data-good-working .box-wrap .box {
    width: 40%;
    padding: 23px 16px;
  }
  .page-data .data-good-working .box-wrap .box-wide .p-title3 {
    margin-bottom: 10px;
  }
  .page-data .data-good-working .box-wrap .box02 {
    gap: 10px;
  }
  .page-data .data-good-working .box-wrap .box02 .box {
    padding: 10px 20px 5px;
  }
  .page-data .data-good-working .box-wrap .box02 .box .number84 span {
    font-size: 5.6rem;
  }
  .page-data .data-family {
    height: 500px;
    padding: 18px 10px !important;
  }
  .page-data .data-family .p-text {
    font-size: 2rem;
  }
  .page-data .data-family .box-wrap {
    gap: 0;
    justify-content: space-evenly;
  }
  .page-data .data-family .box-wrap li {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }
  .page-data .data-family .box-wrap li .img-icon {
    width: 110px;
    height: auto;
  }
  .page-data .data-family .box-wrap li .num span {
    font-size: 2rem;
  }
  .page-data .data-family .box-wrap li .p-label {
    font-size: 1.5rem;
  }
  .page-data .family-num {
    font-size: 4rem;
  }
  .page-data .data-club {
    height: 500px;
  }
  .page-data .data-club .box-wrap li .name {
    font-size: 3.2rem;
    margin-left: 20px;
  }
  .page-data .data-club .box-wrap li .rank {
    font-size: 4.4rem;
  }
  .page-data .data-club .box-wrap li .rank span {
    font-size: 2rem;
  }
  .page-data .data-decision .p-label {
    font-size: 2rem;
    margin: 35px 0 10px;
  }
  .page-data .data-decision .box-wrap li p {
    font-size: 2.2rem;
    margin-left: 24px;
  }
  .page-data .data-decision .box-wrap02 li p {
    font-size: 1.7rem;
    margin-left: 22px;
  }
  .page-data .data-good {
    font-size: 2rem;
    padding: 20px 23px !important;
  }
  .page-data .data-good .p-label {
    margin-bottom: 12px;
  }
  .page-data .data-good .box-wrap {
    padding: 15px 16px;
  }
  .page-data .data-good .box-wrap li {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
  .page-data .data-like .p-label {
    font-size: 2rem;
  }
  .page-data .data-like .box-inner ul li {
    gap: 18px;
    margin-bottom: 14px;
  }
  .page-data .data-like .box-inner ul li .img-icon {
    width: 60px;
    height: auto;
  }
  .page-data .data-like .box-inner ul li p {
    font-size: 1.8rem;
    padding: 27px 34px;
  }
  .page-data .data-like .box-inner2 .p-label {
    margin-bottom: 16px;
  }
  .page-data .data-like .box-inner2 ul {
    padding: 20px;
  }
  .page-data .data-like .box-inner2 .img-icon {
    margin-top: 20px;
    width: 100%;
    height: auto;
  }
  .page-data {
    /* 背景アイコン */
  }
  .page-data .data-store::after, .page-data .data-employee::after, .page-data .data-age::after,
  .page-data .data-male-female::after, .page-data .data-new-mid::after,
  .page-data .data-insurance::after, .page-data .data-club::after,
  .page-data .data-living-alone::after, .page-data .data-living-with::after {
    background-size: 80%;
  }
}
@media only screen and (max-width:850px) {
  .page-data .data-family .box-wrap li {
    width: 100px;
    height: 100px;
  }
  .page-data .data-family .box-wrap li .img-icon {
    width: 100px;
    height: auto;
  }
}
@media only screen and (max-width:768px) {
  .page-data .wrap {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .page-data .wrap .box {
    width: 100%;
    max-width: 620px;
    margin: auto;
  }
  .page-data .data-male-female {
    margin-top: 16px !important;
  }
  .page-data .wrap02 {
    margin-top: 16px;
  }
  .page-data .wrap03 .box-outer .box {
    margin-bottom: 16px;
  }
  .page-data .wrap03 .box-outer .box02, .page-data .wrap03 .box-outer .box03 {
    gap: 16px;
  }
  .page-data .wrap03 .box-outer .box02 .box, .page-data .wrap03 .box-outer .box03 .box {
    width: calc((100% - 16px) / 2);
  }
  .page-data .wrap .box-outer {
    width: 100%;
    max-width: 620px;
    margin: auto;
  }
  .page-data .data-good-working {
    max-width: 620px;
    margin: auto;
    width: 100%;
  }
  .page-data .data-guests {
    flex-direction: row;
    gap: 20px;
    width: 100%;
    max-width: 620px;
    margin: auto;
  }
  .page-data .data-guests .box {
    width: 47%;
  }
  .page-data .data-chart {
    width: 100% !important;
    max-width: 620px;
    margin: auto;
  }
  .page-data .img-staff {
    display: none;
  }
  .page-data .wrap02 .data-employee {
    width: 55%;
    margin-left: calc((100vw - 660px) / 2);
  }
  .page-data .wrap02 {
    position: relative;
  }
  .page-data .wrap02::after {
    content: "";
    background-image: url("./images/data/clipping01.webp");
    width: 210px;
    height: 350px;
    position: absolute;
    right: 2em;
    top: 20px;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .page-data .data-like {
    flex-direction: column;
  }
  .page-data .data-like .box-inner, .page-data .data-like .box-inner2 {
    width: 100%;
  }
  .page-data .data-like .box-inner {
    margin-top: 20px;
  }
  .page-data .data-family {
    height: auto;
  }
  .page-data .data-family .box-wrap {
    max-width: 460px;
  }
}
@media only screen and (max-width:630px) {
  .page-data .wrap02 .data-employee {
    width: 56%;
    margin-left: 5px;
  }
  .page-data .wrap02 {
    position: relative;
  }
  .page-data .wrap02::after {
    width: 160px;
    height: 260px;
    right: 2em;
    top: 20px;
  }
  .page-data .number-big {
    font-size: 3.6rem;
  }
  .page-data .number-big span {
    font-size: 16rem;
    margin-right: 0;
  }
  .page-data .data-chart .legend {
    padding: 18px 12px;
    margin-left: -20px;
    font-size: 1.3rem;
  }
  .page-data .data-good-working {
    padding: 20px 10px 16px;
  }
  .page-data .data-good-working .p-title2 {
    font-size: 2rem;
    margin-left: 14px;
  }
  .page-data .data-good-working .p-title3 {
    font-size: 1.5rem;
  }
  .page-data .data-good-working .box-wrap .box {
    width: 45%;
    padding: 23px 10px;
  }
  .page-data .data-good-working .box-wrap .box-wide .p-title3 {
    margin-bottom: 10px;
  }
  .page-data .data-good-working .box-wrap .box02 {
    width: 52%;
    gap: 10px;
  }
  .page-data .data-good-working .box-wrap .box02 .box {
    padding: 10px;
  }
  .page-data .data-good-working .box-wrap .box02 .box .number84 span {
    font-size: 5rem;
  }
}
@media only screen and (max-width:480px) {
  .page-data .p-title {
    font-size: 1.6rem;
  }
  .page-data .wrap .box {
    padding: 18px 12px;
  }
  .page-data .number84 span {
    font-size: 5.6rem;
    margin-right: 0;
  }
  .page-data .number-big {
    font-size: 3rem;
  }
  .page-data .number-big span {
    font-size: 13rem;
  }
  .page-data .wrap02 .data-employee {
    width: 70%;
    padding: 30px 13px !important;
  }
  .page-data .wrap02::after {
    width: 140px;
    height: 220px;
    right: 0;
  }
  .page-data .data-good-working .box-wrap {
    flex-direction: column;
    gap: 10px;
    padding: 5px 1em;
  }
  .page-data .data-good-working .box-wrap .box-wide .box-inner {
    gap: 20px;
    justify-content: space-evenly;
  }
  .page-data .data-good-working .box-wrap .box, .page-data .data-good-working .box-wrap .box02 {
    width: 100%;
  }
  .page-data .data-good-working .box-wrap .box .box, .page-data .data-good-working .box-wrap .box02 .box {
    padding: 20px;
  }
  .page-data .data-good-working .box-wrap .box {
    padding: 20px;
  }
  .page-data .data-guests {
    flex-direction: column;
  }
  .page-data .data-guests .box {
    width: 100%;
  }
  .page-data .data-chart .img-chart {
    margin-top: 0;
    width: 100%;
  }
  .page-data .data-chart .legend {
    padding: 18px;
    font-size: 1.4rem;
    width: 100%;
    margin: auto;
  }
  .page-data .data-like .box-inner ul li p {
    font-size: 1.6rem;
    padding: 24px 20px;
  }
  .page-data .data-like .box-inner2 ul {
    padding: 16px;
  }
  .page-data .data-like .box-inner2 ul li {
    margin-bottom: 14px;
    font-size: 1.8rem;
  }
  .page-data .data-club {
    height: 440px;
  }
  .page-data .data-club .box-wrap li .rank {
    font-size: 3rem;
  }
  .page-data .data-club .box-wrap li .name {
    font-size: 2.6rem;
    margin-left: 20px;
  }
}
@media only screen and (max-width:375px) {
  .page-data .number84 {
    font-size: 2rem;
  }
  .page-data .wrap02 {
    overflow: hidden;
  }
  .page-data .wrap02 .data-employee {
    width: 75%;
  }
  .page-data .wrap02::after {
    width: 110px;
    height: 180px;
    right: -10px;
    top: 70px;
  }
  .page-data .data-good-working .p-title2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .page-data .data-decision .border {
    padding: 10px 18px;
  }
  .page-data .data-decision .box-wrap li p {
    font-size: 1.8rem;
    margin-left: 19px;
  }
  .page-data .data-decision .box-wrap02 li p {
    font-size: 1.5rem;
    margin-left: 18px;
  }
  .page-data .data-good .box-wrap li {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
  .page-data .data-like .box-inner ul li .img-icon {
    width: 50px;
  }
  .page-data .data-like .box-inner ul li p {
    font-size: 1.5rem;
  }
  .page-data .data-like .box-inner2 ul li {
    font-size: 1.6rem;
  }
}

.page-original-technique article .img-four {
  margin: 100px auto;
  width: 95%;
  height: auto;
  display: block;
}
.page-original-technique article .text {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  width: 100%;
  margin: auto;
}
.page-original-technique article .img-text {
  margin: 145px auto;
  display: block;
  width: 100%;
  height: auto;
}
.page-original-technique article .wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 170px;
  gap: 25px;
  font-weight: 500;
}
.page-original-technique article .wrap .box {
  width: 50%;
}
.page-original-technique article .wrap h3 {
  font-size: 2.4rem;
  margin: 18px 0;
  line-height: 1.7;
}
.page-original-technique article .wrap p {
  line-height: 1.8;
  max-width: 580px;
}
.page-original-technique article .wrap ul {
  margin-top: 20px;
}
.page-original-technique article .wrap ul li {
  margin-bottom: 8px;
}
.page-original-technique article .wrap ul li h4 {
  font-size: 2rem;
}
.page-original-technique article .wrap ul li p {
  width: 90%;
  padding: 0 18px;
}
.page-original-technique article .wrap img {
  width: 50%;
  height: auto;
}
@media only screen and (max-width:1024px) {
  .page-original-technique article .text {
    font-size: 1.8rem;
  }
  .page-original-technique article .sp-none {
    display: none;
  }
  .page-original-technique article .wrap {
    justify-content: center;
    gap: 30px;
  }
  .page-original-technique article .wrap h3 {
    font-size: 1.8rem;
  }
  .page-original-technique article .wrap p {
    font-size: 1.4rem;
  }
  .page-original-technique article .wrap ul li h4 {
    font-size: 1.8rem;
  }
  .page-original-technique article .wrap ul li p {
    width: 100%;
  }
}
@media only screen and (max-width:768px) {
  .page-original-technique article .text {
    font-size: 1.6rem;
  }
  .page-original-technique article .img-four {
    margin: 60px auto;
  }
  .page-original-technique article .img-text {
    margin: 90px auto;
  }
  .page-original-technique article .wrap {
    flex-direction: column-reverse;
    margin-bottom: 120px;
  }
  .page-original-technique article .wrap .box {
    width: 100%;
  }
  .page-original-technique article .wrap img {
    width: 100%;
  }
  .page-original-technique article .wrap p {
    max-width: inherit;
  }
  .page-original-technique article .wrap ul li p {
    width: 100%;
  }
}

.page-training-system .img-training {
  margin: 67px auto;
  width: 100%;
  height: auto;
  display: block;
  max-width: 860px;
}
.page-training-system .text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
  width: 100%;
  margin: auto;
  max-width: 1000px;
  margin-bottom: 160px;
}
.page-training-system .img-text {
  display: block;
  height: auto;
  margin: auto;
  margin-right: 0;
  width: 100%;
  max-width: 1000px;
}
.page-training-system .heading-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}
.page-training-system .heading-wrap .sub-text {
  font-size: 1.8rem;
}
.page-training-system .p-title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.page-training-system .wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 124px;
}
.page-training-system .wrap .box {
  border: solid 1px #E83816;
}
.page-training-system .wrap .box h4 {
  font-size: 1.6rem;
  background-color: #E83816;
  color: #fff;
  padding: 15px;
  line-height: 1;
}
.page-training-system .wrap .box .inner-box {
  padding: 20px 25px 30px;
}
.page-training-system .wrap .box .inner-box h5 {
  font-size: 1.8rem;
  font-weight: bold;
}
.page-training-system .wrap01 .box:nth-child(1) {
  width: 45%;
  min-width: 470px;
}
.page-training-system .wrap01 .box:nth-child(1) .inner-box {
  display: flex;
}
.page-training-system .wrap01 .box:nth-child(1) .inner-box div {
  width: 50%;
}
.page-training-system .wrap01 .box:nth-child(2), .page-training-system .wrap01 .box:nth-child(3) {
  width: 25%;
  min-width: 260px;
}
.page-training-system .wrap02, .page-training-system .wrap03 {
  flex-wrap: wrap;
}
.page-training-system .wrap02 .box, .page-training-system .wrap03 .box {
  padding: 35px 25px;
  width: 24%;
  min-width: 220px;
  margin-bottom: 18px;
}
.page-training-system .wrap02 .box h4, .page-training-system .wrap03 .box h4 {
  color: #E83816;
  background-color: transparent;
  padding: 0;
  margin-bottom: 18px;
}
.page-training-system .wrap03 .box {
  padding: 35px 18px;
}
.page-training-system .wrap03 .box h4 {
  margin-bottom: 8px;
}
.page-training-system .wrap-photo {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.page-training-system .wrap-photo img {
  border-style: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-training-system .wrap-photo .div1 {
  grid-area: 1/1/5/5;
}
.page-training-system .wrap-photo .div2 {
  grid-area: 1/5/3/7;
}
.page-training-system .wrap-photo .div3 {
  grid-area: 3/5/7/7;
}
.page-training-system .wrap-photo .div4 {
  grid-area: 5/1/7/3;
}
.page-training-system .wrap-photo .div5 {
  grid-area: 5/3/7/5;
}
@media only screen and (max-width:1024px) {
  .page-training-system .wrap01 {
    flex-wrap: wrap;
    gap: 10px;
  }
  .page-training-system .wrap01 .box:nth-child(1) {
    width: 100%;
    min-width: 470px;
  }
  .page-training-system .wrap01 .box:nth-child(2), .page-training-system .wrap01 .box:nth-child(3) {
    width: calc(50% - 10px);
    min-width: 260px;
  }
  .page-training-system .wrap02, .page-training-system .wrap03 {
    justify-content: flex-start;
    gap: 10px;
  }
  .page-training-system .wrap02 .box, .page-training-system .wrap03 .box {
    width: calc(33% - 20px);
    margin-bottom: 0;
  }
}
@media only screen and (max-width:768px) {
  .page-training-system .heading-wrap .sub-text {
    font-size: 1.5rem;
  }
  .page-training-system .p-title {
    font-size: 2.2rem;
  }
  .page-training-system .wrap02, .page-training-system .wrap03 {
    justify-content: flex-start;
    gap: 10px;
    justify-content: center;
  }
  .page-training-system .wrap02 .box, .page-training-system .wrap03 .box {
    width: calc(50% - 10px);
    margin-bottom: 0;
    min-width: 300px;
  }
}
@media only screen and (max-width:630px) {
  .page-training-system .text {
    font-size: 1.6rem;
    margin-bottom: 110px;
  }
  .page-training-system .wrap01 {
    flex-wrap: wrap;
    gap: 10px;
  }
  .page-training-system .wrap01 .box:nth-child(1) {
    width: 100%;
    min-width: 300px;
  }
  .page-training-system .wrap01 .box:nth-child(1) .inner-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-training-system .wrap01 .box:nth-child(1) .inner-box div {
    width: 100%;
  }
  .page-training-system .wrap01 .box:nth-child(2), .page-training-system .wrap01 .box:nth-child(3) {
    width: 100%;
    min-width: 300px;
  }
  .page-training-system .wrap02, .page-training-system .wrap03 {
    justify-content: flex-start;
    gap: 10px;
    justify-content: center;
  }
  .page-training-system .wrap02 .box, .page-training-system .wrap03 .box {
    width: 100%;
    margin-bottom: 0;
    min-width: 300px;
  }
}

.page-career-plan .text {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2;
  margin: 60px auto 20px;
  text-align: center;
}
.page-career-plan .img-box {
  position: relative;
}
.page-career-plan .img-box img {
  width: 100%;
  height: auto;
}
.page-career-plan .img-box .img-text {
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1081px;
  z-index: 1;
}
.page-career-plan .section-career {
  border: solid 4px #E83816;
  border-radius: 100px;
  padding: 73px 120px;
  margin: 135px auto 126px;
}
.page-career-plan .section-career h3 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  text-underline-offset: 14px;
}
.page-career-plan .section-career p {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.9;
  margin: auto;
}
.page-career-plan .bg-red {
  background-color: #E83816;
  width: 100vw;
  height: 390px;
  position: relative;
}
.page-career-plan .bg-red .img-text {
  position: absolute;
  bottom: 50px;
  right: 70px;
  max-width: 700px;
  width: 90%;
  height: auto;
}
.page-career-plan .section-chart {
  padding: 100px 0 250px;
}
.page-career-plan .section-chart h3 {
  font-size: 4rem;
  margin-bottom: 50px;
}
.page-career-plan .section-chart .img-wrapper {
  width: 100%;
}
.page-career-plan .section-chart .img-chart {
  max-width: 1174px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width:1024px) {
  .page-career-plan .section-career {
    border-radius: 80px;
    padding: 64px 80px;
    margin: 135px auto 126px;
  }
  .page-career-plan .section-career h3 {
    font-size: 2.2rem;
  }
  .page-career-plan .section-career p {
    font-size: 1.8rem;
  }
  .page-career-plan .section-chart h3 {
    font-size: 3rem;
  }
}
@media only screen and (max-width:768px) {
  .page-career-plan .text {
    font-size: 1.8rem;
  }
  .page-career-plan .img-box .img-wrapper {
    overflow-x: scroll;
  }
  .page-career-plan .img-box .img-career {
    min-width: 450px;
  }
  .page-career-plan .section-career {
    border-radius: 60px;
    padding: 64px 40px;
  }
  .page-career-plan .section-career h3 {
    font-size: 2rem;
    text-underline-offset: 8px;
  }
  .page-career-plan .section-career p {
    font-size: 1.6rem;
  }
  .page-career-plan .bg-red {
    height: 260px;
  }
  .page-career-plan .bg-red .img-text {
    bottom: 50px;
    right: 10px;
    max-width: 500px;
  }
  .page-career-plan .section-chart h3 {
    font-size: 3rem;
  }
  .page-career-plan .section-chart .img-wrapper {
    overflow-x: scroll;
  }
  .page-career-plan .section-chart .img-chart {
    min-width: 450px;
  }
}
@media only screen and (max-width:630px) {
  .page-career-plan .text {
    font-size: 1.5rem;
    margin: 30px auto 20px;
  }
  .page-career-plan .bg-red {
    height: 220px;
  }
  .page-career-plan .section-career {
    padding: 46px 20px;
  }
  .page-career-plan .section-career h3 {
    font-size: 2rem;
  }
  .page-career-plan .section-career p {
    font-size: 1.5rem;
  }
  .page-career-plan .section-chart {
    padding: 70px 0 120px;
  }
  .page-career-plan .section-chart h3 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width:425px) {
  .page-career-plan .section-career {
    margin: 100px auto 90px;
  }
  .page-career-plan .section-career h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .page-career-plan .section-career p {
    font-size: 1.5rem;
  }
}

.page-message .h2-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-message .h2-label-wrap .h2-label.classActive .move-label-in {
  font-size: 4rem;
}
.page-message .section-message {
  background-color: #E83816;
  color: #fff;
  overflow: hidden;
}
.page-message .section-message .wrap {
  width: 70%;
  max-width: 670px;
  margin-top: 50px;
}
.page-message .section-message .text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 20px;
}
.page-message .section-message .text-sign {
  margin: auto;
  margin-right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-message .section-message .inner-container {
  position: relative;
  padding: 100px 0 150px;
}
.page-message .section-message .img-president {
  position: absolute;
  bottom: 0;
  right: -8em;
  z-index: 1;
  max-width: 700px;
  width: 50%;
  height: auto;
  -o-object-position: bottom;
     object-position: bottom;
}
.page-message .section-message .img-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
  width: 90%;
  -o-object-position: bottom;
     object-position: bottom;
}
.page-message .section-business {
  padding: 90px 0 150px;
  background-color: #F2f2f2;
}
.page-message .section-business .text {
  margin: 50px auto 10px;
  font-size: 2rem;
}
.page-message .section-business .img-chart {
  width: 90%;
  height: auto;
  margin: auto;
  display: block;
  -o-object-position: top;
     object-position: top;
}
@media only screen and (max-width:1024px) {
  .page-message .section-message .wrap {
    width: 60%;
    max-width: 600px;
    margin-top: 50px;
  }
  .page-message .section-message .text {
    font-size: 1.8rem;
  }
  .page-message .section-business .text {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width:768px) {
  .page-message .h2-label-wrap .h2-label.classActive .move-label-in {
    font-size: 3rem;
  }
  .page-message .section-message .wrap {
    width: 100%;
    max-width: none;
    margin-top: 50px;
  }
  .page-message .section-message .text {
    font-size: 1.6rem;
  }
  .page-message .section-message .min-text {
    width: 75%;
  }
  .page-message .section-business .text {
    font-size: 1.6rem;
    margin: 30px auto 10px;
  }
}
@media only screen and (max-width:630px) {
  .page-message .h2-label-wrap .h2-label.classActive .move-label-in {
    font-size: 2.2rem;
  }
  .page-message .section-message .inner-container {
    padding: 100px 0 290px;
  }
  .page-message .section-message .wrap {
    width: 100%;
    max-width: none;
    margin-top: 50px;
  }
  .page-message .section-message .text {
    font-size: 1.5rem;
  }
  .page-message .section-message .min-text {
    width: 100%;
  }
  .page-message .section-message .text-sign {
    margin: auto;
    margin-right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .page-message .section-message .img-president {
    bottom: -40px;
    right: 2em;
    width: 60%;
  }
  .page-message .section-business {
    padding: 90px 0;
  }
  .page-message .section-business .text {
    font-size: 1.5rem;
    margin: 30px auto 10px;
  }
}
@media only screen and (max-width:425px) {
  .page-message .section-message .inner-container {
    padding: 100px 0 290px;
  }
  .page-message .section-message .img-president {
    bottom: -40px;
    right: 2em;
    width: 80%;
  }
}

.page-outline .section-overview, .page-outline .section-history {
  background-color: #E83816;
  padding: 140px 0 160px;
}
.page-outline .section-overview h2, .page-outline .section-history h2 {
  font-size: 3.6rem;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
.page-outline .wrap-img {
  padding: 97px 0;
}
.page-outline .wrap-img img {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: auto;
  display: block;
}
.page-outline td a {
  text-decoration: underline dashed 1px;
  text-underline-offset: 6px;
}
.page-outline td a:hover {
  color: #E83816;
}
@media only screen and (max-width:1024px) {
  .page-outline .section-overview h2, .page-outline .section-history h2 {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width:768px) {
  .page-outline .section-overview, .page-outline .section-history {
    padding: 100px 0 120px;
  }
  .page-outline .section-overview h2, .page-outline .section-history h2 {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width:530px) {
  .page-outline .section-overview, .page-outline .section-history {
    padding: 100px 0 120px;
  }
  .page-outline .section-overview h2, .page-outline .section-history h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
}

.page-store-list .inner-container {
  max-width: 1200px;
}
.page-store-list .box-link {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-store-list .box-link li a {
  font-size: 1.4rem;
  background-color: #E83816;
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
}
.page-store-list .box-link li:nth-child(2) a {
  background-color: #0AB7CE;
}
.page-store-list .box-link li:nth-child(3) a {
  background-color: #8E8C8C;
}
.page-store-list .box-explanation {
  font-size: 1.6rem;
  padding: 30px 30px;
  background-color: #F2f2f2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-right: 0;
  margin-top: -30px;
}
.page-store-list .box-explanation span {
  font-size: 1.1rem;
}
.page-store-list .section-clinic,
.page-store-list .section-esthetic,
.page-store-list .section-gym {
  padding: 110px 0 60px;
}
.page-store-list .section-clinic .h2-title,
.page-store-list .section-esthetic .h2-title,
.page-store-list .section-gym .h2-title {
  margin: 0 auto 40px;
}
.page-store-list .section-clinic .prefecture,
.page-store-list .section-esthetic .prefecture,
.page-store-list .section-gym .prefecture {
  font-size: 2.2rem;
  margin-left: 10px;
  position: relative;
  margin-bottom: 40px;
}
.page-store-list .section-clinic .prefecture::after,
.page-store-list .section-esthetic .prefecture::after,
.page-store-list .section-gym .prefecture::after {
  content: "";
  width: calc(100% - 80px);
  height: 2px;
  background-color: #E83816;
  position: absolute;
  right: 0px;
  top: 17px;
}
.page-store-list .section-clinic .wrap,
.page-store-list .section-esthetic .wrap,
.page-store-list .section-gym .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 70px;
}
.page-store-list .section-clinic .wrap li,
.page-store-list .section-esthetic .wrap li,
.page-store-list .section-gym .wrap li {
  width: calc((100% - 32px) / 3);
  min-width: 300px;
  background-color: #F2f2f2;
  padding: 34px 26px;
  border-radius: 40px;
}
.page-store-list .section-clinic .wrap li .img-store,
.page-store-list .section-esthetic .wrap li .img-store,
.page-store-list .section-gym .wrap li .img-store {
  width: 100%;
  height: auto;
}
.page-store-list .section-clinic .wrap li .box-store-map,
.page-store-list .section-esthetic .wrap li .box-store-map,
.page-store-list .section-gym .wrap li .box-store-map {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 8px;
}
.page-store-list .section-clinic .wrap li .store,
.page-store-list .section-esthetic .wrap li .store,
.page-store-list .section-gym .wrap li .store {
  font-size: 2.2rem;
  line-height: 1.4;
}
.page-store-list .section-clinic .wrap li .store span,
.page-store-list .section-esthetic .wrap li .store span,
.page-store-list .section-gym .wrap li .store span {
  display: inline-block;
}
.page-store-list .section-clinic .wrap li .map,
.page-store-list .section-esthetic .wrap li .map,
.page-store-list .section-gym .wrap li .map {
  font-size: 1.3rem;
  color: #fff;
  background-color: #E83816;
  line-height: 0.8;
  border-radius: 50px;
  width: 48px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 3px;
}
.page-store-list .section-clinic .wrap li .map:hover,
.page-store-list .section-esthetic .wrap li .map:hover,
.page-store-list .section-gym .wrap li .map:hover {
  background-color: transparent;
  border: solid #E83816;
  color: #E83816;
}
.page-store-list .section-clinic .wrap li .address,
.page-store-list .section-esthetic .wrap li .address,
.page-store-list .section-gym .wrap li .address {
  line-height: 1.4;
  margin-bottom: 5px;
}
.page-store-list .section-clinic .wrap li .access,
.page-store-list .section-esthetic .wrap li .access,
.page-store-list .section-gym .wrap li .access {
  font-size: 1.1rem;
  line-height: 1.54;
  margin-bottom: 3px;
}
.page-store-list .section-esthetic {
  background-color: #F2f2f2;
}
.page-store-list .section-esthetic .h2-title, .page-store-list .section-esthetic .store {
  color: #0AB7CE;
}
.page-store-list .section-esthetic .wrap li {
  background-color: #E6E6E6;
}
.page-store-list .section-esthetic .wrap li .map {
  background-color: #0AB7CE;
}
.page-store-list .section-esthetic .wrap li .map:hover {
  border: solid #0AB7CE;
  color: #0AB7CE;
}
.page-store-list .section-gym {
  background-color: #E6E6E6;
}
.page-store-list .section-gym .h2-title, .page-store-list .section-gym .store {
  color: #333333;
}
.page-store-list .section-gym .wrap li {
  background-color: #F2f2f2;
}
.page-store-list .section-gym .wrap li .map {
  background-color: #333333;
}
.page-store-list .section-gym .wrap li .map:hover {
  border: solid 1px #333333;
  color: #333333;
}
.page-store-list .section-gym .coming-soon {
  width: 100%;
  height: 300px;
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  background-color: #686868;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width:1024px) {
  .page-store-list .box-explanation {
    margin-top: 30px;
  }
  .page-store-list .section-clinic, .page-store-list .section-esthetic, .page-store-list .section-gym {
    padding: 90px 0 70px;
  }
  .page-store-list .section-clinic .wrap, .page-store-list .section-esthetic .wrap, .page-store-list .section-gym .wrap {
    gap: 8px;
  }
  .page-store-list .section-clinic .wrap li, .page-store-list .section-esthetic .wrap li, .page-store-list .section-gym .wrap li {
    width: calc((100% - 16px) / 3);
  }
}
@media only screen and (max-width:768px) {
  .page-store-list .section-clinic .wrap, .page-store-list .section-esthetic .wrap, .page-store-list .section-gym .wrap {
    gap: 10px;
  }
  .page-store-list .section-clinic .wrap li, .page-store-list .section-esthetic .wrap li, .page-store-list .section-gym .wrap li {
    width: calc((100% - 10px) / 2);
    min-width: 0;
  }
}
@media only screen and (max-width:530px) {
  .page-store-list .box-explanation {
    width: 100%;
    font-size: 1.5rem;
    margin: 30px auto 0;
    padding: 22px 18px;
  }
  .page-store-list .box-explanation .sp-none {
    display: none;
  }
  .page-store-list .section-clinic .wrap, .page-store-list .section-esthetic .wrap, .page-store-list .section-gym .wrap {
    gap: 10px;
  }
  .page-store-list .section-clinic .wrap li, .page-store-list .section-esthetic .wrap li, .page-store-list .section-gym .wrap li {
    width: 100%;
    min-width: 300px;
  }
}

.page-recruit .under-header-title {
  position: relative;
  height: 220px;
}
.page-recruit .section-main {
  background-image: url("./images/recruit/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 250px 0 80px;
}
.page-recruit .section-main .h2-title {
  text-align: left;
  line-height: 1.6;
  margin-bottom: 50px;
}
.page-recruit .section-main .text {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 100px;
  font-weight: 500;
}
.page-recruit .section-massage {
  background-image: url("./images/recruit/bg2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 250px 0 130px;
  position: relative;
}
.page-recruit .section-massage .bg-band {
  background-color: #E83816;
  color: #fff;
  font-size: 2.8rem;
  padding: 62px 0;
}
.page-recruit .section-massage .bg-band span {
  max-width: 1256px;
  margin: auto;
  width: 95%;
  display: block;
}
.page-recruit .section-massage .box-text {
  max-width: 954px;
  width: 80%;
  margin: auto;
  margin-right: 0;
  margin-top: 50px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 80px 0 60px;
  background-color: rgba(255, 255, 255, 0.7);
}
.page-recruit .section-massage .box-text h3 {
  font-size: 3rem;
  margin-bottom: 30px;
}
.page-recruit .section-massage .box-text .box-inner {
  padding: 0 6% 0 9%;
}
.page-recruit .section-massage .box-text p {
  margin-bottom: 20px;
}
.page-recruit .section-massage .box-text .p-sign {
  font-size: 1.6rem;
  text-align: right;
}
.page-recruit .section-massage .img-recruiter {
  position: absolute;
  left: 5em;
  bottom: 0;
  z-index: 0;
}
.page-recruit .section-banner {
  padding: 108px 1em;
  background-color: #F2f2f2;
}
.page-recruit .section-banner img {
  width: 100%;
  max-width: 810px;
  height: auto;
  margin: auto;
  display: block;
  transition: 0.3s;
}
.page-recruit .section-banner img:hover {
  transition: 0.3s;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media only screen and (max-width:1210px) {
  .page-recruit .section-massage .box-text {
    width: 75%;
    font-size: 1.8rem;
    padding: 60px 0 60px;
  }
  .page-recruit .section-massage .box-text h3 {
    font-size: 2.8rem;
  }
  .page-recruit .section-massage .box-text .box-inner {
    padding: 0 6% 0 9%;
  }
  .page-recruit .section-massage .img-recruiter {
    left: 2em;
  }
}
@media only screen and (max-width:1024px) {
  .page-recruit .section-main {
    padding: 200px 0 120px;
  }
  .page-recruit .section-massage {
    padding: 0px 0 280px;
  }
  .page-recruit .section-massage .box-text {
    width: 80%;
    margin-top: 90px;
    font-size: 1.8rem;
  }
  .page-recruit .section-massage .box-text h3 {
    font-size: 2.4rem;
  }
  .page-recruit .section-massage .img-recruiter {
    left: 1em;
  }
}
@media only screen and (max-width:768px) {
  .page-recruit .section-main {
    padding: 150px 0 120px;
    background-position-x: 65%;
  }
  .page-recruit .section-main .h2-title {
    margin-bottom: 30px;
  }
  .page-recruit .section-main .text {
    font-size: 1.6rem;
    margin-bottom: 80px;
  }
  .page-recruit .section-massage {
    padding: 0 0 230px;
  }
  .page-recruit .section-massage .box-text {
    width: 100%;
    margin-top: 90px;
    font-size: 1.6rem;
  }
  .page-recruit .section-massage .box-text h3 {
    font-size: 2.2rem;
  }
  .page-recruit .section-massage .bg-band {
    font-size: 2.4rem;
  }
  .page-recruit .section-massage .img-recruiter {
    width: 300px;
    height: auto;
  }
}
@media only screen and (max-width:630px) {
  .page-recruit .section-main {
    padding: 100px 0 200px;
  }
  .page-recruit .section-main .h2-title {
    font-size: 2rem;
  }
  .page-recruit .section-banner {
    padding: 70px 1em;
  }
  .page-recruit .section-massage .bg-band {
    font-size: 2.1rem;
    padding: 48px 0;
  }
}
@media only screen and (max-width:425px) {
  .page-recruit .section-massage .box-text h3 {
    font-size: 2rem;
  }
  .page-recruit .section-massage .box-text .box-inner {
    font-size: 1.5rem;
    padding: 0 1.5em;
  }
}

.page-welfare .section-main {
  padding-bottom: 200px;
}
.page-welfare .section-main .h2-title {
  font-size: 3.6rem;
  line-height: 1.7;
  margin-bottom: 80px;
}
.page-welfare .section-main .wrap {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  max-width: 970px;
  border: solid 10px #E83816;
  border-radius: 50px;
  color: #E83816;
}
.page-welfare .section-main .wrap .box {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10px 50px;
}
.page-welfare .section-main .wrap .box:nth-child(1), .page-welfare .section-main .wrap .box:nth-child(2) {
  border-bottom: solid 10px #E83816;
}
.page-welfare .section-main .wrap .box:nth-child(1), .page-welfare .section-main .wrap .box:nth-child(3) {
  border-right: solid 10px #E83816;
}
.page-welfare .section-main .wrap .p-heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.page-welfare .section-main .wrap .p-detail {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
  margin-left: 10px;
}
.page-welfare .section-main .wrap .p-detail span {
  font-size: 13rem;
}
.page-welfare .section-welfare {
  background-color: #F2f2f2;
  padding: 140px 0 160px;
}
.page-welfare .section-welfare h2 {
  font-size: 3.6rem;
  color: #E83816;
  text-align: center;
  margin-bottom: 60px;
}
.page-welfare .section-welfare .wrap-table table, .page-welfare .section-welfare .wrap-table td, .page-welfare .section-welfare .wrap-table th {
  vertical-align: text-top;
}
@media only screen and (max-width:1024px) {
  .page-welfare .section-main .h2-title {
    font-size: 3rem;
  }
  .page-welfare .section-main .wrap {
    max-width: 800px;
  }
  .page-welfare .section-main .wrap .box {
    padding: 40px 10px 40px;
  }
  .page-welfare .section-main .wrap .p-heading {
    font-size: 2.2rem;
  }
  .page-welfare .section-main .wrap .p-detail {
    font-size: 3rem;
  }
  .page-welfare .section-main .wrap .p-detail span {
    font-size: 9rem;
  }
}
@media only screen and (max-width:768px) {
  .page-welfare .section-main .h2-title {
    font-size: 2.4rem;
  }
  .page-welfare .section-main .wrap {
    max-width: 650px;
    gap: 0;
  }
  .page-welfare .section-main .wrap .box {
    padding: 40px 5px 40px;
  }
  .page-welfare .section-main .wrap .box:nth-child(1) img {
    width: 62.3px;
    height: auto;
  }
  .page-welfare .section-main .wrap .box:nth-child(2) img {
    width: 60.9px;
    height: auto;
  }
  .page-welfare .section-main .wrap .box:nth-child(3) img {
    width: 84px;
    height: auto;
  }
  .page-welfare .section-main .wrap .box:nth-child(4) img {
    width: 154px;
    height: auto;
  }
  .page-welfare .section-main .wrap .p-heading {
    font-size: 2.2rem;
    margin-bottom: 5px;
  }
  .page-welfare .section-main .wrap .p-detail {
    font-size: 2.4rem;
  }
  .page-welfare .section-main .wrap .p-detail span {
    font-size: 7rem;
  }
  .page-welfare .section-welfare {
    padding: 100px 0 130px;
  }
  .page-welfare .section-welfare h2 {
    font-size: 3.2rem;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width:530px) {
  .page-welfare .section-main .h2-title {
    font-size: 2rem;
  }
  .page-welfare .section-main .wrap {
    max-width: 370px;
    min-width: 310px;
    gap: 0;
  }
  .page-welfare .section-main .wrap .box {
    padding: 20px 5px;
  }
  .page-welfare .section-main .wrap .box:nth-child(1) img {
    width: 44.5px;
    height: auto;
  }
  .page-welfare .section-main .wrap .box:nth-child(2) img {
    width: 43.5px;
    height: auto;
  }
  .page-welfare .section-main .wrap .box:nth-child(3) img {
    width: 60px;
    height: auto;
  }
  .page-welfare .section-main .wrap .box:nth-child(4) img {
    width: 110px;
    height: auto;
  }
  .page-welfare .section-main .wrap .p-heading {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .page-welfare .section-main .wrap .p-detail {
    font-size: 2rem;
  }
  .page-welfare .section-main .wrap .p-detail span {
    font-size: 5rem;
  }
  .page-welfare .slider-wrap ul li img {
    height: 220px;
    width: auto;
  }
  .page-welfare .sp-none {
    display: none;
  }
  .page-welfare .section-welfare h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}

/* 募集要項の親ページ */
.page-recruitment-contents .section-main .wrap {
  display: flex;
  justify-content: center;
  gap: 64px;
  max-width: 1044px;
  margin: auto;
  margin-bottom: 180px;
}
.page-recruitment-contents .section-main .wrap .box {
  width: calc((100% - 64px) / 2);
  overflow: hidden;
}
.page-recruitment-contents .section-main .wrap .box img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.page-recruitment-contents .section-main .wrap .box p {
  background-color: #E83816;
  color: #fff;
  font-size: 2.2rem;
  padding: 40px 10px;
  text-align: center;
  transition: 0.3s;
  position: relative;
}
.page-recruitment-contents .section-main .wrap .box p::after, .page-recruitment-contents .section-main .wrap .box p::before {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-recruitment-contents .section-main .wrap .box p::before {
  box-sizing: border-box;
  top: 50%;
  right: 60px;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.page-recruitment-contents .section-main .wrap .box p::after {
  top: 46%;
  right: 72px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-recruitment-contents .section-main .wrap .box a:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  overflow: hidden;
}
.page-recruitment-contents .section-main .wrap .box a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  transition: 0.3s;
}
.page-recruitment-contents .section-main .wrap .box a:hover p {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  -webkit-transform: scaleX(1.05);
          transform: scaleX(1.05);
}
.page-recruitment-contents .section-main .h2-title {
  line-height: 1.6;
  margin-bottom: 50px;
}
.page-recruitment-contents .section-main .text {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 500;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 80px;
}
@media only screen and (max-width:1024px) {
  .page-recruitment-contents .section-main .wrap {
    gap: 20px;
  }
}
@media only screen and (max-width:768px) {
  .page-recruitment-contents .section-main .wrap {
    gap: 15px;
    margin-bottom: 100px;
    flex-wrap: wrap;
  }
  .page-recruitment-contents .section-main .wrap .box {
    width: calc((100% - 15px) / 2);
    min-width: 250px;
  }
  .page-recruitment-contents .section-main .wrap .box p {
    font-size: 1.8rem;
    padding: 30px 6px;
  }
  .page-recruitment-contents .section-main .wrap .box p::before {
    right: 60px;
    width: 25px;
    height: 25px;
  }
  .page-recruitment-contents .section-main .wrap .box p::after {
    right: 70px;
    width: 6px;
    height: 6px;
  }
  .page-recruitment-contents .section-main .text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width:630px) {
  .page-recruitment-contents .section-main {
    padding-bottom: 60px;
  }
  .page-recruitment-contents .section-main .wrap .box {
    width: 100%;
    min-width: 320px;
  }
  .page-recruitment-contents .section-main .wrap .box p {
    font-size: 1.8rem;
    padding: 30px 6px;
  }
  .page-recruitment-contents .section-main .wrap .box p::before {
    right: 60px;
    width: 25px;
    height: 25px;
  }
  .page-recruitment-contents .section-main .wrap .box p::after {
    right: 70px;
    width: 6px;
    height: 6px;
  }
  .page-recruitment-contents .section-main .text {
    font-size: 1.6rem;
  }
}

/* 募集要項の詳細ページ */
.page-acupuncturist,
.page-judo-therapist {
  background-color: #F2f2f2;
}
.page-acupuncturist .under-header-title,
.page-judo-therapist .under-header-title {
  height: 320px;
}
.page-acupuncturist .section-main,
.page-judo-therapist .section-main {
  padding: 120px 0 140px;
}
.page-acupuncturist .img-job,
.page-judo-therapist .img-job {
  width: 100vw;
  height: auto;
  margin-top: -130px;
  position: relative;
  z-index: -1;
}
.page-acupuncturist h2,
.page-judo-therapist h2 {
  font-size: 3.6rem;
  color: #E83816;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}
.page-acupuncturist .wrap-table table, .page-acupuncturist .wrap-table td, .page-acupuncturist .wrap-table th,
.page-judo-therapist .wrap-table table,
.page-judo-therapist .wrap-table td,
.page-judo-therapist .wrap-table th {
  vertical-align: text-top;
  font-size: 1.6rem;
  line-height: 1.7;
}
.page-acupuncturist .wrap-table td, .page-acupuncturist .wrap-table th,
.page-judo-therapist .wrap-table td,
.page-judo-therapist .wrap-table th {
  border-bottom: 1px solid #E83816;
  padding: 15px 0;
}
@media only screen and (max-width:1024px) {
  .page-acupuncturist .img-job,
  .page-judo-therapist .img-job {
    margin-top: -90px;
  }
  .page-acupuncturist h2,
  .page-judo-therapist h2 {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width:768px) {
  .page-acupuncturist .img-job,
  .page-judo-therapist .img-job {
    margin-top: -80px;
  }
  .page-acupuncturist .section-main,
  .page-judo-therapist .section-main {
    padding-top: 80px;
  }
  .page-acupuncturist h2,
  .page-judo-therapist h2 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width:630px) {
  .page-acupuncturist .wrap-table th, .page-acupuncturist .wrap-table td,
  .page-judo-therapist .wrap-table th,
  .page-judo-therapist .wrap-table td {
    border-bottom: none;
    padding: 3px 10px;
  }
  .page-acupuncturist .wrap-table tr,
  .page-judo-therapist .wrap-table tr {
    border-bottom: 1px solid #E83816;
  }
  .page-acupuncturist .section-main h2,
  .page-judo-therapist .section-main h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width:425px) {
  .page-acupuncturist h2,
  .page-judo-therapist h2 {
    font-size: 2.2rem;
  }
}

.page-flow {
  background-color: #F2f2f2;
}
.page-flow .h2-title {
  font-size: 3.6rem;
  line-height: 1.7;
  margin-bottom: 30px;
}
.page-flow .text {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 60px;
}
.page-flow .section-flow {
  padding-bottom: 200px;
  background-color: #fff;
  padding: 75px 1em;
  border-radius: 50px;
}
.page-flow .section-flow h3 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
}
.page-flow .section-flow .wrap {
  max-width: 810px;
  margin: auto;
}
.page-flow .section-flow .wrap .box {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #F2f2f2;
  border-radius: 25px;
  margin-bottom: 60px;
  min-height: 180px;
  padding: 28px;
  position: relative;
}
.page-flow .section-flow .wrap .box .box-step {
  display: flex;
  gap: 18px;
}
.page-flow .section-flow .wrap .box .box-step h4 {
  font-size: 2rem;
}
.page-flow .section-flow .wrap .box .box-step .step {
  color: #E83816;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: bold;
}
.page-flow .section-flow .wrap .box:not(:last-child)::after {
  content: "";
  width: 20px;
  height: 60px;
  background-color: #FFF4F5;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-flow .btn-common-entry {
  margin-bottom: 50px;
}
.page-flow .img-staff {
  display: block;
  margin: auto;
  max-width: 690px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width:1024px) {
  .page-flow .h2-title {
    font-size: 3rem;
  }
}
@media only screen and (max-width:768px) {
  .page-flow .h2-title {
    font-size: 2.6rem;
  }
  .page-flow .text {
    font-size: 1.5rem;
  }
  .page-flow .section-flow {
    padding: 75px 1em 50px;
  }
  .page-flow .section-flow h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .page-flow .section-flow .wrap .box {
    min-height: 160px;
    gap: 16px;
    padding: 20px;
  }
  .page-flow .section-flow .wrap .box .box-step {
    gap: 14px;
  }
  .page-flow .section-flow .wrap .box .box-step h4 {
    font-size: 1.8rem;
  }
  .page-flow .section-flow .wrap .box .box-step .step {
    font-size: 1.8rem;
  }
  .page-flow .btn-common-entry {
    width: 95%;
    margin: 80px auto 50px;
  }
}
@media only screen and (max-width:530px) {
  .page-flow .h2-title {
    font-size: 2.2rem;
  }
  .page-flow .text {
    font-size: 1.5rem;
  }
  .page-flow .section-flow {
    padding: 75px 1em 50px;
  }
  .page-flow .section-flow h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .page-flow .section-flow .wrap .box {
    flex-direction: column;
    padding: 40px 20px 60px;
    max-width: 350px;
    min-width: 275px;
    margin: 60px auto;
  }
  .page-flow .section-flow .wrap .box .box-step {
    margin-bottom: 10px;
    gap: 8px;
  }
  .page-flow .section-flow .wrap .box .box-step h4 {
    font-size: 1.8rem;
  }
  .page-flow .section-flow .wrap .box .box-step .step {
    font-size: 1.8rem;
  }
  .page-flow .section-flow .wrap .box .p-detail {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 450px) {
  .page-flow .pc-none {
    display: block;
  }
}
@media only screen and (max-width:425px) {
  .page-flow .section-flow {
    padding: 50px 1em 50px;
  }
  .page-flow .section-flow h3 {
    margin-bottom: 30px;
  }
  .page-flow .section-flow .wrap .box:first-child {
    margin-top: 0;
  }
}

.page-entry .wrap-selection {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 90px;
}
.page-entry .wrap-selection a {
  width: calc((100% - 35px) / 2);
  height: 150px;
  border: solid 4px #E83816;
  color: #E83816;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
.page-entry .wrap-selection a::after {
  background: #E83816;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.page-entry .wrap-selection a:hover {
  color: #fff;
}
.page-entry .wrap-selection a:hover path.line {
  fill: #fff;
}
.page-entry .wrap-selection a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.page-entry {
  /* ラジオボタンの設定 */
}
.page-entry .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
}
.page-entry .wpcf7-radio input {
  width: 15px !important;
}
.page-entry .wpcf7-radio span {
  width: 100px;
}
.page-entry .box-radio-wrap .wpcf7-radio span.last {
  width: 220px;
}
.page-entry .section-form h3, .page-entry .section-tel h3 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.page-entry .section-form {
  background-color: #F2f2f2;
  border-radius: 50px;
  padding: 100px 1em 110px;
  margin-bottom: 98px;
}
.page-entry .section-form h3 {
  text-align: center;
  margin-bottom: 60px;
}
.page-entry .section-form .wrap-contact {
  margin: auto;
  max-width: 680px;
  width: 100%;
}
.page-entry .section-form .wrap-contact .box {
  margin-bottom: 30px;
}
.page-entry .section-form .wrap-contact .box input, .page-entry .section-form .wrap-contact .box textarea {
  background-color: #fff;
  margin-top: 10px;
  height: 48px;
  width: 100%;
  padding: 5px 10px;
}
.page-entry .section-form .wrap-contact .box input::-webkit-input-placeholder, .page-entry .section-form .wrap-contact .box textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
.page-entry .section-form .wrap-contact .box input:-ms-input-placeholder, .page-entry .section-form .wrap-contact .box textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
.page-entry .section-form .wrap-contact .box input::-ms-input-placeholder, .page-entry .section-form .wrap-contact .box textarea::-ms-input-placeholder {
  color: #cbcbcb;
}
.page-entry .section-form .wrap-contact .box input::placeholder, .page-entry .section-form .wrap-contact .box textarea::placeholder {
  color: #cbcbcb;
}
.page-entry .section-form .wrap-contact .box textarea {
  height: 200px;
}
.page-entry .section-form .wrap-contact .box-radio {
  margin-bottom: 30px;
}
.page-entry .section-form .wrap-contact .box-radio input {
  width: 100%;
  margin-top: 13px;
}
.page-entry .section-form .wrap-contact .box-radio .wpcf7-list-item-label {
  font-size: 1.6rem;
  font-weight: normal;
  white-space: nowrap;
  margin-top: 8px;
  margin-left: 7px;
}
.page-entry .section-form .wrap-contact label {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.page-entry .section-form .wrap-contact br {
  display: none;
}
.page-entry .section-form .wrap-contact .haveto {
  background-color: #666666;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50px;
  text-align: center;
  padding: 2px 10px;
  margin-left: 5px;
  display: inline-block;
}
.page-entry .section-form .wrap-contact span {
  font-size: 1.6rem;
}
.page-entry .section-form .wrap-contact .box-ck {
  text-align: center;
  margin-bottom: 50px;
}
.page-entry .section-form .wrap-contact .box-ck span.wpcf7-list-item-label {
  font-weight: normal;
  margin-left: 7px;
}
.page-entry .section-form .wrap-contact .btn-submit {
  display: block;
  margin: auto;
  padding-top: 15px;
}
.page-entry .section-tel {
  padding-bottom: 140px;
}
.page-entry .section-tel .wrap {
  background-color: #F2f2f2;
  border-radius: 50px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 240px;
}
.page-entry .section-tel .wrap .box {
  width: 45%;
  max-width: 450px;
}
.page-entry .section-tel .wrap p {
  font-size: 1.4rem;
}
.page-entry .btn-submit {
  background-color: #E83816;
  color: #fff;
  font-size: 1.6rem;
  max-width: 316px;
  width: 100%;
  height: 58px;
  text-align: center;
  padding: 20px 10px;
  transition: 0.3s;
}
.page-entry .btn-submit:hover {
  color: #fff;
  background-color: #333333;
}
.page-entry .wpcf7-list-item-label a {
  color: #E83816;
}
.page-entry .wpcf7-list-item-label a:hover {
  font-weight: bold;
}
.page-entry .wpcf7 form.invalid .wpcf7-response-output,
.page-entry .wpcf7 form.unaccepted .wpcf7-response-output,
.page-entry .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #E83816;
  padding: 11px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.page-entry .btn-common-entry {
  margin-bottom: 50px;
}
.page-entry .img-staff {
  display: block;
  margin: auto;
  max-width: 690px;
  width: 100%;
  height: auto;
}
.page-entry .img-banner {
  position: fixed;
  bottom: 60px;
  right: -6px;
  width: 150px;
  height: auto;
  z-index: 5;
}
@media only screen and (max-width:1024px) {
  .page-entry .wrap-selection {
    gap: 10px;
    margin-bottom: 60px;
  }
  .page-entry .wrap-selection a {
    height: 120px;
    font-size: 2rem;
  }
  .page-entry .h2-title {
    font-size: 3rem;
  }
  .page-entry .img-banner {
    width: 120px;
    height: auto;
  }
}
@media only screen and (max-width:768px) {
  .page-entry .wrap-selection {
    gap: 7px;
    margin-bottom: 60px;
  }
  .page-entry .wrap-selection a {
    width: calc((100% - 7px) / 2);
    height: 110px;
    font-size: 1.8rem;
  }
  .page-entry .section-form h3, .page-entry .section-tel h3 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .page-entry .section-form {
    padding: 70px 1em 50px;
    margin-bottom: 50px;
  }
  .page-entry .section-tel {
    padding-bottom: 100px;
  }
  .page-entry .section-tel h3 {
    text-align: center;
  }
  .page-entry .section-tel .wrap {
    flex-direction: column;
    height: auto;
    padding: 60px 20px;
    gap: 24px;
  }
  .page-entry .section-tel .wrap .box {
    width: 80%;
  }
  .page-entry .section-tel .wrap p {
    font-size: 1.4rem;
  }
  .page-entry .img-banner {
    width: 100px;
    height: auto;
  }
}
@media only screen and (max-width:530px) {
  .page-entry .wrap-selection {
    flex-direction: column;
    gap: 7px;
    margin-bottom: 60px;
  }
  .page-entry .wrap-selection a {
    width: 100%;
    height: 110px;
    font-size: 1.8rem;
  }
  .page-entry .section-form h3, .page-entry .section-tel h3 {
    font-size: 2.2rem;
  }
  .page-entry .section-tel {
    padding-bottom: 100px;
  }
  .page-entry .section-tel h3 {
    text-align: center;
  }
  .page-entry .section-tel .wrap .box {
    width: 100%;
  }
}
@media only screen and (max-width:425px) {
  .page-entry .img-banner {
    width: 82px;
    height: auto;
  }
}

/* サンクスページ：エラーページ */
.page-thanks .under-header-title, .error404 .under-header-title {
  height: 400px;
}
.page-thanks .text, .error404 .text {
  max-width: 820px;
  margin: 30px auto 70px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 1.8rem;
}
.page-thanks .btn-more, .error404 .btn-more {
  margin: auto;
  margin-bottom: 100px;
}
@media only screen and (max-width:768px) {
  .page-thanks .under-header-title, .error404 .under-header-title {
    height: 350px;
  }
  .page-thanks .text, .error404 .text {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width:530px) {
  .page-thanks .under-header-title, .error404 .under-header-title {
    height: 270px;
  }
  .page-thanks .text, .error404 .text {
    font-size: 1.6rem;
  }
}

.error404 .h2-title {
  font-size: 6rem;
  text-decoration: underline 3px;
  text-underline-offset: 6px;
  color: #E83816;
}
.error404 .text {
  margin: 20px auto 50px;
  text-align: center;
}

html {
  font-size: 62.5%;
}

/*　共通的設定　*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #333333;
  overflow-x: hidden;
  font-display: swap;
}

ul {
  list-style: none;
}

a {
  transition: 0.3s;
  line-height: 1;
}

.container {
  width: 98vw;
  max-width: 1256px;
  margin: auto;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
  transition: 0.3s;
  height: auto;
}

.pc-none {
  display: none;
}

.btn-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 51px;
  border: solid #333333 1px;
  background-color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: normal;
  margin: auto;
  margin-right: 0;
  /* ボタンホバー時に左から帯 */
  position: relative;
  z-index: 2;
}
.btn-more::after {
  background: #333333;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn-more:hover {
  color: #fff;
}
.btn-more:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.text-red {
  color: #e83816;
}

.under-line {
  text-decoration: underline;
  text-underline-offset: 8px;
}

::selection {
  color: #e83816;
  color: #fff;
  background-color: #bbbbbb;
}

.inner-container {
  max-width: 1256px;
  width: 100%;
  margin: auto;
}
@media only screen and (max-width:1210px) {
  .inner-container {
    width: 95%;
    margin: auto;
  }
}

.h2-title {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width:1024px) {
  .h2-title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width:768px) {
  .h2-title {
    font-size: 2.2rem;
  }
}

.label-band {
  background-color: #e83816;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1 !important;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width:1024px) {
  .label-band {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width:768px) {
  .label-band {
    font-size: 1.8rem;
  }
}

/************************************** 帯が出てきてきえる */
.h2-label {
  opacity: 0;
}

.h2-label.classActive {
  opacity: 1;
  background-color: #333333;
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.h2-label.classActive:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #e83816;
  -webkit-animation: secondaryImageOverlayIn 0.3s 0s cubic-bezier(0.77, 0, 0.175, 1), secondaryImageOverlayOut 0.4s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
          animation: secondaryImageOverlayIn 0.3s 0s cubic-bezier(0.77, 0, 0.175, 1), secondaryImageOverlayOut 0.4s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.h2-label.classActive .move-label-in {
  display: inline-block;
  margin: 0.05em;
  line-height: 1;
  color: #fff;
  -webkit-animation: fadeIn 0.1s 0.5s;
          animation: fadeIn 0.1s 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  font-size: 4.8rem;
  padding: 8px 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: bold;
}
@media only screen and (max-width:1210px) {
  .h2-label.classActive .move-label-in {
    font-size: 3.8rem;
  }
}
@media only screen and (max-width:768px) {
  .h2-label.classActive .move-label-in {
    font-size: 3rem;
  }
}
@media only screen and (max-width:425px) {
  .h2-label.classActive .move-label-in {
    font-size: 2.6rem;
    padding: 8px 14px;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}
@keyframes secondaryImageOverlayOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}

/**ここまで*/
/*********************************************** トップページ */
.home {
  max-width: 2000px;
  margin: auto;
}
.home .fv {
  background: transparent linear-gradient(111deg, #eef3f8 0%, #ecf0f2 49%, #dcc4c0 100%) 0% 0% no-repeat padding-box;
  position: relative;
  top: 0;
  left: 0;
  padding-top: 50px;
  width: 100vw;
  max-width: 2000px;
  margin: auto;
  margin-top: -62px;
  margin-top: -88px;
  overflow-x: hidden;
}
.home .fv::after {
  content: "";
  background-image: url("./images/top/fv-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 544px;
  height: 538px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.home .fv .slider-wrap {
  width: 80%;
}
.home .fv .slide-fv {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home .fv .slide-fv img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 1082px;
  height: 773px;
  max-width: 100%;
  height: auto;
}
.home .fv .fv-recruit {
  position: absolute;
  top: 35%;
  left: 55%;
  width: 40%;
  max-width: 650px;
  z-index: 1;
}
.home .fv .fv-copy {
  position: absolute;
  top: 60%;
  left: 65%;
  z-index: 1;
}
.home .fv .fv-copy .fv-copy1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.home .fv .fv-copy .fv-copy2 {
  font-size: 1.7rem;
  font-weight: bold;
}
.home .fv .slick-dots {
  bottom: 15px;
}
.home .fv .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.home .fv .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: red;
}
@media only screen and (max-width:960px) {
  .home .fv {
    margin-top: 40px;
  }
}
@media only screen and (max-width:768px) {
  .home .fv {
    margin-top: 60px;
  }
  .home .fv .fv-copy .fv-copy1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }
  .home .fv .fv-copy .fv-copy2 {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width:630px) {
  .home .fv {
    padding-top: 320px;
    margin-top: 0;
  }
  .home .fv .slider-wrap {
    width: 90%;
    margin: auto;
  }
  .home .fv .fv-recruit {
    top: 221px;
    left: 50%;
    width: 70%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home .fv .fv-copy {
    top: 109px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
  .home .fv .fv-copy .fv-copy1 {
    font-size: 2.7rem;
    text-align: center;
  }
  .home .fv .fv-copy .fv-copy2 {
    font-size: 1.5rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .home .fv .fv-recruit {
    top: 226px;
  }
}
@media only screen and (max-width:425px) {
  .home .fv {
    padding-top: 300px;
  }
}
.home {
  /* 当院で働く4つの魅力 202605追加 **************************************************************************************/
}
.home .merit-section {
  background-color: #e83816;
  padding: 100px 20px 0;
  overflow: hidden;
  position: relative;
}
.home .merit-section::before {
  content: "4 Reasons\ato Join Us";
  white-space: pre-wrap;
  position: absolute;
  top: 110px;
  right: 0;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", "MS PMincho", serif;
  font-size: clamp(60px, 10vw, 140px); /* 画面幅に合わせて可変 */
  font-weight: 900;
  line-height: 0.9;
  color: #ee5b43;
  text-align: center;
  z-index: 0;
  pointer-events: none;
}
.home .merit-container {
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home {
  /* タイトル部分（ご提示のコードを継承） */
}
.home .merit-header {
  text-align: center;
  color: #fff;
  margin-bottom: 150px;
}
.home .merit-header-box {
  background: #333333;
  display: inline-block;
  padding: 0px 24px;
  font-weight: bold;
  font-size: clamp(32px, 3.125vw, 38px);
  line-height: 1.5;
  margin-bottom: 30px;
}
.home .merit-header-text {
  font-weight: bold;
  font-size: clamp(20px, 1.953125vw, 28px);
  color: #333333;
}
.home {
  /* --- カード全体のレイアウト --- */
}
.home .merit-item {
  position: relative;
  max-width: 100%;
  margin: 0 auto 90px;
}
.home {
  /* テキストボックス（白背景） */
}
.home .merit-content {
  background: #fff;
  padding: 50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  min-height: 270px;
  aspect-ratio: 900/340;
  max-width: 900px;
}
.home {
  /* 01, 03番目：テキスト左、画像右 */
}
.home .merit-item:nth-child(even) .merit-content {
  padding-right: 330px;
  margin-left: 0;
}
.home {
  /* 02, 04番目：テキスト右、画像左 */
}
.home .merit-item:nth-child(odd) .merit-content {
  padding-left: 340px;
  margin-left: auto;
}
.home {
  /* 背景数字 */
}
.home .merit-title::after {
  content: attr(data-num);
  font-family: "Arial Black", Arial, sans-serif;
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 96px;
  font-weight: 900;
  color: #f2f2f2;
  line-height: 1;
  z-index: -1;
}
.home .merit-title {
  color: #e83816;
  font-size: clamp(28px, 2.734375vw, 34px);
  font-weight: 900;
  margin: 0 0 12px 0;
  position: relative;
}
.home .merit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: clamp(18px, 1.7578125vw, 22px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}
.home {
  /* --- 画像の設定 (420*270) --- */
}
.home .merit-image {
  position: absolute;
  width: 420px;
  height: 270px;
  z-index: 2;
}
.home .merit-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home {
  /* 01, 03番目の画像位置（右上にずらす） */
}
.home .merit-item:nth-child(even) .merit-image {
  top: -10px;
  right: 0;
}
.home {
  /* 02, 04番目の画像位置（左上にずらす） */
}
.home .merit-item:nth-child(odd) .merit-image {
  top: -10px;
  left: 0;
}
.home {
  /* --- レスポンシブ --- */
}
@media (max-width: 1080px) {
  .home .merit-content {
    max-width: 800px;
  }
  .home .merit-item:nth-child(odd) .merit-content {
    padding-left: 280px;
  }
  .home .merit-item:nth-child(even) .merit-content {
    padding-right: 280px;
  }
  .home .merit-title:after {
    right: 70px;
    font-size: 88px;
  }
  .home .merit-image {
    width: 380px;
    height: auto;
  }
}
@media (max-width: 960px) {
  .home .merit-item:nth-child(odd) .merit-content {
    padding-left: 340px;
  }
}
@media (max-width: 900px) {
  .home .merit-section {
    padding: 60px 15px 0;
  }
  .home .merit-item {
    margin-bottom: 0;
    max-width: 600px;
  }
  .home .merit-image {
    position: static; /* 位置固定を解除 */
    top: unset;
    width: 100%;
    height: auto;
    aspect-ratio: 420/270;
    margin-bottom: 0;
    margin-top: 30px;
  }
  .home .merit-content {
    padding: 50px !important;
    width: 100%;
    max-width: 100%;
    aspect-ratio: auto;
  }
  .home .merit-title {
    font-size: clamp(24px, 6.4vw, 28px);
    margin: 0 0 0.6em;
    position: static;
  }
  .home .merit-list {
    font-size: clamp(14px, 3.7333333333vw, 18px);
  }
  .home .merit-content {
    position: relative;
  }
  .home .merit-title:after {
    top: 40px;
    right: 30px;
    font-size: 80px;
  }
  .home .merit-header-box {
    font-size: 24px;
    position: relative;
    padding: 2px 16px;
  }
  .home .merit-header-box-text2 {
    margin-left: 50px;
  }
  .home .four {
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", "MS PMincho", serif;
    font-size: 72px;
    position: absolute;
    top: -38px;
    width: 50px;
    display: inline-block;
  }
  .home .merit-header-text {
    font-size: clamp(14px, 3.7333333333vw, 20px);
  }
  .home .merit-header {
    margin-bottom: 50px;
  }
  .home .merit-section:before {
    content: none;
  }
}
@media screen and (max-width: 500px) {
  .home .merit-content {
    padding: 40px !important;
  }
}
.home .break {
  display: inline-block;
}
.home {
  /* --- アニメーション設定 --- */
  /* 画像の初期状態 */
}
.home .merit-image {
  opacity: 0;
  transition: opacity 1s ease-out, -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s ease-out;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s ease-out, -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.home {
  /* 奇数番目（右側の画像）：左からスライドイン */
}
.home .merit-item:nth-child(odd) .merit-image {
  -webkit-transform: translate(-100px, -30px);
          transform: translate(-100px, -30px);
}
.home {
  /* 偶数番目（左側の画像）：右からスライドイン */
}
.home .merit-item:nth-child(even) .merit-image {
  -webkit-transform: translate(100px, -30px);
          transform: translate(100px, -30px);
}
.home {
  /* アニメーション実行時：定位置(0)に戻る */
}
.home .merit-image.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, -30px) !important;
          transform: translate(0, -30px) !important;
}
.home {
  /***************************************************************************************/
  /* foryouセクション 
  .top-foryou {
  	height: 560px;
  	overflow: hidden;
  	padding: 5px 0 5px 15px;
  	background-color: $c-main;
  	font-size: 8.2rem;
  	font-weight: 900;
  	line-height: 1.2;
  	letter-spacing: 0.025em;
  	color: rgba(#fff, 0.18);
  	position: relative;
  	z-index: -1;
  	.img-text {
  		position: absolute;
  		margin: auto;
  		inset: 0;
  		max-width: 650px;
  		width: 40%;
  		height: auto;
  	}
  	span {
  		font-size: 11.5rem;
  	}

  	@include media(l) {
  		font-size: 4.5rem;
  		span {
  			font-size: 7.5rem;
  		}
  		.img-text {
  			width: 50%;
  			height: auto;
  		}
  	}

  	@include media(xs) {
  		height: 390px;
  		font-size: 2.5rem;
  		span {
  			font-size: 5.3rem;
  		}
  	}

  	@include media(xxs) {
  		height: 360px;
  		font-size: 2.3rem;
  		span {
  			font-size: 4.8rem;
  		}
  	}
  }*/
}
.home .top-foryou-member {
  background-color: #e83816;
  position: relative;
  overflow-x: hidden;
}
.home .top-foryou-member img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .home .top-foryou-member {
    padding-top: 50px;
  }
  .home .top-foryou-member:before {
    content: "Benefits";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", "MS PMincho", serif;
    font-size: 120px;
    font-weight: 900;
    line-height: 0.9;
    color: #ee5b43;
    text-align: center;
    z-index: 0;
    pointer-events: none;
  }
}
.home {
  /* TOP message */
}
.home .top-message {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  padding: 130px 0 105px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  overflow-x: -moz-scrollbars-vertical;
  min-height: 570px;
}
.home .top-message .img-top {
  position: absolute;
  bottom: 0;
  left: 6%;
  z-index: 1;
}
.home .top-message .wrap {
  margin: auto;
  margin-right: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 70%;
  margin: auto;
  max-width: 820px;
  margin-right: 1em;
  z-index: 1;
}
.home .top-message .wrap .box img {
  width: 100%;
  height: auto;
}
.home .top-message .wrap .box {
  margin-bottom: 64px;
}
.home .top-message .img-move {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width:1024px) {
  .home .top-message .img-top {
    width: 414px;
    left: 2%;
    z-index: 2;
  }
  .home .top-message .img-move {
    width: 140%;
  }
}
@media only screen and (max-width:768px) {
  .home .top-message {
    position: relative;
    overflow: hidden;
    height: 740px;
  }
  .home .top-message .wrap .box {
    position: absolute;
    top: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
  }
  .home .top-message .wrap .btn-more {
    position: absolute;
    right: 1em;
    bottom: 3em;
    z-index: 3;
  }
  .home .top-message .img-top {
    width: 368px;
    height: auto;
    left: 2%;
    z-index: 2;
    top: inherit;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home .top-message::before {
    background-size: 90%;
    background-position: bottom;
  }
  .home .top-message .img-move {
    width: 170%;
    bottom: 20%;
  }
}
@media only screen and (max-width:630px) {
  .home .top-message {
    height: 640px;
  }
  .home .top-message .inner-container {
    height: 640px;
  }
  .home .top-message .wrap .box {
    top: 40px;
  }
  .home .top-message .img-top {
    width: 322px;
  }
  .home .top-message .img-move {
    width: 1100px;
  }
}
@media only screen and (max-width:425px) {
  .home .top-message {
    height: 500px;
  }
  .home .top-message .inner-container {
    height: 500px;
  }
  .home .top-message .wrap .box {
    top: 80px;
  }
  .home .top-message .img-top {
    width: 276px;
  }
}
.home {
  /* thank you foryou */
}
.home .top-thankyou {
  padding: 120px 0 130px;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}
.home .top-thankyou .inner-container {
  width: 92%;
  margin: auto;
}
.home .top-thankyou h2 {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.7;
}
.home .top-thankyou h2 span {
  font-size: 8rem;
}
.home .top-thankyou .text-thankyou {
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 40px 0 60px;
}
.home .top-thankyou .text {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2.3;
}
.home .top-thankyou .btn-more {
  margin-bottom: 50px;
}
.home .top-thankyou .img-move-thankyou {
  position: absolute;
  top: 47%;
  left: 0;
  z-index: -1;
}
.home .top-thankyou .img-move-foryou {
  position: absolute;
  bottom: 0%;
  left: 0;
  z-index: -1;
}
.home .top-thankyou .img-triangle {
  max-width: 838px;
  width: 90%;
  height: auto;
}
@media only screen and (max-width:1024px) {
  .home .top-thankyou h2 {
    font-size: 2.6rem;
  }
  .home .top-thankyou h2 span {
    font-size: 6rem;
  }
  .home .top-thankyou .text-thankyou {
    font-size: 5rem;
    margin: 40px 0 60px;
  }
  .home .top-thankyou .text {
    font-size: 1.8rem;
  }
  .home .top-thankyou .img-move-thankyou {
    width: 1500px;
  }
  .home .top-thankyou .img-move-foryou {
    width: 1000px;
  }
}
@media only screen and (max-width:768px) {
  .home .top-thankyou h2 {
    font-size: 2.2rem;
  }
  .home .top-thankyou h2 span {
    font-size: 4.8rem;
  }
  .home .top-thankyou .text-thankyou {
    font-size: 3.6rem;
    margin: 20px 0 50px;
  }
  .home .top-thankyou .text {
    font-size: 1.5rem;
  }
  .home .top-thankyou .img-move-thankyou {
    width: 1200px;
  }
  .home .top-thankyou .img-move-foryou {
    width: 970px;
  }
  .home .top-thankyou .img-triangle {
    width: 80%;
    height: auto;
  }
  .home .top-thankyou .btn-more {
    margin-top: 40px;
  }
}
@media only screen and (max-width:630px) {
  .home .top-thankyou {
    padding: 80px 0 100px;
  }
  .home .top-thankyou h2 {
    font-size: 2rem;
  }
  .home .top-thankyou h2 span {
    font-size: 4rem;
  }
  .home .top-thankyou .text-thankyou {
    font-size: 3.4rem;
    margin: 20px 0 50px;
  }
}
@media only screen and (max-width:425px) {
  .home .top-thankyou {
    padding: 80px 0 100px;
  }
  .home .top-thankyou h2 {
    font-size: 1.8rem;
  }
  .home .top-thankyou h2 span {
    font-size: 3.3rem;
  }
  .home .top-thankyou h2 .pc-none {
    display: block;
  }
  .home .top-thankyou .text-thankyou {
    font-size: 2.8rem;
    margin: 20px 0 50px;
  }
  .home .top-thankyou .text .sp-none {
    display: none;
  }
  .home .top-thankyou .img-move-thankyou {
    width: 1000px;
  }
  .home .top-thankyou .img-move-foryou {
    width: 830px;
  }
  .home .top-thankyou .img-triangle {
    width: 90%;
    height: auto;
  }
}
.home {
  /* スタッフインタビュー */
}
.home .top-interview {
  position: relative;
  padding: 160px 0 120px;
  overflow-x: hidden;
}
.home .top-interview .inner-container {
  display: flex;
  gap: 80px;
  justify-content: center;
}
.home .top-interview .inner-container .wrap {
  max-width: 700px;
}
.home .top-interview .inner-container .wrap .text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 60px 0 40px;
}
.home .top-interview .inner-container .slider-wrap {
  max-width: 425px;
  width: 100%;
}
.home .top-interview .inner-container .slider-wrap button.slick-prev.slick-arrow,
.home .top-interview .inner-container .slider-wrap button.slick-next.slick-arrow {
  font-display: swap;
  top: 103%;
}
.home .top-interview .inner-container .slider-wrap button.slick-prev.slick-arrow::before,
.home .top-interview .inner-container .slider-wrap button.slick-next.slick-arrow::before {
  font-size: 24px;
}
.home .top-interview .inner-container .slider-wrap button.slick-prev.slick-arrow {
  left: 90%;
}
.home .top-interview .inner-container .slider-wrap button.slick-next.slick-arrow {
  left: 96%;
}
.home .top-interview .inner-container .slider-wrap ul li a:hover {
  transition: 0.3s;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  overflow: hidden;
}
.home .top-interview .inner-container .slider-wrap ul li a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  transition: 0.3s;
}
.home .top-interview .inner-container .btn-more-sp {
  display: none;
}
.home .top-interview::after {
  content: "";
  background-color: #e6e6e6;
  position: absolute;
  width: 100vw;
  height: 500px;
  top: 50%;
  left: 0;
  z-index: -2;
}
.home .top-interview .bg {
  background-color: #c4c4c4;
  position: absolute;
  width: 80%;
  height: 700px;
  top: 50px;
  left: 0;
  z-index: -1;
}
.home .top-interview .img-move-interview {
  position: relative;
  z-index: -1;
  margin: auto;
  margin-top: 60px;
  margin-right: 0;
  width: 90%;
}
@media only screen and (max-width:1210px) {
  .home .top-interview .inner-container {
    width: 95%;
  }
}
@media only screen and (max-width:1024px) {
  .home .top-interview .inner-container {
    gap: 30px;
  }
}
@media only screen and (max-width:768px) {
  .home .top-interview {
    padding: 130px 0 120px;
  }
  .home .top-interview .inner-container {
    flex-direction: column;
    max-width: 600px;
    gap: 0;
  }
  .home .top-interview .inner-container .btn-more-pc {
    display: none;
  }
  .home .top-interview .inner-container .btn-more-sp {
    display: flex;
    position: absolute;
    bottom: 200px;
    right: 1em;
  }
  .home .top-interview .inner-container .wrap .text {
    font-size: 17px;
    margin: 20px 0 20px;
  }
  .home .top-interview .inner-container .slider-wrap button.slick-prev.slick-arrow,
  .home .top-interview .inner-container .slider-wrap button.slick-next.slick-arrow {
    top: 105%;
  }
  .home .top-interview .inner-container .slider-wrap button.slick-prev.slick-arrow::before,
  .home .top-interview .inner-container .slider-wrap button.slick-next.slick-arrow::before {
    font-size: 30px;
  }
  .home .top-interview .inner-container .slider-wrap button.slick-prev.slick-arrow {
    left: 87%;
  }
  .home .top-interview .inner-container .slider-wrap button.slick-next.slick-arrow {
    left: 94%;
  }
  .home .top-interview .inner-container .slick-slide img {
    width: 100%;
    height: auto;
  }
  .home .top-interview .inner-container .slider-wrap {
    margin: auto;
  }
  .home .top-interview .bg {
    width: 100%;
    height: 700px;
  }
  .home .top-interview .img-move-interview {
    margin-top: 94px;
    width: 1030px;
    margin-right: 0;
  }
}
@media only screen and (max-width:630px) {
  .home .top-interview .inner-container .slider-wrap {
    width: 92%;
  }
}
@media only screen and (max-width:425px) {
  .home .top-interview .inner-container .wrap .text {
    font-size: 1.5rem;
    margin: 20px 0 20px;
  }
  .home .top-interview .inner-container .slider-wrap {
    width: 92%;
  }
  .home .top-interview .inner-container .slider-wrap button.slick-prev.slick-arrow {
    left: 79%;
  }
  .home .top-interview .inner-container .slider-wrap button.slick-next.slick-arrow {
    left: 87%;
  }
}
.home {
  /* 成長環境 */
}
.home .top-grow {
  padding: 30px 0 200px;
  background-color: #f2f2f2;
}
.home .top-grow .inner-container {
  display: flex;
  justify-content: space-between;
}
.home .top-grow .wrap-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 90px;
  position: relative;
  width: 50%;
}
.home .top-grow .wrap-left .img-growing {
  position: absolute;
  top: 300px;
}
.home .top-grow .wrap-right {
  width: 50%;
  max-width: 550px;
}
.home .top-grow .wrap-right .box {
  margin-top: 140px;
}
.home .top-grow .wrap-right .box h3 {
  font-size: 3.6rem;
  letter-spacing: 0.005em;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.home .top-grow .wrap-right .box h3 span {
  font-size: 2.1rem;
  display: block;
}
.home .top-grow .wrap-right .box h3::before {
  content: "";
  background-image: url(./images/top/text-01.svg);
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 130px;
  height: 82px;
  z-index: -1;
}
.home .top-grow .wrap-right .box:nth-child(2) h3::before {
  background-image: url(./images/top/text-02.svg);
}
.home .top-grow .wrap-right .box:nth-child(3) h3::before {
  background-image: url(./images/top/text-03.svg);
}
.home .top-grow .wrap-right .box .img-box {
  overflow: hidden;
  position: relative;
  transition: 0.3s all;
}
.home .top-grow .wrap-right .box .img-box .icon-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  transition: 0.3s;
}
.home .top-grow .wrap-right .box .img-box:hover {
  overflow: hidden;
  transition: 0.3s;
}
.home .top-grow .wrap-right .box .img-box:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  transition: 0.3s;
  overflow: hidden;
}
.home .top-grow .wrap-right .box .img-box:hover .icon-arrow {
  transition: 0.3s;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-animation-name: hoge;
          animation-name: hoge;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
@-webkit-keyframes hoge {
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
@keyframes hoge {
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
@media only screen and (max-width:1024px) {
  .home .top-grow .wrap-left .img-growing {
    width: 130%;
    height: auto;
  }
  .home .top-grow .wrap-right .box h3 {
    font-size: 2.6rem;
  }
  .home .top-grow .wrap-right .box h3 span {
    font-size: 1.7rem;
  }
  .home .top-grow .wrap-right .box h3::before {
    background-size: 90%;
    background-position: bottom;
  }
}
@media only screen and (max-width:768px) {
  .home .top-grow {
    padding-bottom: 120px;
  }
  .home .top-grow .inner-container {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .home .top-grow .wrap-left {
    width: 100%;
    margin-bottom: 30px;
  }
  .home .top-grow .wrap-left .img-growing {
    width: 70%;
    height: auto;
    position: initial;
    margin-top: 20px;
  }
  .home .top-grow .wrap-right {
    width: 100%;
    margin: auto;
  }
  .home .top-grow .wrap-right .box {
    margin-top: 80px;
  }
  .home .top-grow .wrap-right .box .img-growth {
    width: 100%;
  }
}
@media only screen and (max-width:425px) {
  .home .top-grow {
    padding-bottom: 120px;
  }
  .home .top-grow .wrap-left {
    padding-top: 60px;
    margin-bottom: 0;
  }
  .home .top-grow .wrap-left .img-growing {
    width: 100%;
  }
  .home .top-grow .wrap-right {
    width: 100%;
    margin: auto;
  }
  .home .top-grow .wrap-right .box {
    margin-top: 80px;
  }
}
.home {
  /* 数字で見る */
}
.home .top-number {
  height: 760px;
  padding: 112px 0 160px;
  background-color: #e83816;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}
.home .top-number .wrap {
  width: 48%;
  max-width: 680px;
  margin: auto;
  margin-left: 49%;
  z-index: 1;
  position: relative;
}
.home .top-number .wrap h2 {
  margin-bottom: 46px;
}
.home .top-number .wrap .text {
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 64px;
}
.home .top-number::before {
  content: "";
  background-image: url("./images/top/number-bg.png");
  background-repeat: repeat;
  background-size: contain;
  position: absolute;
  width: 100vw;
  height: 760px;
  top: 0;
  left: 0;
  z-index: 0;
  max-width: 2000px;
  overflow-x: hidden;
}
.home .top-number .img-person01,
.home .top-number .img-person02,
.home .top-number .img-person03,
.home .top-number .img-person04 {
  position: absolute;
  z-index: 0;
}
.home .top-number .img-person01 {
  top: -120px;
  left: -70px;
}
.home .top-number .img-person02 {
  bottom: 0;
  left: 0;
}
.home .top-number .img-person03 {
  top: 90px;
  left: 38%;
}
.home .top-number .img-person04 {
  bottom: -189px;
  left: 50%;
}
@media only screen and (max-width:1024px) {
  .home .top-number {
    height: 700px;
  }
  .home .top-number .wrap h2 {
    margin-bottom: 46px;
  }
  .home .top-number .wrap .text {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 64px;
  }
  .home .top-number .img-person01,
  .home .top-number .img-person02,
  .home .top-number .img-person03,
  .home .top-number .img-person04 {
    height: auto;
  }
  .home .top-number .img-person01 {
    width: 360px;
  }
  .home .top-number .img-person02 {
    width: 230px;
  }
  .home .top-number .img-person03 {
    width: 170px;
  }
  .home .top-number .img-person04 {
    width: 300px;
  }
}
@media only screen and (max-width:768px) {
  .home .top-number .wrap {
    width: 80%;
    margin: auto;
    margin-left: 2em;
  }
  .home .top-number .wrap h2 {
    margin-bottom: 46px;
  }
  .home .top-number .wrap .text {
    font-size: 1.8rem;
    margin-bottom: 64px;
  }
  .home .top-number .img-person01 {
    left: inherit;
    right: 0;
  }
  .home .top-number .img-person03 {
    top: 140px;
    left: 38%;
  }
}
@media only screen and (max-width:630px) {
  .home .top-number {
    height: 630px;
  }
  .home .top-number .wrap {
    width: 100%;
    margin-left: 0;
  }
  .home .top-number .wrap h2 {
    margin-bottom: 38px;
  }
  .home .top-number .wrap .text {
    font-size: 1.6rem;
  }
  .home .top-number .img-person01 {
    width: 270px;
    right: 130px;
  }
  .home .top-number .img-person02 {
    width: 190px;
  }
  .home .top-number .img-person03 {
    width: 130px;
    top: 180px;
    left: 58%;
  }
  .home .top-number .img-person04 {
    width: 240px;
    bottom: -130px;
  }
}
@media only screen and (max-width:425px) {
  .home .top-number {
    height: 600px;
  }
  .home .top-number .img-person01 {
    width: 320px;
    right: 160px;
    top: -130px;
  }
  .home .top-number .img-person02 {
    width: 320px;
    left: -80px;
    bottom: 0;
  }
  .home .top-number .img-person03 {
    width: 200px;
    top: 130px;
    left: 58%;
  }
  .home .top-number .img-person04 {
    width: 240px;
    bottom: -180px;
    right: -20px;
    left: inherit;
  }
}
.home {
  /* リクルート */
}
.home .top-recruit {
  height: 48vw;
  max-height: 680px;
  position: relative;
  overflow: hidden;
  background-color: #f2f2f2;
  position: relative;
}
.home .top-recruit .img-text {
  width: 95%;
  height: auto;
  margin: auto;
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}
.home .top-recruit::before {
  content: "";
  background-image: url("./images/top/all-staff.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.home .top-recruit .wrap-btn {
  height: 100%;
  position: relative;
}
.home .top-recruit .wrap-btn .btn-more {
  background-color: #e83816;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 60px;
}
@media only screen and (max-width:630px) {
  .home .top-recruit {
    height: 350px;
  }
  .home .top-recruit::before {
    background-size: cover;
    width: 560px;
  }
}

/* フッター上の大きなボタンセクション */
.section-link {
  max-width: 2000px;
  margin: auto;
}
.section-link .wrap {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}
.section-link .wrap a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
  gap: 8px;
}
.section-link .wrap a span {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.section-link .wrap a:hover {
  color: #e83816;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
}
.section-link .wrap .btn50 {
  width: 50%;
}
.section-link .wrap .btn33 {
  width: 33.3333%;
}
.section-link .wrap .color1 {
  background-color: #eae9e7;
}
.section-link .wrap .color2 {
  background-color: #767676;
  color: #fff;
}
.section-link .wrap .color3 {
  background-color: #e83816;
  color: #fff;
}
.section-link .wrap .color4 {
  background-color: #aaaaaa;
  color: #fff;
}
.section-link .wrap .color5 {
  background-color: #eae9e7;
}
.section-link .wrap .color6 {
  background-color: #333333;
  color: #fff;
}
.section-link .wrap a {
  height: 22.5225225225vw; /* 店舗紹介ボタンに合わせるため */
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.section-link .wrap .btn-outline {
  background-image: url("./images/button/btn-outline.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
.section-link .wrap .btn-store {
  background-image: url("./images/button/btn-store.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
.section-link .wrap .btn-welfare {
  background-image: url("./images/button/btn-welfare.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
.section-link .wrap .btn-boshu {
  background-image: url("./images/button/btn-boshu.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
.section-link .wrap .btn-flow {
  background-image: url("./images/button/btn-flow.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
.section-link .wrap .btn-recruit {
  background-image: url("./images/button/btn-recruit.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
.section-link .wrap .btn-ts {
  background-image: url("./images/button/btn-training.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
.section-link .wrap .btn-ot {
  background-image: url("./images/button/btn-tech.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
.section-link .wrap .btn-message {
  background-image: url("./images/button/btn-message.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
.section-link .wrap .btn-cp {
  background-image: url("./images/button/btn-career.webp");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
@media screen and (min-width: 2000px) {
  .section-link .wrap a {
    height: 452px;
  }
}
@media only screen and (max-width:1024px) {
  .section-link .wrap a {
    font-size: 2rem;
  }
  .section-link .wrap a span {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width:630px) {
  .section-link .wrap a {
    font-size: 1.6rem;
    gap: 4px;
  }
  .section-link .wrap a span {
    font-size: 1.1rem;
  }
  .section-link .block3-1 {
    flex-wrap: wrap;
  }
  .section-link .block3-1 .color3 {
    width: 100%;
  }
  .section-link .block3-1 .color4 {
    width: 50%;
  }
  .section-link .block3-1 .color5 {
    width: 50%;
  }
  .section-link .block3-2 {
    flex-wrap: wrap;
  }
  .section-link .block3-2 .color6 {
    width: 100%;
  }
  .section-link .block3-2 .color4 {
    width: 50%;
  }
  .section-link .block3-2 .color5 {
    width: 50%;
  }
  .section-link .block3-3 {
    flex-wrap: wrap;
  }
  .section-link .block3-3 .color6 {
    width: 100%;
  }
  .section-link .block3-3 .color3 {
    width: 50%;
  }
  .section-link .block3-3 .color5 {
    width: 50%;
  }
  .section-link .block3-4 {
    flex-wrap: wrap;
  }
  .section-link .block3-4 .color6 {
    width: 100%;
  }
  .section-link .block3-4 .color3 {
    width: 50%;
  }
  .section-link .block3-4 .color4 {
    width: 50%;
  }
}
@media only screen and (max-width:425px) {
  .section-link .wrap a {
    font-size: 1.4rem;
  }
  .section-link .wrap a span {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 500px) {
  body:not(.page.home) .section-link .wrap {
    flex-direction: column;
  }
  body:not(.page.home) .section-link .wrap a {
    height: 50vw;
    width: 100%;
  }
}
/* short movie 共通 */
.section-short-movie {
  margin-top: -120px;
  padding-bottom: 100px;
  background-color: #e6e6e6;
  overflow-x: hidden;
}
.section-short-movie .inner-container {
  width: 92%;
  margin: auto;
}
.section-short-movie h2 {
  text-align: center;
  margin: 100px 0 50px;
}
.section-short-movie .wrap-movie {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 90px;
}
.section-short-movie .wrap-movie .box-movie {
  width: 50%;
}
.section-short-movie .wrap-movie .box-movie .movie {
  width: 100%;
  height: auto;
}
.section-short-movie .wrap-movie .box-movie p {
  font-size: 1.6rem;
  font-weight: 500;
}
.section-short-movie .banner {
  display: block;
  margin: auto;
  max-width: 700px;
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.section-short-movie .banner:hover {
  transition: 0.3s;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media only screen and (max-width:630px) {
  .section-short-movie {
    padding-bottom: 60px;
  }
  .section-short-movie h2 {
    margin: 90px 0 20px;
  }
  .section-short-movie h2 svg {
    width: 150px;
  }
  .section-short-movie .wrap-movie {
    flex-direction: column;
    margin-bottom: 60px;
    gap: 60px;
  }
  .section-short-movie .wrap-movie .box-movie {
    width: 100%;
  }
  .section-short-movie .banner {
    margin-bottom: 70px;
  }
}

/* ページトップボタン */
#page-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 1em;
  bottom: 1em;
  background: #333333;
  opacity: 0.5;
  border-radius: 50%;
  z-index: 10;
  /*はじめは非表示*/
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
#page-top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page-top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  margin: auto;
  text-align: center;
  inset: 0;
  line-height: 1;
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
/********************************************* 404ページ */
/*********************************************** フッター */
.footer {
  background-color: #f2f2f2;
  padding-top: 93px;
  padding-top: 127px;
  color: #333333;
  position: relative;
}
.footer::before {
  content: "";
  width: 100vw;
  height: 2px;
  background-color: #e83816;
  top: 60px;
  left: 0;
  position: absolute;
}
.footer .ft-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 143px;
  padding-bottom: 80px;
  margin-top: 20px;
}
.footer .ft-wrap .btn-entry {
  width: 300px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #333333;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  padding-right: 20px;
}
.footer .ft-wrap .btn-entry::before {
  content: "";
  position: absolute;
  left: 87%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer .ft-wrap .btn-entry {
  /* ボタンホバー時に左から帯 */
  position: relative;
  z-index: 1;
}
.footer .ft-wrap .btn-entry::after {
  background: #e83816;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.footer .ft-wrap .btn-entry:hover {
  color: #fff;
}
.footer .ft-wrap .btn-entry:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.footer .ft-wrap .box {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  font-size: 18px;
  font-weight: 500;
}
.footer .ft-wrap .box .in-box {
  display: flex;
  flex-direction: column;
}
.footer .ft-wrap .box .in-box .nav-child {
  font-size: 15px;
  list-style: disc;
  list-style-position: inside;
}
.footer .ft-wrap .box .in-box .nav-child li {
  margin-bottom: 8px;
}
.footer .ft-wrap .box .in-box .nav-child li::marker {
  font-size: 70%;
}
.footer .ft-wrap .box .in-box:nth-child(1) a {
  margin-bottom: 24px;
}
.footer .ft-wrap .box .in-box p {
  margin-bottom: 14px;
}
.footer .ft-wrap .box .in-box:first-child {
  list-style: none;
}
.footer .ft-wrap .box .in-box:first-child li {
  margin-bottom: 15px;
}
.footer .ft-wrap .box a {
  position: relative;
  padding-bottom: 6px;
}
.footer .ft-wrap .box a:hover {
  color: #e83816;
}
.footer .ft-wrap .box a::before {
  background: #e83816;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.footer .ft-wrap .box a:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.footer .wrap-copyright {
  color: #fff;
  background-color: #333333;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  font-size: 1.2rem;
  padding: 0 10em;
}
@media only screen and (max-width:1139px) {
  .footer .container {
    width: 95vw;
    margin: auto;
  }
  .footer .ft-wrap {
    padding-bottom: 120px;
  }
  .footer .ft-wrap .btn-entry {
    width: 270px;
    height: 72px;
    font-size: 1.6rem;
  }
  .footer .ft-wrap .box {
    font-size: 16px;
    gap: 40px;
  }
  .footer .ft-wrap .box .in-box .nav-child {
    font-size: 13px;
  }
  .footer .wrap-copyright {
    padding: 0 2em;
  }
}
@media only screen and (max-width:1024px) {
  .footer .ft-wrap {
    padding-bottom: 100px;
  }
  .footer .ft-wrap .btn-entry {
    width: 240px;
    height: 72px;
    font-size: 1.4rem;
  }
  .footer .ft-wrap .box {
    font-size: 15px;
  }
  .footer .ft-wrap .box .in-box .nav-child {
    font-size: 13px;
  }
}
@media only screen and (max-width:768px) {
  .footer .ft-wrap {
    margin-top: -40px;
    padding-bottom: 100px;
    flex-direction: column;
    gap: 30px;
  }
  .footer .ft-wrap .btn-entry {
    width: 240px;
    height: 72px;
    font-size: 1.4rem;
    margin: auto;
    margin-right: 0;
  }
  .footer .ft-wrap .box {
    font-size: 15px;
  }
  .footer .ft-wrap .box .in-box .nav-child {
    font-size: 13px;
  }
}
@media only screen and (max-width:630px) {
  .footer .ft-wrap {
    margin-top: 30px;
    padding-bottom: 0;
    flex-direction: column;
    gap: 30px;
  }
  .footer .ft-wrap .btn-entry {
    display: none;
  }
  .footer .ft-wrap .box {
    font-size: 15px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer .ft-wrap .box li {
    margin-bottom: 5px;
  }
  .footer .ft-wrap .box .in-box {
    width: 100%;
    border-bottom: solid 1px #dfdcdc;
    padding: 10px 0;
  }
  .footer .ft-wrap .box .in-box:nth-child(1) a {
    margin-bottom: 16px;
  }
  .footer .ft-wrap .box .in-box:nth-child(1) {
    border-top: solid 1px #dfdcdc;
    padding-top: 24px;
  }
}

/*********************************************** 下層ページのヘッダータイトル */
.under-header-title {
  position: relative;
  height: 460px;
}
.under-header-title .bg-gray {
  background-color: #f2f2f2;
  width: 93%;
  height: 17vw;
  max-height: 220px;
  min-height: 200px;
  position: absolute;
  top: 0;
  right: 0;
}
.under-header-title .wrap-title {
  color: #fff;
  background-color: #e83816;
  width: 93%;
  height: 18vw;
  max-height: 270px;
  min-height: 250px;
  position: absolute;
  top: 57px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 3em;
}
.under-header-title .wrap-title p {
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.under-header-title .wrap-title h1 {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:1024px) {
  .under-header-title {
    height: 390px;
  }
}
@media only screen and (max-width:960px) {
  .under-header-title {
    margin-top: 70px;
  }
}
@media only screen and (max-width:768px) {
  .under-header-title {
    height: 370px;
  }
  .under-header-title .wrap-title {
    min-height: 230px;
  }
  .under-header-title .wrap-title p {
    font-size: 3.8rem;
  }
  .under-header-title .wrap-title h1 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width:630px) {
  .under-header-title {
    height: 300px;
  }
  .under-header-title .wrap-title {
    min-height: 180px;
    top: 35px;
    text-align: right;
    padding-right: 2em;
  }
  .under-header-title .wrap-title p {
    font-size: 3rem;
    margin-bottom: 3px;
  }
  .under-header-title .wrap-title h1 {
    font-size: 1.5rem;
  }
  .under-header-title .bg-gray {
    min-height: 180px;
  }
}

/* ヘッダータイトルの高さ：個別指定 */
.page-message .under-header-title,
.page-outline .under-header-title {
  height: 350px;
}
@media only screen and (max-width:1024px) {
  .page-message .under-header-title,
  .page-outline .under-header-title {
    height: 320px;
  }
}
@media only screen and (max-width:768px) {
  .page-message .under-header-title,
  .page-outline .under-header-title {
    height: 300px;
  }
}
@media only screen and (max-width:630px) {
  .page-message .under-header-title,
  .page-outline .under-header-title {
    height: 230px;
  }
}

/* テーブル共通 */
.wrap-table {
  padding: 110px 100px;
  max-width: 1200px;
  width: 100%;
  background-color: #fff;
  border-radius: 50px;
}
.wrap-table table {
  width: 100%;
}
.wrap-table table,
.wrap-table td,
.wrap-table th {
  border-collapse: collapse;
  font-size: 2rem;
  font-weight: 500;
}
.wrap-table td,
.wrap-table th {
  border-bottom: 2px solid #e83816;
  text-align: left;
  height: 60px;
  padding: 20px 0;
}
.wrap-table th {
  padding: 0 0 0 20px;
  padding-left: 10px;
  color: #e83816;
  font-weight: bold;
  min-width: 120px;
  width: 20%;
}
.wrap-table td {
  width: 80%;
}
@media only screen and (max-width:1024px) {
  .wrap-table table,
  .wrap-table td,
  .wrap-table th {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width:768px) {
  .wrap-table {
    padding: 80px 40px;
  }
  .wrap-table table,
  .wrap-table td,
  .wrap-table th {
    font-size: 1.6rem;
  }
  .wrap-table td,
  .wrap-table th {
    height: 60px;
  }
  .wrap-table th {
    font-weight: bold;
  }
}
@media only screen and (max-width:630px) {
  .wrap-table {
    padding: 40px 20px;
  }
  .wrap-table table,
  .wrap-table td,
  .wrap-table th {
    font-size: 1.6rem;
  }
  .wrap-table td,
  .wrap-table th {
    height: auto;
    border-bottom: none;
    padding: 3px 10px;
    width: 100%;
    line-height: 1.4;
  }
  .wrap-table td .pc-none,
  .wrap-table th .pc-none {
    display: block;
  }
  .wrap-table tr {
    display: flex;
    flex-direction: column;
    border-bottom: solid 2px #e83816;
    padding: 10px 0;
  }
}

/* 募集要項詳細ページ・採用の流れページ */
.btn-common-entry {
  display: block;
  margin: auto;
  margin-top: 120px;
  width: 90%;
  max-width: 630px;
  padding: 48px 10px;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  background-color: #e83816;
  position: relative;
}
.btn-common-entry::before {
  position: absolute;
  content: "";
  right: 10%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn-common-entry {
  /* ボタンホバー時に左から帯 */
  position: relative;
  z-index: 1;
}
.btn-common-entry::after {
  background: #333333;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn-common-entry:hover {
  color: #fff;
}
.btn-common-entry:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media only screen and (max-width:1024px) {
  .btn-common-entry {
    margin-top: 100px;
    width: 90%;
    font-size: 1.7rem;
  }
  .btn-common-entry::before {
    right: 10%;
    width: 13px;
    height: 13px;
  }
}
@media only screen and (max-width:630px) {
  .btn-common-entry {
    margin-top: 80px;
    width: 100%;
    padding: 40px 10px;
  }
  .btn-common-entry::before {
    right: 10%;
    width: 10px;
    height: 10px;
  }
}

.hover-line {
  position: relative;
  padding-bottom: 6px;
}
.hover-line:hover {
  color: #e83816;
}
.hover-line::before {
  background: #e83816;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.hover-line:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}/*# sourceMappingURL=style.css.map */