/*AGworld's overall site structure*/


  @import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');
  @import url('/css/System/button.css');
  @import url('/css/all-menu.css');

:root {
  --primary-color: #0070c9;
  --primary-color-rgb: 0, 112, 201;
  --secondary-color: #28a745;
  --secondary-color-rgb: 40, 167, 69;
  --dark-color: #1d1d1f;
  --light-color: #f5f5f7;
  --background-color: #ffffff;
  --text-color: #1d1d1f;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
  --box-shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
  --box-shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/*AGworld's overall site structure*/
body{
  font-family: "M PLUS Rounded 1c", serif;
  overflow-x: hidden;
  cursor: default;
  padding-top: 70px;
  margin: 0;
  width: 100%;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary-color);
  text-decoration: none; 
  transition: var(--transition-standard);
  cursor: pointer;
}

a:visited {
  color: var(--primary-color);
}

a:hover {
  opacity: 0.8; 
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker,
details summary::-webkit-details-marker {
  display: none;
  content: none;
}
details{
  display: block;
}
iframe{
  overflow-y : hidden;
}
ul{
  padding: 0;
   margin: 0;
   list-style-type: none;
}

/*New_menu*/
.Nmenu{
  color: rgb(255, 255, 255);
  display: flex;
  list-style: none;
  column-gap: 20px;
}



/* モバイル表示時のメニュー */
@media screen and (max-width: 767px) {
}

/*ーーーーーーーーーーーーーー*/
/*AGworld-Site*/

/* Button */
/*単数のボタン*/
#normal_bn {
  background: linear-gradient(135deg, #3957a9, #3957a9cc);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(57, 87, 169, 0.3);
}

#normal_bn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(57, 87, 169, 0.5);
}
  .body_B {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 90%;
    margin: 0 auto;
  }
  .body_B li {
    border: black solid 1px;
    border-radius: 180px;
    padding: 5px;
    width: 90%;
    min-width: 160px;
    max-width: 320px;
    margin: 0 auto;
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }
  .body_B li:hover {
    border: rgba(0, 0, 0, 0.534) solid 1px;
  }
  .body_B li a {
      color: black !important;
    }


#white_bn{
  background-color: white;
  color: black;
  border: 2px solid rgb(0, 0, 0);
}
#white_bn:hover{
  background-color: black;
  color: white;
}
#gray_bn{
  border: 2px solid rgb(0, 0, 0);
  background-color: rgb(183, 183, 183);
  color: black;
}
#gray_bn:hover{
  background-color: white;
  color: white;
}
#sky_bn{
  background-color: rgb(0, 255, 255);
  color: black;
}
#sky_bn:hover{
  background-color: rgb(255, 255, 255);
}

/*--------------------------------
img backgroundー全てのサイト共通で使用
---------------------------------*/

.background-top{
  background-image:url(/img/background/city.png);
 
  background-size: cover;
  width: 102%;
  height: auto;
  padding-bottom: 30px;
  margin-left: -2%;
  margin-top: -2%;
  animation: changeBackground-top 36s infinite, infinite;
  transition: opacity 0.5s ease;
  opacity: 1;
  
}
.background-top .fade-out {
  opacity: 0;
}
/*background-image_change*/


@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
      opacity: 1;
    }
  }
@keyframes fadeInUp { 
  from { 
    opacity: 0; 
    top: 420px; /* 開始位置を設定 */ 
    transform: translate(-50%, 0); /* 開始時はX方向のみ中央に */ 
  } 
  to { 
    opacity: 1; 
    top: 400px; /* 終了位置を設定 */ 
    transform: translate(-50%, -50%); /* 最終位置も中央に */ 
  } 
}
@keyframes fadeInFromBottom {
  to {
    opacity: 1; /* アニメーション終了時に完全に表示 */
    transform: translateY(0); /* アニメーション終了時の位置 */
    transform: scale(0.7);
  }
}
@keyframes fadeInUp-txt { 
  0% { opacity: 0; transform: translateY(100%); } 
  100% { opacity: 1; transform: translateY(0); } }


  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateX(+100px); /* 右から表示 */
    }}
  @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: none;
    }
  }
  

 @keyframes slideDownFromTop {
  0% {
    top: -100vh;
    opacity: 0;
  }
  100% {
    top: 70px;
    opacity: 1;
  }
}

