@charset "utf-8";
/* ===================================================================

 file name  :class.css
 style info :汎用クラス指定

=================================================================== */

/*
 * .bg
 * 背景装飾
 *----------------------------------------------------------- */
.bg-ffffff {
  background: #ffffff;
}
.bg-000000 {
  background: #000000;
}

/*
 * .cl
 * カラー
 *----------------------------------------------------------- */
.cl-ffffff {
  color: #ffffff;
}
.cl-000000 {
  color: #000000;
}

/*
 * .text-shadow
 * カラー
 *----------------------------------------------------------- */
.text-shadow {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.5);
}

/*
 * .c-fig
 * 画像注釈
 *----------------------------------------------------------- */
.c-fig {
  position: relative;
}
.c-fig figcaption {
  position: absolute;
  right: 0.5em;
  bottom: 0.2em;
  line-height: 1.3;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-fig figcaption {
    font-size: 1.2rem;
  }
}
/*
 * .ttl-
 * タイトル
 *----------------------------------------------------------- */
.ttl-h01 {
  margin: 0 0 35px;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
}
.ttl-h01-topline {
  font-weight: 700;
}
.ttl-h01-topline:before {
  content: '';
  display: block;
  width: 15px;
  height: 2px;
  margin: 0 auto 15px;
  background: #b6b6b6;
}
.ttl-h01-bottomline .en {
  font-weight: 700;
}
.ttl-h01-bottomline .en::after {
  content: '';
  display: block;
  width: 15px;
  height: 1px;
  margin-block: 10px 20px;
  background: #b6b6b6;
}
.ttl-h01 .s-cap {
  display: block;
  margin: 5px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .ttl-h01 {
    margin: 0 0 60px;
    font-size: 3.6rem;
  }

  .ttl-h01-topline:before {
    width: 19px;
    height: 3px;
    margin: 0 auto 20px;
  }
  .ttl-h01-bottomline .en::after {
    width: 30px;
    height: 1px;
    margin-block: 15px 30px;
  }
  .ttl-h01 .s-cap {
    font-size: 1.6rem;
  }
}
/*
 * .btn-primary
 * ボタン
 *----------------------------------------------------------- */
.btn-primary {
  max-width: 250px;
  margin: 0 auto;
}
.btn-primary a {
  display: block;
  padding: 13px 0;
  text-align: center;
  color: #000;
  background: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  position: relative;
}

.btn-primary a span::before {
  content: '';
  display: block;
  width: 8px;
  height: 16px;
  background: #000;
  -webkit-mask: url('/kodate/designoffice/kansai2/common/img/ico_arrow02.svg') no-repeat 50% 50% / 100% auto;
  mask: url('/kodate/designoffice/kansai2/common/img/ico_arrow02.svg') no-repeat 50% 50% / 100% auto;
  position: absolute;
  top: calc(50% - 8px);
  right: 16px;
}

/* btn-en */
.btn-primary.btn-en a {
  font-size: 1.65rem;
}

/* round */
.btn-primary.btn-primary--round a {
  padding: 8px 0;
  font-size: 1.2rem;
  border-radius: 3em;
}
.btn-primary.btn-primary--round a span::before {
  width: 6px;
  height: 10px;
  top: calc(50% - 5px);
  right: 10px;
}
/* black */
.btn-primary--black a {
  background: #000;
  color: #fff;
  border: solid 1px #fff;
}
.btn-primary--black a span::before {
  background: #fff;
}
/* gray */
.btn-primary.btn-primary--gray a {
  background: #484848;
  color: #fff;
}
.btn-primary.btn-primary--gray a span::before {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .btn-primary {
    max-width: 650px;
  }
  .btn-primary a {
    padding: 18px 0;
    font-size: 1.6rem;
    position: relative;
    overflow: hidden;
  }
  .btn-primary a span::before {
    width: 10px;
    height: 20px;
    top: calc(50% - 10px);
    right: 22px;
  }
  .btn-primary a::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transform: skewX(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30%;
    transition: all ease 0.6s;
    z-index: 1;
  }
  .btn-primary a:hover::before {
    width: 200%;
  }
  .btn-primary a span {
    z-index: 10;
  }

  /* btn-en */
  .btn-primary.btn-en a {
    font-size: 2.2rem;
  }
  /* black */
  .btn-primary--black a::before {
    background: rgba(255, 255, 255, 0.2);
  }

  /* round */
  .btn-primary.btn-primary--round {
    margin: 0;
  }

  .btn-primary.btn-primary--round a {
    padding: 8px 0;
    font-size: 1.4rem;
  }
  .btn-primary.btn-primary--round a span::before {
    right: 12px;
  }
}

