/*
Theme Name: conexio
*/

/* ---------変数--------- */
:root {
  --primary-color: #6F26A9;
  --base-color: #151519;
}


/* ---------変数終わり--------- */


* {
  box-sizing: border-box;
font-family: 'Noto Sans JP', sans-serif;
}

body {
  background: var(--base-color);
  color:white;
}

.section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}



/* ---------header--------- */
header {
  /* height: 90px; */
  width: 100%;
}

header .menu {
  width: 100%;
  display: flex;
  position:fixed;
  z-index: 10;
  justify-content: space-between;
  line-height: 90px;
  align-items: center;
}

header .menu .menu__left img {
  width: 200px;
  display: inline;
  vertical-align: middle;
  margin-left: 20px;
}

header .menu .menu__right {
  display: flex;
}

header .menu .menu__right__item {
  margin-right: 30px;
}

header .menu .menu__right__btn {
  margin-right: 30px;
}

header .menu .menu__right a {
  color: white;
}

header .menu .menu__right__btn {
  width: 100px;
  /* height: 60px; */
}

.menu__right__btn__contact {
  background-color: white;
  color: black;
  text-align:center;
  height: 45px;
  border: 1px white solid;
  margin-top: 20px;
  line-height: 45px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.menu__right__btn__contact::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--base-color);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}

.menu__right__btn__contact:hover {
  color: #fff;
}

.menu__right__btn__contact:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}


header .menu .menu__right__btn__entry {
  box-sizing: border-box;
  background-color: var(--primary-color);
  text-align:center;
  height: 45px;
  border: 1px white solid;
  margin-top: 20px;
  line-height: 45px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}


.menu__right__btn__entry::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}

.menu__right__btn__entry:hover {
  color: var(--primary-color);
  border: solid 1px var(--primary-color)!important;
}

.menu__right__btn__entry:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}



/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: white;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
  background-color: var(--base-color);
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  text-align: center;
  margin-top: 100px;
  padding: 0 15px;
}

.nav_list li a {
  color: white;
}

.nav_list li {
  margin-bottom: -40px;
}

.nav_list .menu__right__btn__contact {
  margin-top: 50px;
}

header .menu .nav_list .menu__right__btn__entry {
  margin-top: 70px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}


/* ---------header終わり--------- */



/* ---------mv--------- */
.mv {
  background: url(./img/mv.png) no-repeat;
  background-size: cover;
  height: 100vh;
  text-align: center;
}

.mv a {
  color: white;
}

.mv .mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 250px;
}

.mv__btn {
  display: inline-block;
  padding: 20px 30px 20px 30px;
  margin-top: 40px;
  border: solid 1px white;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  background: transparent;
}

.mv__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--primary-color);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}

.mv__btn:hover {
  color: #fff;
}

.mv__btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}



/* ---------mv終わり--------- */



/* ------スクロールアニメーション------ */
.main .mv .mv__scroll {
  position:absolute;
	left:50%;
	bottom:10px;
    /*全体の高さ*/
	height:50px;
}

.mv__scroll span{
  /*描画位置*/
position: absolute;
left:-15px;
top: -15px;
  /*テキストの形状*/
color: #eee;
font-size: 0.8rem;
letter-spacing: 0.05em;
}

.mv__scroll::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}
/* スクロールアニメーション終わり */

/* -------メイン共通------- */
.section {
  max-width: 1000px;
  width: 100%;
  margin : 0 auto;
  margin-top: 100px;
  padding: 0 15px;
}

.section__title {
  text-align: center;
  font-family: 'Noto Serif JP';
  font-size: 2.5em;
}

.section__subtitle {
  text-align: center;
  margin-top:20px;
}

.section__viewmore {
  margin-top: 30px;
}

.section__viewmore__btn {
  border: solid 1px white;
  color:white;
  text-align: center;
  height: 45px;
  line-height: 45px;
  width: 200px;
  margin: 0 auto;

  background: transparent;
  position:relative;
  z-index: 1;
  transition: 0.3s;
}

.section__viewmore__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.section__viewmore__btn:hover {
  color: var(--base-color);
}

.section__viewmore__btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}


/* -------メイン共通終わり------- */


/* -------SERVICE------- */
.section__service__description {
  margin-top: 40px;
  text-align: center;
  line-height: 200%;
  padding: 10px;
}

.section__service__image {
  
}

.section__service__image img {
  
}
.section__service__image .img {
  position: relative;
  background-size: cover;
}
.section__service__image .img::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
} 

.img {
  margin-top: 20px;
  width: 100%;
  height: 250px;
  background-image: url(./img/top-service.jpeg);
  background-repeat: no-repeat;
  background-size: 200%;
  background-position: center;
}

/* -------SERVICE終わり------- */

/* -------ここからMEMBER------- */
.section__service__member {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 0 15px;
}

.section__service__member a {
  color: white;
}

.section__service__member__item {
  text-align: center;
  padding: 20px 20px 20px 20px;
  transition: 0.3s;
}

.section__service__member__item:hover {
  box-shadow: 0px 5px 15px 0px rgba(105, 105, 105, 0.7);
  transition: 0.3s;
  background-color: #19191c;
  
}