@keyframes slideUpToTop {
  0% {
    top: 70px;
    opacity: 1;
  }
  100% {
    top: -100vh;
    opacity: 0;
  }
}
  @keyframes fadeInOut {
    from {
      opacity: 0;
     
    }
    to {
      opacity: 1;
     
    }
  }
  @keyframes top_status{
    from {
      opacity: 0;
      transform: translateX(-100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeInFromBottom {
    to {
      opacity: 1; /* アニメーション終了時に完全に表示 */
      transform: translateY(0); /* アニメーション終了時の位置 */
      transform: scale(0.8);
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes scroll-anim {
    from {
      scale: 0 1;
    }
    to {
      scale: 1 1;
    }
  }
  @keyframes FI-2 {
    0% {
      opacity: 0;
      transform: translateY(100px); /* 下から表示 */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* 元の位置に移動 */
    }
  }
  @keyframes fadeIn_2 {
    0% {
      opacity: 1;
      transform: none; 
      
      /* translateX(+100px)：右から表示 */
      /* translateX(-100px)：左から表示 */
      /* translateY(+100px)：下から表示 */
      /* translateY(-100px)：上から表示 */
  
    }
    100% {
      opacity: 0.1;
       /* Transparent */
       transform: translateY(-100px); 
    }
  }

  @keyframes fadeInFromBottom {
    to {
      opacity: 1; /* アニメーション終了時に完全に表示 */
      transform: translateY(0); /* アニメーション終了時の位置 */
      transform: scale(0.7);
      
    }
  }
  @keyframes SP_FFB {
   to {
   opacity: 1;
   transform: translateY(5);
 } 
 }

 @keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}



@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
p2{
 text-align: center
}

/*ーーーーーーーーーーーーーーーーー*/

.info-service{
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
background-color: #9be15d;
border-radius: 20px;
  text-align: center;
}
.info-service_t{
  font-size: 25px;
  padding: 10px 0px 10px 10px;
}
.info-status{
  padding: 2%;
  width: 100px;
  height: 100px;
}


.title{
  text-align: center;
  animation: fadeInAnime 1s forwards; 
  opacity: 0;
}
.rs_AGworld{
  background: -webkit-linear-gradient(left, #10ff7c, #61c1ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
}
.txt_rs{
  background-color: #00000060;
  margin: 0 auto;
  border-radius: 20px;
}
.rs_1_enjoy{
  font-size: 40px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6)
}
.txt_rs{
  padding: 12px;
  width: 80%;
}
.rs_1{
  font-size: 30px;
  font-weight: bold;
}
.rs_2{
  font-size: 30px;
}
.rs_2_1{
  font-weight: bold;
  font-size: 40px;
}
.rs_3{
  font-size: 35px;
  font-weight: bold;
  background: -webkit-linear-gradient(left, #000000, #ff0000);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.395);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rs_4{
  font-size: 30px;
}
.rs_4_1{
  font-size: 25px;
  opacity: 0.5;
  font-weight: bold;
}
.rs_4_2{
  font-size: 40px;
}
.button_ag_partner{
  z-index: 2;
  padding: 12px;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  background-color: #10ff7c3c;
  width: 600px;
  border-radius: 180px;
  margin: 0 auto;
}
.button_ag_partner:hover{
background-color: #10ff7ca0;
}
details[open] .in-details {
  animation: fadeIn 0.5s ease;
}

.news{
  font-family: Arial, Helvetica, sans-serif;
  margin: auto 0;
  text-align: center;
  justify-content: center;
  font-weight: bold;
  font-size: 40px;
  opacity: 0.8;


 }
.news-bx{
 overflow-x: auto;
animation-fill-mode: both;
text-align: center;
 margin: auto 0;
 display: flex;
 z-index: -1;
 justify-content: center;

 opacity: 0; /* 初期状態で非表示にする */
 transition: opacity 1s ease; /* フェードインのアニメーション */
}

.NEWS{
  display: flex; overflow-x: scroll; overflow-y: hidden; /* 垂直スクロールバーを隠す */ -ms-overflow-style: none; /* IEおよびEdge用 */ scrollbar-width: none; /* Firefox用 */
.card_n{
  display: flex;
  border-radius: 20px;
  background-color: #f2f2f268;
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2),0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 8px;
  width: 700px;
  img{
    width: 300px;
    height: 300px;
    border-radius: 20px;
    margin: auto auto;
  }
  
  .card_2{
    padding: 12px;
   display: block;
   .txt{
  }
  .txt_2{
    font-size: 25px;
  }

}
}
}
.news-bx:hover{
  animation-play-state: paused;
}
es loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.card1{
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  background-color: white;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 -20px 30px -20px rgb(255, 255, 255);
}
.card{
  margin: 20px 20px;
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2),0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 250px;
  height: 320px;
  border-radius: 16px;
  position: relative;
  transition: all 0.2s;
  font-family: Arial, Helvetica, sans-serif;

  .link{
    position: absolute;
    right: 10px;
    bottom: 0px;
    width: 30px;
    height: 30px;
    background-color: #0000003b;
    border-radius: 16px;
    padding: 12px;
  }
}


.c_title{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.card_p{
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  background-color: white;
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 100%) 95%, rgb(0 0 0 / 0%) 100%);
mask-composite: intersect;
  
}


.card:hover{
  transform: translateY(-20px);
  border-radius: 16px;
box-shadow: 0 3px 10px 0 #3ef1f7;
opacity: 0.8;
cursor: pointer;
}




.arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

/*ーーーーーーーーーーーー*/
/*Site_common at New*/
/*ーーーーーーーーー*/
/*Site - TOP */
.P_title , .title{
  height: auto;
  z-index: 3;
  filter: drop-shadow(10px 10px 4px #00000052);
  width: 600px; 
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.P_title{
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.P_sub_title , .sub_title {
  background-color: #555555a1;
  color: white;
  font-weight: bold;
  padding: 12px;
  border-radius: 20px; 
  margin: auto;
  text-align: center;
  font-size: 30px;
}
.P_sub_title{
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
}
.notes2{
  font-size: 30px;
  color: white;
}
/* mobile L ~ S */
@media screen and (max-width : 439px){
  .title {
    width: 70%;
    top: 50px;
}
  .P_sub_title , .sub_title {
    width: 90%;
  }
   .Cinfo_card{
    width: 90%;
   }

   .body_B{
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    li{
      width: 90%;
    min-width: 180px;
    max-width: 320px;
    margin: 0 auto;
    white-space: normal;
    word-break: break-word;
    }
    li:hover{
      background-color: rgb(33, 33, 33);
    }
    a , a:visited{
      color: black !important;
    }
  }
  /*addon_all*/
  .addon_card {
    display: none; 
  }
  .addon_card.visible {
    display: block; 
  }
  }

@media screen and (max-width: 529px) {

  .news-bx .card {
    flex: 0 0 100%; 
  }

  /*recruit_section*/
  .rt{
    width: 98%;
    h1{
      width: 99%;
    }
  }
  .info-service{
    display: flex;
    margin: 0 auto;
    padding: 2px;
    width: 92%;
  background-color: #9be15d;
  border-radius: 20px;
    text-align: center;
  }
  .info-service_t{
    font-size: 25px;
  }
  .info-status{
    padding: 2%;
    width: 20%;
    height: 20%
  }

  .top_box_s{
    z-index: 10;
  }
  .bg-color::after {
    content: "";
    background-color: #333; /* 切り替えたい背景色を指定 */
    z-index: -1;
}

  .button_ag_partner{
    padding: 12px;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    background-color: #10ff7c3c;
    width: 90%;
    border-radius: 180px;
    margin-right: auto;
    margin-left: auto;
  }
  .button_ag_partner:hover{
  background-color: #10ff7ca0;
  }
  details[open] .in-details {
    animation: fadeIn 0.5s ease;
  }
  .card1{
    padding: 8px;
    flex-direction: column;
    gap: 4px;
    background-color: white;
    border-radius: 0 0 16px 16px;
  
  }
  .card{
    
    margin: 20px 20px;
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2),0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 250px;
    height: 320px;
    border-radius: 16px;
    position: relative;
    transition: all 0.2s;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .c_title{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
  }
  .card_p{
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    background-color: white;
  }
  
  
  .card:hover{
    transform: translateY(-20px);
    border-radius: 16px;
  box-shadow: 0 3px 10px 0 #3ef1f7;
  opacity: 0.8;
  cursor: pointer;
  }

 
  .title{
    width: 90%;
    margin: 10px auto;
    
  }
  .top_title{
    z-index: -1;
     
     opacity: 0; /* 初めは透明に設定 */
      /* 下からスライドするために位置を下に設定 */
      animation: fade-In 1s forwards; 
   }

  
   
  .How_to_enter_AGworld{
    width: 100%;
    }

  }

  /*media is tablet */
  @media (min-width: 440px) and (max-width: 1024px) {
    .title{
      width: 100%;
      margin: 10px auto;
      
    }
    .sub_title , .P_sub_title{
      width: 80%
    }
  .title{
    width: 80%;
    margin: 30px auto;
    
  }
  .top_title{
    z-index: -1;
     
     opacity: 0; /* 初めは透明に設定 */
      /* 下からスライドするために位置を下に設定 */
      animation: fade-In 1s forwards; 
   }
  .h2_box{width: 100% ;
    background-color: rgba(0, 0, 0, 0.468);
    justify-content: center;
    align-items: center;
   }
    .body_B {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      width: 60%;
      margin: 0 auto;
    }
    .body_B li {
      width: 220px;
      min-width: 160px;
      max-width: 320px;
      margin: 0 auto;
      white-space: normal;
      word-break: break-word;
    }
  }
  /*tab-mobile*/
  @media screen and (max-width : 984px) {
    body{
      margin-top: 0px;
    }
    .sub_title{
      font-size: 20px;
    }
    .body_B{
      display: flex;
      gap: 12px;
    }
  }

  /*PC or 4K*/
@media (min-width:1025px){
  .How_to_enter_AGworld{
    width: 80%;
    }
  .title{
    width: 40%;
    margin: 30px auto;
    padding: 12px;
  }
 .top_title{
    z-index: -1;
     
     opacity: 0; /* 初めは透明に設定 */
      /* 下からスライドするために位置を下に設定 */
      animation: fade-In 1s forwards; 
   }

   .sub_title , .P_sub_title {
    width: 50%;
   }


   /*recruit_section*/
  .rt{
    width: 90%;
    h1{
      width: 40%;
    }
  }

  .Cinfo_card{
    width: 60%;
  }
    .body_B {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;

      margin: 0 auto;
    }
    .body_B li {
      width: 200px;
      min-width: 160px;
      max-width: 320px;
      margin: 0 auto;
      white-space: normal;
      word-break: break-word;
    }
      .s_menu_logo{display: none;}
  }


/* 開いて実行されるアニメーションを設定*/

.typing-animation {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #000; /* カーソルのアニメーション用 */
  animation: typing 3s steps(40) infinite;
}

/* タイプ入力アニメーション */


.background_pe1{
  z-index: 1;
  
}

p2{
  z-index: 2;
  text-align: center
}

.logo{
 
  width: 10%;
  height: 100%;
  object-fit: contain;
  justify-content: center;
  margin-left: auto;
}
.status{
  width: 10%;
  height: 100%;
  object-fit: contain;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}
p500{
  text-align: center;
}





.s1{
  border-radius: 150px;
  background: lightblue;
  box-shadow: inset 0 0 10px 15px #FFF;
}
  
  p20{
    width: 100%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 30px;
  animation: slideinLeft 3s infinite;
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 100vh;
  background-image: -webkit-gradient(linear, right top, left top, from(#9be15d), to(#00e3ae));
  background-image: -webkit-linear-gradient(right, #9be15d 0%, #00e3ae 100%);
  background-image: linear-gradient(to left, #9be15d 0%, #00e3ae 100%);
  }


 
  .info_card{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  .wrap1{
    display: flex;
    animation: loop-slide 60s infinite linear 1s both;
  }
  .wrap1:hover{
    animation-play-state: paused;
  }

  



  
 
.et1{
  top: 0px;/*自分が固定したい位置(例は上から0pxの位置)*/
  left: 10px;
  position: fixed;
}



/*サイト本文に関するcss
デフォルト : 
font-family: Arial, Helvetica, sans-serif; 
PC-タブレット用css*/



h4,h5{
  
  font-family: Arial, Helvetica, sans-serif;
}




.impossible{
  text-decoration: underline;
}
.possible{
  color: rgb(37, 37, 255);
}

p3{
  text-align: center;
  background-color: #00DBDE;
background-image: linear-gradient(90deg, #00DBDE 0%, #FC00FF 100%);

}

 p3,p4,p5,p6,p7,p8,p9{
  font-family: Arial, Helvetica, sans-serif;
 }


 .How_T{
  margin-left: 2%;
  font-weight: bold;
  font-size: 20px;
  img{
    height: 1.2lh;
    background-color: white;
    border-radius: 10px;
    padding: 2px;
  }
 }

 .How_T2{
  font-size: 20px;
  margin-left: 2%;
  opacity: 0.5;
 }
 .How_c{
  margin-left: 2%;
 }
 .Server-info_1, .Server-info_2{
  font-weight: bold;
}
p11{
  font-size: 20px;
  
  top: 1px;
}
h4{
  top: 20px;
}
p4{

  top: 20px;
}

ul:after{
  content: none;
}


/* アコーディオンメニューの中身のアニメーション */
details[open] .content {
  animation: fadeIn 2.0s ease-in-out;
}


p12{font-family: Arial, Helvetica, sans-serif;
}
.How_c_if1{
 
  opacity: 0.7;
}
.How_c_if1:hover{
  opacity: 1;
  color: #0011ff;
}
.pn_center{
  text-align: center;
  background-color: #000;
}





.fade-in {
  animation: fadeIn 1s ease-out forwards;
}
.scroll-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroll-element {
  display: inline-block;
  padding: 20px;
  background-color: lightblue;
  transition: transform 1s ease-in-out;
}

.rt{
  background-image: url(/img/background/city_6.png);
  position: relative;
  border-radius: 20px;
 
  height: 500px;
  text-align: center;
  margin: auto auto;
  transition: width 0.3s;
  h1{
    position: absolute;
    left: 50%; 
    transform: translateX(-50%);
    border-radius: 20px;
    color: white;
    padding: 12px;
    background-color: #00000058;
  }
  p1{
    position: absolute;
    top: 120px;
    left: 50%; 
    transform: translateX(-50%);
    font-size: 30px;
    font-weight: bold;
  }
  .button{
    position: absolute;
    bottom: 0;
    left: 50%; 
    transform: translateX(-50%);
    padding: 12px;
    background-color: #ffffff61;
    border-radius: 180px;
    width: 250px;
    font-size: 30px;
    backdrop-filter: blur(10px); /* 背景のぼかし効果 */
    -webkit-backdrop-filter: blur(10px); /* Safari用のプレフィックス */
  }
  .button:hover{
    background-color: #01ff3c5a;
  }
  img{
    position: absolute;
    top: 220px;
    left: 50%; 
    transform: translateX(-50%);
    width: 400px;
    background-color: #0000004a;
    padding: 12px;
    border-radius: 20px;
  }
}


.fade-element { padding: 20px;  
  text-align: center; 
  transition: opacity 0.5s ease;  position: relative; 
} 
.fade-element.hidden { 
  opacity: 0; 
  visibility: hidden; 
 }
 .hide-button {
  background: none;
  border: none;
  font-size: 30px; 
  cursor: pointer;
  color: #000; 
  position: absolute;
  top: 10px;  
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.fade-in {
  animation: fadeInAnime 1s ease-out forwards;
  visibility: visible;
}



      /*スクロールイベントの監視*/
      .hidden{
        opacity: 0;
        visibility: hidden;
      }
      .S1{
        animation: fadeInAnime 1s ease-out;
      }
      .S2{
        animation: fadeInAnime 1s forwards;
        opacity: 1;
      }
      .FE_up-txt{
        animation : fadeInUp-txt 1s forwards
      }



      /*Site-info*/
      iframe {
        display: block;
        border: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
      }
      /*footer*/
      @import url(/SA/footer.css);

      /*language-switching - site-menu*/
      .ls{
        display: flex;
        align-items: center; 
        gap: 12px;
        justify-content: center;
        text-align: center;
      }
      .ls img{
        text-align: center;
        width: 50px;
      }
      .ls_t{
        align-items: center;
      }
      .ls_t a , .ls_t a:visited{
        color: black;
      }
      .ls_t a:hover{
        color: #0000ff;
      }

      .Cinfo_card{
        margin: auto;
        background-color: rgb(219, 219, 219);
        border-radius: 20px;
        padding: 12px;
        font-size: 20px;
        .Ctitle{
          font-size: 25px;
          font-weight: bold;
        }
        /*buttons*/
        .bn_2{
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            list-style: none;
            justify-content: center;
            li{
              border-radius: 20px;
              padding: 12px;
              border: 2px solid #0000007d;
            }
            li:hover{
              background-color: #0000007d;
              color: white;
            }
        }
      }
      .Ccn{
        font-weight: bold;
      }
      .Ccn2{
        font-weight: bold;
        text-decoration: underline;
      }
      .Ctb{
        width: auto; 
        border-collapse: collapse;
      }
      .notes{
        font-size: 20px;
        text-align: left;
      }

      .info_txt{
        font-size: 20px;
        padding: 12px;
        background-color: rgba(255, 255, 255, 0.568);
        border-radius: 180px;
      }


      /*Latest Code*/
      .Sfade {
        opacity: 0;
        transition: opacity 1s ease-in-out;
      }
      
      .Sfade-visible {
        opacity: 1;
      }
      .Sfade2 {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
      }
      
      .Sfade2-visible {
        opacity: 1;
        transform: translateY(0);
      }

      /*menu-tab _ mobile*/
@media screen and (max-width: 768px) {
  .Nmenu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 70px;
    right: -100%;
    z-index: 99;
    transition: right 0.3s ease;
  }



  .Nmenu a {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }

  .hamburger-menu {
    display: flex;
  }
}

/*Click-warp_TOP_BN*/
#click_warp{
  display: none;
  position: fixed;
  bottom: 70px;
  right: 0px;
  z-index: 1500;
  background-color: #00000062;
  color: #fff;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 20px 0px 0px 20px;
  font-size: 25px;
}

/* スマホ (最大幅: 767px) */
@media (max-width: 767px) {

}

/* タブレット (768px ~ 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .Nmenu {
        display: flex;
        flex-direction: row;
    }
    .sub_title{
      font-size: 30px;
    }
}

/* パソコン (1025px ~ 1920px) */
@media (min-width: 1025px) and (max-width: 1920px) {
  .s_menu_logo{display: none;}
}


.cy{
  opacity: 0.5;
}


