@charset "utf-8";

/* ----------------------------------------------------
  ローディング
---------------------------------------------------- */
.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.start {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}
.start img {
  max-width: 400px;
  min-width: 200px;
  height: auto;
}

/* 小さいスマホ用 */
@media only screen and (max-width: 480px) {
  .start img {
    width: 80vw;
    max-width: none;
  }
}

.start p {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  display: none;
  z-index: 9999;
}
.loading {
  color: #a9cd1a;  
  font-family: "Cormorant Garamond", serif;
  position: fixed;
  top: 69%;
  transform: translate(-50%,-50%);
  display: none;
  z-index: 9999;
  left: 50%;
  font-size: 28px;
}
.loading span {
  display: inline-block;
  margin: 0 -.075em 50px;
  animation: loading .7s infinite alternate;
}
.loading span:nth-child(2) {animation-delay: .1s;}
.loading span:nth-child(3) {animation-delay: .2s;}
.loading span:nth-child(4) {animation-delay: .3s;}
.loading span:nth-child(5) {animation-delay: .4s;}
.loading span:nth-child(6) {animation-delay: .5s;}
.loading span:nth-child(7) {animation-delay: .6s;}

@keyframes loading {
  0% { transform: scale(1); }
  100% { transform: scale(0.8); }
}


/* ----------------------------------------------------
  流れる画像
---------------------------------------------------- */
/* 右からの無限ループ */
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__list--left {
animation: infinity-scroll-left 100s infinite linear 0.5s both;
}

/* css */
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 100s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 3);
}
.scroll-infinity__item>img {
  width: 100%;
}


/* ----------------------------------------------------
  円を描くボタン
---------------------------------------------------- */
.maru_button_01 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  color: #222 !important; /* 文字の色 */
}
.maru_icon_01 {
  width: 45px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}
.maru_icon_01 svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.maru_icon_01 circle.bg {
  stroke: #c9d704; /* 初期　丸の色 */
  stroke-width: 2;
  fill: none;
}
.maru_icon_01 circle.fg {
  stroke: #222; /* ホバー　丸の色 */
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 0.6s ease;
}
.maru_button_01:hover .maru_icon_01 circle.fg {
  stroke-dashoffset: 0;
}
.maru_icon_01 .arrow {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  pointer-events: none;
  color: #c9d704; /* 初期　矢印の色 */  
}
.maru_button_01:hover .maru_icon_01 .arrow {
  color: #222; /* ホバー　矢印の色 */
}


/* ----------------------------------------------------
  ぼかしから出現
---------------------------------------------------- */
.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}


/* ----------------------------------------------------
  カウントアップ
---------------------------------------------------- */
.conunt_area .countup-number{font-size: 40px;}
.conunt_area{font-size: 20px;}

@media print, screen and (min-width: 768px) {
  .conunt_area .countup-number{font-size: 60px;}
  .conunt_area{font-size: 25px;}
}

@media print, screen and (min-width: 992px) {
  .conunt_area .countup-number{font-size: 80px;}
  .conunt_area{font-size: 30px;}
}


/* ----------------------------------------------------
  カウントアップ02
---------------------------------------------------- */
.conunt_area_02 .countup-number{font-size: 40px;}
.conunt_area_02{font-size: 18px;}

@media print, screen and (min-width: 768px) {
  .conunt_area_02 .countup-number{font-size: 60px;}
  .conunt_area_02{font-size: 20px;}
}

@media print, screen and (min-width: 992px) {
  .conunt_area_02 .countup-number{font-size: 80px;}
  .conunt_area_02{font-size: 25px;}
}