@charset "utf-8";
/* CSS Document */
/******************************************************************
Theme Name: kaiei
Autor: LeafLink Inc
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ul,
ol,
dl{
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
/* Global WebFont reset ---------------------------- */
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: normal;
  src: local('YuGothic-Medium'), local('Yu Gothic Medium'), local('YuGothic-Regular');
}
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: bold;
  src: local('YuGothic-Bold'), local('Yu Gothic');
}
@font-face {
  font-family: 'Source Code Pro', monospace;
}
/* フェードイン ---------------------------- */
.element {
  /* 最初は非表示  opacityだけだと透過はできるがリンクの判定が残ったりするのでvisibilityも入れる*/
  transform: translateY(100px);  /*ちょっと下に配置*/
  opacity: 0; /*透明*/
  visibility: hidden; /*要素分の領域は確保されたまま非表示*/	
  transition: transform 1s, opacity 1s;  /*アニメーション1sかけて下から上に・透明から不透明に*/	
}
.element2 {
  /* 最初は非表示  opacityだけだと透過はできるがリンクの判定が残ったりするのでvisibilityも入れる*/
  transform: translateX(-300px);  /*ちょっと左に配置*/
  opacity: 0; /*透明*/
  visibility: hidden; /*要素分の領域は確保されたまま非表示*/
  transition: transform 1s, opacity 1s;  /*アニメーション1sかけて下から上に・透明から不透明に*/
}
.element3 {
  /* 最初は非表示  opacityだけだと透過はできるがリンクの判定が残ったりするのでvisibilityも入れる*/
  transform: translateX(300px);  /*ちょっと左に配置*/
  opacity: 0; /*透明*/
  visibility: hidden; /*要素分の領域は確保されたまま非表示*/
  transition: transform 1s, opacity 1s;  /*アニメーション1sかけて下から上に・透明から不透明に*/
}	
/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0); /*元の配置になる*/
  opacity: 1; /*不透明*/
  visibility: visible; /*表示*/
}
@media screen and (max-width: 1000px) {
/* フェードイン 表示させたまま---------------------------- */
.element,.element2,.element3 {
	opacity: 1; /*透明なし*/
	visibility: visible; /*表示*/
	transform: none;
}}
/* Global TAG styles---------------------------- */
* {
  margin: 0;
  padding: 0;
}
a {
	text-decoration: none;
	color: #333;
	overflow: visible;
	-moz-transition-property: all;
	-moz-transition-duration: 0.3s;
	-moz-transition-timing-function: ease-in;
	-webkit-transition-property: all;
	-webkit-transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-in;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-in;
}
/*PCのみホバー*/
@media (hover: hover) and (pointer: fine) {
a:hover {
    color: #FF0000;
}
.hop:hover img {/*画像上がる*/
  transform: translateY(-8px);
  transition-duration: 0.2s;
  opacity: 1;
}
.scale-s:hover {/*要素縮小*/
	transform: scale(0.95);
	transition-duration: 0.2s;
	opacity: 1;
}
.scale-l:hover {/*要素拡大*/
	transform: scale(1.2);
	transition-duration: 0.3s;
	opacity: 1;
}}
.clear {/*ポインターイベント解除*/
	pointer-events: none;
}
body {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  font-family: 'MyYuGothicM', 'Yu Gothic', sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.05em;
  background: #fff;
}
strong {
  font-weight: bold;
}
img {
  max-width: 100%;
  height: auto;
}
.kaigyo {
	word-break: auto-phrase;
}
.line_breaks {/*改行*/
	display: inline-block;
}
/* Grobal Layout styles------------------------------ */
#main .wrap-60 {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;	
}
#main .wrap-85 {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
#main .wrap-1280 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
#main .wrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;	
}
/*-----------header nav-recruit------------*/
header.nav-recruit {
  width: 100%;
  height: 78px;
  position: fixed;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 3px 9px 0 rgba(0,0,0,0.1);
}
header.nav-recruit > div {
  max-width: 100%;
  position: relative;
}
/*-----------navi recruit------------*/
.nav-recruit .logo {
	width: 350px;
	margin: 15px 20px 0 20px;
	box-sizing: border-box;
}
.nav-recruit .logo > div {
	float: right;
	margin-top: -10px;
}
.nav-recruit nav {
  position: absolute;
  top: 20px;
  right: 25px;
  box-sizing: border-box;
}
.nav-recruit nav li {
  display: inline-block;
  *display: inline; 
  letter-spacing: 0.1em;
}
.nav-recruit nav li a:hover {
    color: #2589d0;
}
.nav-recruit nav li a {
	color: #333333;
	font-weight: bold;
	margin-left: 11px;
	margin-right: 11px;
	line-height: 1.2;
	display: inline-block;
  *display: inline;
	position: relative;
}
.nav-recruit nav li a:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: -3px;
  right: 0;
  width: 96%;
  margin: 0 auto;
  height: 1px;
  background: #2589d0;
}
.nav-recruit nav li a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: -3px;
  right: 0;
  width: 96%;
  margin: 0 auto;
  height: 1px;
  background: #fff;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}