.section__service__member__item img {
  width: 70%;
}

.section__service__member__item__name__ja {
  font-family: 'Noto Serif JP';
  font-size: 1.5em;
  margin-top: 20px;
}

.section__service__member__item__name__en {
  margin-top: 10px;
}

.section__service__member__item__position {
  margin-top:15px;
}

.section__service__member__item__description {
  margin-top: 20px;
  line-height: 200%;
}

/* -------MEMBER終わり------- */


/* -------ここからABOUT------- */

.section__about {
  position: relative;
  margin-top: 150px;
}

.section__about::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
  mix-blend-mode: difference;

}

.section__about__flex {
  display: flex;
}

.section__about__flex__left {
  background: white;
  color: var(--base-color);
  padding: 40px;
  width: 100%;
}

.section__about__title {
  font-size: 2.5em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
}

.section__about__title span {
  font-family: 'Noto Serif JP';
  margin-left: 15px;
  background: var(--base-color);
  color: white;
  padding: 0px 10px;
}

.section__about__subtitle {
  margin-top: 10px;
}

.section__about__description {
  margin-top: 20px;
  line-height: 200%;
}

.section__about__viewmore {
  border: solid 1px var(--base-color);
  padding: 10px;
  width: 120px;
  text-align: center;
  margin-top: 20px;
}


.section__about__flex__right {
  background: url(./img/top-about.jpeg) no-repeat;
  width: 100%;
  background-size: cover;
  background-position: center;
}


.section__about__viewmore {
  border: solid 1px var(--base-color);
  padding: 10px;
  width: 120px;
  text-align: center;
  margin-top: 20px;

  background: transparent;
  position:relative;
  z-index: 1;
  transition: 0.3s;
  color: var(--base-color);
}

.section__about__viewmore::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--base-color);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.section__about__viewmore:hover {
  color: white;
}

.section__about__viewmore:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}


/* -------ABOUT終わり------- */


/* -------ここからRECRUITMENT------- */

.section__recruitment {
  position: relative;
}

.section__recruitment::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
  mix-blend-mode: difference;

}

.section__recruitment__flex {
  display: flex;
  width: 100%;
}

.section__recruitment__flex__right {
  background: white;
  color: var(--base-color);
  padding: 40px;
  width: 100%;
}

.section__recruitment__title {
  font-size: 2.5em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
}

.section__recruitment__title span {
  font-family: 'Noto Serif JP';
  margin-left: 15px;
  background: var(--base-color);
  color: white;
  padding: 0px 10px;
}

.section__recruitment__subtitle {
  margin-top: 10px;
}

.section__recruitment__description {
  margin-top: 20px;
  line-height: 200%;
}

.section__recruitment__viewmore {
  border: solid 1px var(--base-color);
  padding: 10px;
  width: 120px;
  text-align: center;
  margin-top: 20px;
}


.section__recruitment__flex__left {
  background: url(./img/top-recruitment.jpeg) no-repeat;
  width: 100%;
  background-size: cover;
  background-position: center;
}


.section__recruitment__viewmore {
  border: solid 1px var(--base-color);
  padding: 10px;
  width: 120px;
  text-align: center;
  margin-top: 20px;

  background: transparent;
  position:relative;
  z-index: 1;
  transition: 0.3s;
  color: var(--base-color);
}

.section__recruitment__viewmore::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--base-color);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.section__recruitment__viewmore:hover {
  color: white;
}

.section__recruitment__viewmore:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
/* -------RECRUITMENT終わり------- */


/* -------ここからフッター------- */
footer {
  width: 100%;
  padding-top: 300px;
}

.footer__logo {
  text-align: center;
}

.footer__logo img {
  width: 200px;
}

.footer__menu {
  width: 100%;
  display: flex;
  justify-content: center;
  line-height: 90px;
  margin: 0 auto;
  border-top: 1px solid white;
  margin-top: 50px;
}

.footer__menu__item {
  margin-right: 30px;
}

.footer__menu__btn {
  margin-right: 30px;
}

.footer__menu a {
  color: white;
}

.footer__menu__btn {
  width: 100px;
  /* height: 60px; */
}

.footer__menu__btn__contact {
  background-color: white;
  color: black;
  text-align:center;
  height: 45px;
  border: 1px white solid;
  margin-top: 20px;
  line-height: 45px;
}

.footer__menu__btn__entry {
  box-sizing: border-box;
  background-color: var(--primary-color);
  text-align:center;
  height: 45px;
  border: 1px white solid;
  margin-top: 20px;
  line-height: 45px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.footer__menu__btn__entry::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}

.footer__menu__btn__entry:hover {
  color: var(--primary-color);
  border: solid 1px var(--primary-color);
  background-color: white;
}

.footer__menu__btn__entry:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}






.footer__menu__btn__contact {
  background-color: white;
  color: black;
  text-align:center;
  height: 45px;
  border: 1px white solid;
  margin-top: 20px;
  line-height: 45px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.footer__menu__btn__contact::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--base-color);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}

.footer__menu__btn__contact:hover {
  color: #fff;
}

.footer__menu__btn__contact:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}



/* -------フッター終わり------- */







/* -------ここからはシングルABOUTページ開始------- */

