@charset "UTF-8";
@keyframes cross-off-link-anim-before {
  0% {
    left: calc(-100% + 24px);
  }
  100% {
    left: 100%;
  }
}

@keyframes cross-off-link-anim-after {
  0% {
    left: calc(-200% + 24px);
  }
  100% {
    left: 0;
  }
}

@keyframes cross-off-link-small-anim-before {
  0% {
    left: calc(-100% + 15px);
  }
  100% {
    left: 100%;
  }
}

@keyframes cross-off-link-small-anim-after {
  0% {
    left: calc(-200% + 15px);
  }
  100% {
    left: 0;
  }
}

@keyframes view-more-anim-before {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes view-more-anim-after {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ================================================== */
/* COMMON ここから */
.__debug {
  margin: 15px;
  padding: 15px;
  border: 2px solid #888; 
  background-color: #f0f0f0;
}

.cross-off-link span,
.cross-off-link--small span {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 25px;
}
.cross-off-link span:before,
.cross-off-link--small span:before,
.cross-off-link span:after,
.cross-off-link--small span:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto; 
  height: 1px;
  background-color: #f47b37;
  content: "";
}
.cross-off-link span:before,
.cross-off-link--small span:before {
  width: 15px;
}
.cross-off-link span:after,
.cross-off-link--small span:after {
  width: 0;
}

@media only screen and (min-width: 48.0625em) {
  .cross-off-link span,
  .cross-off-link--small span {
    overflow: hidden; 
    padding: 0 10px 0 34px;
  }
  .cross-off-link span:before,
  .cross-off-link--small span:before {
    left: calc(-100% + 24px); 
    width: 100%;
  }
  .cross-off-link span:after,
  .cross-off-link--small span:after {
    left: calc(-200% + 24px); 
    width: 24px;
  }
  .cross-off-link:hover span:before,
  .cross-off-link--small:hover span:before {
    animation-name: cross-off-link-anim-before;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;

    animation-fill-mode: backwards;
  }
  .cross-off-link:hover span:after,
  .cross-off-link--small:hover span:after {
    animation-name: cross-off-link-anim-after;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;

    animation-fill-mode: backwards;
  }
}

.cross-off-link--small span {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 25px;
}
.cross-off-link--small span:before {
  width: 15px;
}
.cross-off-link--small span:after {
  width: 0;
}

@media only screen and (min-width: 48.0625em) {
  .cross-off-link--small span:before {
    left: calc(-100% + 15px); 
    width: 100%;
  }
  .cross-off-link--small span:after {
    left: calc(-200% + 15px); 
    width: 15px;
  }
  .cross-off-link--small:hover span:before {
    animation-name: cross-off-link-small-anim-before;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;

    animation-fill-mode: backwards;
  }
  .cross-off-link--small:hover span:after {
    animation-name: cross-off-link-small-anim-after;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;

    animation-fill-mode: backwards;
  }
}

.view-more {
  font-size: 1.2rem;
}
.view-more a {
  position: relative;
  display: block;
  overflow: hidden; 
  font-weight: 600;
}
@media only screen and (min-width: 48.0625em) {
  .view-more {
    font-size: 1.3rem;
  }
}

@keyframes ajax-loading-anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(539deg);
  }
}

.ajax-component.is-ajax-loading {
  position: relative;
  min-height: 300px;
}
.ajax-component.is-ajax-loading:before {
  position: absolute;
  top: 100px;
  right: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 30px;
  height: 30px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent #f47b37 transparent #f47b37;
  border-radius: 50%;
  content: "";
  animation: ajax-loading-anim 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s infinite;
}

