@import url("reset.css");
@import url("layouts.css");
@import url("parts.css");
@import url("utility.css");
@import url("form.css");

b {
  font-weight: bold !important;
}

body {
  background: url(../img/bg_body.png);
  background-size: 100%;
}

.modaal-inner-wrapper {
  padding: 60px 10px !important;
}

.modaal-container {
  border-radius: 10px;
}

.modaal-content-container {
  padding: 0px 15px !important;
  margin: 20px 0;
}

img {
  max-width: 100%;
  height: auto;
}

.bg_lightbrown {
  background: #fdecdb;
  padding: 20px;
  box-sizing: border-box;
}

#btn-back {
  text-decoration: none;
  color: #1AA2D6;
  font-size: 14px;
}

header {
  background: #fff;
  border-bottom: 2px solid #fdecdb;
}

header *, header a {
  color: #C70025;
}

header .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header h1 {
  font-weight: bold;
  font-size: 26px;
}

header ul {
  padding: 10px 0 20px;
  text-align: right;
}

header ul li {
  display: inline-block;
  padding-right: 15px;
}

header ul li a {
  text-decoration: none;
}

header div.menu {
}

header div.menu > ul > li {
  padding: 5px 10px;
  margin: 0 10px;
}

header div.menu > ul > li:hover {
}

header div.menu > ul > li.active > a {
  border-bottom: 4px solid #000;
}

header div.menu ul li {
  display: inline;
  font-weight: bold;
  vertical-align: text-bottom;
}

header ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  text-align: left;
  padding-left: 20px;
  background: #fff;
}

header ul.menu__second-level li {
  display: block !important;
}

header .menu > ul > li:hover {
  -webkit-transition: all .5s;
  transition: all .5s;
}

header .menu > ul > li.menu__single {
  position: relative;
}

header li.menu__single ul.menu__second-level {
  position: absolute;
  top: 20px;
  left: 0;
  width: 200px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

header li.menu__single ul.menu__second-level li {
}

header li.menu__single ul.menu__second-level li a {
  display: block;
  padding: 5px 0;
}

header li.menu__single:hover ul.menu__second-level {
  top: 30px;
  visibility: visible;
  opacity: 1;
}

/* ハンバーガーメニュー */
ul.sp_menu {
  margin-top: 30px;
}
ul.sp_menu li {
  text-align: left;
  color: #666;
  border-top: 1px solid #666;
  font-size: 16px;
}
ul.sp_menu li:last-child {
  border-bottom: 1px solid #666;
}
ul.sp_menu li a {
  color: #666;
  display: block;
  padding: 15px 0;
  padding-left: 30px;
}
ul.sp_menu li i {
  padding-right: 10px;
}
#nav-drawer {
  position: relative;
  margin-left: auto;
  position: absolute;
  right: 0;
  background: #c70025;
  padding: 10px;
  top: 0;
  height: 50px;
  box-sizing: border-box;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}
/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -12px;
}
#nav-open span:after {
  bottom: -25px;
}
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /*最前面に*/
  width: 100%;
  /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 100;
  /*最大幅（調整してください）*/
  height: 100%;
  background: #fff;
  /*背景色*/
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  /*滑らかに表示*/
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  /*左に隠しておく*/
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;
  /*カバーを表示*/
  opacity: .5;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  /*中身を表示（右へスライド）*/
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
          box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

footer {
  background: #fdecdb;
  padding: 0 0 20px;
}

footer ._inner {
  background: #fdecdb;
  padding: 0;
}

footer ul li {
  padding: 5px 0;
}

footer ul li a {
  color: #C70025;
  text-decoration: none;
  font-size: 14px;
}

footer .text-info {
  display: inline-block;
  text-align: left;
  color: #C70025;
  line-height: 1.4;
  font-size: 14px;
}

.cpr {
  font-size: 12px;
}

.sitemap {
  text-align: right;
}

.sitemap a {
  text-decoration: none;
  font-size: 12px;
  padding-left: 20px;
}

.btn.btn-contact {
  background: #FFE100;
  color: #000;
  margin-left: auto;
}

.card {
  background: #fdecdb;
  border-radius: 15px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.card .card-header {
  text-align: center;
  padding: 20px 0;
}

.card .card-header h2 {
  color: #fff;
  margin: 0;
  font-size: 20px;
}

.card .card-body {
  background: #fff;
  text-align: center;
  padding: 20px;
  line-height: 1.6;
}

.card .card-footer {
  text-align: center;
  padding: 15px 0;
}

.card .card-footer a {
  color: #fff;
  text-decoration: none;
}

/* section */
section#mv {
  margin: 0 0 50px;
  background: #fff;
}

section#point {
  margin: 50px 0;
}

section#point h2 {
  text-align: center;
  font-size: 40px;
  color: #ec6d56;
}

section#infomation {
  margin: 50px 0;
}

section#infomation ._inner, section#infomation .__inner {
  /* background: #fdecdb; */
}

section#kv div._inner, section#kv div.__inner {
  padding: 20px 0;
}

section#kv div._inner p.text, section#kv div.__inner p.text {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

section#contents {
  margin: 50px 0;
}

section#contents h2 {
  font-size: 30px;
  text-align: center;
  color: #000;
  padding: 15px 0;
}

section#contents h2.ttl-point {
  color: #ec6d56;
}

section#contents .list {
  background: #fdecdb;
}

section#contents .list .list-box {
  background: #fff;
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin: 1%;
}

section#contents .list .list-box .ttl {
  font-weight: bold;
  border-bottom: 2px solid #000;
  padding: 0 0 10px;
  text-align: center;
}

