@charset "UTF-8";
/* ====================================================
Font
==================================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&subset=japanese");
@font-face {
  font-family: 'Bebas';
  src: url("../fonts/Bebas-Regular.eot");
  src: url("../fonts/Bebas-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Bebas-Regular.woff2") format("woff2"), url("../fonts/Bebas-Regular.woff") format("woff"), url("../fonts/Bebas-Regular.ttf") format("truetype"), url("../fonts/Bebas-Regular.svg#Bebas-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Color
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-box.content-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-box.content-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-box.content-bw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-box.content-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-box.align-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-box.align-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-box.align-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ====================================================
Page Common
==================================================== */
.breadcrumb {
  font-size: 12px;
  font-size: 1.2rem;
  color: #666666;
  padding: 12px 0 0;
  margin-bottom: 30px;
}

.breadcrumb i {
  margin: 0 10px;
  font-size: 16px;
  font-size: 1.6rem;
}

.breadcrumb a {
  color: #666666;
}

.page-ttl {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .page-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 20px 0;
    margin-bottom: 0;
  }
}

.page-ttl.center {
  text-align: center;
}

.page-heding {
  position: relative;
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  padding-bottom: 30px;
  margin-bottom: 35px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .page-heding {
    font-size: 18px;
    font-size: 1.8rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.page-heding::after {
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background: #e91426;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .page-heding::after {
    width: 20px;
    height: 2px;
  }
}

.page-lead {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .page-lead {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}

.basic-btn {
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
     transition-duration: .5s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 55px;
  position: relative;
  width: 100%;
  text-decoration: none;
  line-height: 1;
  z-index: 1;
  vertical-align: middle;
  overflow: hidden;
  color: #FFF;
  background: #e91426;
  border: 1px solid #d90012;
  border-radius: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .basic-btn {
    height: 50px;
  }
}

.basic-btn::before {
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
     transition-duration: .5s;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: none;
  background: #FFF;
}

.basic-btn i {
  position: absolute;
  right: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: right .5s;
  -o-transition: right .5s;
  transition: right .5s;
}

.basic-btn:hover {
  color: #e91426;
  background: #FFF;
}

.basic-btn:hover::before {
  left: 0;
}

.basic-btn:hover i {
  right: 8px;
}

.basic-btn.black-btn {
  background: #1b1b1b;
  border-color: #1b1b1b;
}

.basic-btn.black-btn:hover {
  color: #1b1b1b;
  background: #FFF;
}

.basic-btn.white-btn {
  background: #FFF;
  border-color: #dcdcdc;
  color: #333333;
}

.basic-btn.white-btn::before {
  background: #1b1b1b;
}

.basic-btn.white-btn:hover {
  color: #FFF;
  background: #1b1b1b;
  border-color: #dcdcdc;
}

.basic-btn.red-btn {
  background: #ffffff;
  border-color: #e91426;
  color: #e91426;
}

.basic-btn.red-btn:before {
  background-color: #e91426;
  color: #ffffff;
}

.basic-btn.red-btn:hover {
  color: #ffffff;
}

.basic-btn.gray-btn {
  background: #ffffff;
  border-color: #333333;
  color: #333333;
}

.basic-btn.gray-btn:before {
  background-color: #333333;
  color: #ffffff;
}

.basic-btn.gray-btn:hover {
  color: #ffffff;
}

.basic-btn.lg-btn {
  max-width: 40rem;
  height: 8rem;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .basic-btn.lg-btn {
    height: 5rem;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
    border-radius: 4px;
  }
}

.basic-btn.lg-btn i {
  right: 2.3rem;
  top: 52%;
}

@media screen and (max-width: 768px) {
  .basic-btn.lg-btn i {
    right: 3.2rem;
    top: 48%;
  }
}

.l-gray {
  background: #f5f5f5;
}

.l-border {
  border-bottom: 1px solid #dddddd;
}

@media screen and (max-width: 768px) {
  .l-border {
    border-bottom: none;
  }
}

.note-profile {
  margin-top: 40px;
}

.note-profile li {
  position: relative;
  padding-left: 15px;
  font-size: 12px;
  font-size: 1.2rem;
}

.note-profile li:before {
  content: "※";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  .l-animebtn {
    width: 4.5rem;
  }
}

@media screen and (min-width: 769px) {
  #header.header-main {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #header.header-main .header__top__in {
    min-height: 2.8rem;
  }
  #header.header-main .header__txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.67;
    color: #7d7d7d;
    padding: 0 2rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 990px) {
  #header.header-main .header__txt {
    padding: 0 1.4rem;
  }
}

@media screen and (min-width: 769px) {
  #header.header-main .header__nav__link {
    height: 6.6rem;
    padding: 0 2rem;
  }
}

@media screen and (min-width: 769px) and (min-width: 769px) {
  #header.header-main .header__nav__link.active {
    color: #fff;
    background: #db0917;
  }
}

@media screen and (min-width: 769px) and (max-width: 990px) {
  #header.header-main .header__nav__link {
    padding: 0 1.4rem;
  }
}

@media screen and (min-width: 769px) {
  #header.header-main .header__nav__btn {
    height: 6.6rem;
    border-radius: 0;
    width: 14rem;
    margin-left: 2rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 990px) {
  #header.header-main .header__nav__btn {
    width: 11rem;
    margin-left: 0;
  }
}

@media screen and (min-width: 769px) and (-ms-high-contrast: active), screen and (min-width: 769px) and (-ms-high-contrast: none) {
  #header.header-main .header__desc {
    padding: 0.7rem 0;
  }
}

@media screen and (max-width: 768px) {
  #header.header-main {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #header.header-main:after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #e8e8e8;
  }
  #header.header-main .header__txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.67;
    color: #7d7d7d;
    padding: 0 1rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #header.header-main .header__base {
    padding-left: 2rem;
    border-top: none;
    border-bottom: none;
  }
  #header.header-main .l-animebtn {
    width: 5.5rem;
  }
  #header.header-main .l-animebtn .bar span {
    left: 32%;
    width: 38%;
  }
  #header.header-main .l-animebtn .bar span:first-of-type {
    top: 36%;
  }
  #header.header-main .l-animebtn .bar span:last-of-type {
    width: 26%;
    bottom: 34%;
  }
  #header.header-main .l-animebtn.active .bar span {
    left: 28%;
    width: 48%;
  }
  #header.header-main .l-animebtn.active .bar span:first-of-type {
    top: 50%;
  }
  #header.header-main .l-animebtn.active .bar span:last-of-type {
    bottom: 50%;
    width: 48%;
  }
  #header.header-main .nav__item {
    border-top-color: #e8e8e8;
  }
  #header.header-main .nav__link, #header.header-main .nav__accLink {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 1.3rem;
    text-align: center;
    display: block;
  }
  #header.header-main .nav__txt {
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 500;
  }
  #header.header-main .nav__btn {
    padding: 2.2rem;
    font-size: 15px;
    font-size: 1.5rem;
    border-radius: 4px;
    display: block;
    text-align: center;
  }
  #header.header-main .nav__btnList {
    padding: 2.3rem 2rem 1.9rem;
  }
  #header.header-main .nav__btnItem:not(:first-child) {
    margin-top: 0.7rem;
  }
}

#footer.footer-main .footerTop__btn--multiple {
  max-width: 95rem !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  #footer.footer-main .footerTop__btn--multiple {
    max-width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  #footer.footer-main .footerTop__btn--multiple {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#footer.footer-main .footerTop__btn--multiple .basic-btn {
  max-width: 46rem;
}

#footer.footer-main .footerTop__btn--multiple .basic-btn:first-child {
  background: #909090;
  border-color: #909090;
}

@media screen and (max-width: 768px) {
  #footer.footer-main .footerTop__btn--multiple .basic-btn:first-child {
    margin-top: 2.5rem;
  }
}

#footer.footer-main .footerTop__btn--multiple .basic-btn:first-child:hover {
  color: #909090;
}

#footer.footer-main .footerTop__btn--multiple .basic-btn i {
  right: 3.8rem;
}

@media screen and (max-width: 768px) {
  #footer.footer-main .footerTop__btn--multiple .basic-btn i {
    right: 1.5rem;
  }
}

@media screen and (min-width: 769px) {
  #footer.footer-main {
    padding: 0 0 4.3rem;
    background-color: #fff;
  }
  #footer.footer-main .footerTop {
    padding: 7.5rem 0 8.2rem;
  }
  #footer.footer-main .footerTop__ttl {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 6.3rem;
  }
  #footer.footer-main .footerTop__btn {
    width: 100%;
    max-width: 50rem;
    margin: 0 auto;
  }
  #footer.footer-main .footerTop__btn .basic-btn {
    font-size: 24px;
    font-size: 2.4rem;
    height: 9rem;
    border-radius: 4px;
    font-weight: bold;
  }
  #footer.footer-main .footerTop__btn .basic-btn i {
    right: 2.2rem;
    top: 51%;
  }
  #footer.footer-main .footerBottom {
    background-color: #fff;
  }
  #footer.footer-main .footerBottom__pagetop {
    height: 7.8rem;
    margin-left: 3.1rem;
  }
  #footer.footer-main .footerBottom__btn-link {
    padding: 1rem 3rem 1rem 1rem;
    width: 18.3rem;
    border-radius: 2px;
    background-color: #8a8a8a;
    border: 1px solid #8a8a8a;
    color: #ffffff;
  }
  #footer.footer-main .footerBottom__btn-link:hover {
    background-color: #ffffff;
    color: #8a8a8a;
  }
  #footer.footer-main .footerBottom__btn-link:hover:after {
    visibility: hidden;
    opacity: 0;
  }
  #footer.footer-main .footerBottom__btn-link:hover:before {
    visibility: visible;
    opacity: 1;
  }
  #footer.footer-main .footerBottom__btn-link:after, #footer.footer-main .footerBottom__btn-link:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1rem;
    left: auto;
    z-index: 1;
    -webkit-transition-duration: .5s;
         -o-transition-duration: .5s;
            transition-duration: .5s;
    width: 1.3rem;
    height: 1.3rem;
    display: block;
  }
  #footer.footer-main .footerBottom__btn-link:after {
    background: url("../img/common/ico-link.png") no-repeat center/contain;
  }
  #footer.footer-main .footerBottom__btn-link:before {
    background: url("../img/common/ico-link-hover.png") no-repeat center/contain;
    visibility: hidden;
    opacity: 0;
  }
  #footer.footer-main .footerBottom__btn-link img {
    margin-left: 0.8rem;
  }
  #footer.footer-main .footer__copy {
    background-color: #fff;
    padding: 1.5rem 1.5rem 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  #footer.footer-main .footerTop {
    padding: 3.9rem 0 3rem;
  }
  #footer.footer-main .footerTop__ttl {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.325;
    margin-bottom: 1.7rem;
    -webkit-text-size-adjust: 100%;
  }
  #footer.footer-main .footerTop__btn {
    text-align: center;
  }
  #footer.footer-main .footerTop__btn .basic-btn {
    height: 6rem;
    border-radius: 2px;
  }
  #footer.footer-main .footerBottom {
    border-top: 1px solid #ddd;
    position: relative;
  }
  #footer.footer-main .footerBottom__left {
    padding: 20px 0 21px;
  }
  #footer.footer-main .footerBottom__logo {
    width: 13.6rem;
  }
  #footer.footer-main .footerBottom__pagetop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    background-color: #878787;
    color: #ffffff;
    font-size: 13px;
    font-size: 1.3rem;
  }
  #footer.footer-main .footerBottom__pagetop:hover {
    padding-bottom: 0;
  }
  #footer.footer-main .footer__copy {
    padding: 1.6rem;
  }
}

@media screen and (max-width: 320px) {
  .hide-320 {
    display: none;
  }
}

.ip6 {
  display: none;
}

@media (max-width: 400px) {
  .ip6 {
    display: initial !important;
  }
}

/* shop-list*/
.shop-info-box-wrap {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .shop-info-box-wrap {
    margin-bottom: 40px;
  }
}

.shop-info-box {
  background: #FFF;
  border: 2px solid #dcdcdc;
  padding: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .shop-info-box {
    padding: 0 0 15px;
    border: none;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 5px;
  }
  .shop-info-box:last-of-type {
    margin-bottom: 0;
  }
}

.shop-info-box .box-inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .shop-info-box .box-inner {
    display: block;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .shop-info-box .info-col {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 47.55%;
  }
}

@media screen and (max-width: 768px) {
  .shop-info-box .info-col {
    padding: 15px;
  }
}

@media screen and (min-width: 769px) {
  .shop-info-box .img-col {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 25.7%;
  }
}

@media screen and (max-width: 768px) {
  .shop-info-box .img-col {
    border-radius: 3px;
    overflow: hidden;
  }
}

.shop-info-box .img-col img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .shop-info-box .img-col .img {
    position: relative;
    overflow: hidden;
  }
  .shop-info-box .img-col .img::after {
    content: "";
    display: block;
    padding-top: 105%;
  }
  .shop-info-box .img-col .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    max-width: inherit;
  }
}

@media screen and (min-width: 769px) {
  .shop-info-box .map-col {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 23.5%;
  }
}

@media screen and (max-width: 768px) {
  .shop-info-box .map-col {
    padding: 0 15px 10px;
  }
}

.shop-info-box .shop-ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #ebebed;
  padding-bottom: 17px;
  line-height: 1.2;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-ttl {
    border-color: #d9dade;
    padding-bottom: 13px;
  }
}

.shop-info-box .shop-ttl strong {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-ttl strong {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.shop-info-box .shop-ttl .red {
  color: #d90012;
  font-size: 22px;
  font-size: 2.2rem;
}

.shop-info-box .shop-ttl .km {
  padding-left: 25px;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-ttl .km {
    display: none;
  }
}

.shop-info-box .shop-info {
  line-height: 1.6;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-info {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
}

.shop-info-box .shop-info dt, .shop-info-box .shop-info dd {
  padding-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-info dt, .shop-info-box .shop-info dd {
    padding-bottom: 0;
  }
}

.shop-info-box .shop-info dt {
  width: 80px;
  float: left;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-info dt {
    width: 65px;
  }
}

.shop-info-box .shop-info dd {
  margin-left: 80px;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-info dd {
    margin-left: 65px;
  }
}

.shop-info-box .shop-info dd .tel {
  font-size: 28px;
  font-size: 2.8rem;
  color: #d90012;
  font-weight: bold;
  line-height: 0.8;
  vertical-align: text-bottom;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-info dd .tel {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1;
  }
}

.shop-info-box .shop-icon {
  font-size: none;
  margin: 0 -4px;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-icon {
    margin: 0 -2px;
  }
}

.shop-info-box .shop-icon li {
  float: left;
  width: 14.2857%;
  padding: 0 4px;
  opacity: 0.2;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-icon li {
    padding: 0 2px;
  }
}

.shop-info-box .shop-icon li.on {
  opacity: 1;
}

.shop-info-box .shop-map {
  height: 180px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-map {
    display: none;
  }
}

.shop-info-box .shop-map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-more-btn {
    padding: 0 15px;
  }
}

.shop-info-box .shop-more-btn .basic-btn {
  font-size: 18px;
  font-size: 1.8rem;
  height: 70px;
}

@media screen and (max-width: 768px) {
  .shop-info-box .shop-more-btn .basic-btn {
    font-size: 14px;
    font-size: 1.4rem;
    height: 50px;
  }
}

.shop-info-box .shop-more-btn .basic-btn i {
  font-size: 14px;
  font-size: 1.4rem;
}

.area-search-wrap {
  background: #FFF;
  padding: 75px 0 100px;
}

@media screen and (max-width: 768px) {
  .area-search-wrap {
    padding: 40px 0 25px;
  }
}

.area-search-wrap .l-top {
  max-width: 640px;
  margin: 0 auto;
}

.area-search-wrap .l-top .search__boxIn {
  padding: 0;
}

.area-search-wrap .l-top .search__head-btn {
  display: none;
}

.area-search {
  max-width: 640px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .area-search {
    max-width: inherit;
  }
}

.area-search .area-search-ttl {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 15px;
  padding-left: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .area-search .area-search-ttl {
    font-size: 15px;
    font-size: 1.5rem;
    padding-left: 33px;
    margin-left: 5px;
  }
}

.area-search .area-search-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/shop/icon_place_r.png) no-repeat 0 0;
  background-size: 100% auto;
  width: 24px;
  height: 32px;
  margin-top: -16px;
}

.area-search .area-search-ttl span {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .area-search .area-search-ttl span {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.area-search .area-map {
  position: relative;
}

.area-search .area-map .map-btn {
  cursor: pointer;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
     transition-duration: .5s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 18px 0 23px;
  border-radius: 5px;
  position: relative;
  border: 0;
  width: 100%;
  text-decoration: none;
  line-height: 1;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  width: 135px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #dcdcdc;
  color: #333;
  background-color: #fff;
  -webkit-box-shadow: 0 -4px 0 #eee inset;
  box-shadow: inset 0 -4px 0 #eee;
}

.area-search .area-map .map-btn:hover {
  border: 2px solid #db0917;
  color: #fff;
  background-color: #db0917;
  -webkit-box-shadow: 0 -4px 0 #c30814 inset;
  box-shadow: inset 0 -4px 0 #c30814;
}

.area-search .area-map .map-btn.btn01 {
  top: 188px;
  left: 37px;
}

.area-search .area-map .map-btn.btn02 {
  top: 34px;
  left: 166px;
}

.area-search .area-map .map-btn.btn03 {
  top: 268px;
  left: 267px;
}

.area-search .area-map .map-btn.btn04 {
  top: 188px;
  left: 467px;
}

.area-search .area-list {
  font-weight: bold;
}

.area-search .area-list li {
  margin-bottom: 15px;
}

/* shop-detail */
.shop-detail-wrap {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap {
    margin-bottom: 40px;
  }
}

.shop-detail-wrap .shop-name {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #333333;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .shop-name {
    font-size: 18px;
    font-size: 1.8rem;
    padding-top: 20px;
    margin-bottom: 20px;
  }
}

.shop-detail-wrap .top-area .l-col,
.shop-detail-wrap .bottom-area .l-col {
  float: left;
}

.shop-detail-wrap .top-area .r-col,
.shop-detail-wrap .bottom-area .r-col {
  float: right;
}

.shop-detail-wrap .top-area {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .top-area {
    display: block;
    margin-bottom: 25px;
  }
}

.shop-detail-wrap .top-area .l-col {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .top-area .l-col {
    width: 100%;
  }
}

.shop-detail-wrap .top-area .r-col {
  width: 36.75%;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .top-area .r-col {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .bottom-area {
    display: block;
  }
}

.shop-detail-wrap .bottom-area .l-col {
  width: 45.9%;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .bottom-area .l-col {
    width: 100%;
  }
}

.shop-detail-wrap .bottom-area .r-col {
  width: 54.1%;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .bottom-area .r-col {
    width: 100%;
  }
}

.shop-detail-wrap .tel-btn {
  margin-bottom: 30px;
}

.shop-detail-wrap .tel-btn .basic-btn span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../img/shop/icon_tel.png) no-repeat 0 0;
  background-size: 100% auto;
  width: 20px;
  height: 18px;
  margin-right: 10px;
}

