@charset "UTF-8";

/*===============================

定義

================================*/

:root {
    --max-width-main: 1200px;
    --main-color: #FDF7F9;
    --spacing-ss: 10px;
    --spacing-s: 20px;
    --spacing-m: 40px;
    --spacing-l: 60px;
    --spacing-ll: 100px;
    --spacing-lll: 150px;
}
@media screen and (max-width:820px) {
    :root {
        --spacing-lll: 100px;
    }
}
@media screen and (max-width:640px) {
    :root {
        --max-width-main: 100%;
        --spacing-ss: 5px;
        --spacing-s: 10px;
        --spacing-m: 20px;
        --spacing-l: 30px;
        --spacing-ll: 40px;
        --spacing-ll: 60px;
        --spacing-lll: 100px;
    }
}
@media screen and (max-width:414px) {
    :root {
        /* --spacing-l: 30px;
        --spacing-ll: 40px;
        --spacing-ll: 60px; */
        --spacing-lll: 80px;
    }
}

/*===============================

reset

================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    background: none;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    font-size: 62.5%; 
}

p {
    font-size: 1.6rem;
    line-height: 3.2rem;
    text-align: left;
}

ol,
ul {
    list-style: none;
    list-style-type: none;
    font-size: 0;
}

li {
    font-size: 1.8rem;
}

table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    font-weight: normal;
}

*:focus {
    outline: none;
}


/*===============================

base

================================*/
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #331023;
}
.sp_br {
    display: none;
}
.pc_br414 {
    display: block;
}
@media screen and (max-width: 640px) {
    body {
        font-size: 1.3rem;
    }
}
@media screen and (max-width: 414px) {
    .sp_br {
        display: block;
    }
    .pc_br414 {
        display: none;
    }
}

h1 {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 7.8rem;
}

h2,h3 {
    font-family: 'Shippori Mincho', serif;
}




@media screen and (max-width: 640px) {
    h1 {
        font-size: 7rem;
    }
    img {
        width: 100%;
    }
    p {
        font-size: 1.3rem;
        line-height: 2.6rem;
    }
}
@media screen and (max-width: 414px) {
    h1 {
        font-size: 5.5rem;
    }
}

/*  リンク
------------------------*/
a {
    text-decoration: none;
    color: #331023;
    cursor: pointer;
}

a:hover {
    transition: 0.2s;
    opacity: 0.8;
    -webkit-transition: 0.2s;
}
/*===============================
    アニメーションのためのCSS
================================*/
/* その場で */
.fadeInTrigger{
    opacity: 0;
   }
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }

.fadeUpTrigger{
    opacity: 0;
   }
   .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/*===============================

    header
    
================================*/
.header {
    text-align: center;
}

@media screen and (max-width: 640px) {
    .header {
        padding: 0 0;
    }
}

/*  sitelogo
------------------------*/
/* .siteLogo {
    margin: var(--spacing-s) 0;
}

@media screen and (max-width:640px) {
    .siteLogo img {
        width: 50%;
        height: 50%;
    }
} */

/*  globalNav　サイト最上部のグローバルナビゲーション
------------------------*/
.globalNav {
    display: none;
}
/* .globalNavList li {
    display: inline-block;
    padding: 0 15px;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

.globalNavList li+li {
    border-left: 1px solid #000000;
} */

@media screen and (max-width:640px) {
    .globalNav {
        display: block;
        position: fixed;
        /*ナビのスタート位置と形状*/
        top: 0;
        right: -120%;
        z-index: 2;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        /*ナビの高さ*/
        background: rgba(247,183,183,0.9);
        /*動き*/
        transition: all 0.6s;
    }

    .globalNav.panelactive {
        right: 0;
    }

    .globalNavList {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .globalNavList li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
        font-size: 1.2rem;
        letter-spacing: 0.1rem;
    }

    .globalNavList li+li {
        border-left: 0;
    }

    .globalNavList a {
        color: #ffffff;
    }
}

/* ハンバーガメニュー */
.globalNavBtn {
    display: none;
}