.nav-recruit nav li a:hover {
  text-decoration: none;
}
.nav-recruit nav li a:hover:after {
  width: 0;
}
/*プルダウンサブメニュー*/
li.menu__single {
    position: relative;
}
li.menu__single dl.menu__second-level {
	visibility: hidden;
	opacity: 0;
	background: #ffffff;
	position: absolute;
	top: 30px;
	width: 175%;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
li.menu__single .menu__second-level dt a {
	margin: 10px;
}
li.menu__single:hover dl.menu__second-level {
    visibility: visible;/*要素を表示する*/
    opacity: 1;
}
.head--menu {
  display: none;
}
.head--menu__close {
  display: none;
}
/*-----------recruit-TOP------------*/
#main {
	position: relative;
	overflow: hidden;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333333;
    margin: 0 auto;
    padding-top: 78px;
    clear: both;
}
.sectionbg {
  padding-top: 110px;
  padding-bottom: 100px;
  position: relative;
}
.sectionbg2 {
  padding-top: 7%;
  padding-bottom: 100px;
  position: relative;
}
.shadow {
	filter: drop-shadow(5px 5px 3px #929292);
}
.title-recruit02 {
	font-size: 5.2vw;
	font-weight: bold;
	color: #388373;
	border-bottom: solid 5px #333333;
	line-height: 0.8em;
	margin: 0 0 5% 2%;
}
.title-recruit02 span {
	font-size: 2vw;
    font-weight: normal;
    margin-left: 3%;
    color: #333333;
}
.title-recruit03 {
	font-size: 5.2vw;
	font-weight: bold;
	color: #388373;
	line-height: 0.8em;
	margin-bottom: 5%;
	text-align: center;
}
.title-recruit03 span {
	font-size: 2vw;
	font-weight: normal;
	color: #333333;
	display: block;
}
.title-recruit04 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 5%;
}
.side {
	position: absolute;
	z-index: 1;
}
.side.mori {
	top: -20vw;
	left: -8vw;
	width: 25%;
}
.side.balloon {
	top: 4vw;
	left: auto;
	right: 1vw;
	width: 12%;
}
.side.lchan {
	top: 40vw;
	left: auto;
	right: 0vw;
	width: 17%;
}
.side.mori02 {
	top: 5vw;
	left: auto;
	right: -9vw;
	width: 25%;
}
.side.mori03 {
	top: 15vw;
	left: -8vw;
	width: 25%;
}
.side.mori04 {
	top: 0vw;
	left: auto;
	right: -9vw;
	width: 25%;
}
.side.bottom-lchan {
	top: 15vw;
	left: -8vw;
	width: 25%;
}
.right {
	transform: scale(-1, 1);
}
#recruit-top {
	position: relative;
	overflow: hidden;
}
#recruit-top .group {
	position: relative;
	margin: 5vw 0 0 18vw;
}
/*伸縮*/
.stretch {
	animation: stretch 5s ease-in-out infinite;
}
@keyframes stretch{
  0% { transform: scale(0.9); }
  50% { transform: scale(1); }
  100% { transform: scale(0.9); }
}
/*ゆらゆら風船*/
.yurayura{
    transform-origin: center bottom;
    animation: yurayura 6s linear infinite;
}
@keyframes yurayura {
  0% , 100%{
      transform: rotate(3deg); }
  50%{
      transform: rotate(-3deg); }
}
/*ぽよん文字*/
.poyoyon2 {
	animation: poyoyon2 1s ease-in-out forwards;
	animation-delay: 1.5s;
} 
@keyframes poyoyon2 {
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0); }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px); }
  30% {
    transform: scale(1.02, 1.0) translate(0, 8px); }
  50% {
	  transform: scale(0.98, 1.05) translate(0, -8px); }
  70% {
    transform: scale(1.0, 0.9) translate(0, 5px); }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0); }
  0%, 100% {
    opacity: 1; }
}
/*ぽよん吹き出し*/
.poyopoyo {
	animation: poyopoyo 4s ease-out infinite;
	opacity: 1;
	animation-delay: 2s;
}
@keyframes poyopoyo {
  0%, 25%, 35%, 45% {
    transform: scale(1.0); }
  30%, 40% {
    transform: scale(0.95); }
}
#recruit-top .onimg02 {
	position: absolute;
	top: 25vw;
	left: 28vw;
	width: 16%;
}
#recruit-top .onimg03 {
	position: absolute;
	top: 30vw;
	left: 54vw;
	width: 9%;
}
#recruit-top .onimg04 {
	position: absolute;
	top: 33vw;
	left: 8vw;
	width: 9%;
}
#recruit-top .onimg05 {
	position: absolute;
	top: 35vw;
	left: 46vw;
	width: 12%;
}
#recruit-top p {
	position: absolute;
    top: 5vw;
    left: 5vw;
	font-size: 3.3vw;
	font-weight: bold;
	writing-mode: vertical-rl;
}
#recruit-new {
	position: relative;
}
/* 新着情報　What's New */ 
.news_container {
	max-width:100%;
}	
.news_title {
	color: #388373;
	font-size: 25px;
	font-weight: bold;
	margin-left: 15px;
	letter-spacing: 1px;
	padding-bottom: 5px;
}
.news_list {
	margin: 0;
	border-top: 1px dashed #bbbbbb;
}
.news_list li {
	padding: 6px 15px;
	border-bottom: 1px dashed #bbbbbb;
	text-overflow: ellipsis; /*省略'…'を表示します。*/
	overflow: hidden;
	white-space: nowrap;
	font-size: 0.95rem;
}
.date {
	display: inline-block;
	width: 125px;
}
.category {
	display: inline-block;
	color: #fff;
	text-align: center;
	margin-right: 10px;
	padding: 0 10px;
	background-color: #388373;
}
.news_btn {
	text-align: right;
	margin-top: 20px;
}
.btnnew {
	color: #388373;
	padding: 2px 15px;
	transition: all 0.5s;
}
@media screen and (max-width: 559px) {
.news_container {
width: 100%;
}
.news_text a {
display: block;
margin-top: 10px;
text-overflow: ellipsis;
overflow: hidden;
}}
/* recruit-about */
#recruit-about .columns2 {
    display: flex;
    flex-flow: row wrap;
	margin-top: 5%;
}
#recruit-about .l_box {
	width: 47%;
	font-size: 1.5vw;
	padding: 3%;
	line-height: 2.5;
}
#recruit-about .r_box {
	width: 35%;
	font-size: 2.2vw;
	font-weight: bold;
}
#recruit-about .l_box p {
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 5%;
	line-height: 2;
}
#recruit-about .r_box div a {
	display: block;
	color: #ffffff;
	border: solid 5px #ffffff;
	outline: 3px solid #666666;
	margin: 40px;
	padding: 5%;
	box-sizing: border-box;
}
#recruit-about .l_box span {
	display: inline-block;
}
#recruit-about .r_box div:first-child a {
	background: #c2987c;
}
#recruit-about .r_box div:last-child a {
	background: #71b282;
}
#recruit-about .r_box div .large {
	display: block;
	font-size: 4vw;
	line-height: 1.4;
}
#recruit-about .r_box div span {
	display: inline-block;
}
/* recruit-work */
#recruit-work a {
	display: inline-block;
}
#recruit-work .element {
	width: 70%;
    margin: auto;
	text-align: center;
}
/* recruit-staff & recruit-info */
.columns3 {
    display: flex;
    flex-flow: row wrap;
    margin-top: 5%;
	padding: 0 5%;
    justify-content: space-between;
    text-align: center;
}
#recruit-staff a {
	width: 30%;
	margin-bottom: 5%;
}
#recruit-staff .no_link {
	width: 30%;
	margin-bottom: 10%;
}
.columns3:after{
  content:"";
  display: block;
  width: 30%;
}
.monochrome {
	filter: grayscale(100%);
	opacity: 0.5;
}
.columns3 div {
	width: 30%;
	margin-bottom: 5%;
}
#recruit-info .columns3 div span {
	font-size: 1.3vw;
	padding: 0 20px;
}
#recruit-info .columns3 div p {
	font-size: 2vw;
}
#bottom-lchan {
	width: 100%;
	text-align: center;
}
#bottom-lchan img {
	width: 50%;
}
/*-----------about2------------*/
#about .feature {
    width: 70%;
    margin: 0 auto;
    font-size: 20px;
}
#about .feature p {
	margin: 5%;
	line-height: 2.5;
}
#about .feature p span {
	color: #f15a24;
	font-weight: bold;
}
#about .columns3 div span {
	display: inline-block;
	font-size: 24px;
	padding: 0;
}
/*-----------work2------------*/
#work .wrap-85 {
	text-align: center;
}
#work .map-ans {
	margin-top: 10%;
}
#work .map-ans .area {
	width: 80%;
	margin: 0 auto;
}
#work .map-ans .area img {
    position: relative;
    top: 120px;
}
#work .map-ans .area div {
	width: 80%;
	background: #fff;
	padding: 120px 5% 5%;
	line-height: 2.5;
    font-size: 1.2em;
	text-align: left;
}
#work .map-ans .area div {
	border: solid 50px;
}
#work .map-ans .area:nth-child(1) div {
	border-color: #fbb03b;
}
#work .map-ans .area:nth-child(2) div {
	border-color: #59bdf7;
}
#work .map-ans .area:nth-child(3) div {
	border-color: #39b54a;
}
#work .map-ans .area:nth-child(4) div {
	border-color: #ed7a92;
}
/*-----------staff2------------*/
#staff .bg {
	background-color: #eef7f1;
}
#staff .intro .main-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
#staff .intro .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
#staff .intro .main-img div {
  background: #fff;
  font-size: 2.3vw;
  position: absolute;
  top: 10%;
  left: 10%;
  text-align: center;
  padding: 2%;
  line-height: 1.5;
}
#staff .intro .main-img div span {
  display: block;
  font-weight: bold;
  font-size: 3.2vw;
  line-height: 1.3;
  margin-bottom: 3%;
}
#staff .intro p {
  font-size: 36px;
  font-weight: bold;
  color: #388373;
  padding: 5% 5% 0 5%;
}
#staff .intro .main-catch {
  font-size: 20px;
  line-height: 2.5;
  padding: 2% 5% 5% 5%;
}
#staff .intro span {
  display: inline-block;
}
#staff .qanda {
	margin: 20px 0;
	padding: 50px 0;
}
#staff .qanda li {
	margin: 5% 0;
	font-size: 20px;
	text-align: center;
}
#staff .qanda li .ques {
	text-align: left;
	font-size: 30px;
	color: #388373;
	font-weight: bold;
	background-color: #fffad2;
	padding: 0 30px;
}
#staff .qanda li .ques span {
	display: inline-block;
	font-size: 20px;
	margin-left: 20px;
}
#staff .qanda li .ans {
	padding: 15px 110px;
	text-align: left;
}
#staff .qanda li img {
	width: 980px;
	text-align: center;
}
/* staff2 スケジュール */
#staff .title-recruit05 {
	text-align: center;
	margin-bottom: 5%;
}
#staff .title-recruit05 span {
	display: block;
	color: #388373;
	font-size: 40px;
}
#staff .schedule .wrapper{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  border: solid 1px #666666;
  padding: 5% 8%;
}
#staff .schedule .time_schedule{
	position: relative;
	font-size: 20px;
}
#staff .schedule .l-h01 {
    height: 86%;
}
#staff .schedule .l-h02 {
    height: 88%;
}
#staff .schedule .time_line {
    width: 4px;
    position: absolute;
    top: 20px;
    z-index: 999;
    transform: translateX(-50%);
}
#staff .schedule .time_line span {
    display: block;
    width: 100%;
    height: 100%;
    background: #388373;
}
#staff .schedule .time_ball{
  position: absolute;
  background: #388373;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 999;
}
#staff .schedule .time {
	margin-left: 5%;
}
#staff .schedule dl{
  padding: 10px 0;
}
#staff .schedule dl dt{
  width: 100%;
  position: absolute;
  font-weight: bold;
}
#staff .schedule dl dd{
	margin-left: 15%;
	background: #f2f2f2;
	padding: 15px 25px;
	border-radius: 8px;
}
#staff .schedule dl dd div {
	color: #388373;
	font-weight: bold;
}
/* staff2 キャリア */
#staff .career {
	position: relative;
}
#staff .career .container {
	display: flex;
	flex-flow: column wrap;
	padding: 0 8%;
	margin: 0 auto;
}
#staff .c-w01 .container {
	max-width: 1280px;
}
#staff .c-w02 .container {
	max-width: 980px;
}
#staff .career .box {
	display: flex;
	flex-flow: row wrap;
	padding: 20px 40px;
	color:#ffffff;
	align-items: center;
	border-top: solid 5px #ffffff;
	border-left: solid 5px #ffffff;
	outline: 1px solid #666666;
}
#staff .career .box div span {
	display: inline-block;
}
#staff .career .box div:last-child {
	font-size: 20px;
}
#staff .c-w02 .box div:last-child {
	width: 78%;
}
#staff .career .box:nth-child(5n+1) {
	margin-left: 320px;	
	background: #bed5bd;
	color:#388373;
}	
#staff .career .box:nth-child(5n+2) {
	margin-left: 240px;
	background:#90bb95;
}
#staff .career .box:nth-child(5n+3) {
	margin-left: 160px;
	background:#66ac96;
}
#staff .career .box:nth-child(5n+4) {
	margin-left: 80px;
	background:#369383;
}
#staff .career .box:nth-child(5n+5) {
	margin-left: 0px;
	background:#388373;
}
#staff .career .box div:first-child {
	margin-right: 5%;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
}
#staff .c-w01 .box .c-b01 {
	width: 20%;
}
#staff .c-w01 .box:nth-child(5n+1) div:last-child {
	width: 75%;
}
#staff .c-w01 .box:nth-child(5n+2) div:last-child {
	width: 80%;
}
#staff .c-w01 .box:nth-child(5n+3) div:last-child {
	width: 83%;
}
#staff .c-w01 .box:nth-child(5n+4) div:last-child {
	width: 85%;
}
#staff .c-w01 .box:nth-child(5n+5) div:last-child {
	width: 84%;
}
#staff .career .arrow {
	transform:rotate(30deg);
	position: absolute;
    top: 30%;
	display: inline-block;
	width: 47.9px;
	height: 400px;
	background: linear-gradient(0deg, #bae2be 20%, #81bc83 100%);
	clip-path: polygon(0 13.2%, 50% 0, 100% 13.2%, 70.9% 13.2%, 70.9% 100%, 29.1% 100%, 29.1% 13.2%);
}
#staff .c-w01 .arrow {
	left: 15%;
}
#staff .c-w02 .arrow {
	left: 23%;
}
#staff .c-w02 .arrow2 {
	font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    font-size: 4rem;
    position: absolute;
    left: 17vw;
    top: 22vw;
    color: #90bb95;
    font-weight: bold;
}
/* staff2 末尾画像 */
#staff .last {
	text-align: center;
}
#staff .last img {
	width: 980px;
}

