@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
  font-size: 1rem;
  height: auto;
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
body {
  font-family: Work Sans, 游ゴシック体, 'Work Sans', YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", 'Roboto Condensed', sans-serif;
  line-height: 1.7em;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  font-weight: 400
}
/* ホバー */
img a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.5;
}
a:hover {
  color: #0056b3;
}
.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
/* パソコン　改行 */
.pc_inline {
  display: inline
}
@media screen and (max-width:600px) {
  .pc_inline {
    display: none
  }
}
.sp_inline {
  display: none
}
@media screen and (max-width:1024px) {
  .tb_inline {
    display: block;
  }
  .pc_inline {
    display: none
  }
  .sp_inline {
    display: none
  }
}
@media screen and (max-width:600px) {
  .sp_inline {
    display: inline
  }
  .tb_inline {
    display: inline
  }
}
/* 画像　レスポンシブ */
@media (max-width: 640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media (min-width: 641px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
.kadomaru5 {
  border-radius: 10px;
}
.text-center-left {
  text-align: center
}
@media (max-width: 1024px) {
  .text-center-left {
    text-align: left
  }
}
.link-special {
  font-size: 13px;
  line-height: 1em;
  margin-top: -10px;
  text-align: center !important;
}
/* 要素　中央に */
.center-middle-outer {
  display: table;
  width: 100%;
  position: relative;
}
.center-middle-inner {
  display: table-cell;
  vertical-align: middle;
  position: absolute;
  top: 52%;
  left: 34%;
  transform: translateY(-50%) translateX(-34%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
@media (max-width: 1024px) {
  .center-middle-inner {
    left: 34%;
    width: 100%;
    padding: 20px;
  }
}
@media (max-width: 640px) {
  .center-middle-outer {
    display: table;
    width: 100%;
    position: relative
  }
  .center-middle-inner {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    top: 10px;
    left: 0;
    padding: 20px 30px;
    transform: translateY(0%) translateX(0%);
    -webkit- transform: translateY(0%) translateX(0%);
  }
}
.fotter {
  font-size: 75%;
  margin-top: 100px;
}
.fotter li {
  display: inline;
  margin-right: 10px
}
@media (max-width: 640px) {
  .fotter li {
    display: block;
    margin-right: 10px;
    margin-right: 30px
  }
}
.colour-box p {
  font-size: 12px;
  line-height: 1.5em
}
.new-badge {
  position: absolute;
  top: -18px; /* はみ出すように調整 */
  right: 0px; /* はみ出すように調整 */
  background-color: #2EC1CA;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-weight: bold
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
/* ----------------------------
　アニメーション
---------------------------- */
.fadeIn {
  /* じわっと画像が表示される */
  animation: fadeIn 5s ease 0s 1 normal;
  -webkit-animation: fadeIn 5s ease 0s 1 normal;
}
/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
  0% {
    opacity: 0
  } /* 始め */
  100% {
    opacity: 1
  } /* 終わり */
}
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
/*1.フェードインアニメーションの指定*/
.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*2.上下の動きを指定*/
.updown {
  transform: translateY(-100px);
}
.downup {
  transform: translateY(100px);
}
/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(200px);
}
.slide-left {
  transform: translateX(-200px);
}
/*ズーム*/
.zoom-1 img {
  width: 100%;
  height: auto;
  animation: animationZoom1 10s ease-in-out forwards;
}
.zoom-2 img {
  width: 100%;
  height: auto;
  animation: animationZoom2 10s ease-in-out infinite;
}
.zoom {
  overflow: hidden;
  width: 100%;
  height: auto;
}
@keyframes animationZoom1 {
  100% {
    transform: scale(1.1)
  }
}
@keyframes animationZoom2 {
  50% {
    transform: scale(1.1)
  }
}
/* ----------------------------
　ボタン
---------------------------- */
.button-54 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: .9em 3em .9em 2em;
  border: 1px solid #000000;
  border-radius: 5px;
  background-color: #fff;
  color: #000000;
  font-size: 1em;
}
.button-54::after {
  position: absolute;
  right: 2em;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2em;
  height: .5em;
  background-color: #000000;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: '';
  transition: transform .3s;
}
.button-54:hover {
  text-decoration: none
}
.button-54:hover::after {
  transform: translateY(-50%) scaleX(1.4);
}