/* ---------mv--------- */
.page__about__mv {
  background: url(./img/mv-about.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
}

.page__about__mv a {
  color: white;
}

.page__about__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}
/* ---------mv終わり--------- */

/* ---------ナビ--------- */
.page__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 100px;
  font-size: 20px;
}

.page__nav__item {
  padding: 10px;
}

.page__nav__item:hover {
  border-bottom: white 1px solid;
}

.page__nav__item a {
  color: white;
}
/* ---------ナビ終わり--------- */

/* ---------ビジョン--------- */
.page__vision {
  display: flex; 
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  margin-top: 50px;
  padding: 0 15px;
}

.page__vision__left {
  padding: 40px;
  width: 50%;
}

.page__vision__left__title {
  font-size: 2.3em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
}

.page__vision__left__subtitle {
    font-size: 1.7em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
  margin-top: 20px;
  line-height: 200%;
}

.page__vision__left__description {
  margin-top: 20px;
  line-height: 200%;
}

.page__vision__right {
  position: relative;
  width: 50%;
}
.page__vision__right::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
}


.page__vision__right img {
  width: 100%;
}

/* ---------ビジョン終わり--------- */


/* ---------ミッション--------- */
.page__mission {
  display: flex; 
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  margin-top: 50px;
  padding: 0 15px;
}

.page__mission__right {
  padding: 40px;
  width: 50%;
}

.page__mission__right__title {
  font-size: 2.3em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
}

.page__mission__right__subtitle {
    font-size: 1.7em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
  margin-top: 20px;
}

.page__mission__right__description {
  margin-top: 20px;
  line-height: 200%;
}

.page__mission__left {
  position: relative;
  width: 50%;
}
.page__mission__left::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
}


.page__mission__left img {
  width: 100%;
}

/* ---------ミッション終わり--------- */

/* ---------メッセージ開始--------- */
.page__message {
  max-width: 1000px;
  width: 100%;
  margin : 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 50px 40px;
  background-color: #2E2E2E;
}

.page__title {
  text-align: center;
  font-family: 'Noto Serif JP';
  font-size: 2.5em;
  line-height: 200%;
  font-weight: bold;
}

.page__subtitle {
  text-align: center;
  margin-top:20px;
}

.page__message__content {
  display: flex;
  margin-top: 50px;
  align-items: center;
}

.page__message__content__left {
  padding-right: 40px;
  width: 60%;
}
.page__message__content__left__message {
  line-height: 200%;
}
.page__message__content__left__name {
  margin-top: 30px;
  float: right;
}
.page__message__content__right {
  width: 40%;
  position: relative;
}

.page__message__content__right::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
}

.page__message__content__right img {
  width: 100%;
}

/* ---------メッセージ終わり--------- */

/* ---------会社概要スタート--------- */
.page__company {
  padding: 0 15px;
}
.page__company__table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 50px;
  /* padding: 0 15px; */
}

table tr {
  border-top: solid rgb(184, 184, 184) 1px;
}

table tr:last-child {
  border-bottom: solid rgb(184, 184, 184) 1px;
}

table th {
  width: 20%;
  padding: 15px;
  vertical-align: middle;
  font-weight: normal;
}

table td {
  width: 80%;
  padding: 15px;
  line-height: 200%;
}

/* ---------会社概要終わり--------- */


/* -------シングルABOUTページ終了------- */





/* -------シングルSERVICEページ開始------- */


/* ---------mv--------- */
.page__service__mv {
  background: url(./img/mv-service.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
}

.page__service__mv a {
  color: white;
}

.page__service__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}
/* ---------mv終わり--------- */

/* ---------導入説明--------- */
.page__introduction {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 15px;
}

.page__introduction__text {
  text-align: center;
  line-height: 200%;
}

.page__introduction__title {
  text-align: center;
  margin-top: 100px;
  font-size: 2em;
  font-family: 'Noto Serif JP';
  line-height: 200%;
}

.service__recruitment__title__subtitle {
  font-size: 1.6em;
  font-family: 'Noto Serif JP';
  line-height: 200%;
}

.page__introduction__image {
  margin-top: 30px;
  text-align: center;
}

.page__introduction__image img {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* ---------導入説明終わり--------- */



/* ---------採用コンサルティング--------- */

.service__recruitment {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 0 15px;
}

.service__recruitment__title {
  margin-top: 60px;
}

.page__consulting {
  display: flex; 
  align-items: center;
  margin-top: 100px;
}

.page__consulting__left {
  padding: 40px;
  width: 50%;
}

.page__consulting__left__subtitle {
  font-size: 2em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
}

.page__consulting__left__description {
  margin-top: 20px;
  line-height: 200%;
}

.page__consulting__right {
  position: relative;
  width: 50%;
}
.page__consulting__right::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
}


.page__consulting__right img {
  width: 100%;
}

.viewmore__white {
  border: solid 1px white;
  color:white;
  text-align: center;
  height: 45px;
  line-height: 45px;
  width: 200px;
  margin-top: 30px;

  background: transparent;
  position:relative;
  z-index: 1;
  transition: 0.3s;
}

.viewmore__white::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.viewmore__white:hover {
  color: var(--base-color);
}

.viewmore__white:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

