@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

/* ======================================================================
 common
====================================================================== */
body {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 16px;
  color: black;
}
@media screen and (max-width: 779px) {
  body {
    font-size: 12px;
  }
}

a {
  text-decoration: none;
  color: black;
}

img {
  vertical-align: bottom;
}
@media screen and (max-width: 779px) {
  img {
    width: 100%;
  }
}

.container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 779px) {
  .container {
    width: 92%;
  }
}

.sm {
  display: none !important;
}

@media screen and (max-width: 779px) {
  .sm {
    display: block !important;
  }

  .md {
    display: none !important;
  }
}
.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.trans:hover,
.trans:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

/* iOSでのデフォルトスタイルをリセット */
input, select, textarea, button {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 16px;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
@media screen and (max-width: 779px) {
  input, select, textarea, button {
    font-size: 12px;
  }
}
input::-webkit-search-decoration, select::-webkit-search-decoration, textarea::-webkit-search-decoration, button::-webkit-search-decoration {
  display: none;
}
input::focus, select::focus, textarea::focus, button::focus {
  outline-offset: -2px;
}

select::-ms-expand {
  display: none;
}

main {
  overflow: hidden;
}

/* ======================================================================
 header
====================================================================== */
header {
  position: fixed;
  z-index: 999;
  width: 100%;
  left: 0;
  top: 0;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
header.active {
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 779px) {
  header {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 92%;
    z-index: 999;
    padding: 11px 4%;
  }
}
header .logo {
  width: 170px;
}
header .menu_btn {
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  right: 4%;
}
header .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
@media screen and (max-width: 779px) {
  header .menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
header .menu a {
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 779px) {
  header .menu a {
    display: block;
    text-align: center;
  }
}
header .menu a:not(.entry) {
  padding: 35px 15px;
}
@media screen and (max-width: 779px) {
  header .menu a:not(.entry) {
    padding: 4%;
  }
}
header .menu a.entry {
  background-color: #f7cad0;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFF7CAD0', endColorstr='#FF9FD8EE');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3Y2FkMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzlmZDhlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f7cad0), color-stop(100%, #9fd8ee));
  background-image: -moz-linear-gradient(left, #f7cad0 0%, #9fd8ee 100%);
  background-image: -webkit-linear-gradient(left, #f7cad0 0%, #9fd8ee 100%);
  background-image: linear-gradient(to right, #f7cad0 0%, #9fd8ee 100%);
  padding: 35px 10px;
  margin-left: 15px;
}
@media screen and (max-width: 779px) {
  header .menu a.entry {
    margin-left: 0;
    padding: 4%;
  }
}

/* ======================================================================
 footer
====================================================================== */
footer {
  text-align: center;
  font-size: 14px;
  padding: 20px 0;
}

/* ======================================================================
 main
====================================================================== */
.kv {
  position: relative;
}
@media screen and (max-width: 779px) {
  .kv {
    margin-top: 50px;
  }
}
.kv .box {
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  right: 10%;
  text-align: right;
}
.kv .box .txt {
  margin-top: 30px;
  font-size: 20px;
}
@media screen and (max-width: 779px) {
  .kv .box .txt {
    margin-top: 0;
    font-size: 14px;
  }
}
.kv .box .txt span {
  display: block;
  font-size: 48px;
  margin-top: 20px;
}
@media screen and (max-width: 779px) {
  .kv .box .txt span {
    font-size: 24px;
    margin-top: 0.5em;
  }
}
.kv > img {
  width: 100%;
}

.catch .ttl {
  text-align: center;
  position: relative;
  background: url("../img/recruit/bg01.png") no-repeat center;
  height: 326px;
  margin-top: 45px;
}
@media screen and (max-width: 779px) {
  .catch .ttl {
    background-size: 50%;
    height: 163px;
    margin-top: 7%;
  }
}
.catch .ttl span {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 779px) {
  .catch .ttl span {
    font-size: 18px;
    line-height: 1.7;
  }
}
.catch .txt {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 779px) {
  .catch .txt {
    text-align: left;
  }
}

.slick .slick-slide {
  outline: none;
}
.slick img {
  width: 100%;
}

#glam {
  padding-bottom: 100px;
}
@media screen and (max-width: 779px) {
  #glam {
    padding-bottom: 3%;
  }
}
#glam .container > .ttl {
  z-index: 1;
  position: relative;
  text-align: right;
  font-size: 40px;
  height: 150px;
  padding-top: 50px;
}
@media screen and (max-width: 779px) {
  #glam .container > .ttl {
    height: auto;
    font-size: 20px;
    padding-top: 10%;
  }
}
#glam .container > .ttl img {
  z-index: -1;
  position: absolute;
  right: -200px;
  bottom: 0;
}
@media screen and (max-width: 779px) {
  #glam .container > .ttl img {
    position: static;
  }
}
#glam .container .list {
  margin-top: -170px;
}
@media screen and (max-width: 779px) {
  #glam .container .list {
    margin-top: 5%;
  }
}
#glam .container .list li {
  position: relative;
  margin-bottom: 10%;
}
#glam .container .list li.sec01 {
  padding-bottom: 200px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec01 {
    padding-bottom: 10%;
  }
}
#glam .container .list li.sec01 .pic {
  position: absolute;
  left: -190px;
  bottom: 0;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec01 .pic {
    bottom: 0;
    left: auto;
    right: 0;
    width: 50%;
  }
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec01 .img {
    width: 60%;
    margin-top: 5%;
  }
}
#glam .container .list li.sec01 .detail {
  width: 625px;
  position: absolute;
  right: 0;
  bottom: 85px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec01 .detail {
    width: 100%;
    position: static;
  }
}
#glam .container .list li.sec02 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec02 {
    display: block;
  }
}
#glam .container .list li.sec02 .detail {
  width: 625px;
  margin-right: 30px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec02 .detail {
    width: 100%;
    margin-right: 0;
  }
}
#glam .container .list li.sec02 .img {
  margin-right: -252px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec02 .img {
    margin-right: 0;
  }
}
#glam .container .list li.sec03 {
  padding-top: 100px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec03 {
    padding-top: 0;
  }
}
#glam .container .list li.sec03 .detail {
  width: 625px;
  margin-top: 50px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec03 .detail {
    width: 100%;
    margin-top: 5%;
  }
}
#glam .container .list li.sec03 .img {
  position: absolute;
  right: -160px;
  bottom: 50px;
}
#glam .container .list li.sec04 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec04 {
    display: block;
  }
}
#glam .container .list li.sec04 .detail {
  order: 2;
  width: 625px;
  margin-left: 30px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec04 .detail {
    width: 100%;
    margin-left: 0;
  }
}
#glam .container .list li.sec04 .img {
  margin-left: -170px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec04 .img {
    margin-left: 0;
    width: 70%;
  }
}
#glam .container .list li.sec04 .pic {
  position: absolute;
  bottom: -55px;
  right: -190px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec04 .pic {
    bottom: 0;
    right: 0;
    width: 50%;
  }
}
#glam .container .list li.sec05 {
  padding-top: 65px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec05 {
    padding-top: 0;
  }
}
#glam .container .list li.sec05 .detail {
  width: 500px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec05 .detail {
    width: 100%;
  }
}
#glam .container .list li.sec05 .img {
  text-align: center;
  margin-top: -110px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec05 .img {
    margin-top: 0;
  }
}
#glam .container .list li.sec06 {
  padding-top: 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec06 {
    padding-top: 0;
    display: block;
  }
}
#glam .container .list li.sec06 .detail {
  order: 2;
  width: 625px;
  margin-left: 30px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec06 .detail {
    width: 100%;
    margin-left: 0;
  }
}
#glam .container .list li.sec06 .img {
  margin-left: -76px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec06 .img {
    margin-left: 0;
  }
}
#glam .container .list li.sec06 .pic {
  position: absolute;
  bottom: -55px;
  right: -190px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li.sec06 .pic {
    position: static;
  }
}
#glam .container .list li .gram_ttl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-bottom: 5px;
  line-height: 1.3;
}
#glam .container .list li .gram_ttl .num {
  font-family: "Yellowtail", cursive;
  font-size: 40px;
  font-style: italic;
  margin-right: 0.1em;
}
@media screen and (max-width: 779px) {
  #glam .container .list li .gram_ttl .num {
    font-size: 20px;
    margin-right: 0.5em;
  }
}
#glam .container .list li .gram_ttl .ttl {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li .gram_ttl .ttl {
    font-size: 14px;
  }
}
#glam .container .list li .gram_ttl:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f7cad0;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFF7CAD0', endColorstr='#FF9FD8EE');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3Y2FkMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzlmZDhlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f7cad0), color-stop(100%, #9fd8ee));
  background-image: -moz-linear-gradient(left, #f7cad0 0%, #9fd8ee 100%);
  background-image: -webkit-linear-gradient(left, #f7cad0 0%, #9fd8ee 100%);
  background-image: linear-gradient(to right, #f7cad0 0%, #9fd8ee 100%);
}
#glam .container .list li .detail .txt {
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 779px) {
  #glam .container .list li .detail .txt {
    margin-top: 1em;
    line-height: 1.7;
  }
}

