@charset "UTF-8";

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  transition: 1s;
  font-size: 62.5% !important;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #282828;
  line-height: 1.5;
  background-color: #f7f7f7;
}

article {
  overflow: hidden;
}

/*@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 961px) {
  .disp_sp {
    display: none !important;
    visibility: hidden !important;
  }
}

@media screen and (max-width: 960px) {
  .disp_pc {
    display: none !important;
    visibility: hidden !important;
  }
}

.opacity {
  opacity: 0;
}

.updown {
  opacity: 0;
  transform: translateY(-50px);
}

.downup {
  opacity: 0;
  transform: translateY(50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.scaleup {
  opacity: 0;
  transform: scale(0.8);
}

.fadeIn.opacity {
  animation-name: fadeInOpacity;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.fadeIn.updown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.fadeIn.downup {
  animation-name: fadeInUP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.fadeIn.slide-right {
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.fadeIn.slide-left {
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.fadeIn.scaleup {
  animation-name: fadeInScale;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUP {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.eachTextAnime {
  overflow: hidden;
  display: block;
  opacity: 0;
  transition: opacity ease 0.3s 0.5s;
}

.eachTextAnime span {
  transform: translateY(100%);
  display: inline-block;
}

.eachTextAnime.appeartext {
  opacity: 1;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
  position: relative;
}

@keyframes text_anime_on {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

.flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
  .flex_box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.wrap01 {
  width: 1440px;
  max-width: 90%;
  margin: 0 auto;
}

.wrap02 {
  text-align: left;
  margin-right: auto;
  max-width: 230px;
}

.wrap-r {
  max-width: calc(100% - (50% - 600px));
  width: 95%;
  margin-right: 0;
  margin-left: auto;
}

.wrap-l {
  max-width: calc(100% - (50% - 600px));
  width: 95%;
  margin-right: auto;
  margin-left: 0;
}

.drawer-background {
  transform: rotateX(0) translateX(100%);
  visibility: hidden;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(1.45vw, 18px);
  z-index: 100;
  background-color: #ffffff;
  transition: .3s;
}

.header .logo-text {
  visibility: hidden;
}

.header__container {
  display: flex;
  justify-content: flex-end;
  height: 117px;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
}

.header__logo {
  margin-right: auto;
  margin-left: 3%;
  width: 60px;
  height: 76px;
  max-width: 10%;
  background-image: url(../img/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  transition: all 0.2s linear 0s;
  z-index: 100;
  cursor: pointer;
}

.header__logo__a {
  display: inline-block;
  transition: all ease 0.3s;
}

.header__logo__a:hover {
  opacity: 0.8;
}

.header__menu {
  transform: rotateX(0) translateX(100%);
  visibility: hidden;
  flex-direction: column;
  position: fixed;
  justify-content: flex-start;
  top: 0;
  right: 0;
  margin: auto;
  height: 100vh;
  background-image: linear-gradient(90deg, #FF0000 10%, #ED4300 90%);
  z-index: 1;
  transition: all ease 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row-gap: 3em;
  letter-spacing: 0.1em;
  border-radius: 60px 0 0 60px;
}

.header__menu.open {
  visibility: visible;
  transform: scaleX(1) translateX(0);
  width: 42%;
  min-width: 780px;
}

.header__menu-title {
  color: #9F1000;
  font-weight: 700;
}

.header__menu .flex_box {
  justify-content: flex-start;
  line-height: 3;
}

.header__menu .flex_box.--start .header__li {
  margin-right: 50px;
}

.header__menu .flex_box.--bottom {
  font-size: 16px;
}

.header__menu .flex_box.--bottom li {
  margin: 50px 40px 0 -20px;
}

.header__ul {
  column-gap: 3%;
  display: grid;
  /* 行方向に2セル、列方向に3セルを占有する。どこに配置するかは自動的に決まる。 */
  grid-row: span 3;
  grid-column: span 2;
  grid-template-rows: 100px 200px 100px;
  grid-template-columns: 270px 270px;
}

.header__ul .long {
  grid-column: span 2;
}

.header__li {
  position: relative;
  line-height: 3em;
}

.header__li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #F1E100;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}

.header__a {
  position: relative;
  color: #fff;
}

.header__a:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -0.2em;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all ease 0.3s;
}

.header__a:hover:after {
  width: 100%;
}

.header__menu-btn {
  position: relative;
  padding: 24px 19px;
  margin: 20px 30px;
  width: 65px;
  height: 65px;
  transition: all 0.2s linear 0s;
  background-color: #282828;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
}

.header__menu-btn span {
  width: 29px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 6px;
  display: block;
  transform: rotate(0deg) translate(0);
  transition: all ease 0.5s;
  margin-right: auto;
}

.header__menu-btn span:nth-child(2) {
  width: 25px;
}

.header__menu-btn span:last-of-type {
  width: 21px;
  margin-bottom: 0;
}

.header__menu-btn.active span:first-of-type {
  width: 30px;
  transform: rotate(-45deg) translate(-2px, -6px);
  transform-origin: top right;
}

.header__menu-btn.active span:nth-of-type(2) {
  background-color: transparent;
}

.header__menu-btn.active span:last-of-type {
  width: 30px;
  transform: rotate(45deg) translate(-2px, 6px);
  transform-origin: bottom right;
}

.header__menu-btn.active+.drawer-background {
  visibility: visible;
  transform: scaleX(1) translateX(0);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: rgba(133, 133, 133, 0.6);
}

.top .active.header {
  background-color: transparent;
}

@media screen and (min-width: 961px) {
  .top .active.header {
    animation-delay: 0.5s;
  }

  .top .active.header .header__ul {
    color: #fff;
  }
}