/* ---------採用コンサルティング終わり--------- */


/* ---------採用マーケティング--------- */
.page__marketing {
  display: flex; 
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  margin-top: 50px;
  padding: 0 15px;
}

.page__marketing__right {
  padding: 40px;
  width: 50%;
}

.page__marketing__right__title {
  font-size: 2.3em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
}

.page__marketing__right__subtitle {
    font-size: 1.7em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
  margin-top: 20px;
}

.page__marketing__right__description {
  margin-top: 20px;
  line-height: 200%;
}

.page__marketing__left {
  position: relative;
  width: 50%;
}
.page__marketing__left::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
}

.page__marketing__left img {
  width: 100%;
}

/* ---------採用マーケティング終わり--------- */


/* ---------DX支援開始--------- */
.page__dx {
  display: flex; 
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  margin-top: 50px;
  padding: 0 15px;
}

.page__dx__left {
  padding: 40px;
  width: 50%;
}

.page__dx__left__subtitle {
  font-size: 2em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
}

.page__dx__left__description {
  margin-top: 20px;
  line-height: 200%;
}

.page__dx__right {
  position: relative;
  width: 50%;
}
.page__dx__right::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
}


.page__dx__right img {
  width: 100%;
}

/* ---------DX支援終わり--------- */


/* -------シングルSERVICEページ終了------- */




/* -------ここからはシングルconsultingページ開始------- */

/* ---------mv--------- */
.page__consulting__mv {
  background: url(./img/mv-consulting.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
}

.page__consulting__mv a {
  color: white;
}

.page__consulting__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}
/* ---------mv終わり--------- */

/* ---------説明--------- */

.page__consulting__introduction {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 15px;
}
.page__consulting__introduction__item__category {
  font-size: 1.8em;
  font-family: 'Noto Serif JP';
  width: 100%;
  border-bottom: solid white 1px;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.page__consulting__introduction__item__title {
  font-size: 1.7em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
  line-height: 200%;
}

.page__consulting__introduction__item__description {
  margin-top:20px;
  line-height: 200%;
}

.page__consulting__introduction__image {
  margin: 50px 0;
}

.page__consulting__introduction__image img {
  width: 100%;
}

.item_2 {
  margin-top: 100px;
}
/* ---------説明終わり--------- */


/* ---------事例--------- */
.page__case {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 15px;
}

.page__case__contents {
  display: flex; 
  width: 100%;
  align-items: center;
  margin-top: 50px;
}

.page__case__contents__left {
  padding: 40px;
  width: 60%;
}

.page__case__contents__left__number {
  color: #818181;
  font-family: 'Noto Serif JP';
}

.page__case__contents__left__title {
  font-size: 2em;
  font-family: 'Noto Serif JP';
  margin-top: 10px;
  line-height: 150%;
}

.page__case__contents__left__info {
  margin-top: 20px;
}

.page__case__contents__left__info span {
  padding-left: 20px;
}

.page__case__contents__left__description {
  margin-top: 20px;
  line-height: 200%;
}

.page__case__contents__right {
  position: relative;
  width: 40%;
}

.page__case__contents__right::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
}

.page__case__contents__right img {
  width: 100%;
}

.page__case__contents__reversal__right {
  padding: 40px;
  width: 60%;
}

.page__case__contents__reversal__right__number {
  color: #818181;
  font-family: 'Noto Serif JP';
}

.page__case__contents__reversal__right__title {
  font-size: 2em;
  font-family: 'Noto Serif JP';
  margin-top: 10px;
  line-height: 200%;
}

.page__case__contents__reversal {
  display: flex; 
  width: 100%;
  align-items: center;
  margin-top: 50px;
}

.page__case__contents__reversal__right__info {
  margin-top: 20px;
}

.page__case__contents__reversal__right__info span {
  padding-left: 20px;
}

.page__case__contents__reversal__right__description {
  margin-top: 20px;
  line-height: 200%;
}

.page__case__contents__reversal__left {
  position: relative;
  width: 40%;
}

.page__case__contents__reversal__left::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
}

.page__case__contents__reversal__left img {
  width: 100%;
}

/* ---------事例終わり--------- */

/* -------シングルconsultingページ終了------- */



/* -------ここからはシングルRPOページ開始------- */

/* ---------mv--------- */
.page__rpo__mv {
  background: url(./img/mv-rpo.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
  background-position: 50% 60%;
}

.page__rpo__mv a {
  color: white;
}

.page__rpo__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}
/* ---------mv終わり--------- */
/* -------シングルmarketingページ終了------- */


/* -------ここからシングルcontactページ------- */
.page__contact__mv {
  background: url(./img/mv-contact.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
  background-position: 50% 70%;
}

.page__contact__mv a {
  color: white;
}

.page__contact__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}

