@charset "UTF-8";
/* CSS Document */

sup {
    font-size: 75%;
}
.c-numnote {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    padding-left: 3em;
    text-indent: -3em;
}
.app-grid h3{
	font-size: 26px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
    margin-bottom: -10px;
}
.app-grid h3 img{
	width: 30px;
	margin-right: 10px;
}
.app-grid p{
    font-size: 16px;
    text-align: center;
    margin-bottom: -20px;
}
.blue-text{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #007fff;
    margin-bottom: 15px;
}
.btn-blue{
    display: flex;
    max-width: 200px;
    border-radius: 40px;
    background-color: #007fff;
    color: #FFF;
    border:2px solid #007fff;    
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease-out;
    margin: auto;
    position: relative;
}
.btn-blue:hover{
    background-color: #FFF;
    color: #007fff;
    border:2px solid #007fff;
}
.btn-blue::after{
    content: '';
    border: 0;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg); 
}
.btn-blue:hover::after{
    border-top: solid 3px #007fff;
    border-right: solid 3px #007fff;    
}
.btn-blue-long{
    max-width: 500px;
}

/*ダウンロードまでの流れ*/
.card{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0 20px 0;
    text-align: center;
}
.card-item{
    display: flex;
    flex-direction: column;
    background-color: #e5f2ff;
    padding: 20px;
    box-sizing: border-box;
}
.card-item h3{
    color: #007fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: -20px;
}
.card-item h4{
    line-height: 1.4;
    height: calc(1.4em * 3);
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
}
.card-item p{
    margin-top: 20px;
    flex-grow: 1;
    overflow-wrap: break-word;
    text-align: left;
}
.card-item .btn-blue{
    display: inline-block;
    max-width: 212px;
    width: 100%;
    height: 40px;
    font-size: 10px;
    padding:11px 0 10px 0 ;
}
.card-item .btn-blue::after{
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    width: 7px;
    height: 7px;
    right: 15px;
}
.card-item .btn-blue:hover::after{
    border-top: solid 2px #007fff;
    border-right: solid 2px #007fff;
}
#section05 .btn-blue{
    max-width: 500px;
}
@media screen and (max-width: 1100px) {
  .card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .card {
    grid-template-columns: 1fr;
  }
}

/*よくあるご質問*/
.iconText{ 
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 25px;
}
.iconText-item{
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 calc(50% -40px);
    min-width: 250px;
}
.iconText img {
    width: 40px;
    height: 40px;
    display: block;
}
.img-left {
    display: flex;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.img-left img{
    width: 100%;
    max-width: 400px;
    height: auto;
}
@media (max-width: 600px) {
  .iconText{
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

/*動作環境*/
.btn-blue-left{
    max-width: 300px;
    margin:10px 0 20px 40px;
}