/*-----------data2------------*/
#data {
	color: #388373;
}
#data .work-data {
	padding: 3%;
	display: flex;
	flex-flow: row wrap;
	gap: 4vw;
	justify-content: center;
	max-width: 980px;
	margin: 0 auto 20%;
}
#data .work-data .card {
	display: flex;
	background-color: #e6f1ea;
	padding: 3%;
	text-align: center;
	width: 46%;
	height: auto;
	border: solid 1px #388373;
	box-sizing: border-box;
	aspect-ratio: 1 / 1;
	flex-flow: column nowrap;
}
#data .work-data .title {
	font-size: 2.5rem;
	margin-bottom: 10px;
	font-weight: bold;
	border-bottom: solid 1px;
}
#data .work-data .main-text {
	margin: 5% 5% 0 5%;
	font-size: 4rem;
	font-weight: bold;
	flex-grow: 1;
}
#data .work-data .middle {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#data .work-data .main-text2 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	font-size: 1.5rem;
}
#data .work-data .main-text2 div:nth-child(1) {
	width: 35%;
	line-height: 1.4;
}
#data .work-data .main-text2 div:nth-child(2) {
	font-size: 5rem;
	font-weight: bold;
}
#data .work-data .main-text2 div span {
	font-size: 2.5rem;
	margin-left: 10px;
}
#data .work-data .main-text .large {
	font-size: 6rem;
	margin-right: 15px;
}
#data .work-data .main-text .large2 {
	font-size: 5rem;
	margin-right: 15px;
}
#data .work-data .subtext {
	font-size: 1.2rem;
}
#data .work-data .subtext span {
	margin-left: 15px;
}
#data .work-data .overtime-card {
	width: 100%;
	flex-basis: 100%;
	display: flex;
	flex-direction: column;
	aspect-ratio: auto;
}
#data .work-data .small {
	font-size: 3rem;
    margin: 0;
}
#data .work-data .grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	font-size: 1.5rem;
    width: 80%;
	margin: 0 auto 2%;
}
#data .work-data .grid div {
	background-color: #ffffff;
	padding: 2%;
	border-radius: 5px;
}