.page__form {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page__form__text {
  text-align: center;
  line-height: 200%;
  margin-top: 100px;
}

.page__form__contents {
  margin-top: 100px;
}

.page__form__contents__item {
  display: flex;
  margin-top: 30px;
  align-items: center;
}

.page__form__contents__item__title {
  width: 20%;
}

.page__form__contents__item__status {
  width: 10%;
}

.need {
  color: #52DCFA;
}

.any {
  color: #B4AEAE;
}

.page__form__contents__item__input {
  width: 70%;
}

.page__form__contents__item__input input {
  width: 100%;
  height: 50px;
  padding:5px;
}

.page__form__contents__item__input textarea {
  width: 100%;
  height: 150px;
  padding:5px;
}

.privacy {
  margin-top: 50px;
  text-align: center;
}

.privacy a {
  color: white;
  text-decoration: underline;
}

.page__form__contents__submit input {
  margin-top: 60px;
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.2em;
  border: solid white 1px;
  height: 60px;
  transition: 0.3s;
}

.page__form__contents__submit input:hover {
  background-color: #814aad;
  transition: 0.3s;
}


/* -------シングルcontactページ終了------- */


/* -------シングル確認画面------- */
#hdr_logo img {
  width: 200px;
}

#hdr_inner {
  text-align: center;
  margin: 50px 0;
}

#formWrap h2 {
  text-align: center;
  font-family: 'Noto Serif JP';
  font-size: 1.5em;
}

#formWrap section p {
  margin: 50px 0;
  line-height: 150%;
}

#formWrap section form table {
  margin: 0 auto;
  line-height: 150%;
}

#formWrap section form table th {
  vertical-align: middle;
}

#formWrap section form table td {
  vertical-align: middle;
}

#formWrap section form p {
  margin-top: 50px;
}

#formWrap section form .submit-button {
  background-color: var(--primary-color);
  color: white;
  box-shadow: none;
  border: 1px white solid;
  width: 300px;
  height: 50px;
  display: block;
  font-weight: bold;
  font-size: 1.1em;
  transition: 0.3s;
}

#formWrap section form .submit-button:hover {
  opacity: 0.8;
  transition: 0.3s;
}

#formWrap section form .back-button {
  background: none;
  color: white;
  border: none;
  margin-top: 30px;
}

.footer-confirm {
  padding: 50px 0;
  text-align: center;
}

#formTable tbody tr:last-child {
  border-bottom: solid rgb(184, 184, 184) 1px;
}

.thanks__message {
  padding-top: 150px;
  line-height: 200%;
  text-align: center;
}

.thanks__message .page__career__contents__back {
  margin-top: 50px;
}


/* -------シングル確認画面終了------- */




/* -------ここからシングルMEMBERページ------- */
.page__member__mv {
  background: url(./img/mv-member.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
}

.page__member__mv a {
  color: white;
}

.page__member__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}

/* -------シングルmemberページ終了------- */

/* -------ここからNEWS一覧ページ------- */
.page__news__mv {
  background: url(./img/mv-news.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
  background-position: 50% 70%;
}

.page__news__mv a {
  color: white;
}

.page__news__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}

.page__news__contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 15px;
}

.page__news__contents__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  transition: 0.3s;
  padding: 5px;
}

.page__news__contents__item:hover {
  background-color: #414141;
  transition: 0.3s;
}

.page__news__contents a {
  color: white;
}

.page__news__contents__item__date {
  width: 10%;
  text-align: center;
}

.page__news__contents__item__category {
  width: 20%;
  text-align: center;
  padding: 8px;
  border: white 1px solid;
  margin-right: 20px;
}
.category__news {
  background-color: var(--primary-color);
}
.category__prese {
  background-color: #09447B;
}
.category__media {
  background-color:#136306;
}

.page__news__contents__item__text {
  width: 70%;
}

/* -------ここからNEWS一覧ページ終了------- */



/* -------ここからNEWS詳細ページ------- */
.show__news__contents__image img {
  width: 100%;
}

.show__news__contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 150px;
  padding: 100px 15px 0 15px;
}

.show__news__contents__item__top {
  display: flex;
  margin-top: 30px;
  justify-content: flex-start;
  align-items: center;
}
.show__news__contents__item__top__date {
  margin-right: 20px;
}

.show__news__contents__item__top__category {
  width: 200px;
  text-align: center;
  padding: 8px;
  border: white 1px solid;
  margin-right: 20px;
}
.show__news {
  background-color: var(--primary-color);
}
.show__prese {
  background-color: #09447B;
}
.show__media {
  background-color:#136306;
}

.show__news__contents__item__title {
  font-family: 'Noto Serif JP';
  font-size:  1.7em;
  margin-top: 30px;
  line-height: 200%;
}

.show__news__contents__item__text {
  margin-top: 30px;
  line-height: 200%;
}





.page__news__mv a {
  color: white;
}

.page__news__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}

.page__news__contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 15px;
}

.page__news__contents__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  transition: 0.3s;
  padding: 5px;
}

.page__news__contents__item:hover {
  background-color: #414141;
  transition: 0.3s;
}

.page__news__contents a {
  color: white;
}

.page__news__contents__item__date {
  width: 10%;
  text-align: center;
}

.page__news__contents__item__category {
  width: 20%;
  text-align: center;
  padding: 8px;
  border: white 1px solid;
  margin-right: 20px;
}
.category__news {
  background-color: var(--primary-color);
}
.category__prese {
  background-color: #09447B;
}
.category__media {
  background-color:#136306;
}

.page__news__contents__item__text {
  width: 70%;
}

