@charset "utf-8";
/* CSS Document */
/*font-family: 'Arvo', serif;*/

.itemSection{
    display: flex;
    width: 80%;
    margin: 0 auto 80px;
}

.itemSection__img{
    width: 50%;
}

.img__main{
    margin-bottom: 8px;
}

.img__main img{
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
}

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

.img__thumbnail li img{
    box-sizing: border-box;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 24px;
    padding: 5px;
}

.itemSection__desc{
    font-size: 1.5em;
    width: 50%;
    padding-left: 30px;
    text-align: left;
    line-height: 1.8em;
}

.descList{
    margin: 16px 0;
}

.descPrice{
    font-size: 1.6em;
    font-weight: bold;
}

.onCart{
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
    margin-top: 24px;
}

.onCart__quantity{
    width: 20%;
}

.onCart__tentacles{
    width: 10%;
    margin-right: 10px;
    padding: 5px;
}

.onCart__btn{
    width: 50%;
    padding: 5px;
}

.itemMore{
    text-align: center;
    margin: 0 auto 80px;
}

.itemMore p{
    font-size: 2em;
    margin-bottom: 40px;
}

.itemMore__link{
    display: flex;
    justify-content: space-around;
}

.itemMore__link::after{
    content: "";
    width: 30%;
}

/* 940px以下になったら */
@media screen and (max-width: 939px) {
    .img__main{display: flex;justify-content: center;}
    .img__main img{width: 280px;height: 280px;}
    .img__thumbnail{flex-wrap: wrap;justify-content: center;}
    .img__thumbnail li img{width: 100px;height: 100px;}
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .itemSection{flex-direction: column;}
    .itemSection__img{width: 100%;}
    .itemMore p{font-size: 1.5em;}
    .itemSection__desc{width: 100%;padding-left: 0;}
    .itemMore__link{flex-direction: column;justify-content: center;}
    .itemMore__link--img{width: 80%;}
}
