/* --------------------
    fsのCSSリセット
-------------------- */
img {
    width: auto;
}
/* a:visited {
    color: #333;
} */
/* --------------------
    コンテンツ幅
-------------------- */
.w1260 {
    max-width: 1260px;
    margin: 0 auto;
}
.w1000 {
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 1340px) {
    .w1260 {
        width: 90%;
    }
}
@media screen and (max-width: 1100px) {
    .w1000 {
        width: 90%;
    }
}
/* --------------------
    3column リスト（ 3カラムでカラム落ち、タブレット2カラム、スマホ1カラム ）
-------------------- */
.flex_3column {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.flex_3column li {
    width: calc( (100% / 3) - (64px / 3) );
}
@media screen and (max-width: 768px) {
    .flex_3column li {
        width: calc( 50% - 16px);
    }
}
@media screen and (max-width: 520px) {
    .flex_3column li {
        flex: auto;
        width: 100%;
        padding: 0 8%;
    }
}
/* --------------------
    2column リスト（ 2カラムでカラム落ち、スマホ1カラム ）
-------------------- */
.flex_2column {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.flex_2column li {
    width: calc( 50% - 24px );
}
@media screen and (max-width: 520px) {
    .flex_2column {
        gap: 32px;
    }
    .flex_2column li {
        flex: auto;
        width: 100%;
    }
}
/* --------------------
    初めての方へ全体
-------------------- */
.onlysp {
    display: none;
}
.firsttime {
    color: #745842;
    line-height: 1.75;
}
.firsttime_section {
    margin-top: 120px;
}
.firsttime_section:last-child {
    margin-bottom: 150px;
}
.firsttime_h2 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #5f3e25;
    margin-bottom: 40px;
}
.firsttime_h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #5f3e25;
    margin-bottom: 40px;
}
.firsttime_lead {
    text-align: center;
    margin-bottom: 6rem;
}
.firsttime_btn {
    position: relative;
    width: 85%;
    max-width: 300px;
    margin: 50px auto;
}
.firsttime_btn a {
    display: block;
    padding: 1rem 3rem;
    background-color: #8c412b;
    color: #fff;
    border-radius: 4px;
}
.firsttime_btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: translateY(-50%) rotate(45deg);
}
.firsttime_btn a:hover {
    text-decoration: none;
    background-color: #984a33;
}
.firsttime_btn a:hover::after {
    right: 1.5rem;
}
@media screen and (max-width: 1024px) {
    .firsttime_h2 {
        font-size: 26px;
    }
}
@media screen and (max-width: 520px) {
    .onlysp {
        display: block;
    }
    .firsttime_section {
        margin-top: 80px;
    }
    .firsttime_section:last-child {
        margin-bottom: 150px;
    }
    .firsttime_h2 {
        font-size: 18px;
    }
    .firsttime_h3 {
        font-size: 17px;
    }
    .firsttime_btn {
        width: 100%;
    }
}
/* --------------------
    mv
-------------------- */
.firsttime_mv {
    margin: 0 auto 40px;
    max-width: 1400px;
}
.firsttime_mv_img {
    margin-top: 10px;
}
[id*="js_firsttime_mv"] {
    display: none;
}
@media screen and (max-width: 1024px) {
    .firsttime_mv_title {
        padding-top: 24px;
    }
    .firsttime_mv {
        margin-bottom: 20px;
    }
}

