@charset "UTF-8";
/* CSS Document */
body {
  text-align: center;
  margin: 0;
  overflow-X: hidden;
}

/* スプラッシュアニメーション用のキーフレーム */
@keyframes splash-animation {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}

/* スプラッシュ画面 */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #71BDD0; /* スプラッシュ画面の背景色 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* 最前面に表示 */
  animation: splash-animation 0.4s forwards;
}

#splash-logo {
  animation: splash-logo-animation 0.3s forwards;
}

.splashbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #71BDD0; /* 背景色 */
  z-index: 9998; /* スプラッシュ画面の後ろに表示 */
}

.index-top-img {
  background: linear-gradient(90deg, #FDFCF4 0%, #FDFCF4 50%, #71BDD0 50%, #71BDD0 100%);
  padding-top: 150px;
  padding-bottom: 100px;
  min-height: 45vh;
  width: 100%;
}
.top-img-flower {
  position: absolute;
  top: 100px;
  left: -20px;
  height: 100px;
  width: 100px;
}
.top-img-flower02 {
  position: absolute;
  top: 500px;
  left: 100px;
}
@media screen and (max-width:1100px) {
  .top-img-flower {
    max-height: 70px;
    max-width: 70px;
    top: 80px;
  }
  .top-img-flower02 {
    opacity: 0;
  }
}
.index-top-text {
  position: absolute;
  width: 100%;
  z-index: 333;
}
.index-top-text h1 {
  position: absolute;
  top: 30px;
  left: 40px;
}
.index-top-text h1 {
  position: relative; /* 親要素に相対的な位置 */
  text-align: center;
}
.index-top-text h1::after {
  content: ''; /* 疑似要素のコンテンツを空にする */
  position: absolute; /* 絶対位置指定 */
  top: 0;
  left: -2%;
  padding: 0 10px;
  width: 100%; /* テキストの幅に合わせて背景を広げる */
  height: 105%; /* テキストの高さに合わせて背景を広げる */
  background-color: rgba(255, 255, 255, 0.9); /* 透明度を持つ白い背景 */
  z-index: -1; /* テキストの背面に配置 */
  animation: slideIn 0.5s forwards; /* 左からスライドするアニメーション */
}
.deco-moji {
  position: absolute;
  top: 55px;
  left: 180px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  padding-top: 20px;
}
.deco-moji::after {
  content: '';
  position: absolute;
  top: 0;
  left: -2%;
  padding: 0 10px;
  width: 100%; /* テキストの幅に合わせて背景を広げる */
  height: 105%; /* テキストの高さに合わせて背景を広げる */
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
  animation: slideIn 6s forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(-100%); /* 開始位置：左から画面外 */
  }
  100% {
    transform: translateX(0); /* 終了位置：左から完全に表示される */
  }
}
.top-img {
  margin: 0px auto 10px;
  z-index: 111;
  max-width: 100%;
}
.top-img img {
  position: relative;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .top-img img {
    padding-top: 0px;
    width: 90%;
  }
  .top-img {
    background: linear-gradient(90deg, #FDFCF4 0%, #FDFCF4 30%, #71BDD0 30%, #71BDD0 100%);
    padding: 50px 0 80px;
    min-height: 26vh;
    width: 100%;
  }
  .index-top-img {
    background: none;
  }
  .top-text {
    width: 70%;
    margin: 0 auto;
  }
  .top-text img {
    margin-top: 30px;
  }
  .index-top-text {
    display: block;
  }
  .index-top-text h1::after {
    opacity: 0;
  }
}
.index-top-text {
  position: absolute;
  top: 250px;
  left: 30px;
}
.index-top-img h1 {
  font-size: 1rem;
  position: absolute;
}
.top-text {
  padding: 90px 0;
  position: relative;
  justify-content: center;
}
.top-text p {
  font-size: 1rem;
}
.contact {
  width: 60%;
  margin: 0 auto;
}
.contact img {
  float: right;
  margin-left: auto;
  max-height:80px;
  max-width: 100px;
  padding: 10px;
}
@media screen and (max-width: 1100px) {
  .contact {
    width: 90%;
	  padding-top: 0px;
  }
}
.top-bird {
  position: absolute;
  right: 100px;
  top: 10%;
  animation: rotateBird 1s linear infinite alternate; /* アニメーションを適用 */
}
@keyframes rotateBird {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(10deg); /* 一定の角度だけ回転 */
  }
}
.triangle {
  position: absolute;
  right: 10%;
  top: 120%;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 40px 20px 0;
  border-color: transparent #ffbc69 transparent transparent;
  z-index: -777777;
}
@media screen and (max-width: 1100px) {
  .index-top-text {
    justify-content: center;
    position: static;
  }
  .index-top-text h1, .deco-moji {
    position: static;
  }
  .top-img {
    position: static;
    margin: 0 auto;
    width: 100%;
  }
  .top-bird {
    top: -1%;
  }
  .triangle {
    top: 120%;
  }
}
.cardTypeList-wrapper {
  position: relative; /* ラッパーを配置基準にする */
  width: 90%;
  margin: 0 auto;
}
.cardTypeList {
  margin: 0 auto; /* 中央寄せするためのマージン追加 */
  width: 90%; /* 画面幅の90%に設定 */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cardTypeList__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
}
.cardTypeList__item {
  width: calc(50% - 20px);
  margin-bottom: 20px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px; /* 背景を角丸にする */
  padding-bottom: 20px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.cardTypeList__item.visible {
  opacity: 1;
}
.cardTypeList__title {
  font-size: 1.2rem;
}
.cardTypeList__text {
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.3rem;
}
@media screen and (min-width: 1100px) {
  .cardTypeList__item {
    width: calc(25% - 20px);
  }
}
@media screen and (max-width: 700px) {
  .cardTypeList {
    flex-direction: column; /* 縦方向に並べる */
  }
  .cardTypeList__item {
    width: 100%; /* 幅を100%にする */
  }
}
/*流体シェイプ*/
.fluid01 {
  position: absolute; /* 流体を配置する */
  top: -15%;
  left: 0;
  transform: translateX(-50%); /* 水平方向に中央揃え */
  width: 40vh;
  height: 40vh;
  background: #D4F2F0;
  animation: fluidrotate 30s ease 0s infinite;
  z-index: -1; /* カードリストの後ろに配置する */
}
.fluid02 {
  position: absolute; /* 流体を配置する */
  top: 70%;
  right: -10%;
  transform: translateX(-50%); /* 水平方向に中央揃え */
  width: 20vh;
  height: 20vh;
  background: #D4F2F0;
  animation: fluidrotate 30s ease 0s infinite;
  z-index: -1; /* カードリストの後ろに配置する */
}
@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
/*流体シェイプここまで*/
.button {
  text-align: right;
  width: 95%;
}
.button a:hover{
	color: #71BDD0;
}
.button a {
  background-color: #000;
  color: #fff;
  padding: 4px 40px;
  font-size: 1.1rem;
  text-decoration: none;
}
.characteristics_back01 {
  width: 40%;
  position: relative;
  z-index: -77777;
  top: -150px;
  left: -300px;
}
.characteristics_back02 {
  width: 20%;
  position: relative;
  z-index: -77777;
  right: 20px;
}
@media screen and (max-width: 1100px) {}
.leaf-img {
  position: absolute;
  right: -20px;
}
.original-button {
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 20px;
  padding: 10px;
  width: 200px;
  height: 40px;
  font-weight: bold;
  border: 2px solid #517121;
  transition: 0.3s;
  box-shadow: 0px 6px 0px -2px rgba(80, 125, 96, 1);
  background-color: #73b18f;
}
.original-button:hover {
  box-shadow: 0 0 #fff;
  transform: translateY(1px);
}
.neighborhood {
  margin: 70px 0;
}
.neighborhood h1 {
  font-size: 1.5rem;
}
.neighborhood p {
  font-size: 1rem;
}
.neighborhood_flower {
  margin-left: auto;
}
/*周辺施設スライド*/
.img-frame {
  position: relative;
  width: 100%;
  height: 500px; /* 高さを固定の500pxに設定 */
  overflow: hidden;
  margin: 0 auto 20px;
}
.img-01, .img-02, .img-03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw; /* 画面幅いっぱいに設定 */
  height: 100%; /* 親要素に対して100%の高さを設定 */
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px){
	.img-01, .img-02, .img-03 {
 background-size: contain;
  
}
	
}
.img-01 {
  background-image: url("img/index-img/nicobuchi.jpg");
	background-position: 50%  50%;
  animation: slide-animation-01 18s infinite;
	
}
.img-02 {
  background-image: url("img/index-img/chinkabashi02.jpg");
	background-position: 50%  50%;
  animation: slide-animation-02 18s infinite;
}
.img-03 {
  background-image: url("img/index-img/river01.jpg");
	background-position: 50%  50%;
  animation: slide-animation-03 18s infinite;
}
@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1.0);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1.0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1.0);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
/*周辺施設スライド*/
.neighborhood_flower {
  display: block;
  text-align: right;
  margin-right: 20px;
}
.access {
  margin-top: 80px;
  background-image: url("img/index-img/access_back.png");
  background-repeat: no-repeat;
  background-position: right top;
  padding: 20px;
  border-radius: 10px; /* 必要に応じて角を丸くする */
  background-size: 40%;
  overflow: hidden; /* 内容がはみ出さないようにする */
}
iframe {
  padding-top: 70px;
  width: 70%;
}
@media screen and (max-width: 1100px) {
  iframe {
    width: 100%;
  }
}
.access p {
  font-size: 1rem;
  text-align: left;
  line-height: 1.5rem;
  padding-left: 15%;
  margin-top: 10px;
}
.access p span {
  padding-left: 5px;
  font-size: 0.7rem;
}
.access img {
  display: block; /* 画像をブロックレベル要素に配置 */
  margin: 0px 10px 0px 30px;
}
@media screen and (max-width: 1100px) {
  .access p {
    padding-left: 0;
  }
}
.access-bird {
  display: block;
  text-align: left;
  margin-left: 150px;
  animation: rotateBird 1s linear infinite alternate;
}