#data .work-data .card img {
	width: 85%;
	margin: 5% auto 0;
}
#data .space {
	letter-spacing: 7px;
}
#data .title-recruit04 span {
	display: block;
	font-size: 1.2rem;
	font-weight: normal;
	letter-spacing: normal;
}
#data .profit .card {
	width: 70%;
	aspect-ratio: auto;
}

/*-----------recruit2 プライバシーポリシー　会社概要------------*/
.title02 {
	font-size: 36px;
	color: #333333;
	font-weight: 300;
	letter-spacing: 0.2em;
	text-align: center;
margin-bottom: 80px;
}
.title02 span {
  display: inline-block;
}
.title02 p {
  margin: 22px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.25em;
}
#privacy .chapter {
	margin: 50px auto;
}
#privacy .chapter3 {
	text-align: right;
}
#company_profile div:last-child {
	margin-top: 100px;
}
#company_profile table.table02 {
	border-top: 1px solid #CCCCCC;
	border-left: none;
	border-right: none;
	text-align: left;
	margin-bottom: 40px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
#company_profile table.table02 tr {
  border-bottom: 1px solid #CCCCCC;
}
#company_profile table.table02 tr th {
  width: 40%;
  text-align: center;
  font-weight: normal;
  padding: 10px 0;
}
#company_profile table.table02 tr td {
  padding: 10px 30px;
}
#company_profile table.table02 tr td a {
  text-decoration: underline;
}
#company_profile table.table02 tr td ul {
  list-style-position: inside;
}
#company_profile table.table02 tr td ul li {
  padding-left: 1em;
  text-indent: -1em;
}
#company_profile p.read {
  font-size: 20px;
  margin-bottom: 30px;
}
/*-----------info 求人ページー------------*/
#info-recruit .wrap {
	text-align: center;
}
#info-recruit img {
	margin: 5% 0;
}
#info-recruit .box {
	width: 100%;
	font-size: 24px;
	padding: 20px 19px;
}
#info-recruit .box span {
	display: inline-block;
}
#info-recruit .gap-bottom {
	margin-bottom: 20px;
}
#info-recruit .table01-f {
	width: 100%;
	margin-bottom: 80px;
	border-top: 1px solid #ccc;
}
#info-recruit .table01-f .flex-row {
	display: flex;
	flex-flow: row wrap;
	border-bottom: 1px solid #ccc; /* 既存のボーダーに合わせて調整 */
}
#info-recruit .table01-f .flex-th {
  flex: 1; /* 既存の th 幅に合わせて調整 */
  padding: 2%;
  font-weight: bold;
  background-color: #f5f5f5; /* 既存スタイルに合わせて調整 */
}
#info-recruit .table01-f .flex-td {
	flex: 4;
	padding: 2% 5%;
	text-align: left;
}
#info-recruit .table01-f .flex-td li span {
	font-weight: bold;
	margin-right: 20px;
}
#info-recruit .table01-f .small {
	font-size: 0.9em;
}
#info-recruit .table01-f .small-space {
	margin-top: 10px;
}
#info-recruit .table01-f .flex-td .list-style {
  list-style: disc;
  padding-left: 1.2em;
}
#info-recruit .oubo {
	background-color: #E8F3FF;
	padding: 30px 150px;
	text-align: left;
	margin-top: 3%;
}
#info-recruit .inner {
	display: flex;
	flex-flow: row wrap;
    margin: 3% 0;
    padding: 5%;
}
#info-recruit .inner div {
	width: 50%;
}
/*-----------post------------*/
.post .title01 {
	font-size: 36px;
	color: #333333;
	font-weight: 300;
	letter-spacing: 0.2em;
	text-align: center;
}
.post .title01 span {
  display: block;
  margin: 22px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.25em;
}
.btn02 {
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative;
  color: #333333;
  padding: 2px 30px 3px;
  margin-left: 5px;
  letter-spacing: 0.1em;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  border: 1px solid #333333;
  -moz-border-radius: 2em;
  -webkit-border-radius: 2em;
  border-radius: 2em;
  text-align: center;
}
.btn02:after {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 12px;
  right: 5px;
  top: 50%;
  margin-top: -6px;
  background: url("/assets/img/common/icn_arr_bk.png") center center no-repeat;
  background-size: 100% auto;
}
/*-----------under------------*/
#sv {
  position: relative;
}
#sv img {
	width:100%; 
}
#panList {
  z-index: 1;
  position: absolute;
  margin-top: 10px;
  left: 0;
  right: 0;
  text-align: right;
  font-size: 12px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#panList #panListInner {
  max-width: 450px;
  margin-left: auto;
}
#panList li {
  display: inline-block;
  zoom: 1;
  *display: inline;
  line-height: 1.4;
}
/* --------------------------------------------
 *				Footer recruit
 * -------------------------------------------- */
