html{
    font-size: 62.5%;
}
body{
    font-size: 3rem;
    background-color: #e2f0d9;
    width: 80%;
    margin: 0 auto;
}

h1{
    margin: 0.5rem 2rem;
    background-color: #fff;
    border: solid 2px #498fcf;
    font-size: 5rem;
    border-radius: 1.5rem;
    box-sizing: border-box;
    text-align: center;
}

h2{
    width: 14rem;
    margin: 1.5rem;
    font-size: 4rem;
}

h3{
    margin: 0 2rem;
    font-size: 3.5rem;
    width: 40rem;
    text-align: center;
    background-color: skyblue;
}

.flex{
    display: flex;
}
.flex-warp{
    display: flex;
    flex-wrap: wrap;
}
.flex-between{
    justify-content: space-between;
}

.invisivle{
    visibility: hidden;
}

.center{
    text-align: center;
    justify-content: center;
}

.m-20{
    margin: 20px;
}

.table{
    justify-content: center;
}
table th{
    background-color: #9999ff;
}
table tr:nth-child(2n){
    background-color: #ccccff;
    font-size: 2.8rem;
}
table tr:nth-child(2n+1){
    background-color: #bbbbff;
    font-size: 2.8rem;
}

p{
    margin: 1px;
    font-size: 3rem;
}
.color-red{
    color: red;
}
.color-blue{
    color: blue;
}
.color-green{
    color: green;
}
.color-gray{
    color: gray;
}
.small-font{
    font-size: 2.3rem;
}
.link-font{
    color:#498fcf;
    font-size: 3rem;
}

.bold{
    font-weight: bold;
}

.step1-1 img{
    /* width: 16vw; */
    height: 15vw;
}

ol li{
    margin-left: 2rem;
}
.magnifying{
    margin: 0 1rem;
    display: inline-block;
}
.search-box>div>span>img{/* 虫眼鏡アイコン */
    width: 2rem;
    transform: rotate(-45deg);
}
.magnifying img{/* 虫眼鏡アイコン */
    width: 2rem;
    transform: rotate(-45deg)translate(0, 10px);
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ボタン */
button{
    background-color: #498fcf;
    border: none;
    color: #fff;
}
button:hover{
    cursor: pointer;
    scale: 0.9;
    background-color: #396b9b;
}
button:not(.start-menu button){
    width: fit-content;
    /* height: auto; */
    /* text-align: center; */
    /* border: none; */
    /* font-size: 1.5rem; */
    /* color: #fff; */
    /* background-color: #498fcf; */
    box-shadow: 3px 3px 2px 1px #396b9b;
    /* margin: 20px 0 20px 0; */
    padding: 0 10px;
}
button:hover{
    cursor: pointer;
    background-color: #396b9b;
    box-shadow: none;

}


.start-menu{
    justify-content: space-evenly;
    /* flex-wrap: wrap; */
}
.start-menu button{
    width: 35rem;
    height: 20rem;
    margin: 0.5rem;
}

.location-menu{
    /* position: fixed; */
    bottom: 1rem;
    left: 0;
    width: 100%;
    flex-direction: row-reverse;
    align-content: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}
.location-menu button{
    font-size: 3rem;
    width: 16rem;
    height: 6rem;
    margin-top: 1rem;
}

#index button{
    width: 30rem;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.start{
    text-align: center;
}
.start img{
    margin-right: 2rem;
    /* width: 14rem; */
    height: 15rem;
}

.answer{
    width: 100px;
    height: 50px;
    position: fixed;
    Right: 20px;
}

.next{
    width: 100px;
    height: 50px;
    position: fixed;
    right: 20px;
    margin-bottom: 10px;
}

.end{
    width: 100px;
    height: 50px;
    position: fixed;
    left: 20px;
    margin-bottom: 10px;
}

.border{
    width: calc(100% - 40px);
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    border: solid 2px black;
    border-radius: 15px;
    box-sizing: border-box;
}

.border p{
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ふきだし */
.commentset{
    align-items: center;
    /* margin: 4vw; */
    justify-content: center;
}
.commentset div{
    margin: 0.5vw;
}
.commentset img{
    height: 25rem;
    margin: 0.5rem;
}
.comment-right {
    position: relative;
    align-items: flex-end;
    margin: 1em 20px 0.5em 0;
    /* padding: 7px 10px; */
    min-width: 120px;
    max-width: 100%;
    /* font-size: 16px; */
    background: skyblue;
    border: solid 3px #498fcf;
    /* box-sizing: border-box; */
    border-radius: 20px;
}
  
.comment-right:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-left: 12px solid skyblue;
    z-index: 2;
}
  
.comment-right:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-left: 14px solid #498fcf;
    z-index: 1;
}
  