.show__news__contents__back {
  border: solid 1px white;
  color:white;
  text-align: center;
  height: 45px;
  line-height: 45px;
  width: 200px;
  margin: 0 auto;
  margin-top: 100px;

  background: transparent;
  position:relative;
  z-index: 1;
  transition: 0.3s;
}

.show__news__contents__back::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.show__news__contents__back:hover {
  color: var(--base-color);
}

.show__news__contents__back:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

/* -------NEWS詳細ページ終了------- */




/* -------ここからRecruitment開始------- */

.page__recruitment__mv {
  background: url(./img/mv-recruitment.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
}

.page__recruitment__mv a {
  color: white;
}

.page__recruitment__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}
/* ---------mv終わり--------- */

/* ---------説明--------- */

.page__recruitment__introduction {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 15px;
}

.page__recruitment__introduction__title {
  font-size: 1.7em;
  font-family: 'Noto Serif JP';
  font-weight: bold;
  line-height: 200%;
}

.page__recruitment__introduction__description {
  margin-top:20px;
  line-height: 200%;
}
/* ---------説明終わり--------- */


/* ---------メッセージ開始--------- */
.page__recruitment__message {
  max-width: 1000px;
  width: 100%;
  margin : 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0 15px;
}

.page__recruitment__message__content {
  display: flex;
  margin-top: 50px;
  align-items: center;
}

.page__recruitment__message__content__left {
  padding: 40px 40px 40px 0;
  width: 60%;
}
.page__recruitment__message__content__left__message {
  line-height: 200%;
}
.page__recruitment__message__content__left__name {
  margin-top: 30px;
  float: right;
}
.page__recruitment__message__content__right {
  width: 40%;
  position: relative;
}

.page__recruitment__message__content__right::after {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transition: .3s;
  content: '';
}

.page__recruitment__message__content__right img {
  width: 100%;
}

/* ---------メッセージ終わり--------- */


/* ---------ここからPosition--------- */
.page__position {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page__position__contents {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}
.page__position__contents a {
  color: white;
}

.page__position__contents__item {
  width: 100%;
  width: 300px;
}

.page__position__contents__item__image {
  width: 300px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.page__position__contents__item__image__title {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: bold;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 1.3em;
  text-align: center;
}

.page__position__contents__item__image img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  transition: 0.6s;
}

.page__position__contents__item__image img:hover {
  transform: scale(1.1);
  transition: 0.6s;
}

.page__position__contents__item__description {
  margin-top: 15px;
  line-height: 200%;
}

/* ---------Position終わり--------- */


/* -------Recruitmentここまで------- */




/* -------ここから新卒求人一覧ページ開始------- */

.page__graduate__mv {
  background: url(./img/mv-graduate.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
  background-position: 50% 30%;
}

.page__graduate__mv a {
  color: white;
}

.page__graduate__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}

.page__graduate__contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 15px;
}

.page__graduate__contents__notext {
  text-align: center;
}

.page__graduate__contents__back {
  border: solid 1px white;
  color:white;
  text-align: center;
  height: 45px;
  line-height: 45px;
  width: 300px;
  margin: 0 auto;
  margin-top: 100px;

  background: transparent;
  position:relative;
  z-index: 1;
  transition: 0.3s;
}

.page__graduate__contents__back::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.page__graduate__contents__back:hover {
  color: var(--base-color);
}

.page__graduate__contents__back:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}




/* -------新卒求人一覧ページここまで------- */



/* -------ここから中途向けページ開始------- */

.page__career__mv {
  background: url(./img/mv-career.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
}

.page__career__mv a {
  color: white;
}

.page__career__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}

.page__career__contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 15px;
}

.page__career__contents__notext {
  text-align: center;
}

.page__career__contents__back {
  border: solid 1px white;
  color:white;
  text-align: center;
  height: 45px;
  line-height: 45px;
  width: 300px;
  margin: 0 auto;
  margin-top: 100px;

  background: transparent;
  position:relative;
  z-index: 1;
  transition: 0.3s;
}

.page__career__contents__back::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.page__career__contents__back:hover {
  color: var(--base-color);
}

.page__career__contents__back:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}


/* ---------ここからPosition--------- */
.page__career__contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page__career__contents__title {
  text-align: center;
  margin-top: 100px;
  font-size: 1.7em;
  font-weight: bold;
  font-family: 'Noto Serif JP';
}

.page__career__contents__position {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}
.page__career__contents__position a {
  color: white;
}

.page__career__contents__position__item {
  width: 100%;
  width: 300px;
}

.page__career__contents__position__item__image {
  width: 300px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.page__career__contents__position__item__image__title {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: bold;
  line-height: 200%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 1.3em;
  text-align: center;
}

.page__career__contents__position__item__image img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  transition: 0.6s;
}

.page__career__contents__position__item__image img:hover {
  transform: scale(1.1);
  transition: 0.6s;
}

.page__career__contents__position__item__description {
  margin-top: 15px;
  line-height: 200%;
}

/* ---------Position終わり--------- */



/* -------中途向けページここまで------- */





/* -------ここから求人詳細ページ------- */

.show__recruitment__contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 150px 15px 0 15px;
}

