@charset "UTF-8";
/*  */
.fadeIn_elements{
  opacity: 0;
  transform: translateY(10px); /* 少し下から上にフェードイン */
  transition: opacity 1s ease, transform 1s ease;
}
.fadeIn_elements.active{
  opacity: 1;
  transform: translateY(0px); /* 少し下から上にフェードイン */
}
.pageWrap{
  background-image: url(../images/top/bg01.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

.navHeight{
  width:100%;
  height: 110px;
  background-color: #363838;
}
@media (max-width:1024px){
  .navHeight{
      height: 66px;
  }
}

.ttlBox{
  padding: 50px 0 30px 0;
  text-align: center;
}
.ttlBox>h2{
  font-family: "Oswald", sans-serif;
  font-size: 1.75em;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.25em 2em;
  border: 1px solid #000;
  display: inline-block;
}
@media (max-width:1024px){
  .ttlBox>h2{
      font-size: 1.5em;
  }
}
@media (max-width:768px){
  .ttlBox>h2{
      font-size: 1.4em;
  }
}
@media (max-width:500px){
  .ttlBox>h2{
      font-size: 1.3em;
  }
}

.outlineTable{
  max-width: 1320px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.outlineTable>h3{
  font-family: "Noto Sans JP", sans-serif;  
  font-size: 1.25em;
  letter-spacing: 0.25em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.outlineTable>table{
  width: 100%;
  border-collapse: collapse;
}
.outlineTable>table>tbody>tr>th{
  font-family: "Noto Sans JP", sans-serif;               
  font-size: 0.9em;
  letter-spacing: 0.1em;
  font-weight: 400;
  width: 40%;
  padding: 0.75em 1em;
  box-sizing: border-box;
  text-align: right;
  color: #d7cdba;
  background-color: #494f3f;
  border-bottom: 1px solid #d7cdba;
}
.outlineTable>table>tbody>tr:last-child>th{
  border-bottom: 1px solid #494f3f;
}
.outlineTable>table>tbody>tr>td{
  font-family: "Noto Sans JP", sans-serif;               
  font-size: 0.9em;
  width: 60%;
  padding: 0.75em 1em;
  box-sizing: border-box;
  border-bottom: 1px solid #494f3f;
  background-color: rgba(215, 205, 186, 0.5);
}
.outlineTable>.upDate{
  margin-top: 30px;
}
.outlineTable>.upDate>ul{
  display: flex;
  justify-content: space-between;
}
.outlineTable>.upDate>ul>li{
  display: flex;
  align-items: center;
}
.outlineTable>.upDate>ul>li>span:nth-child(1){
  font-family: "Noto Sans JP", sans-serif;               
  font-size: 0.8em;
  color: #d7cdba;
  background-color: #494f3f;
  padding: 0.75em 1em;
  margin-right: 1em;
  box-sizing: border-box;
}
.outlineTable>.upDate>ul>li>span:nth-child(2){
  font-family: "Noto Sans JP", sans-serif;               
  font-size: 0.8em;
}
@media (max-width:1024px){
  .outlineTable>h3{  
      font-size: 1.15em;
  }
  .outlineTable>.upDate>ul{
      flex-wrap: wrap;
  }
  .outlineTable>.upDate>ul>li{
      width: 48%;
      margin-bottom: 10px;
  }
}
@media (max-width:768px){
  .outlineTable{
      margin-bottom: 50px;
  }
  .outlineTable>table>tbody>tr>th,
  .outlineTable>table>tbody>tr>td{
      display: block;
      width: 100%;
      padding: 0.5em 1em;
  }
  .outlineTable>table>tbody>tr>th{
      text-align: center;
  }
  .outlineTable>h3{  
      font-size: 1.05em;
      margin-bottom: 10px;
  }
  .outlineTable>.upDate>ul>li{
      width: 100%;
  }
}