@charset "utf-8";

/* @reset
----------------------------------------------------------*/
*, *:before, *:after { box-sizing:border-box; }

html, body, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd,
figure, figcaption, form, textarea, fieldset, legend, blockquote { margin:0; padding:0; border:none; }

h1, h2, h3, h4, h5, h6 { font-size:100%; font-weight:inherit; }

footer, header, hgroup, main, menu, nav, section,
article, aside, details, summary, figcaption, figure { display: block; }

table { border-collapse:collapse; border-spacing:0; }
ul, ol { padding:0; list-style:none; }

img { max-width:100%; height:auto; font-size:0; line-height:0; vertical-align:bottom; border-width:0; }

input, button, select, textarea { font:inherit; }
button { margin:0; padding:0; border:none; border-radius:0; background:none; -webkit-appearance:none; cursor:pointer; }
button:focus { outline:none; }
input[type="submit"],input[type="button"],input[type="reset"] { cursor: pointer; }

/* @base
----------------------------------------------------------*/
:root {
  --color-main: #4da683;
  --color-main-hover: #369871;
  --color-blk: #000;
  --color-wht: #fff;
  --color-gry: rgba(0,0,0,.2);

  --color-sub: #fcfdd1;
  --color-sub-hover: #fdff9d;

  --color-hilite: #fffc00;
  --color-red: #da224c;

  --icon-mail-main: url(../img/common/icon-mail-blu.svg);
  --icon-mail-wht: url(../img/common/icon-mail-wht.svg);
  --icon-arrow-main: url(../img/common/arrow-blu.svg);
  --icon-arrow-wht: url(../img/common/arrow-wht.svg);
  --icon-arrow-blk: url(../img/common/arrow-blk.svg);
  --icon-arrow-lite: url(../img/common/arrow-lite.svg);

  --font-base: 'Noto Sans JP',
  "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
  "メイリオ", "Meiryo","ヒラギノ角ゴ Pro W3",
  "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  --font-serif: "游明朝", "Yu Mincho", YuMincho,
  "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro",
  "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  --font-en: 'Kalnia', serif;
}


html, body { height: 100%; }

html {
  font-size: 100%;
  background: var(--color-body-bg);
}
body {
  color: #333;
  font-family: var(--font-base);
  letter-spacing: .025em;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  -webkit-animation: loading 1.5s;
  animation: loading 1.5s;
}
@-webkit-keyframes loading {
  0%   { opacity:0; }
  100% { opacity:1; }
}
@keyframes loading {
  0%   { opacity:0; }
  100% { opacity:1; }
}

[id] { scroll-margin-top: 100px; }

a { color: var(--color-blk); text-decoration:none; }
a:not([class]) { color: var(--color-main-txt); text-decoration:underline; text-underline-offset:2px; }
a:not(.fade), .anime { transition:all .5s; }
a:not([class]):hover, a:not([class]):focus { text-decoration:none; }
a:focus { outline:none; }

/* @utility */
.font-serif {
  font-family: var(--font-serif);
  font-weight: 500;
}

.font-en {
  font-family: var(--font-en);
  letter-spacing: 0;
}

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

.wide   { width: 100%; }

.pos-r { position:relative; }

.iblock { display:inline-block; }
.block  { display:block; }
.hide   { display:none; }

.fl-left { float:left; }
.fl-right { float:right; }

.ta-left { text-align:left; }
.ta-center { text-align:center; }
.ta-right { text-align:right; }
.ta-just { text-align:justify; }

.va-top  { vertical-align:top; }
.va-mid  { vertical-align:middle; }
.va-btm  { vertical-align:bottom; }
.va-base { vertical-align:baseline; }

.fw-mid { font-weight:500; }
.fw-bold { font-weight:bold; }

.fz-small { font-size:.85em; }
.fz-big { font-size:1.2em; }

.fs-italic { font-style:italic; }
.ws-nowrap { white-space: nowrap; }

.is-fixed { position:fixed; top:0; right:0; bottom:0; left:0; }

.link-disabled { cursor:default; pointer-events:none; opacity:0.6; }