footer.foot-recruit {
	clear: both;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	text-align: left;
	background-color: #FFFFFF;
	border-top: 5px solid #388373;
	color: #333;
}
footer #toparr {
	opacity: 0.6;
	display: block;
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-size: 12px auto;
	width: 40px;
	height: 40px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: 1;
	background-color: #388373;
	background-image: url(https://www.kaiei-kyowa.jp/assets/img/common/icn_totop_w.png);
	background-repeat: no-repeat;
	background-position: center 16px;
}
footer #toparr:hover {
  opacity: 1;
}
footer.foot-recruit .area {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}
footer.foot-recruit .footer--cta {
	width: 100%;
	overflow: hidden;
	margin: 6% auto 3%;
	font-size: 0.9rem;
}
footer.foot-recruit .footer--cta .cont1 {
	float: left;
	width: 50%;
}
footer.foot-recruit .footer--cta .cont1 img {
	width: 60%;
}
footer.foot-recruit .footer--cta .cont1 span {
	margin-right: 2%;
}	
footer.foot-recruit .footer--cta .cont2 {
	float: right;
	overflow: hidden;
	width: 50%;
}
footer.foot-recruit .footer--cta .cont2 li {
	position: relative;
	display: inline-block;
	margin: 15px 20px;
}
#footer--rights {
  text-align: center;
  padding: 15px;
  font-size: 11px;
}
.section {
  margin-bottom: 50px;
}
.onlypc {
  display: inherit;
}
.onlysp {
  display: block;
  display: none;
}
/* for PC1366pX -------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1366px) {
#main .wrap-1280 {
  max-width: 980px;
}
#recruit-about .r_box div a {
	text-align: center;
	padding: 3% 2% 2%;
}
#staff .c-w02 .arrow {
	left: 14%;
}
#staff .c-w02 .arrow2 {
	left: 4vw;
	top: 32vw;
}
#data .work-data .card {
    padding: 5px;
}
footer.foot-recruit .footer--cta .cont1{
	width: 40%;
	padding-left: 3%;
}
footer.foot-recruit .footer--cta {
	width: 100%;
}}
/* for smartphone -------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 980px) {
  * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  body {
    line-height: 1.5;
    border: none;
  }
  img {
    width: 100%;
  }
section > .wrap {
    padding: 0 3%;
  }
/*-----------header------------*/
header.nav-recruit {
    height: 50px;
    top: 0;
    overflow: visible;
    text-align: left;
  }