#data {
  background: #fef3e7;
  padding-bottom: 50px;
}
@media screen and (max-width: 779px) {
  #data {
    padding-bottom: 1%;
  }
}
#data .container > .ttl {
  z-index: 1;
  position: relative;
  font-size: 40px;
  padding-top: 80px;
}
@media screen and (max-width: 779px) {
  #data .container > .ttl {
    height: auto;
    font-size: 20px;
    padding-top: 10%;
  }
}
#data .container > .ttl img {
  z-index: -1;
  position: absolute;
  left: -200px;
  top: -50px;
}
@media screen and (max-width: 779px) {
  #data .container > .ttl img {
    position: static;
  }
}
#data .container .check {
  position: absolute;
  right: -200px;
  top: 50px;
}
@media screen and (max-width: 779px) {
  #data .container .check {
    right: 0;
    top: 5%;
    width: 35%;
  }
}
#data .container .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 100px;
}
@media screen and (max-width: 779px) {
  #data .container .list {
    margin-top: 5%;
  }
}
#data .container .list li {
  margin-bottom: 30px;
  width: 313px;
}
@media screen and (max-width: 779px) {
  #data .container .list li {
    width: 48%;
    margin-bottom: 7%;
  }
}
#data .container .list li:not(:nth-child(3n)) {
  margin-right: 30px;
}
@media screen and (max-width: 779px) {
  #data .container .list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 779px) {
  #data .container .list li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
#data .container .list li .txt {
  line-height: 2;
}
@media screen and (max-width: 779px) {
  #data .container .list li .txt {
    line-height: 1.7;
  }
}
#data .container .list li .img {
  margin-bottom: 10px;
}