.marker { background:linear-gradient(transparent 60%, #fff073 0%); }
.indent { padding-left:1em; text-indent:-1em; }

.li-disc, .li-decimal { padding-left:1.5em; }
.li-disc { list-style:disc; }
.li-decimal { list-style:decimal; }

.flex         { display:-webkit-flex; display:flex; -webkit-flex-wrap:wrap; flex-wrap:wrap; }
.flex-between { -webkit-justify-content:space-between;  justify-content:space-between;  }
.flex-center  { -webkit-justify-content:center; justify-content:center; }
.flex-align-center { -webkit-box-align:center; -webkit-align-items:center; align-items:center; }

.shadow { box-shadow:0 0 3px rgba(0,0,0,0.3); }


.txt-underline { text-decoration:underline; }
.link-txt { font-weight:bold; text-decoration:underline; }
.link-txt:hover { text-decoration: none; }

.bg-common { background-color: var(--color-main); }
.bg-wht { background-color: var(--color-wht); }

.color-red { color: var(--color-red); }
.color-main { color: var(--color-main); }
.color-sub { color: var(--color-sub); }
.color-hilite { color: var(--color-hilite); }
.color-wht { color: #fff; }

.mark-adj {
  display: inline-block;
  margin-right: -0.65em;
}


.hv-fade { -webkit-transition:all .8s ease-out; transition:all .8s ease-out; }
.hv-fade:hover { opacity:.7; }

/* 1025px 以上  */
@media screen and (min-width: 1025px) {
  /* hover scale */
  a .hv-scale { transition:transform .5s ease-out; will-change: transform; }
  a:hover .hv-scale  { -webkit-transform: scale(1.05); transform: scale(1.05); }
}
@media screen and (min-width: 600px) {
  .txt-v {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}


/* layout ------ */
#wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 100%;
}

.inner {
  max-width: 1460px;
  max-width: clamp(1260px, 85%, 1460px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}

.narrow-inner {
  max-width: 1420px;
  max-width: clamp(1180px, 85%, 1420px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
}
.inner .narrow-inner {
  max-width: 100%;
}

.narrow-fix-inner {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

#main { display:block; }

/* recaptcha */
.grecaptcha-badge {
  display: none;
}

/* 960px 以上 (PC・タブレット横) */
@media screen and (min-width: 960px) {
  .pc-none { display: none; }
}
/* 600px 以上 (PC・タブレット) */
@media screen and (min-width: 600px) {
  .sp-only { display: none; }
}

/* 1024px 以下 (タブレット横以下) */
@media screen and (max-width: 1024px) {
  .inner { width:96%; padding-left: 40px; padding-right: 40px; }

}

/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {
  .inner { width:auto; }
  .pc-only { display:none; }
}

/* 599px 以下 (スマホ)  */
@media screen and (max-width: 599px) {
  html { font-size: 87.5%; }
  body { font-size: 87.5%; line-height: 1.8; }
  .inner, .narrow-inner { padding-left:15px; padding-right:15px; }
  .inner .narrow-inner { padding-left:0; padding-right:0; }

  .sp-none { display:none; }
  .sp-only { display:block; }
}


/* @component
----------------------------------------------------------*/
/* @title ------ */
/* @secttl */

/* @subttl */

/* @button ---------- */
.c-btn {
  position: relative;
  display: inline-block;
  min-width: 240px;
  padding: .915em 2em;
  text-align: center;
  line-height: 1.4;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-main);
  transition: all .5s;
  background: var(--color-sub);
}
.c-btn:hover {
  background: var(--color-sub-hover);
}

/* link-arrow */
.c-link-arrow {
  position: relative;
  display: inline-block;
  padding-right: 1.3em;
  color: var(--color-main);
  font-weight: bold;
}
.c-link-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: .1em;
  bottom: 0;
  width: .95em;
  height: .95em;
  margin: auto 0;
  will-change: right;
  transition: right .5s;
  background: var(--icon-arrow-main) no-repeat center / 100%;
}
.c-link-arrow:hover::after,
a:hover .c-link-arrow::after {
  right: -.5em;
}

.c-link-arrow.st-icon-map {
  padding-left: 1.7em;
}
.c-link-arrow.st-icon-map::before {
  content: "";
  position: absolute;
  top: .1em;
  left: -.3em;
  width: 1.87em;
  height: 1.87em;
  vertical-align: -.05em;
  background: url(/img/common/icon-map-blu.svg) no-repeat center top / 100%;
}

/* icon-link */
.icon-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -.1em;
  margin-left: 0.5em;
  background: url(../img/icon-link-wht.svg) no-repeat center / 100%
}

/* @box -------- */
.c-box {
  margin-bottom: 70px;
}
.c-box-inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.c-box-inner-top {
  padding-top: 70px;
}

.c-st_box1 {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 5.7em 6em;
  background: var(--color-main-bg);
}
.c-st_box1::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(35%, 48%);
  width: 22.45%;
  padding-top: 22.45%;
  z-index: -1;
  background: url(/img/common/diag.svg) no-repeat 0 0 / 100%;
}
.c-st_box1::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: -1;
  background: #fff;
}


/* @list --------- */
.c-list li {
  position: relative;
  margin: .5em 0;
  padding-left: 1.6em;
  line-height: 1.6;
}
.c-list li::before {
  content: "";
  position: absolute;
  top: .35em;
  left: 0;
  width: 1em;
  height: 1em;
  background: var(--color-main);
  border-radius: 50%;
}

.c-num_list {
  counter-reset: num;
}
.c-num_list li {
  position: relative;
  padding-left: 1em;
}
.c-num_list li::before {
  content: counter(num) ".";
  counter-increment: num;
  position: absolute;
  top: 0;
  left: 0;
}

/* @dl,tbl --------- */
/* @dl */
.c-dl_list .row > * {
  padding: 1.6em 1.32em;
  font-size: 1rem;
  line-height: 1.563;
}
.c-dl_list .row > dt {
  width: 13.5rem;
  color: var(--color-main);
  font-weight: bold;
  border-bottom: 2px solid var(--color-main);
}
.c-dl_list .row > dd {
  -webkit-box-flex: 1;
  flex: 1;
  padding-left: 1.9em;
  padding-right: 0;
  border-bottom: 2px solid var(--color-gry);
}
.c-dl_list .row:first-child dt {
  border-top:  2px solid var(--color-main);
}
.c-dl_list .row:first-child dd {
  border-top:  2px solid var(--color-gry);
}

/* @notes -------- */
.c-notes {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}
.c-notes-list li {
  margin: .25em 0;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}


/* @header
----------------------------------------------------------*/
.g-header {
  position: relative;
  z-index: 999;
  padding: 20px 0;
  transition: padding .5s ease-out;
}

/* @gnav */
/* g-nav-list */
.g-nav-list {
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  flex: 1;

}
.g-nav-list li {
  margin-left: 2.1em;
}
.g-nav-list a {
  position: relative;
  display: block;
  height: 100%;
  padding: .75em 0;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  transition-duration: .35s;
  transition-timing-function: ease-out;
}
.g-nav-list a:hover {
  color: var(--color-sub);
}

.g-nav-list .contact {
  margin-left: 2.5em;
}
.g-nav-list .contact a {
  padding-left: 3.19em;
  padding-right: 3.19em;
  color: var(--color-main);
  font-weight: bold;
}

.g-nav .tt_link {
  display: none;
}


.g-footer-nav {
	margin: 30px auto 70px;
	padding-top: 25px;
}

.g-footer-nav li a{
	font-size:1.125rem;
    text-decoration: none;
	font-weight: bold;
	padding: 20px;
}
.g-footer-nav li a:hover {
  color: var(--color-sub);
}



/* @menu-btn */
.menu-btn {
  display: none;
}





/* @footer
----------------------------------------------------------*/
.g-footer {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  background: var(--color-main)
}
.g-footer a:not(.c-btn) {
  color: #fff;
}

.g-footer-logo {
}

/* g-footer-nav */
.g-footer-nav {
}
.g-footer-nav-list {
}
.g-footer-nav-list > li {

}

/* copyright */
.g-copyright {
  margin: 0;
  padding: 0.8em 0;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.g-copyright small {
  font-size: .75rem;
  letter-spacing: .075em;
}


/* @layout
----------------------------------------------------------*/

/* @page-head */
.page-head {
  position: relative;
  z-index: 2;
  padding-top: 126px;
}
.page-head-ttl {
  margin: 0;
  padding: 1.9em 0 1.4em;
  text-align: center;
  font-size: 2.6429rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
}
.page-head-ttl::before {
  content: attr(data-en);
  display: block;
  margin-bottom: .2em;
  line-height: 1;
  font-size: .649em;
  font-weight: bold;
  letter-spacing: .025em;
  font-family: var(--font-en);
  color: var(--color-main);
}
.page-head-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.page-head-img img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

/* @breadcrumb ------- */
.breadcrumb {
  padding: 1em 0;
  font-size: 0.8571rem;
  line-height: 1.4;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li, .breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: .92em;
  height: .93em;
  vertical-align: -.05em;
  margin: 0 .4em 0 .6em;
  background: var(--icon-arrow-wht) no-repeat center / 100%;
}
.breadcrumb li:last-child {
  color: #444;
  padding: .05em .61em;
  background: #fff;
}
.breadcrumb li:last-child a {
  color: #444;
}

/* @effect */
[class*="effect-"],
[class*="effect-cover"]::before {
  -webkit-transition: all .8s ease-out;
  transition: all .8s ease-out;
}

/* imgZoomOut */
.effect-imgZoomOut {
  overflow: hidden;
}
.effect-imgZoomOut img {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity, .5s cubic-bezier(0.22, 0.61, 0.36, 1),
  transform .7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.effect-imgZoomOut.on-effect img {
  opacity: 1;
  transform: scale(1);
}

/* fadeInUp */
.effect-fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}
.effect-fadeInUp.on-effect {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.effect-fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
}

/* fadeInRight / fadeInLeft */
.effect-fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
}

.effect-fadeInLeft.on-effect,
.effect-fadeInRight.on-effect {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* @top
----------------------------------------------------------*/
.top-mv {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-bottom: 24px;
  background: var(--color-main);
}
.top-mv::before,
.top-mv::after  {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 50%;
  background: url(../img/tri-ptn.svg) repeat-y top left;
}
.top-mv::after  {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  left: auto;
  right: 0;
}

.top-mv-wrap {
  padding-top: 64px;
}
.top-mv-ttl {
  text-align: center;
  font-size: 4.375rem;
  font-weight: bold;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 1s ease-out;
}
.top-mv-ttl::before {
  content: "";
  display: block;
  margin-bottom: .1em;
  padding-top: 1.286em;
  background: url(../img/kira.svg) no-repeat center / auto 100%;
}
.top-mv-ttl > .main {
  margin-right: -.75em;
}
.top-mv-ttl > .sub {
  display: block;
  font-size: .6em;
}

.top-mv-con {
  margin: -2.4em 0 0;
  padding: 0 40px;
  -webkit-box-align: center;
  align-items: center;
}
.top-mv-copy {
  width: 30.39%;
  margin: 4% 0 0;
  text-align: center;
  opacity: 0;
  transform: rotate(240deg);
  transition: opacity 1s ease-out 1s,
  transform .8s cubic-bezier(0.42, 0, 0.37, 1.17) 1s;
}

.top-mv-img {
  width: 33.82%;
  opacity: 0;
  transition: opacity 1s ease-out .5s,
  transform .5s ease-out .5s;
}
.top-mv-img.img01 {
  transform: rotate(-15deg);
}
.top-mv-img.img02 {
  -webkit-box-ordinal-group: 3;
  order: 2;
  transform: rotate(15deg);
}


.onload-anime .top-mv-ttl,
.onload-anime .top-mv-copy,
.onload-anime .top-mv-img {
  opacity: 1;
  transform: rotate(0);
}


/* トップページ
----------------------------------------------------------*/

.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.g-contact_btn a { width: 300px;}

#message {
  overflow: hidden;
}
#message .font-en{
	font-size:4.375rem;
	color: var(--color-main);
    opacity: 0.41;
	margin: 0px 0 15px;
	line-height: .68;
}
#message h3 {
	font-size:2.1875rem;
	margin: 10px 0 20px;
	color: var(--color-main);
	font-weight: bold;
	line-height: 1.5;
}
#message .ma_txt {
	margin: 30px 0 30px;
	font-size: 1rem;
}
.ma_img {
	width: 100%;
}
.ma_img img {
	max-width: 750px;
}
.ma_imgbox{
    width: 80%;
	margin: -20px auto;
}
.message01{
	margin: 0 0 70px 0;
}
.ma_img02 img {
	max-width: 670px;
}

