@charset "utf-8";

/* ------------------------------
 画像ページ内リンク（PC）
------------------------------ */
.imageLink {
    position: relative;
    padding-top: 135px;
    padding-bottom: 60px;
}
.plBox {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    width: 180px;
    border-radius: 100%;
    display: flex;
    background-color: var(--green-color);
    position: absolute;
    margin-bottom: 0;
    aspect-ratio: 1/1;
}
.plBox a {
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.plBox a::after {
    content: "";
    width: 25px;
    aspect-ratio: 1/1;
    background: url(../img/icon_arrow_c.svg) no-repeat 0 0 / cover;
}
.plBox.no01 {
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.plBox.no02 {
    top: 288px;
    left: calc(50% - 486px);
}
.plBox.no03 {
    top: 288px;
    right: calc(50% - 486px);
}
.plBox.no04 {
    bottom: 0;
    left: calc(50% - 334px);
}
.plBox.no05 {
    bottom: 0;
    right: calc(50% - 334px);
}
@media print, screen and (min-width: 768px) {
   
}
/* ------------------------------
 画像ページ内リンク（SP）
------------------------------ */
@media screen and (max-width: 767px) {
    .imageLink {
        padding: 20% 12% 12%;
    }
    .plBox a::after {
        width: 15%;
        margin-top: 2px;
    }
    .plBox {
        font-size: 1.3rem;
        line-height: 1.3;
        padding-top: 12px;
        width: 28%;
    }
    .plBox.no02 {
        top: 34%;
        left: -5%;
    }
    .plBox.no03 {
        top: 34%;
        right: -5%;
    }
    .plBox.no04 {
        bottom: 0;
        left: 10%;
    }
    .plBox.no05 {
        bottom: 0;
        right: 10%;
    }
}