@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;}
}	

/* ----------------------------------------------------
  帯からのテキスト出現
---------------------------------------------------- */
/* 1
--------------------------- */
.animated__colorBox {
  font-family: 'Noto serif JP', sans-serif; 
  position: relative;
  white-space: nowrap;
  width: fit-content;
  clip-path: inset(0 100% 0 0);
  color: #30384b;
  background-image: linear-gradient(90deg, #209cff, #22d5bc);
  font-size: 20px;
  padding:7px 0 7px 10px;
  letter-spacing: 3px;
  text-align: center;
  margin:0 auto;
}

@media print, screen and (min-width: 768px) {
.animated__colorBox {
  font-size: 30px;
  padding:10px 5px 13px 30px;
  }
}
@media print, screen and (min-width: 992px) {
.animated__colorBox {
  font-size: 40px;
  padding:10px 5px 15px 30px;  
  }
}
@media print, screen and (min-width: 1400px) {
.animated__colorBox {
  font-size: 50px;
  }
}

.animated__colorBox::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #209cff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

.animated__colorBox.js-show {
  animation: 0.8s forwards ease-in-out textView;
}

.animated__colorBox.js-show::after {
  animation: 0.8s forwards ease-in-out colorBox;
}


/* keyframes
--------------------------- */
@keyframes textView {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes colorBox {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* 2
--------------------------- */
.animated__colorBox__02 {
  font-family: 'Noto serif JP', sans-serif; 
  position: relative;
  white-space: nowrap;
  width: fit-content;
  clip-path: inset(0 100% 0 0);
  color: #30384b;
  background-image: linear-gradient(90deg, #209cff, #22d5bc);
  font-size: 22px;
  padding:7px 10px 10px 10px;
}

@media print, screen and (min-width: 768px) {
.animated__colorBox__02 {
  font-size: 30px;
  padding:10px 15px 12px 15px;
  letter-spacing: 2px;
  }
}

@media print, screen and (min-width: 992px) {
.animated__colorBox__02 {
  font-size: 40px;
  }
}

@media print, screen and (min-width: 1400px) {
.animated__colorBox__02 {
  font-size: 50px;
  padding:8px 15px 12px 15px;  
  }
}

.animated__colorBox__02::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #209cff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

.animated__colorBox__02.js-show {
  animation: 0.8s forwards ease-in-out textView;
}

.animated__colorBox__02.js-show::after {
  animation: 0.8s forwards ease-in-out colorBox;
}

/* keyframes
--------------------------- */
@keyframes textView {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes colorBox {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* 3
--------------------------- */
.animated__colorBox__03 {
  font-family: 'Noto serif JP', sans-serif; 
  position: relative;
  white-space: nowrap;
  width: fit-content;
  clip-path: inset(0 100% 0 0);
  color: #30384b;
  font-size: 22px;
  padding:7px 10px 10px 10px;
  background-image: linear-gradient(90deg, #209cff, #22d5bc);
  text-align: center;
  margin:0 auto;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
.animated__colorBox__03 {
  font-size: 30px;
  letter-spacing: 2px;  
  padding:11px 30px 14px 30px;
  margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 1200px) {
.animated__colorBox__03 {
  margin-bottom: 80px;
  }
}

.animated__colorBox__03::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, #209cff, #22d5bc);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}
.animated__colorBox__03.js-show {
  animation: 0.8s forwards ease-in-out textView;
}
.animated__colorBox__03.js-show::after {
  animation: 0.8s forwards ease-in-out colorBox;
}

/* keyframes
--------------------------- */
@keyframes textView {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes colorBox {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* ----------------------------------------------------
  ローディング
---------------------------------------------------- */
.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: #33b7d1; /* 最初の背景色 */
	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 {
  font-family: 'Noto serif JP', sans-serif;
	position: fixed;
	top: 69%;
	transform: translate(-50%,-50%);
	display: none;
	z-index: 9999;
	left: 50%;
	color: #fff;
  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);
  }
}

/* ----------------------------------------------------
  オンマウスでぐるっと円を描くボタン
---------------------------------------------------- */
@media print, screen and (min-width: 992px) {
  .maru-button_02{
    letter-spacing: 3px;
    font-size: 25px !important;
    font-weight: bold !important;
  }
}

.maru-button_02 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff !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: #fff; /* 背景の円の色 */
  stroke-width: 1;
  fill: none;
}

/* ホバーで描かれる黒円 → 白に変更 */
.maru-icon_02 circle.fg {
  stroke: #30384b; /* アニメで描かれる円の色 */
  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: 53%;
  left: 54%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #fff; /* 矢印の色 */
  pointer-events: none;
}
.maru-button_02:hover .maru-icon_02 .arrow {
  color: #30384b; /* オンマウスで変更　矢印の色 */
}