.tiktok_area {
  position: relative;
  margin-bottom: 80px;
  padding: 3em 2em 2em;
  background: #f2f6ea;
}
#tiktok h3.ttl {
  position: absolute;
  top: -.4em;
  left: 0;
  right: 0;
  color: var(--color-main);
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  opacity: 1;
}

#voices_top {
	background-color: var(--color-main);
	padding: 0 0 50px 0;
}

#voices_top .main_p img {
	max-width: 283px;
}

#voices_top .font-en{
	font-size:4.375rem;
	color: var(--color-wht);
    opacity: 0.41;
	line-height: .68;
	margin-bottom: 40px;
}
#voices_top h3 {
	font-size: 1.875rem;
	margin: 10px 0 20px;
	color: var(--color-wht);
	font-weight: bold;
	line-height: 1.5;
}

.recruit_copy {
  color: #fff;
  text-align: center;
  font-size: 2.1429rem;
  font-weight: bold;
  letter-spacing: .025em;
}
.recruit_copy .arrow {
  margin-left: .25em;
}
.recruit_copy .arrow,
.recruit_copy .copy2 {
  margin-right: 1em;
}
.recruit_copy span {
  display: inline-block;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  line-height: 1.5;
}
.recruit_copy .arrow {
  transform: scale(1);
}
.recruit_copy.on-effect span {
  opacity: 1;
  transform: scale(1);
}
.recruit_copy span:nth-child(2) {
  transition-delay: .8s;
}
.recruit_copy span:nth-child(3) {
  transition-delay: 1.6s;
}
.recruit_copy span:nth-child(4) {
  transition-delay: 2.4s;
}


