/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.66666667vw;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
figure,
figcaption,
button,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

body {
  color: #251e1c;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  body {
    min-width: initial;
    min-width: auto;
  }

  body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
  }
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

ul,
ol {
  padding-left: 0;
}

li {
  list-style: none;
}

small,
em {
  font-size: 100%;
  font-style: normal;
}

img {
  border: 0;
  width: 100%;
  height: auto;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

figure {
  margin: 0; }
  figure img {
    max-width: 100%; }
body ,body * {box-sizing: border-box;}
ul {
  padding-left: 0; }


.goTop {
  position: fixed; bottom: 2em; right: 2em; border-radius:5px; width:172px; height:98px; box-shadow: 1px 3px 3px rgba(0,0,0,0.4); background: #CFCFCF; z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .goTop {
    border-radius: 0px;
    width: 45px;
    height: 35px;
    box-shadow: none;
    text-align: center;
  }
}
.goTop p { display:none;}
@media screen and (max-width: 767px) {
  .goTop p {
    display: block;
    font-size: 10px;
    color: #222;
    line-height: 1.6em;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

a:link img.onmouse {
    filter: alpha(opacity=70);
    -ms-filter: “alpha(opacity=70)”;
    opacity: 0.7;
    filter: none\9;
}
@media screen and (max-width: 767px) {
  img.onmouse {
    display: none;
  }
}

/* ヘッダー */
header {
  width: 100%;
  height: auto;
  background-color: #fff;
  z-index: 100;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  header {
    position: sticky;
    top: 0;
    left: 0;
    margin-top: 0;
  }
}

.header__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  grid-template: ". h-logo h-innr ." 100%
                  / 1fr min(calc(900vw / 14),900px) 235px 1fr;
  align-items: center;
  justify-content: space-between;
  padding: 0 min(calc(40vw / 14),40px);
  margin: auto;
  width: 100%;
  /* max-width: 148rem; */
  height: 100px;
  background-color: #fff;
  z-index: 100;
}
@media screen and (max-width: 1000px) {
.header__wrapper {
  grid-template: "h-logo h-innr" 100%
                  / 1fr 235px;
}
}
@media screen and (max-width: 768px) {
  .header__wrapper {
    position: static;
    padding: 0 0 0 1.5rem;
    height: 4.4rem;
    display: flex;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  width: 34rem;
  height: 100%;
  grid-area: h-logo;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 62.7%;
  }
}

.header__logo a {
  width: 53%;
}

.header__logo span {
  width: 40%;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  height: 100%;
  grid-area: h-innr;
}
@media screen and (max-width: 1400px) {
.header__inner {
	justify-content: flex-end;
}
}

.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  margin-right: min(calc(25vw / 14),25px);
}

.header__link li:not(:last-child) {
  border-right: 1px solid #251e1c;
}

.header__link a {
  padding: 0 min(calc(15vw / 14),15px);
  color: #251e1c;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.header__instalink {
  width: 13%;
}
@media screen and (max-width: 768px) {
  .header__instalink {
    width: 4.4rem;
    height: 100%;
    background-color: #000;
  }
}

.header__btn {
  position: relative;
  width: 4.4rem;
  height: 100%;
  background-color: #000;
}

.header__btn span {
  display: inline-block;
  position: absolute;
  left: 0.8rem;
  width: 2.8rem;
  height: 0.2rem;
  background-color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header__btn span:nth-child(1) {
  top: 1.5rem;
}

.header__btn.open span:nth-child(1) {
  top: 2.1rem;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.header__btn span:nth-child(2) {
  top: 2.1rem;
}

.header__btn.open span:nth-child(2) {
  opacity: 0;
}

.header__btn span:nth-child(3) {
  top: 2.7rem;
}

.header__btn.open span:nth-child(3) {
  top: 2.1rem;
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background-color: #000;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;

}
@media screen and (max-width: 768px) {
  nav {
    display: block;
    position: absolute;
    height: auto;
    -webkit-transform: translateY(-100vh);
    transform: translateY(-100vh);
  }
}

nav.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  margin: auto;
  width: 100%;
  max-width: 140rem;
  padding: 0;
  padding-left: min(calc(40vw / 14),40px);
  padding-right: min(calc(40vw / 14),40px);
}
@media screen and (max-width: 768px) {
  .nav__list {
    display: block;
    padding: 0;
  }
}

.nav__item {
  position: relative;
  /* width: 19%; */
  flex: 1;
  height: auto;
  text-align: center;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .nav__item {
    width: 100%;
    flex: auto;
  }

  .nav__item:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}

nav ul li:first-child {
  border-left: none;
}

.nav__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.1rem;
  height: 4.7rem;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .nav__item:not(:last-child)::after {
    content: none;
  }
}

.nav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(10rem,10px) min(calc(10vw / 14),10px);
  width: 100%;
  color: #fff;
  font-size: clamp(13px,calc(16vw / 14),16px);
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .nav__item a {
    padding: 2rem 3rem;
    font-size: 1.8rem;
    text-align: left;
  }
}

/* フッター */
footer {
  padding: 2rem 0;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 1rem 0;
  }
}

