@charset "utf-8";

/* 既存コンテンツ 調整 */
.fs-l-main,
.fs-l-sideArea + .fs-l-pageMain {
    max-width: none;
    padding-bottom: 0;
}
.fs-c-heading {
    margin: 0;
    padding-bottom: 0;
}
@media screen and (max-width: 1100px) {
.fs-l-pageMain {
    padding: 40px 0 0;
} 
}
@media screen and (max-width: 768px) {
.fs-l-pageMain {
    padding: 40px 0 0;
}
}

/* 共通 */
.normalgift * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.normalgift img {
    vertical-align: top;
}
.normalgift.contents {
    padding: 0;
}
.normalgift a {
    text-decoration: none;
    color: #222222;
}
.normalgift a:hover {
    opacity: 0.8;
}
.normalgift .inner {
    max-width: 1100px;
    margin: auto;
}
.normalgift h3 {
    margin: 0 auto;
    font-size: 2.4rem;
    font-weight: 400;
    width: fit-content;
}
.normalgift .pc {
    display: block;
}
.normalgift .sp {
    display: none;
}
@media screen and (max-width: 1100px) {
.normalgift img {
    margin: auto;
    display: block;
}
.normalgift .inner {
    max-width: 1100px;
    margin: auto 30px;
}
}
@media screen and (max-width: 768px) {
.normalgift .inner {
    margin: auto 0;
}
.normalgift h3 {
    font-size: 2.1rem;
}
.normalgift .pc {
    display: none;
}
.normalgift .sp {
    display: block;
}
}


/* mainview */
.mainview--textbox {
    color: #a37635;
    background: #f0ebe4;
    text-align: center;
    padding: 60px 0;
}
.mainview--textbox h3 {
    line-height: 1.5;
    font-weight: 100;
}
.mainview--textbox p {
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
.mainview--textbox {
    padding: 40px 0;
}
.mainview--textbox h3 {
}
.mainview--textbox p {
    margin: 15px 0 0;
}
}


/* navigation */
.ng-navi--list {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 18px;
    padding: 40px 20px;
}
.ng-navi--item a {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #222222;
    color: #222222;
    padding: 10px 0;
}
.ng-navi--item a::before {
    content: "";
    border:4px solid transparent;
    border-top: 6px solid #222222;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.ng-navi--item a:hover {
    opacity: 1;
    background: #222222;
    color: #fff;
}
.ng-navi--item a:hover::before {
    border-top: 6px solid #ffffff;
}
@media screen and (max-width: 900px) {
.ng-navi--item a {
    font-size: 1.2rem;
}
}
@media screen and (max-width: 768px) {
.ng-navi--list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
}
}



/* novelty */
.ng-novelty--banner {
    max-width: 800px;
    margin: 20px auto 60px;
}
.ng-novelty--banner p {
    line-height: 1.3;
    font-size: 1.2rem;
    margin-top: 10px;
}
@media screen and (max-width: 768px) {
.ng-novelty--banner {
    padding: 20px;
}
}


/* 人気ランキング */
.ng-ranking {
    background: #f0ebe4;
    padding: 130px 0;
}
.ng-ranking h3 {
    line-height: 1.5;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 50px;
}
.ng-ranking--block {
    display: flex;
    justify-content: space-between;
}
.ng-ranking--1st {
    width: 39%;
}
.ng-ranking--other {
    flex: 1;
    margin-left: 50px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px 20px;
}
.ng-ranking--box a {
    display:block;
    position: relative;
}
.ng-ranking--rank {
    position: absolute;
    left: 0;
    top: 0;
    width: 92px;
    height: 42px;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    background: #1f4039;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 5px 0 0;
    color: #fff;
    font-family: 'Times New Roman';
    font-size: 1.8rem;
    font-weight: 100;
}
.ng-ranking--rank.--1st {
    background: #a37635;
}
.ng-ranking--rank.--2nd {
    background: #bbbbbb;
}
.ng-ranking--rank.--3rd {
    background: #a46a4a;
}
.ng-ranking--rank span {
    font-size: 160%;
    padding-bottom: 5px;
}
.ng-ranking--name {
    font-size: 1.6rem;
    padding: 15px 0;
}
.ng-ranking--price {
    font-size: 1.8rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #222222;
}
@media screen and (max-width: 1100px) {
.ng-ranking--box a {
    background-color: #ffffff;
}
}
@media screen and (max-width: 768px) {
.ng-ranking {
    padding: 70px 0;
}
.ng-ranking--block {
    display: block;
    padding: 0 36px;
}
.ng-ranking--1st {
    width: 100%;
}
.ng-ranking--other {
    margin-left: 0;
    display: block;
}
.ng-ranking--box {
    margin-bottom: 40px;
}
.ng-ranking--other .ng-ranking--box:last-of-type {
    margin-bottom: 0;
}
.ng-ranking--rank {
    width: 82px;
    height: 32px;
    font-size: 1.4rem;
}
}



