@charset "UTF-8";
.inner{
    max-width: 750px;
    margin: 0 auto;
}
.main-block{
    margin: 30px auto;
}

.title-block{
    text-align: center;
    font-weight: bold;
}
.title-block .discription-text{
    font-size:14px;
}
.title-block .category-text{
    margin-bottom:1.0em;
}
.title-block h1{
    color:#087068;
    font-size:28px;
    margin:10px 0;
    padding-bottom:10px;
    border-bottom:1px solid;
}
.ex-item{
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom:10px;
    box-shadow: 0 3px 3px #aaaaaa;
    padding:15px;
}
.categorys a{
    display: inline-block;
    text-decoration: none;
    color:#087068;
    border:1px solid #087068;
    border-radius: 20px;
    padding:5px 10px;
    font-size:12px;
    margin: 3px 5px 3px 0;
}
.ex-imgs{
    display:grid;
    grid-template-columns: 1fr 20px 1fr;
    margin: 10px 0;
}
.ex-img p{
    background-color: #087068;
    font-weight: bold;
    font-size:14px;
    text-align: center;
    color:#ffffff;
}
.ex-img .img{
    width: 100%;
    height: calc(100vw / 3.75);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.ex-arrow{
    position: relative;
}
.ex-arrow::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%,-50%);
    border: 5px solid transparent;
    border-left: 8px solid #087068;
}
.info-grid{
    display: grid;
    grid-template-columns: 80px 1fr;
    font-size:12px;
}
.info-grid div{
    padding:5px 0;
}
.info-grid .gray{
    background-color:#efefef;
}
.info-grid .label{
    font-weight: bold;
    color:#087068;
    padding-left:5px;
}
.info-grid .text a{
    margin-right:10px;
}

/*iphoneMini以上*/
@media screen and (min-width:751px){
    .ex-img .img{
        height: calc(100vw / 7.5);
    }
}