.footer__text {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__text {
    font-size: 1rem;
  }
}

/* main {
  margin-top: 22.2rem;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 4.4rem;
  }
} */

main#comic {
  margin-top: 2rem;
}

.fv__border {
  background-color: #000;
  width: 100%;
  height: 2rem;
}
@media screen and (max-width: 768px) {
  .fv__border {
    height: 1rem;
  }
}



.bg {
  padding: 8rem 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .bg {
    padding: 5rem 0;
  }
}

.bg--pattern01 {
  background-image: url(../img/bg_pattern01.png);
}
@media screen and (max-width: 768px) {
  .bg--pattern01 {
    background-image: url(../img/bg_pattern01_sp.png);
  }
}

.bg--pattern02 {
  background-image: url(../img/bg_pattern02.png);
}
@media screen and (min-width: 769px) {
  .bg--pattern02 {
    padding: 10rem 0;
  }
}
@media screen and (max-width: 768px) {
  .bg--pattern02 {
    background-image: url(../img/bg_pattern02_sp.png);
  }
}

.bg--pattern03 {
  background-image: url(../img/bg_pattern03.png);
}
@media screen and (max-width: 768px) {
  .bg--pattern03 {
    background-image: url(../img/bg_pattern03_sp.png);
  }
}

.bg--blue {
  background-color: #15c0da;
}

.bg--black {
  background-color: #231815;
}

@media screen and (min-width: 769px) {
  .bg--contact {
    padding: 9rem 0 6rem;
  }
}

.container {
  padding: 0 1.5rem;
  margin: auto;
  width: 100%;
  max-width: 114rem;
}

.container--small {
  max-width: 104rem;
}

.title {
  color: #9d9d9e;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 3.5rem;
  }
}

.title span {
  color: #15c0da;
}

.title--color2 {
  color: #6c7477;
}

.title--color2 span {
  color: #fff;
}

@media screen and (min-width: 769px) {
  .title--small {
    font-size: 4rem;
  }
}

.title__text {
  color: #15c0da;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .title__text {
    font-size: 1.2rem;
  }
}

.title__text--white {
  color: #fff;
}

.content {
  position: relative;
  padding: 3rem 0;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .content {
    position: relative;
    padding: 0;
    margin-top: 2.5rem;
  }
}

.content--magb90 {
  margin-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .content--magb90 {
    margin-bottom: 4.5rem;
  }
}

.content__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 100%;
  background-image: url(../img/bg_message.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .content__image {
    position: static;
    width: 84%;
    height: 18rem;
  }
}

.content--reverse .content__image {
  left: auto;
  right: 0;
}
@media screen and (max-width: 768px) {
  .content--reverse .content__image {
    margin-left: auto;
  }
}

.content__image--business {
  background-image: url(../img/bg_business.jpg);
  background-position: center;
}

.content__inner {
  padding: 0 1.5rem;
  margin: auto;
  width: 100%;
  max-width: 117rem;
}

.content__text {
  margin-left: auto;
  width: 51.3%;
}
@media screen and (max-width: 768px) {
  .content__text {
    width: 100%;
  }
}

.content--reverse .content__text {
  margin-left: 0;
  margin-right: auto;
}

.content__caption {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.25;
}
@media screen and (max-width: 768px) {
  .content__caption {
    margin: 3rem 0 1rem;
    font-size: 1.5rem;
  }
}

.content__description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.5;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .content__description {
    font-size: 1.2rem;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  margin-top: 2rem;
  width: 21rem;
  height: 4em;
  background-color: #15c0da;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .button {
    margin: 4rem auto 0;
  }
}

.button--white {
  background-color: #fff;
}

.button--center {
  margin-left: auto;
  margin-right: auto;
}

.button--magt40 {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .button--magt40 {
    margin-top: 5rem;
  }
}

.button--magt50 {
  margin-top: 5rem;
}

.button--comic {
  margin: 5rem auto;
}

.button:hover span::before, .button:hover span::after {
  right: -1rem;
}

.button span {
  position: relative;
  padding-right: 2em;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
}

.button--white span {
  color: #15c0da;
}

.button span::before, .button span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.button span::before {
  width: 2rem;
  height: 1px;
  background-color: #fff;
}

.button--white span::before {
  background-color: #15c0da;
}

.button span::after {
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: top right;
}

.button--white span::after {
  border-top: 1px solid #15c0da;
  border-right: 1px solid #15c0da;
}

.data__text {
  margin: 4rem 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.25;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .data__text {
    margin: 3rem 0;
    font-size: 1.5rem;
  }
}

.interview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-box-align: start;
	-ms-flex-align: start;
  align-items: flex-start;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .interview__list {
    margin-top: 4rem;
  }
}

.interview__item {
  width: calc(100% / 5 - 25px);
  margin: 0 .7%;
}
@media screen and (max-width: 768px) {
  .interview__item {
    width: 45.5%;
    margin-left: 2.25%;
    margin-right: 2.25%;
    margin-bottom: 3rem;
  }
  /* .interview__item:nth-child(-n + 2) {
    margin-bottom: 3rem;
  } */
}