/* アイテムから選ぶ */
.ng-items {
    padding: 130px 0;
}
.ng-items h3 {
    line-height: 1.5;
    height: 63px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 50px;
}
.ng-items--content {
    margin-top: 100px;
}
.ng-items--content h4 {
    font-size: 2rem;
    padding-left: 10px;
    border-left: 3px solid #1f4039;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 20px;
}
.ng-items--read {
    padding: 15px 0;
    margin-bottom: 30px;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
.ng-items--smalllist {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 20px;
}
.ng-items--biglist {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 70px;
}
.ng-itemlist--item a{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ng-items--smalllist .ng-itemlist--item {
    border:1px solid #eeeeee;
}
.ng-items--smalllist .ng-itemlist--textblock {
    background: #eeeeee;
    padding: 20px;
}
.ng-itemlist--textblock {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ng-items--image {
    height: fit-content;
}
.ng-items--biglist .ng-items--image {
    border: 1px solid #eee;
    margin-bottom: 15px;
}
.ng-items--name {
    margin-bottom: 10px;
    font-size: 1.6rem;
}
.ng-items--price {
    margin-top: auto;
    font-size: 1.8rem;
}
.ng-items--category {
    margin-top: 100px;
}
.ng-items--category h5 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.4rem;
    font-family: 'Noto Serif JP', serif;
}
.ng-items--category h5 span {
    display:inline-block;
    position: relative;
}
.ng-items--category h5 span::before {
    content: "";
    width: 40px;
    height: 1px;
    background: #222222;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50px;
    margin: auto;
}
.ng-items--category h5 span::after {
    content: "";
    width: 40px;
    height: 1px;
    background: #222222;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    margin: auto;
}
.ng-items--button a{
    display: block;
    max-width: 340px;
    margin: auto;
    padding: 15px;
    text-align: center;
    background: #1f4039;
    color: #ffffff;
    border-radius: 5px;
}
@media screen and (max-width: 768px) {
.ng-items {
    padding: 70px 15px;
}
.ng-items--content {
    margin: 50px 0 100px;
}
.ng-items--smalllist {
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    margin-top: 25px;
}
.ng-items--biglist {
    grid-template-columns: repeat(1,1fr);
    margin-bottom: 30px;
}
.ng-items--smalllist .ng-itemlist--textblock {
    padding: 10px;
}
.ng-items--name {
    margin-bottom: 10px;
    font-size: 1.6rem;
}
.ng-items--price {
    font-size: 2rem;
}
.ng-items--smalllist .ng-items--name {
    font-size: 1.4rem;
}
.ng-items--smalllist .ng-items--price {
    font-size: 1.6rem;
}
.ng-items--category {
    margin-top: 50px;
    padding: 0 22px;
}
.ng-items--category h5 {
    font-size: 2.4rem;
}
.ng-items--biglist .ng-items--image {
    margin-bottom: 0;
}
}





/* プライスから選ぶ */
.ng-price {
    background: #f0ebe4;
    color: #333333;
    padding: 130px 0;
}
.ng-price h3 {
    line-height: 1.5;
    height: 46px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 50px;
    color: #333333;
}
.ng-price--read {
    padding: 15px 0;
    margin-bottom: 30px;
    text-align: center;
    color: #333333;
}
.ng-price--category .ng-itemlist--item a{
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #333333;
}
.ng-price--image {
    height: fit-content;
    margin-bottom: 15px;
}
.ng-price--name {
    margin-bottom: 10px;
    font-size: 1.6rem;
}
.ng-price--price {
    margin-top: auto;
    font-size: 1.8rem;
}
.ng-price--category {
    margin-top: 80px;
}
.ng-price--category h5 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.4rem;
    font-family: 'Noto Serif JP', serif;
}
.ng-price--category h5 span {
    display:inline-block;
    position: relative;
    color: #333333;
}
.ng-price--category h5 span::before {
    content: "";
    width: 40px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50px;
    margin: auto;
}
.ng-price--category h5 span::after {
    content: "";
    width: 40px;
    height: 1px;
    background: #333333;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    margin: auto;
}
.ng-price--itemlist {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 70px;
    margin-bottom: 70px;
}
.ng-price--button a{
    display: block;
    max-width: 340px;
    margin: auto;
    padding: 15px;
    text-align: center;
    background: #1f4039;
    color: #ffffff;
    border-radius: 5px;
}
@media screen and (max-width: 1100px) {
.ng-price--image {
    background-color: #ffffff;
}
}
@media screen and (max-width: 768px) {
.ng-price {
    padding: 70px 15px;
}
.ng-price--read {
    padding: 5px 0;
}
.ng-price--category h5 {
    font-size: 2.4rem;
}
.ng-price--itemlist {
    grid-template-columns: repeat(1,1fr);
    margin-bottom: 30px;
    gap: 40px;
}
.ng-itemlist--textblock {
    padding: 10px 0;
}
.ng-price--image {
    margin-bottom: 0;
}
.ng-price--name {
    margin-bottom: 10px;
    font-size: 1.6rem;
}
.ng-price--price {
    font-size: 2.2rem;
}
.ng-price--category {
    margin-top: 50px;
    padding: 0 22px;
}
}





/* ラッピングについて */
.ng-wrapping {
    padding: 140px 0;
    background: #243330;
}
.ng-wrapping .inner {
    max-width: 800px;
    margin: auto;
}
.ng-wrapping--about {
    height: 360px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    padding-left: 80px;
    overflow: hidden;
}
.ng-wrapping--about > img {
    width: 430px;
    margin: 0 0 0 auto;
}
.ng-wrapping--textbox {
    text-align: center;
}
.ng-wrapping--textbox h4,
.ng-wrapping--variation h4 {
    font-size: 2.4rem;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 15px;
}
.ng-wrapping--variation {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 30px;
}
.ng-wrapping--variation > div {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    padding: 30px;
}
.ng-wrapping--variation img {
    padding: 0 0 30px;
}
.ng-wrapping--step {
    margin: 70px 0 0;
}
.ng-wrapping--step > p {
    text-align: center;
    color: #ffffff;
    margin: 0 calc(50% - 50vw) 30px;
    width: 100vw;
}
.ng-wrapping--step h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.4rem;
    font-family: 'Noto Serif JP', serif;
    color: #ffffff;
}
.ng-wrapping--step h3 span {
    display:inline-block;
    position: relative;
}
.ng-wrapping--step h3 span::before {
    content: "";
    width: 40px;
    height: 1px;
    background: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50px;
    margin: auto;
}
.ng-wrapping--step h3 span::after {
    content: "";
    width: 40px;
    height: 1px;
    background: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    margin: auto;
}
.ng-wrapping--comment {
    background: #fff;
    padding: 40px 20px;
    margin-top: 40px;
    position: relative;
    font-size: 12px;
    line-height: 1.8;
}
.ng-wrapping--comment img {
    position: absolute;
    top: -15px;
    right: 10px;
    width: 225px;
}
@media screen and (max-width: 768px) {
.ng-wrapping{
    padding: 70px 30px;
}
.ng-wrapping--step h3 {
    font-size: 2rem;
}
.ng-wrapping--about {
    display: block;
    padding: 30px 0 5px;
    height: auto;
    overflow: hidden;
}
.ng-wrapping--variation {
    grid-template-columns:repeat(1,1fr);
}
.ng-wrapping--step > p {
    width: 100%;
    margin: 0 0 30px;
}
.ng-wrapping--comment {
    padding: 20px 20px 20px;
}
.ng-wrapping--comment img {
    position: static;
    margin: 30px auto 0;
    display: block;
}
}









/* アイテムから選ぶ */
.ng-category {
    background: #fafafa;
    padding: 140px 0 140px;
}
.ng-category h3 {
    margin-bottom: 50px;
}
.ng-category--list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.ng-category--item {
    height: 60px;
}
.ng-category--item a {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    padding: 7px;
    background: #ffffff;
    border:1px solid #ccc;
    line-height: 1.3;
    color: #222222;
}
.ng-category--img {
    width: 64px;
    display: flex;
    align-items: center;
}
.ng-category--img img {
    height: 48px;
}
.ng-category-name {
    flex: 1;
}
@media screen and (max-width: 768px) {
.ng-category .inner{
    margin: 0 10px ;
}
.ng-category {
    padding: 70px 0 ;
}
.ng-category--list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    padding: 0 0;
}
.ng-category--item {
    height: 45px;
}
.ng-category--item a {
    font-size: 12px;
}
.ng-category--img {
    width: 42px;
}
.ng-category--img img {
    height: 32px;
}
}