@charset "utf-8";

* {
	padding: 0;
	margin: 0;
}

html {
  	height: 100%;
	font-size: 20px;	
}

body {
	word-wrap: break-word;
	height: 100%;
	font-family: 
               "Noto Sans JP", sans-serif;
	background-color: #fff;
	color: #000;
}


footer{
	background-color: #fff;
	font-size: 0.6rem
}

.sp_br {
  display: none;
}


/* fadeUp */

.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);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/*　フッター　*/
.footer_p{
	font-size: 0.4rem;
}

#page_top{
  width: 50px;
  height: 50px;
  background: #0077ff;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 35px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

footer{
	border-bottom: solid #0077ff 10px;
}

.image-section {
    text-align: center;
    margin-bottom: 20px;
}

.main-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center; /* Adjust alignment if needed */
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.label {
    background: #ede3fc;
    border-left: #ede3fc solid 1px;
    border: #ede3fc solid 1px;
    font-size: 1.3em;
    padding: 4px 8px; /* Added horizontal padding */
    margin-right: 10px; /* Space between label and value */
    white-space: nowrap; /* Prevents label from breaking */
}

.value {
    font-size: 1.6em;
}

.tag {
    padding: 1px 1px; /* Adjust padding */
    margin-bottom: 2px;
    border: 1px solid #333333;
    font-size: 1em;
    white-space: nowrap; /* Prevents tag from breaking */
    margin-left: 10px; /* Space between value and tag */
}

.note {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #555;
}

.section-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ede3fc; /* Optional: adds a visual separator */
    padding-bottom: 5px;
}

.contact-info {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

