 html, body {
    margin: 0;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
  }

/* -----------------------NEWS LIST----------------------- */
body{
.news .form-title {
    text-align: center;
    color: #ffffff;
    font-size:68px;  
    font-weight: bold;  
    margin-top: 7%;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);  
    letter-spacing: 3px; 
  }
  
  .lined-wrapper {
    margin-top: 80px;          
    display: flex;
    margin-right: 300px;    
    justify-content: center;  
    margin-right: 0;           
  }
  .lined-text {
    text-align: center;         
    width: 60%;        
  }

  .lined-text a {
    text-decoration: none;
    color: #fff;   
  }
  
  .lined-text a:hover {
    text-decoration: underline;  
    color: #f8b62d;             
  }
  
  .lined-text .text {
    font-size: 20px;
    color: #333;
    margin: 40px 0;       
    line-height:1.2;
  }
  .lined-text .line {
    height: 1px;
    background-color: #61bcc9;  
    margin: 20px 0;    
    width: 100%;       
  }
  .lined-text .date {
    font-size: 18px;
    color: #ffffff;             
    margin-right: 15px;        
  }
  .lined-text a {
  text-decoration: none;
  font-weight: 900;            
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);  
   letter-spacing: 1px;         
   padding: 4px 8px;           
  border-radius: 4px;            
  transition: all 0.3s ease;     
}

.lined-text a:hover {
  color: #ffd700;              
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
 }

@media (max-width: 768px) {
    .lined-text {
    text-align: center;         
    width: 80%;        
  }

  .lined-text a {
    text-decoration: none;
    color: #585858;   
  }
   .lined-text .date {
    font-size: 16px;
    color: #585858;             
   }

  .lined-text .text {
    font-size: 14px;
     line-height:1.2;

  }
  .lined-text a {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);    
}
  .news .form-title {
    margin-top: 100px;  
    margin-bottom: -50px;
    color: #f5b400;    
    font-size: 48px;   
    text-shadow: none;  
  }

   form {
    padding: 40px 20px;   
  }

  label {
    font-size: 16px;     
    margin-top: 12px;   
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    font-size: 14px;     
    padding: 8px;    
    margin-top: 3px;
    margin-bottom: 15px; 
  }

  button {
    padding: 14px 40px; 
    font-size: 20px;
  }

  .form-button-wrapper {
    margin-top: 20px;
  }
}

}

/* ------------NEWS----------- */
body{
.centered-box {
    border: 2px dashed #61bcc9;  
    background-color: #fff;
    width: 70%;
    height: 580px;
    margin: 40px auto;
    border-radius: 20px;
    position: relative;
    box-sizing: border-box;
    padding: 30px;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .content {
    text-align: center;
  }

  .title {
    font-size: 40px;
    font-weight: 800;
    color: #333;
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .date {
    font-size: 14px;
    color: #888;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .body-text {
    font-size: 18px;
    color: #444;
    line-height: 2;
    padding: 0 10%;
    text-align: center;
    margin-top: 70px;

  }

  .footer-links {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    font-size: 14px;
  }

  .footer-links a {
    color: #8f8f8f;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }
  html {
    scroll-behavior: smooth;
  }
  
.centered-box button {
    margin-top: 30px;
    background-color: #61bcc9;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;  
  }
  
.centered-box button:hover {
    background-color: #f8b62d;
  }
  
  .form-button-wrapper {
    text-align: center;
    margin-top: 30px;
  }

@media (max-width: 768px) {
  .centered-box {
    padding-bottom: 20px; 
    height: 550px;   
    width: 90%;       
  }
    .footer-links {
    flex-wrap: wrap;  
    justify-content: space-evenly; 
    gap: 30px;  
    padding: 10px 10px;
    font-size: 13px;
  }

  .body-text {
    margin-bottom: 40px;   
    padding: 0 5%;        
    font-size: 14px;       
  }

  .title {
    font-size: 24px;
    color:#61bcc9;
    font-weight:900;
   }

  .date {
    font-size: 14px;
    margin-top: 20px;
  }
}
}

  /*--------------------------------full-background--------------------------*/
body{
.full-background {
  position: fixed;
  left: 0;
  bottom: 0;    
  width: 100%;
  height: 100%;  
  background-image: url('https://oportable.jp/.assets/bg2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.full-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);  
}

@media screen and (max-width: 768px) {
    .full-background {
display: none;
  }
}
}