/*-----------navi------------*/
.nav-recruit .logo {
    width: 250px;
    margin: 10px 10px 0;
    display: inline-block;
    zoom: 1;
    *display: inline;
    z-index: 0;
  }
.nav-recruit .logo > div {
	font-size: 14px;
}
header.nav-recruit .head--menu {
    display: block;
    background: url("https://www.kaiei-kyowa.jp/assets/img/common/ico_menubtn.png") no-repeat center center;
    background-size: 50% auto;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
  }
.nav-recruit nav {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: auto;
	top: 0;
	padding: 0;
	background-size: 50px auto;
	-moz-transition-property: all;
	-moz-transition-duration: 0.6s;
	-moz-transition-timing-function: cubic-bezier(0, 0.37, 0.45, 0.94);
	-webkit-transition-property: all;
	-webkit-transition-duration: 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0, 0.37, 0.45, 0.94);
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0, 0.37, 0.45, 0.94);
	opacity: 0;
	left: auto;
	right: -100%;
	background-color: #3b70ab;
	  z-index: 910;
  }
.nav-recruit nav.open {
    opacity: 1;
    right: 0;
  }
.nav-recruit nav > ul {
    margin: 80px 0 40px;
    overflow: hidden;
  }
.nav-recruit nav li {
    margin: 0;
    width: inherit;
    display: block;
    text-align: center;
  }
.nav-recruit nav li a {
	display: block;
	color: #ffffff;
	padding: 25px 20px;
	font-size: 20px;
	height: inherit;
	}
.nav-recruit nav .menu__single {
	margin-bottom: 90px;
}
.nav-recruit nav li a:before {
    display: none;
  }
.nav-recruit nav li a:after {
    display: none;
  }
.nav-recruit nav .head--menu {
    display: block;
    width: 50px;
    height: 50px;
    background: url("https://www.kaiei-kyowa.jp/assets/img/common/icn_close_w.png") center center no-repeat;
    background-size: 45% auto;
    position: absolute;
    top: 0;
    right: 0;
  }
#head--menu>ul {
    display: none;
  }
#head--menu.open>ul {
    display: block;
  }
