/*resetCSS*/
html, body, h1, h2, h3, h4,
ul, ol, dl, li, dt, dd, p, div, span,
img, a, table, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

html{
	scroll-behavior: smooth;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}


/*paddingを、幅に含めないようにする→普通にいれる*/
* {
    box-sizing: border-box;
  }

body {
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
}

a:hover img {
  filter: alpha(opacity＝70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  /*画像を70%の不透明度に
  もし50%にしたいときは
  上から50、0.5、0.5にします*/
}

/*---------------------------------------------------*/
/*	↓ ここからサイトの更新をするときに使用するコード ↓
/*---------------------------------------------------*/
/* 画像の追加：追加する順番は気にせず：横1400px・縦720pxあれば大丈夫 */
.profile-top-image-syainnonamae{
	background-image: url(image/interview-syainnonamae/top-image.jpg);
}
.profile-top-image-sawasato{
	background-image: url(image/interview-sawasato/top-image.jpg);
}
/*
.profile-top-image-mogi{
	background-image: url(image/interview-mogi/top-image.jpg);
}
*/
.profile-top-image-sachi{
	background-image: url(image/interview-sachi/top-image.jpg);
}
.profile-top-image-matsuno{
	background-image: url(image/interview-matsuno/top-image.jpg);
}

/*▼▼▼ 追加 ▼▼▼*/
.profile-top-image-kumagai{
	background-image: url(image/interview-kumagai/top-image.jpg);
}
.profile-top-image-otake{
	background-image: url(image/interview-otake/top-image.jpg);
}
.profile-top-image-abe{
	background-image: url(image/interview-abe/top-image.jpg);
}

/* 画面が小さくなった時の画像のどこに焦点を当てるのか？（顔がある部分が左の場合はleft, 逆はright） */
.profile-top-image-left{
	background-position: 40% 50%;
}
.profile-top-image-right{
	background-position: 60% 50%;
}

/* 文章の位置 */
.profile-top-text-left{
	/* 領域の左端から8%、上端から50%の位置に */
	left: 8%;
	top: 50%;
}
.profile-top-text-right{
	/* 領域の右端から8%、上端から50%の位置に */
	right: 8%;
	top: 50%;
}

/* ipad以上の時の調整 */
@media screen and (min-width: 769px){
	.profile-top-text-left{
		/* 領域の左端から20%、上端から50%の位置に */
		left: 20%;
		top: 50%;
	}
	.profile-top-text-right{
		/* 領域の右端から8%、上端から50%の位置に */
		right: 8%;
		top: 50%;
	}
}

/*---------------------------------------------------*/
/*	↑ ここからサイトの更新をするときに使用するコード ↑
/*---------------------------------------------------*/

.container{
	max-width: 1080px;
	margin: 0 auto;
}

.contents-title{
	color:black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
	font-size: 40px;
}

.contents-sub-title{
	color:black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
	font-size: 56px;
	margin-top: 40px;
}

@media screen and (max-width:1080px){
.contents-title{
	font-size: 36px;
}

.contents-sub-title{
	font-size: 48px;
	margin-top: 30px;
}

.contents-title{
	padding-left: 30px;
}

.contents-sub-title{
	padding-left: 30px;
}
}

@media screen and (max-width:768px){
.contents-title{
	font-size: 32px;
}

.contents-sub-title{
	font-size: 40px;
	margin-top: 30px;
}
}

@media screen and (max-width:415px){
.contents-title{
	font-size: 28px;
}

.contents-sub-title{
	font-size: 32px;
	margin-top: 20px;
}

.contents-title{
	padding-left: 0px;
}

.contents-sub-title{
	padding-left: 0px;
}

}

/*---------------------------------------------------*/
/*	1.header
/*---------------------------------------------------*/
header{
	background-color:#FFFFFF;
}

#global-nav {
  background-color:#FFFFFF;
  border-bottom: 1px solid #00000029;
  /*余白が入らないように*/
  margin: 0;
  /*以下装飾*/
  width: 100%;
  z-index: 998;
}

#global-nav.m_fixed {
  position: fixed;
  left: 0;
  top: 0;
}

.header-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.header-left-logo{
	width: 257px;
	height: 50px;
}

.header-right-text{
  display: flex;
  justify-content: flex-end;
	align-items: center;
	margin-bottom: 0;
}



/* Effect 21: borders slight translate */
.menu {
  margin-right: 28px;
	color:#2EB702;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: bold;
	text-decoration: none;
	padding: 10px;
  display: inline-block;
	font-size: 18px;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}

.menu::before,
.menu::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #3E8A56;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.menu::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.menu::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}

.menu:hover,
.menu:focus {
	color: #3E8A56;
}

.menu:hover::before,
.menu:focus::before,
.menu:hover::after,
.menu:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

.menu-contact{
  display: block;
  text-decoration: none;
	color: white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding: 40px 60px;
  background-color: #3E8A56;
  border: 2px solid #3E8A56;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.menu-contact:after{
  width: 100%;
  height: 0;
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  background : #FFF;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(70deg);
  transition: .2s;
  z-index: -1;
}

.menu-contact:hover{
  color: #3E8A56;
}

.menu-contact:hover:after{
  height: 240%;
  opacity: 1;
}
.menu-contact:active:after{
  height: 340%;
  opacity: 1;
}

@media screen and (max-width: 1079px) {
.header-content{
  padding: 0px 0px 0px 20px;
}

.menu{
  margin-right: 16px;
  font-size: 16px;
}

.menu-contact{
  font-size: 18px;
  padding: 32px 48px;
}

.header-left-logo{
	width: 205.6px;
	height: 40px;
}
}

@media screen and (min-width:768px) {
.menu-right {
  display:none;
}
}

