@charset "utf-8";


.choose-heading{
  border-bottom: 1px solid #CBCBCB;
}
@media print, screen and (min-width:781px) {
  .choose-heading{
    display: flex;
    margin-top: 135px;
    padding-bottom: 25px;
    width: 100%;
  }
  .choose-heading > .ttl{
    width: 178px;
  }
}
@media screen and (max-width: 780px) {
  .choose-heading{
    display: flex;
    margin-top:50px;
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 25px;
  }
  .choose-heading > .ttl{
    width: 118px;
  }
}




@media print, screen and (min-width:781px) {
  .choose-article{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .choose-article-contents{
    width: 65.789%;
  }
  
  .choose-article-side{
    width: 28.07%;
  }
}
@media screen and (max-width: 780px) {
  .choose-article-contents{
    padding: 30px 5% 0;
  }
  .choose-article-side{
    padding: 0 5%;
    margin-top: 100px;
  }
}



.choose-article-heading{
  display: flex;
  flex-direction: column;
}
.choose-article-heading h1{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1.36;
}
.choose-article-contents .image{
  border-radius: 10px;
  overflow: hidden;
}
.choose-article-contents .comment .detail{
  background-color: #F2ECBF;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
.choose-article-contents .comment .detail:after{
  content: "";
  display: block;
  position: absolute;
}
.choose-article-contents .comment.dialog .detail:after{
  display: none;
}
.choose-article-contents .comment .image{
  border-radius: 0;
  overflow: auto;
}
.choose-article-contents a{
  color: #005CA2;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine){
  .choose-article-contents a:hover{
    text-decoration: none;
  }
}
.choose-article-contents section h2{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.61;
  display: flex;
  align-items: center;
}
.choose-article-contents section:last-child{
  padding-bottom: 0;
  margin-bottom: 0;
}
.choose-article-contents section > *:last-child{
  margin-bottom: 0 !important;
}

.choose-article-contents hr{
  background-size: 8px 3px;
  background-image: linear-gradient(to right, #CBCBCB, #CBCBCB 3px, transparent 3px, transparent 8px);
  background-repeat: repeat-x;
  border: none;
  height: 3px;
}
@media print, screen and (min-width:781px) {
  .choose-article-heading{
    margin-top: 25px;
  }
  .choose-article-heading h1{
    font-size: 3.0rem;
  }
  .image.main{
    margin-top: 30px;
  }
  .choose-article-contents .comment{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
  }
  .choose-article-contents .comment .detail{
    padding: 30px;
    width: 72%;
  }
  .choose-article-contents .comment .detail:after{
    background-image: url("../img/arrow_pc.svg");
    height: 20px;
    width: 18px;
    right: 0;
    top: 50%;
    transform: translate(100%,-50%);
  }
  .choose-article-contents .comment .image{
    width: 22.66%;
  }
  .choose-article-contents section{
    margin-top: 80px;
    padding-bottom: 100px;
  }
  .choose-article-contents section h2{
    font-size: 2.6rem;
    padding-left: 30px;
  }
  .choose-article-contents section p{
    margin-top: 40px;
  }
  .choose-article-contents section h2 + *{
    margin-top: 30px !important;
  }
  .choose-article-contents section .image{
    margin-top: 60px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 780px) {
  .choose-article-heading h1{
    font-size: 2.2rem;
  }
  .image.main{
    margin-top: 30px;
  }
  .choose-article-contents .comment{
    margin-top: 40px;
  }
  .choose-article-contents .comment .detail{
    padding: 30px 5%;
  }
  .choose-article-contents .comment .detail:after{
    background-image: url("../img/arrow_sp.svg");
    height: 18px;
    width: 20px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,100%);
  }
  .choose-article-contents .comment .image{
    margin: 40px auto 0;
    width: 48.571%;
  }
  .choose-article-contents section{
    margin-top: 50px;
    padding-bottom: 60px;
  }
  .choose-article-contents section h2{
    font-size: 2.0rem;
    padding-left: 30px;
  }
  .choose-article-contents section p{
    margin-top: 40px;
  }
  .choose-article-contents section h2 + *{
    margin-top: 20px !important;
  }
  .choose-article-contents section .image{
    margin-top: 40px;
    margin-bottom: 30px;
  }
}



.choose-article-heading:before{
  align-self: flex-start;
  border-radius: 20px;
  color: #FFF;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1;
  padding: 10px 20px;
  margin-bottom: 20px;
}
article[data-category="all"] .choose-article-heading:before{
  background-color: var(--cate-color-all);
  content: var(--cate-text-all);
}
article[data-category="tech"] .choose-article-heading:before{
  background-color: var(--cate-color-tech);
  content: var(--cate-text-tech);
}
article[data-category="office"] .choose-article-heading:before{
  background-color: var(--cate-color-office);
  content: var(--cate-text-office);
}
article[data-category="techcol"] .choose-article-heading:before{
  background-color: var(--cate-color-techcol);
  content: var(--cate-text-techcol);
}
article[data-category="highschool"] .choose-article-heading:before{
  background-color: var(--cate-color-highschool);
  content: var(--cate-text-highschool);
}


.choose-article-contents section h2{
  position: relative;
  z-index: 0;
}
.choose-article-contents section h2:before{
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: .1;
}
article[data-category="all"] .choose-article-contents section h2:before{
  background-color: var(--cate-color-all);
}
article[data-category="tech"] .choose-article-contents section h2:before{
  background-color: var(--cate-color-tech);
}
article[data-category="office"] .choose-article-contents section h2:before{
  background-color: var(--cate-color-office);
}
article[data-category="techcol"] .choose-article-contents section h2:before{
  background-color: var(--cate-color-techcol);
}
article[data-category="highschool"] .choose-article-contents section h2:before{
  background-color: var(--cate-color-highschool);
}


.choose-article-contents section dl > div > dt{
  display: flex;
  align-items: flex-start;
  font-weight: 600;
}
.choose-article-contents section dl > div > dt:before{
  content: "";
  display: block;
  margin-right: 10px;
  margin-top: 15px;
  height: 2px;
  width: 20px;
}
article[data-category="all"] .choose-article-contents section dl > div > dt:before{
  background-color: var(--cate-color-all);
}
article[data-category="tech"] .choose-article-contents section dl > div > dt:before{
  background-color: var(--cate-color-tech);
}
article[data-category="office"] .choose-article-contents section dl > div > dt:before{
  background-color: var(--cate-color-office);
}
article[data-category="techcol"] .choose-article-contents section dl > div > dt:before{
  background-color: var(--cate-color-techcol);
}
article[data-category="highschool"] .choose-article-contents section dl > div > dt:before{
  background-color: var(--cate-color-highschool);
}

.choose-article-contents .heard-box{
  color: #FFF;
  padding: 55px 30px 60px !important;
  position: relative;
}
.choose-article-contents .heard-box > .sub{
  border-radius: 30px;
  border-style: solid;
  border-width: 2px;
  background-color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin: 0;
  padding: 10px 30px;
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
}
article[data-category="all"] .choose-article-contents .heard-box{
  background-color: var(--cate-color-all);
}
article[data-category="all"] .choose-article-contents .heard-box > .sub{
  border-color: var(--cate-color-all);
  color: var(--cate-color-all);
}
article[data-category="tech"] .choose-article-contents .heard-box{
  background-color: var(--cate-color-tech);
}
article[data-category="tech"] .choose-article-contents .heard-box > .sub{
  border-color: var(--cate-color-tech);
  color: var(--cate-color-tech);
}
article[data-category="office"] .choose-article-contents .heard-box{
  background-color: var(--cate-color-office);
}
article[data-category="office"] .choose-article-contents .heard-box > .sub{
  border-color: var(--cate-color-office);
  color: var(--cate-color-office);
}
article[data-category="techcol"] .choose-article-contents .heard-box{
  background-color: var(--cate-color-techcol);
}
article[data-category="techcol"] .choose-article-contents .heard-box > .sub{
  border-color: var(--cate-color-techcol);
  color: var(--cate-color-techcol);
}
article[data-category="highschool"] .choose-article-contents .heard-box{
  background-color: var(--cate-color-highschool);
}
article[data-category="highschool"] .choose-article-contents .heard-box > .sub{
  border-color: var(--cate-color-highschool);
  color: var(--cate-color-highschool);
}
.heard-box h3{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
.heard-list > div .image{
  border-radius: 0;
  margin: 0;
}
.heard-list > div .image figcaption{
  line-height: 1.66;
}
.heard-list > div .detail{
  background-color: #FFF;
  border-radius: 10px;
  color: #000000;
  position: relative;
}
.heard-list > div .detail:before{
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
}
.heard-list > div .detail > *:first-child{
  margin-top: 0;
}
@media print, screen and (min-width:781px) {
  .choose-article-contents section h2{
    min-height: 90px;
  }
  .choose-article-contents section h2:before{
    height: 90px;
    width: 90px;
  }
  .choose-article-contents section dl > div{
    margin-top: 40px;
  }
  .choose-article-contents section dl > div > dt{
    font-size: 1.8rem;
  }
  .choose-article-contents section dl > div > dd{
    font-size: 1.7rem;
    margin-top: 20px;
  }
  
  
  .choose-article-contents .heard-box{
    border-radius: 10px;
  }
  .heard-box > .sub{
    font-size: 1.9rem;
  }
  .heard-box h3{
    font-size: 2.4rem;
  }
  .heard-list > div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
  }
  .heard-list > div .image{
    width: 80px;
  }
  .heard-list > div .image figcaption{
    text-align: center;
    margin-top: 10px;
  }
  .heard-list > div .detail{
    padding: 30px;
    width: calc(100% - 110px);
  }
  .heard-list > div .detail:before{
    background-image: url("../img/balloon_pc.svg");
    height: 20px;
    width: 18px;
    left: 0;
    top: 30px;
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 780px) {
  .choose-article-contents section h2{
    min-height: 70px;
  }
  .choose-article-contents section h2:before{
    height: 70px;
    width: 70px;
  }
  
  
  .choose-article-contents section dl > div{
    margin-top: 30px;
  }
  .choose-article-contents section dl > div > dt{
    font-size: 1.6rem;
  }
  .choose-article-contents section dl > div > dd{
    font-size: 1.5rem;
    margin-top: 15px;
  }
  
  
  .choose-article-contents .heard-box{
    margin-left: -5%;
    margin-right: -5%;
    padding: 55px 5% 40px !important;
  }
  .choose-article-contents .heard-box > .sub{
    font-size: 1.7rem;
    padding: 5px 20px;
    white-space: nowrap;
    top: -25px;
  }
  .heard-box h3{
    font-size: 1.8rem;
  }
  .heard-list > div{
    margin-top: 20px;
  }
  .heard-list > div .image{
    display: flex;
    align-items: center;
  }
  .heard-list > div .image img{
    width: 60px;
  }
  .heard-list > div .image figcaption{
    margin-left: 10px;
  }.heard-list > div .image figcaption br{
    display: none;
  }
  .heard-list > div .detail{
    border-radius: 5px;
    margin-top: 25px;
    padding: 30px;
  }
  .heard-list > div .detail:before{
    background-image: url("../img/balloon_sp.svg");
    background-size: auto 100%;
    height: 14px;
    width: 15px;
    left: 23px;
    top: 0;
    transform: translateY(-98%);
  }
}




#choose-article-navi{
  position: relative;
}
#choose-article-navi .article-item{
  border-bottom: 1px solid #CBCBCB;
  padding-bottom: 15px;
  padding-top: 15px;
  position: relative;
}
#choose-article-navi .article-item:after{
  background-color: #005CA2;
  content: "";
  display: block;
  height: 1px;
  width: 31.25%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
}
#choose-article-navi .article-item a{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#choose-article-navi .article-item .image{
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  overflow: hidden;
  width: 31.25%;
}
#choose-article-navi .article-item .image img{
  transition: .6s;
}
@media (hover: hover) and (pointer: fine){
  #choose-article-navi .article-item a:hover .image img{
    transform: scale(1.05);
  }
}
#choose-article-navi .article-item .detail{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.71;
  display: flex;
  flex-direction: column;
  width: 62.5%;
}