/*プルダウンサブメニュー*/
li.menu__single dl.menu__second-level {
	visibility: visible;
	opacity: 1;
	background: none;
	width: 100%;
	top: 50px;
}
li.menu__single dl.menu__second-level a {
	font-size: 16px;
	font-weight: normal;
	margin: 0;
	padding: 25px 0 0;
	color: #ffecd1;
}
/*-----------recruit-TOP------------*/
#main {
    padding-top: 50px;
}
#main .wrap-60 {
	max-width: 90%;
}
#main .wrap-85 {
    max-width: 90%;
}
.shadow {
	filter: none;
}
.sectionbg {
    padding-top: 55px;
    padding-bottom: 30px;
  }
.side {
	display: none;
}
.title-recruit02, .title-recruit03 {
	font-size: 37px;
}
.title-recruit02 span, .title-recruit03 span {
	font-size: 18px;
}
.title-recruit02 span {
	display: inline-block;
}	
.title-recruit04 {
	font-size: 6vw;
}
 #recruit-top img {
    max-width: none;
    width: 150%;	
}
#recruit-top .group {
	margin: 8vw 0 0 -5vw;
}
#recruit-top .onimg02 {
	top: 49vw;
	left: 54vw;
}
#recruit-top .onimg03 {
	top: 78vw;
	left: 56vw;
}
#recruit-top .onimg04 {
	top: 64vw;
	left: 15vw;
}
#recruit-top .onimg05 {
	top: 67vw;
	left: 80vw;
}
#recruit-top p {
	top: 5vw;
	left: 5vw;
	font-size: 6vw;
	writing-mode: horizontal-tb;
	text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
/* recruit-about */
#recruit-about .l_box {
	width: 100%;
	font-size: 18px;
	line-height: 2;
}
#recruit-about .l_box span {
	display: inline;
}
#recruit-about .l_box p {
	font-size: 1.2em;
	line-height: 1.4;
}
#recruit-about .r_box {
	width: 100%;
	font-size: 4vw;
}
#recruit-about .r_box div:first-child a {
	float: left;
	width: 45%;
}
#recruit-about .r_box div:last-child a {
	float: right;
}
#recruit-about .r_box div a {
	height: 18vw;
	margin: 1%;
	border: solid 2px #ffffff;
	outline:2px solid #666666;
}
/* recruit-work */
#recruit-work .element {
    width: 100%;
}
/* recruit-staff & recruit-info */
.columns3 {
	padding: 0;
}
#recruit-staff a {
    width: 50%;
}
.columns3:after {
	width: 50%;
}
#recruit-staff .no_link {
	width: 50%;
}
.columns3 div {
    width: 48%;
}
#recruit-info .columns3 div p {
    font-size: 6vw;
}
#recruit-info .columns3 div span {
    font-size: 3vw;
    padding: 0;
}
#bottom-lchan img {
	width: 90%;
}
/*-----------about2------------*/
#about .columns3 div span {
    font-size: 16px;
}
#about .feature {
	width: 100%;
	font-size: 16px;
}
#about .feature p {
	line-height: 2;
}
/*-----------work2------------*/
#work .map-ans {
    margin-top: 0;
}
#work .map-ans .area {
    width: 100%;
}
#work .map-ans .area div {
    border: solid 20px;
}
#work .map-ans .area div {
    width: 100%;
    line-height: 2;
    font-size: 1em;
}
#work .map-ans img {
    max-width: 60%;
	width: auto;
}
#work .map-ans .area img {
    top: 100px;
}
#work .map-ans .area div {
	padding-top: 100px;
}
/*-----------staff2------------*/
#staff .intro .main-img img {
	transform: scale(1.6);
	transform-origin: 30% center;
}
#staff .intro .main-img div {
    font-size: 4vw;
}
#staff .intro .main-img div span {
    font-size: 5vw;
}
#staff .intro p {
	font-size: 5.4vw;
}
#staff .intro .main-catch {
    font-size: 16px;
  }