#voice {
  padding-bottom: 100px;
}
@media screen and (max-width: 779px) {
  #voice {
    padding-bottom: 7%;
  }
}
#voice .container > .ttl {
  z-index: 1;
  position: relative;
  text-align: right;
  font-size: 40px;
  padding-top: 140px;
}
@media screen and (max-width: 779px) {
  #voice .container > .ttl {
    height: auto;
    font-size: 20px;
    padding-top: 10%;
  }
}
#voice .container > .ttl img {
  z-index: -1;
  position: absolute;
  right: -300px;
  top: -30px;
}
@media screen and (max-width: 779px) {
  #voice .container > .ttl img {
    position: static;
  }
}
#voice .container .list li .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 779px) {
  #voice .container .list li .box {
    display: block;
    margin-top: 10%;
  }
}
@media screen and (max-width: 779px) {
  #voice .container .list li .box .img {
    width: 70%;
    margin: 0 auto;
  }
}
#voice .container .list li .box .detail {
  margin-left: 40px;
}
@media screen and (max-width: 779px) {
  #voice .container .list li .box .detail {
    margin-left: 0;
  }
}
#voice .container .list li .box .detail .profile {
  font-weight: bold;
  margin-bottom: 60px;
}
@media screen and (max-width: 779px) {
  #voice .container .list li .box .detail .profile {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 779px) {
  #voice .container .list li .box .detail .profile .area {
    width: 50%;
  }
}
#voice .container .list li .box .detail .profile .name {
  font-size: 30px;
  margin: 30px 0 20px;
}
@media screen and (max-width: 779px) {
  #voice .container .list li .box .detail .profile .name {
    font-size: 20px;
    margin: 3% 0;
  }
}
#voice .container .list li .box .detail .profile .txt {
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 779px) {
  #voice .container .list li .box .detail .profile .txt {
    font-size: 12px;
  }
}
#voice .container .list li .box .detail > .txt {
  line-height: 2;
}
@media screen and (max-width: 779px) {
  #voice .container .list li .box .detail > .txt {
    line-height: 1.7;
  }
}
@media screen and (max-width: 779px) {
  #voice .container .list li .cap {
    text-align: center;
    margin: 1em;
  }
}
#voice .container .list li .onoff {
  text-align: center;
}
@media screen and (max-width: 779px) {
  #voice .container .list li .onoff .img {
    display: none;
  }
}
#voice .container .list li .onoff .more {
  background: #fef3e7;
  padding: 3%;
  margin-top: 5%;
}