/* --------------------
    about
-------------------- */
.firsttime_about {
    background: url(https://rokumeicoffee.itembox.design/item/lp/firsttime/img_logo.png) no-repeat;
    background-size: contain;
    padding-top: 80px;
}
.firsttime_about_lead {
    text-align: center;
    margin-bottom: 4rem;
}
.firsttime_about_list {
    text-align: center;
}
.firsttime_about_list li img {
    margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 768px) {
    .firsttime_about {
        padding-top: 40px;
    }
}
@media screen and (max-width: 520px) {
    .firsttime_about {
        padding-top: 30px;
    }
}

/* --------------------
    商品紹介
-------------------- */
.firsttime_h2_s {
    font-size: 29px;
}
.firsttime_product a:hover,
.firsttime_product a:hover img {
    opacity: 0.95;
    transition: 0.1s ease-in-out;
}
.firsttime_product_pickup {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
    margin-bottom: 10rem;
}
.firsttime_product_img,
.firsttime_product_detail {
    width: 100%;
}
.firsttime_product_img {
    position: relative;
}
.firsttime_product_pickup .firsttime_product_img::before {
    content: "";
    background: url(https://rokumeicoffee.itembox.design/item/lp/firsttime/icon_limited.png) no-repeat;
    position: absolute;
    width: 140px;
    height: 140px;
    background-size: cover;
    left: -40px;
    top: -40px;
    z-index: 1;
}
.firsttime_product_pickup .firsttime_product_detail {
    padding: 0 32px;
}
.firsttime_product_other .firsttime_product_detail {
    padding: 0 24px;
}
.firsttime_product_name {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2rem;
    display: block;
}
.firsttime_product_pricewrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 3rem;
}
.firsttime_product_pricewrap del{
    color: #a7a7a7;
}
.firsttime_product_priceoff {
    line-height: 1;
    border: solid 1px #bf2727;
    color: #bf2727;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 9999px;
    padding-top: 9px;
}
.firsttime_product_price {
    color: #bf2727;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}
.firsttime_product_price span {
    font-size: 12px;
}
.firsttime_product_shipping {
    padding: 5px 8px;
    border: solid 1px #d3c4b8;
    line-height: 1.2;
    font-size: 14px;
}
.firsttime_product_shipping br {
    display: none;
}
.firsttime_product_tag {
    font-size: 14px;
    padding: 0.2rem 1rem;
    background-color: #EDDFD4;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.firsttime_product_text {
    margin-bottom: 3rem;
}
.firsttime_product_notice {
    font-size: 12px;
    color: #878787;
    margin-bottom: 3rem;
}
.firsttime_product_notice li {
    margin-left: 1em;
	text-indent: -1em;
}
.firsttime_product_other {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.firsttime_product_item {
    width: calc( 50% - 24px );
}
.firsttime_product_item_inner {
    display: flex;
}
.firsttime_product_item_inner:hover {
    text-decoration: none;
}
.firsttime_product_item_inner:hover .firsttime_product_name {
    text-decoration: underline;
}
.firsttime_product_other .firsttime_product_price {
    color: #5f3e25;
}
.firsttime_product_other .firsttime_product_img {
    width: 70%;
}
.firsttime_product_other .firsttime_product_name {
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
    .firsttime_h2_s {
        font-size: 26px;
    }
    .firsttime_product_pickup .firsttime_product_detail {
        padding: 0 16px;
    }
    .firsttime_product_pickup .firsttime_product_img::before {
        width: 80px;
        height: 80px;
        left: -20px;
        top: -20px;
    }
    .firsttime_product_other {
        gap: 24px;
    }
    .firsttime_product_item {
        width: calc( 50% - 12px );
    }
    .firsttime_product_other .firsttime_product_detail {
        padding: 0 16px;
    }
    .firsttime_product_other .firsttime_product_img {
        width: 50%;
    }
}
@media screen and (max-width: 768px) {
    .firsttime_product_pickup {
        gap: 0;
        align-items: flex-start;
    }
    .firsttime_product_img {
        width: 50%;
    }
    .firsttime_product_link a {
        font-size: 1.6px;
    }
    .firsttime_product_other {
        display: block;
    }
    .firsttime_product_item {
        width: 100%;
    }
    .firsttime_product_item + .firsttime_product_item {
        margin-top: 10px;
    }
    .firsttime_product_other .firsttime_product_detail {
        padding: 0 0 0 16px;
    }
}
@media screen and (max-width: 520px) {
    .firsttime_product_img {
        width: 100%;
        margin-bottom: 2rem;
    }
    .firsttime_h2_s {
        font-size: 18px;
    }
    .firsttime_product_pickup {
        display: block;
    }
    .firsttime_product_name {
        font-size: 18px;
    }
    .firsttime_product_other .firsttime_product_price {
        font-size: 14px;
    }
    .firsttime_product_other .firsttime_product_price span {
        font-size: 12px;
    }
    .firsttime_product_tag {
        font-size: 12px;
    }
}

/* --------------------
    会員登録
-------------------- */
.firsttime_member {
    border: solid 1px #c5ab8c;
    padding: 4%;
}
.firsttime_member_wrap {
    display: flex;
    align-items: center;
    gap: 60px;
}
.firsttime_member_list {
    width: 100%;
    order: -1;
}
.firsttime_member_rank {
    width: 100%;
}
.firsttime_member_wrap::before {
    content: "";
    border: 1px solid #EDDFD4;
    align-self: stretch;
}
.firsttime_member_list li {
    display: flex;
    align-items: center;
    gap: 20px;
}
.firsttime_member_list li + li {
    margin-top: 20px;
}

.firsttime_member_list li img {
    width: 15%;
}
.firsttime_member_list li p {
    width: 85%;
}
.firsttime_member .firsttime_h2 {
    background-color: #EDDFD4;
    position: relative;
    height: 40px;
    line-height: 40px;
    margin: 0 auto 4rem;
    width: calc(100% - 30px);
    font-size: 22px;
}
.firsttime_member .firsttime_h2::before,
.firsttime_member .firsttime_h2::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0px;
    height: 0px;
    border-color: #EDDFD4 transparent;
    border-style: solid;
}
.firsttime_member .firsttime_h2::before {
    left: -15px;
    border-width: 20px 0px 20px 15px;
}
.firsttime_member .firsttime_h2::after {
    right: -15px;
    border-width: 20px 15px 20px 0px;
}
.firsttime_member .firsttime_btn {
    margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
    .firsttime_member_wrap {
        gap: 40px;
    }
}
@media screen and (max-width: 768px) {
    .firsttime_member {
        padding: 6%;
    }
    .firsttime_member_wrap {
        gap: 30px;
    }
    .firsttime_member_list li {
        align-items: flex-start;
    }
    .firsttime_member_list li img {
        width: 15%;
    }
    .firsttime_member_list li p {
        width: 85%;
    }
    .firsttime_member_wrap {
        flex-direction: column;
    }
    .firsttime_member_list {
        margin-bottom: 0;
    }
    .firsttime_member .firsttime_h2 {
        font-size: 18px;
    }
}

/* --------------------
    4つのこだわり
-------------------- */
.firsttime_point_wrap {
    display: flex;
    gap: 32px;
    align-items: center;
}
.firsttime_point_img,
.firsttime_point_detail {
    width: 50%;
}
.firsttime_point_detail {
   padding: 40px;
}
.firsttime_point_detail .firsttime_h3 {
    text-align: left;
}
.firsttime_point_number {
    width: 110px;
    margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
    .firsttime_point_number {
        width: 80px;
    }
}
@media screen and (max-width: 768px) {
    .firsttime_point_number {
        width: 60px;
        margin-bottom: 8px;
    }
    .firsttime_point_detail {
        padding: 12px;
    }
    .firsttime_point_img{
        width: 40%;
    }
    .firsttime_point_detail {
        width: 60%;
    }
    .firsttime_point_detail .firsttime_h3 {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 520px) {
    .firsttime_point_wrap {
        gap: 16px;
    }
    .firsttime_point_wrap + .firsttime_point_wrap {
        margin-top: 30px;
    }
    .firsttime_point_wrap:nth-child(even) {
        flex-direction: column;
    }
    .firsttime_point_wrap:nth-child(odd) {
        flex-direction: column-reverse;
    }
    .firsttime_point_img,
    .firsttime_point_detail {
        width: 100%;
    }
    .firsttime_point_detail {
        padding: 0;
    }
}

/* --------------------
    voice
-------------------- */
.firsttime_case_title {
    font-weight: bold;
    color: #5f3e25;
    margin-bottom: 10px;
    font-size: 18px;
}
.firsttime_case_user img {
    width: 80px;
    margin-top: 24px;
}
.firsttime_case_name {
    padding-left: 10px;
}
.firsttime_case_comment {
    background: #f7f4eb;
    padding: 24px;
    border-radius: 8px;
    position: relative;
}
.firsttime_case_comment::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #f7f4eb;
    left: 4.5%;
    bottom: -16px;
}
@media screen and (max-width: 520px) {
    .firsttime_case_user img {
        width: 54px;
        margin-top: 24px;
    }
}
/* --------------------
    Q&A
-------------------- */
.firsttime_qa_list li + li {
    margin-top: 6rem;
}
.firsttime_qa_list li a {
    text-decoration: underline;
    text-decoration-color: #878787;
}
.firsttime_qa_list_q {
    font-weight: bold;
    color: #5f3e25;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
}
.firsttime_qa_list_q::before {
    content: "Q";
    position: absolute;
    left: 0;
    font-family: Helvetica, sans-serif;
}
.firsttime_qa_list_a {
    position: relative;
    padding-left: 3rem;
}
.firsttime_qa_list_a::before {
    content: "A";
    font-weight: bold;
    position: absolute;
    left: 0;
    font-family: Helvetica, sans-serif;
}
.firsttime_qa_list_notice {
    color: #878787;
    font-size: 14px;
    display: block;
    margin-top: 1rem;
    background: #f7f6f6;
    padding: 1rem 2rem;
}

/* --------------------
    contact
-------------------- */
.firsttime_contact_phone {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}
.firsttime_contact_phone span {
    font-size: 16px;
    font-weight: normal;
    display: block;
}
.firsttime_contact_phone i {
    margin-left: -10px;
}
.firsttime_contact .firsttime_btn {
    margin-top: 20px;
}