/* VARIABLE*/
/* MIXIN*/
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/********** SP **********/
@media screen and (max-width: 900px) {
  #index header {
    background: #fff;
  }
  #index header.scroll {
    background: rgba(246, 245, 239, 0.9);
  }

  #first-view {
    background: #fff;
    margin-top: -30px;
    padding-bottom: 60px;
  }
  #first-view .col-l {
    background: url(../images/index/first_view_image.png) no-repeat center;
    background-size: cover;
    width: 100%;
    padding-top: 100%;
  }
  #first-view .col-r {
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 40px 0;
  }
  #first-view .col-r video {
    width: 100%;
  }

  #news {
    background: #202020;
    color: #fff;
    padding: 10px 53px 10px 0;
    position: relative;
  }
  #news a {
    color: #fff;
    display: inline-block;
    width: 100%;
  }
  #news .btn-toggle {
    background: #f6df34;
    width: 53px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 10;
  }
  #news .btn-toggle::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 20px auto 0;
    background: url(../images/common/arrow_black.svg) no-repeat center;
    width: 12px;
    height: 24px;
    z-index: 10;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }
  #news .btn-toggle.open::before {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  #news .article {
    margin-bottom: 10px;
  }
  #news .article:last-child {
    margin-bottom: 0;
  }
  #news .toggle {
    display: none;
    margin-top: 10px;
  }

  #summary {
    border-top: 10px solid #fff;
    padding-top: 60px;
    margin-bottom: 60px;
  }
  #summary h1 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  #summary h1 span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f6df34));
    background: linear-gradient(transparent 60%, #f6df34 60%);
  }
  #summary p {
    line-height: 2;
    letter-spacing: .05em;
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  #summary p:last-child {
    margin-bottom: 0;
  }

  #staffs {
    border-top: 10px solid #fff;
    padding-top: 60px;
    margin-bottom: 60px;
  }
  #staffs .staff {
    width: 100%;
    margin-bottom: 75px;
    overflow: hidden;
  }
  #staffs .staff .picture {
    line-height: 0;
    width: 63.2%;
  }
  #staffs .staff .picture img {
    width: 100%;
    border-radius: 0 30px 30px 0;
  }
  #staffs .staff .message-more {
    background: #f6df34;
    border-radius: 30px 0 0 30px;
    width: 36.8%;
    position: relative;
  }
  #staffs .staff .message-more .Flex {
    width: calc(100% + 70px);
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #staffs .staff .message-more .message {
    background: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: bold;
    padding: 10px 25px;
    width: 100%;
    -webkit-transform: translate(-70px, 0);
    transform: translate(-70px, 0);
  }
  #staffs .staff .message-more .more {
    background: #202020;
    color: #fff;
    font-size: 9px;
    text-align: center;
    padding: 8px 25px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #staffs .staff:nth-child(2n).Flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  #staffs .staff:nth-child(2n) .picture img {
    border-radius: 30px 0 0 30px;
  }
  #staffs .staff:nth-child(2n) .message-more {
    border-radius: 0 30px 30px 0;
  }
  #staffs .staff:nth-child(2n) .message-more .message {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  #staffs .staff:nth-child(2n) .message-more .more {
    right: auto;
    left: 0;
  }

  #shop-information {
    border-top: 10px solid #fff;
    padding-top: 60px;
    margin-bottom: 60px;
  }
  #shop-information .shop {
    width: 100%;
    margin-bottom: 25px;
  }
  #shop-information .shop:last-child {
    margin-bottom: 0;
  }
  #shop-information .shop .image-wrapper {
    line-height: 0;
    text-align: center;
    width: 100%;
  }
  #shop-information .shop .image-wrapper img {
    max-width: 100%;
  }
  #shop-information .shop .info {
    background: #f6df34;
    padding: 50px 33px 35px;
    position: relative;
  }
  #shop-information .shop .info h2 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 25px;
  }
  #shop-information .shop .info ul {
    line-height: 1.82;
  }
  #shop-information .shop .info .link {
    background: #202020;
    color: #fff;
    font-size: 9px;
    text-align: center;
    padding: 8px 25px;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  #voice {
    border-top: 10px solid #fff;
    padding-top: 60px;
    margin-bottom: 60px;
  }
  #voice .slider-wrapper {
    width: 100%;
    background: #f6df34;
    padding: 13px 0;
    overflow: hidden;
  }
  #voice .slider-wrapper li {
    position: relative;
    padding: 0 18px;
  }
  #voice .slider-wrapper li a {
    display: inline-block;
  }
  #voice .slider-wrapper li img {
    width: 100%;
    border-radius: 30px;
    -webkit-transition: all 1s linear;
    transition: all 1s linear;
  }
  #voice .slider-wrapper .slick-current img {
    -webkit-transition: all 1s linear;
    transition: all 1s linear;
    border-radius: 30px;
  }
  #voice .slider-wrapper .slide-arrow {
    width: 12px;
    height: 24px;
    position: absolute;
    bottom: 0;
    margin-bottom: 54px;
    z-index: 10;
  }
  #voice .slider-wrapper .prev-arrow {
    left: 0;
    margin-left: 13px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  #voice .slider-wrapper .next-arrow {
    right: 0;
    margin-right: 13px;
  }
  #voice .caption {
    display: none;
  }
  #voice .display-caption {
    background: rgba(255, 255, 255, 0.7);
    padding-top: 10px;
    padding-bottom: 10px;
    position: absolute;
    bottom: 0;
    margin-bottom: 52px;
  }
  #voice .display-caption:first-child {
    padding-right: 20px;
    padding-left: 35px;
    left: 0;
  }
  #voice .display-caption:last-child {
    padding-right: 35px;
    padding-left: 20px;
    right: 0;
  }
  #voice .display-caption .info .belong {
    display: block;
    font-weight: bold;
  }
  #voice .display-caption .info span {
    display: inline-block;
  }

  #job-info {
    text-align: center;
  }
  #job-info img {
    width: 100%;
    max-width: 313px;
  }

  /* magnificPopup*/
  .popup {
    position: relative;
    background: #202020;
    padding: 30px 0 0 30px;
    width: auto;
    min-width: 320px;
    margin: 0 auto;
    overflow-x: hidden;
  }
  .popup .Flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .popup .col-l {
    line-height: 0;
    -webkit-transform: translate(-30px, 0);
    transform: translate(-30px, 0);
    position: relative;
  }
  .popup .col-l::after {
    background: #fff;
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 30px);
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 30px;
    z-index: -1;
  }
  .popup .col-l img {
    width: 100%;
    border-radius: 0 30px 30px 0;
  }
  .popup .col-r {
    background: #fff;
    line-height: 2;
    letter-spacing: .05em;
    border-radius: 30px 0 0 0;
    padding: 50px 30px;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  .popup .col-r .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .close-btn {
    display: block;
    width: 95px;
    height: 25px;
    margin: 45px auto;
  }
}
/********** PC **********/
@media screen and (min-width: 900px) {
  #index header {
    background: #fff;
  }
  #index header.scroll {
    background: rgba(246, 245, 239, 0.9);
  }

  #first-view {
    background: #fff;
    margin-top: -55px;
    padding-bottom: 60px;
  }
  #first-view .col-l {
    background: url(../images/index/first_view_image.png) no-repeat center;
    background-size: cover;
    width: 50%;
    padding-top: 50%;
  }
  #first-view .col-r {
    width: 50%;
    margin: 0 auto;
    padding: 120px;
  }
  #first-view .col-r video {
    width: 100%;
  }

  #news {
    background: #202020;
    color: #fff;
  }
  #news .inner {
    width: 600px;
    padding: 15px 98px 15px 0;
    position: relative;
  }
  #news .inner a {
    color: #fff;
    display: inline-block;
    width: 100%;
  }
  #news .inner .btn-toggle {
    background: #f6df34;
    width: 78px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 10;
  }
  #news .inner .btn-toggle::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 30px auto 0;
    background: url(../images/common/arrow_black.svg) no-repeat center;
    width: 18px;
    height: 36px;
    z-index: 10;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }
  #news .inner .btn-toggle.open::before {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  #news .inner .article {
    margin-bottom: 10px;
  }
  #news .inner .article:last-child {
    margin-bottom: 0;
  }
  #news .inner .toggle {
    display: none;
    margin-top: 10px;
  }

  #summary {
    padding-top: 100px;
    margin-bottom: 100px;
  }
  #summary .inner {
    width: 700px;
  }
  #summary h1 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
  }
  #summary h1 span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f6df34));
    background: linear-gradient(transparent 60%, #f6df34 60%);
  }
  #summary p {
    line-height: 2;
    margin-bottom: 25px;
  }
  #summary p:last-child {
    margin-bottom: 0;
  }

  #staffs {
    border-top: 10px solid #fff;
    padding-top: 100px;
    margin-bottom: 100px;
  }
  #staffs .staff {
    width: 100%;
    margin-bottom: 90px;
    overflow: hidden;
  }
  #staffs .staff .picture {
    line-height: 0;
    width: 50%;
  }
  #staffs .staff .picture img {
    width: 100%;
    border-radius: 0 30px 30px 0;
  }
  #staffs .staff .message-more {
    background: #f6df34;
    border-radius: 30px 0 0 30px;
    width: 50%;
    position: relative;
  }
  #staffs .staff .message-more .Flex {
    width: calc(100% + 70px);
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #staffs .staff .message-more .message {
    background: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-weight: bold;
    padding: 30px 25px;
    width: 100%;
    -webkit-transform: translate(-70px, 0);
    transform: translate(-70px, 0);
  }
  #staffs .staff .message-more .more {
    background: #202020;
    color: #fff;
    text-align: center;
    padding: 8px 25px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 180px;
  }
  #staffs .staff:nth-child(2n).Flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  #staffs .staff:nth-child(2n) .picture img {
    border-radius: 30px 0 0 30px;
  }
  #staffs .staff:nth-child(2n) .message-more {
    border-radius: 0 30px 30px 0;
  }
  #staffs .staff:nth-child(2n) .message-more .message {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  #staffs .staff:nth-child(2n) .message-more .more {
    right: auto;
    left: 0;
  }

  #shop-information {
    border-top: 10px solid #fff;
    padding-top: 100px;
    margin-bottom: 100px;
  }
  #shop-information .shop {
    width: calc((100% - 100px) / 2);
    margin-bottom: 100px;
  }
  #shop-information .shop:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
  #shop-information .shop .image-wrapper {
    line-height: 0;
    text-align: center;
    width: 100%;
  }
  #shop-information .shop .image-wrapper img {
    max-width: 100%;
  }
  #shop-information .shop .info {
    background: #f6df34;
    padding: 50px 33px 35px;
    position: relative;
  }
  #shop-information .shop .info h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
  }

  #shop-information .shop .info ul {
    line-height: 1.82;
  }
  #shop-information .shop .info .link {
    background: #202020;
    color: #fff;
    text-align: center;
    padding: 8px 25px;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  #voice {
    border-top: 10px solid #fff;
    padding-top: 100px;
    width: 100%;
    margin-bottom: 100px;
  }
  #voice .slider-wrapper {
    width: 100%;
    background: #f6df34;
    padding: 13px 0;
    overflow: hidden;
  }
  #voice .slider-wrapper li {
    position: relative;
    padding: 0 18px;
  }
  #voice .slider-wrapper li a {
    display: inline-block;
  }
  #voice .slider-wrapper li img {
    width: 100%;
    border-radius: 30px;
    -webkit-transition: all 1s linear;
    transition: all 1s linear;
  }
  #voice .slider-wrapper .slick-current img {
    -webkit-transition: all 1s linear;
    transition: all 1s linear;
    border-radius: 30px;
  }
  #voice .slider-wrapper .slide-arrow {
    width: 23px;
    height: 43px;
    position: absolute;
    bottom: 0;
    margin-bottom: 64px;
    z-index: 10;
  }
  #voice .slider-wrapper .prev-arrow {
    left: 0;
    margin-left: 55px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  #voice .slider-wrapper .next-arrow {
    right: 0;
    margin-right: 55px;
  }
  #voice .caption {
    display: none;
  }
  #voice .display-caption {
    background: rgba(255, 255, 255, 0.7);
    padding-top: 25px;
    padding-bottom: 25px;
    position: absolute;
    bottom: 0;
    margin-bottom: 52px;
  }
  #voice .display-caption:first-child {
    padding-right: 30px;
    padding-left: 116px;
    left: 0;
  }
  #voice .display-caption:last-child {
    padding-right: 116px;
    padding-left: 30px;
    right: 0;
  }
  #voice .display-caption .info .belong {
    display: block;
    font-weight: bold;
  }

  #job-info {
    text-align: center;
  }
  #job-info img {
    width: 100%;
    max-width: 313px;
  }

  /* magnificPopup*/
  .popup {
    position: relative;
    background: #202020;
    padding: 60px 0 0 30px;
    width: auto;
    min-width: 320px;
    margin: 0 auto;
    overflow-x: hidden;
  }
  .popup .Flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .popup .col-l {
    width: calc((100% - 80px) * .4);
    max-width: 550px;
    margin-right: 80px;
    line-height: 0;
    position: relative;
  }
  .popup .col-l::before {
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    margin-left: -99%;
  }
  .popup .col-l img {
    width: 100%;
    border-radius: 0 30px 30px 0;
  }
  .popup .col-r {
    line-height: 2;
    background: #fff;
    width: calc((100% - 80px) * .6);
    max-width: 600px;
    padding: 65px 0;
    position: relative;
  }
  .popup .col-r::before, .popup .col-r::after {
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .popup .col-r::before {
    border-radius: 30px 0 0 30px;
    width: 350px;
    margin-left: -350px;
  }
  .popup .col-r::after {
    width: 100%;
    margin-left: 100%;
  }
  .popup .col-r .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .close-btn {
    display: block;
    width: 95px;
    height: 25px;
    margin: 60px auto;
  }
}
@media screen and (max-width: 414px) {
  #voice .slider-wrapper .slide-arrow {
    margin-bottom: 61px;
  }
  #voice .display-caption .info span {
    display: block;
  }
}
#voice .slider-wrapper .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] li img {
  /* border-radius: $radius 0 0 $radius;*/
}

#voice .slider-wrapper .slick-slide[aria-hidden="true"].slick-cloned li img {
  /* border-radius: 0 $radius $radius 0;*/
}

#voice .slider-wrapper .slick-slide.slick-cloned[aria-hidden="true"] li img {
  /* border-radius: 0 $radius $radius 0 !important;*/
  /* border-radius: $radius 0 0 $radius;*/
}

/* #voice .slider-wrapper .slick-slide[aria-hidden="true"] li img {*/
/*     border-radius: 0 $radius $radius 0;*/
/* }*/