@media screen and (max-width:640px) {
    .globalNavBtn {
        display: block;
        position: fixed;
        top: 16px;
        right: 10px;
        z-index: 999;
        width: 27px;
        height: 27px;
        cursor: pointer;
    }
}

.globalNavBtn span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #E04848;
    transition: 0.35s ease-in-out;

    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
}

.globalNavBtn span:nth-child(1) {
    top: 0;
}

.globalNavBtn span:nth-child(2) {
    top: 10px;
}

.globalNavBtn span:nth-child(3) {
    top: 20px;
}

.globalNavBtn.open span {
    background: #ffffff;
}

.globalNavBtn.open span:nth-child(1) {
    top: 11px;
    transform: rotate(315deg);

    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
}

.globalNavBtn.open span:nth-child(2) {
    left: 50%;
    width: 0;
}

.globalNavBtn.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-315deg);

    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
}

body.fix {
    position: fixed;
    width: 100%;
}

/*===============================

    main
    
================================*/
.main {
    position: relative;
    background-color: #FDF7F9;
}
.wrapper {
    max-width: var(--max-width-main);
    margin: 0 auto;
}

/*  navList PC用
------------------------*/
.navList,
.navList3clm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}




.navList li {
    width: calc((100% - 45px) /4);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
}


.navList li a {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 0 15px;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.kakko_btn {
    color: #331023;
    font-size: 1.9rem;
    font-family: 'Shippori Mincho', serif;
    position: relative;
    display: inline-block;
    padding: 15px 60px;
    border: 2px solid #FDF7F9;
    text-decoration: none;
    outline: none;
    transition: all .3s;
}

.btn2 {
    border: 2px solid #FDEEEE;
}

.kakko_btn::before {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    content: '';
    transition: all .3s;
}

.kakko_btn::after {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    content: '';
    transition: all .3s;
}

.kakko_btn:hover::after,
.kakko_btn:hover::before {
    width: 99%;
    height: 98%;
}

.pink::before {
    border-top: 2px solid #F7B7B7;
    border-left: 2px solid #F7B7B7;
    width: 20px;
    height: 20px;
}

.pink::after {
    border-right: 2px solid #F7B7B7;
    border-bottom: 2px solid #F7B7B7;
    width: 20px;
    height: 20px;
}

.beige::before {
    border-top: 2px solid #DDD2BE;
    border-left: 2px solid #DDD2BE;
    width: 20px;
    height: 20px;
}

.beige::after {
    border-right: 2px solid #DDD2BE;
    border-bottom: 2px solid #DDD2BE;
    width: 20px;
    height: 20px;
}

.green::before {
    border-top: 2px solid #A7B7B7;
    border-left: 2px solid #A7B7B7;
    width: 20px;
    height: 20px;
}

.green::after {
    border-right: 2px solid #A7B7B7;
    border-bottom: 2px solid #A7B7B7;
    width: 20px;
    height: 20px;
}

.blue::before {
    border-top: 2px solid #B7CDF7;
    border-left: 2px solid #B7CDF7;
    width: 20px;
    height: 20px;
}

.blue::after {
    border-right: 2px solid #B7CDF7;
    border-bottom: 2px solid #B7CDF7;
    width: 20px;
    height: 20px;
}
.navList li:nth-child(4n) {
    margin-right: 0;
}
/*3列で表示させたいナビリスト*/
.navList3clm {
    margin: 0 1.5vw 120px 1.5vw;    
}
.navList3clm li {
    width: calc((100% - 45px) /3);
    line-height: 1.4;
    text-align: center;
}

.navList3clm li a {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 0 15px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

@media screen and (max-width: 640px) {
    .navList3clm a {
        height: auto;
        min-height: 80px;
    }
    .navList3clm li a {
        height: 70px;
    }
}

.navList3clm li:nth-child(3n) {
    margin-right: 0;
}
@media screen and (max-width: 640px) {
    .navList,
    .navList3clm {
        justify-content: initial;
    }
    .navList li {
        width: calc((100% - 30px) /2);
    }
    .navList li a {
        height: auto;
        min-height: 80px;
    }
    .navList li:nth-child(3n) {
        margin-right: 0;
    }

    .navList li:nth-child(4n) {
        margin-right: 15px;
    }
    .kakko_btn {
        font-size: 1.7rem;
    }
}
@media screen and (max-width: 414px) {
    .navList {
        justify-content: space-between;
    }
    .navList3clm {
        flex-direction: column;
    }
    .navList3clm li {
        width: 70vw
    }
}

/*  main_visual
------------------------*/
.main_visual {
    display: block;
    width: 100%;
    height: 100vh;
    position: relative;
}

.main_visual-pc {
    object-fit: cover;
    object-position: top left;
}

.main_visual-pc img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top left;
}

.main_ttl {
    position: absolute;
    top: 30vh;
    left: 5%;
    color: #fff;
}

.main_ttl h6 {
    font-size: 1.8rem;
}

.main_ttl img {
    width: 300px;
    position: absolute;
    top: 30px;
    right: -100px;
}

.main_ttl p {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.8rem;
    margin-top: 80px;
    line-height: 7.4rem;
    
}
@media screen and (max-width:820px) {
    .main_visual-pc img {
        object-position: 23% 0%;
    }
    .main_ttl {
        top: 25vh;
        left: 2vw;
    }
    .main_ttl p {
        line-height: 5.4rem;
    }
}
@media screen and (max-width: 640px) {
    .main_visual {
        width: 100%;
        height: auto;
    }
    .main_ttl {
        text-align: center;
        top: 25vh;
        left: 2vw;
        top: 61%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
    }
    .main_ttl img {
    width: 260px;
    position: absolute;
    top: -30px;
    right: initial;
    left: -90px;
}
.main_ttl p {
    font-size: 2.2rem;
    margin-top: 35px;
    line-height: 4.4rem;
    text-align: center;
}
.main_ttl img {
    width: 220px;
    left: -37px;
}
}
@media screen and (max-width: 640px) {
    .main_ttl img {
        left: -30px;
    }
}
/* main_visual PC用 */
.main_visual-pc  {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.top_text {
    padding: var(--spacing-ll) 0;
    margin: 0px 1.5vw ;
}

@media screen and (max-width: 640px) {
    .featureTop_text {
        width: 90%;
        font-size: 0.9rem;
        text-align: left;
    }
}

@media screen and (max-width: 640px) {
.top_text {
    margin: 0px 3vw;
}
}


/*  featureNav　特集全体のナビゲーション
------------------------*/
.featureNav {
    margin: 0px 1.5vw ;
}




@media screen and (max-width: 640px) {
    .featureNav {
        margin: 0px 3vw;
    }
}

/*===============================
	content
================================*/
.content {
    margin-bottom: var(--spacing-lll);
}

/*contentTop*/
.contentTop {
    padding-top: 188px;
    margin: 0 1.5vw var(--spacing-ll) 1.5vw;
    text-align: center;
    
}

.contentTop_title {
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    margin-bottom: var(--spacing-ll);
    font-size: 3.2rem;
    letter-spacing: 0.1em;
    position: relative;
}

.contentTop img {
    width: 250px;
    position: absolute;
    top: -47px;
    left: -120px;
}
@media screen and (max-width: 820px) {
.contentTop {
    padding-top: 120px;
}
}
@media screen and (max-width: 640px) {
    .contentTop {
        margin: 0 3vw var(--spacing-ll) 3vw;
        
    }
    .contentTop_title {
        font-size: 2.4rem;
        letter-spacing: 0.05em;
    }
}
@media screen and (max-width: 414px) {
    .contentTop {
        padding-top: 80px;
    }
    .contentTop img {
        width: 210px;
        top: -37px;
        left: -71px;
    }
    }

/*  itemList　共通
------------------------*/
.itemList {
    display: flex;
}

.itemList_img img {
    border-radius: 0px 50px 0px 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.itemList_img {
    height: 100%;
    margin-bottom: var(--spacing-ss);
    font-size: 0;
}


/*  itemListItem 共通
------------------------*/
/* itemList_tag */



/*===============================
	ランキング
================================*/
.rankingItem {
    margin: 0 1.5vw;
}

.rankingItemList {
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: ranking-mark;
}
.rankingItem ul {
    display: grid;
    grid-gap: 2rem;
    grid-template-rows: 350px 330px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.no1 {
    grid-column: 1 / 4;
}

.no2 {
    grid-column: 4 / 7;
}

.no3 {
    grid-column: 1 / 3;
}
.no4 {
    grid-column: 3 / 5;
}
.no5 {
    grid-column: 5 / 7;
}


.rankingItemList .itemListItem {
    position: relative;
}



.rankingItemList .itemListItem:before {
    position: absolute;
    top: 5px;
    left: 5px;
    content: counter(ranking-mark, decimal);
    padding: 9px 16px;
    background: #fff;
    font-size: 2.8rem;
    font-family: 'Noto Serif JP', serif;
    line-height: 1;
    counter-increment: ranking-mark;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: 2;
}

.rankingItemList .itemListItem:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5.7px;
    padding: 2.3rem 2.3rem;
    background: #fff;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transform: rotate(-22deg);
    z-index: 1;
}
.octagon_line {
    background: #fff;
  clip-path: polygon(calc(30% - 2px) 2px, calc(70% - 2px) 2px, calc(100% - 2px) calc(30% - 2px), calc(100% - 2px) calc(70% - 2px) , calc(70% - 2px ) calc(100% - 2px), calc(30% - 2px) calc(100% - 2px) , 2px calc(70% - 2px) , 2px calc(30% - 2px));
  transform: rotate(-22deg);
}

.rankingItemList .itemListItem:nth-child(1):before {
    background: #D5B97C;
    color: #fff;
}

.rankingItemList .itemListItem:nth-child(2):before {
    background: #c1c1c1;
    color: #fff;
}

.rankingItemList .itemListItem:nth-child(3):before {
    background: #D77B18;
    color: #fff;
}
@media screen and (max-width: 640px) {
    .rankingItemList {
        display: block;
        padding-bottom: 5%;
        overflow-x: auto;
        white-space: nowrap;
        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
    }
    .rankingItem {
        margin: 0 3vw;
    }
}
@media screen and (max-width: 414px) {
    
    .rankingItemList {
        padding-bottom: 0%;
    }
    .rankingItem ul {
        grid-gap: 1rem;
        grid-template-rows: 190px 190px;
    }
}
/*===============================
    各セクション共通
================================*/
.category_wrapper {
    padding-top: var(--spacing-lll);
}
.category_title {
    font-size: 3.2rem;
    position: relative;
    padding: 15px 60px;
    width: fit-content;
    margin: 0px auto 130px;
}

.category_title::before {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    content: '';
}

.category_title::after {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    content: '';
}
.buy_fav_btn {
    display: flex;
    gap: 20px;
}

.buy_btn {
    font-size: 1.8rem;
    line-height: 0;
    padding: 25px 50px;
    background-color: #fff;
    border-radius: 25px;
    margin-bottom: -15px;
    transition-duration: .3s;
}
.buy_btn:hover {
    color: #fff;
    background-color: #E04848;
    transition-duration: .3s;
}

.btn_fav img{
    height: 50px;
    vertical-align: middle;
    transition: .3s;
    filter: grayscale(100%);
}
.btn_fav img:hover{
    filter: none;
}
.item_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 230px;
}

.item_wrapper:nth-child(2n+1) {
    flex-direction: row-reverse;
    gap: 6vw;
}

.item_text {
    width: 100%;
}

.item_wrapper h4 {
    font-size: 3.6rem;
    line-height: 1.7em;
    margin-bottom: var(--spacing-m);
}

.item_wrapper p {
    margin-bottom: var(--spacing-m );
    max-width: 360px;
}

.item_img {
    width: 33vw;
    height: 38vw;
    border-radius: 61% 39% 54% 46% / 59% 40% 60% 41%  ;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.item_img::after{
    content: "";
    width: 32.5vw;
    height: 38.7vw;
    border-radius: 61% 39% 54% 46% / 59% 40% 60% 41%  ;
    border: 1px solid rgba(255, 255, 255, 0.805);
    display: block;
    position: absolute;
    transform: rotate(26deg);
}

.item_img img {
    position: absolute;
    bottom: -45px;
    right: -60px;
    width: 280px;
    height: auto;
    z-index: 3;
}

.item_img .gfb {
    width: 330px;
}

.product_name {
    font-size: 2rem;
}

.price {
    font-size: 3.6rem;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: var(--spacing-s);
}

@media screen and (max-width: 1010px) {
    .item_wrapper {
        gap: 100px;
        padding-bottom: 150px;
        justify-content: center;
    }
    .item_wrapper:nth-child(2n+1) {
        gap: 11vw;
    }
    .item_img {
        width: 38vw;
        height: 43vw;
    }
    .item_img::after {
        width: 38.5vw;
        height: 43.7vw;
    }
}
@media screen and (max-width:820px) {
    .item_wrapper {
        gap: 4vw;
        justify-content: initial;
        margin: 0px 1.5vw;
    }
    .item_wrapper:nth-child(2n+1) {
        gap: 9vw;
    }
    .category_title {
        margin: 0px auto 100px;
    }
    .item_img .gfb {
        width: 280px;
    }
    .item_img img {
        width: 210px;
    }
}
@media screen and (max-width:640px) {
    .category_title {
        font-size: 2.4rem;
        margin: 0px auto 80px;
    }
    .item_wrapper {
        margin: 0px 3vw;
    }
    .item_wrapper h4 {
        font-size: 2.4rem;
        line-height: 1.6em;
    }
    .item_wrapper p {
        max-width: 270px;
    }
    .product_name {
        font-size: 1.7rem;
    }
    .price {
        font-size: 2.8rem;
    }
    .buy_btn {
        font-size: 1.6rem;
        line-height: 0;
        background-color: #fff;
        border-radius: 25px;
        margin-bottom: -15px;
    }
    .item_img img {
        right: -30px;
    }
}
@media screen and (max-width:414px) {
    .item_wrapper {
        gap: 50px;
        padding-bottom: 100px;
        flex-direction: column-reverse;
    }
.item_wrapper:nth-child(2n+1) {
    flex-direction: column-reverse;
}
.item_img {
    width: 68vw;
    height: 73vw;
}
.item_img::after  {
    width: 67.5vw;
    height: 73.7vw;
}
.item_wrapper p {
    max-width: initial;
}
.product_name {
    margin-bottom: 5px;
}
.price_wrapper {
    display: flex;
    gap: 20px;
}
.item_img .gfb {
    width: 230px;
    bottom: -32px;
}
.buy_btn {
    height: 100%;
}
}
/*===============================
    贈る相手で探す
================================*/
#partner, #gift_scene {
    background-color: #FDEEEE;
}
.section_main_img {
    width: 100%;
    height: 1000px;
}
.partner_img {
    background: no-repeat url(../img/img_2.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* パートナーに贈る
------------------------*/
.mist {
    background-image: url(../img/mist.jpg);
}

.hc_balm {
    background-image: url(../img/hc_balm.jpg);
    background-position: top right;
}

/* 友人・家族に贈る
------------------------*/
.red::before {
    border-top: 2px solid #C64D4D;
    border-left: 2px solid #C64D4D;
    width: 20px;
    height: 20px;
}

.red::after {
    border-right: 2px solid #C64D4D;
    border-bottom: 2px solid #C64D4D;
    width: 20px;
    height: 20px;
}
.beige_bg {
    background-color: #F0EBE2;
}

.cherry_hc {
    background-image: url(../img/cherry_hc.jpg);
}

.twl_hc {
    background-image: url(../img/twl_hc.jpg);
}

 /* 自分に贈る 
 ------------------------*/
.green_bg {
    background-color: #F0F3F3;
}

.sakura {
    background-image: url(../img/sakura.jpg);
}

.primer_1 {
    background-image: url(../img/primer_1.jpg);
}
@media screen and (max-width:820px) {
    .section_main_img {
        height: 40vh;
    }
    .partner_img {
        background-attachment: initial;
    }
}
@media screen and (max-width:414px) {
    .partner_img {
        background-position: top right;
    }
}
/*===============================
    ギフトシーンで探す
================================*/
.gift_scene_img {
    background: no-repeat url(../img/img_3.jpg);
    background-size: cover;
    background-attachment: fixed;
}
/* 誕生日に贈る 
------------------------*/
.twl_primer {
    background-image: url(../img/twl_primer.jpg);
}
/* 内祝いに贈る 
------------------------*/
.catalog_1 {
    background-image: url(../img/catalog_1.jpg);
}

.twl_ele {
    background-image: url(../img/twl_ele.jpg);
}

.twl_jel {
    background-image: url(../img/twl_jel.jpg);
}
/* 結婚祝いに贈る 
------------------------*/
.mag {
    background-image: url(../img/mag.jpg);
}

.twl_cherry {
    background-image: url(../img/twl_cherry.jpg);
}

.tea {
    background-image: url(../img/tea.jpg);
}
@media screen and (max-width: 820px) {
.gift_scene_img {
    background-attachment: initial;
}
}
@media screen and (max-width:414px) {
    .gift_scene_img {
        background-position: top right;
    }
}
/*===============================
	種類で探す
================================*/
.category_btn_wrapper {
    margin: 0 1.5vw;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, calc(1200px/5)), 1fr));
    grid-gap: 15px;
    
}


.category_btn {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    width: 100%;
    height: auto;
    position: relative;
    transition-duration: .3s;
}
.category_btn::after {
    /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: h;
    width: 100%;*/
    
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    filter: blur(1px) ; 
}

.category_btn:hover::after {
    opacity: .8;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.category_btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    height: 100%;
    text-decoration: none;
    color: #fff;
    aspect-ratio: 1 / 1;
    }



h5 {
    font-size: 2.4rem;
    color: #fff;
    
    z-index: 3;
}
.cosme::after {
    background-image: url(../img/cosme.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    background-position: center;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
    
}
.twl::after {
    background-image: url(../img/twl.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    background-position: center;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.catalog_2::after {
    background-image: url(../img/catalog_2.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    background-position: center;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.tableware::after {
    background-image: url(../img/tableware.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    background-position: center;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
@media screen and (max-width:640px) {
    .category_btn_wrapper {
        margin: 0 3vw;
}
}
@media screen and (max-width:511px) {
    .category_btn_wrapper {
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr ;
        gap: 10px;
}

    
}
@media screen and (max-width:414px) {
    h5 {
       font-size: 2rem; 
    }
    
}





/*===============================
	予算で探す
================================*/
#budget {
    background-color: #EBF3F9;
}
.priceList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, calc(1200px/5)), 1fr));
    gap: 15px;
    margin: 0 1.5vw var(--spacing-ll) 1.5vw;
}

.priceList li {
    text-align: center;
    width: 100%;
}

.priceList li a {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    height: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    border: solid 2px #fff;
    transition-duration: 0.3s;
}
.priceList li a:hover {
    background-color: #fff;
    transition-duration: 0.3s;
}
.all_item {
    margin: 0 1.5vw;
    padding-bottom: var(--spacing-ll);
}
.all_item a {
    display: flex;
    font-family: 'Noto Serif JP', serif;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1.3em 2em;
    width: 100%;
    border-radius: 3px;
    font-size: 1.8rem;
    font-weight: 700;
    background-color: #fff;
    border: 1px solid #fff;
    transition: 0.3s;
    box-sizing: border-box;
}

.all_item a::before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: 1.5em;
    transform: translateY(calc(-50% - 1px)) rotate(30deg);
    width: 12px;
    height: 1px;
    background-color: #331023;
    transition: 0.3s;
}
.all_item a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
    width: 70px;
    height: 1px;
    background-color: #331023;
    transition: 0.3s;
}

.all_item a:hover {
    background-color: #331023;
    border: 1px solid #331023;
    color: #fff;
    transition: 0.3s;
}
.all_item a:hover::before {
    background-color: #fff;
    transition: 0.3s;
}
.all_item a:hover::after {
    background-color: #fff;
    transition: 0.3s;
}
@media screen and (max-width:640px) {
    .priceList {
        margin: 0 3vw var(--spacing-ll) 3vw;
    }
    .all_item {
        margin: 0 3vw;
    }
}
@media screen and (max-width:511px) {
    .all_item a {
        justify-content: space-between;
        font-size: 1.6rem;
    }
    .all_item a::after {
        width: 50px;

    }
}
/*===============================

	footter

================================*/
/*===============================
	おすすめコンテンツ
================================*/
.otherContent {
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding: var(--spacing-l) 0;
}

@media screen and (max-width: 640px) {
    .otherContent {
        width: 90%;
    }
}

.otherContentList {
    display: grid;

    grid-template-rows: repeat(auto-fit, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

@media screen and (max-width: 640px) {
    .otherContentList {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 15px;
    }
}

.otherContentList li img {
    width: 100%;
}

.featureContent_name {
    font-weight: 500;
}

@media screen and (max-width: 640px) {
    .featureContent_name {
        font-size: 0.8rem;
    }
}

.featureContent_text {
    font-size: 0.8rem;
}

@media screen and (max-width: 640px) {
    .featureContent_text {
        font-size: 0.7rem;
    }
}
/*===============================
	共通フッター
================================*/
.sp_footer {
    display: none;
}

@media screen and (max-width: 640px) {
    .pc_footer {
        display: none;
    }

    .sp_footer {
        display: block;
    }
}


/*  footerNav
------------------------*/
.footerNav {
    margin-bottom: var(--spacing-s);
    text-align: center;
}

.footerNavList li {
    display: inline-block;
    padding: 0 15px;
    font-size: 1rem;
}

@media screen and (max-width: 640px) {
    .footerNavList li {
        font-size: 0.8rem;
    }
}

.footerNavList li+li {
    border-left: 1px solid #000000;
}

/*  copyright
------------------------*/
.copyright {
    text-align: center;
}

/*===============================

	topへ戻る

================================*/
.pageTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    text-align: center;
    transition: all 0.3s ease;
}

@media screen and (max-width: 640px) {
    .pageTop {
        right: 10px;
        bottom: 10px;
    }
}

.pageTop a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E04848;
    font-size: 0;
    line-height: 60px;
}

.pageTop:before {
    display: block;
    position: absolute;
    top: 40%;
    right: 0;
    left: 0;
    content: "";
    transform: rotate(-45deg);
    width: 25%;
    height: 25%;
    margin: auto;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.pageTop a:hover {
    opacity: 0.5;
    text-decoration: none;
}



@media screen and (max-width: 640px) {
}

hr {
    color: #ffffff;
}

.priceList li:nth-child(4n) {
    margin-right: 15px;
}

.tittle_logo {
    display: block;
    margin-bottom: 15px;
    vertical-align: middle;
}

.tittle_logo img {
    width: 130px;
}


@media screen and (max-width: 640px) {
    tittle_logo {
        margin-bottom: 10px;
    }

    .tittle_logo img {
        width: 85px;
    }
}

/*開く*/
.open-box {
    position: relative;
}

input[type="checkbox"].on-off {
    display: block;
    position: absolute;
    top: 50%;
    opacity: 0;
}

/*ラベル（「開く」ボタン）*/
.itembox_more {
    display: block;
    position: relative;
    width: 50%;
    margin: 0 auto;
    padding: 15px 0;
    border-radius: 50px;
    background: var(--main-color);
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}


@media screen and (max-width: 640px) {
    .itembox_more {
        width: 50%;
        margin: 0 auto;
        font-size: 1rem;
    }
}

/*ラベルに表示するテキスト*/
.itembox_more::after {
    content: "もっと見る  " "\f078";
    font-family: "Font Awesome 5 Free";
}

.on-off:checked~.itembox_more::after {
    content: "閉じる  " "\f077";
    font-family: "Font Awesome 5 Free";
}

/*開閉エリア*/
.open-box .open {
    display: none;
}