#voices_top .katagaki{
	font-size:0.875rem;
	margin: 20px 0 5px;
	color: var(--color-wht);
	line-height: 1.5;
}
#voices_top .name{
	font-size:1.125rem;
	margin: 0px 0 20px;
	color: var(--color-wht);
	font-weight: bold;
	line-height: 1.5;
}
#voices_top .senpai_con .senpai{
	width: 33%;
	margin: 30px 0 30px;
}
#voices_top .senpai_con2 .senpai{
	width: 50%;
}
#voices_top .senpai_con {
	justify-content: space-between;
	justify-content: center;
}
#voices_top .senpai_con2 {
	justify-content: space-between;
	width: 80%;
	margin: 50px auto;
}

#place_top .font-en{
	font-size:4.375rem;
	color: var(--color-main);
    opacity: 0.41;
	margin: 0 0 15px;
	line-height: .68;
}
#place_top h3 {
	font-size:2.1875rem;
	margin: 10px 0 20px;
	color: var(--color-main);
	font-weight: bold;
	line-height: 1.5;
}

#place_top{
	margin-bottom: 50px;
}
#place_top .ma_txt {
	margin-bottom: 20px;
	font-size:1.125rem;
}


/* 働く先輩たちの声
----------------------------------------------------------*/
#voices .top-mv .font-en{
	font-size:4.375rem;
	color: var(--color-wht);
    opacity: 0.41;
	margin: -20px 0 0;
}
#voices h1{
	font-size:2.125rem;
	color: var(--color-wht);
	font-weight: bold;
	margin: -30px 0 50px 0;
}