/* .interview__item:nth-child(n + 5) {
  margin-top: 0 .7%;
}

 @media screen and (max-width: 768px) {
  .interview__item:nth-child(n + 5) {
    margin-top: 0 .7%;
  }
} */

.interview__content dt {
  margin-bottom: 1.5rem;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.interview__content dt img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview__item a:hover .interview__content dt img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.interview__content dd {
  margin: 1rem 0;
  color: #251e1c;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .interview__content dd {
    margin: 0.5rem 0;
    font-size: 1.2rem;
  }
}

.interview__content small {
  font-weight: 300;
}

.interview__content em {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .interview__content em {
    font-size: 2rem;
  }
}

.link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
@media screen and (max-width: 768px) {
  .link__list {
    display: block;
  }
}

.link__list--employment {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .link__list--employment {
    margin-top: 4.5rem;
  }
}

.link__item {
  position: relative;
  width: 49%;
}
@media screen and (max-width: 768px) {
  .link__item {
    width: 100%;
  }

  .link__item:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.link__item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.link__item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.link__item a:hover::after {
  background-color: rgba(255, 255, 255, 0.4);
}

.link__item .closed {
  position: absolute;
  left: 50%;
  bottom: 12.5%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff799;
  font-size: 1.6rem;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .link__item .closed {
    font-size: 1.2rem;
  }
}

.insta__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
	-ms-flex-align: start;
  align-items: flex-start;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .insta__list {
    padding: 0 1.5rem;
  }
}

.insta__item {
  width: 23.6%;
}
@media screen and (max-width: 768px) {
  .insta__item {
    width: 47.6%;
  }

  .insta__item:nth-child(-n + 2) {
    margin-bottom: 1.5rem;
  }
}

.contact__title {
  color: #000;
  font-family: 'Abel', sans-serif;
  font-size: 7.2rem;
  line-height: 0.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 3.3rem;
  }
}

.contact__title span {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .contact__title span {
    font-size: 1rem;
  }
}

.contact__text {
  margin: 3rem 0;
  color: #000;
  font-size: 2.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__text {
    margin: 1.5rem 0;
    font-size: 1.2rem;
  }
}

.contact__text small {
  display: inline-block;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .contact__text small {
    font-size: 1rem;
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform-origin: top;
    -webkit-transform-origin: top;
  }
}

.contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  margin: 0 auto 5rem;
  width: 100%;
  max-width: 66rem;
  height: 7rem;
  border: 3px solid #000;
  color: #000;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .contact__btn {
    margin: 3rem auto;
    width: 80%;
    height: 4rem;
    border: 2px solid #000;
  }
}

.contact__btn:hover {
  background-color: #000;
  color: #fff;
}

.contact__btn span {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .contact__btn span {
    font-size: 1.2rem;
  }
}

.contact__logo {
  width: 16rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contact__logo {
    width: 7.5rem;
  }
}

.opening-soon {
  padding: 10rem 0 30rem;
}
@media screen and (max-width: 768px) {
  .opening-soon {
    padding-bottom: 20rem;
  }
}

.opening-soon h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .opening-soon h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}

.opening-soon p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .opening-soon p {
    font-size: 1.2rem;
  }
}

.jobintroduction {
  width: 100%;
  background-color: aliceblue;
  padding: 80px 0;
}

.jobintroduction-menu {
  margin: 40px 0;
}

.jobintroduction-menu dt {
  position: relative;
}

.jobintroduction-menu dt::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 40px;
  border-top: 3px #FFF solid;
  border-right: 3px #FFF solid;
  transform: rotate(135deg) translateY(-50%);
  transform-origin: top;
  transition: 0.3s;
}

.jobintroduction-menu dt.active::after {
  transform: rotate(315deg) translateY(-50%);
}

.jobintroduction-menu dd {
  display: inline-block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s , opacity 0.3s;
  margin-bottom: 0;
}
.js-accordion.active + dd {
  max-height: 3000px;
  opacity: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.js-accordion.active + dd {
  margin-bottom: 0;
}
}

.jobintroduction-title {
  display: block;
  width: 100%;
  margin: 0 auto 40px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.5;
  color: #fff;
  background-color: #15c0da;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .jobintroduction-title {
    font-size: 1.6rem;
  }
}

.jobintroduction-title:hover {
  background-color: #000;
  cursor: pointer;
}

.jobintroduction-img {
  float: right;
  shape-outside: inset(-10%);
  width: 450px;
  margin: 10px 0 0 30px;
}
@media screen and (max-width: 768px) {
  .jobintroduction-img {
    float: none;
    width: 100%;
    margin: 0 0 10px 0;
  }
}

.jobintroduction-text {
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .jobintroduction-text {
    font-size: 12px;
  }
}

.comic_bnr {
  display: block;
  margin: 0 auto 50px;
  width: 322px;
}
@media screen and (max-width: 768px) {
  .comic_bnr {
    width: 100%;
  }
}

