@charset "UTF-8";

/* ===================================================================
メインビジュアル
=================================================================== */

.vacancy-s .vacancy-s-mv-inner {
  position: relative;
  background: url(../../images/vacancy-s/mv.png) 50% 50% / cover no-repeat, transparent;
}

.vacancy-s .vacancy-s-title {
  max-width: 680px;
  padding: 225px 0 100px;
}

.vacancy-s .vacancy-s-lift {
  position: absolute;
  max-width: 200px;
  bottom: -40px;
  right: 0;
}

.vacancy-s .vacancy-s-detail {
  padding: 40px 0;
  color: #fff;
  background: rgba(0, 47, 87, .3);
}

.vacancy-s .vacancy-s-detail .comment {
  margin: 0;
  line-height: 1.8;
  text-align: left;
}

.vacancy-s .vacancy-s-detail .time {
  text-align: right;
}

/* ===================================================================
リストボタン
=================================================================== */

.vacancy-s .placelist {
  display: flex;
  padding: 60px 0 0;
  /***** Eyes CommentOut *****/
  /* justify-content: space-between; */
}

.vacancy-s .placelist li {
  width: 24%;
  color: #fff;
  font-weight: bold;
  background: #c5c5c5;
  /***** Eyes CommentOut *****/
  /* height: 70px; */
  /***** Eyes Add *****/
  display: flex;
  align-items: stretch;
  min-height: 70px;
}

.vacancy-s .placelist li a {
  position: relative;
  width: 100%;
  padding: 20px 0;
  font-size: 22px;
  cursor: pointer;
  text-align: center;
  transition: all .3s ease-out 0s;
  /***** Eyes CommentOut *****/
  /* display: block; */
  /* height: 70px; */
  /***** Eyes Add *****/
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
}

/* ===================================================================
見出し
=================================================================== */

.vacancy-s .title02 {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
}

.vacancy-s .title02 .title02-catch {
  width: 18px;
  height: 18px;
  background: #414141;
  border-radius: 50%;
}

.vacancy-s .title02 h2 {
  margin: 0 0 0 5px;
  border-bottom: 2px solid #414141;
  font-size: 18px;
  font-weight: bold;
  color: #414141;
}

/* ===================================================================
注意事項
=================================================================== */

.vacancy-s p.attention {
  color: #484848;
  /* color: #898989; */
  font-size: 14px;
  margin: 0 0 30px;
}

/* ===================================================================
アコーディオンメニュー
=================================================================== */

.vacancy-s .accordion {
  padding: 55px 0 0;
}

.vacancy-s .accordion-wrapper {
  margin: 0 0 30px;
}

.vacancy-s .acd-check {
  display: none;
}

.vacancy-s .acd-label {
  display: block;
  position: relative;
  padding: 15px 15px 15px 45px;
  background: #ededed;
  color: #e50012;
  font-weight: bold;
  font-size: 24px;
}

.vacancy-s .acd-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  width: 6px;
  height: 20px;
  transition: .5s;
  background: #e50012;
  border-radius: 3px;
}

.vacancy-s .acd-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translate(0, -50%);
  width: 20px;
  height: 6px;
  background: #e50012;
  border-radius: 3px;
}

.vacancy-s .acd-content {
  display: none;
  padding: 0 10px;
  opacity: 0;
  background: #ededed;
  transition: .5s;
  visibility: hidden;
}

.vacancy-s .acd-check:checked+.acd-label+.acd-content {
  display: block;
  margin: 0 0 30px;
  padding: 10px 60px 30px;
  opacity: 1;
  visibility: visible;
}

.vacancy-s input:checked+.acd-label::before {
  display: none;
}

/* ===================================================================
テーブル
=================================================================== */

.vacancy-s table {
  width: 100%;
  margin: 0 0 30px;
  border-collapse: separate;
  border-spacing: 3px;
}

.vacancy-s table th {
  padding: 5px 3px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 18px;
  background: #b4b4b4;
}

.vacancy-s table th {
  width: 65%;
}

.vacancy-s table th.h-name {
  width: 35%;
}

.vacancy-s table td {
  padding: 10px 20px;
  vertical-align: middle;
  color: #484848;
  /* color: #898989; */
  background: #fff;
}

.vacancy-s table td:nth-child(2) {
  padding: 10px;
}

.vacancy-s table tr:nth-child(odd) td {
  background: #ecf4fd;
}

/* ===================================================================
テーブルないのスケジュール部分
=================================================================== */

.vacancy-s table .open,
.vacancy-s table .close {
  display: inline-block;
  margin: 0 2px;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 4px;
  text-align: center;
  border-radius: 10px;
}

.vacancy-s table .open span,
.vacancy-s table .close span {
  font-size: 12px;
}