.category-switcher {
  z-index: 90;
  width: 100%;
  background-color: #fff;
  transition-delay: 0s; 
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-duration: 0.4s;
  transition-property: padding-top, transform;
}
.category-switcher.js-headroom {
  position: fixed;
  top: 0;
  padding-top: 75px;
}
.category-switcher.headroom--not-top {
  padding-top: 50px;
}
.category-switcher.headroom--active.headroom--in {
  transform: translateY(0);
}
.category-switcher.headroom--active.headroom--out {
  transform: translateY(-100%);
}
@media only screen and (min-width: 48.0625em) {
  .category-switcher.js-headroom {
    padding-top: 140px;
  }
  .category-switcher.headroom--not-top {
    padding-top: 70px;
  }
}
.category-switcher__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;

  justify-content: center;
}
.category-switcher__items {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: stretch;
  padding: 20px 0; 

  justify-content: center;
  align-items: stretch;
}
@media only screen and (min-width: 48.0625em) {
  .category-switcher__items {
    padding: 40px 0;
  }
}
.category-switcher__items__border {
  position: absolute;
  bottom: 20px; 
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
}
.category-switcher__items__border span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  background-color: #f47b37; 
  content: "";
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-duration: 0.4s;
  transition-property: left, width;
}
@media only screen and (min-width: 48.0625em) {
  .category-switcher__items__border {
    bottom: 40px;
  }
}
.category-switcher__item {
  position: relative;
  margin-right: 10px;
  margin-left: 10px;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
}
@media only screen and (min-width: 48.0625em) {
  .category-switcher__item {
    margin-right: 20px; 
    margin-left: 20px;
    font-size: 1.8rem;
  }
}
.category-switcher__item a,
.category-switcher__item span {
  display: block;
  padding: 5px; 
  text-decoration: none;
}
.category-switcher__item:hover {
  cursor: pointer;
}

.section-header {
  position: relative;
}
.section-header__heading1 {
  letter-spacing: 0.1rem; 
  font-weight: 700;
  font-size: 1.8rem;
}
@media only screen and (min-width: 48.0625em) {
  .section-header__heading1 {
    font-size: 2.4rem;
  }
}
.section-header__heading2 {
  letter-spacing: 0.1rem; 
  font-weight: 700;
  font-size: 1.5rem;
}
@media only screen and (min-width: 48.0625em) {
  .section-header__heading2 {
    font-size: 1.7rem;
  }
}
.section-header .view-more {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  transform: translateY(-50%);
}

.footer-menu .section-header {
  padding-right: 44px;

  -ms-flex: 1;
      flex: 1;
}

.footer-menu__inner {
  padding-top: 60px;
  padding-bottom: 60px; 
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 60.0625em) {
  .footer-menu__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    justify-content: space-between;
  }
}

.footer-menu__content {
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px; 

  -ms-flex: 3;
      flex: 3;
}
@media only screen and (min-width: 60.0625em) {
  .footer-menu__content {
    margin-top: 0; 
    min-width: 580px;
    max-width: 50%;
  }
}

.footer-menu__col {
  -ms-flex: 1;
      flex: 1;
}
.footer-menu__col +.footer-menu__col {
  margin-left: 0;
}
@media only screen and (min-width: 48.0625em) {
  .footer-menu__col +.footer-menu__col {
    margin-left: 44px;
  }
}
.footer-menu__col__heading {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 700; 
  font-size: 1.2rem;
}
@media only screen and (min-width: 48.0625em) {
  .footer-menu__col__heading {
    padding-left: 34px;
  }
}
@media only screen and (min-width: 60.0625em) {
  .footer-menu__col__heading {
    padding-left: 0;
  }
}

.footer-menu__col__heading +.footer-menu__items {
  margin-top: 10px;
}

@media only screen and (min-width: 60.0625em) {
  .footer-menu__items {
    transform: translateX(-34px);
  }
}