/* 福利厚生 */
.enviroment-fv {
  padding: 15rem 0;
  background: url(../img/bg_fv.jpg) no-repeat center / cover;
  background-image: image-set(url(../img/bg_fv.jpg) 1x, url(../img/bg_fv@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/bg_fv.jpg) 1x, url(../img/bg_fv@2x.jpg) 2x);
  color: #fff;
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enviroment-fv {
    padding: 7.5rem 0 8rem;
    margin-bottom: 4rem;
    background-image: url(../img/bg_fv_sp.jpg);
    font-size: 2.5rem;
  }
}

.container--enviroment {
  max-width: 103.7rem;
}

.container--enviroment-large {
  max-width: 112.5rem;
}

.enviroment-text {
  margin: 3rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enviroment-text {
    font-size: 1.5rem;
  }
}

.enviroment-anker {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .enviroment-anker {
    margin: 5.5rem 0 6rem;
  }
}

.enviroment-anker li {
  width: 49.4%;
  height: 4.8rem;
}
@media screen and (max-width: 768px) {
  .enviroment-anker li {
    height: 4.1rem;
  }
}

.enviroment-anker li:nth-of-type(1) {
  background: #43c7e1;
}

.enviroment-anker li:nth-of-type(2) {
  background: #6ec87d;
}

.enviroment-anker li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enviroment-anker li a {
    font-size: 1.5rem;
  }
}

.enviroment-title {
  position: relative;
  margin-bottom: 5rem;
  color: #43c7e1;
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enviroment-title {
    margin-bottom: 4.5rem;
    font-size: 2.5rem;
  }
}

.enviroment-title::before {
  content: "";
  position: absolute;
  top: calc(100% + 2.5rem);
  left: 50%;
  width: 4.5rem;
  height: .3rem;
  background: #43c7e1;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .enviroment-title::before {
    top: calc(100% + 2rem);
  }
}

.enviroment-title--green {
  color: #6ec87d;
}

.enviroment-title--green::before {
  background-color: #6ec87d;
}

@media screen and (max-width: 768px) {
  .enviroment-inner {
    padding: 0 20px;
  }
}

.enviroment-head {
  padding: .5rem;
  margin-bottom: 3rem;
  background: #43c7e1;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enviroment-head {
    padding: .7rem;
    font-size: 1.8rem;
  }
}

.enviroment-head--green {
  background-color: #6ec87d;
}

.enviroment-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .enviroment-wrap {
    display: block;
    margin-bottom: 6rem;
  }
}

.enviroment-wrap--mt70 {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .enviroment-wrap--mt70 {
    margin-top: 40px;
  }
}

.enviroment-dlist {
  width: 23%;
}
.enviroment-wrap--trio .enviroment-dlist {
  width: 31%;
}
@media screen and (max-width: 768px) {
  .enviroment-dlist {
    margin-bottom: 4rem;
  }

  .enviroment-dlist, .enviroment-wrap--trio .enviroment-dlist {
    width: 100%;
  }
}

.enviroment-dlist dt {
  padding-bottom: 1rem;
  border-bottom: 3px solid #43c7e1;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.enviroment-dlist dt::before {
  content: "●";
  color: #43c7e1;
  font-size: 2rem;
}

.enviroment-dlist--green dt {
  border-bottom-color: #6ec87d;
}

.enviroment-dlist--green dt::before {
  color: #6ec87d;
}

.enviroment-dlist dd {
  padding-left: 1em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .enviroment-dlist dd {
    font-size: 1.8rem;
    line-height: 2.1;
  }
}

.enviroment-dlist dd::before {
  content: "○";
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .enviroment-dlist dd::before {
    font-size: 1.8rem;
  }
}

.enviroment-sub-head {
  margin-bottom: 3rem;
  color: #43c7e1;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enviroment-sub-head {
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
  }
}

.enviroment-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8.1rem;
}
@media screen and (max-width: 768px) {
  .enviroment-list {
    display: block;
    margin-bottom: 5rem;
  }
}

.enviroment-list li {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid #15c0da;
  width: 23.8%;
  color: #43c7e1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enviroment-list li {
    border-width: 3px;
    width: 100%;
    height: 100px;
    min-height: 18.3rem;
  }

  .enviroment-list li:not(:last-of-type) {
    margin-bottom: 2.2rem;
  }
}

.enviroment-list__description {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3em;
}

.enviroment-list__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100% - 3em);
}

.enviroment-list__date {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .enviroment-list__date {
    font-size: 3.5rem;
    line-height: 1;
  }
}

.enviroment-list__date em {
  font-family: 'Roboto', sans-serif;
  font-size: 5.7rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .enviroment-list__date em {
    font-size: 7.5rem;
  }
}

.enviroment-list__date--jp {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .enviroment-list__date--jp {
    font-size: 2.2rem;
  }
}

.enviroment-list__date--jp em {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3.1rem;
}
@media screen and (max-width: 768px) {
  .enviroment-list__date--jp em {
    font-size: 3.8rem;
  }
}

.enviroment-kyosai {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.enviroment-kyosai span {
  color: #15c0da;
}

.enviroment-kyosai-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16.7rem;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .enviroment-kyosai-list {
    margin-bottom: 3rem;
  }
}