#insta {
  padding-bottom: 100px;
}
@media screen and (max-width: 779px) {
  #insta {
    padding-bottom: 5%;
  }
}
#insta.career {
  background: #fef3e7;
}
@media screen and (max-width: 779px) {
  #insta {
    padding-bottom: 7%;
  }
}
#insta .container > .ttl {
  z-index: 1;
  position: relative;
  font-size: 40px;
  padding-top: 120px;
  margin-bottom: 50px;
}
@media screen and (max-width: 779px) {
  #insta .container > .ttl {
    line-height: 1.3;
    height: auto;
    font-size: 20px;
    padding-top: 10%;
    margin-bottom: 5%;
  }
}
#insta .container > .ttl img {
  z-index: -1;
  position: absolute;
  left: -200px;
  top: -50px;
}
@media screen and (max-width: 779px) {
  #insta .container > .ttl img {
    position: static;
  }
}
#insta .container > .txt {
  width: 600px;
  line-height: 2;
  position: absolute;
  right: 0;
  top: 100px;
}
@media screen and (max-width: 779px) {
  #insta .container > .txt {
    position: static;
    width: 100%;
    line-height: 1.7;
    margin-bottom: 5%;
  }
}
#insta .dummy img {
  width: 100%;
}

#fc {
  background: #fef3e7;
  padding-bottom: 100px;
}
#fc.career {
  background: white;
}
@media screen and (max-width: 779px) {
  #fc {
    padding-bottom: 7%;
  }
}
#fc .container > .ttl {
  text-align: center;
  z-index: 1;
  position: relative;
  font-size: 40px;
  padding-top: 120px;
}
@media screen and (max-width: 779px) {
  #fc .container > .ttl {
    text-align: left;
    line-height: 1.3;
    height: auto;
    font-size: 20px;
    padding-top: 10%;
  }
}
#fc .container > .ttl img {
  z-index: -1;
  position: absolute;
  left: -200px;
  top: -50px;
}
@media screen and (max-width: 779px) {
  #fc .container > .ttl img {
    position: static;
  }
}
#fc .container > .txt {
  width: 625px;
  line-height: 2;
  margin: 70px auto 50px;
}
@media screen and (max-width: 779px) {
  #fc .container > .txt {
    width: 100%;
    line-height: 1.7;
    margin: 5% 0 1%;
  }
}
#fc .container .img {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 779px) {
  #fc .container .img {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#fc .container .img li:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 779px) {
  #fc .container .img li:not(:last-child) {
    margin-right: 0;
  }
}
  #fc .container .img li {
    width: 33.3%;
  }
@media screen and (max-width: 779px) {
  #fc .container .img li {
    width: 48%;
    height: auto;
    margin-top: 4%;
  }
  #fc .container .img li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}

#detail {
  padding-bottom: 50px;
}
@media screen and (max-width: 779px) {
  #detail {
    padding-bottom: 7%;
  }
}
#detail .container > .ttl {
  z-index: 1;
  position: relative;
  font-size: 40px;
  padding-top: 120px;
}
@media screen and (max-width: 779px) {
  #detail .container > .ttl {
    text-align: left;
    line-height: 1.3;
    height: auto;
    font-size: 20px;
    padding-top: 10%;
  }
}
#detail .container > .ttl img {
  z-index: -1;
  position: absolute;
  left: -200px;
  top: -50px;
}
@media screen and (max-width: 779px) {
  #detail .container > .ttl img {
    position: static;
  }
}
#detail .container .flow01 {
  margin-top: -130px;
}
@media screen and (max-width: 779px) {
  #detail .container .flow01 {
    margin-top: 0;
  }
}
#detail .container .flow02 {
  margin-top: 30px;
}
@media screen and (max-width: 779px) {
  #detail .container .flow02 {
    margin-top: 4%;
  }
}

#description {
  padding-bottom: 50px;
}
@media screen and (max-width: 779px) {
  #description {
    padding-bottom: 7%;
  }
}
#description .container > .ttl {
  position: relative;
  text-align: center;
  background: url("../img/recruit/bg02.png") no-repeat center;
  height: 215px;
  font-size: 40px;
}
@media screen and (max-width: 779px) {
  #description .container > .ttl {
    background-size: 50%;
    height: 163px;
    margin-top: 7%;
    font-size: 18px;
  }
}
#description .container > .ttl span {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
#description .container .dummy {
  background: #e5e5e5;
  height: 700px;
}
@media screen and (max-width: 779px) {
  #description .container .dummy {
    height: 400px;
  }
}
#description .container table {
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 779px) {
  #description .container table {
    width: 100%;
    margin-right: 0;
  }
}
#description .container table th, #description .container table td {
  border-bottom: 1px dotted #c9c9c9;
  padding: 15px 20px;
  line-height: 1.3;
}
#description .container table th {
  width: 20%;
}
@media screen and (max-width: 779px) {
  #description .container table th {
    width: 30%;
  }
}
#description .container .txt {
  text-align: center;
  margin-top: 1em;
}

