/*
© 2017-2025 Naotoshi Maeda

*/
html {
  scroll-behavior: smooth;
}

body {
  background-color: #161823;
  font-family: 'Arial';
  font-size: 18px;
  color: #dcd6d9;
}

a {
  color:#dcd6d9;
}

a:hover {
  color: grey;
}

/* button design */

.button1 {
  background-color: #dcd6d9;
  width: 300px;
  height: 50px;
  color: black;
  border: 1px solid black;
  padding: 10px 30px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.button1:hover {
  background-color: grey;
}


/* button design end */

/* color of navbar is #f8f9fa */

#loading {
  width: 100%;
  height: 100%;
  transition: all 1s;
  background-color: #161823;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /* using flex to make spinner put centerize */
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 100px;
  height: 100px;
  background-color: #dcd6d9;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}


/* Loading Animation */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}

/* Improved loading screen animation */
.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Add smooth dropdown animation for mobile nav collapse */
.navbar-collapse {
  transition: height 0.3s ease-out;
}

/* Navi Bar */

.navbar .navbar-nav {
  float: none;
  margin-left: auto;
  margin-right: auto;
  }

.navbar-brand {
    width: 38%;
    text-align:center;
    margin: auto;
    font-weight: bold;
}
 
.navbar .navbar-collapse {
  font-size: large;
  font-weight: 600;
}

.bg {
  background-color: #161823;
}

.navbar-custom .navbar-brand {
  color: #dcd6d9;
}

.navbar-custom .navbar-brand:hover {
  color: grey;
}

.navbar-dark .navbar-nav .nav-link {
  color: #dcd6d9;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: grey;
}

/* hamburger design */

.navbar-dark .navbar-toggler {
  border-color: rgba(0,0,0,0);
}

/* Navi Bar end */


/* Main Sections and Navi div */

h1{
  text-align: center; 
  font-size: 30px;
  font-weight: bold;
}

p {
  font-size: 18px;
}

h2{
  text-align: center;
  font-size: 20px;
  padding-top: 0px;
}

.space {
  margin-top: 20px;
}



/* Main Sections and Navi div end */

#secheader, #secnews, #secabout, #seclinks, #secmusic, #seccontact {
  padding-top: 1%;
  padding-bottom: 1%;
  background-color: transparent;
  height: 100%;
  width: 941px;
  margin-left: auto;
  margin-right: auto;
  border-radius:13px;
 }

.newsbox {
      display: flex;
      font-size: 18px;
}

.newsdate {
   width: 25%;
}

.newscomment {
   width: 72%; 
  
}

.newsscroll {
  height: 200px;
	overflow-y: scroll;
  margin-top: 3%;
}

.photo {
  padding: 2%;
}

/*box setting*/

*, *:before, *:after {
	box-sizing: border-box;
}

.box {
  width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}

.box > div{
  background-color: transparent;
  width: 48%;
  padding: 1% 1%;
  margin: 1%;
  border-radius: 13px;
}

/*box setting end */


.form-check {
  text-align: center;
 }

.g-recaptcha {
  margin-top: 4.5%;
}

.contactform {
  padding-top: 4%;
  padding-bottom: 4%;
}

#secFooter{
  padding-top: 1%;
  padding-bottom: 1%;
  background-color: transparent;
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 15px;
}

.form-control {
  background-color: #dcd6d9;
  font-weight: 600;
}

.btn {
  background-color: #dcd6d9;
  font-weight: 600;
}

.btn-outline-dark:hover {
  background-color: grey;
  color: black;
  font-weight: 600;
}

/* main end */

/* Responsive design */

@media screen and (max-width: 940px){
  

body {
 font-size: 15px;
}

.navbar-brand {
  width: 40%;
  font-size: 20px;
  font-family: 'Arial';
  font-weight: bold;
}

#secheader, #secnews, #secabout, #seclinks, #secmusic, #seccontact {
    width: 95%;
    max-width: 500px;
  }

/*2 header pictures for Mobile*/
img.headerpc{
  display:none
}
/*the end of headersetting*/

h1 {
    font-size: 20px;
    font-family: 'Arial';
    font-weight: bold;
    
  }

p, .newsbox {
    font-size: 15px;
  }

.newsicon {
    margin-bottom: 0;
  }

.newsscroll {
    height: 160px;
    margin-top: 0;
  }
  

h2, .socialmedia{
    font-size: 17px;
    padding-top: 0;
  }

.box >div{
		width: 100%;
    margin: 1%;
	}

.contactform {
    padding-top: 0;
    padding-bottom: 0;
  }
  
.g-recaptcha {
    margin-top: 4%;
  }

}

/*Header setting for PC*/
@media only screen and (min-width:940px){

img.headermobile{
  display:none
}

}
/*The end of headersetting*/