.enviroment-kyosai-list li {
  margin-bottom: 2rem;
  min-width: 24rem;
}
@media screen and (min-width: 1057px) {
  .enviroment-kyosai-list li:nth-of-type(2) {
    margin-right: auto;
  }

  .enviroment-kyosai-list li:last-of-type {
    margin-left: .7rem;
  }
}

.enviroment-kyosai-list li span {
  display: inline-block;
  padding-bottom: .5rem;
  border-bottom: 1px solid #251e1c;
}

.enviroment-bg {
  padding: 7rem 0 12rem;
  background: #e9eaea;
}
@media screen and (max-width: 768px) {
  .enviroment-bg {
    padding: 5rem 0 2rem;
  }
}

.enviroment-image-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .enviroment-image-list {
    display: block;
  }
}

.enviroment-image-list li {
  position: relative;
  width: 31%;
}
@media screen and (max-width: 768px) {
  .enviroment-image-list li {
    width: 100%;
  }

  .enviroment-image-list li:not(:last-of-type) {
    margin-bottom: 4rem;
  }
}

.enviroment-image-list__text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 1.5rem;
  min-width: 16.4rem;
  background: #6ec87d;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enviroment-image-list__text {
    padding: 0 5rem;
    min-width: 14rem;
    font-size: 1.5rem;
  }
}

.enviroment-image-attn {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .enviroment-image-attn {
    margin-top: 1.5rem;
    font-size: 1.2rem;
  }
}

.popup-outbound {
  box-sizing: border-box;
  position: fixed;
  left: 15px;
  bottom: 15px;
  padding: 15px 20px;
  max-width: 330px;
  background-color: #fff;
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: .05em;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  color: #000;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .popup-outbound {
      left: 10px;
      bottom: 10px;
      width: calc(100% - 20px);
      max-width: none;
      font-size: 10px;
  }
}

.popup-outbound.close {
  opacity: 0;
  pointer-events: none;
}

.popup-outbound a {
  box-sizing: border-box;
  color: #222;
  text-decoration: underline;
}