#senpai_voices .main_img img{
	max-width: 400px;
}
#senpai_voices .second .txt_con{
	padding-left: 0px;
	padding-right: 30px;
}

#senpai_voices .txt_con{
	width: 62%;
	padding-left: 30px;
}
#senpai_voices .main_imgcon{
	width: 38%;
}

#senpai_voices .voices_con {
	margin: 70px auto;
}

#senpai_voices .second .main_imgcon {
	order: 2;
}

#senpai_voices .second .txt_con {
	order: 1;
}
#senpai_voices .vo_txt{
	text-align: justify;
}
#senpai_voices .second .vo_txt{
	text-align: justify;
	padding-right: 30px;
	padding-left: 0px;
	font-size:  1rem;
}
#senpai_voices .vo_txt{
	text-align: justify;
	padding-right: 30px;
	padding-left: 0px;
	font-size:  1rem;
}
#senpai_voices h2 {
	font-size: 2.1875rem;
	font-weight: bold;
	color: var(--color-main);
	line-height: 1.4;
	margin: 20px 0 50px;
}
#senpai_voices .vo_katagaki {
	font-size: 1.3125rem;
	margin: -10px 0 0px;
}
#senpai_voices .vo_name {
	font-size: 1.6875rem;
	margin: -10px 0 30px;
	font-weight: bold;
}
#senpai_voices .sub_con .font-en{
	font-size: 1.75rem;
	color: var(--color-main);
    opacity: 0.41;
	line-height: .68;

}
#senpai_voices .sub_con{
	margin: 30px 0;
}
#senpai_voices .column{
	border: 2px dotted #4da683;
	padding: 25px 45px;
	font-size: 1rem;
	/*margin-top: -18px;*/
}