.show__recruitment__contents__image img {
  max-height: 400px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.show__recruitment__contents__item__top {
  margin-top: 30px; 
}

.show__recruitment__contents__item__title {
  font-family: 'Noto Serif JP';
  font-size:  1.7em;
  margin-top: 30px;
  line-height: 200%;
  font-weight: bold;
}

.show__recruitment__contents__item__text {
  margin-top: 30px;
  line-height: 200%;
}

.show__recruitment__contents__back {
  border: solid 1px white;
  color:white;
  text-align: center;
  height: 45px;
  line-height: 45px;
  width: 200px;
  margin: 0 auto;
  margin-top: 50px;

  background: transparent;
  position:relative;
  z-index: 1;
  transition: 0.3s;
}

.show__recruitment__contents__back::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.show__recruitment__contents__back:hover {
  color: var(--base-color);
}

.show__recruitment__contents__back:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

/* ---------応募要項--------- */
.show__recruitment__contents__info {
  margin-top: 100px;
  background-color: #2E2E2E;
  padding:  70px;
}

.show__recruitment__contents__info__table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

table tr {
  border-top: solid rgb(184, 184, 184) 1px;
}

table tr:last-child {
  border-bottom: solid rgb(184, 184, 184) 1px;
}

table th {
  width: 20%;
  padding: 15px;
  vertical-align: middle;
  font-weight: normal;
}

table td {
  width: 80%;
  padding: 15px;
  line-height: 200%;
}

.under__contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 0 15px;
}

.under__contents a {
  color:white;
}


.show__recruitment__contents__entry {
  box-sizing: border-box;
  background-color: var(--primary-color);
  text-align:center;
  height: 60px;
  border: 1px white solid;
  margin-top: 60px;
  line-height: 60px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}


.show__recruitment__contents__entry::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}

.show__recruitment__contents__entry:hover {
  color: var(--primary-color);
  border: solid 1px var(--primary-color)!important;
}

.show__recruitment__contents__entry:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

/* ---------応募要項終わり--------- */





/* -------求人詳細ページ終了------- */






/* -------ここからシングルapplicationページ------- */
.page__application__mv {
  background: url(./img/mv-application.jpeg) no-repeat;
  background-size: cover;
  height: 50vh;
  text-align: center;
  background-position: bottom;
}

.page__application__mv a {
  color: white;
}

.page__application__mv__title {
  font-family: 'Noto Serif JP';
  font-size: 45px;
  line-height: 2em;
  padding-top: 130px;
}