.popup-outbound__btn {
  box-sizing: border-box;
  display: block;
  padding: 5px 10px;
  border-radius: 3px;
  margin: 10px auto 0;
  width: 150px;
  background-color: #666;
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

/* ★★下層ページ★★ */

/* .clearfix:after {
  content: '';
  display: block;
  clear: both; } */

/* .leftArea {
  float: left; }

.rightArea {
  float: right; } */

@media screen and (min-width: 768px) {
  .sp-only {
    display: none; } }

@media screen and (max-width: 767px) {
  .pc-only {
    display: none; } }

.recruit-body {
  background: url(../img/pattern.png) repeat left top #1d2c33;
  color: #fff; overflow: clip; }
  .recruit-body footer {
    background-color: transparent; }

.recruitSection {
  background-color: transparent;
  text-align: center; }
  .recruitSection:last-of-type {
    padding-bottom: clamp(50px,calc(80vw / 10),80px);
    margin-bottom: 0;
  }
  @media screen and (min-width: 768px) {
    .recruitSection {
      margin: 90px auto 40px; } }
  @media screen and (max-width: 767px) {
    .recruitSection {
      margin: 20px auto 0; }

    }
  .recruitSection * {
    font-feature-settings: "palt";
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box; }
  @media screen and (min-width: 768px) {
    .recruitSection h2 {
      line-height: .6; } }
  @media screen and (max-width: 767px) {
    .recruitSection h2 {
      line-height: .9; } }
  .recruitSection.m0 {
    margin-top: 0;
    padding-top: 0; }
  .recruitSection.wide {
    width: 100%;
    padding-left: 0;
    padding-right: 0; }
  .recruitSection p {
    margin-left: auto;
    margin-right: auto; }
  .recruitSection#recruit-info h3 {
    display: inline-block;
    margin-top: 3em;
    margin-bottom: 1em;
    padding: 0.5em 1em;
    line-height: 1.2;
    border: 3px solid #fff;
    }


    @media screen and (min-width: 768px) {
      .recruitSection#recruit-info h3 {
        font-size: 20px; } }
    @media screen and (max-width: 767px) {
      .recruitSection#recruit-info h3 {
        font-size: 14px; } }
  .recruitSection .recruit-info-condition {
    text-align: center;
    margin-top: 0;
    line-height: 1.3; }
    @media screen and (min-width: 768px) {
      .recruitSection .recruit-info-condition {
        font-size: 63px; } }
    @media screen and (max-width: 767px) {
      .recruitSection .recruit-info-condition {
        font-size: 27px; } }
  .recruitSection .recruit-info-detail {
    text-align: left;
    vertical-align: middle; }
    @media screen and (min-width: 768px) {
      .recruitSection .recruit-info-detail {
        font-size: 32px;
        line-height: 1.875 !important; } }
    @media screen and (max-width: 767px) {
      .recruitSection .recruit-info-detail {
        width: 88%;
        font-size: 16px;
        line-height: 1.8 !important; } }
    .recruitSection .recruit-info-detail strong {
      padding-left: 0.1em;
      padding-right: 0.1em;
      font-size: 162.5%;
      font-weight: 600;
      vertical-align: middle; }
  .recruitSection .recruitInterviewList {
    padding-top: 2em; position: relative; z-index: 1;}


      .recruitSection .recruitInterviewList {
        display: flex;
        justify-content: center;
        align-items: center;
      }
    .recruitSection .recruitInterviewList li {
      overflow: hidden;
      position: relative;
        max-width: 334px;
        width: 100%;
        /* width: min(32.5vw); */
        height: min(44.9vw,165px); 
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        transition: .3s;
      }

    .recruitSection .recruitInterviewList li:has(a:hover) {
        background-size: 110%;
      }

      @media screen and (max-width: 767px) {
        .recruitSection .recruitInterviewList li {
          /* width: 100vw; */
          height: min(33.7vw,165px);}
        }
      .recruitSection .recruitInterviewList li > a {
        width: 100%;
        height: 100%;
        background: url(../img/pattern.png) repeat left top;
        text-decoration: none;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .recruitSection .recruitInterviewList li:after {
        width: 100%;
        height: 100%;
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        transition: .3s; }
      @media screen and (min-width: 768px) {
        .recruitSection .recruitInterviewList li:hover:after {
          transform: scale(1.05); } }

      .recruitSection .recruitInterviewList li h3, .recruitSection .recruitInterviewList li p {
        color: #fff; }
      .recruitSection .recruitInterviewList li h3 {
        display: inline-block;
        margin: 1em auto;
        padding: 0 1em;
        border: 2px solid #fff; }
        @media screen and (min-width: 768px) {
          .recruitSection .recruitInterviewList li h3 {
            font-size: 28px; } }
        @media screen and (max-width: 767px) {
          .recruitSection .recruitInterviewList li h3 {
            margin-top: 0;
            font-size: 14px; } }
      .recruitSection .recruitInterviewList li p.shoulder {
        margin: 0 auto 0.3em !important; }
        @media screen and (min-width: 768px) {
          .recruitSection .recruitInterviewList li p.shoulder {
            font-size: 18px; } }
        @media screen and (max-width: 767px) {
          .recruitSection .recruitInterviewList li p.shoulder {
            font-size: 12px; } }
      .recruitSection .recruitInterviewList li .name {
        color: #fff;
        letter-spacing: .1em;
        margin: 0 auto; }
        @media screen and (min-width: 768px) {
          .recruitSection .recruitInterviewList li .name {
            font-size: 30px; } }
        @media screen and (max-width: 767px) {
          .recruitSection .recruitInterviewList li .name {
            font-size: 16px; } }
  .recruitSection .menu {
    margin: 2em auto; }
    @media screen and (min-width: 768px) {
      .recruitSection .menu.narrow {
        width: 932px; } }
    .recruitSection .menu .trigger {
      color: #000; }
      .recruitSection .menu .trigger span.open-close {
        display: block;
        width: 100%;
        background: url(../images/arrow_plus.png) no-repeat right center; }
        .recruitSection .menu .trigger span.open-close.no-move {
          background: none; }
          .recruitSection .menu .trigger span.open-close:hover {
            cursor: pointer; }
          @media screen and (max-width: 767px) {
            .recruitSection .menu .trigger span.open-close {
              font-size: 14px; } }
      .recruitSection .menu .trigger.active span.open-close {
        background-image: url(../images/arrow_none.png); }
    @media screen and (min-width: 768px) {
      .recruitSection .menu .requirementList {
        margin: 3em auto; } }
    @media screen and (max-width: 767px) {
      .recruitSection .menu .requirementList {
        margin: 2em auto; } }
    .recruitSection .menu .requirementList.black li a {
      color: #000; }
      @media screen and (min-width: 768px) {
        .recruitSection .menu .requirementList.black li a:hover {
          border-color: #000; } }
      .recruitSection .menu .requirementList.black li a:visited {
        color: #0f0f0f; }
    .recruitSection .menu .requirementList li a {
      color: #fff;
      font-size: 1.35em;
      line-height: 2; }
      .recruitSection .menu .requirementList li a:visited {
        color: #f0f0f0; }
      @media screen and (min-width: 768px) {
        .recruitSection .menu .requirementList li a:hover {
          text-decoration: none;
          border-bottom: 1px solid #fff; } }
      @media screen and (max-width: 767px) {
        .recruitSection .menu .requirementList li a {
          font-size: 12px; } }
  .recruitSection .borderdBtn {
    width: 100%;
    max-width: 500px;
    margin: 2em auto 1em; }
    @media screen and (min-width: 768px) {
      .recruitSection .borderdBtn.narrow {
        width: 932px;max-width: initial; } }

/* インタビュー */
.interview-headImg {
  margin: 0 auto;
  padding-top: 0;
  width: 100%;
  text-align: left; }
  @media screen and (min-width: 768px) {
    .interview-headImg {
      max-width: 1000px;} }
  .interview-headImg img {
    max-width: 100%; }
  @media screen and (min-width: 768px) {
    .interview-headImg img {
      max-width: 730px;} }

#recruit-int-prof {
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #recruit-int-prof {
    padding-top: 20px;
  }
}
  #recruit-int-prof h2 {
    position: absolute;
    bottom: 100%;
    color: #1d2c33;
    width: auto;
    text-align: left; }
    @media screen and (min-width: 768px) {
      #recruit-int-prof h2 {
                left: min(calc(540vw / 10), 540px);
        /* top: -245px; */
      } }
    @media screen and (max-width: 767px) {
      #recruit-int-prof h2 {
        left: 0;
        /* top: auto; */
        
        }
      }
    /* @media screen and (min-width: 768px) {
      #recruit-int-prof h2.threelines {
        transform: translateY(-100%);
        top: 0;
      }
    } */
    /* @media screen and (max-width: 767px) {
      #recruit-int-prof h2.threelines {
        top: -60px; } } */
    #recruit-int-prof h2 span {
      background-color: #fff;
      line-height: 1.75; min-height: 0vw;}
      @media screen and (min-width: 768px) {
        #recruit-int-prof h2 span {
          font-size: clamp(32px,calc(48vw / 14),48px); } }
      @media screen and (min-width: 768px) {
        #recruit-int-prof .threelines.-fujinaga span {
          white-space: nowrap; } }
      @media screen and (max-width: 767px) {
        #recruit-int-prof h2 span {
          font-size: 24px;
          line-height: 1.8; } }
  #recruit-int-prof .leftArea {
    border: 1px solid #fff; }
    @media screen and (min-width: 768px) {
      #recruit-int-prof .leftArea {
        width: 450px;
        padding: 2em; } }
    @media screen and (max-width: 767px) {
      #recruit-int-prof .leftArea {
        width: 100%;
        padding: 20px 15px; } }
  @media screen and (min-width: 768px) {
    #recruit-int-prof .rightArea {
      flex: 1;
      min-width: 350px;
      margin: 20px 0;
      order: 1;
      font-size: 16px;
      line-height: 1.75; } }
  @media screen and (max-width: 767px) {
    #recruit-int-prof .rightArea {
      margin-bottom: 20px;
    } }
  
  #recruit-int-prof .profUpper figure {
    width: min(24.15vw,115px);
    height: auto;
  }



  .profUpper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 clamp(20px, calc(30vw / 7.68), 30px);
  }

    #recruit-int-prof .profUpper .profTextArea p {
      margin: 0;
      font-size: 12px; }
    #recruit-int-prof .profUpper .profTextArea p.sect {
      display: inline-block;
      padding: 0.5em 1em;
      border: 1px solid #fff;
      line-height: 1.25; }
      @media screen and (max-width: 767px) {
        #recruit-int-prof .profUpper .profTextArea p.sect {
          font-size: 12px;
          margin-bottom: 0 !important; } }
    #recruit-int-prof .profUpper .profTextArea h3.name {
      margin: 0.5em 0 0;
      font-weight: 600;
      line-height: 2; }
      @media screen and (min-width: 768px) {
        #recruit-int-prof .profUpper .profTextArea h3.name {
          font-size: 22px; } }
      @media screen and (max-width: 767px) {
        #recruit-int-prof .profUpper .profTextArea h3.name {
          font-size: 18px; } }
    #recruit-int-prof .profUpper .profTextArea p.division {
      line-height: 1.5; }
  #recruit-int-prof .profText {
    font-size: 14px;
    line-height: 1.75;
  padding: 20px 0;}

