@import url(https://fonts.googleapis.com/css?family=Varela+Round|Open+Sans:400,300,600,400italic,700);
body {
  width: 100%;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #888;
  font-size: 16px;
  line-height: 1.6em;
  background-color: #fff;
}

html {
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 30px;
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  color: #444;
}

blockquote {
  font-family: Georgia, arial, sans-serif;
  color: #bbb;
  font-size: 20px;
}

p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6em;
}

p.lead {
  font-weight: 600;
}

a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
}

.light {
  font-weight: 400;
}

img.img-responsive {
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .w-full {
    width: 100%;
  }
}

/* ------- Navigation ------------ */

#navigation {
  background: #fff;
  z-index: 9999;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 0 auto;
}

.navbar {
  margin-bottom: 0;
}

.navbar-brand {
  font-weight: 700;
}

.navbar-brand:focus {
  outline: 0;
}

/*.nav.navbar-nav {*/

/*    background-color: rgba(255,255,255,.6);*/

/*}*/

#menu .nav.navbar-bar {
  text-align: center;
  float: none;
  margin: 0 auto;
}

.navbar-custom ul.nav {
  text-align: center;
  float: none;
  margin: 0 auto;
}

.navbar-custom ul.nav li {
  float: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

.navbar-custom ul.nav li a {
  font-size: 13px;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
  font-weight: 700;
}

li.pc-nav {
  position: relative;
  bottom: 4px;
}

.navbar-custom .nav li a {
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
  outline: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
  outline: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggle {
  padding: 4px 6px;
  font-size: 14px;
  color: #fff;
}

.navbar-toggle:focus,
.navbar-toggle:active {
  outline: 0;
}

.navbar-default {
  background-color: #fff;
  border: none;
  display: none;
}

.navbar-custom ul.nav {
  text-align: center;
  float: none;
  margin: 0 auto;
  position: relative;
  top: 10px;
}

.navbar-custom ul.nav li a i {
  font-size: 2rem;
}

@media (max-width: 991.98px) and (min-width: 768px) {
  #menu {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-custom ul.nav li a {
    font-size: 11px;
    letter-spacing: 0px;
  }
}

/* loader */

#preloader {
  background: #ffffff;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

#loaderInner {
  background: #ffffff url(../img/spinner.gif) center center no-repeat;
  height: 60px;
  left: 50%;
  margin: -50px 0 0 -50px;
  position: absolute;
  top: 50%;
  width: 60px;
}

@keyframes boxSpin {
  0% {
    transform: translate(-10px, 0px);
  }
  25% {
    transform: translate(10px, 10px);
  }
  50% {
    transform: translate(10px, -10px);
  }
  75% {
    transform: translate(-10px, -10px);
  }
  100% {
    transform: translate(-10px, 10px);
  }
}

@keyframes shadowSpin {
  0% {
    box-shadow: 10px -10px #39cccc, -10px 10px #ffdc00;
  }
  25% {
    box-shadow: 10px 10px #39cccc, -10px -10px #ffdc00;
  }
  50% {
    box-shadow: -10px 10px #39cccc, 10px -10px #ffdc00;
  }
  75% {
    box-shadow: -10px -10px #39cccc, 10px 10px #ffdc00;
  }
  100% {
    box-shadow: 10px -10px #39cccc, -10px 10px #ffdc00;
  }
}

#load {
  z-index: 9999;
  background-color: #ff4136;
  opacity: 0.75;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  margin: -5px auto 0 auto;
  left: 0;
  right: 0;
  border-radius: 0px;
  border: 5px solid #ff4136;
  box-shadow: 10px 0px #39cccc, 10px 0px #01ff70;
  animation: shadowSpin 1s ease-in-out infinite;
}

/* misc */

hr {
  margin-top: 10px;
}

/* margins */

.marginbot-0 {
  margin-bottom: 0 !important;
}

.marginbot-10 {
  margin-bottom: 10px !important;
}

.marginbot-20 {
  margin-bottom: 20px !important;
}