.page__form {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page__form__text {
  text-align: center;
  line-height: 200%;
  margin-top: 100px;
}

.page__form__contents {
  margin-top: 100px;
}

.page__form__contents__item {
  display: flex;
  margin-top: 30px;
  align-items: center;
}

.page__form__contents__item__title {
  width: 20%;
}

.page__form__contents__item__status {
  width: 10%;
}

.need {
  color: #52DCFA;
}

.any {
  color: #B4AEAE;
}

.page__form__contents__item__input {
  width: 70%;
}

.page__form__contents__item__input input {
  width: 100%;
  height: 50px;
  padding:5px;
}

.page__form__contents__item__input textarea {
  width: 100%;
  height: 150px;
  padding:5px;
}

.privacy {
  margin-top: 50px;
  text-align: center;
}

.privacy a {
  color: white;
  text-decoration: underline;
}

.page__form__contents__submit input {
  margin-top: 60px;
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.2em;
  border: solid white 1px;
  height: 60px;
  transition: 0.3s;
}

.page__form__contents__submit input:hover {
  background-color: #814aad;
  transition: 0.3s;
}

.input__select select {
  width: 100%;
  height: 60px;
  padding: 5px;
}

.input__file input {
  line-height: 40px;
}

/* -------シングルapplicationページ終了------- */


/* -------シングルprivacyページ------- */
.privacy_policy {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding-top: 150px;
  padding: 15px;
}

.privacy_policy .title {
  font-size: 1.5em;
  font-family: 'Noto Serif JP';
}

.privacy_policy .text {
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 50px;
  line-height: 200%;
}





/* -------シングルprivacyページここまで------- */




@media screen and (min-width: 1001px) {
  header .menu .menu__right {
    display: flex;
  }
  .nav{
    display: none;
  }
  .footer__menu {
    display: flex;
  }
  .sp__br {
    display: none;
  }
  .pc__br {
    display: block;
  }
  .spimg {
    display: none;
  }
}


@media screen and (max-width: 1000px) {
  header .menu .menu__right {
    display: none;
  }
  .nav{
    display: block;
  }
  .footer__menu {
    display: block;
    margin-bottom: 50px;
  }
  .footer__menu__item{
    text-align: center;
    margin-right: 0;
    margin-bottom: -40px;
  } 
  .footer__menu__btn {
    margin: 0 auto;
    margin-top: 50px;
    width: 300px;
  }
  .sp__br {
    display: none;
  }
  .pc__br {
    display: block;
  }
  .spimg {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .mv .mv__title {
    font-size: 19px;
  }
  .sp__br {
    display: block;
  }
  .pc__br {
    display: none;
  }
  .section__about__flex__right {
    display: none;
  }
  .section__recruitment__flex__left {
    display: none;
  }
  .section__about__title {
    font-size: 2em;
  }
  .footer__menu__btn:last-child {
    margin-top: 25px;
  }
  header .menu .menu__left img {
    width: 130px;
  }
  .page__nav {
    gap: 0;
  }
  .page__message__content__left {
    padding: 0px;
    width: 100%;
  }
  .page__message__content__right {
    height: 350px;
    margin-top: 50px;
    width: 100%;
  }
  .page__message__content__right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
  }
  .page__vision {
    flex-direction: column;
  }
  .page__mission {
    flex-direction: column-reverse;
  }
  .page__vision__left {
    padding: 0;
    width: 100%;
  }
  .page__mission__left {
    width: 100%;
  }
  .page__mission__right {
    padding: 0;
    width: 100%;
  }
  .page__vision__right {
    margin-top: 30px;
    width: 100%;
  }
  .page__mission__right__title {
    margin-top: 50px;
  }
  .page__mission__left {
    margin-top: 30px;
  }
  table tr {
    border: none;
  }
  table tr:last-child {
    border: none;
  }
  table th {
    width: 90%;
    font-weight: normal;
    display: block;
    text-align: center;
    background-color: #2E2E2E;
    margin: 0 auto;
    margin-top: 20px;
  }
  
  table td {
    width: 100%;
    padding: 15px;
    line-height: 200%;
    display: block;
    text-align: center;
  }

  .page__message__content {
    flex-direction: column;
  }
  footer {
    padding-top: 150px;
  }

  .revflex {
    flex-direction: column-reverse;
  }
  .revflex__left {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .viewmore__white {
    width: 100%;
  }
  .revflex__right {
    width: 100%;
  }
  .revflex__right img {
    height: 200px;
    object-fit: cover;
  }

  .flex {
    flex-direction: column;
  }
  .flex__right {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .flex__left {
    width: 100%;
  }
  .flex__left img {
    height: 200px;
    object-fit: cover;
  }
  .page__title {
    font-size: 2.5em;
    line-height: 150%;
  }
  .service__recruitment__title__subtitle {
    font-size: 1.3em;
  }
  .page__introduction__title {
    font-size: 1.5em;
  }
  .page__consulting__left__subtitle,.page__marketing__right__subtitle,.page__dx__left__subtitle {
    font-size: 1.5em;
  }
  .page__recruitment__introduction__title {
    font-size: 1.5em;
  }
  .page__recruitment__message__content__left {
    padding: 0;
  }
  .page__recruitment__message__content__right {
    margin-top: 50px;
  }
  .page__recruitment__message__content__right img {
    height: 350px;
    object-fit: cover;
    object-position: top;
  }
  .page__subtitle {
    /* margin-top: 0; */
  }
  .graduate__title {
    font-size: 30px;
  }
  .page__career__mv__title {
    font-size: 30px;
  }
  .show__recruitment__contents {
    padding-top: 100px;
  }
  .show__recruitment__contents__info {
    padding: 10px;
  }
  .show__recruitment__contents__info th {
    background-color: gray;
    text-align: left;
  }
  
  .show__recruitment__contents__info tr td {
    text-align: left;
  }
  .page__form__contents__item {
    display: block;
  }
  .page__form__contents__item__input {
    width: 100%;
    margin-top: 10px;
  }
  .page__form__contents__item__title {
    width: 100%;
    display: inline;
    padding-right: 15px;
  }
  .page__form__contents__item__status {
    display: inline;
  }
  .page__form__text {
    margin-top: 50px;
  }
  .page__news__contents__item {
    display: block;
  }
  .page__news__contents__item__date,.page__news__contents__item__category {
    display: inline;
  }
  .page__news__contents__item__text {
    width: 100%;
  }
  .page__news__contents__item__category {
    padding: 3px 8px;

  }
  .page__news__contents__item__text {
    margin-top: 20px;
  }
  .page__news__contents {
    margin-top: 50px;
  }
  .page__news__contents__item {
    margin-top: 40px;
  }
  .page__news__contents__item__date {
    padding-right: 10px;
  }
  .show__news__contents__item__top__category{
    width: auto;
  }
  .show__news__contents__item__title {
    font-size: 1.5em;
  }
  .show__news__contents__image img {
    height: 200px;
    object-fit: cover;
  }
  .spimg {
    display: block;
  }
  .pcimg {
    display: none;
  }
  .page__consulting__introduction__item__title {
    font-size: 1.5em;
    line-height: 150%;
  }
  .page__case__contents__reversal__right__title {
    font-size: 1.5em;
    line-height: 150%;
  }
  .flex__left {
    padding: 0;
  }
  .page__case__contents__left__title {
    font-size: 1.5em;
  }
  .revflex__right {
    padding: 0;
  }
  .page__case__contents {
    margin-bottom: 70px;
  }
  .page__case__contents__reversal {
    margin-bottom: 100px;
  }
  .page__case__contents {
    margin-bottom: 100px;
  }
  .page__consulting__mv__title {
    font-size: 30px;
  }
  .page__rpo__mv__title {
    font-size: 30px;
    line-height: 150%;
  }
  .page__rpo__mv__subtitle {
    margin-top: 20px;
  }
  #formWrap section form table {
    width: 100%;
  }
}