#choose-article-navi .article-item .detail:before{
  align-self: flex-start;
  border-radius: 20px;
  color: #FFF;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.0rem;
  line-height: 1;
  padding: 6px 10px;
  margin-bottom: 8px;
}
#choose-article-navi .article-item[data-category="all"] .detail:before{
  background-color: var(--cate-color-all);
  content: var(--cate-text-all);
}
#choose-article-navi .article-item[data-category="tech"] .detail:before{
  background-color: var(--cate-color-tech);
  content: var(--cate-text-tech);
}
#choose-article-navi .article-item[data-category="office"] .detail:before{
  background-color: var(--cate-color-office);
  content: var(--cate-text-office);
}
#choose-article-navi .article-item[data-category="techcol"] .detail:before{
  background-color: var(--cate-color-techcol);
  content: var(--cate-text-techcol);
}
#choose-article-navi .article-item[data-category="highschool"] .detail:before{
  background-color: var(--cate-color-highschool);
  content: var(--cate-text-highschool);
}
@media print, screen and (min-width:781px) {
  #choose-article-navi{
    margin-top: 45px;
  }
  #choose-article-navi .article-item .detail{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 780px) {
  #choose-article-navi{
    border-top: 1px solid #CBCBCB;
  }
  #choose-article-navi:before{
    background-color: #005CA2;
    content: "";
    display: block;
    height: 1px;
    width: 31.25%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
  }
}