.shop-detail-wrap .map {
  height: 330px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .map {
    height: 300px;
    margin-bottom: 0;
  }
}

.shop-detail-wrap .map iframe {
  width: 100%;
  height: 100%;
}

.shop-detail-wrap .shop-info {
  line-height: 1.6;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .shop-info {
    margin-bottom: 5px;
  }
}

.shop-detail-wrap .shop-info dt, .shop-detail-wrap .shop-info dd {
  padding-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .shop-info dt, .shop-detail-wrap .shop-info dd {
    padding: 0;
  }
}

.shop-detail-wrap .shop-info dt {
  width: 125px;
  float: left;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .shop-info dt {
    width: 100%;
    padding-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    border-top: 1px solid #d9dade;
  }
}

.shop-detail-wrap .shop-info dd {
  margin-left: 125px;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .shop-info dd {
    margin-left: 65px;
    margin: 0;
    padding-bottom: 15px;
  }
}

.shop-detail-wrap .shop-info dd .tel {
  font-size: 28px;
  font-size: 2.8rem;
  color: #d90012;
  font-weight: bold;
  line-height: 0.8;
  vertical-align: text-bottom;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .shop-info dd .tel {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1;
  }
}

.shop-detail-wrap .shop-icon {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .shop-icon {
    padding-top: 10px;
    margin: 0 -4px;
  }
}

.shop-detail-wrap .shop-icon li {
  width: 55px;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  opacity: 0.2;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .shop-icon li {
    width: 20%;
    margin: 0 0 8px;
    padding: 0 4px;
  }
}

.shop-detail-wrap .shop-icon li.on {
  opacity: 1;
}

.shop-detail-wrap .pay-box {
  background: #e6e6e6;
  padding: 15px;
}

.shop-detail-wrap .pay-box .box-inner {
  background: #FFF;
  padding: 0 12px;
}

.shop-detail-wrap .pay-box .pay-ttl {
  font-weight: bold;
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .pay-box .pay-ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.shop-detail-wrap .pay-box .pay-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #d9dade;
  padding: 18px 0;
}

.shop-detail-wrap .pay-box .pay-list li:last-of-type {
  border-bottom: none;
}

.shop-detail-wrap .pay-box .pay-list li .ttl {
  width: 80px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.3;
  width: 80px;
  padding-left: 5px;
}

@media screen and (max-width: 768px) {
  .shop-detail-wrap .pay-box .pay-list li .ttl {
    width: 100%;
    margin-bottom: 10px;
  }
}

.shop-detail-wrap .pay-box .pay-list li .type {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0;
}

.shop-detail-wrap .pay-box .pay-list li .type img {
  display: none;
  margin-right: 5px;
}

.shop-detail-wrap .pay-box .pay-list li .type img.display-img {
  display: inline-block;
  vertical-align: top;
}

.handling-tires-wrap {
  background: #f5f5f5;
}

