@charset "UTF-8";
html,
body {
  font-family: "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN",
 "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
 Meiryo,
 sans-serif; 
background-color: #f1eeeb;
}

/*==================================
link
==================================*/
a {
  -webkit-transition: 0.5s;
  transition: 0.5s; }

a:hover {
  opacity: 0.5; }

/*==================================
layout
==================================*/
.photo_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom; }

.photo_box-recruit img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 80%;
     object-position: 50% 80%;
  vertical-align: bottom; }

.photo_box-title img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom; }

.text_box {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 0; }

.text_box.gre_pa {
  padding: 150px 0; }

dl {
  width: 250;
  margin-bottom: 10px;
  font-size: 10px; }

dt {
  float: left; }

dd {
}

/*==================================
bg
==================================*/
.bg-blue {
  background-color: #28395a;
  color: #fff; }

.bg-brawn {
  background-color: #945b29;
  color: #fff; }

.bg-palebrawn {
  background-color: #decaad;
  color: #945b29; }

.bg-gray {
  background-color: #776d6c;
  color: #fff; }

.bg-palegray {
  background-color: #f1eeeb;
  color: #000; }

/*==================================
text
==================================*/
.text-white {
  color: #fff; }

.text-gray-s {
  color: #776d6c;
  font-size: 12px; }

.fz11 {
  font-size: 11px; }

.fz12 {
  font-size: 12px; }

.ta-r {
  text-align: right; }

/*==================================
link
==================================*/
.txtlink-s {
  font-size: 11px; }
  .txtlink-s a {
    color: #776d6c;
    text-decoration: none; }

/*==================================
other
==================================*/
.hr {
  width: 90%;
  border-top: 1px solid #f1eeeb; }

/*==================================
nav
==================================*/
/* drawer
--------------------------------------------*/
#nav-toggle {
  position: fixed;
  top: 17px;
  right: 20px;
  height: 30px;
  cursor: pointer; }

#nav-toggle > div {
  position: relative;
  width: 35px; }

#nav-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #28395a;
  -webkit-transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
  transition: transform 0.6s ease-in-out, top 0.5s ease, -webkit-transform 0.6s ease-in-out; }

#nav-toggle span:nth-child(1) {
  top: 0; }

#nav-toggle span:nth-child(2) {
  top: 12px; }

#nav-toggle span:nth-child(3) {
  top: 24px; }

#nav-toggle:hover span:nth-child(1) {
  top: 4px; }

#nav-toggle:hover span:nth-child(3) {
  top: 20px; }

.open #nav-toggle span {
  background: #28395a; }

.open #nav-toggle span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.open #nav-toggle span:nth-child(2) {
  top: 10px;
  left: 50%;
  width: 0; }

.open #nav-toggle span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }

/* z-index */
#nav-toggle {
  z-index: 1000; }

#container {
  z-index: 900; }

#gloval-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  opacity: 0; }
  #gloval-nav a {
    display: block;
    margin-bottom: 10px;
    color: #28395a;
    font-size: 30px;
    text-decoration: none; }
  #gloval-nav ul {
    list-style: none; }

/* open */
.open {
  overflow: hidden; }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1; }
  .open #gloval-nav li {
    -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity 0.9s ease;
    transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; }

/*==================================
about
==================================*/
.list-dot {
  margin: 30px 0 0 0;
  font-size: 14px;
  line-height: 25px;
  list-style: none; }
  .list-dot li {
    position: relative;
    padding-left: 1.3em;
    font-weight: bold; }
    .list-dot li:before {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 1.3em;
      height: 1.3em;
      content: "●"; }

/*==================================
flex
==================================*/
.flex-sh1 {
  -ms-flex-negative: 1;
      flex-shrink: 1; }

.flex-sh1 {
  -ms-flex-negative: 2;
      flex-shrink: 2; }

.flex-sh1 {
  -ms-flex-negative: 3;
      flex-shrink: 3; }

.flex-sh1 {
  -ms-flex-negative: 4;
      flex-shrink: 4; }

.flex-sh1 {
  -ms-flex-negative: 5;
      flex-shrink: 5; }

/*==================================
yohaku
==================================*/
.mt0 {
  margin-top: 0px !important; }

.mt10 {
  margin-top: 10px !important; }

.mt20 {
  margin-top: 20px !important; }

.mt30 {
  margin-top: 30px !important; }

.mt40 {
  margin-top: 40px !important; }

.mt50 {
  margin-top: 50px !important; }

.mt60 {
  margin-top: 60px !important; }

.mt70 {
  margin-top: 70px !important; }

.mt80 {
  margin-top: 80px !important; }

.mt90 {
  margin-top: 90px !important; }

.mt100 {
  margin-top: 100px !important; }

.mr0 {
  margin-right: 0px !important; }

.mr10 {
  margin-right: 10px !important; }

.mr20 {
  margin-right: 20px !important; }

.mr30 {
  margin-right: 30px !important; }

.mr40 {
  margin-right: 40px !important; }

.mr50 {
  margin-right: 50px !important; }

.mr60 {
  margin-right: 60px !important; }

.mr70 {
  margin-right: 70px !important; }

.mr80 {
  margin-right: 80px !important; }

.mr90 {
  margin-right: 90px !important; }

.mr100 {
  margin-right: 100px !important; }

.mb0 {
  margin-bottom: 0px !important; }

.mb10 {
  margin-bottom: 10px !important; }

.mb20 {
  margin-bottom: 20px !important; }

.mb30 {
  margin-bottom: 30px !important; }

.mb40 {
  margin-bottom: 40px !important; }

.mb50 {
  margin-bottom: 50px !important; }

.mb60 {
  margin-bottom: 60px !important; }

.mb70 {
  margin-bottom: 70px !important; }

.mb80 {
  margin-bottom: 80px !important; }

.mb90 {
  margin-bottom: 90px !important; }

.mb100 {
  margin-bottom: 100px !important; }

.ml0 {
  margin-left: 0px !important; }

.ml10 {
  margin-left: 10px !important; }

.ml20 {
  margin-left: 20px !important; }

.ml30 {
  margin-left: 30px !important; }

.ml40 {
  margin-left: 40px !important; }

.ml50 {
  margin-left: 50px !important; }

.ml60 {
  margin-left: 60px !important; }

.ml70 {
  margin-left: 70px !important; }

.ml80 {
  margin-left: 80px !important; }

.ml90 {
  margin-left: 90px !important; }

.ml100 {
  margin-left: 100px !important; }

.plr15 {
  padding: 0 15px 0 15px; }

@media screen and (max-width:812px) {
  .text_box.gre_pa {
    padding: 48px 0; }
}