#senpai_voices .column dt{
	/*width: 25%;*/
	width: 22%;
	font-weight: bold;
	color: var(--color-main);

}
#senpai_voices .column dd{
	width: 77%;
	/*width: 78%;*/
}

#senpai_voices .column dt {
	padding-left: 35px;
    background: url(/recruit/img/voice/mark1.svg) no-repeat left;
}

#voices .g-contact_btn {
	margin-bottom: 70px;
}

.yellow_link:after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.1em;
    margin-left: 0.5em;
    background: url(../img/voice/ar_gr.svg) no-repeat center / 100%;
}

.pro_video .youtube-16-9 {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
}
.pro_video .youtube-16-9 {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
max-width: 560px;
display: block;
margin: auto;
}

.pro_video h4{  color: var(--color-main);
font-size: 1.2rem; font-weight: bold; margin: 40px 0 1em;}
.vi_txt {font-size: 1rem; margin-top: 12px;}


/* 働く環境
----------------------------------------------------------*/

#place .top-mv .font-en{
	font-size:4.375rem;
	color: var(--color-wht);
    opacity: 0.41;
	margin: -20px 0 0;
}
#place .h1_con .font-en{ line-height: 1.2; margin: 10px 0 15px;}
#place h1{
	font-size:2.125rem;
	color: var(--color-wht);
	font-weight: bold;
	margin: -30px 0 50px 0;
}
#place h2{
	font-size:1.875rem;
	color: var(--color-main);
	font-weight: bold;
	margin: 1px 0 10px 0;
}

#place .setubi_ti{
    font-size:1.375rem;
	margin: 10px 0 10px;
	color: var(--color-main);
	font-weight: bold;

}
#place .setubi_con{
	margin: 70px 0 30px;
	}

#place .title .font-en{
	font-size:2.0625rem;
	color: var(--color-main);
    opacity: 0.41;
	margin: 10px 0 10px;
}

#place .title{
margin-bottom: 40px;}


#place_setsubi .img_txt img {
	max-width: 343px;
}

#place_setsubi .setubi{
	width: 30%;
	margin-bottom: 20px;
}

#place_setsubi .setubi_img{
	justify-content: space-between;
}

#place_fukuri{
	background-color: var(--color-main);
	margin: 80px 0;
	padding-bottom: 70px;
}
#place_fukuri h2{
	color: var(--color-sub);
	    font-size:1.875rem;
	font-weight: bold;
	margin: 1px 0 10px 0;
}
#place_fukuri .w_txt{
	color: var(--color-wht);
	font-size: 1rem;
}

#place_fukuri .title .font-en{
	font-size:2.0625rem;
	color: var(--color-wht);
    opacity: 0.41;
	margin: 10px 0 10px;
}
#place_fukuri .fukuri_con{
 	padding-top: 70px;
}

#place_fukuri .sub_txt {
	width: 65%;
	margin-right: 30px;
}
#place_fukuri .sub_img {
	width: 30%;
}
.fukuri_img img{
	max-width: 343px;
}
.fukuri_sub{
 margin-bottom: 60px;}

.fukuri_sub h3 {
	color: var(--color-sub);
	   font-size:1.5rem;
	font-weight: bold;
	margin: -10px 0 10px 0;

}

.sub_listbox{
	border: 2px dotted #fcfdd1;
	padding: 20px 35px;
}
.job_list{ margin-bottom: 100px;}


.sub_txt {
	color: var(--color-wht);
}
.sub_txt2{
 margin-bottom: 23px;
font-size: 1rem;}
.sub_list{
	font-size: 1rem;
}



.job_list h3{
	color: var(--color-main);
	font-size:1.5rem;
	font-weight: bold;
	margin: 10px 0 20px 0;
}

#place_job .c-dl_list{
	font-size:1rem;
}
.job_txt{
	font-size: 1rem;
}
.se_txt{
	font-size: 1rem;
}



/* レスポンシブ
----------------------------------------------------------*/
/* 960px 以上 */
@media screen and (min-width: 960px) {
}
/* 1024px 以上 */
@media screen and (min-width: 1180px) {
  /* @header
  ----------------------------------------------------------*/
  /* @gnav */
  .g-nav-list {
    font-size: 1.125rem;
  }
}

