/* 他チャートへのリンクボタン */
.navigate-link-list {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 40px 0 0;
}

.navigate-link-btn {
  border-radius: 10px;
}
.navigate-link-btn a {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
  padding: 14px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.navigate-link-btn a p {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navigate-link-btn a span {
  font-weight: normal;
  font-size: 12px;
}
.navigate-link-btn a::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg transform='translate(0 0)'%3E%3Ccircle cx='8' cy='8' r='8' transform='translate(0 0)' fill='%23fff'/%3E%3Crect width='0.672' height='5.375' transform='translate(9.781 7.644) rotate(45)' fill='%23009eb7'/%3E%3Crect width='0.672' height='5.375' transform='translate(10.019 7.881) rotate(135)' fill='%23009eb7'/%3E%3C/g%3E%3C/svg%3E%0A");
}
/* hover */
.navigate-link-btn a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .navigate-link-list {
    flex-direction: column;
    gap: 16px;
  }
  .navigate-link-btn a {
    justify-content: center;
    padding: 10px 4px;
  }
  .navigate-link-btn a::before {
    position: absolute;
    left: 10px;
  }
  .navigate-link-btn.right a::before {
    left: auto;
    right: 10px;
  }
}

.navigate-link-btn.left a {
  flex-direction: row;
}
.navigate-link-btn.left a::before {
  transform: rotate(180deg);
}

.navigate-link-btn.navigate01 {
  background: #009EB7;
}

.navigate-link-btn.navigate02 {
  background: #34AFE2;
}
.navigate-link-btn.navigate02 a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg transform='translate(0 0)'%3E%3Ccircle cx='8' cy='8' r='8' transform='translate(0 0)' fill='%23fff'/%3E%3Crect width='0.672' height='5.375' transform='translate(9.781 7.644) rotate(45)' fill='%2334afe2'/%3E%3Crect width='0.672' height='5.375' transform='translate(10.019 7.881) rotate(135)' fill='%2334afe2'/%3E%3C/g%3E%3C/svg%3E");
}

.navigate-link-btn.navigate03 {
  background: #826FB0;
}
.navigate-link-btn.navigate03 a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg transform='translate(0 0)'%3E%3Ccircle cx='8' cy='8' r='8' transform='translate(0 0)' fill='%23fff'/%3E%3Crect width='0.672' height='5.375' transform='translate(9.781 7.644) rotate(45)' fill='%23826fb0'/%3E%3Crect width='0.672' height='5.375' transform='translate(10.019 7.881) rotate(135)' fill='%23826fb0'/%3E%3C/g%3E%3C/svg%3E%0A");
}


/* 結果ページへのリンクボタン */
.choose_btn.result {
  padding: 0!important;
}
.choose_btn.result a {
  display: inline-block;
  width: 100%;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .choose_btn.result a {padding: 15px;}
}

/* 設問アイコン */
.navigate-icon {
  position: relative;
  width: 100%;
  max-width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-blue);
}
.navigate-icon::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
}
@media only screen and (max-width: 768px) {
  .navigate-icon {
    max-width: 30px;
    height: 30px;
  }
}

/* ひとつ前に戻るボタン */
.navigate-backto {
  display: none;
}
.navigate-backto.active {
  display: block;
}
.navigate-backto .backto-btn{
  font-size: 20px;
  font-weight: bold;
  border: 4px solid #D8D3CE;
  background-color: #fff !important;
  cursor: pointer;
  border-radius: 12px;
  line-height: 1.5;
  padding: 18px;
  margin-top: 20px;
  width: max-content;
  height: auto;
  position: static;
  margin: 0;
}
.navigate-backto .backto-btn:hover{
	border: 4px solid #0065cc;
	color: #0065cc;
}
.navigate-backto .backto-btn::before {display: none;}
@media only screen and (max-width: 768px) {
	.navigate-backto .backto-btn{
    width: 100%;
    padding: 15px;
		font-size: 16px;
    text-align: center;
	}
}



@media only screen and (min-width: 768px) {

  .card-item-top .img-1{
    margin-top: 30px;
  }

  .card-item-top .btnD-link{
    padding: 7px 36px!important;
  }
}

@media only screen and (min-width: 990px) {
	.card-item-top h1{
    font-size: 26px!important;
  }

  .card-item-top figure{
    min-height: 270px;
  }

  .card-item-top .text-discr{
    min-height: 155px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 989px) {
	.card-item-top h1{
    font-size: 2.5vw!important;
  }

  .card-item-top figure{
    min-height: 250px;
  }

  .card-item-top .text-discr{
    min-height: 200px;
  }
}

@media only screen and (max-width: 768px) {
	.card-item-top h1{
    font-size: 26px!important;
  }

  .card-item-top figure{
    text-align: center!important;
  }

  .card-item-top img{
    width: 350px;
  }

  .card-item-top .btnD{
    margin-bottom: 50px!important;
  }
}

