@charset "utf-8";

/* スタイルシート
作成者：Hatomi Inc.
作成日：R8.05.10
-------------------------------------------------------------------------------------*/

/*****************************

tool archive

*****************************/
.toolArchive{
}


/*****************************

head

*****************************/
.toolArchive__head{
  background: #004A8F;
}

/* PC */
@media screen and (min-width: 701px){
  .toolArchive__head{
    padding: 6rem 0;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolArchive__head{
    padding: 5rem 0;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolArchive__head{
    padding: 4rem 0;
  }
}


.toolArchive__title{
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

/* PC */
@media screen and (min-width: 701px){
  .toolArchive__title{
    font-size: 2.5rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolArchive__title{
    font-size: 2rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolArchive__title{
    font-size: 1.7rem;
  }
}


/*****************************

body

*****************************/
/* PC */
@media screen and (min-width: 701px){
  .toolArchive__body{
    padding: 3rem 0 5rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolArchive__body{
    padding: 3rem 0 5rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolArchive__body{
    padding: 3rem 0 5rem;
  }
}


.toolArchive__lead{
}

/* PC */
@media screen and (min-width: 701px){
  .toolArchive__lead{
    margin-bottom: 3rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolArchive__lead{
    margin-bottom: 2.5rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolArchive__lead{
    margin-bottom: 2rem;
  }
}


.toolArchive__lead p{
}


/*****************************

list

*****************************/
.toolArchiveList{
  display: grid;
}

/* PC */
@media screen and (min-width: 701px){
  .toolArchiveList{
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolArchiveList{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolArchiveList{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/*****************************

card

*****************************/
.toolCard{
}

.toolCard.is-clickable{
  cursor:pointer;
}

.toolCard__inner{
  display: flex;
  flex-direction: column;

  height: 100%;

  background: #FFFFFF;
  border: 3px solid #F3F0E8;
  border-radius: .7rem;
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__inner{
    padding: 2rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__inner{
    padding: 1.8rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__inner{
    padding: 1.5rem;
  }
}


/*****************************

hover

*****************************/
.toolCard__inner{
  transition:transform .25s ease,box-shadow .25s ease,
  border-color .25s ease;
}
.toolCard.is-clickable:hover .toolCard__inner{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  border-color:#D8D1C7;
}
.toolCard.is-clickable:hover .toolCard__link{
  background:#004A8F;
}
.toolCard.is-clickable:hover .toolCard__link::before{
  background:#FFF;
}
.toolCard.is-clickable:hover .toolCard__link::after{
  border-top-color:#FFF;
  border-right-color:#FFF;
}


/*****************************

logo

*****************************/
.toolCard__logo{
  text-align: center;
  border-bottom: 3px solid #ECE6DE;
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__logo{
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__logo{
    padding-bottom: 1.3rem;
    margin-bottom: 1.3rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__logo{
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}


.toolCard__logo img{
  width: auto;
  max-width: 80%;
}


/*****************************

text

*****************************/
.toolCard__text{
  flex-grow: 1;
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__text{
    /*min-height: 15rem;*/
				min-height: auto;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__text{
    min-height: auto;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__text{
    min-height: auto;
  }
}


.toolCard__text p{
  line-height: 2;
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__text p{
    font-size: 1rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__text p{
    font-size: 0.95rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__text p{
    font-size: 0.9rem;
  }
}


/*****************************

bottom

*****************************/
.toolCard__bottom{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  margin-top: auto;
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__bottom{
    padding-top: 2rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__bottom{
    padding-top: 1.8rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__bottom{
    padding-top: 1.5rem;
  }
}


/*****************************

company

*****************************/
.toolCard__company{
  position: relative;
  font-weight: 700;
  line-height: 1.5;
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__company{
    padding-left: 2rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__company{
    padding-left: 1.8rem;
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__company{
    padding-left: 1.6rem;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
}


.toolCard__company::before{
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;

  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.9 21.9"><circle fill="%234a7bb4" cx="10.9" cy="10.9" r="10.9"/><polygon fill="%23fff" points="11.2 4.2 16.3 4.9 16.3 17.1 11.2 17.6 11.2 4.2"/><path fill="%23fff" d="M10.7,17.7l-1.4-.2v-2.1h-2.7c0-.1,0,1.7,0,1.7l-1.1-.2V6s5.1-1.8,5.1-1.8v13.5ZM10,6.1l-.9.3v1.1l.9-.2v-1.2ZM8.3,6.6l-.9.2v1.1c.3,0,.6,0,.9-.2v-1ZM6.1,8.2c.2,0,.6,0,.8-.2v-1l-.8.3v1ZM10,9.5v-1.3l-.9.2v1.2h.9ZM8.3,8.6c-.3,0-.6,0-.9.2v1h.9v-1.3ZM6.8,8.9h-.8v1.2h.8v-1.2ZM10,10.4h-.9v1.3h.9v-1.3ZM8.3,10.7h-.9v1.1c.3,0,.6,0,.9,0v-1.1ZM6.8,10.9h-.8v1.1h.8v-1.1Z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__company::before{
    width: 1.3rem;
    height: 1.3rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__company::before{
    width: 1.2rem;
    height: 1.2rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__company::before{
    width: 1.1rem;
    height: 1.1rem;
  }
}


/*****************************

category

*****************************/
.toolCard__category{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}


.toolCard__category li{
  background: #F3F0E8;
  border-radius: 9999px;
  font-weight: 700;
  line-height: 1;
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__category li{
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__category li{
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__category li{
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
}


/*****************************

button

*****************************/
.toolCard__link{
  position: relative;
  display: block;

  border: 2px solid #004A8F;
  border-radius: 50%;

  transition: opacity 0.3s;
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__link{
    width: 3rem;
    height: 3rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__link{
    width: 3rem;
    height: 3rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__link{
    width: 3rem;
    height: 3rem;
  }
}


/* line */
.toolCard__link::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  background: #004A8F;

  transform: translate(-58%, -50%);
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__link::before{
    width: 1.5rem;
    height: 0.2rem;
    border-radius: 9999px;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__link::before{
    width: 1.5rem;
    height: 0.2rem;
    border-radius: 9999px;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__link::before{
    width: 1.5rem;
    height: 0.2rem;
    border-radius: 9999px;
  }
}


/* arrow */
.toolCard__link::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;

  border-top: 0.2rem solid #004A8F;
  border-right: 0.2rem solid #004A8F;

  transform: translate(-10%, -50%) rotate(45deg);
}

/* PC */
@media screen and (min-width: 701px){
  .toolCard__link::after{
    width: 0.9rem;
    height: 0.9rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .toolCard__link::after{
    width: 0.85rem;
    height: 0.85rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .toolCard__link::after{
    width: 0.8rem;
    height: 0.8rem;
  }
}


.toolCard__link:hover{
  opacity: 0.7;
}