/* 1280px 以下 */
@media screen and (max-width: 1280px) {
  /* @top
  ----------------------------------------------------------*/
  .top-mv:before,
  .top-mv:after {
    background-size: 12vw;
  }

  .top-mv-wrap {
    padding-top: 4%;
  }

#senpai_voices .main_img img{
	width: 100%;
}
	#senpai_voices .column dt {
		width: 100%;
	}
		#senpai_voices .column dd {
		width: 100%;
		margin-bottom: 10px;
	}
	#senpai_voices .second .vo_txt {
    padding-right: 0px;
    padding-left: 0px;
}
	#senpai_voices .vo_txt {
    padding-right: 0px;
    padding-left: 0px;
}

#place_setsubi .setubi {
    width: 48%;
}
#place_fukuri .sub_txt {
    width: 100%;
    margin-right: 0px;
}
#place_fukuri .sub_img {
    width: 100%;
	margin: 20px auto;
	display: block;
}
#place_fukuri .sub_img img {
	margin: 20px auto;
	display: block;
}

}


/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {
  /* @component
  ----------------------------------------------------------*/

  /* @title ---------- */
  /* @secttl ------ */

  /* @subttl ------ */

  /* @box ---- */
  .c-box-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .c-st_box1 {
    padding: 4em;
  }

  /* @header
  ----------------------------------------------------------*/
  .g-header {
    padding: 0;
  }
  .g-header-wrap {
    padding-left: 24px;
    padding-right: 0;
  }
  .g-header-logo {
    position: relative;
    width: 132px;
    padding-top: 16px;
    z-index: 9999;
  }

  /* @menu-btn */
  .menu-btn {
    display: block;
    width: 55px;
    margin-left: 15px;
    padding: 15px 15px 12px;
    cursor: pointer;
    z-index: 99999;
    background: var(--color-sub);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .g-header-member .menu-btn {
    margin-top: 8px;
  }
  .menu-btn:focus-visible {
    outline: auto;
  }

  .menu-bar {
    position: relative;
    display: block;
    width: 25px;
    height: 2px;
    transition: background-color 10ms 300ms ease;
    background: var(--color-main);
  }
  .menu-bar::before,
  .menu-bar::after {
    content: "";
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    position: absolute;
    background: var(--color-main);
    left: 0;
    right: 0;
    height: 2px;
  }

  .menu-bar::before {
    top: -6px;
  }
  .menu-bar::after {
    top: 6px;
  }

  .menu-btn.is-open .menu-bar {
    background-color: transparent;
  }
  .menu-btn.is-open .menu-bar::before,
  .menu-btn.is-open .menu-bar::after {
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    top: 0;
  }

  .menu-btn.is-open .menu-bar::before {
    transform: rotate(45deg);
  }
  .menu-btn.is-open .menu-bar::after {
    transform: rotate(-45deg);
  }

  /* @gnav */
  .g-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    padding: 90px 20px 30px;
    z-index: 999;
    margin: 0;
    font-size: 1rem;
    overflow: hidden;
    background: var(--color-main);
  }

  .g-nav-wrap {
    position: relative;
    z-index: 2;
    height: 100%;

    overflow-y: auto;
    overscroll-behavior: none;
    padding-bottom: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }

  /* gnav-list */
  .g-nav-list {
    display: block;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.286rem;
  }
  .g-nav-list li {
    margin-left: 0;
    margin-bottom: .75em;
  }
  .g-nav-list a {
    position: relative;
    display: block;
  }

  .g-nav-list .contact {
    margin: 2em 0;
  }

  .g-nav-list .offical {
    font-size: 1.143rem;
  }

  .g-nav .tt_link {
    display: block;
    text-align: center;
  }


  /* @footer
  ----------------------------------------------------------*/

  /* @layout
  ----------------------------------------------------------*/

  /* @page-head */
  .page-head {
    padding-top: 100px;
  }
  .page-head-ttl {
    padding: 1.2em 0 1em;
    font-size: 2.2rem;
  }

  /* @top
  ----------------------------------------------------------*/
  .top-mv {
    padding-bottom: 10vw;
  }
  .top-mv::after {
    display: none;
  }
  .top-mv::before {
    width: auto;
    right: 0;
    background: url(../img/tri-ptn-bottom.svg) repeat-x left bottom;
  }

  .top-mv-ttl {
    font-size: 3.15rem;
  }
  .top-mv-con {
    margin-top: 0;
    padding: 0;
  }



  /* トップページ
  ----------------------------------------------------------*/
  .recruit_copy .arrow {
    display: block;
    margin: 0;
  }
  .recruit_copy .arrow,
  .recruit_copy.on-effect .arrow {
    transform: scale(1) rotate(90deg);
  }

#voices_top .senpai_con .senpai {
    width: 50%;
}

