@charset "utf-8";

/* ----------------------------------------------------
  文字
---------------------------------------------------- */
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}	

/* ----------------------------------------------------
  ローディング
---------------------------------------------------- */
.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: #f5f8f8; /* 最初の背景色 */
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9999;
}
@media only screen and (max-width: 767px)  {
.start img {
  width:160px;
	height: auto;
	}
}
.start p {
	position: fixed;
	left: 50%;
	top: 48%;
	transform: translate(-50%,-50%);
	display: none;
	z-index: 9999;
}
@media only screen and (max-device-width: 480px) {
.start img {
    width: 300px;
    height: auto;
	}
.start p {
	top: 45%;
	left: 49%;
	}
}

.loading {
	position: fixed;
	top: 69%;
	transform: translate(-50%,-50%);
	display: none;
	z-index: 9999;
	left: 50%;
	color: #06c7b6;
  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);
  }
}

/* ----------------------------------------------------
  オンマウスでぐるっと円を描くボタン
---------------------------------------------------- */
.maru-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  color: #222 !important; /* 文字色（リンクテキスト）を白に */
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

.maru-icon {
  width: 45px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}

.maru-icon svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

/* 背景のグレー円 → 白に変更 */
.maru-icon circle.bg {
  stroke: #222; /* 背景の円の色 */
  stroke-width: 1;
  fill: none;
}

/* ホバーで描かれる黒円 → 白に変更 */
.maru-icon circle.fg {
  stroke: #fff; /* アニメで描かれる円の色 */
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 0.6s ease;
}

.maru-button:hover .maru-icon circle.fg {
  stroke-dashoffset: 0;
}

/* 中央矢印 */
.maru-icon .arrow {
  position: absolute;
  top: 48%;
  left: 51%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #222; /* 矢印の色 */
  pointer-events: none;
}
.maru-button:hover .maru-icon .arrow {
  color: #fff; /* オンマウスで変更　矢印の色 */
}

/* ----------------------------------------------------
  オンマウスでぐるっと円を描くボタン
---------------------------------------------------- */
.maru-button_02 {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  color: #222 !important; /* 文字色（リンクテキスト）を白に */
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

.maru-icon_02 {
  width: 45px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}

.maru-icon_02 svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

/* 背景のグレー円 → 白に変更 */
.maru-icon_02 circle.bg {
  stroke: #06c7b6; /* 背景の円の色 */
  stroke-width: 1;
  fill: none;
}

/* ホバーで描かれる黒円 → 白に変更 */
.maru-icon_02 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_02:hover .maru-icon_02 circle.fg {
  stroke-dashoffset: 0;
}

/* 中央矢印 */
.maru-icon_02 .arrow {
  position: absolute;
  top: 48%;
  left: 51%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #5cdacf; /* 矢印の色 */
  pointer-events: none;
}
.maru-button_02:hover .maru-icon_02 .arrow {
  color: #222; /* オンマウスで変更　矢印の色 */
}

@media print {
  .gsap-hidden {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
  }

  /* アニメーション停止（必要に応じて） */
  * {
    animation: none !important;
    transition: none !important;
  }
}