@charset "Shift_JIS";

/*for browser*/
.font-size-S {
    font-size: 18px;
}
.font-size-M {
    font-size: 23px;
}
.font-size-L {
    font-size: 28px;
}

img.photos {
    width: 280px;
    height: auto;
}

/*for small browser*/
@media screen and (max-width: 1024px) {
    .font-size-S {
        font-size: 15px;
    }
    .font-size-M {
        font-size: 20px;
    }
    .font-size-L {
        font-size: 25px;
    }

    img.photos {
        width: 270px;
        height: auto;
    }
}

/*for tablet*/
@media screen and (max-width: 767px) {
    .font-size-S {
        font-size: 13px;
    }
    .font-size-M {
        font-size: 18px;
    }
    .font-size-L {
        font-size: 23px;
    }

    img.photos {
        width: 220px;
        height: auto;
    }
}

/*for mobile-big*/
@media screen and (max-width: 568px) {
    .font-size-S {
        font-size: 10px;
    }
    .font-size-M {
        font-size: 15px;
    }
    .font-size-L {
        font-size: 20px;
    }

    img.photos {
        width: 140px;
        height: auto;
    }
}

/*for mobile-small*/
@media screen and (max-width: 440px) {
    .font-size-S {
        font-size: 10px;
    }
    .font-size-M {
        font-size: 15px;
    }
    .font-size-L {
        font-size: 20px;
    }

    img.photos {
        width: 110px;
        height: auto;
    }
}


td.buttons {
    border: 2px solid #000;
    width: 25%;
    color: white;
    background-color: #eb7a00;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

td.buttons:hover {
    color: #fff;
    background: #00d890;
    transition: background 0.5s ease;
}