/*
	animation-effect_light-stream
	<p class="animation-effect_light-stream">光を走らせる</p>
 *----------------------------------------------------------- */
.animation-effect_light-stream .animation_inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.animation-effect_light-stream .animation_inner::after {
  content: '';
  height: 300%;
  width: 100%;
  left: -100%;
  top: -100%;
  background: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 27%,
    rgba(255, 255, 255, 0.2) 39%,
    rgba(255, 255, 255, 0.7) 57%,
    rgba(255, 255, 255, 0) 73%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 27%,
    rgba(255, 255, 255, 0.2) 39%,
    rgba(255, 255, 255, 0.7) 57%,
    rgba(255, 255, 255, 0) 73%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  pointer-events: none;
  z-index: 1;
  -webkit-animation: effect_light-stream-anim 4s cubic-bezier(0.17, 0.67, 0.74, 0.95) infinite;
  animation: effect_light-stream-anim 4s cubic-bezier(0.17, 0.67, 0.74, 0.95) infinite;
}
@-webkit-keyframes effect_light-stream-anim {
  0% {
    left: -100%;
  }
  80% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}
@keyframes effect_light-stream-anim {
  0% {
    left: -100%;
  }
  80% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}

/*
 * .swiper-design
 * 
 *----------------------------------------------------------- */

.swiper-design {
  padding: 0 0 80px;
  position: relative;
}
.swiper-design .swiper-pagination {
  width: calc(100% - 70px) !important;
  position: absolute;
  top: auto !important;
  left: 50% !important;
  bottom: 0;
  height: 1px !important;
  background: #555;
  transform: translateX(-50%);
}
.swiper-design .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #fff;
}
.swiper-design .swiper-button-prev {
  top: auto;
  left: auto;
  right: 75px;
  bottom: 18px;
}
.swiper-design .swiper-button-next {
  top: auto;
  right: 37px;
  bottom: 18px;
}
.swiper-design .swiper-button-next::after,
.swiper-design .swiper-button-prev::after {
  display: block;
  width: 27px;
  height: 24px;
  text-indent: -9999px;
  overflow: hidden;
}
.swiper-design .swiper-button-next::after {
  background: url('/kodate/designoffice/kansai2/common/img/btn_next.svg') no-repeat 50% 50% / 100% auto;
}
.swiper-design .swiper-button-prev::after {
  background: url('/kodate/designoffice/kansai2/common/img/btn_prev.svg') no-repeat 50% 50% / 100% auto;
}

@media screen and (min-width: 768px) {
  .swiper-design .swiper-pagination {
    width: 812px !important;
  }
  .swiper-design .swiper-button-prev {
    left: calc(50% + 295px);
    right: auto;
    bottom: 14px;
  }
  .swiper-design .swiper-button-next {
    left: calc(50% + 355px);
    right: auto;
    bottom: 14px;
  }
  .swiper-design .swiper-button-next::after,
  .swiper-design .swiper-button-prev::after {
    width: 31px !important;
    height: 27px !important;
    transition: all ease 0.4s;
  }
  .swiper-design .swiper-button-next:hover::after,
  .swiper-design .swiper-button-prev:hover::after {
    opacity: 0.6;
  }
}
