@charset "utf-8";

.linkBtn {
    margin: 5rem auto 0 auto;
}

.linkBtn a {
    border-radius: 100vh;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1em auto 0 auto;
    max-width: 80%;
    padding: 1em 3em 1em 2em;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}
.linkBtn a:after {
    content: '';
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 2em;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.linkBtn a:hover:after {
    border-color: #FFF;
}

/* 青ボタン */
.linkBtn .blue a {
    background: #149bde;
    color: #fff;
}
.linkBtn .blue a:hover {
    background: #fabf03;
    color: #313131;
}
.linkBtn .blue a:after {
    border-top: thick solid #fff;
    border-right: thick solid #fff;
}
.linkBtn .blue a:hover:after {
    border-color: #FFF;
}

/* 白ボタン */
.linkBtn .white a {
    background: #fff;
    color: #313131;
	border: 2px solid #149bde;
}
.linkBtn .white a:hover {
    background: #149bde;
    color: #fff;
}
.linkBtn .white a:after {
    border-top: thick solid #149bde;
    border-right: thick solid #149bde;
}
.linkBtn .white a:hover:after {
    border-color: #FFF;
}

/* ロケーション */
.location {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem auto auto auto;
}
.location .Item {
    max-width: 300px;
    margin-bottom: 3rem;
}
.Item img {
    margin-bottom: .5rem;
}

/* 取材実績 */
.gray {
    background-color: #eff2f5;
    margin-top: 5rem;
    padding: 2rem;
    font-size: .9rem;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}
.gray h2 , .gray h3{
    font-weight: bold;
}
.gray p{
    margin-top: 1rem;
}
.exList {
    margin-top: 2rem;
}
.exList ul{
    margin-top: 1rem;
    margin-left: 20px;
    list-style: disc;
}
.exList ul li{
    margin-bottom: .5rem;
}

@media screen and (max-width: 767px) {

.location {
    display: block;
}
.location .Item {
    max-width: 100%;
}
.linkBtn a {
    max-width: 100%;
}

}