@media screen and (max-width: 960px) {
  .header {
    font-size: 16px;
  }

  .header__menu {
    border-radius: 0;
  }

  .header__menu.open {
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .header__menu__last {
    height: auto;
  }

  .header__menu__last__a {
    margin: 0 auto;
    width: 12em;
    padding: 1em;
  }

  .header__menu .flex_box {
    align-items: flex-start;
    margin-top: 30px;
  }

  .header__menu .flex_box.--bottom li {
    margin: 0px 40px 0 -20px;
  }

  .header__menu-title {
    margin-top: 30px;
    font-size: 20px;
    margin-left: -20px;
  }

  .header__ul {
    display: block;
  }

  .header__container {
    height: 97px;
  }

  .header__logo {
    max-width: 20%;
    width: 10%;
    min-width: 38px;
  }

  .header__logo {
    margin-left: 6%;
    margin-top: 13px;
    height: 52px;
  }

  .header__logo:has(+ .open) {
    background-image: url(../img/logo-white.png);
    z-index: 999;
  }

  .header__menu-btn {
    height: 65px;
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 20px;
  }
}

.footer {
  font-family: "Noto Sans JP", sans-serif;
  background-image: linear-gradient(90deg, #FF0000 10%, #ED4300 90%);
  padding: 85px 0 0;
  border-radius: 100px 100px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  background-image: url(../img/footer-kanko.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 140px;
}

.footer__wrap {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer__right {
  flex-grow: 1;
}

.footer__left__blk01 {
  display: flex;
  align-items: center;
  column-gap: 5%;
  padding-bottom: 26px;
}

.footer__c_link {
  flex-shrink: 0;
}

.footer__c_link__a {
  display: inline-block;
  font-size: min(1.5vw, 20px);
  padding: 0 0.5em;
  border: solid 1px #333;
  transition: all ease 0.3s;
}

.footer__c_link__a:hover {
  opacity: 0.7;
}

.footer__bottoms {
  padding: 80px 0 130px;
  font-size: 16px;
}

.footer__bottoms li {
  display: grid;
  margin-right: 50px;
  z-index: 10;
  font-weight: 400;
}

.footer__copylight {
  color: #fff;
  z-index: 10;
  font-weight: 400;
}

.footer__logo {
  max-width: 4.5vw;
}

.footer__logo__a {
  display: inline-block;
  transition: all ease 0.3s;
}

.footer__logo__a:hover {
  opacity: 0.8;
}

.footer__flex {
  display: block;
}

.footer__ul {
  padding-top: 0.7em;
  justify-content: flex-end;
  column-gap: 3%;
  font-size: min(1.45vw, 18px);
  color: #9F1000;
  font-weight: 600;
  font-size: 18px;
  line-height: 2.3;
}

.footer__ul--main {
  margin-bottom: 1em;
}

.footer__ul.flex_box {
  align-items: flex-start;
}

.footer__a {
  position: relative;
}

.footer__a:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -0.2em;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all ease 0.3s;
}

.footer__a:hover:after {
  width: 100%;
}

.footer__menu-title {
  color: #9F1000;
  font-weight: 500;
  display: block;
  position: relative;
  margin-right: 50px;
}

.footer__menu-title::before {
  content: "ABOUT COMPANY";
  position: relative;
  top: 0;
  left: -18px;
  font-weight: 900;
  font-size: 25px;
  letter-spacing: 0.03em;
}

.footer__menu-title.--job::before {
  content: "ABOUT JOB";
}

.footer__menu-title.--0::before {
  content: ".";
  color: transparent;
}

@media screen and (max-width: 960px) {
  .footer {
    padding: 50px 0 10px;
    border-radius: 50px 50px 0 0;
  }

  .footer::before {
    height: 70px;
  }

  .footer__wrap {
    flex-direction: column;
  }

  .footer__copylight {
    font-size: 13px;
    text-align: center;
    margin-top: 50px;
  }

  .footer__logo {
    max-width: 12vw;
  }

  .footer__c_link__a {
    font-size: 16px;
  }

  .footer__left__blk01 {
    padding-bottom: 28px;
  }

  .footer__ul {
    font-size: 14px;
    padding-top: 0;
    grid-row-gap: 1em;
    letter-spacing: 0.1em;
  }

  .footer__ul--main {
    margin-bottom: 1em;
  }

  .footer__flex {
    display: flex;
    column-gap: 5em;
  }

  .footer__menu-title {
    color: #9F1000;
    font-weight: 500;
    display: block;
    position: relative;
    margin-right: 50px;
  }

  .footer__menu-title::before {
    content: "ABOUT COMPANY";
    position: relative;
    top: 0;
    left: -18px;
    font-weight: 900;
    font-size: 25px;
    letter-spacing: 0.03em;
  }

  .footer__menu-title.--job::before {
    content: "ABOUT JOB";
  }

  .footer__menu-title.--0::before {
    content: "";
    color: transparent;
  }

  .footer__bottoms {
    padding: 30px 0 50px;
    align-items: flex-start !important;
    line-height: 2;
  }

  .footer__bottoms ul {
    margin: 0 20px;
    align-items: start;
    font-size: 13px;
  }
}

.foot_cta {
  padding: 1vw 0 6vw;
  background: center bottom/100% url("../img/img-foot.jpg") no-repeat #E5ECF2;
}

.foot_cta__ttl {
  text-align: center;
  margin-bottom: 24vw;
}

.foot_cta__ttl__en {
  font-size: 75px;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin: 0.3em 0;
}

.foot_cta__ttl__jp {
  font-size: 24px;
  display: block;
  line-height: 2;
}

.foot_cta__link {
  text-align: center;
}

.foot_cta__a {
  display: inline-flex;
  column-gap: 5%;
  justify-content: center;
  align-items: center;
  width: 960px;
  max-width: 80%;
  padding: 4% 0;
  background-color: #fff;
  border-radius: 0px 40px 0px 40px;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.16);
  font-size: min(2.5vw, 30px);
  font-weight: bold;
  transition: all ease 0.3s;
}

.foot_cta__a__arrow {
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  display: block;
}

.foot_cta__a:hover {
  box-shadow: unset;
  transform: translateY(10px);
  letter-spacing: 0.1em;
  border-radius: 0;
}

@media screen and (max-width: 960px) {
  .foot_cta {
    padding: 3vw 0 6vw;
    background-image: url("../img/img-foot-sp.jpg");
  }

  .foot_cta__ttl {
    margin-bottom: 38vw;
  }

  .foot_cta__ttl__en {
    font-size: min(11vw, 60px);
  }

  .foot_cta__ttl__jp {
    font-size: 16px;
  }

  .foot_cta__a {
    font-size: min(4.5vw, 20px);
    border-radius: 0px 0.6em 0px 0.6em;
  }
}

/***********************************/
.page_ttl_blk {
  text-align: left;
}

.page_ttl_blk--pb_none {
  padding-bottom: 0;
}

.page_ttl_blk__en {
  font-size: min(5vw, 65px);
  display: block;
  padding-bottom: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
  padding: 336px 0 0px;
  max-width: 600px;
}

.page_ttl_blk__jp {
  font-size: 30px;
  display: inline-block;
  margin-bottom: 35px;
  z-index: 10;
  text-align: left;
  padding: 2px 8px;
  background-color: #FF0000;
  color: #fff;
  margin-bottom: 70px;
  font-weight: 700;
}

.page_ttl_blk__img {
  position: relative;
  background-image: url(../img/bg-recruit-concept.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 0 0 50px 50px;
}

.page_ttl_blk__img.--aboutjob {
  background-image: url(../img/bg-aboutjob.jpg);
}

.page_ttl_blk__img.--welfare {
  background-image: url(../img/bg-welfare.jpg);
}

.page_ttl_blk__img.--faq {
  background-image: url(../img/bg-faq.jpg);
}

.page_ttl_blk__img.--info {
  background-image: url(../img/bg-info.jpg);
}

@media screen and (max-width: 960px) {
  .page_ttl_blk--pb_none {
    padding-bottom: 0;
  }

  .page_ttl_blk__en {
    font-size: min(11vw, 60px);
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .page_ttl_blk__jp {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

/********ORIGINAL*******************/
* {
  min-height: 0vw;
}

.marker {
  text-decoration: underline;
  /* 下線 */
  text-decoration-thickness: 0.5em;
  /* 線の太さ */
  text-decoration-color: rgb(241, 225, 0);
  /* 線の色 */
  text-underline-offset: -0.2em;
  /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none;
  /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/*********スライダー**********
.slider-container {
	overflow: hidden;
}

.slider-row {
	display: block;
	margin-bottom: 30px;
}

.slider-row:last-child {
	margin-bottom: 0;
}

.slider {
	width: 100%;
	position: relative;
}

.slides {
	margin: 0 -10px;
}

.slides .slide {
	padding: 0 10px;
}

.slides {
	display: flex;
	width: 200%;


}

.slide {
	flex-basis: 50%;
	display: flex;
	align-items: center;

	i {
		flex-basis: var(--logo-width, 15%);
	}

	animation: slide var(--duration, 10s) linear infinite;
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}



***/
.breadcramb {
  font-size: 16px;
  padding: 20px 0;
  color: #939191;
}

.breadcramb span a {
	transition: .3s;
}

.breadcramb span a:hover {
	opacity: .6;
}

.arrow_mark {
  position: relative;
  display: inline-block;
  border: solid 2px #fff;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  transition: all ease 0.3s;
}

.arrow_mark:before {
  display: block;
  content: "";
  position: absolute;
  width: 40%;
  height: 40%;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  top: 0;
  right: 36%;
  bottom: 0;
  margin: auto;
}

.bg01 {
  background-image: url(../img/top01-bg.png);
  background-size: 100%;
  background-repeat: repeat-x;
  background-position: 50% 75%;
}

.ttl01 {
  text-align: center;
  margin-bottom: 65px;
}

.ttl01__en {
  width: auto;
  height: 70px;
  display: block;
}

.ttl01__en img {
  width: auto;
  height: 100%;
}

.ttl01__jp {
  font-size: 25px;
  display: inline-block;
  padding: 1em 24px;
  font-weight: 700;
  position: relative;
}

.ttl01__jp::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #FF0000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

.top02 .ttl01__jp {
  color: #fff;
}

.top02 .ttl01__jp::before {
  background-color: #ffffff;
}

.top01 .ttl01__en {
  height: clamp(11rem, 3.1rem + 4.625vw, 10rem);
}

@media screen and (max-width: 960px) {
  .ttl01 {
    margin-bottom: 40px;
  }

  .ttl01__en {
    height: 30px;
  }

  .ttl01__jp {
    font-size: 16px;
  }

  .top01 .ttl01 {
    margin-bottom: 30px;
  }

  .top01 .ttl01__en {
    width: auto;
  }

  .top02 .ttl01 {
    padding: 40px 0 20px;
  }
}

.fv {
  height: 1000px;
  position: relative;
  background: center/cover url("../img/gray-bg.jpg") no-repeat;
}

.fv__wrap {
  width: 1650px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.fv__bg-gray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background: center/cover url("../img/gray-bg.jpg") no-repeat; */
  z-index: 1;
}

.fv__exclamation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.fv__exclamation img {
  width: auto;
  height: 740px;
  max-width: none;
  max-height: none;
}

.fv__txt_blk {
  padding-top: min(100px, 13vh);
  color: #fff;
  display: inline-block;
  animation-delay: 0.5s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}

.fv__txt01 {
  font-size: max(2.6vw, 40px);
  padding-bottom: 1.3em;
}

.fv__txt01 img {
  object-fit: contain;
  height: 25vh;
  max-height: 240px;
}

.fv__txt04 img {
  object-fit: contain;
  height: 6.5vw;
  max-height: 90px;
  padding-bottom: 1.3em;
}

.fv__link__a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all ease 0.3s;
}

.fv__link__a:hover {
  letter-spacing: 0.15em;
  opacity: 0.8s;
}

.fv__link__a:hover .arrow_mark {
  transform: rotate(360deg);
}

.fv__link__txt {
  font-size: max(1.4vw, 20px);
  margin-right: 1em;
  display: inline-block;
}

.fv-scroll-img {
  width: 17px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}

@media screen and (max-width: 960px) {
  .fv {
    height: 200vw;
    background-size: cover;
    background-position: 37% 50%;
  }

  .fv__exclamation {
    top: 104px;
    left: 71%;
    transform: none;
  }

  .fv__exclamation img {
    height: 300px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: top right;
  }

  .fv__txt_blk {
    display: block;
    padding-top: 53vh;
    padding-top: min(160px, 53vh);
  }

  .fv__txt01 {
    font-size: min(7.3vw, 35px);
  }

  .fv__txt01 img {
    height: 15vh;
    max-height: 240px;
  }

  .fv__txt04 img {
    height: 13vw;
    max-height: 60px;
    padding-bottom: 1.3em;
  }
}

.top01 {
  padding: 100px 0;
  text-align: center;
  font-size: clamp(0.8rem, 1rem + 0.625vw, 2.2rem);
  font-weight: 700;
  line-height: 2;
}

.top01__txt01 {
  font-weight: bold;
  padding-bottom: 0.3em;
}

.top01__txt05 {
  font-weight: bold;
  padding-top: 0.7em;
  font-size: clamp(1.8rem, 2rem + 0.625vw, 3rem);
}

.top01 .recruit02 {
  margin: 10px;
}

@media screen and (max-width: 960px) {
  .top01 {
    padding: 50px 0;
  }

  .top01__txt01,
  .top01__txt02,
  .top01__txt03,
  .top01__txt04 {
    font-size: 18px;
  }

  .top01__txt05 {
    font-size: 19px;
  }
}

.top02 {
  padding: 100px 0;
  background-color: #EBEBEB;
  border-radius: 40px;
  background-image: linear-gradient(90deg, #FF0000 10%, #ED4300 90%);
}

.top02 .ttl01 {
  text-align: left;
}

.top02__ul {
  display: grid;
  grid-template-rows: 310px 310px;
  grid-template-columns: 57% 1fr;
  grid-template-areas: "areaA areaB""areaA areaC";
  gap: 20px;
}

.top02__li {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 15px;
  overflow: hidden;
}

.top02__li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.04);
}

.top02__li:first-child {
  grid-area: areaA;
}

.top02__li:nth-child(2) {
  grid-area: areaB;
}

.top02__li:last-child {
  grid-area: areaC;
}

.top02__a {
  transition: all ease 0.3s;
  display: block;
  width: 100%;
  height: 100%;
}

.top02__a:hover {
  transform: scale(1.04);
}

.recruit02__dl {
  margin: 50px 0 20px;
}

@media screen and (max-width: 960px) {
  .top02 {
    padding: 20px 0;
    border-radius: 20px;
  }

  .top02 .ttl01 {
    margin-bottom: 0;
  }

  .top02__ul {
    display: block;
  }

  .top02__li {
    margin: 0px 0 20px;
  }
}

.top03 {
  padding: 100px 0;
}

.top03__ul {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 25% 25% 25% 25%;
  gap: 10px;
}

.top03__li {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 368/455 !important;
}

.top03__li img {
  width: auto;
  height: 100%;
}

.top03__li:hover {
  transform: scale(1.04);
}

.top03__link {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

.top03__link__a {
  transition: all ease 0.3s;
}

.top03__link__a:hover {
  opacity: 0.7;
}

.ttl03 {
  margin: -20px 0 64px;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
}

@media screen and (max-width: 960px) {
  .top03 {
    padding: 50px 0;
  }

  .top03__ul {
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 50% 50%;
    gap: 10px;
  }

  .top03__li img {
    width: auto;
    height: 100%;
  }

  .ttl03 {
    margin: -10px 0 34px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.75;
  }
}

.top04 {
  padding: 100px 0 0px;
  background-color: #282828;
  border-radius: 18px 0 0 18px;
}

.top04 .ttl01 {
  color: #fff;
  text-align: left;
}

.top04__wrap {
  line-height: 1.75;
  padding: 0px 0 10px;
  display: flex;
  justify-content: center;
}

.top04__ul {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  column-gap: 5%;
  margin-bottom: -150px;
}

.top04__li {
  max-width: 488px;
  aspect-ratio: 244/317;
  border-radius: 25px;
  overflow: visible;
  min-width: 300px;
  position: relative;
  overflow: hidden;
}

.top04__a {
  position: relative;
  transition: all ease 0.3s;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  aspect-ratio: 244/317;
}

.top04__a:hover {
	transform: scale(1.04);
}

.top04__a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 25px;
}

.top04__a::before {
  content: "";
  width: clamp(40px, 28px + 2.5vw, 80px);
  height: clamp(40px, 28px + 2.5vw, 80px);
  background-image: url(../img/arrow-right-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
}

.top04__a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/top04-gray.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 25px;
}

.top04__name {
  padding: 0 3em 0;
  z-index: 10;
  position: absolute;
  bottom: 33%;
  left: 0;
  line-height: 1.5;
}

.top04__name__span01 {
  font-size: clamp(1rem, 0.8rem + 0.8vw, 2rem);
  background-image: linear-gradient(90deg, #FF0000 10%, #ED4300 90%);
  font-weight: 700;
  line-height: 1.75;
  padding: 6px 8px;
  text-align: left;
  display: inline-block;
  color: #fff;
  margin: 6px 0;
  position: absolute;
  bottom: 92px;
  left: 0;
  z-index: 10;
  font-size: 26px;
  white-space: nowrap;
}

.top04__name__span01.--btm {
  bottom: 20px;
}

.top04__name1 {
  margin-bottom: 3em;
}

.top04__span02 {
  display: block;
  width: 100%;
  font-size: clamp(1.23rem, 2rem + 0.625vw, 3rem);
  color: #fff;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), -4px -4px 4px rgba(0, 0, 0, 0.2), -4px 4px 4px rgba(0, 0, 0, 0.2), 4px -4px 4px rgba(0, 0, 0, 0.2), 4px 0 4px rgba(0, 0, 0, 0.2), -4px 0 4px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(0, 0, 0, 0.2), 0 -4px 4px rgba(0, 0, 0, 0.2);
}

.top04__span02--2,
.top04__span02--3 {
  display: block;
  width: 100%;
  font-size: clamp(1.2rem, 1.2rem + 0.625vw, 2rem);
  color: #fff;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), -4px -4px 4px rgba(0, 0, 0, 0.2), -4px 4px 4px rgba(0, 0, 0, 0.2), 4px -4px 4px rgba(0, 0, 0, 0.2), 4px 0 4px rgba(0, 0, 0, 0.2), -4px 0 4px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(0, 0, 0, 0.2), 0 -4px 4px rgba(0, 0, 0, 0.2);
  font-size: clamp(0.8rem, 0.8rem + 0.625vw, 2.6rem);
}

.top04 .viewmore__wrap {
  color: #fff;
}

@media screen and (max-width: 2000px) {
  .top04__name__span01 {
    font-size: 18px;
    bottom: 70px;
  }
}

@media screen and (max-width: 960px) {
  .top04 {
    padding: 50px 0 70px;
  }

  .top04__wrap {
    display: block;
    width: 100%;
  }

  .top04__ul {
    flex-direction: column;
    grid-row-gap: 30px;
    max-width: 85%;
  }

  .top04__li {
    width: 100%;
  }

  .top04__li::before {
    content: "";
    width: 50px;
    height: 50px;
  }

  .top04__name {
    padding: 6vw 10px 12px;
  }

  .top04__name__span01 {
    bottom: 67px;
    font-size: 17px;
  }

  .top04__name__span01.--btm {
    bottom: 20px;
  }

  .top04 .ttl01 {
    margin-bottom: 0;
  }
}

.top05 {
  padding: 0 0 110px;
  margin-top: 280px;
  position: relative;
}

.top05 .flexbox {
  display: flex;
  justify-content: space-between;
  column-gap: 92px;
}

.top05 .wrap02 {
  width: 230px;
}

.top05 .wrap02 p {
  font-size: 20px;
  font-weight: 700;
}

.privacy01 {
  line-height: 2;
  padding-bottom: 100px;
}

.privacy01__txt01 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 3em;
}

.privacy01__dt {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 1em;
  font-weight: bold;
}

.privacy01__dl {
  padding-bottom: 3em;
}

@media screen and (max-width: 960px) {
  .top05 {
	padding: 0 0 80px;
	margin-top: 120px;
  }

  .top05 .flexbox {
    display: block;
  }

  .top05 .wrap02 {
    margin: 0 auto;
  }

  .top05 .wrap02 p {
    font-size: 16px;
  }

  div.conterval .privacy01 {
    line-height: 1.7;
    padding-bottom: 70px;
  }

  div.conterval .privacy01__txt01 {
    font-size: 16px;
  }

  div.conterval .privacy01__dt {
    font-size: 16px;
  }
}

.entry01 {
  padding-top: 100px;
  background-color: #FBFBFB;
}

.entry01__form {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

.entry01 .wrap01 {
  max-width: 100%;
}

.entry01 .sc-question-title {
  font-size: 20px;
}

@media screen and (max-width: 960px) {
  .entry01 {
    padding-top: 50px;
  }
}

.message__fv_txt {
  width: 1700px;
  max-width: 90%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7%;
  margin: auto;
  font-size: max(2.4vw, 18px);
  text-align: left;
  font-weight: bold;
}

.message__fv_txt__span {
  display: block;
  border-radius: 0 0.5em 0 0;
  background-color: #fff;
  padding: 0.3em 0.5em;
  margin-bottom: 0.3em;
  width: 21em;
}

@media screen and (max-width: 960px) {
  .message__fv_txt {
    font-size: min(5.6vw, 35px);
  }

  .message__fv_txt__span {
    width: 12.5em;
  }
}

.message01 {
  position: relative;
  padding-bottom: 130px;
  text-align: left;
  background-color: #F7F7F7;
}

.message01__img01 {
  float: left;
  width: 68%;
  max-width: 870px;
  margin-right: 5vw;
  margin-bottom: 10px;
  margin-left: calc(50% - 50vw);
}

.message01__img01 img {
  border-radius: 0 100px 100px 0;
}

.message01__ttl {
  background-color: #FF0000;
  font-size: min(4vw, 50px);
  font-weight: bold;
  display: inline-block;
  padding: 3px 20px;
  margin-right: auto;
  color: #fff;
  line-height: 1.7;
  margin-top: 60px;
  z-index: auto;
}

.message01__subttl {
  padding: min(40px, 14vw) 0 min(20px, 10vw);
  font-weight: 700;
  color: #FF0000;
  font-size: clamp(1.7rem, 2rem + 0.625vw, 3rem);
  position: relative;
  z-index: 3;
  line-height: 1.7;
}

.message01__subttl::before {
  content: "";
  width: 231px;
  height: 140px;
  background-image: url(../img/01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  position: absolute;
  top: 15px;
  right: -60px;
  z-index: -1;
}

.message01__txt01 {
  font-size: clamp(1.5rem, 1.3rem + 0.625vw, 2rem);
  line-height: 1.7;
  font-weight: 700;
  padding-bottom: 5em;
  position: relative;
  z-index: 10;
}

.message01__txt02 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 2em;
  line-height: 1;
}

.message01__post {
  font-size: 22px;
  font-weight: 600;
  padding-top: 0.2em;
}

.message01__name {
  font-size: 50px;
  font-weight: 500;
}

.message01:after {
  content: "";
  display: block;
  clear: both;
}

.message01__table {
  text-align: center;
}

.message01__table h3 {
  font-size: clamp(2.4rem, 2.5rem + 0.625vw, 3.5rem);
  font-weight: 700;
  margin: 30px auto;
  display: inline-block;
  position: relative;
}

.message01__table h3::before {
  content: "";
  width: 30px;
  height: 4px;
  background-color: #FF000f;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: -50px;
}

.message01 table {
  /* 左右の <length> | 上下の <length> */
  border-spacing: 0 8px;
  border-collapse: separate !important;
  padding: 10px 0;
  margin: 0 auto;
}

.message01__th {
  background-color: #fff;
  text-align: left;
  font-size: clamp(1.7rem, 1.9rem + 0.625vw, 2.5rem);
  width: 400px;
  position: relative;
  padding-left: 123px;
  font-weight: 700;
  color: #ff0000;
  height: 94px;
  border-radius: 15px 0 0 15px;
  vertical-align: middle;
  font-size: 25px;
  line-height: 1.3;
}

.message01__th::before {
  content: "";
  width: 75px;
  height: 75px;
  background-image: url(../img/icon1-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 24px;
}

.message01__th.--2::before {
  background-image: url(../img/icon1-2.svg);
}

.message01__th.--3::before {
  background-image: url(../img/icon1-3.svg);
}

.message01__th.--4::before {
  background-image: url(../img/icon1-4.svg);
}

.message01__th.--5::before {
  background-image: url(../img/icon1-5.svg);
}

.message01__th.--6::before {
  background-image: url(../img/icon1-6.svg);
}

.message01__th.--21::before {
  background-image: url(../img/icon2-1.svg);
}

.message01__th.--22::before {
  background-image: url(../img/icon2-2.svg);
}

.message01__th.--23::before {
  background-image: url(../img/icon2-3.svg);
}

.message01__th.--24::before {
  background-image: url(../img/icon2-4.svg);
}

.message01__th.--25::before {
  background-image: url(../img/icon2-5.svg);
}

.message01__th.--31::before {
  background-image: url(../img/icon3-1.svg);
}

.message01__th.--32::before {
  background-image: url(../img/icon3-2.svg);
}

.message01__th.--33::before {
  background-image: url(../img/icon3-3.svg);
}

.message01__th.--34::before {
  background-image: url(../img/icon3-4.svg);
}

.message01__th.--41::before {
  background-image: url(../img/icon4-1.svg);
}

.message01__th.--42::before {
  background-image: url(../img/icon4-2.svg);
}

.message01__th.--43::before {
  background-image: url(../img/icon4-3.svg);
}

.message01__th.--44::before {
  background-image: url(../img/icon4-4.svg);
}

.message01__td {
  border-radius: 0 15px 15px 0;
  padding: 0 20px;
  vertical-align: middle;
  background-color: #fff;
  text-align: left;
  width: 568px;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.6rem + 0.625vw, 2rem);
  font-size: 20px;
  line-height: 1.3;
}

.message01.--1 {
  padding-top: 100px;
}

.message01.--1 .message01__table {
  display: block;
  margin: 20px auto;
}

.message01.--2 {
  background-color: #FFEEEE;
  padding: 50px 0;
}

.message01.--2 .message01__img01 {
  float: right;
  margin-left: 5vw;
  margin-right: calc(50% - 50vw);
}

.message01.--2 .message01__img01 img {
  border-radius: 100px 0 0 100px;
}

.message01.--2 .message01__subttl::before {
  background-image: url(../img/02.svg);
  right: auto;
  left: 485px;
}

.message01.--3 {
  padding: 50px 0;
}

.message01.--3 .message01__img01 img {
  border-radius: 0 100px 100px 0;
}

.message01.--3 .message01__subttl::before {
  background-image: url(../img/03.svg);
}

.message01.--4 {
  background-color: #FFEEEE;
  padding: 50px 0;
}

.message01.--4 .message01__img01 {
  float: right;
  margin-left: 5vw;
  margin-right: calc(50% - 50vw);
}

.message01.--4 .message01__img01 img {
  border-radius: 100px 0 0 100px;
}

.message01.--4 .message01__subttl::before {
  background-image: url(../img/04.svg);
  right: auto;
  left: 485px;
}

@media screen and (max-width: 1450px) {
  .message01__img01 {
    width: 58%;
    margin-right: 3%;
  }

  .message01 .message01__img01 {
    float: right;
    margin-right: 5vw;
    margin-left: calc(50% - 50vw);
  }

  .message01 .message01__img01 img {
    border-radius: 30px 0 0 30px;
  }
}

@media screen and (max-width: 960px) {
  .message01 {
    padding-bottom: 80px;
  }

  .message01__ttl {
    font-size: min(7.5vw, 35px);
    text-align: center;
    margin-top: 0;
  }

  .message01__subttl {
    padding: 10px 0 5px;
  }

  .message01__img01 {
    float: left;
    width: 65%;
    max-width: 800px;
    margin-right: 2%;
    margin-bottom: 10px;
    margin-left: calc(50% - 50vw);
  }

  .message01__img01 {
    float: left;
    width: 100%;
    max-width: 870px;
    margin-bottom: 10px;
    margin-left: calc(50% - 50vw);
  }

  .message01__img02 {
    width: 120%;
    max-width: 870px;
    margin-left: calc(50% - 50vw);
  }

  .message01__txt01 {
    font-size: 15px;
    padding-bottom: 3em;
  }

  .message01__post {
    font-size: 15px;
  }

  .message01__name {
    font-size: 30px;
  }

  .message01__th,
  .message01__td {
    width: auto;
    display: flex;
    align-items: center;
    padding-right: 10px;
/*     border-radius: 0; */
  }
	
  .message01__th {
	border-radius: 15px 15px 0 0;
	min-height: 94px;
	height: auto;
	padding: 10px 10px 10px 123px;
  }

  .message01__td {
    padding: 10px 20px;
	border-radius: 0 0 15px 15px;
  }

  .message01.--1 {
    padding-top: 10px;
  }

  .message01.--1 .message01__table {
    margin: 0px auto;
  }

  .message01.--2 .message01__img01 img,
  .message01.--4 .message01__img01 img {
    border-radius: 40px 0 0 40px;
  }

  .message01 .message01__img01 img,
  .message01.--3 .message01__img01 img {
    border-radius: 0 40px 40px 0;
  }

  .message01__subttl::before {
    content: "";
    width: 150px;
    height: 70px;
    top: -10px;
  }
}

.data01 {
  padding-bottom: 130px;
}

.data01 .wrap01 {
  width: 960px;
}

.data01__ttl {
  font-size: 30px;
  padding-bottom: 2.5em;
  text-align: center;
  font-weight: bold;
}

.data01__ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.data01__li {
  width: calc(50% - 20px);
  background-color: #F9EFF2;
  border-radius: 40px;
  padding: 40px;
  aspect-ratio: 1;
}

.data01__li--w100 {
  width: 100%;
  aspect-ratio: 0;
}

.data01__li:nth-of-type(2) {
  animation-delay: 0.4s;
}

.data01__li:nth-of-type(5) {
  animation-delay: 0.4s;
}

.data01__dl {
  background-color: #fff;
  height: 100%;
  padding: 30px;
  border-radius: 40px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.data01__img {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
  padding: 6%;
}

.data01__txt {
  width: 100%;
  font-weight: 500;
}

.data01__dt {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .data01 {
    padding-bottom: 80px;
  }

  .data01__ttl {
    font-size: 20px;
    padding-bottom: 1.5em;
  }

  .data01__ul {
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
  }

  .data01__li {
    width: calc(50% - 5px);
    padding: 8px;
    border-radius: 20px;
  }

  .data01__li--w100 {
    width: 100%;
  }

  .data01__dt {
    font-size: 15px;
    line-height: 1.2;
  }

  .data01__txt {
    font-size: 14px;
  }

  .data01__dl {
    padding: 10px;
    border-radius: 20px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16);
  }

  .data01__img__small {
    width: 80%;
  }

  .data01__img--sp_big {
    padding: 0;
    margin-bottom: 15px;
  }
}

.recruit01 {
  padding-bottom: 100px;
  text-align: center;
}

.recruit01__txt01 {
  font-size: min(3vw, 30px);
  padding-bottom: 2em;
  font-weight: bold;
}

.recruit01__txt02 {
  font-size: 18px;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .recruit01 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .recruit01__txt01 {
    font-size: 22px;
  }

  .recruit01__txt02 {
    font-size: 16px;
    line-height: 1.7;
  }
}

.recruit02__red-card {
  width: 30%;
  display: block;
  margin: 0 10px;
}

.recruit02 {
  background-color: #FBFBFB;
  padding: 100px 0;
}

.recruit02__blk01 {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
}

.recruit02__blk02 {
  width: 1440px;
  max-width: 100%;
  margin: 100px auto 0;
}

.recruit02__ttl {
  padding-left: 1em;
  font-size: 33px;
  font-weight: bold;
  margin-bottom: 2em;
  position: relative;
}

.recruit02__ttl:before {
  display: block;
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #E52B2B;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.recruit02__dl {
  display: flex;
  border-bottom: solid 1px #707070;
  line-height: 2;
  position: relative;
  border: 2px solid #FF0000;
  box-shadow: 4px 4px 0px #FF0000;
  padding: 30px;
  background-color: #FFEEEE;
  width: 48%;
  border-radius: 15px;
}

.recruit02__dl:nth-of-type(1),
.recruit02__dl:nth-of-type(4),
.recruit02__dl:nth-of-type(5) {
  border: 2px solid #232323;
  box-shadow: 4px 4px 0px #232323;
}

.recruit02__dl:nth-of-type(1) dt,
.recruit02__dl:nth-of-type(4) dt,
.recruit02__dl:nth-of-type(5) dt {
  background-color: #FF0000;
  color: #fff;
}

.recruit02__dl:nth-of-type(1) dt::before,
.recruit02__dl:nth-of-type(4) dt::before,
.recruit02__dl:nth-of-type(5) dt::before {
  background-color: #282828;
  content: "";
  width: 3px;
  height: 42%;
  position: absolute;
  top: 5px;
  right: -3px;
}

.recruit02__dt {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  background-color: #282828;
  padding: 10px 32px;
  flex-shrink: 0;
  color: #fff;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: 20px;
  display: inline-block;
}

.recruit02__dt::before {
  background-color: #FF0000;
  content: "";
  width: 3px;
  height: 42%;
  position: absolute;
  top: 5px;
  right: -3px;
}

.recruit02__dd {
  font-size: 16px;
  padding: 20px 60px;
  letter-spacing: 0.1em;
}

.recruit02__flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.recruit02__red-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 50px;
}

@media screen and (max-width: 960px) {
  .recruit02 {
    padding: 50px 0 0px;
  }

  .recruit02__ttl {
    font-size: 25px;
    margin-bottom: 1.2em;
  }

  .recruit02__dl {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .recruit02__dt {
    font-size: 24px;
  }

  .recruit02__dd {
    width: 100%;
    padding: 20px 5%;
    font-size: 15px;
    letter-spacing: 0;
  }

  .recruit02__red-cards {
    margin-top: -30px;
    gap: 10px 10px;
  }
}

@media screen and (max-width: 800px) {
  .recruit02__dl {
    width: 100%;
    margin: 0px auto 60px;
  }

  .recruit02__red-card {
    width: 47%;
    column-gap: 5px;
    margin: 0px 0px;
    justify-content: space-between;
  }

  .recruit02__flex {
    display: block;
  }
}

.btn01 {
  text-align: center;
  margin-top: 70px;
}

.btn01__a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  padding: 1em 2em;
  background-color: #3C3C3C;
  letter-spacing: 0.1em;
  transition: all ease 0.3s;
  border: solid 2px #3C3C3C;
  font-weight: bold;
}

.btn01__a:hover {
  background-color: #fff;
  color: #3C3C3C;
}

@media screen and (max-width: 960px) {
  .btn01 {
    margin-top: 10px;
  }

  .btn01__a {
    font-size: 15px;
  }
}

.thanks01 {
  text-align: center;
  padding-bottom: 150px;
  padding-top: 50px;
}

.thanks01__txt01 {
  font-weight: bold;
  font-size: 25px;
  padding-bottom: 1em;
}

.thanks01__txt02 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (max-width: 960px) {
  .thanks01 {
    padding-top: 10px;
    padding-bottom: 90px;
  }

  .thanks01__txt01 {
    font-size: 20px;
  }

  .thanks01__txt02 {
    font-size: 15px;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.comingsoon a {
  pointer-events: none;
}

.poiner_no {
  pointer-events: none;
}

.header .poiner_no {
  opacity: 0.5;
}

.footer .poiner_no {
  opacity: 0.5;
}

.viewmore__wrap {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  text-align: center;
  padding: 30px 0;
  color: #282828;
  font-weight: 700;
  margin-top: 100px;
  min-width: 300px;
  flex-shrink: 0;
}

.viewmore__wrap a {
	transition: .3s;
}

.viewmore__wrap a:hover {
	opacity: .6;
}

.viewmore__wrap span {
  position: relative;
  display: block;
  width: 102px;
  margin-right: auto;
  margin-left: 0;
}

.viewmore__wrap span::after {
  content: "";
  width: 51px;
  height: 51px;
  background-image: url(../img/arrow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -70px;
}

@media screen and (max-width: 960px) {
  .viewmore__wrap {
    padding-top: 0;
    margin-top: 30px;
    margin-left: auto;
    width: 100%;
    min-width: 280px;
  }

  .viewmore__wrap span {
    display: block;
    width: 102px;
    margin-right: 70px;
    margin-left: auto;
  }
}

/**********faq******/
/***背景の色****/
.p-faq__bg-gray {
  flex: 1;
}

/***背景の色見せるため****/
/***右側開く「＋記号」****/
/***右側開く「＋記号」　PC版大きく****/
.p-faq__plus-icon {
  position: relative;
}

.p-faq__plus-icon::before,
.p-faq__plus-icon::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-faq__plus-icon::before {
  content: "";
  background-color: #282828;
  width: 4px;
  height: 28px;
  right: 36px;
  transition: .3s;
}

.p-faq__plus-icon::after {
  content: "";
  background-color: #282828;
  width: 28px;
  height: 4px;
  right: 24px;
}

/***右側開く「ー記号」****/
.p-faq__plus-icon.on::before {
  height: 0;
}

@media screen and (max-width: 960px) {
  .p-faq__plus-icon {
    position: relative;
  }

  .p-faq__plus-icon::before,
  .p-faq__plus-icon::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .p-faq__plus-icon::before {
    content: "";
    background-color: #282828;
    width: 2px;
    height: 15px;
    right: 25px;
  }

  .p-faq__plus-icon::after {
    content: "";
    background-color: #282828;
    width: 15px;
    height: 2px;
    right: 18px;
  }
}

/***質問部分****/
.p-faq__faq-q {
  cursor: pointer;
  line-height: 1.5;
  letter-spacing: normal;
  font-weight: 900;
  border-bottom: 1px solid rgba(40, 40, 40, 0.3);
  font-size: 20px;
  padding: 30px 60px;
  letter-spacing: 0.05em;
}

.p-faq__faq-q::before {
  content: "";
  background: url(../img/icon-q.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 10px;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 16px;
}

@media screen and (max-width: 960px) {
  .p-faq__faq-q {
    padding: 20px 41px 20px 58px;
    font-size: 14px;
  }

  .p-faq__faq-q::before {
    margin-right: 10px;
  }
}

/***回答部分****/
.p-faq__faq-a {
  padding: 0 0 0 20px;
  line-height: 1.75;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  padding: 30px 60px;
  background-color: #fff;
}

.p-faq__faq-a.--nodisp {
  display: none;
}

.p-faq__faq-a p {
  display: inline-block;
}

.faq-back-top {
  width: 18px;
  position: absolute;
  right: 75px;
  bottom: 24px;
  transition: all 0.2s linear 0s;
}

.faq-back-top:hover {
  opacity: 0.5;
}

@media screen and (max-width: 960px) {
  .p-faq__faq-a {
    padding: 0 0 0 20px;
    font-size: 13px;
    font-family: "Noto Sans JP";
    line-height: 1.75;
    padding: 20px 10px 20px 58px;
    position: relative;
  }

  .faq-back-top {
    right: 20px;
    bottom: 5px;
    width: 10px;
  }
}

.recruit01.--pdb0 {
  margin-top: 60px;
  padding-bottom: 0;
}

.recruit01__txt01 {
  color: #FF0000;
}

.recruit01__txt02.--pdb0 {
  font-weight: 700;
}

.recruit03__slide-item {
  text-align: center;
  vertical-align: middle;
  width: auto;
  min-width: fit-content;
  overflow: visible;
}

.recruit03__slide-item div {
  background-color: #fff;
  margin: 10px 7.5px;
  width: 100%;
  height: 92px;
  font-size: 18px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  padding: 5px 8px;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  border-radius: 8px;
}

.recruit03__slide-item {
  text-align: center;
  vertical-align: middle;
  width: 100%;
  overflow: visible;
  padding: 0 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .recruit03__slide-item div {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .recruit03__slide-item div {
    font-size: 14px;
    height: 80px;
  }
}

.recruit02,
.recruit03 {
  background-color: #F7F7F7;
}

.recruit02 .ttl01,
.recruit03 .ttl01 {
  margin-top: 30px;
}

@media screen and (max-width: 960px) {
  .--pdb0 {
    margin-top: -30px;
  }

  .recruit03__slide-item div {
    width: 180px;
    height: 60px;
    font-size: 12px;
  }
}

.page_single__title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 5px 0;
}

.page_single__fv {
  position: relative;
  margin: 100px 0 1px 0;
  padding: 0 0 100px 0;
}

.page_single__fv-bg {
  width: 100%;
  height: 50vw;
  max-height: 739px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF0000;
  z-index: -1;
  border-radius: 70px;
}

.page_single__fv-img img {
  border-radius: 20px;
}

.page_single__name,
.page_single__states {
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), -4px -4px 4px rgba(0, 0, 0, 0.2), -4px 4px 4px rgba(0, 0, 0, 0.2), 4px -4px 4px rgba(0, 0, 0, 0.2), 4px 0 4px rgba(0, 0, 0, 0.2), -4px 0 4px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(0, 0, 0, 0.2), 0 -4px 4px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  margin-left: 20px;
}

.page_single__states {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 50px;
}

.page_single__title {
  font-size: 50px;
  line-height: 1.75;
  position: relative;
  margin: 5px 0;
}

.page_single__items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 7%;
  justify-content: center;
}

.page_single__item {
  padding: 30px 0;
  width: 45%;
}

.page_single__img02 {
  margin: 20px 0;
  width: 50%;
  max-width: 600px;
}

.page_single__img02 img {
  border-radius: 24px !important;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page_single__reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 30px;
  position: relative;
  justify-content: space-around;
  z-index: 20;
  padding: 40px 20px 0;
  background-image: linear-gradient(90deg, #FF0000 10%, #ED4300 90%);
  border-radius: 20px;
}

.page_single__center {
  text-align: center;
}

.page_single__ttl-blk {
  background-color: #FF0000;
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 25;
}

.page_single__back {
  font-size: 18px;
  text-align: center;
  padding: 0px 3px 5px;
  margin-bottom: 30px;
  border-bottom: 1px solid #232323;
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
}

.page_single__back a {
	transition: .3s;
}

.page_single__back a:hover {
	opacity: .6;
}

.page_single__txt01 {
  color: #fff;
  width: 50%;
  max-width: 550px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
}

.page_single__txt-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

.page_single__img01 {
  width: 45%;
  height: 365px;
  border-radius: 24px !important;
  overflow: hidden;
  margin: 30px 0 0;
}

.page_single__img01 img {
  border-radius: 24px !important;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.page_single__ttl-blk {
  background-color: #282828 !important;
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 25;
  margin: 30px auto -30px;
  font-size: 35px;
}

.single__bg-relative {
  position: relative;
}

.icon-i {
  width: 50px;
  margin-top: 4px;
}

.page_single__item-title {
  font-size: 32px;
  font-weight: 900;
  width: 85%;
  line-height: 50px;
}

.page_single__text {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  border: 4px solid #282828;
  border-radius: 24px;
  box-shadow: 4px 4px 0px #282828;
  line-height: 1.7;
}

.page_single__text.--5 {
  min-height: 250px;
}

.single__bg-relative {
  position: relative;
}

@media screen and (max-width: 960px) {
  .page_single__item-title {
    font-size: 18px;
    font-weight: 900;
    width: 80%;
  }

  .page_single__fv {
    position: relative;
    margin: 100px 0 1px 0;
    padding: 0 0 50px 0;
    width: 100%;
  }

  .page_single__fv-bg {
    width: 100%;
    height: 500px;
    max-height: 739px;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF0000;
    z-index: -1;
    border-radius: 20px;
  }

  .page_single__fv-img {
    height: 500px;
  }

  .page_single__fv-img img {
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
  }

  .page_single__name,
  .page_single__states {
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2), -4px -4px 4px rgba(0, 0, 0, 0.2), -4px 4px 4px rgba(0, 0, 0, 0.2), 4px -4px 4px rgba(0, 0, 0, 0.2), 4px 0 4px rgba(0, 0, 0, 0.2), -4px 0 4px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(0, 0, 0, 0.2), 0 -4px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    font-size: 24px;
    color: #fff;
  }

  .page_single__states {
    font-size: 15px;
    width: 80%;
  }

  .page_single_ttl_blk__ttl {
    display: block;
    position: absolute;
    top: 100%;
    transform: translateY(-50%);
  }

  .page_single__title {
    position: relative;
    font-size: 20px;
    line-height: 1.8;
    margin: 5px 0;
  }

  .page_single__ttl-blk {
    font-size: 25px;
  }

  .page_single__items {
    display: block;
    margin: 0 auto;
  }

  .page_single__item {
    width: 100%;
  }

  .page_single__reverse {
    display: block;
    gap: 20px;
    position: relative;
    z-index: 20;
    padding: 0px 0 15px;
  }

  .page_single__txt01 {
    color: #fff;
    width: 91%;
    max-width: 550px;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto;
  }

  .page_single__img02 {
    width: 100%;
    max-width: 500px;
    border-radius: 24px !important;
  }

  .page_single img {
    border-radius: 24px !important;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .page_single__center {
    margin: 30px 20px;
  }

  .page_single__img01 {
    width: 100%;
    height: 250px;
    border-radius: 24px !important;
    overflow: hidden;
    margin-top: 10px;
  }

  .page_single__img01 img {
    border-radius: 24px !important;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
  }

  .page_single__item-title {
    line-height: 1.5;
  }
}

.page_ttl_blk__ttl.--red-title {
  position: absolute;
  top: 80%;
  left: 0;
}

.page_single__flow {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
}

.page_single__flow .company-info-nomask .history--list__year span {
  color: #FF0000;
  line-height: 1.75;
}

.page_single__flow .company-info-nomask ul {
  padding-top: 20px;
}

.page_single__flow .num {
  font-size: 30px;
  font-style: inherit;
  line-height: 1.3;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 1;
}

.page_single__flow ul {
  position: relative;
}

.page_single__flow li {
  display: flex;
}

@media (max-width: 768px) {
  .page_single__flow ul {
    margin-bottom: 20px;
  }

  .page_single__flow ul::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 0;
    height: 80px;
    border-left: 5px solid #F7F7F7;
    z-index: 10;
  }

  .page_single__flow ul::after {
    left: -10px;
    bottom: 0;
    content: "";
    position: absolute;
    left: -2px;
    height: 70px;
    border-left: 5px solid #F7F7F7;
    z-index: 10;
  }

  .page_single__flow li {
    display: block;
  }

  .page_single__flow .num {
    font-size: 24px;
  }
}

.page_single__flow li {
  position: relative;
  padding-bottom: 40px;
}

.page_single__flow li::before {
  left: 28.5%;
  width: 1px;
  height: 120%;
  z-index: -3;
  content: "";
  position: absolute;
  top: 9px;
  background-color: #FF0000;
}

@media (max-width: 900px) {
  .page_single__flow li::before {
    left: 31%;
  }
}

@media (max-width: 768px) {
  .page_single__flow li::before {
    left: 25.4%;
  }
}

.page_single__flow li .history--list__year {
  position: relative;
  color: #FF0000;
  font-weight: bold;
  width: 15%;
  line-height: 1.75;
}

.page_single__flow li .history--list__info {
  padding-left: 16px;
  line-height: 1.75;
}

.page_single__flow li .history--list__month {
  position: relative;
  color: #FF0000;
  font-weight: bold;
  line-height: 1.75;
}

.page_single__flow li .history--list__text {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
}

.page_single__flow li .history--list__text::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -29px;
  margin-left: 0px;
  width: 23px;
  height: 23px;
  background-color: #FF0000;
  border-radius: 100%;
  border: 5px solid rgb(255, 217, 217);
  z-index: 999;
}

/*add 0901***/
.page_single__flow ul:last-child li::before {
  background-color: transparent;
}

@media (max-width: 900px) {
  .page_single__flow li::before {
    left: 33.5%;
  }
}

@media (max-width: 768px) {
  .page_single__flow li::before {
    content: none;
  }

  .page_single__flow li .history--list__text {
    position: relative;
    font-size: 17px;
    font-weight: 700;
  }

  .page_single__flow ul li::before {
    left: 0%;
    width: 1px;
    height: 120%;
    z-index: -3;
    content: "";
    position: absolute;
    top: 60px;
    background-color: #FF0000;
  }

  .page_single__flow ul::before,
  .page_single__flow ul::after {
    background-color: transparent;
    border-color: transparent;
  }
}

.page_single__flow li .history--list__artist {
  font-weight: bold;
  display: block;
  font-size: 24px;
  color: #FF0000;
}

@media (min-width: 768px) {
  .page_single__flow li .history--list__text {
    padding-left: 60px;
    width: 85%;
    display: grid;
  }

  .page_single__flow li .history--list__text::before {
    left: 20px;
  }

  .page_single__flow li .history--list__info {
    padding-left: 0;
    display: flex;
    width: 85%;
  }

  .page_single__flow li .history--list__month {
    width: 15%;
    line-height: 1;
  }

  .page_single__flow li .history--list__artist {
    font-weight: bold;
    display: block;
    font-size: 30px;
    color: #FF0000;
  }
}

@media (min-width: 900px) {
  .page_single__flow li .history--list__text::before {
    left: -4px;
  }
}

.company-info-nomask,
.company-info-mask {
  position: relative;
  margin-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.company-info-mask {
  height: 120px;
  overflow: hidden;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
}

.company-info-mask ul {
  z-index: -1;
}

.company-info-mask .history--list__year {
  color: #FF0000;
}

.interview01 .top04__li {
  width: 30%;
  margin-bottom: 40px;
}

.interview01 .top04__li::after {
  border-radius: 25px;
}

.intervew01__ul {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  gap: 0px 20px;
  margin: 20px auto 70px;
}

@media (max-width: 768px) {
  .interview01 .top04__li {
    width: 80%;
    margin-bottom: 40px;
    max-width: auto;
    margin: 0 auto 20px;
  }
}

.wp-pagenavi {
  margin: 40px auto 55px;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.wp-pagenavi a {
  color: #000;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi span.current,
.wp-pagenavi a.page,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last {
  margin: 0 10px 0 0;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: 0.3s;
  color: #232323;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page {
  border: solid 1px #FF0000;
}

.wp-pagenavi span.current {
  border: none;
  background: #FF0000;
  color: #fff;
}

.wp-pagenavi a.page {
  background: none;
}

.wp-pagenavi a.page:hover {
  background: #FF0000;
  color: #fff;
}

.wp-pagenavi .first,
.wp-pagenavi .extend {
  margin-right: 10px;
}

.c-pagenavi__upper-bar {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #000;
}

.info01__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info01__flex2 {
  width: 48.5%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
  justify-content: space-around;
}

.info01__flex2 img {
  width: 45%;
}

.img5 {
  width: 47%;
  margin: 10px;
}

@media (max-width: 768px) {
  .info01__flex {
    display: block;
  }

  .info01__flex2 {
    width: 100%;
  }

  .info01__flex2 img {
    width: 45%;
  }

  .img5 {
    width: 95%;
    margin: 10px auto;
  }
}

.info01 {
  padding: 0px 0 150px;
}

.info01__ttl {
  padding: 100px 0 0;
}

@media (max-width: 768px) {
  .info01 {
    padding: 0px 0 30px;
  }

  .info01__ttl {
    padding: 20px 0 0;
  }
}

.welfare01__ttl {
  text-align: left;
}

.welfare01__ttl h3 {
  font-size: clamp(2.4rem, 2.5rem + 0.625vw, 3.5rem);
  font-weight: 700;
  padding-left: 50px;
  margin: 100px 0 30px;
  display: inline-block;
  position: relative;
}

.welfare01__ttl h3::before {
  content: "";
  width: 30px;
  height: 4px;
  background-color: #FF0000;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0px;
}

.welfare01__ttl dt {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.7;
  color: #ff0000;
  margin: 20px 0 10px;
}

.welfare01__ttl dd {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  color: #282828;
  margin-bottom: 40px;
}

.welfare01__ttl li {
  padding-left: 20px;
  position: relative;
}

.welfare01__ttl li::before {
  content: "";
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #FF0000;
  position: absolute;
  top: 14px;
  left: 0;
}

.welfare03 {
  padding-bottom: 100px;
}

.faq01 {
  padding: 100px 0;
}

.interview01 {
  padding: 80px 0 0px;
}

@media (max-width: 768px) {
  .faq01 {
    padding: 60px 0;
  }

  .welfare01__ttl h3 {
    margin: 30px 0 10px;
  }

  .welfare01__ttl dt {
    font-size: 24px;
  }

  .welfare01__ttl dd {
    font-size: 14px;
  }

  .welfare01__ttl li::before {
    top: 8px;
  }

  .welfare03 {
    padding-bottom: 30px;
  }

  .interview01 {
    padding: 40px 0 0px;
  }
}

.pcpc {
  display: block;


}

.spsp {
  display: none;
}

@media (max-width: 1120px) {
  .pcpc {
    display: none;


  }

  .spsp {
    display: block;
  }
}

/* Arrow display control */
.i-arrow-1 {
  display: none;
}

.i-arrow-2 {
  display: block;
}

@media screen and (min-width: 960px) and (max-width: 1300px) {
  .i-arrow-1 {
    display: block;
  }

  .i-arrow-2 {
    display: none;
  }
}

/* Top04 ul responsive styles */
@media screen and (min-width: 1900px) {
  .top04__ul {
    margin-right: -206px;
  }
}

@media screen and (min-width: 1350px) and (max-width: 1899px) {
  .top04__ul {
    column-gap: 2%;
    margin-right: -50px;
  }
}

@media screen and (min-width: 950px) and (max-width: 1349px) {
  .top04__ul {
    column-gap: 3%;
    margin-bottom: -150px;
    margin-right: -46px;
  }
}

.font-24px {
  font-size: 24px;
}

.--clients {
  margin-left: 179px;
  margin-right: 20px;
}

.--company-list {
  justify-content: center;
  align-items: flex-end;
}

.slide-flex {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  min-width: fit-content;
  overflow: hidden;
}

@media (max-width: 960px) {
  .font-24px {
    font-size: 16px;
  }

  .--company-list {

    align-items: center;
  }

  .--clients {
    margin: 0;
  }


}

/* ===== TOP02 CARD STYLES ===== */
.top02__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease;
}

.top02__card:hover {
  transform: translateY(-5px);
}

.top02__card--large {
  width: 100%;
  height: 640px;
}

.top02__card--small {
  width: 100%;
  height: 310px;
}

.top02__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top02__bg img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.top02__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 0 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.top02__card--small .top02__content {
  padding: 60px 0 0 30px;
}

.top02__ul .top02__li img {
  width: auto;
}

.top02__title {
  margin-bottom: 20px;
  margin-left: 7px;
  height: 2vw;
  max-height: 45px;
}

.top02__title img {
  max-width: 100%;
  height: 100%;
}

.top02__subtitle {
  margin-bottom: 20px;
}

.top02__subtitle-bg {
  background-color: #FF0000;
  color: #FFFFFF;
  padding: 0 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.7em;
  letter-spacing: 0.7%;
  display: inline-block;
  margin: 0;
}

.top02__description {
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7em;
  letter-spacing: 0.7%;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  max-width: 517px;
}

.top02__arrow {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  margin: 0 0 0 0;
}

.top02__card--large .top02__arrow {
  margin: 0 0 0 0;
}

.top02__card--small .top02__arrow {
  margin: 0 0 0 0;
}

.top02__arrow img {
  width: 70px;
  height: 70px;
}

/* Responsive adjustments for top02 cards */
@media (max-width: 960px) {

  .top02__card {
    border-radius: 14px;
  }

  .top02__card--large {
    height: 400px;
  }

  .top02__card--small {
    height: 200px;
  }

  .top02__content {
    padding: 40px 20px 0 20px;
    gap: 20px;
  }

  .top02__card--small .top02__content {
    padding: 40px 20px 0 20px;
  }

  .top02__subtitle-bg {
    font-size: 18px;
  }

  .top02__description {
    font-size: 16px;
  }

  .top02__arrow {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }

  .top02__arrow img {
    width: 50px;
    height: 50px;
  }

  .top02__title {
    margin-bottom: 10px;
    margin-left: 7px;
    height: 5vw;
    max-height: 70px;
  }
}