.handling-tires-wrap.pd {
  padding: 70px 0 80px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap.pd {
    padding: 10px 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-tab {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
}

.handling-tires-wrap .tire-tab li {
  width: 13.428%;
  float: left;
  margin-left: 1%;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-tab li {
    width: 100%;
    min-width: 105px;
    margin-left: 5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.handling-tires-wrap .tire-tab li:first-of-type {
  margin-left: 0;
}

.handling-tires-wrap .tire-tab li small {
  font-size: 9px;
  font-size: 0.9rem;
}

.handling-tires-wrap .tire-tab li a {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
  height: 60px;
  background: #e5e5e5;
  border-radius: 5px 5px 0 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.handling-tires-wrap .tire-tab li.active a, .handling-tires-wrap .tire-tab li:hover a {
  background: #FFF;
}

.handling-tires-wrap .tab-content-wrap {
  padding: 40px 30px 7px;
  background: #FFF;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tab-content-wrap {
    padding: 25px 3.125% 0;
  }
}

.handling-tires-wrap .tabbox {
  display: none;
}

.handling-tires-wrap .col-row-4 .item {
  width: 22.72%;
  margin-right: 3.04%;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .col-row-4 .item {
    width: 47.5%;
    margin-right: 5%;
  }
  .handling-tires-wrap .col-row-4 .item:nth-of-type(2n) {
    margin-right: 0;
  }
}

.handling-tires-wrap .col-row-4 .item:nth-of-type(4n) {
  margin-right: 0;
}

.handling-tires-wrap .col-row-2 .item {
  width: 48.48%;
  margin-right: 3.04%;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .col-row-2 .item {
    width: 100%;
    margin-right: 0;
  }
}

.handling-tires-wrap .col-row-2 .item:nth-of-type(2n) {
  margin-right: 0;
}

.handling-tires-wrap .col-row-2.type02 .item {
  width: 48.9%;
  margin-right: 2.2%;
}

.handling-tires-wrap .col-row-2.type02 .item:nth-of-type(2n) {
  margin-right: 0;
}

.handling-tires-wrap .type-head {
  background: #333333;
  color: #FFF;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3px 15px 3px 15px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .type-head {
    padding: 5px 10px 5px 10px;
  }
}

.handling-tires-wrap .type-head .type-ttl {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  width: 130px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .type-head .type-ttl {
    font-size: 13px;
    font-size: 1.3rem;
    width: 75px;
  }
}

.handling-tires-wrap .type-head .car-type-col {
  width: calc(100% - 130px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .type-head .car-type-col {
    width: calc(100% - 75px);
  }
}

.handling-tires-wrap .type-head .car-type {
  display: inline-block;
  text-align: left;
  vertical-align: text-top;
  font-size: 0;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .type-head .car-type {
    display: block;
  }
}

.handling-tires-wrap .type-head .car-type dt {
  display: inline-block;
  vertical-align: middle;
  width: 65px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .type-head .car-type dt {
    font-size: 10px;
    font-size: 1rem;
    vertical-align: top;
    width: 55px;
  }
}

.handling-tires-wrap .type-head .car-type dd {
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  font-size: 1rem;
  max-width: calc(100% - 65px);
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .type-head .car-type dd {
    vertical-align: top;
    max-width: calc(100% - 55px);
  }
}

.handling-tires-wrap .tire-item01 {
  position: relative;
  background: #f5f5f5;
  margin-bottom: 25px;
  padding: 15px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item01 {
    margin-bottom: 20px;
    padding: 10px;
  }
}

.handling-tires-wrap .tire-item01 .img {
  margin-bottom: 13px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item01 .img {
    margin-bottom: 8px;
  }
}

.handling-tires-wrap .tire-item01 .img img {
  width: 100%;
}

.handling-tires-wrap .tire-item01 .logo-img {
  margin-bottom: 5px;
}

.handling-tires-wrap .tire-item01 .logo-img img {
  max-width: 110px;
}

.handling-tires-wrap .tire-item01 .size {
  position: absolute;
  display: inline-block;
  padding: 2px 5px;
  background: #828282;
  color: #FFF;
  font-size: 9px;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item01 .size {
    padding: 0 3px;
  }
}

.handling-tires-wrap .tire-item01 .size span {
  font-size: 12px;
  font-size: 1.2rem;
}

.handling-tires-wrap .tire-item01 .ttl {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item01 .ttl {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.handling-tires-wrap .tire-item01 .maker {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.3;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.handling-tires-wrap .tire-item01 .code {
  border-top: #d9dade 1px solid;
  border-bottom: #d9dade 1px solid;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 5px 0;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item01 .code {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.handling-tires-wrap .tire-item01 .price {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item01 .price {
    font-size: 10px;
    font-size: 1rem;
  }
}

.handling-tires-wrap .tire-item01 .price span {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  color: #ff0000;
  font-weight: bold;
}

.handling-tires-wrap .tire-item01 .price span .tax {
  display: inline;
  font-size: 13px;
  font-size: 1.3rem;
}

.handling-tires-wrap .tire-item01 .bt-area {
  margin-top: auto;
}

.handling-tires-wrap .tire-item02 {
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
  margin-bottom: 25px;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item02 {
    padding: 7px;
  }
}

.handling-tires-wrap .tire-item02 .img {
  float: left;
  width: 42%;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item02 .img {
    width: 38%;
  }
}

.handling-tires-wrap .tire-item02 .txt {
  width: 58%;
  float: right;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item02 .txt {
    width: 62%;
  }
}

.handling-tires-wrap .tire-item02 .ttl {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 1px solid #333;
  margin-bottom: 8px;
  padding-top: 3px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item02 .ttl {
    font-size: 11px;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
}

.handling-tires-wrap .tire-item02 .price {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item02 .price {
    font-size: 10px;
    font-size: 1rem;
  }
}

.handling-tires-wrap .tire-item02 .price span {
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  color: #ff0000;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item02 .price span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.handling-tires-wrap .tire-item02 .price span .tax {
  display: inline;
  font-size: 10px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-item02 .price span .tax {
    font-size: 9px;
    font-size: 0.9rem;
  }
}

.handling-tires-wrap .tire-img-wrap {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .tire-img-wrap {
    padding: 0 3.125%;
    margin-top: 30px;
  }
}

.handling-tires-wrap .more-btn {
  margin: 60px auto 0;
  max-width: 360px;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .more-btn {
    margin-top: 30px;
  }
}

.handling-tires-wrap .video_ttl {
  text-align: center;
  margin-bottom: 45px;
  font-weight: bold;
  font-size: 26px;
  font-size: 2.6rem;
}

@media screen and (max-width: 768px) {
  .handling-tires-wrap .video_ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.handling-tires-wrap .video_embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.handling-tires-wrap .video_embed iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.tire-bnr-wrap {
  padding: 70px 0 50px;
}

@media screen and (max-width: 768px) {
  .tire-bnr-wrap {
    padding: 35px 0 30px;
  }
}

.tire-bnr-wrap .tire-bnr li {
  width: 49%;
  float: left;
  margin: 0 2% 20px 0;
}

@media screen and (max-width: 768px) {
  .tire-bnr-wrap .tire-bnr li {
    width: 100%;
    float: none;
    margin: 0 0 15px;
  }
  .tire-bnr-wrap .tire-bnr li img {
    width: 100%;
  }
}

.tire-bnr-wrap .tire-bnr li:nth-child(2n) {
  margin-right: 0;
}

.tire-bnr-wrap .tire-bnr li p {
  text-align: right;
  font-size: 13px;
  font-size: 1.3rem;
  padding-top: 5px;
}

.tire-bnr-wrap .intro-txt {
  padding-top: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .tire-bnr-wrap .intro-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 320px) {
  .tire-bnr-wrap .intro-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.shop-news-wrap {
  background: #f5f5f5;
  padding: 60px 0 80px;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap {
    padding: 40px 0 0;
  }
}

.shop-news-wrap .news-area {
  background: #FFF;
  padding: 45px 55px;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area {
    margin-bottom: 35px;
    padding: 13px 20px 0;
  }
}

.shop-news-wrap .news-area .news-head {
  position: relative;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 17px;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-head {
    padding-bottom: 10px;
    border-color: #d9dade;
  }
}

.shop-news-wrap .news-area .news-head .basic-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 34px;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-head .basic-btn {
    display: none;
  }
}

.shop-news-wrap .news-area .news-head .basic-btn i {
  right: inherit;
  left: 8px;
  -webkit-transition: left .5s;
  -o-transition: left .5s;
  transition: left .5s;
}

.shop-news-wrap .news-area .news-head .basic-btn:hover i {
  left: 11px;
}

.shop-news-wrap .news-area .news-ttl {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-ttl {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-post ~ .news-post {
    display: none;
  }
}

.shop-news-wrap .news-area .news-post {
  border-bottom: 1px solid #c4c4c4;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-post {
    display: block;
    border: none;
  }
}

.shop-news-wrap .news-area .news-post .flex-box {
  color: #333;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-post .flex-box {
    display: block;
    padding: 20px 0;
  }
}

.shop-news-wrap .news-area .news-post .img-col {
  width: 32.2%;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-post .img-col {
    width: 100%;
    margin-bottom: 15px;
  }
}

.shop-news-wrap .news-area .news-post .img-col .img {
  position: relative;
  overflow: hidden;
}

.shop-news-wrap .news-area .news-post .img-col .img::after {
  content: "";
  display: block;
  padding-top: 64.28%;
}

.shop-news-wrap .news-area .news-post .img-col .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.shop-news-wrap .news-area .news-post .txt-col {
  width: 67.8%;
  padding-left: 35px;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-post .txt-col {
    width: 100%;
    padding: 0;
  }
}

.shop-news-wrap .news-area .news-post .date {
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 7px;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-post .date {
    display: none;
  }
}

.shop-news-wrap .news-area .news-post .ttl {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-post .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.shop-news-wrap .news-area .news-post .txt {
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .news-area .news-post .txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.shop-news-wrap .message-row {
  margin-top: 55px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .message-row {
    display: block;
    margin-top: 0;
  }
}

.shop-news-wrap .message-area {
  padding-top: 40px;
}

@media screen and (min-width: 769px) {
  .shop-news-wrap .message-area {
    width: 61.23%;
  }
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .message-area {
    padding: 0;
    margin: 0 -3.125%;
  }
}

.shop-news-wrap .message-area .message-box {
  padding: 70px 60px 35px;
  position: relative;
  background: #FFF;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .message-area .message-box {
    padding: 35px 3.125% 10px;
  }
}

.shop-news-wrap .message-area .message-img {
  width: 180px;
  position: absolute;
  top: -40px;
  left: -40px;
  border: 10px solid #FFF;
  background: #FFF;
  border-radius: 200px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .message-area .message-img {
    width: 100px;
    position: static;
    display: block;
    margin: 0 auto 13px;
    border: none;
  }
}

.shop-news-wrap .message-area .message-img .img {
  position: relative;
  overflow: hidden;
}

.shop-news-wrap .message-area .message-img .img img {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .message-area .message-img .img img {
    width: 100px;
    height: 100px;
  }
}

.shop-news-wrap .message-area .message-ttl {
  font-weight: bold;
  text-align: center;
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .message-area .message-ttl {
    font-size: 17px;
    font-size: 1.7rem;
    margin-bottom: 17px;
  }
}

.shop-news-wrap .message-area p {
  font-size: 13px;
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .message-area p {
    margin-bottom: 25px;
  }
}

.shop-news-wrap .fb-area {
  width: 34.7%;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .fb-area {
    width: 100%;
    padding: 35px 0 40px;
  }
}

.shop-news-wrap .fb-area .fb-ttl {
  font-size: 20px;
  font-size: 2rem;
  color: #3b5998;
  font-weight: bold;
  margin-bottom: 3px;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .fb-area .fb-ttl {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.shop-news-wrap .fb-area .fb-box {
  padding: 8px;
  background: #3b5998;
}

@media screen and (max-width: 768px) {
  .shop-news-wrap .fb-area .fb-box {
    max-width: 500px;
    margin: 0 auto;
  }
}

.shop-news-wrap .fb-area .fb-box .fb_iframe_widget, .shop-news-wrap .fb-area .fb-box .fb_iframe_widget iframe[style], .shop-news-wrap .fb-area .fb-box .fb_iframe_widget span {
  width: 100% !important;
}

.basic-list-wrap {
  padding: 60px 0 55px;
}

@media screen and (max-width: 768px) {
  .basic-list-wrap {
    padding: 30px 0;
  }
}

.basic-list-wrap .gray-bg {
  background: #f5f5f5;
  padding: 20px;
}

.basic-list-wrap .ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .basic-list-wrap .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.basic-list-wrap .wh-box {
  background: #FFF;
  padding: 25px 5px 5px 25px;
}

@media screen and (max-width: 768px) {
  .basic-list-wrap .wh-box {
    padding: 20px 10px 5px 20px;
  }
}

.basic-list-wrap .shop-list {
  font-size: 0;
}

.basic-list-wrap .shop-list li {
  display: inline-block;
  margin-right: 25px;
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .basic-list-wrap .shop-list li {
    margin-right: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.basic-list-wrap .shop-list li a {
  display: block;
  padding: 2px 15px;
  border-radius: 50px;
  border: 1px solid #333333;
  color: #333;
}

@media screen and (max-width: 768px) {
  .basic-list-wrap .shop-list li a {
    padding: 2px 10px;
  }
}

.basic-list-wrap .shop-list li a:hover {
  background: #333;
  color: #FFF;
}

/* shop-slider */
.shop-slider .item:focus,
.shop-slider-thumb .item:focus {
  outline: 0;
}

.shop-slider {
  margin-bottom: 20px;
}

.shop-slider .slick-prev, .shop-slider .slick-next {
  background: #434343;
  width: 30px;
  height: 70px;
}

@media screen and (max-width: 768px) {
  .shop-slider .slick-prev, .shop-slider .slick-next {
    width: 25px;
    height: 50px;
  }
  .shop-slider .slick-prev::before, .shop-slider .slick-next::before {
    font-size: 18px;
  }
}

.shop-slider .slick-prev {
  border-radius: 0 5px 5px 0;
}

.shop-slider .slick-next {
  border-radius: 5px 0 0 5px;
}

.shop-slider .item {
  max-height: 331px;
  overflow: hidden;
}

.shop-slider .item img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .shop-slider-thumb {
    display: none;
  }
}

.shop-slider-thumb .slick-track {
  width: 100% !important;
}

.shop-slider-thumb .slick-list {
  overflow: inherit;
}

.shop-slider-thumb .item {
  position: relative;
  z-index: 1;
  width: 13.58% !important;
  height: 56px;
  margin-right: 3.7%;
  margin-bottom: 15px;
  cursor: pointer;
  overflow: hidden;
}

.shop-slider-thumb .item::after {
  opacity: 0;
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #e91426;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.shop-slider-thumb .item:nth-of-type(6n) {
  margin-right: 0;
}

.shop-slider-thumb .item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  max-width: inherit;
  height: 100%;
}

.shop-slider-thumb .item.slick-current::after, .shop-slider-thumb .item:hover::after {
  opacity: 1;
}

.shop-fix-bnr {
  background: #e91426;
}

.search-shop-map {
  background: #FFF;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .search-shop-map {
    display: block;
    margin: 0 -3.125% 45px;
  }
}

.search-shop-map .l-col {
  width: 34.7%;
  padding: 15px 20px;
}

@media screen and (min-width: 769px) {
  .search-shop-map .l-col {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 768px) {
  .search-shop-map .l-col {
    width: 100%;
    padding: 15px 3.125% 5px;
  }
}

.search-shop-map .r-col {
  width: 65.3%;
  min-height: 470px;
}

@media screen and (min-width: 769px) {
  .search-shop-map .r-col {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 768px) {
  .search-shop-map .r-col {
    width: 100%;
    height: 245px;
    min-height: inherit;
  }
}

.search-shop-map .r-col iframe {
  height: 100%;
  width: 100%;
}

.search-shop-map .ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .search-shop-map .ttl {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.search-shop-map .shop-item {
  margin-bottom: 15px;
}

.search-shop-map .shop-item a {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  webkit-transition-duration: .5s;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  position: relative;
  width: 100%;
  text-decoration: none;
  line-height: 1;
  z-index: 1;
  vertical-align: middle;
  overflow: hidden;
  color: #333;
  padding-left: 10px;
  padding-right: 30px;
  border: 1px solid #d90012;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .search-shop-map .shop-item a {
    padding-right: 35px;
  }
}

.search-shop-map .shop-item a::before {
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
     transition-duration: .5s;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: none;
  background: #d90012;
}

.search-shop-map .shop-item a i {
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: right .5s;
  -o-transition: right .5s;
  transition: right .5s;
}

.search-shop-map .shop-item a .name {
  width: 125px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .search-shop-map .shop-item a .name {
    font-size: 14px;
    font-size: 1.4rem;
    width: auto;
  }
}

.search-shop-map .shop-item a .km {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: right;
}

.search-shop-map .shop-item a .km span {
  color: #d90012;
  webkit-transition-duration: .5s;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  font-size: 18px;
  font-size: 1.8rem;
}

.search-shop-map .shop-item a:hover {
  color: #FFF;
  background: #d90012;
}

.search-shop-map .shop-item a:hover::before {
  left: 0;
}

.search-shop-map .shop-item a:hover .km span {
  color: #FFF;
}

.search-shop-map .shop-item a:hover i {
  right: 5px;
}

.page-sale .basic-list-wrap {
  padding: 20px 0 80px;
}

@media screen and (max-width: 768px) {
  .page-sale .basic-list-wrap {
    padding: 20px 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .page-sale .basic-list-wrap.sp {
    background: #FFF;
  }
}

.page-sale .shop-news-wrap .fb-area {
  padding-top: 0;
}

.sale-link-wrap {
  padding: 80px 0 120px;
  background: #FFF;
}

@media screen and (max-width: 768px) {
  .sale-link-wrap {
    padding: 40px 0 25px;
  }
}

@media screen and (min-width: 769px) {
  .sale-link-wrap .wrap {
    width: 96rem;
  }
}

.sale-link-wrap .sale-ttl {
  position: relative;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  margin-left: 10px;
  padding-left: 45px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sale-link-wrap .sale-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.sale-link-wrap .sale-ttl::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/sale/icon_car.png) no-repeat 0 0;
  background-size: 100% auto;
  width: 30px;
  height: 26px;
  margin-top: -16px;
}

.sale-link-wrap .sale-ttl span {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .sale-link-wrap .sale-ttl span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.sale-link-wrap .sale-link-list li {
  width: 49%;
  float: left;
  margin-right: 2%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sale-link-wrap .sale-link-list li {
    width: 100%;
    margin-bottom: 15px;
  }
}

.sale-link-wrap .sale-link-list li:nth-child(2n) {
  margin-right: 0;
}

.sale-link-wrap .sale-link-list li .basic-btn {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .sale-link-wrap .sale-link-list li .basic-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* list */
.news-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .news-column {
    padding-bottom: 20px;
  }
}

.news-column .main-col {
  width: 70.5%;
}

@media screen and (max-width: 768px) {
  .news-column .main-col {
    width: 100%;
    margin-bottom: 55px;
  }
}

.news-column .side-col {
  width: 29.5%;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .news-column .side-col {
    width: 100%;
    padding-left: 0;
  }
}

.news-column .side-box {
  padding: 15px 20px 20px;
  margin: 0 0 20px;
  background: #FFF;
}

@media screen and (max-width: 768px) {
  .news-column .side-box {
    padding: 10px 15px 20px;
  }
}

.news-column .side-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
}

@media screen and (max-width: 768px) {
  .news-column .side-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.news-column .side-list li {
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 1px dashed #e3e4e8;
}

@media screen and (max-width: 768px) {
  .news-column .side-list li {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.news-column .side-list li a {
  display: block;
  padding: 14px 10px;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .news-column .side-list li a {
    padding: 10px 8px;
  }
}

.news-column .side-list li a:hover {
  background: #f5f5f5;
}

.news-column .news-post {
  margin-bottom: 15px;
  background: #FFF;
}

.news-column .news-post a {
  display: block;
  padding: 15px;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .news-column .news-post a {
    padding: 10px;
  }
}

.news-column .news-post a:hover .txt {
  text-decoration: underline;
}

.news-column .news-post .txt {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .news-column .news-post .txt {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.news-column .news-post--column {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .news-column .news-post--column {
    background: none;
    border-bottom: 1px solid #dadbdf;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-radius: 0;
  }
  .news-column .news-post--column:last-of-type {
    border-bottom: none;
  }
}

.news-column .news-post--column a {
  padding: 0;
}

@media screen and (min-width: 769px) {
  .news-column .news-post--column .post-column {
    min-height: 140px;
  }
}

.news-column .news-post--column .img-col {
  position: relative;
  width: 36%;
}

.news-column .news-post--column .img-col .new {
  width: 46px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  background: #e91426;
  color: #FFF;
  font-size: 15px;
  font-size: 1.5rem;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .news-column .news-post--column .img-col .new {
    font-size: 12px;
    font-size: 1.2rem;
    height: 20px;
    line-height: 20px;
    width: 35px;
    padding-left: 6px;
  }
}

.news-column .news-post--column .img-col .new::after {
  position: absolute;
  content: '';
  left: 100%;
  top: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 12px #e91426;
  border-bottom: solid 30px transparent;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .news-column .news-post--column .img-col .new::after {
    border-left: solid 8px #e91426;
    border-bottom: solid 20px transparent;
  }
}

.news-column .news-post--column .img-col .img {
  position: relative;
  overflow: hidden;
}

.news-column .news-post--column .img-col .img::after {
  content: "";
  display: block;
  padding-top: 56%;
}

.news-column .news-post--column .img-col .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.news-column .news-post--column .txt-col {
  width: 64%;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .news-column .news-post--column .txt-col {
    padding: 0 0 0 15px;
  }
}

.news-column .post-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-column .post-head .new {
  background: #e91426;
  font-size: 13px;
  font-size: 1.3rem;
  margin-right: 15px;
  min-width: 60px;
  color: #FFF;
  text-align: center;
  line-height: 20px;
}

@media screen and (max-width: 768px) {
  .news-column .post-head .new {
    font-size: 10px;
    font-size: 1rem;
    min-width: 50px;
    margin-right: 10px;
  }
}

.news-column .post-head .day {
  font-size: 15px;
  font-size: 1.5rem;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .news-column .post-head .day {
    font-size: 12px;
    font-size: 1.2rem;
    margin-right: 10px;
  }
}

.news-column .post-head .category {
  font-size: 13px;
  font-size: 1.3rem;
  margin-right: 15px;
  background: #333;
  display: inline-block;
  vertical-align: middle;
  min-width: 100px;
  color: #FFF;
  text-align: center;
  line-height: 20px;
}

@media screen and (max-width: 768px) {
  .news-column .post-head .category {
    font-size: 10px;
    font-size: 1rem;
    min-width: 75px;
    margin-right: 10px;
  }
}

.news-column .post-head .category--shop, .news-column .post-head .category--new {
  background: #fbb03b;
}

.news-column .post-head .area {
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .news-column .post-head .area {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.wp-pagenavi {
  text-align: center;
  padding-top: 35px;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi {
    padding-top: 15px;
  }
}

.wp-pagenavi span, .wp-pagenavi a {
  display: inline-block;
  width: 38px;
  line-height: 40px;
  color: #333;
  background: #ffffff;
  border: none !important;
  padding: 0 !important;
  margin: 0 8px !important;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi span, .wp-pagenavi a {
    width: 36px;
    line-height: 38px;
    font-size: 13px;
    font-size: 1.3rem;
    margin: 0 5px !important;
  }
}

.wp-pagenavi span.pages, .wp-pagenavi span.first, .wp-pagenavi span.last, .wp-pagenavi a.pages, .wp-pagenavi a.first, .wp-pagenavi a.last {
  display: none;
}

.wp-pagenavi span.nextpostslink, .wp-pagenavi span.previouspostslink, .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  background: none !important;
  color: #333 !important;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi span.nextpostslink, .wp-pagenavi span.previouspostslink, .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.wp-pagenavi span.nextpostslink:hover, .wp-pagenavi span.previouspostslink:hover, .wp-pagenavi a.nextpostslink:hover, .wp-pagenavi a.previouspostslink:hover {
  color: #333 !important;
}

.wp-pagenavi span.current, .wp-pagenavi a.current {
  background: #333333;
  color: #FFF !important;
}

.wp-pagenavi a:hover {
  background: #333333;
  color: #FFF !important;
}

/* detail*/
.news-column .news-detail-box {
  padding: 40px;
  background: #FFF;
}

@media screen and (max-width: 768px) {
  .news-column .news-detail-box {
    padding: 15px;
  }
}

.news-column .news-detail-box .detail-mv {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .news-column .news-detail-box .detail-mv {
    margin-bottom: 20px;
  }
}

.news-column .news-detail-box .post-head {
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .news-column .news-detail-box .post-head {
    margin-bottom: 13px;
  }
}

.news-column .news-detail-box .detail-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .news-column .news-detail-box .detail-ttl {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}

.news-column .detail-content h2 {
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content h2 {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 7px;
  }
}

.news-column .detail-content h3 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 10px;
  border-left: 5px solid #333;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content h3 {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-left: 3px solid #333;
  }
}

.news-column .detail-content h4 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content h4 {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}

.news-column .detail-content h4 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content h4 {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}

.news-column .detail-content p {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content p {
    margin-bottom: 15px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.news-column .detail-content p:last-of-type {
  margin-bottom: 0;
}

.news-column .detail-content p img {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content p img {
    margin-bottom: 15px;
  }
}

.news-column .detail-content img.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content img.alignleft {
    float: none;
    display: block;
    margin: 0 auto 15px;
  }
}

.news-column .detail-content img.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content img.alignright {
    float: none;
    display: block;
    margin: 0 auto 15px;
  }
}

.news-column .detail-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content img.aligncenter {
    display: block;
  }
}

.news-column .detail-content ul, .news-column .detail-content ol {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content ul, .news-column .detail-content ol {
    margin-bottom: 15px;
  }
}

.news-column .detail-content ul li, .news-column .detail-content ol li {
  position: relative;
  padding-left: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .news-column .detail-content ul li, .news-column .detail-content ol li {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.news-column .detail-content ul li::before, .news-column .detail-content ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  display: block;
  width: 4px;
  height: 4px;
  background: #434444;
  border-radius: 5px;
}

.news-column .back-list-btn {
  padding-top: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .news-column .back-list-btn {
    padding-top: 30px;
  }
}

.news-column .back-list-btn a {
  position: relative;
  display: inline-block;
  background: #FFF;
  color: #333;
  line-height: 40px;
  width: 80px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .news-column .back-list-btn a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.news-column .back-list-btn a:hover {
  background: #333;
  color: #FFF;
}

.news-column .back-list-btn a::after {
  font-family: 'FontAwesome';
  content: "\f105";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -25px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #333 !important;
}

@media screen and (max-width: 768px) {
  .news-column .back-list-btn a::after {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.txt-404 {
  padding-bottom: 80px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .txt-404 {
    font-size: 12px;
    font-size: 1.2rem;
    padding-bottom: 50px;
  }
}

.txt-404 a {
  text-decoration: underline;
}

.feature-item {
  border: 10px solid #cccccc;
  background: #FFF;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .feature-item {
    padding: 15px;
    border-width: 6px;
  }
}

@media screen and (min-width: 769px) {
  .feature-item .item-inner .img {
    width: 35.4%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.feature-item .item-inner .img img {
  width: 100%;
}

.feature-item .item-inner .feature-intro {
  padding: 20px;
}

@media screen and (min-width: 769px) {
  .feature-item .item-inner .feature-intro {
    width: 64.6%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 768px) {
  .feature-item .item-inner .feature-intro {
    padding: 15px;
  }
}

.feature-item .gray-inner {
  padding: 50px;
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .feature-item .gray-inner {
    margin: 0 15px 15px;
    padding: 15px;
  }
}

.feature-item .intro-list {
  margin-bottom: 30px;
}

.feature-item .intro-list.mb-none {
  margin-bottom: 0;
}

.feature-item .intro-list li {
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .feature-item .intro-list li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.feature-item .intro-list li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  background: #e91426;
  width: 14px;
  height: 14px;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .feature-item .intro-list li::before {
    width: 10px;
    height: 10px;
  }
}

.feature-item .txt {
  margin-bottom: 17px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .feature-item .txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.feature-item .txt:last-of-type {
  margin-bottom: 0;
}

.feature-item .txt.mb-none {
  margin-bottom: 0;
}

.feature-item .txt.strong {
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  .feature-item .txt.strong {
    line-height: 1.6;
  }
}

@media screen and (max-width: 768px) {
  .feature-item .txt.strong {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.feature-item .txt.red {
  color: #e91426;
}

.feature-item .caution {
  background: #e91426;
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  width: 100px;
  line-height: 30px;
  margin-bottom: 17px;
}

@media screen and (max-width: 768px) {
  .feature-item .caution {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.feature-intro dt {
  position: relative;
  border-bottom: 1px solid #333;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 22px;
  padding-left: 35px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .feature-intro dt {
    font-size: 15px;
    font-size: 1.5rem;
    padding-bottom: 12px;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
}

.feature-intro dt::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -4px;
  width: 24px;
  height: 33px;
  background: url(../img/feature/mark.png) no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .feature-intro dt::before {
    width: 18px;
    height: 25px;
    top: -2px;
  }
}

.sec-feature01 {
  padding: 30px 0 20px;
}

@media screen and (max-width: 768px) {
  .sec-feature01 {
    padding: 40px 0 20px;
  }
}

.sec-feature01 .box-column {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .sec-feature01 .box-column {
    margin-bottom: 22px;
  }
}

.sec-feature01 .box-column .feature-item {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .sec-feature01 .box-column .feature-item {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .sec-feature01 .box-column .feature-item:first-of-type {
    border-right-width: 5px;
  }
}

@media screen and (max-width: 768px) {
  .sec-feature01 .box-column .feature-item:first-of-type {
    border-bottom-width: 3px;
  }
}

@media screen and (min-width: 769px) {
  .sec-feature01 .box-column .feature-item:last-of-type {
    border-left-width: 5px;
  }
}

@media screen and (max-width: 768px) {
  .sec-feature01 .box-column .feature-item:last-of-type {
    border-top-width: 3px;
  }
}

.sec-feature01 .feature-intro dt {
  margin-bottom: 13px;
}

@media screen and (max-width: 768px) {
  .sec-feature01 .feature-intro dt {
    margin-bottom: 10px;
  }
}

.sec-feature02 {
  padding: 80px 0 50px;
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .sec-feature02 {
    padding: 40px 0 15px;
  }
}

.sec-feature02 .feature-item {
  padding: 0;
  margin-bottom: 20px;
}

.sec-feature03 {
  padding: 80px 0 40px;
}

@media screen and (max-width: 768px) {
  .sec-feature03 {
    padding: 40px 0 15px;
  }
}

.page-company_index {
  background: #fff;
}

p.txt-all {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
  font-weight: 500;
  color: #333333;
}

@media screen and (max-width: 768px) {
  p.txt-all {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.846;
  }
}

.ttl-underline30 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  color: #333333;
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.ttl-underline30.page-ttl {
  margin-top: 46px;
}

@media screen and (max-width: 768px) {
  .ttl-underline30.page-ttl {
    margin-top: 55px;
  }
}

@media screen and (max-width: 768px) {
  .ttl-underline30 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.167;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.ttl-underline30:after {
  content: "";
  width: 40px;
  height: 3px;
  background: #e91426;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
  margin: 0 auto;
}

.info-sheet table {
  border: 1px solid #333333;
  font-family: 'Noto Sans JP', sans-serif;
}

.info-sheet table th {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.857;
  font-weight: bold;
  color: #333333;
  background: #eeeeee;
  width: calc((220/980)*100%);
  border-right: 1px solid #333333;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .info-sheet table th {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.364;
  }
}

.info-sheet table td {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.857;
  color: #333333;
  background: #ffffff;
  width: calc((760/980)*100%);
  padding: 6.9px 12px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .info-sheet table td {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.364;
  }
}

.info-sheet table td.ltt-spa {
  letter-spacing: -0.11em;
}

.info-sheet table td a {
  color: #333333;
}

.info-sheet table tr {
  border-bottom: 1px solid #333333;
}

.ttl-culcompany {
  padding: 31px 0px 30px;
  background: #f5f5f5;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 768px) {
  .ttl-culcompany {
    padding: 15px 0px 15px;
  }
}

.ttl-culcompany__text {
  font-size: 18px;
  font-size: 1.8rem;
  color: #333333;
  line-height: 2.333;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .ttl-culcompany__text {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

.ttl-culcompany__main {
  font-size: 30px;
  font-size: 3rem;
  color: #333333;
  line-height: 1.6;
  font-weight: bold;
  margin: 6px 0 2px;
}

@media screen and (max-width: 768px) {
  .ttl-culcompany__main {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.333;
  }
}

.ttl-culcompany__des {
  font-size: 24px;
  font-size: 2.4rem;
  color: #333333;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 768px) {
  .ttl-culcompany__des {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    display: inline-block;
  }
}

.sec-culcompany {
  padding: 35px 35px 34px;
  border: 10px solid #e91426;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .sec-culcompany {
    padding: 16px;
    border: 5px solid #e91426;
    margin-top: 40px;
  }
}

.main-culcompany {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.875;
  font-weight: bold;
  text-align: center;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  .main-culcompany {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.364;
  }
}

.main-culcompany .main-culcompany__des {
  margin: 31px 0 30px;
}

@media screen and (max-width: 768px) {
  .main-culcompany .main-culcompany__des {
    margin: 15px 0 15px;
  }
}

.sec-opinion {
  margin-top: 72px;
  padding: 80px 0;
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .sec-opinion {
    margin-top: 35px;
    padding: 40px 0;
  }
}

.sec-opinion .ttl-underline30 {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .sec-opinion .ttl-underline30 {
    margin-bottom: 15px;
  }
}

.sec-opinion .txt-opinion {
  letter-spacing: -0.055em;
}

.sec-opinion .txt-cource {
  text-align: right;
  margin-top: 31px;
  display: inline-block;
  width: 100%;
}

.sec-history {
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .sec-history {
    margin-top: 35px;
  }
}

.sec-history .ttl-underline30 {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .sec-history .ttl-underline30 {
    margin-bottom: 15px;
  }
}

.history-detail {
  margin: 52px 0 80px;
}

@media screen and (max-width: 768px) {
  .history-detail {
    margin-top: 25px;
    margin-bottom: 40px;
  }
}

.history-detail .list-event {
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
  line-height: 1.875;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 768px) {
  .history-detail .list-event {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.364;
  }
}

@media screen and (max-width: 768px) and (max-width: 460px) {
  .history-detail .list-event {
    font-size: 10px;
    font-size: 1rem;
  }
}

.history-detail .list-event .item-event {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.history-detail .list-event .item-event:nth-child(2n+1) .th-item {
  background: #fdedee;
}

.history-detail .list-event .item-event:nth-child(2n+1) .dt-item {
  background: #efefef;
}

.history-detail .list-event .th-item {
  font-weight: bold;
  width: calc((220/980)*100%);
  border-top: 1px solid #e91426;
  border-bottom: 1px solid #e91426;
  padding: 14.5px;
  display: inline-block;
  margin-bottom: -1px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .history-detail .list-event .th-item {
    width: calc((170/670)*100%);
    padding: 5px;
  }
}

.history-detail .list-event .dt-item {
  font-weight: 500;
  width: calc(((760/980)*100%) - 10px);
  margin-left: 10px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 14.5px;
  display: inline-block;
  margin-bottom: -1px;
}

@media screen and (max-width: 768px) {
  .history-detail .list-event .dt-item {
    width: calc(((500/670)*100%) - 5px);
    margin-left: 5px;
    padding: 5px;
  }
}

.final-list {
  padding: 40px 0 0;
}

@media screen and (max-width: 768px) {
  .final-list {
    padding-top: 100px;
  }
}

.l-top.l-page .news__headline {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .l-top.l-page .news__headline {
    margin-bottom: 15px;
  }
}

.information-block {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .information-block {
    margin-bottom: 0;
  }
}

.information-block .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 10px solid #e5e5e5;
  margin-bottom: 21px;
  background: #eeeeee;
}

@media screen and (max-width: 768px) {
  .information-block .item {
    border: 5px solid #e5e5e5;
    margin-bottom: 15px;
  }
}

.information-block .item:last-child {
  margin-bottom: 0;
}

.information-block .item .img {
  width: 35.5%;
}

@media screen and (min-width: 769px) {
  .information-block .item .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 768px) {
  .information-block .item .img {
    width: 100%;
  }
}

.information-block .item .img.img-sp {
  padding: 18px;
}

.information-block .item .img.img-sp img {
  width: 100%;
  max-width: 330px;
  display: block;
  margin: 0 auto 20px;
}

.information-block .item .txt-basic {
  width: 64.5%;
  background: white;
  padding: 14px 19px 10px 19px;
}

@media screen and (max-width: 768px) {
  .information-block .item .txt-basic {
    width: 100%;
    padding: 10px;
  }
}

.information-block .item .txt-basic .note {
  border: 1px solid #333333;
  padding: 5px 0;
  margin-bottom: 11px !important;
}

@media screen and (max-width: 768px) {
  .information-block .item .txt-basic .note {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.txt-basic {
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
  line-height: 1.81;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
}

@media screen and (max-width: 768px) {
  .txt-basic {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.txt-basic .ttl {
  display: block;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  border-bottom: 1px solid #333333;
  padding-left: 34px;
  letter-spacing: -0.7px;
  padding-bottom: 18px;
  margin-bottom: 14px;
  line-height: 1.4;
  position: relative;
}

@media screen and (max-width: 768px) {
  .txt-basic .ttl {
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 30px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

.txt-basic .ttl.search-icon {
  letter-spacing: -0.7px;
}

.txt-basic .ttl.search-icon:before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/information/search-icon.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 2px;
}

@media screen and (max-width: 768px) {
  .txt-basic .ttl.search-icon:before {
    width: 21px;
    height: 21px;
  }
}

@media screen and (min-width: 769px) {
  .txt-basic p {
    letter-spacing: -1px;
  }
}

.txt-basic p:not([class]):not(:last-child) {
  margin-bottom: 29px;
}

@media screen and (max-width: 768px) {
  .txt-basic p:not([class]):not(:last-child) {
    letter-spacing: 0;
    margin-bottom: 20px;
  }
}

.txt-basic p:last-child {
  margin-bottom: 0 !important;
}

.list-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #333333;
  padding: 12px 0 12px 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .list-number {
    background: white;
    padding: 10px 15px;
    border: none;
  }
}

.list-number li {
  width: 33.333%;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  margin-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .list-number li {
    width: 100%;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.list-decimal {
  margin-bottom: 10px;
}

.list-decimal li {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .list-decimal li {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.table-list-01 table {
  width: 100%;
}

.table-list-01 table tr:last-child {
  border-bottom: 1px solid #333333;
}

.table-list-01 table tr th, .table-list-01 table tr td {
  border: 1px solid #333333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  text-align: center;
  font-weight: bold;
}

.table-list-01 table tr th:nth-child(odd), .table-list-01 table tr td:nth-child(odd) {
  width: 70px;
}

.table-list-01 table tr th {
  background: #eeeeee;
  padding: 6px 0;
}

.table-list-01 table tr td {
  border-top: none;
  border-bottom: none;
  padding: 3px 0;
}

.table-list-02 table tr:nth-child(1) th:nth-child(1) {
  width: 16.5%;
}

.table-list-02 table tr:nth-child(1) th:nth-child(3) {
  width: 31.5%;
}

.table-list-02 table tr:nth-child(2) th {
  width: 25.9%;
}

@media screen and (max-width: 768px) {
  .table-list-02 table tr:nth-child(2) th:nth-child(1) {
    width: 22%;
  }
  .table-list-02 table tr:nth-child(2) th:nth-child(2) {
    width: 29%;
  }
}

.table-list-02 table tr th, .table-list-02 table tr td {
  font-weight: bold;
  border: 1px solid #333333;
  text-align: center;
}

.table-list-02 table tr th {
  background: #eeeeee;
  padding: 6px;
}

.table-list-02 table tr td {
  padding: 6px 0;
}

.chage-block {
  border: 10px solid #e5e5e5;
  background: white;
  padding: 36px 30px;
}

@media screen and (max-width: 768px) {
  .chage-block {
    border: 5px solid #e5e5e5;
    padding: 10px;
  }
  .chage-block .txt-left-sp {
    text-align: left;
  }
}

.chage-block .information-block {
  margin-bottom: 0;
}

.chage-block .information-block .item {
  margin-bottom: 0;
}

.chage-note {
  background: #eeeeee;
  padding: 24px 11px 10px 117px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .chage-note {
    margin: 10px 0 15px;
    padding: 10px 15px;
  }
}

.chage-note .list-number {
  border: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .chage-note .list-number {
    background: none;
    margin-bottom: 0;
  }
}

.chage-note .list-number li {
  margin-bottom: 6px;
  width: auto;
  margin-right: 45px;
}

.chage-note .list-number li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .chage-note .list-number li {
    width: 100%;
    margin-bottom: 0;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-13 {
  margin-bottom: 13px !important;
}

@media screen and (min-width: 769px) {
  .mbpc-10 {
    margin-bottom: 10px !important;
  }
  .mbpc-13 {
    margin-bottom: 13px !important;
  }
  .mbpc-35 {
    margin-bottom: 35px !important;
  }
}

@media screen and (max-width: 768px) {
  .mbsp-0 {
    margin-bottom: 0 !important;
  }
  .mbsp-10 {
    margin-bottom: 10px !important;
  }
}

.w100 {
  width: 100% !important;
}

.txt-center {
  text-align: center;
}

.check-list, .chage-list {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .check-list, .chage-list {
    padding: 40px 0;
  }
}

.sec-recruit-part {
  margin-bottom: 82px;
}

@media screen and (max-width: 768px) {
  .sec-recruit-part {
    margin-bottom: 50px;
  }
}

.sec-recruit-part .ttl-larger {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .sec-recruit-part .ttl-larger {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
  }
}

.sec-recruit-part .ttl-larger_red {
  color: #e91426;
}

@media screen and (max-width: 768px) {
  .sec-recruit-part .ttl-larger_md {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.sec-recruit-part .recruit-content {
  text-align: center;
  margin: 80px 0 69px;
}

@media screen and (max-width: 768px) {
  .sec-recruit-part .recruit-content {
    margin: 25px 0 25px;
  }
}

.sec-recruit-part .recruit-content .ttl-small {
  margin-top: 67px;
}

@media screen and (max-width: 768px) {
  .sec-recruit-part .recruit-content .ttl-small {
    margin-top: 10px;
  }
}

.sec-recruit-part .ttl-small {
  font-size: 30px;
  font-size: 3rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  line-height: 1.75;
  color: #333333;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-recruit-part .ttl-small {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 768px) and (min-width: 641px) {
  .sec-recruit-part .ttl-small {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.recruit-list-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .recruit-list-img {
    display: block;
  }
}

.recruit-list-img .item-img {
  width: calc(50% - 10px);
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .recruit-list-img .item-img {
    width: 100%;
    margin: 0px 0px 15px;
  }
  .recruit-list-img .item-img img {
    display: block;
    margin: auto;
  }
  .recruit-list-img .item-img:last-child {
    margin-bottom: 0;
  }
}

.recruit-list-img .item-img:nth-child(3n) {
  margin-right: 0;
}

.ttl-smaller {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
}

.ttl-smaller.ttl-smaller-white {
  color: #fff;
  letter-spacing: 0.06em;
}

.ttl-smaller.ttl-smaller-black {
  color: #333;
}

@media screen and (max-width: 768px) {
  .ttl-smaller {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.364;
  }
}

.sec-quantlity {
  background: #030c1f;
  padding: 70px 0 80px;
}

@media screen and (max-width: 768px) {
  .sec-quantlity {
    padding: 50px 0 15px;
  }
}

.sec-quantlity .list-opinion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-top: 73px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .sec-quantlity .list-opinion {
    margin-top: 27px;
  }
}

.sec-quantlity .item-opinion {
  background: #fff;
  margin-right: 20px;
  width: calc(((100% / 4) - 1px) - 15px);
  text-align: center;
  padding: 50px 0 40px;
  border-radius: 4px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sec-quantlity .item-opinion:first-child {
  padding-top: 64px;
}

.sec-quantlity .item-opinion:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .sec-quantlity .item-opinion {
    width: calc((100% / 2) - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .sec-quantlity .item-opinion:nth-child(2n) {
    margin-right: 0;
  }
}

.sec-quantlity .item-opinion .icon-number {
  position: absolute;
  top: -19px;
  left: 22px;
}

@media screen and (max-width: 768px) {
  .sec-quantlity .item-opinion .icon-number {
    left: 10px;
    top: -15px;
  }
  .sec-quantlity .item-opinion .icon-number img {
    width: auto;
    max-width: 32px;
  }
}

.sec-quantlity .item-opinion_txt {
  color: #030c1f;
  text-align: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  margin-top: 16px;
}

.sec-quantlity .item-opinion_txt > span {
  margin-top: 5px;
  display: inline-block;
}

.sec-quantlity .item-opinion_txt h6 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.333;
}

@media screen and (max-width: 768px) {
  .sec-quantlity .item-opinion_txt h6 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec-quantlity .item-opinion_txt span {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.857;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .sec-quantlity .item-opinion_txt span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.sec-culcompany.sec-culcompany-w980 {
  padding: 0 0;
  border: 0;
  margin-top: 0;
}

.sec-culcompany.sec-culcompany-w980 .wrap .culcompany-main {
  padding: 35px 35px 34px;
  border: 10px solid #e91426;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .sec-culcompany.sec-culcompany-w980 .wrap .culcompany-main {
    padding: 15px;
    border: 5px solid #e91426;
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .sec-contact-franchise .md-btn {
    height: 60px;
    margin: 7px 0px;
    padding: 0px 10%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec-contact .txt-des-small {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  line-height: 1.875;
  text-align: center;
}

.sec-contact .txt-des-small.mg-80 {
  margin: 70px 0 75px;
}

@media screen and (max-width: 768px) {
  .sec-contact .txt-des-small.mg-80 {
    margin: 25px 0 20px;
  }
}

.sec-contact .txt-des-small .ttl-smaller {
  margin-bottom: 18px;
}

.sec-contact .txt-des-small .tel {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  line-height: 1.25;
  color: #e91426;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .sec-contact .txt-des-small .tel {
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec-contact .txt-des-small .number-tel {
  font-size: 30px;
  font-size: 3rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  line-height: 1.25;
  font-weight: bold;
  color: #e91426;
}

.sec-contact .txt-des-small .number-tel a {
  color: #e91426;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .sec-contact .txt-des-small .number-tel a {
    pointer-events: visible;
  }
}

@media screen and (max-width: 768px) {
  .sec-contact .txt-des-small .number-tel {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-contact .txt-des-small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.364;
    color: #333333;
  }
}

.sec-contact .txt-des-small .txt-letspace {
  letter-spacing: -0.06em;
}

.sec-contact .part-contact {
  max-width: 740px;
  margin: 0 auto 80px;
  padding: 28px 65px 35px;
  border: 1px solid #333333;
}

@media screen and (max-width: 768px) {
  .sec-contact .part-contact {
    padding: 28px 20px 35px;
    margin: 0 auto 50px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .sec-contact .part-contact {
    border: none;
    padding: 0px 20px 35px;
  }
}

.sec-contact .part-contact .item:last-child .txt-des-small {
  margin-top: -3px;
}

.sec-contact .part-contact .ttl-smaller {
  margin-bottom: 23px;
  padding-bottom: 24px;
}

.sec-contact .part-contact .txt-des-small {
  line-height: 1.75;
}

.sec-contact .part-contact .txt-des-small .txt-lh {
  margin-bottom: 8px;
  display: inline-block;
  line-height: 1.857;
}

.sec-contact .part-contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .sec-contact .part-contact_list {
    display: block;
  }
}

.sec-contact .part-contact_list .item {
  width: calc(50% - 19px);
  margin-right: 38px;
}

.sec-contact .part-contact_list .item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .sec-contact .part-contact_list .item {
    width: 100%;
    margin-right: 0;
  }
}

.sec-contact .part-contact_list .contact-link {
  display: inline-block;
  width: 100%;
}

.sec-contact .part-contact_list .contact-link a {
  color: #fff;
  padding: 10px 5px;
  background: #e91426;
  display: inline-block;
  width: 280px;
  max-width: 280px;
  border-radius: 3px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .sec-contact .part-contact_list .contact-link a {
    width: 100%;
    max-width: 100%;
  }
}

.sec-contact .part-contact_list .contact-link a:after {
  content: "";
  background: url("../img/franchise/icon-arrow.png") no-repeat;
  background-size: 100%;
  height: 14px;
  width: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .sec-contact .txt-des-small .number-tel a {
    display: inline-block;
  }
  /* IE11 */
}

.md-btn.orange {
  background: #ffa200;
  border: 1px solid #ffa200;
  color: #fff;
  background-color: #ffa200;
}

.sec-policy-content {
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .sec-policy-content {
    margin-bottom: 50px;
  }
}

.sec-policy-content .txt-des-all {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #333333;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sec-policy-content .txt-des-all {
    letter-spacing: 0;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.846;
  }
}

.sec-policy-content .txt-des-all.txt-indent {
  text-indent: -5px;
}

.sec-policy-content .txt-des-all.lettspace-09 {
  letter-spacing: -0.09em;
}

@media screen and (max-width: 768px) {
  .sec-policy-content .txt-des-all.lettspace-09 {
    letter-spacing: 0;
  }
}

.sec-policy-content .txt-des-all a {
  color: #333333;
}

.sec-policy-content h3.ttl-content {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.875;
  color: #333333;
  font-weight: bold;
  border-bottom: 1px solid #333;
  padding-bottom: 11px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .sec-policy-content h3.ttl-content {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.sec-policy-content .block-list-content {
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .sec-policy-content .block-list-content {
    margin-top: 35px;
  }
}

.sec-policy-content .block-list-content .block-txt1 {
  margin-bottom: 44px;
  display: inline-block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec-policy-content .block-list-content .block-txt1 {
    margin-bottom: 30px;
  }
}

.sec-policy-content .block-list-content .list-item {
  padding-left: 21px;
  display: inline-block;
  width: 100%;
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  .sec-policy-content .block-list-content .list-item {
    padding-left: 15px;
  }
}

.sec-policy-content .block-list-content .list-item .list-item01 {
  padding-left: 10px;
  display: inline-block;
  width: 100%;
}

.sec-policy-content .block-list-content .txt-mg {
  margin-bottom: 24px;
  display: inline-block;
  width: 100%;
}

.page-ttl.ttl-underline30 {
  margin-bottom: 22px;
}

@media screen and (max-width: 768px) {
  .page-ttl.ttl-underline30 {
    margin-top: 12px;
  }
}

.box-contact-wrap {
  padding: 35px 0px 140px;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap {
    padding: 0px 0px 40px;
  }
  .box-contact-wrap .news__headline {
    margin-top: 55px;
  }
}

.box-contact-wrap .box-contact {
  border: 10px solid #cccccc;
  padding: 60px 80px 60px;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact {
    border: 5px solid #cccccc;
    padding: 20px 20px 25px;
  }
}

@media screen and (max-width: 340px) {
  .box-contact-wrap .box-contact {
    padding: 10px 10px 15px;
  }
}

.box-contact-wrap .box-contact .txt01 {
  margin-bottom: 35px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact .txt01 {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}

.box-contact-wrap .box-contact .txt02 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 70px;
  margin-bottom: 65px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact .txt02 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 30px;
  }
}

.box-contact-wrap .box-contact .txt-note {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.14;
  margin-top: 25px;
}

.box-contact-wrap .box-contact .txt-note-md {
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact .txt-note-md {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.box-contact-wrap .box-contact .txt-note a {
  color: #e91426;
  text-decoration: underline;
  display: inline;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact .txt-note {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.box-contact-wrap .box-contact .contact__more-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.box-contact-wrap .box-contact .contact__more-wrap .md-btn.black {
  background: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.box-contact-wrap .box-contact .contact__more-wrap .md-btn.red {
  background: #e91426;
  border: 1px solid #e91426;
}

.box-contact-wrap .box-contact .contact__more-wrap .contact__more-btn {
  width: 240px;
  margin: 36px 15px 0px;
}

.box-contact-wrap .box-contact .contact__more-wrap .contact__more-btn .md-btn {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact .contact__more-wrap .contact__more-btn .md-btn {
    display: inline-block;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact .contact__more-wrap .contact__more-btn {
    margin-top: 25px;
  }
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact .contact__more-wrap {
    display: block;
  }
  .box-contact-wrap .box-contact .contact__more-wrap .contact__more-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.box-contact-wrap .box-contact_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 10px;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_step {
    padding: 15px 10px;
    margin-bottom: 20px;
  }
}

.box-contact-wrap .box-contact_step .item {
  text-align: center;
  display: inline-block;
  margin: 0px 40px;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #bbbbbb;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_step .item {
    margin: 0px 30px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.25;
  }
}

.box-contact-wrap .box-contact_step .item.active {
  color: #333333;
}

.box-contact-wrap .box-contact_step .item:last-child:after {
  display: none;
}

.box-contact-wrap .box-contact_step .item:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -43px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 340px) {
  .box-contact-wrap .box-contact_step .item {
    margin: 0px 20px;
  }
  .box-contact-wrap .box-contact_step .item:after {
    right: -25px;
  }
}

.box-contact-wrap .box-contact_ip .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_ip .item {
    display: block;
  }
}

.box-contact-wrap .box-contact_ip .item .lb {
  padding-top: 8px;
  color: #333333;
  font-weight: bold;
  font-size: 15px;
  font-size: 1.5rem;
  width: 200px;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_ip .item .lb {
    font-size: 11px;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 10px;
  }
}

.box-contact-wrap .box-contact_ip .item .lb .req {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-size: 1.2rem;
  color: #ffffff;
  background: #e91426;
  padding: 3px 7px;
  line-height: 1;
  display: inline-block;
  font-weight: 500;
  margin-left: 10px;
}

.box-contact-wrap .box-contact_ip .item .lb .req-ml5 {
  margin-left: 3px;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_ip .item .lb .req-ml5 {
    margin-left: 2px;
  }
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_ip .item .lb .req {
    font-size: 9px;
    font-size: 0.9rem;
    margin-left: 5px;
  }
}

.box-contact-wrap .box-contact_ip .item .ip-wrap {
  width: calc(100% - 200px);
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_ip .item .ip-wrap {
    width: 100%;
  }
}

.box-contact-wrap .box-contact_ip .item .ip-wrap_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.box-contact-wrap .box-contact_ip .item .ip-wrap_item:last-child {
  margin-bottom: 0;
}

.box-contact-wrap .box-contact_ip .item .ip-wrap_item .lb {
  width: 140px;
  padding-top: 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_ip .item .ip-wrap_item .lb {
    width: 90px;
  }
}

@media screen and (max-width: 340px) {
  .box-contact-wrap .box-contact_ip .item .ip-wrap_item .lb {
    width: 80px;
  }
}

.box-contact-wrap .box-contact_ip .item .ip-wrap_item-r {
  width: calc(100% - 140px);
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_ip .item .ip-wrap_item-r {
    width: calc(100% - 90px);
  }
}

@media screen and (max-width: 340px) {
  .box-contact-wrap .box-contact_ip .item .ip-wrap_item-r {
    width: calc(100% - 80px);
  }
}

.box-contact-wrap .box-contact_ip .item .ip-wrap .seclect-custome {
  width: 82%;
}

.box-contact-wrap .box-contact_ip .item .ip-wrap .ip {
  border: 1px solid #cccccc;
  width: 100%;
  height: 46px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 10px 10px;
  outline: none;
  background: #ffffff;
  line-height: 1.2;
}

.box-contact-wrap .box-contact_ip .item .ip-wrap .ip.mw490 {
  max-width: 490px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_ip .item .ip-wrap .ip {
    font-size: 12px;
    font-size: 1.2rem;
    min-height: 38px;
    height: auto;
  }
  .box-contact-wrap .box-contact_ip .item .ip-wrap .ip.ip-mw345 {
    max-width: inherit;
  }
}

.box-contact-wrap .box-contact_ip .item .ip-wrap .txtarea {
  height: 200px;
  resize: none;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-contact_ip .item .ip-wrap .txtarea {
    height: 170px;
  }
}

.box-contact-wrap .box-contact_ip .item .ip-wrap ::-webkit-input-placeholder {
  /* Edge */
  color: #bbbbbb;
}

.box-contact-wrap .box-contact_ip .item .ip-wrap :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #bbbbbb;
}

.box-contact-wrap .box-contact_ip .item .ip-wrap ::-ms-input-placeholder {
  color: #bbbbbb;
}

.box-contact-wrap .box-contact_ip .item .ip-wrap ::placeholder {
  color: #bbbbbb;
}

.box-contact-wrap .box-scroll {
  border: 1px solid #f4f4f4;
  padding: 8px 45px;
  height: 180px;
  overflow-y: scroll;
  margin-top: 40px;
}

.box-contact-wrap .box-scroll p {
  margin-top: 21px !important;
}

@media screen and (max-width: 768px) {
  .box-contact-wrap .box-scroll {
    padding: 8px 20px;
  }
}

.seclect-custome {
  position: relative;
}

.seclect-custome:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333333;
}

.seclect-custome select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

.main-page {
  margin-top: 9.6rem;
}

@media screen and (max-width: 768px) {
  .main-page {
    margin-top: 5.5rem;
  }
}

@media screen and (max-width: 768px) {
  .wrap-sp {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.txt-main, .common-table td, .common-table th, .hiring-process__list dd {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .txt-main, .common-table td, .common-table th, .hiring-process__list dd {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 320px) {
  .txt-main, .common-table td, .common-table th, .hiring-process__list dd {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.txt-main-lg {
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .txt-main-lg {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.67;
  }
}

.txt-main-sm {
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .txt-main-sm {
    line-height: 2.14;
  }
}

@media screen and (max-width: 320px) {
  .txt-main-sm {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .txt-center-sp {
    text-align: center;
  }
}

.ttl-comp01 {
  font-style: italic;
}

.ttl-comp01 small {
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
  display: block;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .ttl-comp01 small {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.ttl-comp01 strong {
  font-weight: bold;
  font-size: 60px;
  font-size: 6rem;
  line-height: 1.3;
  display: inline-block;
  color: #e91426;
}

@media screen and (max-width: 768px) {
  .ttl-comp01 strong {
    font-size: 30px;
    font-size: 3rem;
  }
}

.ttl-comp01 em {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
  padding: 0.6rem 1.6rem 0.6rem 2rem;
  margin-top: 0.6rem;
  background: url("../img/recruit/bg-ttl.png") no-repeat left center;
  background-size: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: bold;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: active) {
  .ttl-comp01 em {
    padding: 0.6rem 1.6rem 0.3rem 2rem;
  }
}

.ttl-comp01 em img {
  margin-right: 1rem;
}

@media screen and (max-width: 768px) {
  .ttl-comp01 em {
    display: none;
  }
}

.ttl-comp02 {
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.6;
  color: #e91426;
  margin-bottom: 24px;
}

@media screen and (max-width: 990px) {
  .ttl-comp02 {
    font-size: 23px;
    font-size: 2.3rem;
    margin-bottom: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .ttl-comp02 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 0.9rem;
  }
}

@media screen and (max-width: 320px) {
  .ttl-comp02 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 769px) {
  .mbpc-10 {
    margin-bottom: 10px !important;
  }
  .mbpc-54 {
    margin-bottom: 54px !important;
  }
  .mbpc-23 {
    margin-bottom: 23px !important;
  }
}

@media screen and (max-width: 768px) {
  .mbsp-0 {
    margin-bottom: 0 !important;
  }
  .mbsp-23 {
    margin-bottom: 23px !important;
  }
}

.sec-mv {
  position: relative;
}

.sec-mv .item {
  position: relative;
}

.sec-mv .item__ttl {
  position: absolute;
  top: 52.5%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12%;
  z-index: 2;
  max-width: 57%;
}

@media screen and (max-width: 768px) {
  .sec-mv .item__ttl {
    top: auto;
    bottom: 9%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
    z-index: 2;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .sec-mv .item__img img {
    width: 100%;
  }
}

.sec-mv02 {
  position: relative;
  margin-bottom: 8.2rem;
}

@media screen and (max-width: 768px) {
  .sec-mv02 {
    margin-bottom: 3rem;
  }
}

.sec-mv02 .item__img img {
  width: 100%;
  min-height: 21.8rem;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media screen and (max-width: 768px) {
  .sec-mv02 .item__img img {
    min-height: 8rem;
  }
}

.sec-mv02 .item__ttl {
  position: absolute;
  top: 49.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #FFFFFF;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .sec-mv02 .item__ttl {
    top: 52%;
  }
}

.sec-mv02 .item__ttl .en {
  display: block;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .sec-mv02 .item__ttl .en {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

.sec-mv02 .item__ttl .jp {
  display: block;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .sec-mv02 .item__ttl .jp {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-about {
  background: url("../img/recruit/bg-01.png") no-repeat left top, #f0f0f0;
  padding: 7.3rem 0 11.2rem;
}

@media screen and (max-width: 768px) {
  .sec-about {
    background: url("../img/recruit/bg-01-sp.png") no-repeat left 50%, #f0f0f0;
    padding: 2.4rem 0 3rem;
    margin-bottom: 4rem;
  }
}

.sec-about .ttl-comp01 {
  margin-bottom: 6.9rem;
}

@media screen and (max-width: 768px) {
  .sec-about .ttl-comp01 {
    margin-bottom: 1.6rem;
  }
}

.sec-interview {
  padding: 7.3rem 0 11.2rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .sec-interview {
    background-color: #eeeeee;
    padding: 2.4rem 0 3rem;
  }
}

.sec-interview .ttl-comp01 {
  margin-bottom: 6.7rem;
}

@media screen and (max-width: 768px) {
  .sec-interview .ttl-comp01 {
    margin-bottom: 1.5rem;
  }
}

.sec-message {
  background: url("../img/recruit/bg-02.png") no-repeat right center;
  background-size: auto 100%;
  padding: 7.1rem 0 8.2rem;
}

@media screen and (max-width: 768px) {
  .sec-message {
    -ms-background-position-x: 0;
    background-position-x: 0;
  }
}

@media screen and (max-width: 640px) {
  .sec-message {
    background: url("../img/recruit/bg-02-sp.png") no-repeat right 103px;
    background-size: auto;
    padding: 3.5rem 0 4rem;
  }
}

@media screen and (max-width: 320px) {
  .sec-message {
    background-position-x: 3.5rem;
  }
}

.sec-message .ttl-comp01 {
  margin-bottom: 1.3rem;
}

@media screen and (max-width: 768px) {
  .sec-message .ttl-comp01 {
    margin-bottom: 1.7rem;
  }
}

.sec-message .txt-main, .sec-message .common-table td, .common-table .sec-message td, .sec-message .common-table th, .common-table .sec-message th, .sec-message .hiring-process__list dd, .hiring-process__list .sec-message dd {
  margin-bottom: 4.2rem;
}

@media screen and (max-width: 768px) {
  .sec-message .txt-main, .sec-message .common-table td, .common-table .sec-message td, .sec-message .common-table th, .common-table .sec-message th, .sec-message .hiring-process__list dd, .hiring-process__list .sec-message dd {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 640px) {
  .sec-message .txt-main, .sec-message .common-table td, .common-table .sec-message td, .sec-message .common-table th, .common-table .sec-message th, .sec-message .hiring-process__list dd, .hiring-process__list .sec-message dd {
    min-height: 13.6rem;
  }
}

@media screen and (max-width: 320px) {
  .sec-message .txt-main, .sec-message .common-table td, .common-table .sec-message td, .sec-message .common-table th, .common-table .sec-message th, .sec-message .hiring-process__list dd, .hiring-process__list .sec-message dd {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 640px) {
  .sec-message .basic-btn {
    max-width: 29.5rem;
    margin: 0 auto;
  }
  .sec-message .basic-btn i {
    right: 1.7rem;
  }
}

.sec-employment {
  background: url("../img/recruit/bg-03.png") no-repeat center/cover;
  padding: 7.4rem 0 11.2rem;
}

@media screen and (max-width: 768px) {
  .sec-employment {
    background: url("../img/recruit/bg-03-sp.png") no-repeat center/cover;
    padding: 2.5rem 0 3rem;
  }
}

.sec-employment .ttl-comp01 {
  margin-bottom: 7.9rem;
}

@media screen and (max-width: 768px) {
  .sec-employment .ttl-comp01 {
    margin-bottom: 2.3rem;
  }
}

.sec-employment .ttl-comp01 small {
  color: #ffffff;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .sec-employment .ttl-comp01 small {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-employment .txt-main-lg {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2.1rem;
}

@media screen and (max-width: 768px) {
  .sec-employment .txt-main-lg {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1.7rem;
  }
}

@media screen and (max-width: 320px) {
  .sec-employment .txt-main-lg {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.about__list {
  margin-bottom: 10.2rem;
}

@media screen and (max-width: 768px) {
  .about__list {
    margin-bottom: 7.8rem;
  }
}

.about__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about__list .item:not(:last-child) {
  margin-bottom: 8.2rem;
}

@media screen and (max-width: 768px) {
  .about__list .item:not(:last-child) {
    margin-bottom: 4.5rem;
  }
}

.about__list .item__img {
  width: 47%;
}

@media screen and (max-width: 768px) {
  .about__list .item__img {
    width: 100%;
    margin-bottom: 1.3rem;
  }
  .about__list .item__img img {
    width: 100%;
  }
}

.about__list .item__body {
  width: 53%;
  padding: 0 0 0 5.5rem;
}

@media screen and (max-width: 768px) {
  .about__list .item__body {
    width: 100%;
    padding: 0;
  }
}

.about__list .item__body .txt-main, .about__list .item__body .common-table td, .common-table .about__list .item__body td, .about__list .item__body .common-table th, .common-table .about__list .item__body th, .about__list .item__body .hiring-process__list dd, .hiring-process__list .about__list .item__body dd {
  margin-bottom: 3.6rem;
}

@media screen and (max-width: 768px) {
  .about__list .item__body .txt-main, .about__list .item__body .common-table td, .common-table .about__list .item__body td, .about__list .item__body .common-table th, .common-table .about__list .item__body th, .about__list .item__body .hiring-process__list dd, .hiring-process__list .about__list .item__body dd {
    margin-bottom: 0.1rem;
  }
}

.about__list .item__body .txt-main:last-child, .about__list .item__body .common-table td:last-child, .common-table .about__list .item__body td:last-child, .about__list .item__body .common-table th:last-child, .common-table .about__list .item__body th:last-child, .about__list .item__body .hiring-process__list dd:last-child, .hiring-process__list .about__list .item__body dd:last-child {
  margin-bottom: 0;
}

.about__list .item__body .txt-main__02 span {
  color: red;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .about__list .item__body .txt-main__02 span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 320px) {
  .about__list .item__body .txt-main__02 span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.about__list .item__body .txt-main-lg {
  margin-bottom: 2.9rem;
}

@media screen and (max-width: 768px) {
  .about__list .item__body .txt-main-lg {
    margin-bottom: 0;
  }
}

.about__list .item__ttl {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.45;
  margin: -0.7rem 0 3.6rem;
}

@media screen and (max-width: 768px) {
  .about__list .item__ttl {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0 0 0.9rem;
  }
}

@media screen and (max-width: 320px) {
  .about__list .item__ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 769px) {
  .about__list .item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .about__list .item:nth-child(even) .item__body {
    padding: 0 5.5rem 0 0;
  }
}

.interview__over {
  width: 100%;
  max-width: 158rem;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 1201px) {
  .interview__over {
    overflow: visible;
  }
  .interview__over:before, .interview__over:after {
    content: '';
    position: absolute;
    z-index: 999;
    width: 999px;
    background-color: #fff;
    top: 0;
    bottom: 0;
  }
  .interview__over:before {
    right: 100%;
  }
  .interview__over:after {
    left: 100%;
  }
}

.interview__slide {
  margin-bottom: 8.7rem;
}

@media screen and (max-width: 768px) {
  .interview__slide {
    margin-bottom: 1.7rem;
  }
}

.interview__slide .slick-list {
  overflow: visible;
  margin: 0 1.3rem 0 0.7rem;
}

@media screen and (max-width: 1200px) {
  .interview__slide .slick-list {
    margin: 0 1rem;
  }
}

@media screen and (max-width: 768px) {
  .interview__slide .slick-list {
    margin: 0 -2rem;
  }
}

.interview__slide .slick-arrow {
  width: 5rem;
  height: 5rem;
  background-color: #696969;
  top: 34.3%;
  padding-bottom: 0.4rem;
}

@media screen and (max-width: 768px) {
  .interview__slide .slick-arrow {
    width: 4rem;
    height: 4rem;
    top: 31%;
    padding-bottom: 0;
  }
}

.interview__slide .slick-arrow:before {
  font-size: 38px;
  font-size: 3.8rem;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .interview__slide .slick-arrow:before {
    font-size: 34px;
    font-size: 3.4rem;
  }
}

.interview__slide .slick-prev {
  left: 0;
}

@media screen and (max-width: 768px) {
  .interview__slide .slick-prev {
    left: 1px;
    padding-right: 1px;
  }
}

.interview__slide .slick-next {
  right: 0;
}

@media screen and (max-width: 768px) {
  .interview__slide .slick-next {
    right: 1px;
    padding-left: 2px;
  }
}

.interview__slide .item {
  padding: 0 2rem;
}

.interview__slide .item:focus {
  outline: none;
}

.interview__slide .item > a {
  display: block;
}

.interview__slide .item > a:hover .item__overlay {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.interview__slide .item__img {
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .interview__slide .item__img {
    margin-bottom: 10px;
  }
}

.interview__slide .item__img img {
  width: 100%;
}

.interview__slide .item__ttl {
  font-weight: bold;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.6;
  color: #e91426;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .interview__slide .item__ttl {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.44;
    margin-bottom: 0.7rem;
  }
}

.interview__slide .item__body .txt-main, .interview__slide .item__body .common-table td, .common-table .interview__slide .item__body td, .interview__slide .item__body .common-table th, .common-table .interview__slide .item__body th, .interview__slide .item__body .hiring-process__list dd, .hiring-process__list .interview__slide .item__body dd {
  color: #000000;
  margin-bottom: 0.5rem;
}

.interview__slide .item__overlay {
  background-color: rgba(233, 20, 38, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  padding-bottom: 0.8rem;
}

@media screen and (max-width: 768px) {
  .interview__slide .item__overlay {
    background-color: #000000;
    font-size: 20px;
    font-size: 2rem;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    top: auto;
    left: 1.5rem;
    bottom: 1.5rem;
    right: auto;
    padding: 0.8rem 0.8rem 0.9rem 0.9rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (max-width: 320px) {
  .interview__slide .item__overlay {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.interview__slide .item__overlay small {
  font-weight: 500;
  display: block;
  line-height: 1.78;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .interview__slide .item__overlay small {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: bold;
    margin-left: 1.4rem;
    margin-bottom: 0;
    padding-top: 0.4rem;
  }
}

@media screen and (max-width: 320px) {
  .interview__slide .item__overlay small {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}

.interview__slide.is-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -3.5rem;
}

@media screen and (max-width: 1200px) {
  .interview__slide.is-list {
    margin: 0 -1rem;
  }
}

.interview__slide.is-list .item {
  width: 33.33%;
  padding: 0 3.5rem;
  margin-bottom: 1.7rem;
}

@media screen and (max-width: 1200px) {
  .interview__slide.is-list .item {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 768px) {
  .interview__slide.is-list .item {
    width: 100%;
  }
}

.employment__col {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .employment__col {
    width: 100%;
  }
}

.employment__box {
  background-color: #fff;
  margin: 0.7rem 0 0 5.7rem;
  padding: 2.4rem 3.2rem 3.1rem;
}

@media screen and (max-width: 768px) {
  .employment__box {
    margin: 0 0 2.5rem;
    padding: 1.4rem 1.8rem 1.8rem;
  }
}

.employment__ttl {
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  border-bottom: 1px solid #333333;
  margin-bottom: 2.6rem;
  padding-bottom: 0.4rem;
}

@media screen and (max-width: 768px) {
  .employment__ttl {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.325;
    padding-bottom: 0.2rem;
    margin-bottom: 1.9rem;
  }
}

.employment__body {
  padding: 0 0 0 0.2rem;
}

@media screen and (max-width: 768px) {
  .employment__body {
    padding: 0;
  }
}

.employment__body .item {
  display: block;
}

.employment__body .item:not(:last-child) {
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .employment__body .item:not(:last-child) {
    margin-bottom: 1.9rem;
  }
}

.employment__body .item:hover .item__link {
  text-decoration: underline;
}

.employment__body .item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.2rem;
}

@media screen and (max-width: 768px) {
  .employment__body .item__header {
    margin-bottom: 0.4rem;
  }
}

.employment__body .item__date, .employment__body .item__area {
  font-size: 15px;
  font-size: 1.5rem;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .employment__body .item__date, .employment__body .item__area {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
  }
}

.employment__body .item__store {
  margin: 0 1.5rem 0 1.9rem;
  color: #ffffff;
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.4;
  background-color: #fbb03b;
  padding: 0.1rem 1rem;
  width: 10rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .employment__body .item__store {
    font-size: 12px;
    font-size: 1.2rem;
    width: 7rem;
    font-weight: 500;
    margin: 0 1rem 0 0.5rem;
    padding: 0;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .employment__body .item__store {
    padding: 0.3rem 1rem 0.1rem;
  }
}

@supports (-ms-ime-align: auto) {
  .employment__body .item__store {
    padding: 0 1rem 0.1rem;
  }
}

@media screen and (max-width: 768px) {
  .employment__body .item__body {
    line-height: 1.26;
  }
}

.employment__body .item__link {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.86;
  color: #337dbb;
}

@media screen and (max-width: 768px) {
  .employment__body .item__link {
    font-weight: 500;
    line-height: 1.57;
  }
}

.employment__body .item__link:not(:last-child) {
  margin-right: 2rem;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .employment__body .item__link:not(:last-child) {
    margin-right: 1.7rem;
  }
}

.sec-mv-page {
  position: relative;
}

.sec-mv-page .mv-ttl {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  width: 100%;
}

.sec-mv-page .mv-ttl small {
  font-size: 19px;
  font-size: 1.9rem;
  display: block;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .sec-form-thanks {
    min-height: 62vh;
  }
}

.sec-form-entry {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  .sec-form-entry {
    padding-top: 25px;
  }
}

.sec-form-entry .txt-basic {
  text-align: center;
  margin-bottom: 50px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sec-form-entry .txt-basic {
    -webkit-text-size-adjust: 100%;
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 17px;
    line-height: 1.9;
  }
}

@media screen and (max-width: 320px) {
  .sec-form-entry .txt-basic {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.sec-form-entry .txt-thanks {
  text-align: center;
  margin-bottom: 65px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  .sec-form-entry .txt-thanks {
    margin-bottom: 40px;
    font-size: 15px;
    font-size: 1.5rem;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
  }
}

.list-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 52px;
}

.list-steps .item {
  width: 33.33%;
  background: #909090;
  color: #fff;
  padding: 13px 30px 13px 63px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  position: relative;
  margin-right: 10px;
  letter-spacing: 1px;
}

.list-steps .item small {
  display: block;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.list-steps .item:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 0 35px 26px;
  border-color: transparent transparent transparent #909090;
  position: absolute;
  top: 0;
  right: -26px;
  z-index: 2;
}

.list-steps .item:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 0 35px 26px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.list-steps .item:last-of-type {
  margin-right: 0;
}

.list-steps .item:last-of-type:after {
  display: none;
}

.list-steps .item:first-child {
  padding-left: 30px;
}

.list-steps .item:first-child:before {
  display: none;
}

.list-steps .item.active {
  background: #000;
}

.list-steps .item.active:after {
  border-color: transparent transparent transparent #000;
}

.box-job {
  padding-left: 30px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .box-job {
    padding-left: 0;
    margin-bottom: 15px;
  }
}

.box-job dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .box-job dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 22px;
  }
}

.box-job dl:last-of-type {
  margin-bottom: 0;
}

.box-job dl dt {
  width: 160px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 500;
  color: #333;
  border: 1px solid #e1e0e0;
}

@media screen and (max-width: 768px) {
  .box-job dl dt {
    width: 100%;
    text-align: left;
    font-weight: bold;
    border: none;
    height: auto;
    display: block;
    margin-bottom: 11px;
  }
}

.box-job dl dd {
  width: calc(100% - 160px);
  padding-left: 55px;
}

@media screen and (max-width: 768px) {
  .box-job dl dd {
    width: 100%;
    padding-left: 0;
  }
}

.box-job dl dd .form-select {
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
  width: 100%;
  height: 40px;
  border: 1px solid #e1e0e0;
  padding-left: 77px;
  background: url("../img/recruit/entry/bg-select.png") no-repeat center left 33px;
  background-size: 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

@media screen and (max-width: 768px) {
  .box-job dl dd .form-select {
    padding-left: 60px;
    background-size: 18px;
    background-position: center left 20px;
    height: 42px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.box-job dl dd .input-group-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .box-job dl dd .input-group-checkbox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.box-job dl dd .input-group-checkbox .input-checkbox {
  margin-right: 36px;
}

@media screen and (max-width: 768px) {
  .box-job dl dd .input-group-checkbox .input-checkbox {
    margin-right: 10px;
  }
}

.box-job dl dd .input-group-checkbox .input-checkbox:last-of-type {
  margin-right: 0;
}

.box-job dl dd .input-group-checkbox .input-checkbox label {
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  padding-left: 26px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .box-job dl dd .input-group-checkbox .input-checkbox label {
    padding-left: 23px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.box-job dl dd .input-group-checkbox .input-checkbox label:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 1px solid #e1e0e0;
  position: absolute;
  top: 4px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .box-job dl dd .input-group-checkbox .input-checkbox label:before {
    width: 16px;
    height: 16px;
  }
}

.box-job dl dd .input-group-checkbox .input-checkbox input {
  display: none;
}

.box-job dl dd .input-group-checkbox .input-checkbox input:checked + label:after {
  content: '';
  width: 14px;
  height: 14px;
  left: 3px;
  top: 2px;
  background: url("../img/recruit/entry/ico-check.png") no-repeat center;
  background-size: contain;
  position: absolute;
}

.box-job dl dd .input-group-checkbox .note {
  margin-left: 15px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  .box-job dl dd .input-group-checkbox .note {
    margin-left: 10px;
  }
}

.page-recruit_entry_index {
  /*for IE10+*/
}

.page-recruit_entry_index select {
  /*for firefox*/
  -moz-appearance: none;
  /*for chrome*/
  -webkit-appearance: none;
  appearance: none;
}

.page-recruit_entry_index select::-ms-expand {
  display: none;
}

.box-personal dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .box-personal dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 14px;
  }
}

.box-personal dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 245px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  padding-top: 7px;
}

@media screen and (max-width: 768px) {
  .box-personal dl dt {
    width: 100%;
    margin-bottom: 15px;
  }
}

.box-personal dl dt .required {
  width: 44px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #e91426;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 35px;
  line-height: 1;
  padding-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .box-personal dl dt .required {
    width: 37px;
    height: 17px;
    font-size: 10px;
    font-size: 1rem;
    margin-right: 0;
    margin-left: 14px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 768px) {
  .box-personal dl dt .label {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.box-personal dl dd {
  width: calc(100% - 245px);
}

@media screen and (max-width: 768px) {
  .box-personal dl dd {
    width: 100%;
  }
}

.box-personal dl dd input {
  width: 100%;
  border: 1px solid #bdbdbd;
  padding-left: 15px;
  height: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
}

@media screen and (max-width: 768px) {
  .box-personal dl dd input {
    height: 35px;
    padding-left: 13px;
  }
}

.box-personal dl dd .item {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .box-personal dl dd .item {
    margin-bottom: 16px;
  }
}

.box-personal dl dd .item__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #5a5a5a;
}

.box-personal dl dd .item__address .address01 {
  width: 102px;
}

@media screen and (max-width: 768px) {
  .box-personal dl dd .item__address .address01 {
    width: 67px;
    padding-left: 6px;
    height: 37px;
  }
}

.box-personal dl dd .item__address .address02 {
  width: 152px;
}

@media screen and (max-width: 768px) {
  .box-personal dl dd .item__address .address02 {
    width: 77px;
    padding-left: 6px;
    height: 37px;
  }
}

.box-personal dl dd .item__address span {
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}

.box-personal dl dd .item__address span:first-child {
  margin-right: 13px;
}

@media screen and (max-width: 768px) {
  .box-personal dl dd .item__address span:first-child {
    margin-right: 5px;
  }
}

.box-personal dl dd .item__address .btn {
  cursor: pointer;
  width: 236px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #979696;
  color: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 40px;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.box-personal dl dd .item__address .btn:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@media screen and (max-width: 768px) {
  .box-personal dl dd .item__address .btn {
    height: 37px;
    margin-left: 15px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 320px) {
  .box-personal dl dd .item__address .btn {
    font-size: 10px;
    font-size: 1rem;
    padding: 0 10px;
    text-align: center;
    line-height: 1.3;
  }
}

.box-personal dl dd .item .form-select {
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  /*color: #d2d0d0;*/
  width: 100%;
  height: 40px;
  border: 1px solid #bdbdbd;
  padding-left: 15px;
  background: url("../img/recruit/entry/ico-check02.png") no-repeat center right 15px;
  background-size: 12px;
}

.box-personal dl dd ::-webkit-input-placeholder {
  font-size: 14px;
  font-size: 1.4rem;
  color: #d2d0d0;
}

.box-personal dl dd :-ms-input-placeholder {
  font-size: 14px;
  font-size: 1.4rem;
  color: #d2d0d0;
}

.box-personal dl dd ::-ms-input-placeholder {
  font-size: 14px;
  font-size: 1.4rem;
  color: #d2d0d0;
}

.box-personal dl dd ::placeholder {
  font-size: 14px;
  font-size: 1.4rem;
  color: #d2d0d0;
}

.box-personal dl dd :-ms-input-placeholder {
  font-size: 14px;
  font-size: 1.4rem;
  color: #d2d0d0;
}

.box-personal dl dd ::-ms-input-placeholder {
  font-size: 14px;
  font-size: 1.4rem;
  color: #d2d0d0;
}

.box-personal dl .input-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-personal dl .input-phone input {
  width: 320px;
}

@media screen and (max-width: 768px) {
  .box-personal dl .input-phone input {
    width: 100%;
  }
}

.box-personal dl .input-phone .note {
  margin-left: 45px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #5a5a5a;
  padding-left: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .box-personal dl .input-phone .note {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .box-personal .box-address {
    margin-bottom: 30px;
  }
}

.box-personal .box-address .item:last-of-type {
  margin-bottom: 0;
}

.box-personal .item-cv {
  padding-left: 80px;
  margin-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .box-personal .item-cv {
    padding-left: 0;
  }
}

.box-personal .item-cv dt {
  width: 164px;
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .box-personal .item-cv dt {
    width: 100%;
  }
}

.box-personal .item-cv dt span {
  /*display: flex;
				align-items: center;
				justify-content: center;
				background: #e8e6e6;
				border: 1px solid #c8c7c7;
				font-family: $font-notoJp;
				@include font-size(14);
				font-weight: 500;
				color: #333;
				width: 140px;
				height: 40px;
				@include mq(){
					height: 35px;
					width: 110px;
				}*/
}

.box-personal .item-cv dd {
  width: calc(100% - 164px);
}

@media screen and (max-width: 768px) {
  .box-personal .item-cv dd {
    width: 100%;
  }
}

.box-personal .note {
  padding-left: 80px;
  color: #7c7c7c;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .box-personal .note {
    letter-spacing: 0;
    font-size: 12px;
    font-size: 1.2rem;
    padding-left: 0;
    margin-bottom: 25px;
  }
}

.box-personal .item-area {
  padding-left: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
  .box-personal .item-area {
    padding-left: 0;
    margin-bottom: 40px;
  }
}

.box-personal .item-area dt {
  width: 164px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  padding-top: 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .box-personal .item-area dt {
    width: 100%;
    margin-bottom: 18px;
  }
}

.box-personal .item-area dd {
  width: calc(100% - 164px);
}

@media screen and (max-width: 768px) {
  .box-personal .item-area dd {
    width: 100%;
  }
}

.box-personal .item-area dd textarea {
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
  height: 200px;
  width: 100%;
  border: 1px solid #bdbdbd;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .box-personal .item-area dd textarea {
    height: 142px;
  }
}

.box-privacy {
  height: 200px;
  overflow-y: auto;
  border: 1px solid #bdbdbd;
  padding: 22px 32px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #333;
  margin-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .box-privacy {
    height: 142px;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 12px 15px;
    line-height: 1.5;
    margin-bottom: 22px;
  }
}

.box-privacy a {
  color: #333;
}

.box-accept, .agree {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .box-accept, .agree {
    margin-bottom: 56px;
  }
}

.box-accept input, .agree input {
  display: none;
}

.box-accept label, .agree label {
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.box-accept label a, .agree label a {
  color: #1965be;
  text-decoration: underline;
}

.box-accept label:before, .agree label:before {
  content: '';
  width: 16px;
  height: 16px;
  border: 1px solid #bdbdbd;
  position: absolute;
  top: 3px;
  left: 2px;
}

.box-accept input:checked + label:after, .agree input:checked + label:after {
  content: '';
  width: 14px;
  height: 14px;
  left: 3px;
  top: 4px;
  background: url("../img/recruit/entry/ico-check.png") no-repeat center;
  background-size: contain;
  position: absolute;
}

.box-submit .basic-btn {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 100px;
  height: 90px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
}

@media screen and (max-width: 768px) {
  .box-submit .basic-btn {
    font-size: 14px;
    font-size: 1.4rem;
    height: 60px;
    margin-bottom: 60px;
    border-radius: 2px;
  }
}

.box-submit .basic-btn i {
  right: 24px;
}

@media screen and (max-width: 768px) {
  .box-submit .basic-btn i {
    right: 13px;
  }
}

.form-entry {
  max-width: 1020px;
  padding: 0px 0px;
  margin: auto;
}

.form-entry .form-mw {
  max-width: 845px;
  padding: 0px 0px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .form-entry .form-mw {
    padding: 0px 8px;
  }
}

.form-entry__confirm {
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
}

.form-entry__confirm .box-job {
  padding-left: 0;
  margin-bottom: 50px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-job {
    margin-bottom: 0;
  }
}

.form-entry__confirm .box-job dl {
  margin-bottom: 52px;
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-job dl {
    padding: 15px 20px;
    margin-bottom: 0;
  }
}

.form-entry__confirm .box-job dl:last-of-type {
  margin-bottom: 0;
}

.form-entry__confirm .box-job dl dt {
  border: none;
  height: auto;
  width: 175px;
  text-align: left;
  display: block;
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-job dl dt {
    margin-bottom: 0;
    width: 100px;
  }
}

.form-entry__confirm .box-job dl dd {
  width: calc(100% - 175px);
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-job dl dd {
    width: calc(100% - 100px);
  }
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-job dl:nth-child(odd) {
    background: #eeeeee;
  }
}

.form-entry__confirm .box-personal dl {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-personal dl {
    margin-bottom: 0;
    padding: 15px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-personal dl:nth-child(even) {
    background: #eeeeee;
  }
}

.form-entry__confirm .box-personal dl dt {
  width: 175px;
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-personal dl dt {
    width: 100px;
    margin-bottom: 0;
  }
}

.form-entry__confirm .box-personal dl dd {
  width: calc(100% - 175px);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-personal dl dd {
    width: calc(100% - 100px);
  }
}

.form-entry__confirm .box-personal dl dd .item {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-personal dl dd .item {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-personal .box-address {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .form-entry__confirm .box-personal .item-area {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-entry__confirm .box-address dl dd .item__address span {
  display: inline-block;
  margin-right: 10px;
}

.form-entry__confirm .item-cv {
  padding-left: 0;
}

.form-entry__confirm .item-cv dl {
  margin-bottom: 60px;
}

.form-entry__confirm .item-cv dt {
  width: 175px;
}

.form-entry__confirm .item-cv dt span {
  border: none;
  background: transparent;
  height: auto;
  display: block;
}

.form-entry__confirm .item-cv dd {
  width: calc(100% - 175px);
}

.form-entry__confirm .item-area {
  padding-left: 0;
}

.form-entry__confirm .item-area dl dt {
  width: 175px;
  line-height: 1.5;
}

.form-entry__confirm .item-area dl dd {
  width: calc(100% - 175px);
}

.btn-confirm, .box-submit {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .btn-confirm, .box-submit {
    padding: 0 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto 60px;
  }
}

.btn-confirm a, .btn-confirm .basic-btn, .box-submit a, .box-submit .basic-btn {
  max-width: 460px;
  height: 90px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

.btn-confirm a:hover i, .btn-confirm .basic-btn:hover i, .box-submit a:hover i, .box-submit .basic-btn:hover i {
  right: 24px;
}

@media screen and (max-width: 768px) {
  .btn-confirm a, .btn-confirm .basic-btn, .box-submit a, .box-submit .basic-btn {
    max-width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    height: 60px;
    border-radius: 2px;
  }
  .btn-confirm a:first-child, .btn-confirm .basic-btn:first-child, .box-submit a:first-child, .box-submit .basic-btn:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .btn-confirm a:last-child, .btn-confirm .basic-btn:last-child, .box-submit a:last-child, .box-submit .basic-btn:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 40px;
  }
}

.btn-confirm a i, .btn-confirm .basic-btn i, .box-submit a i, .box-submit .basic-btn i {
  right: 24px;
}

@media screen and (max-width: 768px) {
  .btn-confirm a i, .btn-confirm .basic-btn i, .box-submit a i, .box-submit .basic-btn i {
    right: 14px;
  }
}

.btn-confirm a.btn-back, .btn-confirm .basic-btn.btn-back, .box-submit a.btn-back, .box-submit .basic-btn.btn-back {
  background: #909090;
  border-color: #909090;
}

.btn-confirm a.btn-back:hover, .btn-confirm .basic-btn.btn-back:hover, .box-submit a.btn-back:hover, .box-submit .basic-btn.btn-back:hover {
  color: #909090;
}

.btn-confirm a.btn-back:hover i, .btn-confirm .basic-btn.btn-back:hover i, .box-submit a.btn-back:hover i, .box-submit .basic-btn.btn-back:hover i {
  color: #909090;
  right: 24px;
}

.btn-confirm a.btn-home, .btn-confirm .basic-btn.btn-home, .box-submit a.btn-home, .box-submit .basic-btn.btn-home {
  background: #c2c0c0;
  border-color: #c2c0c0;
  max-width: 400px;
  margin: 0 auto;
  height: 80px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .btn-confirm a.btn-home, .btn-confirm .basic-btn.btn-home, .box-submit a.btn-home, .box-submit .basic-btn.btn-home {
    height: 60px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.btn-confirm a.btn-home:hover, .btn-confirm .basic-btn.btn-home:hover, .box-submit a.btn-home:hover, .box-submit .basic-btn.btn-home:hover {
  color: #c2c0c0;
}

.btn-confirm a.btn-home:hover i, .btn-confirm .basic-btn.btn-home:hover i, .box-submit a.btn-home:hover i, .box-submit .basic-btn.btn-home:hover i {
  color: #c2c0c0;
  right: 24px;
}

select::-ms-expand {
  display: none;
}

.mw_wp_form .error {
  display: block;
  border: 1px solid;
  background: #ee0101;
  color: #fff !important;
  min-width: 120px;
  font-size: 11px;
  /* border: 2px solid #ddd; */
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: -24px;
  width: auto;
  font-size: 12px !important;
}

.mw_wp_form .error:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ee0101;
}

.mwform-checkbox-field input, .mwform-radio-field input {
  position: relative;
  top: 0px;
}

span.mwform-checkbox-field.horizontal-item {
  margin-right: 20px;
  min-width: 80px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  span.mwform-checkbox-field.horizontal-item {
    font-size: 13px;
    font-size: 1.3rem;
    margin: 0px 10px;
  }
}

.box-personal dl dd {
  position: relative;
}

.box-privacy + div {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 220px;
}

.box-privacy + div .mwform-checkbox-field {
  margin-right: 0;
}

.mw_wp_form_confirm .box-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .box-submit {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.mw_wp_form_confirm .box-submit > * {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .box-submit > * {
    width: 100%;
    max-width: 380px;
    margin: 40px auto 0px;
  }
}

.mw_wp_form_confirm .form-mw {
  max-width: 730px;
}

@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .form-mw {
    padding: 0;
    margin-left: -3.125%;
    margin-right: -3.125%;
  }
}

.mw_wp_form_confirm .box-privacy,
.mw_wp_form_confirm .box-privacy + div,
.mw_wp_form_confirm .box-personal .note,
.mw_wp_form_confirm .box-personal dl dd .item__address .btn,
.mw_wp_form_confirm .box-personal dl dt .required {
  display: none;
}

.mw_wp_form_confirm .list-steps .item:nth-child(2) {
  background: #000;
}

.mw_wp_form_confirm .list-steps .item:nth-child(2):after {
  border-color: transparent transparent transparent #000;
}

.mw_wp_form_confirm .box-submit .basic-btn {
  margin-bottom: 0;
}

.mw_wp_form_input .list-steps .item:nth-child(1) {
  background: #000;
}

.mw_wp_form_input .list-steps .item:nth-child(1):after {
  border-color: transparent transparent transparent #000;
}

.span_mr {
  margin: 0 12px;
}

.item-cv .mwform-file-delete {
  cursor: pointer;
  visibility: hidden;
  position: absolute;
  right: -50px;
  top: 50%;
  z-index: 99;
}

@media screen and (min-width: 769px) {
  .item-cv .mwform-file-delete {
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .item-cv .mwform-file-delete {
    right: inherit;
    left: 10px;
    top: inherit;
    bottom: -50px;
  }
}

.file {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #e8e6e6;
  border: 1px solid #c8c7c7;
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  width: 140px;
  height: 40px;
}

@media screen and (max-width: 768px) {
  .file {
    height: 35px;
    width: 110px;
  }
}

.file:hover {
  background: #d3d3d3;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.file .mw-wp-form_file {
  width: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 10px;
}

.file_txt {
  line-height: 38px;
  padding: 0 15px 0 30px;
  font-size: 14px;
  font-size: 1.4rem;
}

.file_input {
  display: none !important;
}

/*.file-control {
	overflow: hidden;
	cursor: pointer;
}

.file-control:after {
	content: attr(data-filename);
}
.file_input {
	margin: 0;
	max-width: 100%;
	min-width: 290px;
	opacity: 0;
}
.file-control{
	background-color: #fff;
	color: #333;
	font-weight: 400;
	border: 1px solid #bdbdbd;
	padding-left: 15px;
	height: 40px;
	left: 0;
	line-height: 1.25;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 1;
	transition: background-color .15s ease-out;
	display: flex;
	align-items: center;
	padding-bottom: 5px;
}*/
.form-group {
  width: 100%;
  border: 1px solid #bdbdbd;
  height: 40px;
  overflow: hidden;
  color: #333;
}

.form-group .file_input {
  /*opacity: 0;
		display: flex !important;
		align-items: center;
		padding-top: 11px;
		border: 0px;
		outline: none;*/
}

.mw_wp_form_confirm .form-group {
  width: 100%;
  border: 0px;
  padding-left: 0;
  height: auto;
  overflow: hidden;
  color: #333;
}

.mw_wp_form_confirm .file {
  background: none !important;
  border: none;
  font-size: 0;
  width: 100%;
}

.mw_wp_form_confirm .file .mw-wp-form_file {
  font-size: 14px;
}

.mw_wp_form_confirm .file_txt {
  display: none;
}

.sec-ms-group .item {
  padding: 8.2rem 0;
}

@media screen and (max-width: 768px) {
  .sec-ms-group .item {
    padding: 3rem 0;
  }
}

.sec-ms-group .item__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-ms-group .item__content {
  width: 59.2%;
  padding: 0 4rem 0 0;
}

@media screen and (max-width: 990px) {
  .sec-ms-group .item__content {
    width: 50%;
    padding: 0 3rem 0 0;
  }
}

@media screen and (max-width: 768px) {
  .sec-ms-group .item__content {
    width: 100%;
    padding: 2.3rem 0 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.sec-ms-group .item__content .ttl-comp02 {
  margin-top: -1rem;
}

@media screen and (max-width: 768px) {
  .sec-ms-group .item__content .ttl-comp02 {
    margin-top: 0;
  }
}

.sec-ms-group .item__content .txt-main-lg {
  margin-bottom: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 990px) {
  .sec-ms-group .item__content .txt-main-lg {
    margin-bottom: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-ms-group .item__content .txt-main p:not([class]):not(:last-child), .sec-ms-group .item__content .common-table td p:not([class]):not(:last-child), .common-table .sec-ms-group .item__content td p:not([class]):not(:last-child), .sec-ms-group .item__content .common-table th p:not([class]):not(:last-child), .common-table .sec-ms-group .item__content th p:not([class]):not(:last-child), .sec-ms-group .item__content .hiring-process__list dd p:not([class]):not(:last-child), .hiring-process__list .sec-ms-group .item__content dd p:not([class]):not(:last-child) {
    margin-bottom: 0.7rem;
  }
}

.sec-ms-group .item__img {
  width: 40.8%;
}

@media screen and (max-width: 990px) {
  .sec-ms-group .item__img {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .sec-ms-group .item__img {
    width: 100%;
  }
}

.sec-ms-group .item__img img {
  width: 100%;
}

.sec-ms-group .item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 4rem -1.3rem 0;
}

@media screen and (max-width: 768px) {
  .sec-ms-group .item__wrap {
    margin: 2.7rem 0 1.1rem;
  }
}

.sec-ms-group .item__wrap .col {
  width: 33.33333%;
  padding: 0 1.3rem;
}

@media screen and (max-width: 768px) {
  .sec-ms-group .item__wrap .col {
    width: 100%;
    padding: 0;
  }
  .sec-ms-group .item__wrap .col:not(:last-child) {
    margin-bottom: 1.6rem;
  }
}

.sec-ms-group .item__wrap .block {
  border: 5px solid #f7aab1;
  padding: 1.7rem 2.7rem 3.5rem;
}

@media screen and (max-width: 990px) {
  .sec-ms-group .item__wrap .block {
    padding: 1.5rem 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-ms-group .item__wrap .block {
    border-width: 2px;
    padding: 1.4rem 3.4rem 1.7rem;
  }
}

@media screen and (max-width: 320px) {
  .sec-ms-group .item__wrap .block {
    padding: 1.4rem 2rem;
  }
}

.sec-ms-group .item__wrap .ttl {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sec-ms-group .item__wrap .ttl {
    font-size: 17px;
    font-size: 1.7rem;
    margin-bottom: 0.9rem;
  }
}

@media screen and (max-width: 320px) {
  .sec-ms-group .item__wrap .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-ms-group .item:nth-child(even) {
  background-color: #f4f4f4;
}

@media screen and (min-width: 769px) {
  .sec-ms-group .item:nth-child(even) .item__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .sec-ms-group .item:nth-child(even) .item__content {
    padding: 0 0 0 5.7rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 990px) {
  .sec-ms-group .item:nth-child(even) .item__content {
    padding: 0 0 0 3rem;
  }
}

@media screen and (min-width: 769px) {
  .sec-ms-group .item:nth-child(even) .item__content .txt-main-lg {
    margin-bottom: 2.8rem;
  }
}

.sec-ms-bottom {
  background: url("../img/recruit/message/bg.png") no-repeat center/cover;
  padding: 8.1rem 0 8.2rem;
  margin-bottom: 12rem;
}

@media screen and (max-width: 768px) {
  .sec-ms-bottom {
    background: url("../img/recruit/message/bg-sp.png") no-repeat center/cover;
    margin-bottom: 6rem;
    padding: 2rem 0;
  }
}

.sec-ms-bottom .block {
  display: block;
  width: 100%;
  max-width: 86.2rem;
  margin: 0 auto;
  border: 1px solid #ea2f3c;
  background-color: #FFFFFF;
  padding: 4rem 5.1rem 5.6rem;
}

@media screen and (max-width: 990px) {
  .sec-ms-bottom .block {
    padding: 3rem 4rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-ms-bottom .block {
    padding: 1.5rem 2.2rem 2.5rem;
  }
}

.sec-ms-bottom .block .txt-main-lg {
  margin-bottom: 2.5rem;
  font-weight: bold;
}

@media screen and (max-width: 990px) {
  .sec-ms-bottom .block .txt-main-lg {
    margin-bottom: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-ms-bottom .block .ttl-comp02 {
    margin-bottom: 0.6rem;
  }
}

.note-page-block {
  max-width: 860px;
  margin: 0 auto;
}

.note-page-block .txt-main, .note-page-block .common-table td, .common-table .note-page-block td, .note-page-block .common-table th, .common-table .note-page-block th, .note-page-block .hiring-process__list dd, .hiring-process__list .note-page-block dd {
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  .note-page-block .txt-main, .note-page-block .common-table td, .common-table .note-page-block td, .note-page-block .common-table th, .common-table .note-page-block th, .note-page-block .hiring-process__list dd, .hiring-process__list .note-page-block dd {
    letter-spacing: -0.5px;
    text-align: justify;
  }
}

.note-page-block .txt-main span, .note-page-block .common-table td span, .common-table .note-page-block td span, .note-page-block .common-table th span, .common-table .note-page-block th span, .note-page-block .hiring-process__list dd span, .hiring-process__list .note-page-block dd span {
  display: block;
  margin-bottom: 17px;
}

@media screen and (max-width: 768px) {
  .note-page-block .txt-main span, .note-page-block .common-table td span, .common-table .note-page-block td span, .note-page-block .common-table th span, .common-table .note-page-block th span, .note-page-block .hiring-process__list dd span, .hiring-process__list .note-page-block dd span {
    display: inline;
  }
}

.note-page__ttl {
  background: white;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 15px 15px 22px;
  margin-bottom: 22px;
}

@media screen and (max-width: 768px) {
  .note-page__ttl {
    padding: 8px 5px 16px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0 22px 14px;
  }
}

@media screen and (max-width: 320px) {
  .note-page__ttl {
    margin: 0 15px 14px;
  }
}

.note-page__ttl .ttl {
  display: block;
  font-size: 36px;
  font-size: 3.6rem;
  color: #db0917;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .note-page__ttl .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.ttl-note {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 36px;
  letter-spacing: 0.7px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .ttl-note {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .work-item {
    margin: 0 -2rem;
  }
}

.work-item .item {
  position: relative;
  margin-bottom: 125px;
}

@media screen and (max-width: 768px) {
  .work-item .item {
    margin-bottom: 84px;
  }
}

.work-item .item:after {
  content: "";
  width: 74px;
  height: 25px;
  background: url("../img/common/arrow-dow.png") no-repeat;
  background-size: 100%;
  position: absolute;
  top: calc(100% + 52px);
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .work-item .item:after {
    top: calc(100% + 30px);
  }
}

.work-item .item:last-child {
  margin-bottom: 0;
}

.work-item .item:last-child:after {
  display: none;
}

.work-item .item .img img {
  width: 100%;
}

.work-item .item .txt-main, .work-item .item .common-table td, .common-table .work-item .item td, .work-item .item .common-table th, .common-table .work-item .item th, .work-item .item .hiring-process__list dd, .hiring-process__list .work-item .item dd {
  line-height: 1.9;
  background: white;
  border: 1px solid #cdcdcd;
  padding: 15px 32px;
  min-height: 324px;
  max-width: 420px;
  position: absolute;
  right: 36px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .work-item .item .txt-main, .work-item .item .common-table td, .common-table .work-item .item td, .work-item .item .common-table th, .common-table .work-item .item th, .work-item .item .hiring-process__list dd, .hiring-process__list .work-item .item dd {
    position: static;
    right: 0;
    top: auto;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    padding: 15px 18px 17px;
    min-height: 100px;
    margin: -27px 30px 0;
    line-height: 1.8;
    letter-spacing: -0.5px;
    max-width: 100%;
  }
}

.work-item .item .txt-main .ttl, .work-item .item .common-table td .ttl, .common-table .work-item .item td .ttl, .work-item .item .common-table th .ttl, .common-table .work-item .item th .ttl, .work-item .item .hiring-process__list dd .ttl, .hiring-process__list .work-item .item dd .ttl {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  color: #e91426;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .work-item .item .txt-main .ttl, .work-item .item .common-table td .ttl, .common-table .work-item .item td .ttl, .work-item .item .common-table th .ttl, .common-table .work-item .item th .ttl, .work-item .item .hiring-process__list dd .ttl, .hiring-process__list .work-item .item dd .ttl {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 1px;
    padding: 0 15px;
    letter-spacing: 0;
  }
}

.work-item .item .txt-main .number, .work-item .item .common-table td .number, .common-table .work-item .item td .number, .work-item .item .common-table th .number, .common-table .work-item .item th .number, .work-item .item .hiring-process__list dd .number, .hiring-process__list .work-item .item dd .number {
  width: 60px;
  height: 60px;
  position: absolute;
  top: -30px;
  left: -30px;
  font-family: "Bebas", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  color: white;
  background: black;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .work-item .item .txt-main .number, .work-item .item .common-table td .number, .common-table .work-item .item td .number, .work-item .item .common-table th .number, .common-table .work-item .item th .number, .work-item .item .hiring-process__list dd .number, .hiring-process__list .work-item .item dd .number {
    font-size: 26px;
    font-size: 2.6rem;
    font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
    width: 50px;
    height: 50px;
    top: -24px;
    left: -21px;
    font-weight: bold;
  }
}

.work-item .item:nth-child(even) .txt-main, .work-item .item:nth-child(even) .common-table td, .common-table .work-item .item:nth-child(even) td, .work-item .item:nth-child(even) .common-table th, .common-table .work-item .item:nth-child(even) th, .work-item .item:nth-child(even) .hiring-process__list dd, .hiring-process__list .work-item .item:nth-child(even) dd {
  right: auto;
  left: 46px;
}

.motivation-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.motivation-block .txt-main, .motivation-block .common-table td, .common-table .motivation-block td, .motivation-block .common-table th, .common-table .motivation-block th, .motivation-block .hiring-process__list dd, .hiring-process__list .motivation-block dd {
  width: 59.2%;
  padding-right: 38px;
  position: relative;
  top: -11px;
}

@media screen and (min-width: 769px) {
  .motivation-block .txt-main .ttl-comp03, .motivation-block .common-table td .ttl-comp03, .common-table .motivation-block td .ttl-comp03, .motivation-block .common-table th .ttl-comp03, .common-table .motivation-block th .ttl-comp03, .motivation-block .hiring-process__list dd .ttl-comp03, .hiring-process__list .motivation-block dd .ttl-comp03 {
    margin-bottom: 18px;
  }
  .motivation-block .txt-main .ttl-note, .motivation-block .common-table td .ttl-note, .common-table .motivation-block td .ttl-note, .motivation-block .common-table th .ttl-note, .common-table .motivation-block th .ttl-note, .motivation-block .hiring-process__list dd .ttl-note, .hiring-process__list .motivation-block dd .ttl-note {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 768px) {
  .motivation-block .txt-main, .motivation-block .common-table td, .common-table .motivation-block td, .motivation-block .common-table th, .common-table .motivation-block th, .motivation-block .hiring-process__list dd, .hiring-process__list .motivation-block dd {
    padding-right: 20px;
  }
}

@media screen and (max-width: 640px) {
  .motivation-block .txt-main, .motivation-block .common-table td, .common-table .motivation-block td, .motivation-block .common-table th, .common-table .motivation-block th, .motivation-block .hiring-process__list dd, .hiring-process__list .motivation-block dd {
    width: 100%;
    padding: 0;
    top: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .motivation-block .txt-main .ttl-comp02, .motivation-block .common-table td .ttl-comp02, .common-table .motivation-block td .ttl-comp02, .motivation-block .common-table th .ttl-comp02, .common-table .motivation-block th .ttl-comp02, .motivation-block .hiring-process__list dd .ttl-comp02, .hiring-process__list .motivation-block dd .ttl-comp02 {
    margin-bottom: 10px;
  }
  .motivation-block .txt-main .ttl-note, .motivation-block .common-table td .ttl-note, .common-table .motivation-block td .ttl-note, .motivation-block .common-table th .ttl-note, .common-table .motivation-block th .ttl-note, .motivation-block .hiring-process__list dd .ttl-note, .hiring-process__list .motivation-block dd .ttl-note {
    letter-spacing: 0;
  }
}

.motivation-block .img {
  width: 40.8%;
}

@media screen and (max-width: 640px) {
  .motivation-block .img {
    width: 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 24px;
  }
}

.utilities-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -36px 48px;
}

@media screen and (max-width: 768px) {
  .utilities-block {
    margin: 0 -15px 20px;
  }
}

.utilities-block .item {
  width: 33.333%;
  padding: 0 36px;
}

@media screen and (max-width: 768px) {
  .utilities-block .item {
    padding: 0 15px;
  }
}

@media screen and (max-width: 640px) {
  .utilities-block .item {
    width: 100%;
    margin-bottom: 25px;
  }
  .utilities-block .item:last-child {
    margin-bottom: 0;
  }
}

.utilities-block .item .img {
  position: relative;
  margin-bottom: 10px;
}

.utilities-block .item .img img {
  width: 100%;
}

.utilities-block .item .img span {
  display: block;
  color: white;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.3125;
  text-align: center;
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.utilities-block .item .txt-main, .utilities-block .item .common-table td, .common-table .utilities-block .item td, .utilities-block .item .common-table th, .common-table .utilities-block .item th, .utilities-block .item .hiring-process__list dd, .hiring-process__list .utilities-block .item dd {
  text-align: center;
  line-height: 1.75;
  color: #e91426;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .utilities-block .item .txt-main, .utilities-block .item .common-table td, .common-table .utilities-block .item td, .utilities-block .item .common-table th, .common-table .utilities-block .item th, .utilities-block .item .hiring-process__list dd, .hiring-process__list .utilities-block .item dd {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.about-beeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}

.about-beeline-item .item {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 32px;
}

@media screen and (max-width: 640px) {
  .about-beeline-item .item {
    width: 100%;
    margin-bottom: 4px;
  }
}

.about-beeline-item .item .ttl {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .about-beeline-item .item .ttl {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
}

.about-beeline-item .item .img {
  position: relative;
}

.about-beeline-item .item .img .txt {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  min-height: 107px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-beeline-item .item .img .txt span {
  display: block;
  font-size: 120px;
  font-size: 12rem;
  color: #e91426;
  font-family: "Bebas", sans-serif;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .about-beeline-item .item .img .txt span {
    font-size: 82px;
    font-size: 8.2rem;
  }
}

.about-beeline-item .item .img .txt span small {
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 40px;
  font-size: 4rem;
  color: #333333;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .about-beeline-item .item .img .txt span small {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.about-beeline-item .item .img .txt span.jp {
  font-family: "Noto Sans JP", "ヒラギノ角ゴPro W6", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 68px;
  font-size: 6.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .about-beeline-item .item .img .txt span.jp {
    font-size: 43px;
    font-size: 4.3rem;
  }
}

.about-beeline-item .item .img .txt .note {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .about-beeline-item .item .img .txt .note {
    font-size: 17px;
    font-size: 1.7rem;
    top: calc(100% - 9px);
  }
}

.sec-note-page {
  background: url(../img/recruit/work/bg-01.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 81px 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-note-page {
    padding: 30px 0;
    background: url(../img/recruit/work/bg-01-sp.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

.sec-work-page {
  padding: 73px 0 80px;
}

@media screen and (max-width: 768px) {
  .sec-work-page {
    padding: 30px 0 50px;
  }
  .sec-work-page .ttl-comp02 {
    margin-bottom: 11px;
  }
}

.sec-motivation {
  padding: 82px 0;
  background: url(../img/recruit/work/bg-02.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .sec-motivation {
    background: url(../img/recruit/work/bg-02-sp.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 30px 0;
    margin-bottom: 30px;
  }
}

.sec-about-page {
  background: #f0f0f0;
  padding: 69px 0 80px;
}

@media screen and (max-width: 768px) {
  .sec-about-page {
    padding: 24px 0 25px;
  }
  .sec-about-page .ttl-comp02 {
    margin-bottom: 11px;
  }
  .sec-about-page .txt-main, .sec-about-page .common-table td, .common-table .sec-about-page td, .sec-about-page .common-table th, .common-table .sec-about-page th, .sec-about-page .hiring-process__list dd, .hiring-process__list .sec-about-page dd {
    letter-spacing: -0.5px;
  }
}

.sec-about-beeline {
  padding: 73px 0 87px;
}

@media screen and (min-width: 769px) {
  .sec-about-beeline .ttl-comp02 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .sec-about-beeline {
    padding: 34px 0 53px;
  }
  .sec-about-beeline .ttl-comp02 {
    letter-spacing: -0.5px;
    margin-bottom: 19px;
  }
}

@media screen and (max-width: 768px) {
  .ls-sp {
    letter-spacing: 0 !important;
  }
}

.sec-interview02 {
  padding-top: 8.2rem;
  margin-bottom: 7.8rem;
}

@media screen and (max-width: 768px) {
  .sec-interview02 {
    margin-bottom: 5rem;
    padding: 3rem 0;
  }
}

@media screen and (max-width: 768px) {
  .sec-interview02 .wrap-sp {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .sec-interview02 .interview__slide.is-list {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .sec-interview02 .interview__slide.is-list .item {
    margin-bottom: 5rem;
    background: #eee;
    padding: 2.6rem 2rem;
  }
}

.sec-interview03 {
  margin-bottom: 12rem;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .sec-interview03 {
    margin-bottom: 8rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-interview03 {
    margin-bottom: 6rem;
    background: #eeeeee;
    padding: 1.5rem 0 3rem;
  }
}

.sec-interview03 .ttl-comp02 {
  margin-bottom: 8.5rem;
}

@media screen and (max-width: 768px) {
  .sec-interview03 .ttl-comp02 {
    margin-bottom: 1.7rem;
    text-align: left;
  }
}

.sec-interview03 .interview__slide .item {
  outline: none !important;
}

.sec-interview03 .interview__slide .item a {
  outline: none !important;
}

.inner-1560 {
  max-width: 158rem;
}

.sec-staff {
  margin-bottom: 15.2rem;
}

@media screen and (max-width: 1200px) {
  .sec-staff {
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-staff {
    margin-bottom: 3.3rem;
  }
}

.staff-head {
  background-size: cover !important;
  background-position: center !important;
  padding: 4.9rem 0 10.9rem;
  margin-bottom: 9.2rem;
}

@media screen and (max-width: 768px) {
  .staff-head {
    margin-bottom: 3rem;
    padding: 2.5rem 0 3rem;
    background-size: cover !important;
    background-position: center !important;
  }
}

.staff-head__img img {
  display: block;
  width: 100%;
}

.staff-head__content {
  width: 100%;
  max-width: 55rem;
}

@media screen and (max-width: 768px) {
  .staff-head__content {
    max-width: 21.5rem;
  }
}

.staff-head__ttl {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: #e91426;
  margin-bottom: 2.3rem;
}

@media screen and (max-width: 768px) {
  .staff-head__ttl {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}

.staff-head__box {
  background: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.78;
  padding: 3.7rem 2rem 3.2rem 3.8rem;
}

@media screen and (max-width: 768px) {
  .staff-head__box {
    padding: 1.2rem 1.6rem 1rem;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.staff-head__box .name {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.1;
  display: inline-block;
  margin-right: 4.6rem;
}

@media screen and (max-width: 768px) {
  .staff-head__box .name {
    font-size: 18px;
    font-size: 1.8rem;
    margin-right: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .staff-head__box .experience {
    display: block;
  }
}

.staff-head__box .company {
  margin: 2.6rem 0 2.5rem;
}

@media screen and (max-width: 768px) {
  .staff-head__box .company {
    margin: 0.5rem 0 0.6rem;
  }
}

@media screen and (max-width: 768px) {
  .staff-list {
    margin: 0 -2rem;
  }
}

.staff-list__item {
  margin-bottom: 7.2rem;
}

@media screen and (max-width: 768px) {
  .staff-list__item {
    padding: 3rem 2rem 2.7rem;
    margin-bottom: 3rem;
    background: #f0f0f0 url("../img/recruit/staff/staff-list-bg-01.jpg") no-repeat;
    background-size: 100% auto;
  }
}

.staff-list__item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .staff-list__item:nth-child(even) .staff-list__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .staff-list__item:nth-child(even) .staff-list__content .ttl {
    margin-right: -1rem;
  }
  .staff-list__item:nth-child(even) .staff-list__img {
    margin-left: 0;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .staff-list__item:nth-child(even) {
    background: #f0f0f0 url("../img/recruit/staff/staff-list-bg-02.jpg") no-repeat;
    background-size: 100% auto;
  }
}

@media screen and (max-width: 768px) {
  .staff-list__item:last-child {
    background: #f0f0f0 url("../img/recruit/staff/staff-list-bg-03.jpg") no-repeat;
    background-size: cover;
    margin-top: 3.5rem;
    padding: 2.5rem 2rem;
  }
  .staff-list__item:last-child .staff-list__content .ttl {
    margin-bottom: 1.7rem;
  }
  .staff-list__item:last-child .staff-list__content .txt {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.6rem 2.2rem 2.1rem;
    margin-right: 0.2rem;
  }
}

@media screen and (min-width: 769px) {
  .staff-list__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 769px) {
  .staff-list__flex.box-gray {
    background: #f4f4f4;
    padding: 4.3rem 5rem 5rem 4rem;
    margin-top: 8rem;
  }
  .staff-list__flex.box-gray .staff-list__content {
    width: 55.1%;
    max-width: 41rem;
  }
  .staff-list__flex.box-gray .staff-list__content .ttl {
    border-bottom: 1px solid #c3c3c3;
    padding-bottom: 1.7rem;
    margin-bottom: 1.6rem;
  }
  .staff-list__flex.box-gray .staff-list__img {
    width: 44.9%;
    padding-top: 0.7rem;
  }
}

.staff-list__content {
  width: 50%;
  max-width: 44.8rem;
}

@media screen and (max-width: 768px) {
  .staff-list__content {
    width: 100%;
    max-width: 100%;
  }
}

.staff-list__content .ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: #e91426;
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 768px) {
  .staff-list__content .ttl {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
  }
}

.staff-list__content .txt {
  padding-right: 1rem;
}

.staff-list__img {
  width: 50%;
  margin-left: auto;
  padding-top: 0.8rem;
}

@media screen and (max-width: 768px) {
  .staff-list__img {
    width: 100%;
    margin: 0 0 1.5rem;
    padding: 0 0.3rem 0 0;
  }
}

.staff-list__img img {
  width: 100%;
}

.sec-movie {
  margin-bottom: 15.5rem;
}

@media screen and (max-width: 1200px) {
  .sec-movie {
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-movie {
    margin-bottom: 4.1rem;
  }
}

.sec-movie .ttl-comp02 {
  margin-bottom: 5.3rem;
}

@media screen and (max-width: 768px) {
  .sec-movie .ttl-comp02 {
    text-align: left;
    margin-bottom: 1.7rem;
  }
}

.movie-wrap {
  position: relative;
  padding-right: 0.3rem;
  overflow: hidden;
}

.movie-wrap:before {
  content: "";
  display: block;
  padding-bottom: calc(548/977*100%);
}

.movie-wrap .iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.movie-wrap .iframe iframe {
  width: 100%;
  height: 100%;
}

.movie-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

@media screen and (max-width: 768px) {
  .movie-btn {
    width: 3.2rem;
    top: 49.4%;
    left: 49.6%;
  }
}

.movie-btn:hover {
  opacity: 0.7;
}

.common-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 7.6rem;
}

@media screen and (max-width: 768px) {
  .common-table {
    margin-bottom: 4.6rem;
  }
}

.common-table td, .common-table th {
  border: 1px solid #d7d7d7;
  -webkit-text-size-adjust: 100%;
}

.common-table th {
  background-color: #f4f4f4;
  width: 23.7%;
  text-align: center;
  font-weight: bold;
  vertical-align: top;
  padding: 1.2rem;
}

@media screen and (max-width: 768px) {
  .common-table th {
    text-align: left;
    width: 30%;
    padding: 0.7rem 0.8rem;
  }
}

@media screen and (max-width: 320px) {
  .common-table th {
    width: 34%;
  }
}

.common-table td {
  width: 76.3%;
  padding: 1rem 3.2rem 1.2rem;
  line-height: 2.25;
}

@media screen and (max-width: 768px) {
  .common-table td {
    width: 70%;
    padding: 0.4rem 0.8rem;
    line-height: 1.78;
  }
}

@media screen and (max-width: 320px) {
  .common-table td {
    width: 66%;
  }
}

.common-table td a {
  color: #0244d9;
}

.common-table td a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.common-table td p:not([class]):not(:last-child) {
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .common-table td p:not([class]):not(:last-child) {
    margin-bottom: 0;
  }
}

.hiring-process {
  margin-bottom: 12rem;
}

@media screen and (max-width: 768px) {
  .hiring-process {
    margin-bottom: 6rem;
  }
}

.hiring-process__ttl {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.75;
  margin-bottom: 5.1rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .hiring-process__ttl {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.325;
    font-weight: bold;
    margin-bottom: 2.8rem;
  }
}

.hiring-process__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hiring-process__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 8rem;
}

@media screen and (max-width: 768px) {
  .hiring-process__list dl {
    min-height: auto;
  }
}

.hiring-process__list dl:not(:last-child) {
  margin-bottom: 6rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .hiring-process__list dl:not(:last-child) {
    margin-bottom: 4.7rem;
  }
}

.hiring-process__list dl:not(:last-child):after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -4.2rem;
  background: url("../img/recruit/info/detail/ico-arrow-down.png") no-repeat;
  width: 4.2rem;
  height: 2.4rem;
}

@media screen and (max-width: 768px) {
  .hiring-process__list dl:not(:last-child):after {
    background-size: contain;
    width: 2.1rem;
    height: 1.2rem;
    bottom: -3rem;
  }
}

.hiring-process__list dt {
  width: 23.8%;
  background-color: #868686;
  color: #FFFFFF;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.92;
  font-weight: 500;
  padding: 0.9rem 2.2rem 1.3rem;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  .hiring-process__list dt {
    font-size: 14px;
    font-size: 1.4rem;
    width: 29.4%;
    padding: 8px 10px 11px;
  }
}

@media screen and (max-width: 320px) {
  .hiring-process__list dt {
    width: 34%;
  }
}

.hiring-process__list dd {
  width: 76.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #dbdbdb;
  border-left: none;
  line-height: 1.75;
  padding: 0.9rem 2.2rem 1.3rem;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  .hiring-process__list dd {
    width: 70.6%;
    line-height: 1.5;
    padding: 8px 10px 11px;
  }
}

@media screen and (max-width: 320px) {
  .hiring-process__list dd {
    width: 66%;
  }
}

.block-form {
  padding: 0 45px;
  margin-bottom: 33px;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  .block-form {
    padding: 0;
    margin-bottom: 3.3rem;
  }
}

.block-form .part-left {
  width: 160px;
}

@media screen and (max-width: 768px) {
  .block-form .part-left {
    width: 100%;
    margin-bottom: 1.2rem;
  }
}

.block-form .part-left span {
  padding: 6px 10px 5px;
  height: 40px;
  text-align: center;
  border: 1px solid #d1d0d0;
  background: #fff;
  width: 100%;
  display: inline-block;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .block-form .part-left span {
    padding: 6.5px 10px 5px;
  }
}

@media screen and (max-width: 768px) {
  .block-form .part-left span {
    height: auto;
    border: none;
    text-align: left;
    padding: 0;
    font-weight: 700;
  }
}

.block-form .part-right {
  width: calc(100% - 160px);
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .block-form .part-right {
    width: 100%;
    padding-left: 0;
  }
}

.block-form #select-opportunity {
  border: 1px solid #d1d0d0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 6.5px 0 6.5px 75px;
  background: url("../img/recruit/info/img-03.png") no-repeat left 32px center;
  background-color: #FFF;
  background-size: 19px auto;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.block-form #select-opportunity::-ms-expand {
  display: none;
}

@media screen and (max-width: 768px) {
  .block-form #select-opportunity {
    background: url(../img/recruit/info/img-03.png) no-repeat left 1.7rem center;
    padding: 0.8rem 0.8rem 0.8rem 6rem;
    background-size: 1.9rem auto;
    font-size: 13px;
    font-size: 1.3rem;
    max-width: calc(100vw - 4rem);
  }
  .block-form #select-opportunity option {
    max-width: calc(100vw - 4rem);
    width: calc(100vw - 4rem);
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.block-form .group-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .block-form .group-line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 2.3rem;
  }
}

@media screen and (max-width: 768px) {
  .block-form .group-line__sp {
    margin-bottom: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .block-form .group-line__sp .part-left {
    margin-bottom: 0.9rem;
  }
}

.block-form .group-line__mb {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .block-form .group-line__mb {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .block-form .group-line__mb .part-left {
    margin-bottom: 0.9rem;
  }
}

.block-form .group-line:last-child {
  margin-bottom: 0;
}

.block-form .list-checkbox label {
  margin-right: 34px;
  position: relative;
  padding-left: 22px;
}

@media screen and (max-width: 768px) {
  .block-form .list-checkbox label {
    margin-right: 1rem;
    position: relative;
    padding-left: 2.2rem;
    font-size: 13px;
    font-size: 1.3rem;
    display: inline-block;
    font-weight: 500;
  }
}

.block-form .list-checkbox label:last-child {
  margin-right: 0;
}

.block-form .list-checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 15px;
  width: 15px;
  border: 1px solid #d1d0d0;
  background: #fff;
  vertical-align: middle;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .block-form .list-checkbox .checkmark {
    height: 1.6rem;
    width: 1.6rem;
  }
}

.block-form .list-checkbox .checkmark:after {
  left: 4px;
  top: 0px;
  width: 6px;
  height: 11px;
  border: solid #db0917;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
  display: none;
}

.block-form .list-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.block-form .list-checkbox input[type="checkbox"]:checked ~ .checkmark:after {
  display: block;
}

.block-form .note-txt {
  color: #999999;
  display: inline-block;
  width: 100%;
  margin-bottom: 9px;
}

.block-form .note-txt:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .block-form .note-txt {
    margin-bottom: 0;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.block-form .submit-btn {
  text-align: right;
}

.block-form .submit-btn input {
  border: none;
  width: 150px;
  border-radius: 5px;
  background: #8a8a8a;
  color: #FFF;
  text-align: center;
  height: 40px;
  font-size: 15px;
  font-size: 1.5rem;
  border: #8a8a8a 1px solid;
}

.block-form .submit-btn input:hover {
  background: #FFF;
  color: #8a8a8a;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.list-reruitinfo .item {
  border: 1px solid #d1d0d0;
  padding: 30px 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -1px;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item {
    padding: 1.8rem 1.8rem 1.2rem 1.8rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.list-reruitinfo .item:first-child {
  margin-top: 0;
}

.list-reruitinfo .item-img {
  width: 51%;
  padding: 0 50px 0 44px;
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item-img {
    padding: 0;
    width: 100%;
    margin-bottom: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item-img img {
    width: 100%;
  }
}

.list-reruitinfo .item-box {
  width: 49%;
  padding: 0 40px 0 50px;
  font-weight: 500;
  margin-top: -7px;
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item-box {
    padding: 0;
    width: 100%;
    margin-top: 0;
  }
}

.list-reruitinfo .item-box > div {
  margin-bottom: 21px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item-box > div {
    margin-bottom: 1.2rem;
  }
}

.list-reruitinfo .item-box > div:last-child {
  margin-bottom: 0;
}

.list-reruitinfo .item-box__store {
  color: #fff;
}

.list-reruitinfo .item-box__store span {
  padding: 0px 12px 1.5px;
  background: #fbb03b;
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item-box__store span {
    padding: 0px 1rem 0.15rem;
  }
}

.list-reruitinfo .item-box__link a {
  color: #337dbb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.list-reruitinfo .item-box__link a:hover {
  opacity: 0.7;
}

.list-reruitinfo .item-box__link a:after {
  content: "";
  width: 9px;
  height: 13px;
  background: url("../img/recruit/info/img-04.png") no-repeat center center;
  display: inline-block;
  background-size: cover;
  margin-left: 10px;
}

.list-reruitinfo .item-box__des {
  font-weight: 500;
  margin-top: -7px;
  margin-bottom: 26px !important;
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item-box__des {
    margin-top: 0;
    margin-bottom: 1rem !important;
  }
}

.list-reruitinfo .item-box__des > span {
  padding-right: 14px;
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item-box__des > span {
    padding-right: 0;
    display: inline-block;
    width: 100%;
    margin-bottom: 1.1rem;
  }
}

.list-reruitinfo .item-box__des p {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item-box__des p {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    width: 100%;
  }
}

.list-reruitinfo .item-box__date {
  letter-spacing: 0.05em;
}

.list-reruitinfo .item-box__address {
  margin-bottom: 24px !important;
}

@media screen and (max-width: 768px) {
  .list-reruitinfo .item-box__address {
    margin-bottom: 0.9rem !important;
  }
}

.sec-recruitinfo {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .sec-recruitinfo {
    margin-bottom: 6rem;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select:focus,
  textarea:focus,
  input:focus {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/*# sourceMappingURL=maps/styles.css.map */