@media screen and (max-width: 767px) {
.header-content{
	width: 100%;
	padding: 20px 20px;
}

.header-right-text{
  display: none;
}

.toggle {
/*トグルボタンのスタイルを指定*/
  display: block;
  position: absolute;
  right: 20px;
	top: 20px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 999;
}

.toggle__icon {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: solid 3px #000;
  -webkit-transition: .35s ease-in-out;
  /*変化の速度を指定*/
  -moz-transition: .35s ease-in-out;
  /*変化の速度を指定*/
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  /*変化の速度を指定*/
  left: 6px; }
  .toggle__icon:nth-child(1) {
    top: 9px; }
  .toggle__icon:nth-child(2) {
    top: 18px; }
  .toggle__icon:nth-child(3) {
    top: 27px;
}

.toggle.active{
  position: fixed;
  right: 30px;
  top: 12px;
}

.toggle.active span:nth-child(1) {
/* 最初のspanをマイナス45度に */
  top: 18px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.toggle.active span:nth-child(2) {
  /* 2番目のspanを45度に */
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toggle.active span:nth-child(3) {
  /* 3番目のspanを45度に */
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-menu {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  background: #fff;
  color: #000;
  text-align: center;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  border-bottom: solid 1px #00000029;
}

.list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.list__content {
  font-size: 1.1em;
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #333;
}

.list__link {
  display: block;
  /*クリックできる領域を広げる*/
  color: #000;
  padding: 1em 0;
}

.nav-menu.active {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.menu{
  color: #3E8A56;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  margin-top: 25px;
  margin-right: 0px;
}

.menu-contact{
  background-color: #3E8A56;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  padding: 10px 0px;
  width: 100%;
  display: inline-block;
  margin: 20px 0px;
}
}

@media screen and (max-width: 415px) {
.contact-text  br{
  display:none;
}

.header-content{
	padding: 20px 15px;
}

.toggle.active{
  right: 12px;
}

.menu {
  font-size: 20px;
}

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

/*---------------------------------------------------*/
/*	/1.header
/*---------------------------------------------------*/

/*---------------------------------------------------*/
/*	3.top
/*---------------------------------------------------*/
.top-contents{
	position: relative;
}

.top-image{
	width: 100%;
	z-index: 1;
}

.top-img{
	width: 100%;
}

.top-title-wrapper{
	position: absolute;
	bottom: 20%;
	left: 35%;
	-webkit-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
	z-index: 1;
}

.top-title{
	color:white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
	font-size: 4vw;
	line-height: 1.5em;
}

.top-title span{
	color:#027D44;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
}

.top-sub-title{
	color:white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
	font-size: 3.5vw;
	margin-top: 1.5em;
}

.top-text-wrapper{
	position: absolute;
	top: 55%;
	right: 0%;
}

.top-text{
	color:white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 3.5vw;
  padding: 30px 60px 30px 40px;
  background: #027D44CC;
	border-bottom: solid 3px #027D44CC;
}

@media screen and (min-width:416px){
.top-image-sp{
	display: none;
}
}

@media screen and (max-width:415px){
.top-image{
	display: none;
}

.top-image{
	width: 100%;
}

.top-img-sp{
	width: 100%;
}

.top-title{
	position: relative;
}
}

.swiper-slide_img{
  width: 100%;
  display: block;
}

.swiper-button-next:after, .swiper-button-prev:after{
  color: rgb(0, 103, 68)
}

.swiper_position{
  position: relative;
}

/*---------------------------------------------------*/
/*	3. about
/*---------------------------------------------------*/
.about-contents{
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.about-bg-text{
	position: absolute;
	bottom: 0px;
	right: 0px;
	font-size: 196px;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
	color: #585656;
	z-index: -1;
	opacity: 0.1;
}

.about-container{
	max-width: 780px;
	margin: 0 auto;
}

.about-title{
	color:#3E8A56;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
	font-size: 44px;
	text-align: center;
}

.about-text{
	color:black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 20px;
	font-weight: bold;
	margin-top: 40px;
	text-align: justify;
	line-height: 40px;
}

@media screen and (max-width:1080px){
.about-contents {
	padding: 0 30px;
	padding-bottom: 80px;
}

.about-bg-text{
	font-size: 120px;
}

.about-title {
	font-size: 36px;
	line-height: 40px;
}

.about-text {
	font-size: 18px;
	margin-top: 40px;
	line-height: 40px;
}
}

@media screen and (max-width:768px){
.about-contents {
	padding: 0 30px;
}

.about-bg-text{
	display: none;
}
}

@media screen and (min-width:416px){
.top-image-sp{
	display: none;
}

.about-title {
	font-size: 28px;
	line-height: 48px;
}

.about-title br{
	display: none;
}
}

@media screen and (max-width:415px){
	.about-contents {
		padding: 20px 30px;
	}


.about-title {
	font-size: 20px;
}

.about-text {
	font-size: 14px;
	margin-top: 40px;
	line-height: 30px;
}
}

/*---------------------------------------------------*/
/*	3. top-interview
/*---------------------------------------------------*/
.top-interview{
	margin-top: 100px;
	display: flex;
	justify-content: space-between;
}

.message-wrapper{
	background: #585656;
	width: 50%;
	position: relative;
}

.message-contents{
	position: absolute;
	top: 50%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
	width: 100%;
}

.section{
	color: white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
	font-size: 40px;
	text-align: center;
}

.message-title{
	color: white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
	font-size: 36px;
	line-height: 60px;
	margin-top: 80px;
	text-align: center;
}

.message-name{
	color: white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 24px;
	margin-top: 40px;
	text-align: center;
}

.message-name span{
	font-size: 28px;
}

.message-image{
	width: 50%;
}

.message-img{
	width: 100%;
	display: block;
}

.button-wrapper{
	text-align: center;
}

.top-interview-more-button{
  display: inline-block;
  text-decoration: none;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-weight: 600;
	color: #585656;
  font-size: 24px;
  margin-top: 80px;
  padding: 28px 100px;
	background: white;
	transition: .4s;
	border-radius: 53px;
}

.top-interview-more-button:hover{
	color: white;
	border: solid 1px white;
	background: none;
}

@media screen and (max-width:1080px){
.section{
	font-size: 32px;
}

.message-title{
	font-size: 28px;
	line-height: 50px;
	margin-top: 40px;
}

.message-name{
	font-size: 20px;
	margin-top: 40px;
}

.message-name span{
	font-size: 24px;
}

.top-interview-more-button {
	font-size: 20px;
	margin-top: 60px;
	padding: 20px 80px;
}
}

@media screen and (max-width:768px){
.top-interview{
	padding: 0 30px;
	display: flex;
	flex-direction:column;
}

.message-image{
	width: 100%;
}

.message-wrapper{
	order:1;
	width: 100%;
	padding: 30px;
}

.message-contents{
	position: initial;
	top: initial;
	left: initial;
	transform: initial;
}
}


@media screen and (max-width:415px){
.top-interview{
	margin-top: 10px;
}
.message-wrapper {
	padding: 20px;
}

.message-title {
	font-size: 18px;
	line-height: 40px;
}

.message-name{
	font-size: 14px;
	margin-top: 40px;
}

.message-name span{
	font-size: 16px;
}

.top-interview-more-button {
	font-size: 18px;
	margin-top: 40px;
	padding: 20px 80px;
}
}

/*---------------------------------------------------*/
/*	4. workers-interview
/*---------------------------------------------------*/
.workers-interview{
	padding: 80px 20px 0;
	position: relative;
}
.card-contents{
	margin-top: 40px;
}
.interview-sub-title{
	color:black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 20px;
	margin-top: 80px;
	line-height: 35px;
}
.interview-bg-image{
	display: none;
}

/* 2022/3に追記部分 */
.three_blocks_wrapper:nth-child(n+2){
	margin-top: 40px;
}

.three_blocks_wrapper > img{
	width: 100%;
	display: block;
}
/* 画像の比率を調整する：object-fitを利用 */
.interview_image{
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #ffffff;
}
.interview_image::before{
	content: "";
	padding-top: 75%; /* 縦横比調節値：現在16:9 */
	display: block;
}
.interview_image > img{
	position: absolute;
	top: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
  font-family: 'object-fit: contain;'
}

.interview-tag {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 168px;
	height: 40px;
	font-size: 14px;
	line-height: 0;
	z-index: 1;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.tag-green{
	background-color: #2EB702;
}
.tag-orange{
	background-color: #FB8D3D;
}
.tag-blue{
	background-color: #4467B8;
}

.interview_link{
	text-decoration: none;
	color: #000000;
}

.block_text_wrapper{
	position: relative;
	padding: 28px 32px;
	background-color: #ffffff;
	box-shadow: 0px 6px 10px rgb(0 0 0 / 16%);
	line-height: 1.3;

	flex: 1;
  min-height: 0%;
}
.video_tag-wrapper{
	position: absolute;
	top: 28px;
	right: 28px;
	text-align: center;
}
.video_tag-text{
	font-size: 8px;
}
.card-time{
	font-size: 14px;
	letter-spacing: 0.1em;
}
.block_text_wrapper h5 {
	margin: 8px 0 0 0;
	font-size: 16px;
	letter-spacing: 0.16em;
}
.block_text_wrapper h4 {
	margin: 16px 0 0 0;
	letter-spacing: 0.2em;
	font-size: 24px;
	font-weight: 600;
}
.en_name{
	font-size: 13px;
	letter-spacing: 0.35em;
	margin-top: 4px;
	font-weight: 600;
}

.top_interview-link-wrapper {
	text-align: right;
	font-size: 24px;
	margin-top: 48px;
}
.top_interview-link{
	color: #000000;
	font-weight: 700;
	padding-bottom: 4px;
	border-bottom: 4px solid #000000;
	text-decoration: none;
}

@media screen and (min-width: 415px){
.card-contents{
	margin-top: 60px;
}
.three_blocks_wrapper{
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.interview-tag{
	font-size: 16px;
}
.block_text_wrapper{
	padding: 28px;
}
}

@media screen and (min-width: 900px){
.workers-interview {
	padding:100px 30px 0px;
}
.blocks_contents{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-left: -24px;
}
.three_blocks_wrapper{
	width: 33.3%;
	display: flex;
	flex-direction: column;
	margin: 0;
}
.interview_link{
	margin-left: 24px;
}
.three_blocks_wrapper:nth-child(n+2){
	margin-top: 0px;
}
.three_blocks_wrapper:nth-child(n+4) {
	margin-top: 48px;
}
}

@media screen and (min-width: 1024px){
.interview-bg-image{
	display: block;
	position: absolute;
	right: 0%;
	top: 32%;
	z-index: -1;
}
.interview-bg-img{
	max-width: 1000px;
}
.card-contents{
	margin-top: 200px;
}
.blocks_contents{
	margin-left: -32px;
}
.three_blocks_wrapper{
	width: 33.3%;
}
.interview_link{
	margin-left: 32px;
}
.top_interview-link-wrapper {
	margin-top: 64px;
	font-size: 28px;
}
}

/*---------------------------------------------------*/
/*	interview_archive
/*---------------------------------------------------*/
.interview_archive{
	padding: 40px 20px 60px;
}
.interview_archive .blocks_contents{
	padding-bottom: 20px;
	margin-top: 60px;
}
.interview_archive_top{
	position: relative;
	height: 230px;
	background-image: url(image/interveiw-archive-top-sp.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.interview_archive_top-title-wrapper{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
	text-align: center;
}
.interview_archive_top-title, .interview_archive_top-text{
	color: #ffffff;
}
.interview_archive_top-title{
	font-size: 36px;
}
.interview_archive_top-text{
	font-size: 14px;
	margin-top: 8px;
}

@media screen and (min-width:769px) {
.interview_archive_top{
	height: 500px;
	background-image: url(image/interveiw-archive-top.jpg);
}
.interview_archive_top-title{
	font-size: 60px;
}
.interview_archive_top-text{
	font-size: 20px;
	margin-top: 16px;
}
.interview_archive{
	padding: 60px 20px 80px;
}
.interview_archive .blocks_contents{
	margin-top: 80px;
}
}

/* タブの切り替え */
#interview_archive-tabs > ul{
	display: flex ;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.interview_archive-tab_item {
  width: calc(50% - 10px);
	height: 40px;
  font-size: 14px;
  transition: all 0.2s ease;
	cursor: pointer;
}
.interview_archive-tab_item:nth-child(n+3) {
	margin-top: 20px;
}
.interview_archive-tab_item > p{
	width: 100%;
	height: 100%;
	display: flex ;
	justify-content:center;
	align-items: center;
}
.tab_item-gray{border: solid 1px #666666;}
.tab_item-green{border: solid 1px #2EB702;}
.tab_item-blue{border: solid 1px #4467B8;}
.tab_item-orange{border: solid 1px #FB8D3D;}
.tab_item:hover {
  opacity: 0.75;
}
/*選択されているタブのスタイルを変える*/
.tab_item-gray.selected {
  background-color: #666666;
  color: #ffffff;
}
.tab_item-green.selected  {
  background-color: #2EB702;
  color: #ffffff;
}
.tab_item-blue.selected  {
  background-color: #4467B8;
  color: #ffffff;
}
.tab_item-orange.selected  {
  background-color: #FB8D3D;
  color: #ffffff;
}

@media screen and (min-width: 810px){
	#interview_archive-tabs > ul{
		justify-content:flex-start;
	}
	.interview_archive-tab_item {
		width: calc(100%/4);
		max-width: 168px;
		font-size: 16px;
	}
	.interview_archive-tab_item:nth-child(n+2) {
		margin-left: 32px;
		margin-top: 0;
	}
}

/*---------------------------------------------------*/
/*	profile
/*---------------------------------------------------*/

/* インタビューの詳細ページのトップ部分 */
.profile-top{
	width: 100%;
	height: 230px;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.profile-top-text{
	color: #ffffff;
	font-weight: 600;
	line-height: 2em;
	-webkit-transform : translate(0%,-50%);
  transform : translate(0%,-50%);
	font-size: 14px;
	position: absolute;
}
.profile-top-text_color-black{
	color: #000000;
}
@media screen and (min-width: 769px){
.profile-top{
	height: 600px;
}
.profile-top-text{
	font-size: 32px;
	line-height: 2em;
}
}

/* インタビューした社員のプロフィール部分 */
.profile{
	position: relative;
	z-index: 2;
	line-height: 1.3;
	max-width: 320px;
	margin: -32px auto 0;
	box-shadow: 0px 6px 10px rgb(0 0 0 / 16%);
}
.profile_name{
	line-height: 1.3;
}
.profile_name_wrapper{
	padding: 24px;
	display: flex;
	justify-content: flex-start;
	border: 3px solid #ffffff;
}
.profile-bg_color-green {
	background-color: #2EB702;
}
.profile-bg_color-blue {
	background-color: #4467B8;
}
.profile-bg_color-orange {
	background-color: #FB8D3D;
}
.profile_name-image{
	width: 80px;
}
.profile_name-text {
	color: #ffffff;
	margin-left: 32px;
}
.profile_name-text h5 {
	margin: 4px 0 0 0;
	font-size: 14px;
	letter-spacing: 0.16em;
}
.profile_name-text h4{
	margin: 12px 0 0 0;
	letter-spacing: 0.2em;
	font-size: 16px;
	font-weight: 600;
}
.profile_text{
	background-color: #ffffff;
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 768px){
.profile_name-text .card-time{
	font-size: 12px;
}
.profile_name-text .en_name{
	font-size: 10px;
}
}
@media screen and (min-width: 500px){
	.profile{
		max-width: 480px;
	}
}
@media screen and (min-width: 980px){
.profile{
	margin: -100px auto 0;
	display: flex;
	max-width: 1000px;
}
.profile_name{
	width: 40%;
}
.profile_text_wrapper{
	width: 60%;
}
.profile_name-image{
	width: 120px;
}
.profile_name-text h5 {
	margin: 8px 0 0 0;
	font-size: 16px;
}
.profile_name-text h4{
	margin: 16px 0 0 0;
	font-size: 24px;
}
.profile_text{
	font-size: 18px;
	padding: 24px;
	border: 3px solid #ffffff;
}
}

/* インタビュー詳細のページのパーツ: セクション間の余白やタイトル */
.profile_section{
	padding: 60px 20px 0;
}
.profile_container{
	max-width: 1000px;
	margin: 0 auto;
}
.profile_section_contents{
	margin-top: 28px;
}
.profile_section_title{
	position: relative;
	margin: 0;
	padding-left: 50px;
	font-size: 24px;
}
.profile_section_en_title{
	font-size: 32px;
}
.profile_section_title::before{
	background: #000000;
	position: absolute;
	top: calc(50% - 1px);
  left: 0;
	content: "";
  height: 2px;
	width: 32px;
}
@media screen and (min-width: 769px){
	.profile_section{
		padding: 80px 20px 0;
	}
	.profile_section_contents{
		margin-top: 40px;
	}
	.profile_section_title{
		padding-left: 80px;
		font-size: 32px;
	}
	.profile_section_en_title{
		font-size: 40px;
	}
	.profile_section_title::before{
		width: 60px;
	}
}

.profile_video {
	position: relative;
	width: 100%;/*横幅いっぱいにwidthを指定*/
	height:0px;/*高さはpaddingで指定するため0*/
	padding-top: 56.25%;/*高さを指定（padding-bottomでも同様)*/
}
/* インタビュー詳細の動画 */
.profile_video iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.profile_video div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #cccccc;
}

.profile_video div > p{
	font-size: 24px;
	color: #ffffff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* QAのセクション */
.profile_qa:nth-child(n+2){
	margin-top: 28px;
}
.profile_q_wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.profile_a_wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 12px;
}
.profile_q, .profile_a{
	font-size: 32px;
}
.profile_q_text, .profile_a_text {
	margin-left: 20px;
	line-height: 2;
}
.profile_q_text{
	font-size: 18px;
	font-weight: 600;
}
.profile_a_text{
	font-size: 14px;
}
.profile_a{
	color: #474E63;
}
.q_color-green{
	color: #2EB702;
}
.q_color-blue{
	color: #4467B7;
}
.q_color-orange{
	color: #FB8D3D;
}
@media screen and (min-width: 769px){
.profile_qa:nth-child(n+2){
	margin-top: 36px;
}
.profile_q_wrapper{
	align-items: center;
}
.profile_q, .profile_a{
	font-size: 40px;
}
.profile_q_text, .profile_a_text {
	margin-left: 32px;
}
.profile_q_text{
	font-size: 24px;
}
.profile_a_text{
	font-size: 16px;
}

.profile_video div > p{
	font-size: 32px;
}
}

/* 1日のスケジュールセクション */
.schedule_image{
	max-width: 480px;
	width: 100%;
}
.schedule_text_wrapper{
	margin-top: 28px;
	padding-left: 10px;
}
.schedule_time{
	position: relative;
	font-weight: 600;
	border-left: 1px solid #707070;
	font-size: 18px;
	padding-left: 28px;
}
.schedule_time:nth-child(n+2){
	padding-top: 28px;
}
.schedule_time::before {
	content: "";
	position: absolute;
	top: 0;
	left: -10px;
	width: 20px;
	height: 20px;
	background-color: #707070;
	border-radius: 10px;
}
.schedule_time:nth-child(n+2)::before{
	top: 28px;
}
.schedule_text{
	line-height: 2;
	font-size: 14px;
	border-left: 1px solid #707070;
	padding-left: 28px;
	padding-top: 10px;
}
.schedule_text:nth-last-child(1), .schedule_time:nth-last-child(1){
	border-left: none;
}
@media screen and (min-width: 769px){
	.schedule_wrapper{
		display: flex;
		justify-content: space-between;
	}
	.schedule_text_wrapper{
		margin-top: 0px;
		width: 50%;
		margin-left: 40px;
	}
	.schedule_image{
		max-width: 400px;
	}
	.schedule_time{
		font-size: 20px;
		padding-left: 32px;
	}
	.schedule_time:nth-child(n+2){
		padding-top: 28px;
	}
	.schedule_time::before {
		left: -10px;
	}
	.schedule_time:nth-child(n+2)::before{
		top: 28px;
	}
	.schedule_text{
		padding-left: 32px;
		font-size: 16px;
	}
}

/* 休日の過ごし方 */
.holiday_section{
	padding: 40px 20px 40px;
	margin-top: 40px;
	background-color: #EEEEEE;
}
.holiday_image_wrapper{
	max-width: 480px;
}
.holiday_image{
	width: 100%;
}
.holiday_text{
	font-weight: 600;
	line-height: 2;
	margin: 24px 0 0 0;
}
@media screen and (min-width: 769px){
	.holiday_section{
		background-color: #ffffff;
	}
	.profile_holiday_container{
		padding: 60px;
		background-color: #EEEEEE;
	}
	.holiday_wrapper{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.holiday_image_wrapper{
		max-width: 400px;
	}
	.holiday_text{
		font-size: 20px;
		margin: -32px 0 0 28px;
		width: 50%;
	}
}

/* インタビューページのフッター */
.recruit-green, .recruit-blue, .recruit-orange  {
	margin-top: 100px;
  background-position: center center;
  background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 30px;
	position: relative;
	z-index: 1;
}
.recruit-green .container, .recruit-blue .container, .recruit-orange .container{
	position: relative;
	z-index: 3;
}
.recruit-green::before, .recruit-blue::before, .recruit-orange::before{
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
}
.recruit-green  {
	background-image: url(image/footer-image-green.jpg);
}
.recruit-green::before {
	background-color: rgba(181, 211, 167, 0.7);
}
.recruit-blue{
	background-image: url(image/footer-image-blue.jpg);
}
.recruit-blue::before {
	background-color: rgba(68, 103, 184, 0.4);
}
.recruit-orange{
	background-image: url(image/footer-image-orange.jpg);
}
.recruit-orange::before {
	background-color: rgba(239, 204, 170, 0.7);
}

/*---------------------------------------------------*/
/*	6. culture
/*---------------------------------------------------*/
.culture{
	padding-top: 150px;
}

.culture-contents{
	background-color: rgba(88, 86, 86, 0.1);
	margin-top: 100px;
	padding: 60px 0px;
	text-align: center;
}

.culture-wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.culture-content{
	width: 50%;
}

.culture-content-title{
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: bold;
	font-size: 32px;
}

.culture-content-text{
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 24px;
	line-height: 40px;
	margin-top: 40px;
}

.culture-number-wrapper{
	background-color: white;
	padding: 48px;
	box-shadow: 5px 10px 20px rgba(0,0,0,0.25);
}

.culture-number-title{
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 24px;
	line-height: 40px;
}

.culture-number-text{
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 116px;
	margin-top: 40px;
}

.culture-number-text span{
	font-size: 68px;
}


@media screen and (max-width:1080px){
.culture {
	padding-top: 100px;
}

.culture-contents {
	margin-top: 60px;
	padding: 60px 0px;
}

.culture-content-title {
	font-size: 28px;
}

.culture-number-text {
	font-size: 80px;
}

.culture-number-text span {
	font-size: 48px;
}
}

@media screen and (max-width:768px){
.culture-wrapper {
	display: block;
}

.culture-content{
	width: 80%;
	margin: 40px auto 0;
}

.culture-content-text {
	font-size: 18px;
	line-height: 32px;
	margin-top: 20px;
}
}

@media screen and (max-width:415px){
.culture{
	padding: 80px 30px 0;
}

.culture-contents {
	margin-top: 60px;
	padding: 40px 0px;
}

.culture-content-text {
	font-size: 14px;
	line-height: 32px;
	margin-top: 20px;
}

.culture-number-title {
	font-size: 16px;
}

.culture-number-wrapper {
	padding: 32px;
}

.culture-number-text {
	font-size: 60px;
}

.culture-number-text span {
	font-size: 28px;
}
}

/*---------------------------------------------------*/
/*	7. number
/*---------------------------------------------------*/
.number{
	padding-top: 80px;
}

.number-color-image{
	text-align: right;
}

.number-color-img{
	width: 300px;
	height: 34px;
}

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

.number__contents{
	width: 28%;
	margin-top: 80px;
}

.number__title{
	text-align: center;
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 24px;
}

.number-image{
	margin-top: 32px;
	text-align: center;
}

.number__strength{
	text-align: center;
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 20px;
	letter-spacing: 0.2em;
	margin-top: 32px;
}

.number__time{
	text-align: center;
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 16px;
	margin-top: 20px;
}

.number__text{
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 20px;
	line-height: 32px;
	margin-top: 32px;
}

.number__text span{
	font-size: 16px;
}

.number__strength span{
	font-size: 48px;
}

.career-title{
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 32px;
	margin-top: 100px;
	font-weight: bold;
}

.career-detail{
	color: black;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 16px;
}

.career-image{
	width: 100%;
	margin-top: 100px;
}

.career-img{
	width: 100%;
}

@media screen and (max-width:1080px){
.number-color-image{
	padding-right: 30px;
}

.number{
	padding: 0 30px;
}
}

@media screen and (max-width:767px){
.number__contents{
	width: 48%;
}
}

@media screen and (min-width:416px){
.career-image-sp{
	display: none;
}
}

@media screen and (max-width:415px){
.number{
	padding-top: 60px;
}

.number-wrapper{
	display: block;
}

.number__contents{
	width: 100%;
	margin-top: 40px;
}

.number-image{
	width: 100%;
}

.number-img{
	width: 20%;
}

.number__strength__sp{
	display: none;
}

.number__title{
	font-size: 20px;
	line-height: 24px;
}

.number-image{
	margin-top: 24px;
}

.number__strength{
	font-size: 18px;
	letter-spacing: 0.1em;
	margin-top: 24px;
}

.number__time{
	font-size: 14px;
	margin-top: 16px;
}

.number__text{
	font-size: 16px;
	line-height: 24px;
	margin-top: 24px;
}


.career-image{
	display: none;
}
.career-detail{
	display: none;
}

.career-image-sp{
	width: 100%;
	margin-top: 100px;
}

.career-img-sp{
	width: 100%;
}

.career-title {
	font-size: 24px;
	margin-top: 80px;
	line-height: 30px;
}

.number-color-image{
	text-align: left;
	padding: 0;
}
.number-color-img {
	width: 250px;
	height: 29px;
}
}

/*---------------------------------------------------*/
/*	8. recruit
/*---------------------------------------------------*/
.recruit{
	margin-top: 100px;
	background-image: url(image/recruit-bg-image.jpg);
  background-position: center center;
  background-repeat: no-repeat;
	padding: 100px 30px;
}

.recruit-title{
	color: white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	position: relative;
}

.recruit-title::before{
	content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 200px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: white;
}

.recruit-text{
	color: white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 32px;
	line-height: 60px;
	font-weight: bold;
	text-align: center;
	margin-top: 100px;
}

.recruit-button-wrapper{
	margin-top: 100px;
	display: flex;
	justify-content: space-around;
}

.recruit-button-text{
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 40px;
}

.recruit-button{
	text-decoration: none;
	color: white;
	display: inline-block;
	padding: 44px 100px;
	background-color: #027D44;
	font-size: 20px;
	font-weight: bold;
	transition: .4s;
  border-bottom: solid 4px #729562;
  border-radius: 3px;
}

.recruit-button:hover{
	color: white;
	background-color: #9BD38A;
}

@media screen and (max-width:1080px){
.recruit-title {
	font-size: 32px;
}

.recruit-title::before{
  width: 150px;
}

.recruit-text{
	color: white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 24px;
	line-height: 50px;
	margin-top: 80px;
}

.recruit-button-wrapper{
	margin-top: 80px;
}

.recruit-button-text{
	font-size: 20px;
	font-weight: bold;
}

.recruit-button{
	padding: 44px 80px;
}
}

@media screen and (max-width:767px){
.recruit-button-wrapper{
	display: block;
	text-align: center;
}

.recruit-button-text{
	margin: 60px auto;
}

.recruit {
	padding: 80px 30px;
}
}


@media screen and (max-width:415px){
.recruit-title {
	font-size: 28px;
}

.recruit-title::before{
	width: 120px;
}

.recruit-text{
	font-size: 20px;
	line-height: 40px;
	margin-top: 60px;
}

.recruit-text br{
	display: none;
}

.recruit-button-wrapper{
	margin-top: 60px;
}

.recruit-button-text{
	font-size: 24px;
}

.recruit-button{
	padding: 20px 60px;
}
}



/*---------------------------------------------------*/
/*	9. footer
/*---------------------------------------------------*/
footer{
	padding:40px 30px 60px;
	position: relative;
	bottom: 0;
	width: 100%;
	background: #585656
}

.footer-content{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.footer-left-wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.footer-left-main-text-wrapper{
	margin-left: 15px;
}

.footer-left-main-text{
	color:white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 32px;
	font-weight: bold;
}

.footer-left-information{
	color:white;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 20px;
	margin-top: 20px;
	line-height: 40px;
}

.company-site-text{
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 20px;
	font-weight: bold;
	position: relative;
}

.footer-right{
	display: block;
}

.company-site-link{
	color:white;
	text-decoration: none;
}

.company-icon{
	position: absolute;
	left: -17px;
	top: -3px;
	display: inline-block;
}

@media screen and (max-width:1080px){

}

@media screen and (max-width:768px){
.footer-content{
	display: block;
}

.company-site-text{
	margin-top: 40px;

}
}

@media screen and (max-width:415px){
footer {
	padding: 30px 20px 40px;
}

.footer-left-main-text {
	font-size: 24px;
}

.footer-left-information {
	font-size: 14px;
	line-height: 30px;
}
}

/*---------------------------------------------------*/
/*	2.top-interview-page
/*---------------------------------------------------*/

.sub-top-image{
	width: 100%;
}

.sub-top-img{
	width: 100%;
	display: block;

}

/*nh追加*/
.word-text-wrapper{
	margin-top:40px;
}

.word-image{
	margin-top:40px;
}
/*nh追加*/



.word-contents{
	margin-top: 80px;
	width: 100%
}

.word-image{
	width: 100%;
	margin-top:40px;/*nh追加*/
}

.word-text-wrapper{
	margin-top:40px;/*nh追加*/
}


.word-img{
	width: 100%;
}


.word-text{
	color: #000;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 20px;
	line-height: 32px;
	/*margin-top: 15px; nh修正*/
}

.word-last{
	margin-top: 30px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

@media screen and (max-width:1080px){

}

@media screen and (max-width:768px){
.word-list{
	display: block;
}

.word-image{
	width: 80%;
	margin: 0 auto;
	margin-top:40px;/*nh追加*/
}

.word-wrapper{ /*これいらなくない？*/
	width: 80%;
	margin: 30px  auto 0px;
}

.word-text-wrapper{
	margin-top:40px;/*nh追加*/
	}

}

@media screen and (max-width:415px){
.word-image{
	width: 100%;
	margin-top:40px;/*nh追加*/
}

.word-question{
	font-size: 20px;
}


.word-text-wrapper{
	margin-top:40px;/*nh追加*/
}

.word-text{
	font-size: 16px;
}

.word-last{
	display: block;
	text-align: center;
}
}

/*---------------------------------------------------*/
/*	2.worker-interview-page(demo)
/*---------------------------------------------------*/
.top-visual {
	position: relative;
	z-index: 0;
	overflow: hidden;
	min-height: 480px;
	max-height: 720px;
	height: calc(20vh);
	background-size: cover;
	background-repeat: no-repeat;
}
.interview1_image{
	background-image: url(image/worker-watanabe.jpg);
	background-position: 75% 50%;
}
.interview_top_title{
	position: absolute;
	left: 10vw;
	bottom: 10vw;
	z-index: 101;
	color: #ffffff;
	letter-spacing: 0.1em;
	font-size: 1rem;
}
@media screen and (min-width: 769px){
	.top-visual {
		height: calc(100vh - 180px);
	}
	.interview_top_title {
		font-size: 1.728rem;
	}
}

.question{
	margin-top: 40px;
	text-align: center;
	width: 100%;
}

.q-image{
	width: 100%;
	text-align: center;
}

.q-img{
	width: 80%;
	text-align: center;

}

@media screen and (min-width:416px){
	.q-image-sp{
		display: none;
	}
	}

	@media screen and (max-width:415px){

	.q-image{
		width: 100%;
		display: none;
	}

	.q-img-sp{
		width: 80%;
		margin-bottom: 60px;
	}
	}

.day{
	margin-top: 20px;
	padding-left: 40px;
	text-align: left;
	width: 100%;
}

.day-image{
	width: 60%;
}


.day-img{
	width: 60%;
}

@media screen and (min-width:416px){
	.day-image{
		margin: 30px auto 0;
	}
	}

	@media screen and (max-width:415px){

	.day-image{
		width: 100%;
		margin: 30px auto 0;
	}
	}

.schedule{
	margin-top: 20px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
}
.sch-image{
	width: 47%;
}


.sch-img{
	width:100%;
}

@media screen and (max-width:767px){
.schedule{
	display: block;
	margin: 0 auto;
}
.sch-image{
	width: 80%;
	margin: 0 auto;
}
	}


@media screen and (max-width:415px){
.schedule{
	display: block;
	margin: 0 auto;
}
	.sch-image{
		width: 80%;
		margin: 0 auto;

}
}

.off{
	margin-top: 40px;
	text-align: center;
	justify-content: center;
}
.off-image{
	width: 100%;
	text-align: center;
	justify-content: center;
}


.off-img{
	width: 20%;
	text-align: center;
}

.private{
	margin-top: 40px;
	text-align: center;
	width: 100%;
}

.private-image{
	width: 100%;
	text-align: center;
}


.private-img{
	width: 70%;
	text-align: center;
}

@media screen and (max-width:767px){
	.private{
		margin: 20px auto;
	}
	.private-image{
		width: 100%;
		margin: 20px auto;
	}
	}


@media screen and (max-width:415px){
.private{
	margin: 20px auto;
}
	.private-image{
		width: 100%;
		margin: 20px auto;

}
}

/*---------------------------------------------------*/
/*  8.new-grad
/*---------------------------------------------------*/
.new-grad-title{
  color:#585656;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-top:100px ;
}
.new-grad-title::before{
  content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 200px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #585656;
}
.new-grad-text{
  color: white;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-size: 100%;
  line-height: 60px;
  font-weight: bold;
  text-align: center;
  margin-top: 100px;
}
.new-grad-button-wrapper{
  margin-top: 200px;
  margin-bottom: 200px;
  display: flex;
	justify-content: space-around;
}



.new-grad-button-text{
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-size: 200%;
  text-align: center;
}
.new-grad-button{
  display: inline-block;
  text-decoration: none;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-weight: 600;
  color: white;
  font-size: 20px;
  margin-top: 80px;
  padding: 44px 80px;
  background: #027D44;
  transition: .4s;
  border-bottom: solid 4px #729562;
  border-radius: 3px;
  vertical-align:middle;
	text-align: center;
}
.new-grad-button-nolink{
  background: #7a7a7a;
  border-bottom: solid 4px #646464;
}
.new-grad-button:active{
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
  border-bottom: none;
}
@media screen and (max-width:1080px){
.new-grad-title {
  font-size: 16px;
}
.new-grad-title::before{
  width: 150px;
}
.new-grad-text{
  color: white;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-size: 16px;
  line-height: 50px;
  margin-top: 80px;
}
.new-grad-button-wrapper{
  margin-top: 80px;
}
.new-grad-button-text{
  font-size: 16px;
}
.new-grad-button{
  padding: 44px 80px;
}
}
@media screen and (max-width:767px){
.new-grad-button-wrapper{
  display: block;
  text-align: center;
}
.new-grad-button-text{
  margin: 60px auto;
}
.new-grad {
  padding: 80px 30px;
}
}
@media screen and (max-width:415px){
.new-grad-title {
  font-size: 16px;
}
.new-grad-title::before{
  width: 120px;
}
.new-grad-text{
  font-size: 16px;
  line-height: 40px;
}
.new-grad-text br{
  display: none;
}
.new-grad-button-wrapper{
  margin-top: 40px;
}
.new-grad-button-text{
  font-size: 14px;
}
.new-grad-button{
  padding: 20px 20px;
}
}
/*---------------------------------------------------*/
/*  /8.new-grad
/*---------------------------------------------------*/
.more-button:hover{
	color: #027D44;
	border: solid 1px #027D44;
	background: none;
	background-color: white;
}
.new_grad-green{
	background-color: #2EB702;
	color: white;
	border: solid 1px #2EB702;
	width: 100%;
}
.new_grad-green:hover{
	color: #2EB702;
	border: solid 1px #2EB702;
	background: none;
	background-color: white;
}
.new_grad-blue{
	background-color: #4467B8;
	color: white;
	border: solid 1px#4467B8;
	width: 100%;
}
.new_grad-blue:hover{
	color: #4467B8;
	border: solid 1px #4467B8;
	background: none;
	background-color: white;
}
.new_grad-orange{
	background: #FB8D3D;
	color: white;
	border: solid 1px #FB8D3D;
	width: 100%;
}
.new_grad-orange:hover{
	color: #FB8D3D;
	border: solid 1px #FB8D3D;
	background-color: white;
}

/*---------------------------------------------------*/
/*	9.career
/*---------------------------------------------------*/
.career-title{
	color:#585656;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	position: relative;
	margin-top:100px ;
}

.career-title::before{
	content: '';
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 280px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #585656;
}

/*---------------------------------------------------*/
/*	18. tab
/*---------------------------------------------------*/

/*タブ切り替え全体のスタイル*/


/*タブのスタイル*/
.tab_item {
	width: calc(100%/5);
	line-height: 50px;
	border-bottom: 3px solid #2EB702;
	border-right: 1px solid #a5a5a5;
  background-color: #d9d9d9;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
	cursor: pointer;
}

.tab_item:hover{
	filter: alpha(opacity＝70);
 -moz-opacity: 0.7;
 opacity: 0.7;
}

@media screen and (max-width:767px){
	.tab_item{
		font-size: 16px;
		width: calc(100%/2);
	}
}

@media screen and (max-width:415px){
	.tab_item {
		font-size: 14px;
		width: calc(100%/2);
	}
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#career1:checked ~ #career1_content,
#career2:checked ~ #career2_content,
#career3:checked ~ #career3_content,
#career4:checked ~ #career4_content,
#career5:checked ~ #career5_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #2EB702;
  color: #fff;
}


.entry-more-button-text{
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
}

.entry-button-wrapper{
	text-align: center;
}



.entry-more-button{
  display: inline-block;
  text-decoration: none;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-weight: 600;
	color: white;
  font-size: 16px;
	margin-top: 100px;
	margin-bottom: 60px;
  padding: 12px 50px;
	background: #027D44;
	transition: .4s;
	border-radius: 40px;
	border: solid 1px #027D44;
}


@media screen and (max-width:415px){
.entry-more-button {
	font-size: 20px;
}
}

/*---------------------------------------------------*/
/*	/18. tab
/*---------------------------------------------------*/


/*---------------------------------------------------*/
/*	22. contact
/*---------------------------------------------------*/


.career-sub-title-wrapper{
	width: 100%;
}


.career-sub-title{
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	text-align: left;
	margin-top: 100px;
	margin-bottom: 60px;
	line-height: 30px;
}

.contact-container{
	padding: 30px;
	max-width: 800px;
	margin: 0px auto;
}

.career-sub-title-attention{
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	text-align: center;
	margin-top: 100px;
	line-height: 30px;
}

@media screen and (max-width: 415px){
	.career-sub-title-wrapper{
    margin: 60px auto 0;
	 padding: 0  20px;
	 width: 100%;
}
}

select{
  background:#d7d7d7;
}
option{
  background:#d7d7d7;
}


.checkbox-input{
  display: none;
}
.checkbox-parts{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
}
.checkbox-parts::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 4px;
}
.checkbox-input:checked + .checkbox-parts{
  color:#2EB702;
}
.checkbox-input:checked + .checkbox-parts::after{
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #2EB702;
  border-right: 3px solid #2EB702;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}


input[type="text"],
textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  transition: 0.8s;
  border-radius: 0;
}

input[type="text"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
  display: inline-block;
  width: 80%;
  height: 200px;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.privacypolicy-box {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-size: 14px;
  border: solid 1px #000000;
}
.privacypolicy-box p {
  margin: auto;
  line-height: 30px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.privacypolicy-check{
  text-align: center;
}

@media screen and (max-width:415px){
input[type=“text”], textarea {
	width: 100%;
}
}

@media screen and (min-width:415px){
	input[type=“text”], textarea {
		width: 100%;
	}
	}

	input[type="email"],
	textarea {
		background: #f8f8f8;
		display: block;
		font-size: 16px;
		padding: 12px 15px;
		width: 100%;
		transition: 0.8s;
		border-radius: 0;
	}

	input[type="email"]:focus,
	textarea:focus {
		background: #e9f5fb;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	}

	textarea[name="content"] {
		display: inline-block;
		width: 80%;
		height: 200px;
	}

	input::placeholder,
	textarea::placeholder {
		color: #ccc;
	}

	::-webkit-input-placeholder {
		color: #ccc;
		opacity: 1;
	}

	::-moz-placeholder {
		color: #ccc;
		opacity: 1;
	}

	:-ms-input-placeholder {
		color: #ccc;
		opacity: 1;
	}






	@media screen and (max-width:415px){
	input[type=“text”], textarea {
		width: 100%;
	}
	}

	@media screen and (min-width:415px){
		input[type=“text”], textarea {
			width: 100%;
		}
		}


.career-contact-contents{
	margin-top: 60px;
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 16px;
}




.career-contact-contents-end{
	font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-size: 16px;
}







.privacypolicy-box {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-size: 14px;
  border: solid 1px #000000;
}
.privacypolicy-box p {
  margin: auto;
  line-height: 30px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.privacypolicy-check{
  text-align: center;
}

.btn{
  display: inline-block;
  text-decoration: none;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
	margin-top: 40px;
	margin-bottom: 40px;
	transition: .4s;
	border-radius: 40px;
	border-color: #2EB702;
	background-color: #2EB702;
}

.btn-primary:hover{
	color: #fff;
	border-color: #2EB702;
	background-color: #2EB702;
}

.btn-primary:focus{
	color: #fff;
	border-color: #2EB702;
	background-color: #2EB702;
}



.btn-primary.active.focus, .btn-primary:active:hover, .open>.btn-primary.dropdown-toggle.focus, .open>.btn-primary.dropdown-toggle:hover {
	color: #fff;
	border-color: #2EB702;
	background-color: #2EB702;
}

.btn-secondary{
	color: #fff;
	border-color: #2EB702;
	background-color: #2EB702;
}



.submit-wrapper{
	justify-content: space-between;
}


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


.data-formrun-show-if-confirm{
	margin: 0 auto;
	color: red;
}

.error{
  color: #cc0000;
  font-size: 14px;
  margin-top: 5px;
}

.check-test{
	display: none;
  }

.check-test + span {
cursor: pointer;
display: inline-block;
margin: 0 0.2em 0;
padding: 0 0 0 30px;
position: relative;
font-size: 95%;
}

.check-test + span::before {
position: absolute;
-webkit-transform: translateY(-50%);
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.4);
border-radius: 2px;
content: "";
display: block;
left: -1px;
top: 61%;
transform: translateY(-50%);
height: 17px;
width: 17px;
}

.check-test + span::after {
-webkit-transform: translateY(-50%) rotate(-45deg);
border-bottom: 3px solid #595959;
border-left: 3px solid #595959;
content: "";
display: block;
left: -1px;
margin-top: -0.2em;
opacity: 0;
position: absolute;
top: 61%;
transform: translateY(-50%) rotate(-45deg);
transition: all 0.3s ease 0s;
height: 8px;
width: 17px;
}

.check-test:checked + span::after {
opacity: 1;
}

/*---------------------------------------------------*/
/*	/22. contact
/*---------------------------------------------------*/

/*---------------------------------------------------*/
/*	16. company-info
/*---------------------------------------------------*/
.company-info{
  margin-top: 100px;
}

.company-info-wrapper{
  display: flex;
  justify-content: space-between;
}

.company-info-title{
  color: #282222;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-size: 20px;
  border-top: solid 3px #282222;
	padding-top: 20px;
	text-align: center;
	line-height: 50px;
}

.company-info-content{
  display: flex;
  justify-content: left;
}

.company-info-contents{
  width: 75%;
}

.company-info-content{
  display: flex;
  justify-content: left;
  align-items: flex-start;
  border-top: 0.5px solid #282222;
  padding: 24px 10px;
}

.company-info-tag{
  width: 20%;
  color: #282222;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 35px;
}

.company-info-text{
  color: #282222;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
  font-size: 20px;
	line-height: 35px;
	width: 100%;
}

@media screen and (max-width: 767px){
.company-info-wrapper{
  padding: 0px 30px;
  display: block;
}

.company-info-title{
  font-size: 24px;
  border-bottom: solid 3px #282222;
  border-top: 0px;
  padding-bottom: 20px;
  padding-top: 20px;
	display: block;
	text-align: center;
	line-height: 50px;
}



.company-info-contents{
  margin: 50px auto;
}

.company-info-content:nth-child(1){
  border-top: none;
}

.company-info-content{
  display: block;
}

.company-info-tag{
  width: initial;
  line-height: initial;
}

.company-info-text{
  font-size: 18px;
  line-height: 35px;
  margin-top: 20px;
}
}

@media screen and (max-width: 415px){
.company-info {
  margin-top: 60px;
}

.company-info-contents {
  margin: 30px auto;
  width: 100%;
}

.company-info-title {
  font-size: 24px;
}

.company-info-tag{
  font-size: 16px;
	font-weight: bold;
}

.company-info-text{
  font-size: 14px;
  line-height: 30px;
	margin-top: 10px;
}
}

/*---------------------------------------------------*/
/*	/16. company-info
/*---------------------------------------------------*/

.copyright{
	color: white;
	font-size: 14px;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: 300;
	text-align: center;
	margin-top: 60px;
}

@media screen and (max-width: 1089px) {


}

@media screen and (min-width:767px){
.copyright2{
	display: none;
}
}

@media screen and (max-width:768px){

.copyright{
	display: none;
}


.copyright2{
	color: white;
	font-size: 14px;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: 300;
	text-align: center;
	margin: 60px 0px 30px;
}
}

@media screen and (max-width:415px){


.copyright{
	display: none;
}


.copyright2{
	color: white;
	font-size: 14px;
  font-family: 'DIN Alternate','Ropa Sans', sans-serif;
	font-weight: 300;
	text-align: center;
	margin: 60px 0px 30px;
}
}



@media screen and (max-width:415px){


	.copyright{
		display: none;
	}
	
	
	.copyright2{
		color: white;
		font-size: 14px;
		font-family: 'DIN Alternate','Ropa Sans', sans-serif;
		font-weight: 300;
		text-align: center;
		margin: 60px 0px 30px;
	}
	}
	