section#contents .list .list-box .info-text {
  padding: 15px 0;
  line-height: 1.4;
  font-size: 14px;
  word-break: break-all;
}

section#contents .list .list-box .info-text span {
  color: #5185C5;
  font-weight: bold;
}

section#contents .list .list-box .btn {
  background: #5185C5;
  color: #fff;
  border: 1px solid #5185C5;
  width: 100%;
  font-size: 16px;
}

section#contents .list .list-box .btn:hover {
  background: #fff;
  color: #5185C5;
}

section#contents .list .list-box.recruit .info-text span {
  color: #fbb03b;
  font-weight: bold;
}

section#contents .list .list-box .info-text span {
  color: #ED6D46;
  font-weight: bold;
}

section#contents .list .list-box.recruit .btn {
  background: #fbb03b;
  border: 1px solid #fbb03b;
}

section#contents .list .list-box.recruit .btn:hover {
  background: #fff;
  color: #fbb03b;
}

section#contents .list .list-box .btn {
  background: #ED6D46;
  color: #fff;
  border: 1px solid #ED6D46;
  width: 100%;
  font-size: 16px;
}

section#contents .list .list-box .btn:hover {
  background: #fff;
  color: #ED6D46;
}


.corner-list {
  border-bottom: 1px dotted #BA9D7F;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.corner-list .corner-group {
  width: 200px;
}

.corner-list .corner-group dl {
  padding: 0 10px;
  box-sizing: border-box;
}

.corner-list .corner-group dl dt {
  background: #BA9D7F;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

.corner-list .corner-group dl dd {
  background: #fff;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

.corner-list .corner-content p {
  line-height: 1.4;
}

.corner-list .corner-content {
  width: calc(100% - 200px);
}

.box-search {
  background: #fff;
  border: 2px solid #ED6D46;
  padding: 15px;
  box-sizing: border-box;
}

.box-search dl {
  margin-bottom: 20px;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.box-search dl dt {
  background: #ED6D46;
  color: #fff;
  text-align: center;
  padding: 20px;

  width: 150px;
}

.box-search dl dd {
  color: #000;
  width: calc(100% - 150px);
  padding-left: 20px;
  box-sizing: border-box;
}

.box-search button[type="submit"] {
  border: 3px solid #ED6D46;
  color: #ED6D46;
  background: #fff;
  font-weight: bold;
  margin: 10px auto;
  padding: 5px 40px;
  font-size: 18px;
  border-radius: 30px;
}

.box-search.green {
  background: #E0F0E2;
}

.box-search.green dl dt {
  background: #3EB370;
}

.box-search.green button[type="submit"] {
  border: 3px solid #3EB370;
  color: #3EB370;
}

.box-search.green .btn {
  background: #3EB370;
  color: #fff;
  padding: 5px 30px;
  font-size: 14px;
  min-width: auto;
  border-radius: 20px;
}

.box-search.yellow {
  border: 2px solid #fbb03b;
}

.box-search.yellow dl dt {
  background: #fbb03b;
}

.box-search.yellow button[type="submit"] {
  border: 3px solid #fbb03b;
  color: #fbb03b;
}

.box-search.yellow .btn {
  background: #fbb03b;
  color: #fff;
  padding: 5px 30px;
  font-size: 14px;
  min-width: auto;
  border-radius: 20px;
}



/* sp */
@media (max-width: 768px) {
  header ._inner {
    margin:0;
  }
  header h1 {
    padding-right: 100px;
  }

  #acMenu {
    border-bottom: #ab6e33 1px solid;
  }
  #acMenu dt {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: left;
    border-top: #ab6e33 1px solid;
    cursor: pointer;
    padding: 0 20px;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #acMenu dt a {
    text-decoration: none;
  }
  #acMenu dt.link:after {
    content: '→';
    position: absolute;
    right: 20px;
  }
  #acMenu dt.link a {
    display: block;
    line-height: 50px;
    position: absolute;
    width: calc(100% - 40px);
    text-decoration: none;
  }
  #acMenu dt.acc:after {
    content: '+';
    position: absolute;
    right: 20px;
  }
  #acMenu dd {
    width: 100%;
    line-height: 40px;
    text-align: left;
    display: none;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #ab6e33 1px solid;
  }
  #acMenu dd li {
    /* font-size: 12px; */
    line-height: 40px;
    display: block;
    width: 100%;
    text-align: left;
  }

  #acMenu dd li a {
    display: block;
  }

  section#contents {
    margin: 50px 0;
  }
  section#contents .list .list-box {
    margin: 15px;
  }

  .flex.works-nav {
    flex-wrap: wrap-reverse !important;
    justify-content: center !important;
  }

  .flex.works-nav > * {
    margin: 10px 0 !important;
  }

  #point h2 {
    font-size: 20px !important;
  }

  #point h3 {
    font-size: 14px !important;
    margin-top: 0px !important;
    margin-bottom: 30px;

  }

  #sp-btn-close {
    position: absolute;
    top: 0;
    right: 0;
    height: 30px;
    width: 30px;
    margin: 10px 1%;
  }

  section#contents h2.ttl-point span{
    font-size: 16px !important;
  }

  .box-search dl {
    flex-wrap: wrap;
  }

  .box-search dl dt {
    width: 100%;
  }

  .box-search dl dd {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
  }

  .box-search dl dd > div {
    text-align: center;
  }

  .box-search dl dd > div label {
    text-align: left;
    font-size: 14px;
  }

  header {
    position: sticky;
    top: 0;
  }
  
}
