/* CSS Document */
div.basic_info_top{
  padding: var(--headerHeight) 0;
  background-color: #fff;
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.basic_info_top{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] div.basic_info_top{
  padding: var(--headerHeight) 7.5vw;
}
body[wc-view-type="tb-l"] div.basic_info_top{
  padding: var(--headerHeight) 10vw;
}
div.basic_info_top > p{
  line-height: 1.8rem;
}
body:not([wc-view-type="sp"]) div.basic_info_top > p{
  text-align: center;
}
div.basic_info_top > p span{
  color: #fc5959;
  font-weight: 700;
  font-size: 1.2rem;
}
/*基本情報*/
section.basic_info_wrap{
  padding: var(--headerHeight) 0;
  box-sizing: border-box;
}
body[wc-view-type="sp"] section.basic_info_wrap{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] section.basic_info_wrap{
  padding: var(--headerHeight) 7.5vw;
}
body[wc-view-type="tb-l"] section.basic_info_wrap{
  padding: var(--headerHeight) 10vw;
}
section.basic_info_wrap > h1{
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 0.5rem;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
section.basic_info_wrap > h1.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
body[wc-view-type="sp"] section.basic_info_wrap > h1{
  margin-bottom: 1.8rem;
}
body[wc-view-type="tb"] section.basic_info_wrap > h1{
  margin-bottom: 2rem;
}
body[wc-view-type="tb-l"] section.basic_info_wrap > h1{
  margin-bottom: 2.25rem;
}
body[wc-view-type="pc"] section.basic_info_wrap > h1{
  margin-bottom: 2.25rem;
}
section.basic_info_wrap > h1::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2px;
  bottom: 0;
  background-color: #00a79e;
}
section.basic_info_wrap div.b_info_block{
}
body[wc-view-type="pc"] section.basic_info_wrap div.b_info_block{
  width: 800px;
  margin: 0 auto;
}
section.basic_info_wrap div.b_info_block > dl{
  display: flex;
  border-top: 1px solid #bbb;
  margin-bottom: 1rem;
  background-color: #efefef;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
section.basic_info_wrap div.b_info_block > dl.wcvisible{
  transform: translateY(0);
  opacity: 1;
}
section.basic_info_wrap div.b_info_block > dl:last-of-type{
  margin-bottom: 0;
}
body[wc-view-type="sp"] section.basic_info_wrap div.b_info_block > dl{
  flex-direction: column;
}
body[wc-view-type="pc"] section.basic_info_wrap div.b_info_block > dl{
  margin-bottom: 1rem;
}
body:not([wc-view-type="sp"]) section.basic_info_wrap div.b_info_block > dl{
  align-items: center;
}
section.basic_info_wrap > dl dt{
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  font-weight: 700;
}
body[wc-view-type="sp"] section.basic_info_wrap div.b_info_block > dl dt{
  width: 100%;
  border-bottom: 1px dashed #bbb;
  padding: 0.85rem 1rem;
  font-weight: 700;
  box-sizing: border-box;
}
body:not([wc-view-type="sp"]) section.basic_info_wrap div.b_info_block > dl dt{
  width: 220px;
  padding: 0 1rem;
  box-sizing: border-box;
}
section.basic_info_wrap div.b_info_block > dl dd{
  background-color: #fff;
  box-sizing:border-box;
  padding: 0.85rem 1rem;
}
body[wc-view-type="sp"] section.basic_info_wrap div.b_info_block > dl dd{
  width: 100%;
  padding: 0.85rem 1rem;
}
body:not([wc-view-type="sp"]) section.basic_info_wrap div.b_info_block > dl dd{
  width: calc(100% - 220px);
}
section.basic_info_wrap div.b_info_block > dl dd ul{
  padding-left: 1rem;
  box-sizing: border-box;
  list-style-position: outside;
}
section.basic_info_wrap div.b_info_block > dl dd ul li{
  margin-bottom: 0.5rem;
}
section.basic_info_wrap div.b_info_block > dl dd ul li:last-of-type{
  margin-bottom: 0;
}
section.basic_info_wrap div.b_info_block > dl dd .btn{
  margin-top: 1rem;
}