@charset "utf-8";
/* CSS Document */

/* =====================
  琉球王国からの届け物
===================== */
/*  ページ内リンク
------------------------*/
#item-list {
    width: 100vw;
    padding: 30px 0;
    margin: 0 auto 80px;
    background-color: #f7f7f3;
 margin-left: calc(((100vw - 100%) / 2) * -1);
 margin-right: calc(((100vw - 100%) / 2) * -1);
}
#item-list ul {
    width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#item-list ul li {
    width: 326px;
    height: 226px;
    border: 7px solid #fff;
    position: relative;
    overflow: hidden;
}
#item-list ul li a {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    transition: .6s;
    position: relative;
}
#item-list ul li:nth-child(1) a {
    background-image: url(../images/deliverables/moromisu-bg.jpg);
}
#item-list ul li:nth-child(2) a {
    background-image: url(../images/deliverables/moringa-bg.jpg);
}
#item-list ul li:nth-child(3) a {
    background-image: url(../images/deliverables/mozuku-bg.jpg);
}
#item-list ul li:hover a {
    transform: scale(1.2);
}
#item-list ul li img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
/* =====================
  商品紹介
===================== */
.item {
    overflow: hidden;
    padding: 120px 0 0;
    margin: -120px auto 80px;
}
.item h3 + figure {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 10px;
}
.item h4 {
    color: #b6912c;
    font-size: 18px;
    width: 660px;
    float: right;
    margin: 0 0 1em;
}
.item figure + figure {
    width: 400px;
    height: 282px;
    display: block;
}
.item p.link {
    text-align: center;
    width: 450px;
    height: 46px;
    margin: 30px auto 0;
}
.item p.link a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    line-height: 46px;
    background-color: #ebaf1d;
}
.item p.link a::after {
    content: "→";
    margin: 0 0 0 .25em;
}
/*  もろみ酢
------------------------*/
/*  アスタコラノ
------------------------*/
#astacollano h3 + figure {
    margin: 0 auto 20px;
}
#astacollano figure + figure {
    float: left;
}
#astacollano p {
    width: 660px;
    float: right;
    margin: 0 auto 1em;
}
/*  モリンガ
------------------------*/
#moringa figure + p {
    margin: 0 auto 1em;
}
/*  もずく
------------------------*/
#mozuku h3 + figure {
    margin: 0 auto 20px;
}
#mozuku figure + figure {
    float: right;
}
#mozuku p {
    width: 660px;
    float: left;
    margin: 0 auto 1em;
}
/* =====================
  Q&A
===================== */
#faq h2 {
    width: 1080px;
    height: 280px;
    margin: 0 auto 60px;
    cursor: pointer;
    transition: .6s;
}
#faq h2:hover {
    opacity: .75;
}
#faq .inner dl dt {
    color: #d42d25;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    padding: 0 0 0 40px;
    border-bottom: 1px solid #d42d25;
    margin: 0 auto 10px;
    position: relative;
}
#faq .inner dl dt::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../images/deliverables/icon-q.gif);
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 7px;
    left: 0;
}
#faq .inner dl dd {
    padding: 0 0 0 40px;
    margin: 0 auto 40px;
    position: relative;
}
#faq .inner dl dd::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../images/deliverables/icon-a.gif);
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}
#faq .inner dl dd:last-child {
    margin: 0 auto;
}
#faq .inner dl dd strong {
    display: block;
    margin: 1em 0 0;
    font-weight: bold;
}
#faq .inner dl dd span {
    display: block;
    margin: 1em 0 0;
}
#faq .inner dl dd ul {
    margin: 0 0 1em;
    list-style-position: inside;
    list-style-type: decimal;
}
#faq .inner dl dd:last-child ul {
    margin: 0;
    list-style-type: disc;
}