.recruitIntSection {
  background-color: transparent; }
  @media screen and (min-width: 768px) {
    .recruitIntSection {
      max-width: 1040px;
      padding-left: 20px;
      padding-right: 20px;
      margin: 0px auto; 
      display: flex;
      flex-wrap: wrap;
      gap: 15px 45px;
      align-items: center;
      justify-content: center;
    } }
  @media screen and (max-width: 767px) {
    .recruitIntSection {
      margin: 20px auto 0;
      padding-top: 0; } }
  .recruitIntSection * {
    font-feature-settings: "palt";
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box; }
  .recruitIntSection h2 {
    line-height: 1.5;
    text-align: left; }
    @media screen and (min-width: 768px) {
      .recruitIntSection h2 {
        font-size: clamp(20px,calc(30vw / 14),30px); width: 100%;} }
    @media screen and (max-width: 767px) {
      .recruitIntSection h2 {
        padding-bottom: .5em;
        font-size: 18px; } }
  .recruitIntSection p {
    line-height: 1.75;
    text-align: left; }
    @media screen and (min-width: 768px) {
      .recruitIntSection p {
        font-size: 16px; } }
    @media screen and (max-width: 767px) {
      .recruitIntSection p {
        font-size: 14px; } }

  .textArea {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  @media screen and (max-width: 767px) {
    .textArea {
      margin-bottom: 20px;
    }
  }
  .textArea.textArea--end {
    flex: auto;
  }

  .recruitIntSection.arrow {
    margin: 0 auto; gap:0;}
    .recruitIntSection.arrow img {
      display: block; }
      @media screen and (min-width: 768px) {
        .recruitIntSection.arrow img {
          margin: 0 auto 80px; } }
      @media screen and (max-width: 767px) {
        .recruitIntSection.arrow img {
          width: 41.38vw;
          margin: 0 auto 40px; } }
.arrow-item {
  width: 270px;
  margin: 0 auto;
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .recruit-section-wrapper .recruitIntSection:nth-of-type(2) figure {
    width: 401px;
  }
}
@media screen and (min-width: 768px) {
  .recruit-section-wrapper .recruitIntSection:nth-of-type(3) figure {
    width: 447px;
  }
}

#recruit-interview-below {
  margin: 0 auto;
  max-width: 1000px;
  padding-top: 0; }
  @media screen and (max-width: 767px) {
    #recruit-interview-below {
      width: 100%;
      margin: 0;}

  #recruit-interview-below .recruitInterviewList {
    margin: 0 auto;
    padding-bottom: 1em;
    justify-content: center;
    gap: min(1em,15px) 0;
    display: flex;
    flex-wrap: wrap;
  }
  #recruit-interview-below .recruitInterviewList li {
    width: 100%;
    max-width: 334px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
    @media screen and (min-width: 768px) {
      #recruit-interview-below .recruitInterviewList li {
        height: 165px; } }
    @media screen and (max-width: 767px) {
      #recruit-interview-below .recruitInterviewList li {
        height: min(33.77vw,165px);} }
    #recruit-interview-below .recruitInterviewList li > a h3 {
      margin: 0 auto;
      line-height: 1.8;
      margin-bottom: clamp(5px,calc(15vw / 10),15px);
    }
  #recruit-interview-below + section {
    margin-top: 0;
    padding-top: 0; }

    @media screen and (min-width: 768px) {
  .int-photo_text .textArea {
    order: 1; } }
  