#company {
  padding-bottom: 100px;
}
@media screen and (max-width: 779px) {
  #company {
    padding-bottom: 7%;
  }
}
#company .container > .ttl {
  position: relative;
  text-align: center;
  background: url("../img/recruit/bg03.png") no-repeat center;
  height: 215px;
  font-size: 40px;
}
@media screen and (max-width: 779px) {
  #company .container > .ttl {
    background-size: 50%;
    height: 163px;
    margin-top: 7%;
    font-size: 18px;
  }
}
#company .container > .ttl span {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
#company .container .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 779px) {
  #company .container .box {
    display: block;
  }
}
#company .container .box table {
  width: 475px;
  margin-right: 50px;
}
@media screen and (max-width: 779px) {
  #company .container .box table {
    width: 100%;
    margin-right: 0;
  }
}
#company .container .box table th, #company .container .box table td {
  border-bottom: 1px dotted #c9c9c9;
  padding: 15px 20px;
}
#company .container .box .map iframe {
  width: 475px;
  height: 380px;
}
@media screen and (max-width: 779px) {
  #company .container .box .map iframe {
    width: 100%;
  }
}

#entry {
  background: #fef3e7;
  padding: 40px 0 100px;
}
@media screen and (max-width: 779px) {
  #entry {
    padding: 0 0 10%;
  }
}
#entry .container > .ttl {
  position: relative;
  text-align: center;
  background: url("../img/recruit/bg04.png") no-repeat center;
  height: 174px;
  font-size: 40px;
}
@media screen and (max-width: 779px) {
  #entry .container > .ttl {
    background-size: 50%;
    height: 163px;
    font-size: 18px;
  }
}
#entry .container > .ttl span {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}
#entry .container .form {
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 779px) {
  #entry .container .form {
    width: 100%;
  }
}
#entry .container .form li:not(:last-child) {
  margin-bottom: 20px;
}
#entry .container .form li .ttl {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
}
#entry .container .form li .ttl span {
  display: inline-block;
  vertical-align: middle;
  color: white;
  background: #f47967;
  text-align: center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-left: 10px;
  font-size: 14px;
  width: 42px;
  height: 23px;
  line-height: 23px;
}
@media screen and (max-width: 779px) {
  #entry .container .form li .ttl {
    font-size: 12px;
  }
  #entry .container .form li .ttl span {
    font-size: 11px;
  }
}
#entry .container .form li .input input {
  border: 1px solid #e5e5e5;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  padding: 7px;
  font-size: 16px;
}
#entry .container .form li .check {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 15px;
}
#entry .container .form li .check label {
  cursor: pointer;
  font-weight: bold;
  margin-right: 30px;
  font-size: 16px;
}
#entry .container .form li .check label input {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  background: url("../img/recruit/check_off.png");
  background-size: cover;
}
#entry .container .form li .check label input:checked {
  background: url("../img/recruit/check_on.png");
  background-size: cover;
}
#entry .container .btn {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 779px) {
  #entry .container .btn {
    margin-top: 5%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column-reverse;
    -moz-flex-flow: column-reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  #entry .container .form li .check label {
    font-size: 12px;
  }
  #entry .container .form li .input input {
    font-size: 12px;
  }
}
#entry .container .btn input {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  color: white;
  background: #f47967;
  width: 400px;
  height: 80px;
  font-size: 20px;
}
#entry .container .btn input.btn {
  margin-top: 3%;
}
#entry .container .btn input.back {
  background: #999;
}
@media screen and (max-width: 779px) {
  #entry .container .btn input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}

.mw_wp_form {
  margin-top: 40px;
}
.mw_wp_form .error {
  font-size: 15px !important;
}
.mw_wp_form .check {
  font-size: 16px !important;
}
.mw_wp_form .input {
  font-size: 16px !important;
}

@media screen and (max-width: 779px) {
  .mw_wp_form {
    margin-top: 0px;
  }
  .mw_wp_form .error {
    font-size: 11px !important;
  }
  .mw_wp_form .check {
    font-size: 12px !important;
  }
  .mw_wp_form .input {
    font-size: 12px !important;
  }
}