.comment-right p {
    margin: 20px;
    padding: 0;
}

.comment-right img {
    width: 10rem;
    height: 10rem;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.search-practice{
    justify-content: space-around;
    flex-wrap: wrap;
}
.search-type{
    justify-content: center;
    flex-wrap: wrap;
    width: 50rem
}

.search-typename{
    background-color: skyblue;
    width: 20rem;
    height: 4rem;
    margin: 1rem;
    padding: 1rem;
    text-align: center;
}
.search-box{
    width: 50rem;
}
.search-box div{
    display: flex;
    align-items: center;
    border: black solid 2px;
    height: 4rem;
    border-radius: 1rem;
    margin-bottom: auto;
    font-size: 1.8rem;
}
.search-box div:nth-of-type(1){
    width: 45rem;
}
.search-box div:nth-of-type(2):hover{
    cursor: pointer;
}

.search-result{
    width: 50rem;
    height: 30rem;
    border: 2px solid black;
    background-color: #fff;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: auto;
}
.search-result p{
    font-size: 1.2rem;
}
.step4-2 .search-result{
    width: 100%;
    height: 40rem;
    border: 2px solid black;
}
.search-result>h4{
    margin-top: 0;
    margin-bottom: 0;
    color:#056ecf;
    font-size: 2rem;
}
.search-result>p{
    margin-bottom: 1rem;
}
.inpage{
    margin-left: 2rem;
}
.search-result .image{
    padding: 4px;
    background-color: #dddddd;
    border-radius: 5%;
    height: 10rem;
    margin: 2px;
}
.image img{
    height: calc(100% - 1.6rem);
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.hint{
    width: 100%;
    justify-content: flex-end;
    height: 10rem;
}
.hint .comment-right{
    height: 10rem;
    margin: 0;
    margin-right: 1rem;
}
.hint .comment-right p{
    font-size: 2rem;
    /* margin: 0.5rem; */
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.box{
    border: 2px solid black;
    width: 100%;
}
.color-box{
    border: 2px solid black;
    border-radius: 1rem;
    margin: 1rem;
}

.input-search-box{
    text-align: center;
    justify-content: center;
    align-items: center;
}
.input-search-box input{
    width: 80rem;
    height: 8rem;
    font-size: 3rem;
    border: 12px solid lightgreen;
    border-radius: 12px 0 0 12px;
    outline: none;
}
.input-search-box button{
    background-color: lightgreen;
    border: none;
    border-radius: 0 12px 12px 0;
    margin: 0;
    height: 8rem;
    font-size: 6rem;
}
.input-search-box button{
    border: none;
    border-radius: 0 12px 12px 0;
    margin: 0;
}
.input-search-box button:hover{
    scale: 1;
}

.search-command{
    justify-content: space-between;
    flex-wrap: wrap;
}
.search-command div{
    width: 40rem;
    height: auto;
    margin: 2rem;
    text-align: center;
    background-color: #ff8888;
}

.step5-1 .color-box{
    width: 100%;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/* 20230314修正 */
.graybox{
    border: 1px solid gray;
    border-radius: 10px;
    padding: 2rem;
}
.graybox>h4{
    margin: auto;
    font-weight: 100;
    font-size: 2rem;
}