#voices_top .senpai_con2 {
    width: 100%;
    margin: 50px auto;
}

.ma_imgbox {
    width: 90%;
}
.ma_img img {
    width: 100%;
	margin: 0 5px;
}

.ma_img02 img {
    width: 100%;
}

  /* 働く先輩の声
  ----------------------------------------------------------*/

	#senpai_voices .main_imgcon {
    width: 100%;
	text-align: center;
    margin-bottom: 30px;
}

#senpai_voices .txt_con {
    width: 100%;
	padding-left: 0;
}
#senpai_voices .second .main_imgcon {
    order: 1;
}
#senpai_voices .second .txt_con {
    order: 2;
}
.fukuri_img img {
    width: 100%;
}

#senpai_voices .main_imgcon	{
		width: 100%;}

#senpai_voices .txt_con {
    width: 100%;
    padding-left: 0px;
}

#senpai_voices .second .txt_con {
    padding-left: 0px;
    padding-right: 0px;
}
}

/* 599x 以下 (スマホ)  */
@media screen and (max-width: 599px) {

  /* @header
  ----------------------------------------------------------*/

  /* @gnav */
  .g-nav-list .contact a {
    display: block;
  }

  /* @footer
  ----------------------------------------------------------*/


.g-footer-nav li a{
	font-size:1.125rem;
    text-decoration: none;
	font-weight: bold;
	padding: 10px;
}

  /* @Component
  ----------------------------------------------------------*/
  /* @title ----- */
  /* @secttl */

  /* @subttl */


  /* @button ---------- */

  /* @box -------- */
  .c-box {
    margin-bottom: 60px;
  }
  .c-box-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .c-box-inner-top {
    padding-top: 60px;
  }

  .c-st_box1 {
    padding: 3em;
  }
  .c-st_box1::before {
    transform: translate(35%, 38%);
    width: 40%;
    padding-top: 40%;
  }


  /* @dl,tbl --------- */
  .c-dl_list .row > * {
    padding: 0;
  }
  .c-dl_list .row dt {
    width: 100%;
    padding: 1.5em 0 .75em;
    border-bottom: none;
  }
  .c-dl_list .row > dd {
    border-bottom: 2px solid var(--color-main);
  }
  .c-dl_list .row > dd {
    padding-left: 0;
    padding-bottom: 1.5em;
  }
  .c-dl_list .row:first-child dd {
    border-top: none;
  }



  /* @layout
  ----------------------------------------------------------*/
  /* page-head */
  .page-head-ttl {
    padding: .4em 0 1em;
    font-size: 1.75rem;
  }

  /* @breadcrumb ------- */
  .breadcrumb {
    font-size: 10px;
  }

  /* @top
  ----------------------------------------------------------*/
  .top-mv {
    padding-bottom: 20px;
  }
  .top-mv::before {
    background-size: auto 35vw;
  }

  .top-mv-wrap {
    padding-top: 10%;
  }
  .top-mv-ttl {
    margin-bottom: .5em;
    font-size: 8.53vw;
  }
  .top-mv-ttl > .sub {
    font-size: .719em;
  }

  .top-mv-img {
    width: 50%;
  }
  .top-mv-img.img02 {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .top-mv-copy {
    width: 72.46%;
    margin: .5rem auto 0;
  }

  .tiktok_area {
    margin: 0 -15px;
    padding: 4em 1em 3em;
  }

 /* トップページ
  ----------------------------------------------------------*/
  .recruit_copy {
    font-size: 1.85rem;
  }
  .recruit_copy .copy2 {
    display: block;
    margin: 0;
  }

	#voices_top .senpai_con .senpai {
    width: 100%;
}

	 /* 働く先輩たちの声
  ----------------------------------------------------------*/

	#senpai_voices .column {
    border: 2px dotted #4da683;
    padding: 25px 30px;
    font-size: 1rem;
    /* margin-top: -18px; */
}

#place_setsubi .setubi {
    width: 100%;
}
.fukuri_img img {
    max-width: 100%;
}

}
