/* Contents
-------------------------------------------*/

/* Page Header ----------------------*/

.page_header{
  width: 100%;
}
.page_header__tit{
  padding: 10px 0 min(60px,8%);
  line-height: 1.75;
}
.page_header__tit .en{
  font-weight: 600;
  font-size: clamp(39px,6vw,78px);
}
.page_header__tit h2{
  color: var(--red);
  letter-spacing: .1em;
  font-size: clamp(16px,2.462vw,30px);
}
.page_header__nav{
  width: var(--page-width);
  margin: 0 auto;
  padding-bottom: calc(var(--sec-margin) * 1.5);
}
.page_header__nav ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_header__nav ul li{
  width: calc(100% / 4 - 10px);
}
.page_header__nav ul li a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  font-size: clamp(13px,2.0vw,16px);
  font-weight: 500;
  border: 1.5px solid;
  background: url(../img/cmn/ic-morebtn_down.svg) no-repeat 90% center / 24px;
}
.page_header__nav ul li a:hover{
  color: #fff;
  background: url(../img/cmn/ic-morebtn_down_wh.svg) no-repeat 90% center / 24px var(--font-black);
}

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

  .page_header__nav{
    padding-bottom: var(--sec-margin);
  }
  .page_header__nav ul{
    row-gap: 10px;
  }
  .page_header__nav ul li{
    width: calc(100% / 2 - 4px);
  }
  .page_header__nav ul li a{
    padding: 0 20px;
    width: 100%;
    height: 44px;
    border-radius: 22px;
  }
}

/* Page Contents ----------------------*/

.contents .sec:not(:last-child){
  padding-bottom: calc(var(--sec-margin) * 2);
}
.contents .sec:last-child{
  padding-bottom: calc(var(--sec-margin) * 1.5);
}
.contents .sec .sec_clm{
  width: var(--page-width);
  margin: 0 auto;
}
.contents .sec .sec_clm{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}
.sec .sec_clm .sec__head{
  width: 25%;
  line-height: 1.5;
}
.sec .sec_clm .sec__head .h2_tit .en{
  font-size: clamp(25px,3.84vw,42px);
  font-weight: 600;
}
.sec .sec_clm .sec__head .h2_tit h2{
  color: var(--red);
  font-weight: bold;
  font-size: clamp(13px,2.0vw,21px);
}
.sec .sec_clm .sec__content{
  width: 70%;
}
.sec__content .tbl dl{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 4% 0;
  border-bottom: 1px solid #dbd6ce;
}
.sec__content .tbl dl dt{
  width: 190px;
  font-weight: 500;
}
.sec__content .tbl dl dd{
  width: calc(100% - 210px);
}

@media screen and (max-width: 650px){
  
  .contents .sec:last-child{
    padding-bottom: calc(var(--sec-margin) / 2);
  }
  .contents .sec .sec_clm{
    row-gap: 40px;
  }
  .sec .sec_clm .sec__head,
  .sec .sec_clm .sec__content{
    width: 100%;
  }
  .sec__content .tbl{
    border-top: 1px solid #dbd6ce;
  }
  .sec__content .tbl dl{
    row-gap: 4px;
  }
  .sec__content .tbl dl dt,
  .sec__content .tbl dl dd{
    width: 100%;
  }
  
}