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

.groupTitle--backimg{
    display: flex;
    align-items: center;
    background-color:#ffffff;
    background-image: url("../img/section__bg.png");
    background-size: 9%;
    margin: 0 calc(50% - 50vw) 80px;
    width: 100vw;
    height: 50px;
}

.groupTitle{
    font-size: 3em;
    color: #5E3E25;
    width: 940px;
    margin: 0 auto;
}

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

.itemsWrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    margin-bottom: 50px;
}

.itemsLinkArea{
   text-align: center;
}

.itemsLinkArea__title{
    font-size: 2em;
    font-weight: bold;
}

.itemsLinkArea__img{
    margin: 10px 0 30px 0;
    width: 80%;
    transition: 1.0s;
}

.itemsLinkArea__img:hover{
    opacity: 0.5;
    transition: 1.0s;
}

.itemDescArea{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 2px #5E3E25;
    font-size: 2em;
    line-height: 1.7;
    text-align: center;
    width: 100%;
    height: 100%;
}

.itemDescArea__text--name{
    position: absolute;
    top: -18px;
    background-color: #fce9cd;
    padding: 0 10px 0;
}

.itemDescArea__text--small{
    font-size: 0.7em;
    margin-top: 20px;
}

.itemDescArea input{
    margin-bottom: 10px;
}

.groupSingle__list::after{
    content: "";
    display: block;
    width: 30%;
}

.groupSet__list{
    display: flex;
    justify-content: space-around;
    margin-bottom: 80px;
}

.groupSet__list a:hover{
    opacity: 0.5;
    transition: 1.0s;
}

.itemBanner{
    box-sizing: border-box;
    width: 100%;
    padding: 6px;
}

/* 940px以下になったら */
@media screen and (max-width: 939px) {
    .groupTitle--backimg{margin: 0 0 80px;}
    .groupTitle{width: 90%;}
    .groupSingle__list{justify-content: space-around;}
    .itemsWrapper{width: 40%;}
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
    .itemsWrapper{flex-direction: row;width: 80%;}
    .itemsLinkArea a{display: flex;flex-direction: column-reverse;align-items: center;}
    .itemsLinkArea__img{margin: 10px 0;}
    .itemDescArea{height: auto;}
    .itemDescArea__text--price{font-size: 0.8em;}
    .groupSet__list{flex-direction: column;width: 70%;margin: 0 auto 40px;}
}