.hero-wrap {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: myanimation 20s infinite;
  animation: myanimation 20s infinite;
}


.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: #000;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-wrap .overlay {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.hero-wrap.hero-wrap-2 {
  height: 600px;
  position: relative;
  background-position: top center;
}
.hero-wrap.hero-wrap-2 .overlay {
  width: 100%;
  opacity: .3;
  background: #000;
}
.hero-wrap.hero-wrap-2 .slider-text {
  height: 600px;
}

@-webkit-keyframes myanimation {
  0% {
    background-color: #69779b;
  }
  25% {
    background-color: #f8b500;
  }
  50% {
    background-color: #212121;
  }
  75% {
    background-color: #064acb;
  }
  100% {
    background-color: #69779b;
  }
}
@keyframes myanimation {
  0% {
    background-color: #69779b;
  }
  25% {
    background-color: #f8b500;
  }
  50% {
    background-color: #212121;
  }
  75% {
    background-color: #064acb;
  }
  100% {
    background-color: #69779b;
  }
}

.js-fullheight {
  height: 100%;
}
.js-colorlib-nav-toggle {
  display: block;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-md-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.text-center {
  text-align: center !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.logo {
  font-family: "Abril Fatface", cursive;
}

ul {
  padding-left: 2rem;
}

li {
  display: list-item;
  text-align: -webkit-match-parent;
}

.active {
  color: #69779b;
}

.slider-text {
  position: relative;
  z-index: 1;
}
.slider-text .subheading {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 20px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767.98px) {
  .slider-text .subheading {
    margin-top: -10px;
  }
}
.slider-text .desc {
  display: inline-block;
  position: relative;
}



.slider-text h1 {
  font-size: 240px;
  color: #fff;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Abril Fatface", cursive;
  display: inline-block;
  overflow: hidden;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  -ms-background-clip: text;
  -ms-text-fill-color: transparent;
  -o-background-clip: text;
  -o-text-fill-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 1199.98px) {
  .slider-text h1 {
    font-size: 200px;
  }
}
@media (max-width: 991.98px) {
  .slider-text h1 {
    font-size: 150px;
  }
}
@media (max-width: 767.98px) {
  .slider-text h1 {
    font-size: 80px;
  }
}
.slider-text p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}

.btn {
  cursor: pointer;
  border-radius: 30px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.btn.btn-primary {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}
.btn.btn-primary:hover {
  border: 1px solid #B5A6FF;
  background: transparent;
  color: #B5A6FF;
}

.ion-ios-arrow-forward {
  font-family: "Ionicons";
}

.ftco-animate {
  opacity: 0;
  visibility: hidden;
}



.area-box-infographic {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px; /* パディングを少し増やしてスペースを確保 */
  margin: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1; /* アイコンを装飾の上に表示 */

/* ★ここから追加・変更★ */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 軽い影で少し浮いたように見せる */
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* ホバー効果のためにトランジションを追加 */
}

.area-box-infographic:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* ホバー時に影を濃くする */
  transform: translateY(-3px); /* わずかに上に移動して浮遊感を強調 */
}
/* ボックスの左上にある赤い円の装飾 */
.area-box-infographic::before {
  content: '';
  position: absolute;
  top: -20px; /* 位置を調整 */
  left: -20px; /* 位置を調整 */
  width: 80px; /* サイズを大きく */
  height: 80px; /* サイズを大きく */
  background-color: #ff6b6b;
  border-radius: 50%;
  z-index: -1;
}

/* ボックスの右下にある水色のリングの装飾 */
.area-box-infographic::after {
 content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background-color: #4ECDC4; 
  border-radius: 50%;
  transform: rotate(-15deg);
  z-index: -1; /* コンテンツの下に配置 */
}

.area-box-infographic i.infographic-icon {
  font-size: 3rem; /* アイコンのサイズを大きく設定 */
  color: #555555; /* アイコンの基本色 */
  margin-bottom: 1rem; /* 下の要素との間に余白を作成 */
  display: block; /* ブロック要素にして中央揃えしやすくする */
  text-align: center;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.area-box-infographic:hover i.infographic-icon {
  color: #4a90e2; /* ホバーで色を変更 */
  transform: scale(1.1); /* ホバーで少し拡大 */
}
.area-box-infographic p {
 font-size:14px;
}

.area-box-infographic h4{
 font-size:20px;
}


.area-box-cool {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.area-box-cool::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background-color: #3498db; /* 落ち着いた青 */
  border-radius: 50%;
  z-index: -1;
}

.area-box-cool::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 4px solid #ff6b6b; 
  border-radius: 50%;
  transform: rotate(-15deg);
  z-index: -1;
}

.area-box-cool:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    display: none !important;
}