#staff .intro .main-catch span {
	display: inline;
}
#staff .qanda li .ques {
    text-align: center;
}
#staff .qanda li .ques span {
	margin-left: 0px;
	text-align: left;
}
#staff .qanda li .ans {
    padding: 15px 30px;
    font-size: 16px;
}
/* staff2 スケジュール */
#staff .title-recruit05 span {
	font-size: 24px;
}
#staff .schedule .time_schedule {
    font-size: 16px;
}
#staff .schedule .l-h01 {
    height: 84.6%;
}
#staff .schedule .l-h02 {
    height: 86.8%;
}
#staff .schedule .time {
    margin-left: 10%;
}
#staff .schedule dl dd {
	margin-left: 8%;
	margin-top: 30px;
}
/* staff2 キャリア */
#staff .career .container {    
	padding: 0 30px 0 80px;
}
#staff .career .box {
	padding: 5%;
}
#staff .career .box div:last-child {
	font-size: 16px;
}
#staff .career .box div span {
	display: inline;
}
#staff .career .box:nth-child(5n+1),
#staff .career .box:nth-child(5n+2),
#staff .career .box:nth-child(5n+3),
#staff .career .box:nth-child(5n+4),
#staff .career .box:nth-child(5n+5) {
	margin-left: 0px;
}
#staff .c-w01 .box .c-b01 {
	width: 100%;
}
#staff .career .box:nth-child(5n+1) div {
	width: 100%;
}
#staff .c-w01 .box:nth-child(5n+1) div:last-child,
#staff .c-w01 .box:nth-child(5n+2) div:last-child,
#staff .c-w01 .box:nth-child(5n+3) div:last-child,
#staff .c-w01 .box:nth-child(5n+4) div:last-child,
#staff .c-w01 .box:nth-child(5n+5) div:last-child {
	width: 100%;
}
#staff .c-w02 .box:nth-child(5n+1) div:last-child,
#staff .c-w02 .box:nth-child(5n+2) div:last-child,
#staff .c-w02 .box:nth-child(5n+3) div:last-child,
#staff .c-w02 .box:nth-child(5n+4) div:last-child,
#staff .c-w02 .box:nth-child(5n+5) div:last-child {
	width: 100%;
}
#staff .career .arrow {
	transform: rotate(0deg);
}
#staff .c-w01 .arrow {
	top: 25%;
	left: 4%;
    height: 500px;
}	
#staff .c-w02 .arrow {
	top: 25%;
	left: 4%;
    height: 400px;
}
#staff .c-w02 .arrow2 {
	display: none;
}
/*-----------data2------------*/	
#data .work-data {
	row-gap: 4vw;
}
#data .work-data .card {
	width: 47.8%;
}
#data .work-data .title {
	font-size: 5vw;
}
#data .work-data .main-text {
	font-size: 9vw;
}
#data .work-data .main-text2 {
	font-size: 3.5vw;
}
#data .work-data .main-text2 div:nth-child(1) {
	line-height: 1.2;
}
#data .work-data .main-text2 div:nth-child(2) {
	font-size: 8.5vw;
}
#data .work-data .main-text2 div span {
	font-size: 4vw;
	margin-left: 3px;
}
#data .work-data .main-text .large {
	font-size: 14vw;
	margin-right: 5px;
}
#data .work-data .subtext {
	font-size: 3.5vw;
}	
#data .work-data .subtext span {
	margin-left: 0;
	display: block;
}
#data .work-data .main-text .large2 {
	font-size: 12vw;
	margin-right: 5px;
}
#data .work-data .grid {
	gap: 5px;
	font-size: 4.5vw;
	width: 100%;
}
#data .title-recruit04 span {
	font-size: 0.8rem;
}
#data .profit .card {
	width: 90%;
}
/*-----------recruit2 プライバシーポリシー　会社概要------------*/	
.title02 {
	font-size: 24px;
	margin-bottom: 40px;
}
.title02 p {
	margin: 12px 0 20px;
	font-size: 11px;
}
#privacy .chapter2 ul {
	border: solid 1px;
	padding: 3%;
}
#company_profile table.table02 {
    margin-bottom: 20px;
}
#company_profile table.table02 tr {
    font-size: 12px;
}
#company_profile table.table02 tr td {
    padding: 10px 15px;
}
#company_profile p.read {
    font-size: 16px;
}
/*-----------info 求人ページー------------*/
#info-recruit .box p {
	font-size: 18px;
	margin: 15px 0;
}
#info-recruit .table01-f .flex-row {
	flex-flow: column nowrap;
}
#info-recruit .table01-f .flex-th {
  padding: 10px;
}
#info-recruit .table01-f .flex-td {
	font-size: 0.9em;
	padding: 10px 5% 25px;
}
#info-recruit .table01-f .flex-td.center {
	text-align: center;
}
#info-recruit .table01-f .flex-td ul {
	text-align:left;
}
#info-recruit .table01-f .flex-td .work-place li {
	margin-bottom: 4%;
	word-break: keep-all;
    overflow-wrap: anywhere;
}
#info-recruit .table01-f .flex-td .work-place li span {
	display: block;
}
#info-recruit .oubo {
	padding: 20px;
	font-size: 0.9em;
}
#info-recruit .oubo span {
	display: inline-block;
}
#info-recruit .inner div {
	width: 100%;
}
#info-recruit .inner p {
	font-size: 0.9em;
}
/*-----------post------------*/
.post .title01 {
    font-size: 24px;
    background: url("/assets/img/common/bg-h2.png") center 1.6em no-repeat;
    background-size: 30px auto;
}
.post .title01 span {
    margin: 12px 0 20px;
    font-size: 11px;
}
/*-----------under------------*/
#main #sv {
    padding-bottom: 30px;
    overflow: hidden;
    display: flex;
	justify-content: center;
  }
#main #sv img {
    max-width: 200%;
    width: 200%;	
}
 #panList {
    display: none;
  }
footer.foot-recruit {
    width: 100%;
    padding: 30px 10px 0;
  }

footer.foot-recruit .footer--cta .cont1{
	width: 100%;
	float: none;
}
footer.foot-recruit .footer--cta .cont1 img {
	width: 80%;
}
footer.foot-recruit .footer--cta .cont1 p {
	margin: 10px 0;
}
footer.foot-recruit .footer--cta .cont1 span {
	margin-right: 0;
	display: block;
}
footer .footer--cta {
    text-align: center;
}  
footer.foot-recruit .footer--cta .cont2 {
	width: 100%;
	margin-top: 15%;
}
footer.foot-recruit .footer--cta .cont2 ul:first-child {
	margin-bottom: 15%;
}
footer.foot-recruit .footer--cta .cont2 li {
	margin: 5px;
	display: block;
}
footer.foot-recruit #footer--rights {
    text-align: center;
    padding: 25px;
    font-size: 10px;
  }
  .section {
    margin-bottom: 50px;
  }
  .onlypc {
    display: none;
  }
  .onlysp {
    display: inherit;
}}
@media screen and (max-width: 320px) {
.nav-recruit .logo {
	width: 77%;
}}