@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: #1e66d1; /* 背景色 */
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}

.start img {
  max-width: 240px;
  min-width: 200px;
  height: auto;
}

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

.start p {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  display: none;
  z-index: 9999;
}

.loading {
  font-family: "Cormorant Garamond", 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); }
}

/* ----------------------------------------------------
  h2
---------------------------------------------------- */
.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;}
}	

/* ----------------------------------------------------
  ぼかしから出現
---------------------------------------------------- */
.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);
  }
}


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


/* ----------------------------------------------------
  横文字アニメーション
---------------------------------------------------- */
.marquee {
  font-family: "Literata", serif;
  overflow: hidden;
  display: flex;
  color: #1e66d1;
  padding: 30px 0 35px 0;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-inner span {
  padding-right: 50px;
  font-size: 25px;
  line-height: .9;
  margin-top: -0.1em;
  }

@media print, screen and (min-width: 768px) {
.marquee {
  font-family: "Literata", serif;
  overflow: hidden;
  display: flex;
  color: #1e66d1;
  padding: 85px 0 100px 0;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-inner span {
  padding-right: 50px;
  font-size: 7rem;
  line-height: .9;
  margin-top: -0.1em;
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ----------------------------------------------------
  横文字アニメーション
---------------------------------------------------- */
.marquee_02 {
  font-family: "Bodoni Moda", serif;
  overflow: hidden;
  display: flex;
  color: #fff;
  padding: 35px 0 75px 0;
}
.marquee_02-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee_02-inner span {
  padding-right: 50px;
  font-size: 25px;
  line-height: .9;
  margin-top: -0.1em;
  }

@media print, screen and (min-width: 768px) {
.marquee_02 {
  overflow: hidden;
  display: flex;
  color: #fff;
  padding: 85px 0 100px 0;
}
.marquee_02-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee_02-inner span {
  padding-right: 50px;
  font-size: 7rem;
  line-height: .9;
  margin-top: -0.1em;
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------
  帯からのテキスト出現
---------------------------------------------------- */
/* 1
--------------------------- */
.animated__colorBox {
  position: relative;
  white-space: nowrap;
  width: fit-content;
  clip-path: inset(0 100% 0 0);
  color: #fff;
  background-image: linear-gradient(90deg, #846bf3, #00b7e0);
  font-size: 30px;
  padding:5px 4px 3px 10px;
  letter-spacing: 5px;
  text-align: center;
  margin:0 auto;
}

@media print, screen and (min-width: 992px) {
.animated__colorBox {
  font-size: 50px;
  padding:5px 18px 2px 22px;
  }
}
@media print, screen and (min-width: 1200px) {
.animated__colorBox {
  font-size: 70px;
  }
}

.animated__colorBox::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #292c30;
  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);
  }
}

/* ----------------------------------------------------
  リンクボタン
---------------------------------------------------- */
/* カード全体（リンク）
---------------------------------------------------- */
.link-card {
  display: block;
  text-decoration: none;
  transition-duration: 300ms;
}

/* ホバー時　影＋背景色 */
.link-card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transition-duration: 300ms;
  background: #eee;
}

/* 下：テキスト＋矢印の横並び
---------------------------------------------------- */
.link-card__body {
  display: flex;               /* 左右に並べる */
  justify-content: space-between; /* 左右の要素を両端に配置し、間の余白を自動で広げる */
  align-items: center;         /* 上下中央揃え */
  background: #292c30;
  color: #fff;
  padding:20px 30px 30px 30px;
}

@media print, screen and (min-width: 992px) {
.link-card__body {
  padding:60px 80px 80px 80px;
  }
}

@media only screen and (max-width: 767px) {
  .link-card__body{
    border-bottom: 1px solid #111;
  }
}
@media screen and (min-width: 768px) {
  .link-card__body{
    border-right: 1px solid #111;
  }
}


/* 左側テキスト
---------------------------------------------------- */
.link-card__text {
  flex: 5 1 0%;   /* ← 5 */
  min-width: 0;  /* 折り返し・はみ出し防止で重要 */
}

.link-card__title {
  font-size: 20px;
  margin-bottom: 10px;
}

@media print, screen and (min-width: 768px) {
.link-card__title {
  font-size: 25px;
  margin-bottom: 10px;
  }
}

@media print, screen and (min-width: 992px) {
.link-card__title {
  font-size: 30px;
  margin-bottom: 20px;
  }
}


/* 右側：矢印
---------------------------------------------------- */
.link-card__arrow {
  flex: 1 0 0%;   /* ← 1 */
  display: flex;
  justify-content: flex-end;
  margin-left: 16px;
}
.link-card__arrow img {
  width: 40px;
  height: auto;
}

/* 矢印にアニメーション用の設定 */
.link-card__arrow {
  transition: transform 0.3s ease;
}

/* カード全体にホバーしたら矢印を右へ */
.link-card:hover .link-card__arrow {
  transform: translateX(6px); /* 右に少し移動 */
}

/* ----------------------------------------------------
  zoom
---------------------------------------------------- */
.mask_01{
  display: block;
  line-height: 0;
  overflow: hidden;
  background: #292c30;
}
.zoomIn_01 img{
  transform: scale(1);
  transition: .3s ease-in-out;
}
.zoomIn_01 a:hover img{
  transform: scale(1.1);
}