.marginbot-30 {
  margin-bottom: 30px !important;
}

.marginbot-40 {
  margin-bottom: 40px !important;
}

.marginbot-50 {
  margin-bottom: 50px !important;
}

/* ===========================
--- General sections
============================ */

.home-section {
  padding-top: 120px;
  padding-bottom: 110px;
  display: block;
  position: relative;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1em;
}

.section-heading i {
  margin-bottom: 20px;
}

/* --- section bg var --- */

.bg-white {
  background: #fff;
}

.bg-gray {
  background: #f8f8f8;
}

.bg-dark {
  background: #575757;
}

/* --- section color var --- */

.text-light {
  color: #fff;
}

/* ===========================
--- Intro
============================ */

.intro {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.site-head h1 {
  text-align: center;
  color: #fff;
  font-size: 16px;
}

#intro.intro {
  padding: 200px 0 150px 0;
}

.intro .slogan {
  text-align: center;
}

.intro .page-scroll {
  text-align: center;
}

.intro .page-scroll a {
  color: #fff;
}

.brand-heading {
  font-size: 40px;
}

.intro-text {
  font-size: 18px;
}

.intro .slogan h2 {
  color: #fff;
  text-shadow: none;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  text-transform: uppercase;
  border-width: 0px;
  border-color: #000;
  border-style: none;
  text-shadow: -1px 0 1px #000;
}

.intro .slogan h4 {
  color: #fff;
  text-shadow: -1px 1px 1px #000;
}

/* ===========================
--- About
============================ */

.icon .fa {
  color: #fff;
}

/* ==========================
--- Gallery
============================= */

.item {
  margin: 10px;
}

.item img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===========================
--- Contact
============================ */

.form-wrapper {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 6px;
}

form#contact-form .form-group label {
  text-align: left !important;
  display: block;
  letter-spacing: 1px;
  font-size: 16px;
}

form#contact-form input,
form#contact-form select,
form#contact-form textarea {
  border-radius: 4px;
  border: 1px solid #eee;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  margin-bottom: 20px;
  background: #fefefe;
  color: #888;
}

form#contact-form input,
form#contact-form select {
  height: 40px;
}

form#contact-form button {
  border-radius: 4px;
  height: 40px;
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
}

form#contact-form input:focus,
form#contact-form select:focus,
form#contact-form textarea:focus {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#sendmessage {
  color: green;
  border: 1px solid green;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#sendmessage.show,
#errormessage.show,
.show {
  display: block;
}

/* ===========================
--- Footer
============================ */

footer {
  text-align: center;
  padding: 20px 0 10px;
}

footer ul {
  list-style: none;
  padding-left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

footer ul li a {
  font-size: 12px;
  display: block;
  padding: 10px 15px;
}

footer ul li a i {
  font-size: 1.4rem;
}

footer ul li:before {
  content: none;
}

footer p {
  color: #7b7777;
  font-size: 12px;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #ccc;
}

.credits {
  color: #fff;
}

@media (min-width: 768px) {
  .footer-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  footer p {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

/* ==========================
Parallax
============================= */

#separator {
  background-size: cover;
}

#separator .icon {
  margin-bottom: 20px;
}

#separator span {
  color: #fff;
}

#separator:after {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

/* ===========================
--- Elements
============================ */