.vacancy-s table .close {
  color: #c5c5c5;
  border: 2px solid #c5c5c5;
  background: #fff;
}

.vacancy-s table .open {
  color: #fff;
  border: 2px solid #e50012;
  background: #e50012;
  transition: all .3s ease-out 0s;
}

.vacancy-s table .open:hover {
  color: #e50012;
  background: #fff;
}

/* ===================================================================
ゲレンデ情報をみるボタン
=================================================================== */

.vacancy-s .vacancy-s-link-btn {
  display: block;
  width: 260px;
  height: 50px;
  margin: 30px auto 0;
  padding: 10px 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: 2px solid #e50012;
  border-radius: 10px;
  background: #e50012;
  transition: all .3s ease-out 0s;
}

.vacancy-s .vacancy-s-link-btn:hover {
  color: #e50012;
  background: #fff;
}

@media screen and (max-width: 1000px) {

  /* ===================================================================
	メインビジュアル
	=================================================================== */

  .vacancy-s .vacancy-s-mv-inner {
    background: url(../../images/vacancy-s/mv_sp.png) 50% 50% / cover no-repeat, transparent;
  }

  .vacancy-s .vacancy-s-title {
    width: 100%;
    margin: 0;
    max-width: none;
    padding: 55% 0 0;
  }

  .vacancy-s .vacancy-s-title-inner {
    width: 100%;
    background: rgba(0, 47, 87, .3);
  }

  .vacancy-s .vacancy-s-lift {
    max-width: 80px;
    bottom: 32%;
    right: 10px;
  }

  .vacancy-s .vacancy-s-detail {
    padding: 20px 0 0;
    border-top: 2px solid #e50012;
    background: #fff;
  }

  .vacancy-s .vacancy-s-detail .comment {
    margin: 0;
    text-indent: 1em;
    text-align: justify;
    font-size: 12px;
    color: #808080;
  }

  .vacancy-s .vacancy-s-detail .time {
    margin: 0;
    font-size: 12px;
  }


  /* ===================================================================
	リストボタン
	=================================================================== */

  .vacancy-s .placelist {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0 0;
  }

  .vacancy-s .placelist li {
    width: 49%;
    margin: 0 0 10px;
    /***** Eyes CommentOut *****/
    /* height: 50px; */
    /***** Eyes Add *****/
    min-height: 50px;
  }

  .vacancy-s .placelist li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 12px;
    /***** Eyes CommentOut *****/
    /* height: 50px; */
    /***** Eyes Add *****/
    min-height: 50px;
  }

  /* ===================================================================
	見出し
	=================================================================== */

  .vacancy-s .title02 {
    margin: 0 0 20px;
  }

  .vacancy-s .title02 .title02-catch {
    width: 14px;
    height: 14px;
  }

  .vacancy-s .title02 h2 {
    font-size: 14px;
  }

  /* ===================================================================
	注意事項
	=================================================================== */

  .vacancy-s p.attention {
    font-size: 12px;
    margin: 0 0 20px;
  }

  /* ===================================================================
	アコーディオンメニュー
	=================================================================== */

  .vacancy-s .accordion {
    padding: 40px 0 0;
  }

  .vacancy-s .accordion-wrapper {
    margin: 0 0 20px;
  }

  .vacancy-s .acd-label {
    font-size: 18px;
  }

  .vacancy-s .acd-check:checked+.acd-label+.acd-content {
    margin: 0;
    padding: 0 6px 20px;
  }

  /* ===================================================================
	テーブル
	=================================================================== */

  .vacancy-s table {
    margin: 0 0 20px;
  }

  .vacancy-s table th {
    font-size: 10px;
  }

  .vacancy-s table th {
    width: 70%;
    display: none !important;
  }

  .vacancy-s table th.h-name {
    width: 30%;
  }

  .vacancy-s table td {
    display: block;
    padding: 5px 10px;
    font-size: 12px;
  }

  .vacancy-s table td:nth-child(2) {
    padding: 5px 10px;
  }

  /* ===================================================================
	テーブルないのスケジュール部分
	=================================================================== */

  .vacancy-s table .open,
  .vacancy-s table .close {
    margin: 0;
    padding: 5px 4px;
    font-size: 10px;
  }

  .vacancy-s table .open span,
  .vacancy-s table .close span {
    display: block;
    font-size: 10px;
  }

  .vacancy-s table .close {
    border: 1px solid #c5c5c5;
  }

  .vacancy-s table .open {
    border: 1px solid #e50012;
  }

  /* ===================================================================
	ゲレンデ情報をみるボタン
	=================================================================== */

  .vacancy-s .vacancy-s-link-btn {
    width: 160px;
    height: auto;
    margin: 20px auto 0;
    padding: 5px 0;
    font-size: 14px;
  }

}