@charset "utf-8";
/**
 * CHIKUWA Site Style Sheet
 *
 * @since   2018/03/09
 * @version 2018/09/24
 */

/* =====================================================
 * 共通設定
 * ================================================== */
html {
  overflow-x: hidden;
}
html, html a, body {
  -webkit-font-smoothing: antialiased;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#loader-sp {
    display: none;
}
@media (max-width: 767px) {
   #loader {
       display: none;
   }
   #loader-sp {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #f2f2f2;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
   }
}
video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body {
  position: relative;
  font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
}
ul {
  list-style: none;
}
p {
  font-size: 15px;
  font-weight: 400;
  color: #565656;
  line-height: 1.4;
  margin-bottom: 5px;
}
a {
  color: #62656e;
  outline: 0;
}
a:focus, a:hover, a:active {
  outline: 0;
  color: #555bbb;
  text-decoration: none;
}
span {
  font-size: 14px;
  font-weight: 400;
  color: #cfc0c9;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #414141;
  line-height: 1.4;
  margin: 0 0 15px;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 22px;
}
.margin-t-5 {
  margin-top: 5px !important;
}
.margin-t-50 {
  margin-top: 50px !important;
}
.margin-t-150 {
  margin-top: 150px !important;
}
.margin-t-300 {
  margin-top: 300px !important;
}
.margin-b-0 {
  margin-bottom: 0 !important;
}
.margin-b-20 {
  margin-bottom: 20px !important;
}
.margin-b-40 {
  margin-bottom: 40px !important;
}
.margin-b-50 {
  margin-bottom: 50px !important;
}
.margin-b-60 {
  margin-bottom: 60px !important;
}
.margin-b-150 {
  margin-bottom: 150px !important;
}
.margin-b-300 {
  margin-bottom: 300px !important;
}
.margin-l-0 {
  margin-left: 0 !important;
}
.border-bottom {
  border-bottom: 1px solid #edf0f2;
}
.content {
  padding-top: 40px;
  padding-bottom: 40px;
}
.text-align-mmvc {
  text-align: center;
}
@media (max-width: 767px) {
  .text-align-mmvc {
    text-align: left;
  }
}
.underline {
  text-decoration:underline;
}
/* =====================================================
 * Header
 * ================================================== */
.header .logo {
  height: auto;
  float: left;
}
.header .logo-wrap {
  display: inline-block;
  padding: 10px 0;
}
.header .logo-wrap:focus, .header .logo-wrap:hover {
  text-decoration: none;
}
.header .logo-img {
  display: inline-block;
  width: 150px;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}
