@charset "UTF-8";
@-webkit-keyframes ajax-load-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ajax-load-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-webkit-keyframes loading-border-animation {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes loading-border-animation {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* ================================================== */
/* COMMON ここから */
.ajax-load-content {
  position: relative;
  min-height: 100px;
}

.ajax-load-content.is-loading:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  border-width: 3px;
  border-style: solid;
  border-radius: 50%;
  border-color: #D4003B #D4003B transparent #D4003B;
  -webkit-animation: ajax-load-animation 2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s infinite;
  animation: ajax-load-animation 2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s infinite;
  content: "";
}

@media only screen and (min-width: 48.0625em) {
  .ajax-load-content.is-loading:before {
    width: 60px;
    height: 60px;
  }
}

.view-list {
  position: relative;
  padding-left: 15px;
}

@media only screen and (min-width: 48.0625em) {
  .view-list {
    padding-left: 20px;
  }
}

.view-list__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 13px;
  height: 13px;
  margin: auto;
}

.view-list__icon .svg {
  fill: #D4003B;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 13px;
  height: 13px;
  margin: auto;
}

@media only screen and (min-width: 48.0625em) {
  .view-list__icon {
    width: 16px;
    height: 16px;
  }
  .view-list__icon .svg {
    width: 16px;
    height: 16px;
  }
}

.view-list__text, .view-list__text--en {
  margin-left: 5px;
  font-size: 1.2rem;
  font-weight: bold;
}