.footer-menu__item {
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
}
.footer-menu__item span {
  word-break: break-all;
}
.footer-menu__item +.footer-menu__item {
  margin-top: 20px;
}
@media only screen and (min-width: 48.0625em) {
  .footer-menu__item {
    font-size: 2rem;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  overflow: scroll; 
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.modal__content {
  position: relative;
  position: relative;
  margin-top: 50px;
  margin-right: 4%;
  margin-bottom: 50px;
  margin-left: 4%;
  padding-top: 80px;
  padding-bottom: 100px; 
  width: 92%;
}
@media only screen and (min-width: 66.63859em) {
  .modal__content {
    margin-right: auto; 
    margin-left: auto;
    max-width: 980px;
    width: 100%;
  }
}
.modal__content .ci-btn {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: auto;
}

.modal__close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  transition-delay: 0s; 
  transition-timing-function: linear;
  transition-duration: 0.12s;
  transition-property: opacity;
}
.modal__close-btn:before,
.modal__close-btn:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto; 
  width: 30px;
  height: 1px;
  background-color: #000;
  content: "";
}
.modal__close-btn:before {
  transform: rotate(45deg);
}
.modal__close-btn:after {
  transform: rotate(-45deg);
}
.modal__close-btn:hover {
  opacity: 0.5; 
  cursor: pointer;
}
@media only screen and (min-width: 48.0625em) {
  .modal__close-btn:before,
  .modal__close-btn:after {
    width: 40px;
  }
}

/* COMMON ここまで */
/* ================================================== */
/* ================================================== */
/* CI COMMON ここから */
.ci-box-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
}

/* CI COMMON ここまで */
/* ================================================== */
/* ================================================== */
/* JS COMMON ここから */
.js-img-to-bgimg,
.js-img-to-bgimg--contain,
.js-img-to-bgimg--lt,
.js-img-to-bgimg--lb,
.js-img-to-bgimg--lc,
.js-img-to-bgimg--rt,
.js-img-to-bgimg--rb,
.js-img-to-bgimg--rc {
  position: relative;
  background-position: center center;
  background-size: cover; 
  background-repeat: no-repeat;
}
.js-img-to-bgimg img,
.js-img-to-bgimg--contain img,
.js-img-to-bgimg--lt img,
.js-img-to-bgimg--lb img,
.js-img-to-bgimg--lc img,
.js-img-to-bgimg--rt img,
.js-img-to-bgimg--rb img,
.js-img-to-bgimg--rc img {
  visibility: hidden;
  width: 100%;
}
.js-img-to-bgimg--contain {
  background-size: contain;
}
.js-img-to-bgimg--lt {
  background-position: left top;
}
.js-img-to-bgimg--lb {
  background-position: left bottom;
}
.js-img-to-bgimg--lc {
  background-position: left center;
}
.js-img-to-bgimg--rt {
  background-position: right top;
}
.js-img-to-bgimg--rb {
  background-position: right bottom;
}
.js-img-to-bgimg--rc {
  background-position: right center;
}

.js-easy-tab__target {
  display: none;
}
.js-easy-tab__target:first-child {
  display: block;
}

/* === slick === */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-right: auto; 
  margin-left: auto;
}
.slick-track:before,
.slick-track:after {
  display: table; 
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none; 
  float: left;
  min-height: 1px;
  height: 100%;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slider {
  position: relative;
}
.slick-slider.slick-dotted {
  margin-bottom: 50px;
}
@media only screen and (min-width: 48.0625em) {
  .slick-slider.slick-dotted {
    margin-bottom: 60px;
  }
}

.slick-slide {
  outline: none;
}

.slick-arrow {
  z-index: 5;
  width: 44px;
  height: 44px;
  outline: none; 
  border: none;
  background-color: transparent;
  font-size: 0;
}
.slick-arrow:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto; 
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-prev:before {
  transform: translateX(25%) rotate(-135deg);
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next:before {
  transform: translateX(-25%) rotate(45deg);
}
@media only screen and (min-width: 48.0625em) {
  .slick-arrow:before {
    width: 20px;
    height: 20px;
  }
}

.slick-dots {
  bottom: -40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  height: 40px;

  justify-content: center;
}
@media only screen and (min-width: 48.0625em) {
  .slick-dots {
    bottom: -50px;
    height: 50px;
  }
}
.slick-dots li {
  position: relative; 
  width: 20px;
  height: 40px;
}
@media only screen and (min-width: 48.0625em) {
  .slick-dots li {
    height: 50px;
  }
}
.slick-dots li button {
  display: none;
}
.slick-dots li:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto; 
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e1e1e3;
  content: "";
}
.slick-dots li.slick-active:before {
  background-color: #f47b37;
}

/* === slick === */
/* JS COMMON ここまで */
/* ================================================== */