.header .logo-img-main {
  display: inline-block;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .logo-img-active {
  display: none;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.navbar-fixed-top .navbar-collapse {
  max-height: 100%;
}
.header .navbar {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  border-radius: 0px;
}
.header .navbar-toggle {
  width: 25px;
  height: 25px;
  border: none;
  padding: 0;
  margin: 10px 0;
}
.header .navbar-toggle .toggle-icon {
  position: relative;
  width: 21px;
  height: 1px;
  display: inline-block;
  background: #515769;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .navbar-toggle .toggle-icon:before, .header .navbar-toggle .toggle-icon:after {
  position: absolute;
  left: 0;
  background: #515769;
  content: " ";
}
.header .navbar-toggle .toggle-icon:before {
  width: 10px;
  height: 1px;
  bottom: 10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  transform: rotate(0);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .navbar-toggle .toggle-icon:after {
  width: 16px;
  height: 1px;
  top: -5px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  transform: rotate(0);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .navbar-toggle:hover .toggle-icon {
  background: #17bed2;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .navbar-toggle:hover .toggle-icon:before, .header .navbar-toggle:hover .toggle-icon:after {
  width: 21px;
  height: 1px;
  background: #17bed2;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .navbar-toggle:hover .toggle-icon.is-clicked {
  background: rgba(81, 87, 105, 0);
}
.header .navbar-nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.header .nav-item {
  position: relative;
  display: block;
}
.header .nav-item:last-child .nav-item-child {
  padding-right: 0;
}
.header .nav-item .nav-item-hover.active:after {
  opacity: 1;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .nav-item:hover .nav-item-hover:after {
  opacity: 1;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .nav-item-child {
  position: relative;
  display: block;
  font-size: 13px;
  font-weight: 600;
  font-family: Hind, sans-serif;
  color: #fff;
  text-transform: uppercase;
  line-height: 55px;
  padding: 0px;
  margin-right: 20px;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .nav-item-child:hover, .header .nav-item-child:focus {
  background: transparent;
}
.header .nav-item-hover {
  position: relative;
}
.header .nav-item-hover:after {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3c5f9d;
  opacity: 0;
  content: " ";
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
/*.header .nav-banner {
  width:100%;
}
.header .js_nav-item:last-child {
  width:150px;
}
@media (max-width: 992px) {
  .container {
    padding-right:0;
  }
}*/
.page-scroll .header .navbar {
  background-color: rgba(255,255,255,0.98);
  border-bottom-color: #f0f0f0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.page-scroll .header .logo-img-main {
  display: none;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.page-scroll .header .logo-img-active {
  display: inline-block;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.header .navbar-nav-right {
  float: right;
}
.page-scroll .header .nav-item-child {
  color: #515769;
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
/* =====================================================
 * ページトップのスクロール
 * ================================================== */
.back-to-top {
  position: fixed;
  right: 8px;
  bottom: 8px;
  display: inline-block;
  z-index: 10;
  width: 40px;
  height: 40px;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 3;
  background: #515769;
  border-radius: 8px;
  visibility: hidden;
  padding: 5px;
  -webkit-transform: translate3d(0, 50px, 0);
  -moz-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.back-to-top:hover {
  color: #fff;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.back-to-top:focus, .back-to-top:hover {
  text-decoration: none;
}
.back-to-top.back-to-top-is-visible {
  visibility: visible;
  opacity: .6;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.back-to-top.back-to-top-is-visible:hover {
  opacity: 1;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.back-to-top.back-to-top-fade-out {
  opacity: .5;
}
.back-to-top.back-to-top-fade-out:hover {
  opacity: 1;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
/* =====================================================
 * メインビジュアル設定
 * ================================================== */
.full-screen {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-centered {
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.main-title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 2px 2px 20px rgba(0,0,0,.5);
}
.main-text {
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0,0,0,.5);
}
/* =====================================================
 * フォーム
 * ================================================== */
#inquiryForm dt,
#recruitForm dt {
  margin-top: 18px;
}
#inquiryForm dd,
#recruitForm dd {
  margin-top: 10px;
}
#inquiryForm .form-description,
#recruitForm .form-description {
  border: 1px solid #000;
  padding: 10px;
}
#inquiryForm .list-center,
#recruitForm .list-center {
  display: flex;
  justify-content: center;
}
#inquiryForm .list-center > ul,
#recruitForm .list-center > ul {
  width: 70%;
}
#inquiryForm .btn-submit,
#recruitForm .btn-submit {
  padding: 3px 70px;
}
#inquiryForm .link-text,
#recruitForm .link-text {
  cursor: pointer;
}
#inquiryForm .required,
#recruitForm .required {
  color: #f55;
}
#inquiryForm .error,
#recruitForm .error {
  color: red;
}
/* =====================================================
 * 768px以下: スマホ＆タブレット
 * ================================================== */
@media (max-width: 767px) {
  .header {
    background: #fff;
    background-color: rgba(255,255,255,0.9);
  }
  .header .navbar-toggle {
    display: block;
  }
  .header .navbar-collapse.collapse {
    display: none !important;
  }
  .header .navbar-collapse.collapse.in {
    display: block !important;
  }
  .header .nav-collapse {
    padding-left: 0;
    padding-right: 0;
  }
  .header .navbar-nav {
    margin: 0;
    float: none;
    width: 100%;
  }
  .header .navbar-nav .nav-item {
    float: none;
  }
  .header .nav-item-child {
    color: #515769;
    line-height: 1.4;
    padding: 12px 12px 12px 15px;
  }
  .header .nav-item-hover:after {
    position: absolute;
    top: 19px;
  }
  .header .menu-container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
  }
  .header .navbar > .container {
    width: auto;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .header .navbar > .container > .nav-collapse {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .header .navbar-nav-right {
    float: left;
  }
  .header .menu-container:before, .header .menu-container:after {
    content: " ";
    display: table;
  }
  .header .menu-container:after {
    clear: both;
  }
  .header .nav-item-hover:after {
    position: absolute;
    top: 12px;
    background: none;
    opacity: 0;
    color: #3c5f9d;
    content: "\f054";
    font-family: FontAwesome;
    transition-duration: 400ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  }
  .header .logo .logo-img-main {
    display: none;
  }
  .header .logo .logo-img-active {
    width: 100px;
    margin-left: 10px;
    display: inline-block;
  }
  .main-title {
    font-size: 40px;
  }
  .main-text {
    font-size: 17px;
    margin-right: 20px;
  }
  .header .navbar > .container {
    width: auto;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .sm-margin-b-30 {
    margin-bottom: 30px !important;
  }
  .sm-margin-b-50 {
    margin-bottom: 50px !important;
  }
  .back-to-top {
    display: none;
  }
  #inquiryForm .list-center > ul,
  #recruitForm .list-center > ul {
    width: 100%;
  }
}
/* =====================================================
 * 採用情報チアキャリアの設定
 * ================================================== */
/*.cheercareer {
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cheercareer-left {
  width: 60%;
  padding-right: 5%;
}
.cheercareer-right {
  width: 30%;
}
.cheercareer-big-banner {
  padding-top:10px;
  width: 92%;
}

blockquote {
  border-left: none;
}
@media (max-width: 767px) {
  .cheercareer-left {
    width: 100%;
  }
  .cheercareer-right {
    width: 100%;
    left:15%;
    padding-right:15%;
    padding-left:15%;
  }
  .cheercareer-big-banner {
    width: 100%;
  }
}*/