.view-list__text a, .view-list__text--en a {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.view-list__text--en {
  letter-spacing: .05em;
}

@media only screen and (min-width: 48.0625em) {
  .view-list__text, .view-list__text--en {
    font-size: 1.4rem;
  }
  .view-list__text a:hover, .view-list__text--en a:hover {
    color: #D4003B;
  }
}

.bottom-note {
  padding: 20px 0px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.bottom-note a {
  display: inline-block;
  text-decoration: underline;
}

.breadcrumb__items {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 12px 0 20px;
}

@media only screen and (min-width: 48.0625em) {
  .breadcrumb__items {
    padding: 20px 0;
  }
}

.breadcrumb__item {
  display: inline-block;
  font-size: 1.1rem;
}

.breadcrumb__item > a {
  display: block;
  position: relative;
  margin-right: 15px;
  padding-right: 15px;
}

.breadcrumb__item > a:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
}

.__debug {
  margin: 15px;
  padding: 15px;
  border: 2px solid #888;
  background-color: #f0f0f0;
}

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

.ci-blank-link, .ci-blank-link--black {
  position: relative;
  padding-right: 25px;
}

.ci-blank-link:after, .ci-blank-link--black:after {
  display: block;
  position: absolute;
  top: 0;
  right: 7px;
  bottom: 0;
  width: 11px;
  height: 11px;
  margin: auto;
  content: "";
}

.ci-blank-link--black:after {
  background-image: url(../img/common/icon-blank-link--black.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ci-buttons[class*="--center"] .ci-btn {
  margin-right: auto;
  margin-left: auto;
}

.ci-buttons__row + .ci-buttons__row {
  margin-top: 15px;
}

.ci-btn {
  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;
  width: 100%;
  max-width: 300px;
  padding: 17px 0;
  line-height: 1.29;
  text-decoration: none;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: border-color, background-color;
  transition-property: border-color, background-color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media only screen and (min-width: 48.0625em) {
  .ci-btn {
    max-width: 260px;
    padding: 18px 0;
  }
}

.ci-btn:hover {
  text-decoration: none;
}

.ci-btn:hover .ci-btn__text {
  text-decoration: none;
}

.ci-btn__icon {
  fill: #D4003B;
  width: 14px;
  height: 14px;
  margin-right: 15px;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: fill;
  transition-property: fill;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.ci-btn__text {
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
}

@media only screen and (min-width: 48.0625em) {
  .ci-btn__text {
    font-size: 1.4rem;
  }
}

.ci-btn[class*="--outline"] {
  border: 1px solid #E8E6E6;
  background-color: #fff;
}

@media only screen and (min-width: 48.0625em) {
  .ci-btn[class*="--outline"]:hover {
    border-color: #D4003B;
    background-color: #D4003B;
  }
  .ci-btn[class*="--outline"]:hover .ci-btn__icon {
    fill: #fff;
  }
  .ci-btn[class*="--outline"]:hover .ci-btn__text {
    color: #fff;
  }
  .ci-btn[class*="--outline"]:hover:after {
    border-color: #fff transparent transparent transparent;
  }
}

.ci-btn[class*="--round"] {
  border-radius: 100px;
}

.ci-btn[class*="--arrow"] {
  position: relative;
}

.ci-btn[class*="--arrow"]:after {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  border-width: 6px 4px 0 4px;
  border-style: solid;
  border-color: #D4003B transparent transparent transparent;
  content: "";
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.ci-buy-btn {
  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;
  max-width: 72px;
  padding: 9px 13px;
  border-radius: 15px;
}

.ci-buy-btn svg {
  width: 17px;
  height: 12px;
  margin-right: 5px;
}

.ci-buy-btn span {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.ci-buy-btn:hover {
  opacity: 1;
}

.ci-buy-btn[class*="--red"] {
  background-color: #D4003B;
}

.ci-buy-btn[class*="--red"] svg {
  fill: #fff;
}

.ci-buy-btn[class*="--red"] span {
  color: #fff;
}

@media only screen and (min-width: 48.0625em) {
  .ci-buy-btn[class*="--red"]:hover {
    background-color: #b40032;
  }
}

.ci-buy-btn[class*="--disabled"] {
  background-color: #ddd;
}

.ci-buy-btn[class*="--disabled"] svg {
  fill: #fff;
}

.ci-buy-btn[class*="--disabled"] span {
  color: #fff;
}

.ci-buy-btn[class*="--small"] {
  max-width: 50px;
  padding: 5px 14px;
}

.ci-buy-btn[class*="--small"] span {
  font-size: 1.1rem;
}

/* 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-repeat: no-repeat;
  background-size: cover;
}

.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-hover-border-animation__target {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-hover-border-animation__borders {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-hover-border-animation__border, .js-hover-border-animation__border--top, .js-hover-border-animation__border--left, .js-hover-border-animation__border--right, .js-hover-border-animation__border--bottom {
  position: absolute;
  background-color: #D4003B;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-hover-border-animation__border--top {
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
}

.js-hover-border-animation__border--left {
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
}

.js-hover-border-animation__border--right {
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
}

.js-hover-border-animation__border--bottom {
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
}

@media only screen and (min-width: 48.0625em) {
  .js-hover-border-animation:hover .js-hover-border-animation__border--top, .js-hover-border-animation:hover .js-hover-border-animation__border--bottom {
    width: 100%;
  }
  .js-hover-border-animation:hover .js-hover-border-animation__border--left, .js-hover-border-animation:hover .js-hover-border-animation__border--right {
    height: 100%;
  }
}

.js-trim-img, .js-trim-img--cover, .js-trim-img--contain {
  position: relative;
}

.js-trim-img__target {
  position: relative;
  overflow: hidden;
}

.js-trim-img__target:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  border: 2px solid #000;
  border-radius: 50%;
  border-right-color: transparent;
  border-left-color: transparent;
  -webkit-animation: circle-loader 1s linear 0s infinite;
  animation: circle-loader 1s linear 0s infinite;
  content: "";
}

.js-trim-img img, .js-trim-img--cover img, .js-trim-img--contain img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  -webkit-transform: translate(-50%, -50%) translate3d(0, 0, 0);
  transform: translate(-50%, -50%) translate3d(0, 0, 0);
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-trim-img--cover.is-full-height img {
  width: auto;
  height: 100%;
}

.js-trim-img--cover.is-full-width img {
  width: 100%;
  height: auto;
}

.js-trim-img--cover.is-top img {
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.js-trim-img--contain.is-full-height img {
  width: auto;
  height: 100%;
}

.js-trim-img--contain.is-full-width img {
  width: 100%;
  height: auto;
}

.js-trim-img--cover.is-full-width, .js-trim-img--cover.is-full-height, .js-trim-img--contain.is-full-width, .js-trim-img--contain.is-full-height {
  background-color: inherit;
}

.js-trim-img--cover.is-full-width img, .js-trim-img--cover.is-full-height img, .js-trim-img--contain.is-full-width img, .js-trim-img--contain.is-full-height img {
  opacity: 1;
}

.js-trim-img--cover.is-full-width .js-trim-img__target:before, .js-trim-img--cover.is-full-height .js-trim-img__target:before, .js-trim-img--contain.is-full-width .js-trim-img__target:before, .js-trim-img--contain.is-full-height .js-trim-img__target:before {
  display: none;
}

.js-hover-underline-animation__target {
  overflow: hidden;
}

.js-hover-underline-animation__border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.js-hover-underline-animation__border:before {
  display: block;
  width: 100%;
  height: 1px;
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
  background-color: #fff;
  content: "";
}

/* === slick === */
/* Slider */
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  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;
  height: 100%;
  min-height: 1px;
  float: left;
}

[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: 40px;
}

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

.slick-slide {
  outline: none;
}

.slick-arrow {
  z-index: 5;
  width: 44px;
  height: 44px;
}

.slick-arrow:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}

.slick-arrow.slick-prev {
  left: 0;
}

.slick-arrow.slick-prev:before {
  -webkit-transform: translateX(25%) rotate(-135deg);
  transform: translateX(25%) rotate(-135deg);
}

.slick-arrow.slick-next {
  right: 0;
}

.slick-arrow.slick-next:before {
  -webkit-transform: translateX(-25%) rotate(45deg);
  transform: translateX(-25%) rotate(45deg);
}

@media only screen and (min-width: 48.0625em) {
  .slick-arrow:before {
    width: 20px;
    height: 20px;
  }
}

.slick-dots {
  bottom: -40px;
  height: 40px;
}

@media only screen and (min-width: 48.0625em) {
  .slick-dots {
    bottom: -50px;
    height: 50px;
  }
}

.slick-dots li {
  position: relative;
  width: 10px;
  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 {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background-color: #e1e1e3;
  content: "";
}

@media only screen and (min-width: 48.0625em) {
  .slick-dots li:before {
    width: 10px;
    height: 10px;
  }
}

.slick-dots li.slick-active:before {
  background-color: #D4003B;
}

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