.btn {
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.btn:hover {
  color: #fff;
}

.btn-circle {
  width: 70px;
  height: 70px;
  margin-top: 15px;
  padding: 7px 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 40px;
  color: #fff;
  background: 0 0;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.btn-circle.btn-dark {
  border: 2px solid #666;
  color: #666;
}

.btn-circle:hover,
.btn-circle:focus {
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-circle.btn-dark :hover,
.btn-circle.btn-dark :focus {
  outline: 0;
  color: #999;
  background: #fff;
}

.btn-circle.btn-dark :hover i,
.btn-circle.btn-dark :focus i {
  color: #999;
}

.page-scroll .btn-circle i.animated {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1s;
  -moz-transition-property: -moz-transform;
  -moz-transition-duration: 1s;
}

.page-scroll .btn-circle:hover i.animated {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {
  0 {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes pulse {
  0 {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

.btn-skin:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
  color: #fff;
  background-color: #666;
  border-color: #666;
}

.btn-default:hover,
.btn-default:focus {
  border: 1px solid #28c3ab;
  outline: 0;
  color: #000;
  background-color: #28c3ab;
}

.btn-huge {
  padding: 25px;
  font-size: 26px;
}

.banner-social-buttons {
  margin-top: 0;
}

/* Media queries */

@media (max-width: 768px) {
  .navbar-header .fa {
    color: #666;
  }
  .col-xs-6 {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .navbar-custom .nav.navbar-nav {
    background-color: rgba(255, 255, 255, 0.4);
  }
  .navbar.navbar-custom.navbar-fixed-top {
    margin-bottom: 30px;
  }
  .page-scroll a {
    width: 40px;
    height: 40px;
    margin-top: 10px;
    font-size: 20px;
  }
}

/*カスタム*/

body {
  background: #e8e5de;
}

h1.white-text {
  display: inline-block;
  color: #fff;
  line-height: 1.6;
  font-weight: 600;
  background-color: #33333370;
  padding: 30px;
  border: solid 5px;
}

.home-section {
  padding-top: 60px;
  padding-bottom: 0;
}

#about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-contents {
  padding: 30px 0;
}

.about-text-1 {
  position: relative;
  padding: 20px;
}

.about-text-2 {
  position: relative;
  padding: 20px;
  z-index: 99;
}

#interview {
  margin-top: 60px;
}

.interview-bg {
  height: 0;
  padding-top: 26%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

a.interview-btn {
  display: block;
  background: gray;
  color: #fff;
  max-width: 315px;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1.1em;
}

.oneday h2,
.oneday p {
  color: #fff;
}

.oneday {
  padding-bottom: 50px;
}

.horizontal_scroll_wrap {
  overflow-y: hidden;
  margin: 0 -10px;
  background: #eeeeeea8;
}

.scroll_lst {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 25px;
  margin: 25px 0 0;
  -webkit-overflow-scrolling: touch;
}

.scroll_item {
  margin-right: 10px;
  display: inline-block;
  width: 300px;
  border: 1px solid #ddd;
  background: #fff;
}

.scroll_item:first-child {
  margin-left: 10px;
}

.scroll_item_thum img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll_item_inr {
  display: block;
}

.scroll_item_info {
  white-space: normal;
  padding: 8px 8px 25px;
}

.scroll_item_ttl {
  font-size: 12px;
  color: #484848;
  line-height: 1.4;
  margin-bottom: 0;
}

.scroll_item_info h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

#data {
  padding-bottom: 50px;
}

#data ul {
  background: #fff;
  width: 150px;
  margin: 0 auto;
  padding: 10px 0 10px 22px;
  margin-bottom: 13px;
  color: #676b68;
  border: solid 0.5px #eee;
  text-align: left;
}

#data li {
  list-style-type: none;
}

li.man:before {
  background: #218ae9;
}

li.woman:before {
  background: #78dfec;
}

li.from-1:before {
  background: #1865af;
}

li.from-2:before {
  background: #1e84e9;
}

li.from-3:before {
  background: #30a2ba;
}

li.from-4:before {
  background: #3dc3da;
}

li.from-5:before {
  background: #79e0ef;
}

li.age-1:before {
  background: #1865af;
}

li.age-2:before {
  background: #1e84e9;
}

li.age-3:before {
  background: #30a2ba;
}

li.age-4:before {
  background: #3dc3da;
}

li.age-5:before {
  background: #79e0ef;
}

li:before {
  content: "";
  display: inline-block;
  height: 13px;
  width: 13px;
  margin-right: 5px;
  border-radius: 3px;
}

.data-p span {
  font-size: 38px;
  font-weight: 600;
  color: #3dc3da;
}

section.infograph {
  background: #fff;
  padding: 20px;
}

.card {
  padding: 48px;
}

.table {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 6px;
  text-align: left;
  margin-bottom: 50px;
}

.table th {
  width: 30%;
}

.table > tbody > tr > th {
  padding-left: 20px;
  padding-top: 18px;
}

.table > tbody > tr > td {
  padding: 13px 0;
  line-height: 2;
}

tr.text-white {
  background: #d43076;
  color: #fff;
  font-size: 1.4em;
  text-align: center;
  font-weight: 600;
}

section#program {
  /*padding-bottom: 60px;*/
  margin-top: 60px;
  z-index: 1;
}

.program-content {
  display: flex;
  margin-bottom: 20px;
}

.program-content img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-content-image {
  max-width: 320px;
}

.program-content-text p {
  text-align: left;
  font-size: 0.8em;
}

.program-content-text {
  padding: 15px;
}

footer {
  background-color: #614f2e;
}

footer p {
  color: #bdb8b8;
}

a:hover {
  color: #d43076;
}

a.interview-btn:hover {
  color: #d43076;
  background: #fff;
  outline: 1px solid;
}

.navbar-custom ul.nav li a:hover {
  color: #d43076;
}

li.sp-nav a {
  display: none;
}

.interview-contents > .container {
  background: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 30px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
    0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.btn-primary {
  color: #fff;
  background-color: #d43075;
  border-color: #d67ba1;
}

.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .row-eq-height {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .row.row-eq-height .col-md-4 {
    width: 33.2%;
  }
}

@media (max-width: 991px) {
  .about-text-1 {
    position: initial;
  }
  .about-text-2 {
    position: initial;
  }
  .about-text-3 {
    position: initial;
  }
}

@media (max-width: 767px) {
  li.sp-nav a {
    display: block;
  }
  li.pc-nav a {
    display: none;
  }
  li.sp-nav {
    position: relative;
    bottom: 30px;
  }
  .navbar-custom ul.nav li a {
    padding: 0 5px;
  }
  .about-nav {
    padding-top: 90px;
  }
  .navbar-default {
    display: block;
  }
  #intro.intro {
    padding: 15px 10px;
  }
}

@media (max-width: 664px) {
  .navbar-custom ul.nav li a {
    font-size: 10px;
	 display: block;
    padding: 4px;
  }
  .about-nav {
    padding-top: 120px;
	  z-index: -1;
  }
}

/* 募集職種ボタン追加 */
.navbar-header {
  display: -ms-flexbox;
  display: flex;
}
.entry-btn {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: 1rem;
  display: inline-block;
  padding: 5px 12px;
  background: #d43076;
  border: solid 1px #d43076;
  color: #fff;
  border-radius: 6px;
}
.entry-btn:hover,
.entry-btn:focus {
  background: #fff;
  border: solid 1px #d43076;
  color: #d43076;
}
.navbar-default .navbar-toggle {
  margin-right: 0;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.pp-contents h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 20px 0;
}
.pp-contents p {
  margin: 20px 0;
  line-height: 1.6;
}
.pp-contents ul {
  margin: 20px 0 0 30px;
}
.pp-contents ul li {
  list-style: outside decimal;
  line-height: 140%;
  margin: 10px 0 0 0;
}
.pp-contents ul li ul {
  margin: 15px 0 10px 10px;
}
.pp-contents ul li ul li {
  list-style: outside none;
  margin-left: 20px;
  text-indent: -1.5em;
}
.pp-contents ul li ul li ol li {
  list-style: outside lower-roman;
  margin-left: 20px;
  text-indent: -0.2em;
}
.pp-contents ul.child {
  margin: 15px 0 0 10px;
}
.pp-contents ul.child li {
  list-style: outside none;
  margin-left: 45px;
  text-indent: -1.7em;
}
.pp-contents ol {
  margin: 20px 0 0 40px;
}
.pp-contents ol li {
  list-style: outside decimal;
  line-height: 140%;
  margin: 10px 0 0 0;
}
.pp-contents ol li ol {
  margin-bottom: 20px;
}
.pp-contents ol li ol li {
  font-size: 100%;
}