@charset "UTF-8";
/* font $size
====================================== */
/* font family
====================================== */
/* colors 色管理
====================================== */
/* border 色管理
====================================== */
/* お知らせのカテゴリの色分け
====================================== */
/* breakpoint ブレイクポイント
====================================== */
/*----------------------------------------------------
	INDEX PAGE
----------------------------------------------------*/
/* MV */
.column-mv {
  width: 100%;
  overflow: hidden;
  background: #C50018;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .column-mv {
    padding-top: 75px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 820px) {
  .column-mv .com-btn-09 {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 820px) and (max-width: 767px) {
  .column-mv .com-btn-09 {
    bottom: 15px;
  }
}
@media screen and (max-width: 820px) {
  .column-mv .com-btn-09 a {
    margin: 0 auto;
  }
}

.mv_catch {
  padding: 60px 0;
}
@media screen and (max-width: 820px) {
  .mv_catch {
    padding: 30px 0;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .mv_catch {
    width: 95%;
  }
}

.mv_slide {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}
.mv_slide figure {
  width: 100%;
  flex-shrink: 0;
}
.mv_slide img {
  height: auto;
  width: 100vw;
}

.top_slide {
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
}

.bottom_slide {
  animation: infinity-scroll-right 60s infinite linear 0.5s both;
}

/* 右方向にスライドするアニメーション */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* 左方向にスライドするアニメーション */
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
/* message */
.column-message {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .column-message {
    overflow: auto;
  }
}
.column-message::before {
  content: "";
  position: absolute;
  top: 120px;
  left: calc(50% - 300px - 30px - 309px);
  background: url("../img/top/kazari01.svg");
  width: 309px;
  height: 390px;
}
@media screen and (max-width: 1023px) {
  .column-message::before {
    content: none;
  }
}
.column-message::after {
  content: "";
  position: absolute;
  top: 120px;
  right: calc(50% - 300px - 30px - 430px);
  background: url("../img/top/kazari02.svg");
  width: 430px;
  height: 471px;
}
@media screen and (max-width: 1023px) {
  .column-message::after {
    content: none;
  }
}

.message_text {
  text-align: center;
  line-height: 2.1;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .message_text {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.point_text {
  font-size: 24px;
  font-size: 2.4rem;
  margin-top: 30px;
  display: block;
}
@media screen and (max-width: 767px) {
  .point_text {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.4;
  }
}

/* news */
.column-news .com-btn-02 {
  margin-left: 20px;
}
@media screen and (max-width: 1023px) {
  .column-news .com-btn-06 {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .column-news .com-btn-06 a {
    margin-top: 0;
  }
}
@media screen and (max-width: 820px) {
  .column-news .com-tit-02 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1023px) {
  .column-news .blog_wrap {
    flex-wrap: wrap;
  }
}

.news_list {
  width: 75%;
}
@media screen and (max-width: 1023px) {
  .news_list {
    width: 100%;
  }
}
.news_list li {
  border-bottom: 1px solid #d3d1d1;
}
.news_list li:first-child {
  border-top: 1px solid #d3d1d1;
}
.news_list li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  padding: 30px 0;
}
@media screen and (max-width: 1300px) {
  .news_list li a {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news_list li a .title {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .news_list li a .title {
    width: 100%;
  }
}
.news_list li a .date {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .news_list li a .date {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.cat_wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cat_wrap {
    flex-wrap: wrap;
  }
}
.cat_wrap .cat {
  text-align: center;
  padding: 2px 0;
  font-weight: 600;
  width: 95px;
  border: 1px solid;
  border-radius: 30px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .cat_wrap .cat {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.cat_wrap .cat.info {
  color: #C50018;
  border: 1px solid #C50018;
}
.cat_wrap .cat.event {
  color: #F2A56D;
  border: 1px solid #F2A56D;
}
.cat_wrap .cat.graduate {
  color: #698BC1;
  border: 1px solid #698BC1;
}
.cat_wrap .cat.career {
  color: #68C797;
  border: 1px solid #68C797;
}

/* banner */
.column-banner {
  padding-bottom: 0;
}
@media screen and (max-width: 820px) {
  .column-banner {
    padding: 0 15px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .column-banner {
    margin-top: 20px;
  }
}

/* about us */
.kazari_wrap {
  position: relative;
}
.kazari_wrap::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  background: url("../img/top/line02.svg");
  width: 398px;
  height: 58px;
  opacity: 0;
  animation: slideInLeft 6s forwards;
}
@media screen and (max-width: 820px) {
  .kazari_wrap::before {
    background: url("../img/top/line03.svg");
    width: 31px;
    height: 61px;
    top: -76px;
    left: 30px;
  }
}
.kazari_wrap::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 0;
  background: url("../img/top/line02.svg");
  width: 398px;
  height: 58px;
  opacity: 0;
  animation: slideInRight 7s forwards;
  animation-delay: 1s;
}
@media screen and (max-width: 1300px) {
  .kazari_wrap::after {
    content: none;
  }
}
@media screen and (max-width: 820px) {
  .kazari_wrap::after {
    content: "";
    background: url("../img/top/line03.svg");
    width: 31px;
    height: 61px;
    bottom: -76px;
    right: 30px;
  }
}

/* アニメーション設定 */
/* 左から右にスライドイン */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から左にスライドイン */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.column-aboutus {
  background: #C50018;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .column-aboutus {
    padding-bottom: 90px;
  }
}
.column-aboutus::before {
  content: "";
  position: absolute;
  top: 0px;
  right: calc(50% - 755px);
  background: url("../img/top/line01.svg");
  width: 4px;
  height: 648px;
}
@media screen and (max-width: 820px) {
  .column-aboutus::before {
    content: none;
  }
}
.column-aboutus::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: calc(50% - 755px);
  background: url("../img/top/line01.svg");
  width: 4px;
  height: 648px;
}
@media screen and (max-width: 820px) {
  .column-aboutus::after {
    content: none;
  }
}
.column-aboutus .inner {
  position: relative;
}
@media screen and (max-width: 1300px) {
  .column-aboutus .inner {
    padding: 0 30px;
    background: #fff;
    width: 98%;
    margin-right: 0;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .column-aboutus .inner {
    padding: 0 15px;
  }
}
.column-aboutus .inner::before {
  content: "";
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 1210px;
  height: 920px;
  z-index: 0;
}
@media screen and (max-width: 820px) {
  .column-aboutus .inner::before {
    width: 100%;
    left: 15px;
  }
}
.column-aboutus .inner::after {
  content: "";
  position: absolute;
  top: -37px;
  right: 120px;
  background: url("../img/top/car.svg");
  width: 108px;
  height: 45px;
}
@media screen and (max-width: 767px) {
  .column-aboutus .inner::after {
    width: 65px;
    background-size: contain;
    right: 20px;
    top: -27px;
  }
}
.column-aboutus .com-tit-04 {
  position: absolute;
  top: -40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .column-aboutus .com-tit-04 {
    top: 17px;
  }
}
.column-aboutus .com-tit-03 {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .column-aboutus .com-tit-03 {
    padding-top: 83px;
  }
}

.about_list {
  width: 80%;
  margin-top: 50px;
}
@media screen and (max-width: 1300px) {
  .about_list {
    width: 100%;
    gap: 10px;
  }
}
@media screen and (max-width: 820px) {
  .about_list {
    width: 90%;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about_list {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .about_list .com-tit-05 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .about_list figure {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .about_list figure::before {
    content: "";
    background: url(../img/top/bg_black.png) no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-size: cover;
    border-radius: 30px;
  }
}
.about_list figure img {
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .about_list figure:after {
    content: "";
    background: url(../img/common/arrow_wh.svg) no-repeat;
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    position: absolute;
  }
}
.about_list .left {
  position: relative;
  width: 48%;
}
@media screen and (max-width: 820px) {
  .about_list .left {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .about_list .left img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 820px) and (max-width: 767px) {
  .about_list .left img {
    height: 300px;
    -o-object-position: top;
       object-position: top;
  }
}
.about_list .left .text {
  position: absolute;
  left: 50px;
  bottom: 30px;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .about_list .left .text {
    left: 20px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
  }
}
.about_list .right {
  width: 55%;
}
@media screen and (max-width: 820px) {
  .about_list .right {
    width: 100%;
  }
}
.about_list .right ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about_list .right li {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .about_list .right li {
    gap: 40px;
  }
}
.about_list .right li > a {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .about_list .right li > a {
    width: 100%;
  }
}
.about_list .right li .text {
  width: 50%;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about_list .right li .text {
    position: absolute;
    bottom: 30px;
    left: 20px;
    color: #fff;
  }
}
.about_list .right li .icon_text {
  padding: 5px 10px;
  font-weight: 500;
}
.about_list .icon_text {
  background: #000;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 10px 0 10px;
  z-index: 1;
  padding: 5px 60px;
}
@media screen and (max-width: 767px) {
  .about_list .icon_text {
    padding: 10px 20px;
  }
}
.about_list .img_area {
  position: relative;
}

/* letter */
.column-letter {
  position: relative;
}
@media screen and (max-width: 767px) {
  .column-letter {
    padding-bottom: 80px;
  }
}
.column-letter::before {
  content: "";
  background: #FCF2F0;
  width: 100%;
  height: 70%;
  border-radius: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 820px) {
  .column-letter::before {
    border-radius: 20px;
  }
}
.column-letter .inner {
  position: relative;
}
.column-letter .com-tit-04 {
  position: absolute;
  top: -100px;
  left: 0;
  text-align: left;
}

.message_area {
  margin-top: 90px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .message_area {
    margin-top: 0;
  }
}
@media screen and (max-width: 820px) {
  .message_area figure {
    margin: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .message_area figure {
    margin-left: -200px;
  }
}
.message_area figure img {
  border-radius: 324px;
}
.message_area .text {
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: calc(50% - 467px);
  transform: translateY(-50%);
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .message_area .text {
    left: calc(50% - 367px);
  }
}
@media screen and (max-width: 820px) {
  .message_area .text {
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    margin-bottom: 30px;
  }
}
.message_area .text:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  filter: brightness(1.8);
  width: 416px;
  height: 470px;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: calc(50% - 207px);
  transform: translateY(-50%);
}
@media screen and (max-width: 1300px) {
  .message_area .text:before {
    left: calc(50% - 168px);
    width: 333px;
    height: 432px;
  }
}
@media screen and (max-width: 820px) {
  .message_area .text:before {
    content: none;
  }
}
.message_area .text::after {
  content: "";
  background: url("../img/top/mark02.svg") no-repeat;
  position: absolute;
  top: -123px;
  left: 50%;
  transform: translateX(-50%);
  width: 61px;
  height: 80px;
}
@media screen and (max-width: 820px) {
  .message_area .text::after {
    content: none;
  }
}
.message_area .text .com-tit-06 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .message_area .text .com-tit-06 {
    width: 182px;
    margin: 0 auto 10px auto;
  }
}
@media screen and (max-width: 820px) {
  .message_area .text .com-tit-06::before {
    content: "";
    background: url("../img/top/mark02.svg") no-repeat;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    width: 61px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .message_area .text .com-tit-06::before {
    left: -40%;
  }
}
@media screen and (max-width: 820px) {
  .message_area .com-btn-05 a {
    margin: -30px 15px 0 auto;
    z-index: 1;
    position: relative;
  }
}

.letter_wrap {
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .letter_wrap {
    margin-top: 40px;
  }
}
.letter_wrap .com-tit-04 {
  position: absolute;
  top: -80px;
  width: 100%;
  color: #FCF2F0;
}
@media screen and (max-width: 767px) {
  .letter_wrap .com-tit-04 {
    top: -2px;
  }
}
.letter_wrap .com-tit-02 {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  margin-left: 100px;
}
@media screen and (max-width: 820px) {
  .letter_wrap .com-tit-02 {
    margin-left: 0;
  }
}

.btn_area {
  margin-left: 100px;
  font-weight: 600;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .btn_area {
    flex-wrap: wrap;
    margin-left: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 820px) {
  .btn_area > p {
    text-align: center;
  }
}
.btn_area .com-btn-06 a {
  margin-top: 0;
}

.blog_letter {
  margin-top: 30px;
  justify-content: flex-start;
}
@media screen and (max-width: 820px) {
  .blog_letter {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .blog_letter {
    gap: 20px;
  }
}
.blog_letter li {
  width: calc(25% - 20px);
}
@media screen and (max-width: 820px) {
  .blog_letter li {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 767px) {
  .blog_letter li {
    width: calc(50% - 10px);
  }
}
.blog_letter li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 820px) {
  .blog_letter li img {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .blog_letter li img {
    height: 160px;
  }
}

/* interview */
@media screen and (max-width: 820px) {
  .column-interview {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.swiper_interview .swiper-slide {
  position: relative;
}
.swiper_interview .swiper-slide::after {
  content: "";
  background: url("../img/common/btn_red.svg") no-repeat;
  width: 44px;
  height: 44px;
  position: absolute;
  bottom: 0px;
  right: 0;
}
@media screen and (max-width: 820px) {
  .swiper_interview .swiper-slide::after {
    background: url("../img/common/arrow_wh.svg") no-repeat;
    width: 56px;
    height: 56px;
    bottom: 30px;
    right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .swiper_interview .swiper-slide::after {
    right: 10px;
    bottom: 15px;
  }
}
.swiper_interview .interview-item {
  position: relative;
}
.swiper_interview figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 220px;
  border-radius: 120px;
  filter: brightness(70%);
}
@media screen and (max-width: 820px) {
  .swiper_interview figure img {
    border-radius: 50px;
    height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .swiper_interview figure img {
    height: 240px;
  }
}
.swiper_interview .com-tit-05 {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  color: #fff;
  line-height: 1.4;
  font-size: 24px;
  font-size: 2.4rem;
  padding-right: 40px;
}
@media screen and (max-width: 820px) {
  .swiper_interview .com-tit-05 {
    top: inherit;
    bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .swiper_interview .com-tit-05 {
    line-height: 1.4;
    left: 20px;
    bottom: 30px;
    padding-right: 20px;
  }
}

.interview_title {
  gap: 0;
  justify-content: flex-start;
  margin: 20px 40px 0 30px;
  font-weight: 600;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .interview_title {
    position: absolute;
    top: inherit;
    bottom: 20px;
    left: 20px;
    color: #fff;
    margin-left: 20px;
    flex-direction: column;
    gap: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .interview_title {
    font-size: 12px;
    font-size: 1.2rem;
    left: 5px;
  }
}
.interview_title .year:after {
  content: "／";
  margin: 5px 0;
}
@media screen and (max-width: 820px) {
  .interview_title .year:after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .interview_title .year {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/* swiper */
.swiper-button-next,
.swiper-button-prev {
  width: 8px !important;
  height: 13px !important;
}
@media screen and (max-width: 820px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: inherit !important;
    bottom: -30px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    bottom: -20px;
  }
}

.swiper-button-next {
  right: 15% !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 15% !important;
  }
}
.swiper-button-next:after {
  content: none;
}
@media screen and (max-width: 820px) {
  .swiper-button-next:after {
    content: "" !important;
    background: url("../img/common/slide_arrow.svg") no-repeat;
    transform: scaleX(-1);
    background-size: contain !important;
    width: 8px;
    height: 13px;
    display: block;
  }
}

.swiper-button-prev {
  left: 15% !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 15% !important;
  }
}
.swiper-button-prev:after {
  content: none;
}
@media screen and (max-width: 820px) {
  .swiper-button-prev:after {
    content: "" !important;
    background: url("../img/common/slide_arrow.svg") no-repeat;
    background-size: contain !important;
    width: 8px;
    height: 13px;
    display: block;
  }
}

.swiper-pagination-bullet-active {
  background: #C50018;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 8px !important;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 4px !important;
  }
}

.swiper-pagination {
  display: none;
}
@media screen and (max-width: 820px) {
  .swiper-pagination {
    display: block;
    position: relative;
    bottom: -40px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    bottom: -26px !important;
  }
}

.swiper-container {
  position: relative;
}

/* jobs */
.column-jobs {
  background: #FCF2F0;
  border-radius: 100px 100px 0 0;
}
@media screen and (max-width: 767px) {
  .column-jobs {
    border-radius: 20px 20px 0 0;
  }
}
@media screen and (max-width: 820px) {
  .column-jobs .swiper-container {
    margin-left: -15px;
  }
}
@media screen and (max-width: 820px) {
  .column-jobs .swiper-button-prev {
    left: 60% !important;
  }
}
@media screen and (max-width: 820px) {
  .column-jobs .swiper-button-next {
    right: 0 !important;
  }
}
.column-jobs .swiper-pagination {
  right: 14%;
  left: inherit;
  text-align: right;
}
.column-jobs .com-btn-06 a {
  margin: -80px 0 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .column-jobs .com-btn-06 a {
    margin-top: 80px;
  }
}

.swiper_jobs {
  margin-top: 30px;
}
.swiper_jobs .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .swiper_jobs .swiper-wrapper {
    display: flex;
    gap: 0;
  }
}
.swiper_jobs .swiper-wrapper .swiper-slide {
  background: #fff;
}
@media screen and (max-width: 820px) {
  .swiper_jobs .swiper-wrapper .swiper-slide {
    position: relative;
  }
}
@media screen and (max-width: 820px) {
  .swiper_jobs .swiper-wrapper .swiper-slide:after {
    content: "";
    position: absolute;
    background: url("../img/common/arrow_wh.svg") no-repeat;
    width: 56px;
    height: 56px;
    bottom: 60px;
    right: 40px;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .swiper_jobs .swiper-wrapper .swiper-slide:after {
    bottom: 100px;
    right: 20px;
  }
}
@media screen and (max-width: 820px) {
  .swiper_jobs .swiper-wrapper .swiper-slide figure {
    position: relative;
  }
}
@media screen and (max-width: 820px) {
  .swiper_jobs .swiper-wrapper .swiper-slide figure::after {
    content: "";
    background: url("../img/top/bg_black.png") no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .swiper_jobs .swiper-wrapper .swiper-slide figure img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 290px;
  }
}
.swiper_jobs .swiper-wrapper .text {
  padding: 40px 0 30px 0;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .swiper_jobs .swiper-wrapper .text {
    position: absolute;
    bottom: 20px;
    left: 35px;
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .swiper_jobs .swiper-wrapper .text {
    padding: 0;
    left: 30px;
  }
}
@media screen and (max-width: 820px) {
  .swiper_jobs .swiper-wrapper .text .center {
    text-align: left;
    font-size: 14px;
    font-size: 1.4rem;
    order: 3;
  }
}
.swiper_jobs .swiper-wrapper .jobs_text {
  color: #C50018;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 20px 0;
  border: 1px solid;
  padding: 2px 80px;
  display: inline-block;
}
@media screen and (max-width: 820px) {
  .swiper_jobs .swiper-wrapper .jobs_text {
    order: 1;
    color: #fff;
    background: #C50018;
    border: none;
    width: 80px;
    padding: 2px 10px;
    text-align: center;
    margin: 0 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .swiper_jobs .swiper-wrapper .jobs_text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.swiper_jobs .swiper-wrapper .com-tit-03 {
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: inherit;
  color: #C50018;
  margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
  .swiper_jobs .swiper-wrapper .com-tit-03 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 820px) {
  .swiper_jobs .swiper-wrapper .com-tit-03 {
    font-size: 24px;
    font-size: 2.4rem;
    order: 2;
    color: #fff;
  }
}
@media screen and (max-width: 820px) {
  .swiper_jobs .com-btn-08 {
    display: none;
  }
}

/*----------------------------------------------------
	ENTRY 採用エントリー
----------------------------------------------------*/
@media screen and (max-width: 767px) {
  .column-entry-page.page_title_wrap .com-tit-04 {
    top: 150px;
  }
}

.entry-wrap {
  display: flex;
  gap: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 820px) {
  .entry-wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .entry-wrap {
    margin-top: 40px;
  }
}
.entry-wrap > div {
  background: #FCF2F0;
  border-radius: 30px;
  padding: 40px 60px;
  text-align: center;
  font-weight: 600;
  width: 50%;
}
@media screen and (max-width: 820px) {
  .entry-wrap > div {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .entry-wrap > div {
    padding: 30px 20px;
  }
}
.entry-wrap .com-tit-05 {
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 820px) {
  .entry-wrap .com-tit-05 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.career-btn {
  background: #fff;
  margin-top: 40px;
  padding: 35px 30px;
}
@media screen and (max-width: 767px) {
  .career-btn {
    margin-top: 20px;
    padding: 30px 15px;
  }
}
.career-btn > ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.career-btn > ul li, .career-btn > ul a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .career-btn > ul li, .career-btn > ul a {
    gap: 10px;
  }
}
.career-btn > ul li.tel, .career-btn > ul a.tel {
  font-size: 38px;
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  .career-btn > ul li.tel, .career-btn > ul a.tel {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.career-btn > ul li.tel img, .career-btn > ul a.tel img {
  width: 25px;
}
@media screen and (max-width: 767px) {
  .career-btn > ul li.tel img, .career-btn > ul a.tel img {
    width: 15px;
  }
}
.career-btn > ul li.mail, .career-btn > ul a.mail {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .career-btn > ul li.mail, .career-btn > ul a.mail {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .career-btn > ul li.mail img, .career-btn > ul a.mail img {
    width: 22px;
  }
}
.career-btn .tanto-name {
  margin-top: 20px;
  border-radius: 60px;
  display: inline-block;
  padding: 3px 15px;
  border: 1px solid #DB4557;
}

.mynavi-btn {
  background: #fff;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .mynavi-btn {
    margin-top: 20px;
  }
}
.mynavi-btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .mynavi-btn a {
    padding: 15px;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .mynavi-btn a svg {
    margin-top: -5px;
  }
}

/*----------------------------------------------------
	ABOUT まるわかりNPS
----------------------------------------------------*/
.page_title_wrap {
  position: relative;
  padding-top: 300px;
}
@media screen and (max-width: 1300px) {
  .page_title_wrap {
    padding-top: 180px;
  }
}
.page_title_wrap .com-tit-03 {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .page_title_wrap .com-tit-03 {
    margin-left: 0;
  }
}
.page_title_wrap .com-tit-04 {
  position: absolute;
  top: 260px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #FCF2F0;
  line-height: 0.8;
}
@media screen and (max-width: 1300px) {
  .page_title_wrap .com-tit-04 {
    top: 130px;
  }
}
@media screen and (max-width: 767px) {
  .page_title_wrap .com-tit-04 {
    top: 100px;
  }
}

.column-about-page {
  background: #FCF2F0;
}

.about_page_list {
  flex-wrap: wrap;
  gap: 100px 10px;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .about_page_list {
    margin-top: 90px;
  }
}
.about_page_list .list_detaile {
  background: #fff;
}
.about_page_list .list_detaile:nth-child(1), .about_page_list .list_detaile:nth-child(2) {
  width: calc(50% - 10px);
}
@media screen and (max-width: 820px) {
  .about_page_list .list_detaile:nth-child(1), .about_page_list .list_detaile:nth-child(2) {
    width: 100%;
  }
}
.about_page_list .list_detaile:nth-child(1) figure, .about_page_list .list_detaile:nth-child(2) figure {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .about_page_list .list_detaile:nth-child(2) figure img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 250px;
  }
}
.about_page_list .list_detaile:nth-child(3), .about_page_list .list_detaile:nth-child(6), .about_page_list .list_detaile:nth-child(7) {
  width: calc(60% - 10px);
}
@media screen and (max-width: 767px) {
  .about_page_list .list_detaile:nth-child(3), .about_page_list .list_detaile:nth-child(6), .about_page_list .list_detaile:nth-child(7) {
    width: 100%;
  }
}
.about_page_list .list_detaile:nth-child(4), .about_page_list .list_detaile:nth-child(5), .about_page_list .list_detaile:nth-child(8) {
  width: calc(40% - 10px);
}
@media screen and (max-width: 767px) {
  .about_page_list .list_detaile:nth-child(4), .about_page_list .list_detaile:nth-child(5), .about_page_list .list_detaile:nth-child(8) {
    width: 100%;
  }
}
.about_page_list .list_detaile .text_box {
  padding: 60px 60px 30px 60px;
}
@media screen and (max-width: 820px) {
  .about_page_list .list_detaile .text_box {
    padding: 60px 25px 25px 25px;
  }
}
.about_page_list .list_detaile figure {
  text-align: center;
}

.about_title {
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  background: #fff;
  margin: -50px 20px -15px 20px;
  border: 2px solid #DB4557;
  border-radius: 5px;
  padding: 20px 20px 20px 95px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1300px) {
  .about_title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 820px) {
  .about_title {
    font-size: 17px;
    font-size: 1.7rem;
    padding-left: 60px;
  }
}
.about_title:before {
  content: "Q.";
  position: absolute;
  top: 5px;
  left: 25px;
  color: #DB4557;
  font-family: "Poppins", serif;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .about_title:before {
    font-size: 30px;
    font-size: 3rem;
    top: 8px;
    left: 15px;
  }
}
.about_title::after {
  content: "";
  background: url("../img/about/triangle.svg") no-repeat;
  position: absolute;
  bottom: -38px;
  left: 60px;
  width: 66px;
  height: 38px;
}

/*----------------------------------------------------
	WORK 私たちのお仕事
----------------------------------------------------*/
.column-work01 {
  padding-top: 0;
}
.column-work01 .com-tit-04 {
  width: 100%;
  color: #FCF2F0;
  text-shadow: none;
  font-size: 140px;
  font-size: 14rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .column-work01 .com-tit-04 {
    font-size: 60px;
    font-size: 6rem;
  }
}
.column-work01 .com-tit-03 {
  position: relative;
  margin-top: -90px;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.6;
}
@media screen and (max-width: 820px) {
  .column-work01 .com-tit-03 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .column-work01 .com-tit-03 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-top: -40px;
  }
}
.column-work01 .point_text_other {
  display: block;
  font-weight: 500;
}
.column-work01 .message_text {
  font-weight: 500;
}

.column-work02 {
  padding: 0 60px;
}
@media screen and (max-width: 1300px) {
  .column-work02 {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .column-work02 {
    padding: 0 15px;
  }
}
.column-work02 .com-tit-05 {
  font-size: 38px;
  font-size: 3.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .column-work02 .com-tit-05 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1300px) {
  .column-work02 .com-tit-05 .en {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .column-work02 .com-tit-05 .en {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.column-work02 .about_list {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .column-work02 .about_list {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .column-work02 .about_list figure::after {
    display: none;
  }
}
.column-work02 .about_list .left .text {
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  width: 100%;
}
.column-work02 figure img {
  border-radius: 0;
}

.work_culture {
  position: relative;
}
.work_culture .person {
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 38%;
}
@media screen and (max-width: 820px) {
  .work_culture .person {
    display: none;
  }
}
.work_culture .com-tit-04 {
  text-align: left;
  line-height: 1;
}
.work_culture .com-tit-03 {
  font-size: 32px;
  font-size: 3.2rem;
  text-align: left;
  margin-top: -130px;
  position: relative;
  padding-left: 100px;
}
@media screen and (max-width: 820px) {
  .work_culture .com-tit-03 {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .work_culture .com-tit-03 {
    font-size: 20px;
    font-size: 2rem;
    margin-top: -30px;
  }
}
.work_culture .message_text {
  text-align: left;
  padding-left: 100px;
}
@media screen and (max-width: 820px) {
  .work_culture .message_text {
    padding-left: 0;
  }
}

.column-work04 {
  background: #FCF2F0;
  padding-top: 180px;
  border-radius: 100px 100px 0 0;
}
@media screen and (max-width: 767px) {
  .column-work04 {
    border-radius: 20px 20px 0 0;
    padding-top: 100px;
  }
}
.column-work04 .com-tit-04 {
  top: 130px;
}
@media screen and (max-width: 767px) {
  .column-work04 .com-tit-04 {
    top: 72px;
  }
}

.flow-list {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow-list {
    gap: 60px;
    margin-top: 50px;
  }
}
.flow-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  border: 1px solid #C50018;
  height: 104%;
}
@media screen and (max-width: 767px) {
  .flow-list::before {
    top: -20px;
    left: 0;
    height: 101%;
  }
}
.flow-list-detaile {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow-list-detaile {
    flex-wrap: wrap;
    gap: 40px;
    padding-left: 30px;
  }
}
.flow-list-detaile::before {
  content: "";
  border-radius: 100%;
  width: 30px;
  height: 30px;
  background-color: rgba(197, 0, 24, 0.4);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow-list-detaile::before {
    left: 0;
  }
}
.flow-list-detaile .text {
  font-weight: 600;
}
.flow-list-detaile .text, .flow-list-detaile figure {
  width: calc(50% - 70px);
}
@media screen and (max-width: 767px) {
  .flow-list-detaile .text, .flow-list-detaile figure {
    width: 100%;
  }
}
.flow-list-detaile figure img {
  width: 95%;
  display: block;
}
@media screen and (max-width: 767px) {
  .flow-list-detaile figure img {
    width: 100%;
  }
}
.flow-list-detaile.reverse {
  flex-direction: row-reverse;
}
.flow-list-detaile.reverse .comment::before {
  content: "";
  right: -35px;
  left: inherit;
  border-left: 55px solid #fff;
  border-right: inherit;
}
@media screen and (max-width: 767px) {
  .flow-list-detaile.reverse .comment::before {
    left: -20px;
    right: inherit;
    border-left: inherit;
    border-right: 20px solid #fff;
  }
}
.flow-list-detaile.reverse figure img {
  margin-left: auto;
}

.comment {
  margin-top: 40px;
  font-weight: 500;
  position: relative;
}
.comment::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 55px solid #fff;
}
@media screen and (max-width: 767px) {
  .comment::before {
    left: -20px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 20px solid #fff;
  }
}
.comment .comment_title {
  color: #C50018;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  padding: 0 0 0 18px;
}
@media screen and (max-width: 767px) {
  .comment .comment_title {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 0 0 15px;
  }
}
.comment .comment_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left: 12px solid #C50018;
}
@media screen and (max-width: 767px) {
  .comment .comment_title::before {
    border: 5px solid transparent;
    border-left: 8px solid #C50018;
  }
}

/*----------------------------------------------------
	VISION 私たちの想い
----------------------------------------------------*/
.title_area {
  align-items: center;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .title_area {
    flex-wrap: wrap;
  }
}
.title_area .com-tit-02 {
  margin-bottom: 0;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 1300px) {
  .title_area .com-tit-02 {
    position: relative;
    z-index: 1;
  }
}
.title_area .com-tit-02 .en {
  color: #fff;
}
.title_area .com-tit-04 {
  line-height: 0.8;
  color: #C50018;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4), -1px -1px 0 rgba(255, 255, 255, 0.4), 1px -1px 0 rgba(255, 255, 255, 0.4), -1px 1px 0 rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 1600px) {
  .title_area .com-tit-04 {
    font-size: 140px;
    font-size: 14rem;
  }
}
@media screen and (max-width: 1300px) {
  .title_area .com-tit-04 {
    font-size: 180px;
    font-size: 18rem;
    position: absolute;
    width: 100%;
    top: -80px;
    left: 0;
    text-align: left;
    line-height: 0.8;
  }
}
@media screen and (max-width: 820px) {
  .title_area .com-tit-04 {
    top: -64px;
    font-size: 140px;
    font-size: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .title_area .com-tit-04 {
    top: -36px;
    font-size: 60px;
    font-size: 6rem;
  }
}

.column-vision-page {
  position: relative;
  padding: 250px 60px 0 60px;
}
@media screen and (max-width: 1300px) {
  .column-vision-page {
    padding: 250px 30px 0 30px;
  }
}
@media screen and (max-width: 820px) {
  .column-vision-page {
    padding: 180px 15px 0 15px;
  }
}
.column-vision-page::before {
  content: "";
  background: #C50018;
  width: 100%;
  height: 650px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1300px) {
  .column-vision-page::before {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .column-vision-page::before {
    height: 350px;
  }
}
.column-vision-page figure img {
  border-radius: 30px;
}
@media screen and (max-width: 820px) {
  .column-vision-page figure img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .column-vision-page figure img {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .column-message-page {
    padding-top: 150px;
    margin-top: -100px;
  }
}

.message_wrap {
  width: 830px;
  font-weight: 600;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .message_wrap {
    width: 100%;
  }
}
.message_wrap .message_text {
  text-align: left;
}

.message_fild {
  padding-left: 20px;
  display: block;
}
@media screen and (max-width: 767px) {
  .message_fild {
    padding-left: 10px;
  }
}

.name {
  font-weight: 600;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.6;
  margin-top: 60px;
  letter-spacing: 0.1em;
  text-align: right;
}
@media screen and (max-width: 820px) {
  .name {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .name {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.column-philosophy-page {
  background: #FCF2F0;
  border-radius: 100px;
  padding-bottom: 120px;
}
@media screen and (max-width: 820px) {
  .column-philosophy-page {
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .column-philosophy-page {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 1300px) {
  .philosophy_wrap {
    flex-wrap: wrap;
    gap: 0;
  }
}

@media screen and (max-width: 1300px) {
  .philosophy_list {
    margin-left: 80px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 820px) {
  .philosophy_list {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 767px) {
  .philosophy_list {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.philosophy_list li {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #C50018;
  width: 322px;
  height: 322px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: -60px;
}
@media screen and (max-width: 820px) {
  .philosophy_list li {
    width: 250px;
    height: 250px;
    margin-left: -50px;
  }
}
@media screen and (max-width: 767px) {
  .philosophy_list li {
    margin-left: 0;
    width: 300px;
    height: 300px;
  }
}
.philosophy_list li figure {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .philosophy_list li figure img {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .philosophy_list li figure img {
    height: auto;
  }
}
@media screen and (max-width: 820px) {
  .philosophy_list li .message_text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.personal_wrap {
  background: #fff;
  padding: 80px;
  margin-top: 100px;
}
@media screen and (max-width: 1300px) {
  .personal_wrap {
    padding: 60px;
  }
}
@media screen and (max-width: 767px) {
  .personal_wrap {
    padding: 60px 25px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 820px) {
  .personal_wrap .com-tit-03 {
    text-align: center;
  }
}

.persobal_tit {
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  padding: 30px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
@media screen and (max-width: 820px) {
  .persobal_tit {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .persobal_tit {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.num_list {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 32px;
  font-size: 3.2rem;
  color: #C50018;
}
@media screen and (max-width: 820px) {
  .num_list {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .num_list {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.num_list span {
  font-style: italic;
  margin-left: 10px;
  color: #fff;
  text-shadow: 1px 1px 0 #C50018, -1px -1px 0 #C50018, 1px -1px 0 #C50018, -1px 1px 0 #C50018;
  font-size: 70px;
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .num_list span {
    font-size: 60px;
    font-size: 6rem;
  }
}

.personal_list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .personal_list {
    margin-top: 40px;
    gap: 60px;
  }
}
.personal_list li {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .personal_list li {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.personal_list li:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 820px) {
  .personal_list li:nth-child(even) {
    flex-direction: row;
  }
}
.personal_list li figure {
  width: calc(60% - 30px);
}
@media screen and (max-width: 820px) {
  .personal_list li figure {
    width: 100%;
  }
}
.personal_list li figure img {
  border-radius: 30px;
}
.personal_list li .text_box {
  width: calc(40% - 30px);
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .personal_list li .text_box {
    width: 100%;
  }
}

@media screen and (max-width: 1300px) {
  .column-recruitment-page {
    padding: 120px 15px;
  }
}
@media screen and (max-width: 767px) {
  .column-recruitment-page {
    padding: 80px 15px;
  }
}
.column-recruitment-page .inner {
  border: 1px solid #C50018;
  border-radius: 10px;
  padding: 80px 120px;
}
@media screen and (max-width: 1300px) {
  .column-recruitment-page .inner {
    padding: 60px;
  }
}
@media screen and (max-width: 767px) {
  .column-recruitment-page .inner {
    padding: 30px 15px;
  }
}

.message_recruitment_wrap {
  align-items: flex-end;
  gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 820px) {
  .message_recruitment_wrap {
    flex-wrap: wrap;
  }
}
.message_recruitment_wrap .message_text {
  text-align: left;
}
@media screen and (max-width: 820px) {
  .message_recruitment_wrap figure {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 820px) {
  .message_recruitment_wrap figure img {
    width: 100%;
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .message_recruitment_wrap figure img {
    height: 250px;
    width: 100%;
  }
}

/*----------------------------------------------------
	NEWS お知らせ
----------------------------------------------------*/
/* archive */
.column-news-kv .com-tit-04 {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .column-news-kv .com-tit-04 {
    top: 150px;
  }
}

.column-news-archive .news_list {
  width: 100%;
}

.news_list_tab {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-self: center;
  background: #FCF2F0;
  padding: 30px 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 820px) {
  .news_list_tab {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .news_list_tab {
    gap: 10px;
    padding: 20px 10px;
  }
}
.news_list_tab li a {
  background: #fff;
  border-radius: 10px;
  padding: 10px 30px 10px 40px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .news_list_tab li a {
    padding: 10px 18px 10px 30px;
  }
}
.news_list_tab li a::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F7DFD9;
}
@media screen and (max-width: 767px) {
  .news_list_tab li a::before {
    left: 15px;
  }
}
.news_list_tab li.info a::before {
  background: #C50018;
}
.news_list_tab li.event a::before {
  background: #F2A56D;
}
.news_list_tab li.graduate a::before {
  background: #698BC1;
}
.news_list_tab li.career a::before {
  background: #68C797;
}

.pagination {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 50px;
}

.page-numbers {
  padding: 0 10px;
}

/* single */
.column-news-single {
  padding: 180px 0;
}
@media screen and (max-width: 820px) {
  .column-news-single {
    padding: 160px 0;
  }
}
@media screen and (max-width: 767px) {
  .column-news-single {
    padding: 120px 0 80px 0;
  }
}

.fablic {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .fablic {
    flex-wrap: wrap;
    gap: 5px;
  }
}

.paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .paging {
    margin-top: 100px;
  }
}
.paging .com-btn-04 a {
  margin-top: 0;
}

/* グーテンベルク編集 */
.wp-block-image {
  margin: 30px 0;
}
.wp-block-image img {
  border-radius: 30px;
}

/*----------------------------------------------------
	INTERVIEW インタビュー
----------------------------------------------------*/
/* archive */
.column-interview-kv::before {
  content: "";
  height: 403px;
}
@media screen and (max-width: 1300px) {
  .column-interview-kv::before {
    height: 360px;
  }
}
@media screen and (max-width: 820px) {
  .column-interview-kv::before {
    height: 280px;
  }
}
@media screen and (max-width: 767px) {
  .column-interview-kv::before {
    height: 240px;
  }
}

.tabs .tab_list {
  display: flex;
  width: 80%;
  margin: 20px auto 0 auto;
}
@media screen and (max-width: 820px) {
  .tabs .tab_list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .tabs .tab_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 0;
  }
}
.tabs .tab_item {
  flex: 1;
  text-align: center;
  cursor: pointer;
  color: #999;
  border-bottom: 4px solid;
  padding-bottom: 10px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .tabs .tab_item {
    width: 50%;
    flex: inherit;
  }
}
.tabs .tab_item:hover {
  opacity: 0.75;
}
.tabs .tab_item.active {
  border-bottom: 4px solid #000;
  padding-bottom: 10px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .tabs .sub_jobs {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.tabs .tab_content_wrapper {
  margin-top: 20px;
}
.tabs .tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .tabs .tab_content {
    padding: 40px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .tabs .tab_content {
    gap: 30px;
  }
}

.inerview_post {
  width: calc(50% - 60px);
  position: relative;
}
@media screen and (max-width: 820px) {
  .inerview_post {
    width: 100%;
  }
}
.inerview_post::after {
  content: "";
  background: url(../img/common/btn_red.svg) no-repeat;
  width: 44px;
  height: 44px;
  position: absolute;
  bottom: 0px;
  right: 0;
}
@media screen and (max-width: 820px) {
  .inerview_post::after {
    background: url(../img/common/arrow_wh.svg) no-repeat;
    width: 56px;
    height: 56px;
    bottom: 15px;
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .inerview_post::after {
    background-size: contain;
    width: 48px;
    height: 48px;
  }
}

/* single */
.kv_image {
  position: relative;
}
.kv_image .inner {
  position: relative;
}
.kv_image .com-tit-08 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-650px, -50%);
  z-index: 1;
  color: #C50018;
  font-weight: 600;
  font-size: 43px;
  font-size: 4.3rem;
  line-height: 2;
}
@media screen and (max-width: 1600px) {
  .kv_image .com-tit-08 {
    left: 5px;
    transform: translateY(-50%);
    padding-right: 5px;
  }
}
@media screen and (max-width: 1300px) {
  .kv_image .com-tit-08 {
    font-size: 38px;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 820px) {
  .kv_image .com-tit-08 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .kv_image .com-tit-08 {
    font-size: 19px;
    font-size: 1.9rem;
    transform: inherit;
    bottom: -50px;
    top: inherit;
  }
}
.kv_image .com-tit-08 span {
  background: #fff;
  padding: 5px 20px;
  box-shadow: 5px 5px #C50018;
}
@media screen and (max-width: 767px) {
  .kv_image .com-tit-08 span {
    padding: 5px 10px;
  }
}
.kv_image .com-tit-08 .second-span {
  margin-left: 80px;
}
@media screen and (max-width: 767px) {
  .kv_image .com-tit-08 .second-span {
    margin-left: 30px;
  }
}

.jobs_detaile {
  font-weight: 600;
  padding: 50px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 820px) {
  .jobs_detaile {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .jobs_detaile {
    gap: 20px;
  }
}
.jobs_detaile .interview_name {
  font-size: 32px;
  font-size: 3.2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .jobs_detaile .interview_name {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
.jobs_detaile .interview_name .name_small {
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .jobs_detaile .interview_name .name_small {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.jobs_detaile .interview_left {
  height: 100%;
  padding-right: 30px;
  border-right: 1px solid #707070;
}
@media screen and (max-width: 820px) {
  .jobs_detaile .interview_left {
    width: 100%;
    padding-right: 0;
    border-right: none;
  }
}
.jobs_detaile .interview_right {
  flex: 1;
}
.jobs_detaile .interview_right .message_text {
  text-align: left;
}

.column-interview-single {
  padding-bottom: 0;
}

.interview_detaile_wrap {
  padding: 80px;
  gap: 60px;
}
@media screen and (max-width: 1300px) {
  .interview_detaile_wrap {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 820px) {
  .interview_detaile_wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .interview_detaile_wrap {
    padding: 60px 0;
  }
}
.interview_detaile_wrap .left {
  width: calc(50% - 60px);
  display: flex;
  gap: 80px;
  flex-direction: column;
}
@media screen and (max-width: 820px) {
  .interview_detaile_wrap .left {
    gap: 40px;
    width: 100%;
  }
}
.interview_detaile_wrap .right {
  position: absolute;
  right: 0;
  width: calc(50% - 60px);
}
@media screen and (max-width: 820px) {
  .interview_detaile_wrap .right {
    position: inherit;
    width: 100%;
    text-align: center;
  }
}
.interview_detaile_wrap .right img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 820px) {
  .interview_detaile_wrap .right img {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .interview_detaile_wrap .right img {
    height: 280px;
  }
}

.left.no_image {
  width: 100% !important;
}

.interview_detaile_wrap_reverse {
  flex-direction: row-reverse;
}
.interview_detaile_wrap_reverse .right {
  left: 0;
  right: inherit;
}

.interview_wide_img img {
  width: 100%;
  background-size: cover;
}

.student_content_message {
  margin: -180px auto 80px auto;
  width: 80%;
  position: relative;
}
@media screen and (max-width: 820px) {
  .student_content_message {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .student_content_message {
    margin-top: -100px;
  }
}
.student_content_message .text_box {
  padding: 110px 120px 60px 120px;
  background: #FCF2F0;
}
@media screen and (max-width: 767px) {
  .student_content_message .text_box {
    padding: 110px 30px 60px 30px;
  }
}
.student_content_message .about_title {
  width: 800px;
  top: 30px;
  margin: 0 auto -15px auto;
}
@media screen and (max-width: 820px) {
  .student_content_message .about_title {
    width: 90%;
  }
}

.student_message {
  padding-bottom: 80px;
  background: #C50018;
}
.student_message .column {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.student_content_holiday {
  color: #fff;
  width: 80%;
  margin: 0 auto;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .student_content_holiday {
    width: 100%;
    flex-wrap: wrap;
  }
}
.student_content_holiday .com-tit-08 {
  margin-bottom: 0;
}
.student_content_holiday .left {
  width: calc(60% - 50px);
}
@media screen and (max-width: 820px) {
  .student_content_holiday .left {
    width: 100%;
  }
}
.student_content_holiday .right {
  width: calc(40% - 50px);
}
@media screen and (max-width: 820px) {
  .student_content_holiday .right {
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */