/* stylesheet for smartphones*/
html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    height: 100%;
}

.imageclass1 {
    margin: auto;
    max-width: fit-content;
    max-height: fit-content;
}

.tableclass1 {
    margin-left: 25%;
    margin-right: 25%;
    border-color: royalblue;
    background-color: lightcyan;
    font-size: 13pt;
    border: 1px solid royalblue;
    border-spacing: 4px;
    padding: 3px;
}

.introduction-div {
    max-width: 600px;
    margin: auto;
}

.introduction-text {
    text-align: center;
    max-width: 600px;
}

.notes {
    text-align: center;
    font-size: 9pt
}

.result-block {
    margin: auto;
    text-align: center;
    max-width: 600px;
    /* margin-bottom: 100px; */
}

.review-block {
    text-align: center;
    /* max-width: 600px; */
    margin: auto;
}

.voice-button-block {
    max-width: 600px;
    text-align: center;
}

.voice-button {
    text-align: center;
    height: 50px;
    width: 250px;
    border: 1px solid royalblue;
}

.map {
    /* position: relative; */
    margin: auto;
    max-width: 600px;
    max-height: 450px;
}

.map iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
}

.review {
    text-align: left;
    max-width: 600px;
    margin: 50px auto 0;
}

.review-title {
    font-weight: bold;
    color: #ffffff;
    background-color: #000000;
}

.review-name {
    font-weight: bold;
}

.review-content {
    position: relative;
    /* 折りたたみ時高さ*/
    height: 75px;
    color: #000000;
    overflow: hidden;
    transition: height 0.3s;
}

.review-content.expanded {
    height: auto;
    overflow: visible;
}

.review-content-comment {
    font-size: 12px;
    position: relative;
    color: #000000;
    overflow: hidden;
    transition: height 0.3s;
}

.toggle-button {
    /* display: inline-block; */
    background: none;
    border: none;
    color: #4f96f6;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-size: 16px;
}

.toggle-button:hover {
    color: #c7511f;
}

.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop_arrow {
    height: 15px;
    width: 15px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}