/*
Theme Name: ProPro Theme
Author: ProPro
Description: ProPro専用のカスタムWordPressテーマです。
Version: 1.0
*/


*{
    margin: 0;
    padding: 0;
}
a{
    list-style: none;
    text-decoration: none;

}

/* font */
.Corporate-Logo-ver2-Bold{

  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
}


/* header */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #005740;
    box-sizing: border-box;
  }
.title a{
    color: white;
}
  
  .nav ul {
    display: flex;
    gap: 20px;
  }
  
  .nav ul li {
    list-style: none;
}

.nav ul li a {
    text-decoration: none;
    color: white;
  }

/* 共通 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* バツマーク時の変形 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

  /* main */

main{
    max-width: 1024px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* sab_title */
.sab_title{
  margin-top: 150px;
  margin-bottom: 50px;
  color: #005740;
  text-align: center;
}

.sab_title_text{
  font-size: 48px;

}
.sab_title_line{
  display: inline-block;
  width: 124px;
  height: 3px;
  background-color: black;
}

/* btn */
.btn{
  text-align: center;
  margin-top: 200px;
  margin-bottom: 50px;
}

.btn a{
  
  list-style: none;
  text-decoration: none;
  border:0px solid black;
  border-radius: 10px;
  background-color: #005740;
  color: white;
  padding: 50px 130px;
  font-size: 27px;

}

/* footer */
footer{
    box-sizing: border-box;
    margin: 10px auto 0 auto;
    background-color: #005740;
    max-width: 1024px;
    text-align: center;
}
footer p{
    padding: 10px;
    color: white;
}
  
/* レスポンシブ用 */
@media (max-width: 768px) {
  .sab_title{
    margin-top: 50px;
    margin-bottom: 10px;
    color: #005740;
    text-align: center;
  }
  
  .sab_title_text{
    font-size: 28px;
  
  }
  .sab_title_line{
    display: inline-block;
    width: 124px;
    height: 2px;
    background-color: black;
  }
  .hamburger {
    display: flex;
  }

  .nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 87, 64, 0.95);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav ul li a {
    font-size: 20px;
    color: white;
  }

  .btn{
    text-align: center;
    display: block;
    width: 90%;
    margin: 50 auto 0 auto;
  }
  
  .btn a{
    padding: 5px 5px;
    font-size: 16px;
    width: 100%;
    
  
  }
}