/* フォーム */
#recruit-entryform,
#recruit-entryform-thanks {
  padding-bottom: 0; }
  #recruit-entryform h2,
  #recruit-entryform-thanks h2 {
    margin-bottom: 0.5em; }
  #recruit-entryform .descArea,
  #recruit-entryform-thanks .descArea {
    margin: 2em auto; }
    #recruit-entryform .descArea p,
    #recruit-entryform-thanks .descArea p {
      margin: 0; }
    @media screen and (min-width: 768px) {
      #recruit-entryform .descArea .descText,
      #recruit-entryform-thanks .descArea .descText {
        font-size: 22px; } }
    @media screen and (max-width: 767px) {
      #recruit-entryform .descArea .descText,
      #recruit-entryform-thanks .descArea .descText {
        font-size: 15px;
        margin-bottom: .5em !important; } }
  #recruit-entryform .req,
  #recruit-entryform-thanks .req {
    font-size: 83.3%;
    color: #e50012; }

form#mailformpro label.kiyaku.mfp_checked {
  background-color: #344f5b; }

#recruit-entryform-thanks {
  padding-bottom: 50px; }
  #recruit-entryform-thanks .descArea {
    margin: 3em auto; }
  #recruit-entryform-thanks .smalltext {
    line-height: 1.75; }
    @media screen and (max-width: 767px) {
      #recruit-entryform-thanks .smalltext {
        font-size: 12px; } }


/* 220209追加 */
.insta-link {
  color: #fff !important;
  font-size: 22px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .insta-link {
    font-size: 14px; 
  } 
}

.insta-link small {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .insta-link small {
    font-size: 10px;
  }
}

.insta-link span {
  display: inline-block;
  margin-left: 0.5em;
  width: 30px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .insta-link span {
    width: 20px;
  }
}

/* 230526追加 */
.mb50 {
  margin-bottom: 50px;
}

h3 {
  margin-bottom: 25px;
}

.recruit-anker {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.recruit-anker a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 2px solid #000;
  margin: 0 10px;
  width: 150px;
  background-color: #fff;
  color: #666;
  font-weight: 700;
  text-align: center;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
@media screen and (max-width: 767px) {
  .recruit-anker a {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .recruit-anker a:hover {
    text-decoration: none;
    background-color: #000;
    color: #fff;
  }

  .recruit-anker a br.sp {
    display: none;
  }
}

a.recruit-text-link {
  display: block;
  color: #666;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  a.recruit-text-link {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  a.recruit-text-link:hover {
    text-decoration: none;
  }
}

.target {
  position: relative;
  z-index: -1;
  padding-top: 88px;
  margin-top: -88px;
}
.container--enviroment .target {
  padding-top: 106px;
  margin-top: -106px;
}
@media screen and (max-width: 767px) {
  .target {
    padding-top: 44px;
    margin-top: -44px;
  }
  .container--enviroment .target {
    padding-top: 70px;
    margin-top: -70px;
  }
}

.requirementsWrap td p.strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .05em;
}

.requirements-body table {
    width: 100%;
    max-width: 1000px;
}

.iconWrap {
  width: 160px;
  margin: 0 auto 15px;
}

.alnC {
  text-align: center;
  font-size: 10px;
  line-height: 2.4em;
}


.recruit-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(50px,calc(100vw / 10),100px) 0;
  margin: 90px auto 50px;
  padding-left: 20px;
  padding-right: 20px;
}

.recruit-section-wrapper section {
  width: 100%;
}