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

/* =========================================
   鉱物NEST
   -----------------------------------------
   基本フォント   ：ゴシック
   強調・世界観   ：明朝
========================================= */


/* =========================================
   RESET
========================================= */

html, body {
    margin: 0;
    padding: 0;
}

:root {
    --black: #0b0b0a;
    --gold: #b8944d;
    --gold-light: #d1b06a;
    --paper: #f7f5f0;
    --white: #fff;
    --text: #292622;
    --border: #ddd7cc;
}

.nest-page {
    width: 100%;
    margin: 0;
    padding: 0;
--black: #0b0b0a;
--gold: #b8944d;
--gold-light: #d1b06a;
--paper: #f7f5f0;
--white: #fff;
--text: #292622;
--border: #ddd7cc;
    color: var(--text);
    background: var(--paper);
    /* 基本は読みやすいゴシック */
    font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}
.nest-page *, .nest-page *::before, .nest-page *::after {
    box-sizing: border-box;
}
.nest-page img {
    display: block;
    width: 100%;
}
.nest-page a {
    color: inherit;
    text-decoration: none;
}
.nest-page a {
    transition: opacity 0.3s ease;
}
.nest-page a:hover {
    opacity: 0.65;
}
/* =========================================
   FONT
   -----------------------------------------
   明朝にする部分
========================================= */

.nest-logo, .nest-hero-copy h1, .nest-hero-copy h2, .nest-about h2, .nest-section-title h2, .nest-guide > h2, .nest-guide-card h3, .nest-room h2, .nest-category h2, .nest-choose h2, .nest-instagram-text h2, .nest-footer-logo, .nest-hero-method {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
/* =========================================
   HEADER
========================================= */

.nest-header {
    height: 68px;
    background: var(--black);
    color: #fff;
}
.nest-header-inner {
    max-width: 1100px;
    height: 100%;
    margin: auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 35px;
}
.nest-logo {
    line-height: 1;
    white-space: nowrap;
    font-size: 23px;
    letter-spacing: .08em;
}
.nest-logo small {
    display: block;
    margin-top: 5px;
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: .18em;
    text-align: center;
}
/* =========================================
   PC NAVIGATION
========================================= */

.nest-pc-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
    font-size: 13px;
}
/* 通常リンク */

.nest-pc-nav > a {
    position: relative;
    display: flex;
    align-items: center;
    height: 68px;
    color: #fff;
    white-space: nowrap;
}
/* -----------------------------------------
   DROPDOWN
----------------------------------------- */

.nest-pc-dropdown {
    position: relative;
    height: 68px;
    display: flex;
    align-items: center;
}
/* ドロップダウンのボタン */

.nest-pc-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 100%;
    padding: 0;
    border: 0;
    background: none;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    white-space: nowrap;
    cursor: pointer;
}
/* ▼ */

.nest-pc-dropdown-btn span {
    color: #b8944d;
    font-size: 8px;
}
/* -----------------------------------------
   DROPDOWN MENU
----------------------------------------- */

.nest-pc-dropdown-menu {
    position: absolute;
    top: 68px;
    left: 50%;
    width: 250px;
    transform: translateX(-50%);
    padding: 8px 0;
    background: #111;
    border: 1px solid rgba(184,148,77,0.35);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 10000;
}
/* ホバーで表示 */

.nest-pc-dropdown:hover .nest-pc-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* -----------------------------------------
   DROPDOWN ITEM
----------------------------------------- */

.nest-pc-dropdown-menu a {
    display: flex;
    flex-direction: column;
    padding: 12px 18px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background .2s ease, opacity .2s ease;
}
.nest-pc-dropdown-menu a:last-child {
    border-bottom: none;
}
.nest-pc-dropdown-menu a:hover {
    background: #1d1d1a;
    opacity: 1;
}
.nest-pc-dropdown-menu strong {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .06em;
}
.nest-pc-dropdown-menu small {
    margin-top: 2px;
    color: #a7843e;
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: .12em;
}
/* -----------------------------------------
   CONTACT MENU
----------------------------------------- */

.nest-pc-contact-menu {
    width: 220px;
}
.nest-pc-contact-menu strong {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
}
.nest-pc-contact-menu small {
    color: #aaa;
    font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
    font-size: 10px;
    letter-spacing: .04em;
}
/* =========================================
   HEADER ICONS
========================================= */

.nest-icons {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-left: 8px;
    flex-shrink: 0;
    height: 68px;
}
    
.nest-icons img{width:30px;height:auto;}
    
/* アイコン1個 */

.nest-icons a {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 50px;
    flex-shrink: 0;
    color: #fff !important;
    text-decoration: none;
    opacity: 1;
}
/* アイコン本体 */

.nest-icon {
    position: relative;
    display: block !important;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
/* 文字 */

.nest-icons small {
    display: block !important;
    margin-top: 3px;
    color: #FFF !important;
    font-family: Arial, sans-serif;
    font-size: 7px !important;
    line-height: 1;
    letter-spacing: .08em;
}
/* =========================================
   LOGIN
========================================= */

.nest-user::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 7px;
    width: 8px;
    height: 8px;
    border: 1.5px solid #fff;
    border-radius: 50%;
}
.nest-user::after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: 1px;
    width: 16px;
    height: 9px;
    border: 1.5px solid #fff;
    border-radius: 10px 10px 0 0;
}
/* =========================================
   REGISTER
========================================= */

.nest-register::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 1.5px;
    left: 3px;
    top: 10px;
    background: #fff;
}
.nest-register::after {
    content: "";
    position: absolute;
    width: 1.5px;
    height: 16px;
    left: 10px;
    top: 3px;
    background: #fff;
}
/* =========================================
   CART
========================================= */

.nest-cart {
    width: 18px !important;
    height: 14px !important;
    margin-top: 2px;
    border: 1.5px solid #fff;
    border-top: none;
    transform: skew(-8deg);
}
.nest-cart::before {
    content: "";
    position: absolute;
    left: -4px;
    top: -4px;
    width: 7px;
    height: 1.5px;
    background: #fff;
    transform: rotate(25deg);
}
.nest-cart::after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: -7px;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 10px 0 0 #fff;
    transform: skew(8deg);
}
/* =========================================
   HOVER
========================================= */

.nest-icons a:hover {
    opacity: .65;
}

/* =========================================
   SMARTPHONE
========================================= */

@media screen and (max-width: 700px) {
.nest-icons {
    display: none !important;
}
}
/* PCではハンバーガーを表示しない */
.nest-menu {
    display: none !important;
}

/* スマホでは表示 */
@media screen and (max-width: 700px) {
.nest-menu {
    display: block !important;
    margin-left: auto;
    border: 0;
    background: none;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}
}
/* =========================================
   MOBILE MENU
========================================= */

.nest-mobile-menu {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    width: min(82vw, 360px);
    height: 100vh;
    padding: 80px 28px 30px;
    background: #0b0b0a;
    color: #fff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.25);
    overflow-y: auto;
}
.nest-mobile-menu.open {
    transform: translateX(0);
}
.nest-mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nest-mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.nest-mobile-menu a {
    display: block;
    padding: 17px 0;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.08em;
}
.nest-mobile-menu .menu-en {
    display: block;
    margin-top: 3px;
    color: #a7843e;
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 0.15em;
}
/* 閉じるボタン */

.nest-mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
/* 背景 */

.nest-menu-overlay {
    position: fixed;
    z-index: 9998;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
}
.nest-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}
/* スクロール禁止 */

body.nest-menu-open {
    overflow: hidden;
}
/* =========================================
   鉱物NEST HERO SLIDER
========================================= */

.nest-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #111;
}
.nest-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}
.nest-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.nest-hero-slide picture, .nest-hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
}
.nest-hero-slide img {
    object-fit: cover;
    object-position: center center;
}
/* =========================================
   テキスト
========================================= */

.nest-hero-copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: min(520px, 42%);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.nest-hero-copy h1 {
    margin: 0 0 25px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.08em;
}
.nest-hero-copy h2 {
    margin: 0 0 22px;
    font-size: clamp(18px, 1.6vw, 27px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.08em;
}
.nest-hero-copy p {
    margin: 0 0 28px;
    font-size: clamp(14px, 1.1vw, 18px);
    line-height: 1.9;
    letter-spacing: 0.05em;
}
/* =========================================
   ボタン
========================================= */

.nest-btn {
    display: inline-block;
    padding: 13px 28px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.25);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}
.nest-btn:hover {
    color: #111;
    background: #fff;
}
/* =========================================
   左右ボタン
========================================= */

.nest-hero-prev, .nest-hero-next {
    position: absolute;
    z-index: 5;
    top: 85%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nest-hero-prev {
    left: 25px;
}
.nest-hero-next {
    right: 25px;
}
.nest-hero-prev:hover, .nest-hero-next:hover {
    background: rgba(255,255,255,0.85);
    color: #111;
}
/* =========================================
   ドット
========================================= */

.nest-dots {
    position: absolute;
    z-index: 5;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}
.nest-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
}
.nest-dots button.active {
    background: #fff;
}

/* =========================================
   スマホ
========================================= */

@media screen and (max-width: 767px) {
.nest-hero {
    height: 122.2vw;
    min-height: 550px;
    max-height: 700px;
}
.nest-hero-copy {
    top: 50px!important;
    bottom: auto;
    left: 7%;
    transform: none;
    width: 86%;
}
.nest-hero-copy h1 {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 0.06em;
}
.nest-hero-copy h2 {
    margin-bottom: 14px;
    font-size: 20px!important;
    line-height: 1.7;
    letter-spacing: 0.04em;
}
.nest-hero-copy p {
    margin-top: 30px;
    font-size: 18px!important;
    line-height: 1.7;
}
.nest-btn {
    padding: 11px 20px;
    font-size: 13px;
}
.nest-hero-prev, .nest-hero-next {
    width: 38px;
    height: 38px;
    font-size: 26px;
    line-height: 32px;
}
.nest-hero-prev {
    left: 12px;
}
.nest-hero-next {
    right: 12px;
}
.nest-dots {
    bottom: 20px;
}
}

/* =========================================
   さらに小さいスマホ
========================================= */

@media screen and (max-width: 480px) {
.nest-hero {
    min-height: 570px;
}
.nest-hero-copy h1 {
    font-size: 26px;
}
.nest-hero-copy h2 {
    font-size: 16px;
}
.nest-hero-copy p {
    font-size: 12px;
}
}
/* =========================================
   COMMON SECTIONS
========================================= */

.nest-about, .nest-products, .nest-guide, .nest-room, .nest-category, .nest-choose, .nest-instagram {
    max-width: 1100px;
    margin: auto;
    padding: 20px 18px;
}
.nest-values {
    width: 100%;
    margin: auto;
    padding: 20px 18px;
    background: #fff;
}
.nest-values-in {
    max-width: 1100px;
    margin: auto;
}
/* =========================================
   ABOUT
========================================= */

.nest-about {
    background: #fff;
}
.nest-about h2 {
    font-size: 27px;
    font-weight: 500;
}
.nest-about p {
    font-size: 17px;
    line-height: 2;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.nest-about img {
    height: 250px;
    object-fit: cover;
}
/* =========================================
   PRODUCT
========================================= */

.nest-products {
    background: #fff;
    border-top: 1px solid #e3ded5;
}
.nest-section-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 17px;
}
.nest-section-title h2 {
    margin: 0;
    letter-spacing: 0.2;
    font-size: 24px;
    font-weight: 500;
}
.nest-section-title span {
    clear: both;
    font-size: 15px;
    color: #777;
}
.nest-section-title > a {
    margin-left: auto;
    font-size: 15px;
}
.nest-product-scroll {
    display: flex;
    gap: 13px;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-top: 20px;
    scrollbar-width: thin;
}
/* 商品一覧のスクロールバー */
.nest-product-scroll {
    scrollbar-width: thin;
    scrollbar-color: #EEE #FFF;
}

/* Chrome / Edge / Safari */
.nest-product-scroll::-webkit-scrollbar {
height: 8px;
}
.nest-product-scroll::-webkit-scrollbar-track {
background: #e8e5df;
}
.nest-product-scroll::-webkit-scrollbar-thumb {
background: #b8944d;
border-radius: 10px;
}
.nest-product-scroll::-webkit-scrollbar-thumb:hover {
background: #8f7138;
}
.nest-product {
    position: relative;
    flex: 0 0 220px;
}
.nest-product img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.nest-product h3 {
    margin: 9px 0 2px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #444;
    border-bottom: 1px dotted #AAA;
    padding: 4px 8px;
}
.nest-product p {
    margin: 0 0 5px;
    font-size: 13px;
}
.nest-product strong {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal!important;
    color: #444;
}
.nest-badge {
    position: absolute;
    z-index: 2;
    top: 7px;
    left: 7px;
    padding: 3px 6px;
    background: #fff;
    font-family: Arial, sans-serif;
    font-size: 11px;
}
.nest-badge.pickup {
    color: #a17b35;
}
.nest-badge.new {
    color: #d00000;
}
/* =========================================
   THREE WAYS
========================================= */

.nest-guide {
    background: #fff;
}
.nest-guide > h2 {
    margin: 0 0 20px;
    text-align: center;
    font-size: 27px;
    font-weight: 500;
}
.nest-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.nest-guide-card {
    position: relative;
    min-height: 225px;
    overflow: hidden;
    color: #fff;
    background: #111;
}
.nest-guide-card img {
    height: 225px;
    object-fit: cover;
    filter: brightness(.68);
}
.nest-guide-card > div {
    position: absolute;
    inset: 0;
    padding: 20px;
}
.nest-guide-card h3 {
    margin: 0 0 10px;
    font-size: 23px;
    font-weight: 500;
    color: #FFF;
}
.nest-guide-card h3 small {
    font-family: Arial, sans-serif;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: bold;
}
.nest-guide-card p {
    font-size: 14px;
    color: #FFF;
    line-height: 1.8;
}
.nest-guide-card span {
    position: absolute;
    bottom: 17px;
    padding: 5px 13px;
    border: 1px solid #fff;
    font-size: 14px;
    color: #FFF;
}
/* =========================================
   ROOM
========================================= */

.nest-room {
    text-align: center;
}
.nest-room h2, .nest-category h2, .nest-choose h2 {
    font-size: 27px;
    font-weight: 500;
}
.nest-room p {
    font-size: 16px;
    line-height: 1.9;
}
.nest-before-after {
    max-width: 850px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.nest-before-after > div {
    position: relative;
}
.nest-before-after img {
    height: 280px;
    object-fit: cover;
}
.nest-before-after span {
    position: absolute;
    z-index: 2;
    top: 6px;
    left: 7px;
    padding: 2px 7px;
    background: #fff;
    font-family: Arial, sans-serif;
    font-size: 10px;
}
/* =========================================
   CATEGORY
========================================= */

.nest-category {
    text-align: center;
}
.nest-category > p {
    font-size: 15px;
    color: #777;
}
.nest-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}
.nest-category-grid a {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 4px 12px;
    padding: 10px;
    border: 1px solid var(--border);
    text-align: left;
}
.nest-category-grid img {
    grid-row: 1 / 3;
    height: 100px;
    object-fit: cover;
}
.nest-category-grid b {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-size: 15px;
}
.nest-category-grid small {
    font-size: 12px;
    color: #777;
}
.nest-outline-btn {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid #c7b88e;
    font-size: 13px;
}
/* =========================================
   CHOOSE
========================================= */

.nest-choose {
    text-align: center;
}
.nest-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.nest-choose-grid .fla {
    padding: 8px;
    background: #fff;
    border: 1px solid var(--border);
    word-break: keep-all;
}
.nest-choose-grid a {
    border: 2px solid #CCC;
    border-radius: 12px;
    padding: 2px 6px 2px;
    margin: 0 4px;
}
.nest-choose-grid img {
    height: 125px;
    object-fit: cover;
}
.nest-choose-grid b {
    display: block;
    margin: 8px 0 4px;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-size: 13px;
}
.nest-choose-grid small {
    color: #777;
    font-size: 11px;
}
/* =========================================
   INSTAGRAM
========================================= */

.nest-instagram {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 20px;
    background: #111;
    color: #fff;
}
.nest-instagram-text {
    padding: 10px;
}
.nest-instagram-text h2 {
    font-size: 21px;
    font-weight: 500;
}
.nest-instagram-text p {
    font-size: 14px;
}
.nest-instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}
.nest-instagram-grid img {
    height: 160px;
    margin-top: 40px;
    object-fit: cover;
}
/* =========================================
   VALUES
========================================= */

.nest-values-in {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
    background: #fff;
}
.nest-values-in img {
    margin: 0 auto;
    width: 22%;
    max-width: 90px;
    height: auto;
}
.nest-values b {
    color: #a7843e;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-size: 27px;
}
.nest-values h3 {
    font-size: 15px;
}
.nest-values p {
    color: #666;
    font-size: 15px;
}
/* =========================================
   FOOTER
========================================= */

.nest-footer {
    clear: both;
    display: block;
    padding: 30px 18px;
    background: #0d0d0c;
    color: #fff;
    text-align: center;
}
.nest-footer-logo {
    font-size: 24px;
}
.nest-footer-logo small {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .18em;
}
.nest-footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin: 18px 0;
    font-size: 12px;
}
.nest-footer p {
    color: #999;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
html, body {
    margin: 0 !important;
    padding: 0 !important;
}
.nest-page {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* HEADER */

.nest-header {
    height: 58px;
}
.nest-header-inner {
    padding: 0 14px;
}
.nest-logo {
    font-size: 19px;
}
.nest-logo small {
    font-size: 7px;
}
.nest-pc-nav, .nest-icons {
    display: none;
}
.nest-menu {
    display: block;
    margin-left: auto;
    border: 0;
    background: none;
    color: #fff;
    font-size: 25px;
}
/* HERO */

.nest-hero {
    height: 560px;
}
.nest-hero-copy {
    left: 20px;
    top: 220px;
    width: calc(100% - 40px);
}
.nest-hero-copy h1 {
    font-size: 28px;
}
.nest-hero-copy h2 {
    font-size: 16px;
}
.nest-hero-copy p {
    font-size: 13px;
}
.nest-hero-method {
    gap: 15px;
}
.nest-hero-method b {
    font-size: 20px;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
/* COMMON */

.nest-about, .nest-products, .nest-guide, .nest-room, .nest-category, .nest-choose, .nest-instagram, .nest-values {
    padding: 28px 14px;
}
/* ABOUT */

.nest-about {
    display: block;
}
.nest-about img {
}
.nest-about h2 {
    font-size: 24px;
}
.nest-about p {
    font-size: 16px;
}
/* PRODUCTS */

.nest-product {
    flex: 0 0 205px;
}
.nest-product img {
    height: 205px;
}
.nest-section-title h2 {
    font-size: 22px;
}
.nest-section-title span, .nest-section-title > a {
    font-size: 14px;
}
.nest-product h3 {
    font-size: 13px;
}
.nest-product p {
    font-size: 12px;
}
/* GUIDE */

.nest-guide > h2 {
    font-size: 24px;
}
.nest-guide-grid {
    grid-template-columns: 1fr;
}
.nest-guide-card, .nest-guide-card img {
    min-height: 180px;
    height: 180px;
}
.nest-guide-card h3 {
    font-size: 21px;
}
.nest-guide-card p {
    font-size: 14px;
}
/* ROOM */

.nest-room h2, .nest-category h2, .nest-choose h2 {
    font-size: 24px;
}
.nest-room p {
    font-size: 15px;
}
.nest-before-after {
    grid-template-columns: 1fr;
}
.nest-before-after img {
    height: auto;
}
/* CATEGORY */

.nest-category > p {
    font-size: 14px;
}
.nest-category-grid {
    grid-template-columns: 1fr;
}
.nest-category-grid a {
    grid-template-columns: 100px 1fr;
}
.nest-category-grid img {
    height: 90px;
}
.nest-category-grid b {
    font-size: 14px;
}
.nest-category-grid small {
    font-size: 11px;
}
/* CHOOSE */

.nest-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.nest-choose-grid .fla {
    min-width: 0;
    width: 100%;
}
.nest-choose-grid img {
    height: 105px;
}
.nest-choose-grid b {
    font-size: 12px;
}
.nest-choose-grid small {
    font-size: 10px;
}
/* INSTAGRAM */

.nest-instagram {
    grid-template-columns: 1fr;
}
.nest-instagram-text h2 {
    font-size: 21px;
}
.nest-instagram-text p {
    font-size: 14px;
}
.nest-instagram-grid img {
    height: 70px;
}
/* VALUES */

.nest-values-in {
    grid-template-columns: 1fr 1fr;
}
.nest-values h3 {
    font-size: 14px;
}
.nest-values p {
    font-size: 13px;
}
/* FOOTER */

.nest-footer-links {
    flex-wrap: wrap;
    gap: 10px 16px;
}
}
.sanko {
    border: 1px solid #FFF;
    padding: 8px;
    margin: 10px auto;
    background: rgba(0, 0, 0, 0.3);
}
.sanko small {
    font-size: 16px;
}
.nest-about-text {
    max-width: 950px;
    width: 98%;
}
/* ========================================
   INFORMATION / NEWS
======================================== */

.news-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 35px 18px;
    background: #fff;
}
.news-header {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8d2c8;
}
.news-header h2 {
    margin: 0;
    color: #292622;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.news-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.news-list li {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 11px 5px;
    border-bottom: 1px solid #eeeae3;
    color: #444;
    font-size: 14px;
    line-height: 1.7;
}
.news-list li:last-child {
    border-bottom: none;
}
.news-date {
    flex: 0 0 85px;
    color: #a7843e;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
}
.news-list a {
    color: #444;
    text-decoration: none;
    transition: color 0.25s ease;
}
.news-list a:hover {
    color: #a7843e;
}

/* ========================================
   MOBILE
======================================== */

@media screen and (max-width: 700px) {
.news-section {
    padding: 25px 14px;
}
.news-header {
    margin-bottom: 10px;
}
.news-header h2 {
    font-size: 19px;
}
.news-list li {
    display: block;
    padding: 10px 3px;
    font-size: 13px;
    line-height: 1.7;
}
.news-date {
    display: inline-block;
    margin-right: 10px;
    font-size: 11px;
}
}
.bg_gley {
}
article {
    border-left: #F00;
}
.monthly-select-images {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.monthly-select-images a {
    display: block;
    width: calc(50% - 10px);
}
.monthly-select-images img {
    display: block;
    width: 100%;
    height: auto;
}

/* スマホ */
@media screen and (max-width: 767px) {
.monthly-select-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.monthly-select-images a {
    width: 100%;
}
}
/* ========================================
   MOBILE MENU - NEW DESIGN
======================================== */

.nest-mobile-menu {
    padding: 70px 22px 40px;
}
/* ----------------------------------------
   アカウントメニュー
---------------------------------------- */

.nest-mobile-account {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.18);
}
.nest-mobile-account a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    border-right: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    text-align: center;
}
.nest-mobile-account a:last-child {
    border-right: none;
}
.nest-mobile-account span {
    font-size: 13px;
    letter-spacing: .08em;
}
.nest-mobile-account small {
    margin-top: 2px;
    color: #a7843e;
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: .12em;
}
/* ----------------------------------------
   メニュー共通
---------------------------------------- */

.nest-mobile-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
/* ----------------------------------------
   通常メニュー
---------------------------------------- */

.nest-mobile-simple {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.nest-mobile-simple a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 15px 4px;
    color: #fff;
}
.nest-mobile-simple span {
    font-size: 15px;
    letter-spacing: .08em;
}
.nest-mobile-simple small {
    color: #a7843e;
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: .1em;
}
/* 画像付きメニュー */
.nest-mobile-image-menu {
    margin: 8px 0;
    padding: 0;
}
.nest-mobile-image-menu a {
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #0b0b0a;
}
.nest-mobile-image-menu img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3.5 / 1;
    object-fit: cover;
    margin: 0;
    padding: 0;
}
/* 文字は画像の下に配置 */
.nest-mobile-image-menu-text {
    position: static;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 10px 12px 11px;
    background: #0b0b0a;
    color: #fff;
}
.nest-mobile-image-menu-text strong {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .08em;
}
.nest-mobile-image-menu-text small {
    color: #a7843e;
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: .15em;
}
.nest-mobile-image-menu p {
    font-size: 13px;
    padding: 0px;
    color: #999;
}
/* ----------------------------------------
   CONTACT
---------------------------------------- */

.nest-mobile-contact {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.nest-mobile-contact-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}
.nest-mobile-contact-title span {
    font-size: 15px;
    letter-spacing: .08em;
}
.nest-mobile-contact-title small {
    color: #a7843e;
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: .1em;
}
.nest-mobile-contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.nest-mobile-contact-links a {
    display: flex;
    flex-direction: column;
    padding: 11px;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}
.nest-mobile-contact-links strong {
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: .12em;
}
.nest-mobile-contact-links span {
    margin-top: 3px;
    color: #aaa;
    font-size: 9px;
}
/* ----------------------------------------
   閉じるボタン
---------------------------------------- */

.nest-mobile-close {
    z-index: 10;
}

@media screen and (max-width: 700px) {
.nest-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: auto;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-top: 70px;
    padding-bottom: 100px;
}
}

@media screen and (max-width: 767px) {
.nest-hero-copy {
    text-shadow: 0 2px 4px rgba(0,0,0,0.95), 0 4px 12px rgba(0,0,0,0.85), 0 0 20px rgba(0,0,0,0.65);
}
}
    
    .nest-icons a[aria-label="カート"] small {
    margin-top: 6px !important;
}

.nest-logo-image {width: 75px!important;height: 50px;margin-left:-30px;}
@media screen and (max-width: 700px) {
  .nest-logo-image {width: 60px!important;height: 40px;}
}

.nest-header,
.nest-header *,
.nest-mobile-menu,
.nest-mobile-menu *,
.nest-menu-overlay {
    box-sizing: border-box;
}

@media screen and (max-width:700px) {
    .nest-mobile-menu {
        width: min(82vw, 360px) !important;
        max-width: 360px !important;
        right: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
}

/* =========================================
   鉱物NEST
   MOBILE MENU OVERRIDE
   ========================================= */

@media screen and (max-width: 700px) {

    /* -----------------------------------------
       メニュー本体
    ----------------------------------------- */

    .nest-mobile-menu {
        box-sizing: border-box !important;
        width: 82vw !important;
        max-width: 360px !important;
        right: 0 !important;
        left: auto !important;
        padding: 70px 20px 100px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        background: #0b0b0a !important;
        z-index: 10002 !important;
    }

    .nest-mobile-menu *,
    .nest-mobile-menu *::before,
    .nest-mobile-menu *::after {
        box-sizing: border-box !important;
    }

    .nest-mobile-menu img {
        max-width: 100% !important;
        height: auto !important;
    }

    .nest-mobile-menu a {
        max-width: 100%;
        text-decoration: none !important;
    }

    .nest-mobile-menu a span,
    .nest-mobile-menu a small {
        text-decoration: none !important;
    }


    /* -----------------------------------------
       メニュー本体の不要な線
       ※旧 .open::before / ::after 対策
    ----------------------------------------- */

    .nest-mobile-menu li::before,
    .nest-mobile-menu li::after,
    .nest-mobile-menu.open::before,
    .nest-mobile-menu.open::after {
        content: none !important;
        display: none !important;
        border: none !important;
        width: 0 !important;
        height: 0 !important;
    }


    /* -----------------------------------------
       ハンバーガーメニュー
    ----------------------------------------- */

    .nest-menu {
        position: relative !important;
        z-index: 10001 !important;
    }

    .nest-menu-overlay {
        z-index: 10000 !important;
    }


    /* -----------------------------------------
       旧メニューをNEST内だけ無効化
    ----------------------------------------- */

    .nest-header .nav-tgl-btn,
    .nest-header .nav-tgl-btn.open {
        display: none !important;
    }


    /* -----------------------------------------
       LOGIN / CART / REGISTER
    ----------------------------------------- */

    .nest-mobile-account {
        width: 100% !important;
        grid-template-columns: repeat(3, 1fr) !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255,255,255,0.18) !important;
    }

    .nest-mobile-account a {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px 0 !important;
        color: #fff !important;
        text-align: center !important;
        border-bottom: none !important;
    }

    .nest-mobile-account span {
        position: static !important;
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        color: #fff !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
        letter-spacing: .08em !important;
        white-space: nowrap !important;
        border: none !important;
        text-decoration: none !important;
        transform: none !important;
    }

    .nest-mobile-account small {
        position: static !important;
        display: block !important;
        width: 100% !important;
        margin-top: 2px !important;
        color: #a7843e !important;
        font-family: Arial, sans-serif !important;
        font-size: 8px !important;
        line-height: 1.4 !important;
        letter-spacing: .12em !important;
        transform: none !important;
    }


    /* -----------------------------------------
       通常メニュー
       TOP / SMALL GOODS / INDUSTRIAL
       NATURAL / INSTAGRAM
    ----------------------------------------- */

    .nest-mobile-simple {
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    }

    .nest-mobile-simple a {
        display: flex !important;
        align-items: baseline !important;
        justify-content: space-between !important;
        padding: 15px 4px !important;
        color: #fff !important;
    }

    .nest-mobile-simple span {
        position: static !important;
        display: block !important;
        margin-left: -15px !important;
        margin-top: 0 !important;
        color: #fff !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        letter-spacing: .08em !important;
        white-space: nowrap !important;
        border: none !important;
        text-decoration: none !important;
        transform: none !important;
    }

    .nest-mobile-simple small {
        position: static !important;
        display: block !important;
        margin: 0 !important;
        color: #a7843e !important;
        font-family: Arial, sans-serif !important;
        font-size: 8px !important;
        line-height: 1.4 !important;
        letter-spacing: .1em !important;
        white-space: nowrap !important;
        border: none !important;
        text-decoration: none !important;
        transform: none !important;
    }


    /* -----------------------------------------
       画像付きメニュー
       DISPLAY / STORAGE / LIGHT
    ----------------------------------------- */

    .nest-mobile-image-menu {
        margin: 8px 0 !important;
        padding: 0 !important;
        border-bottom: none !important;
    }

    .nest-mobile-image-menu a {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: #0b0b0a !important;
        border-bottom: none !important;
    }

    .nest-mobile-image-menu img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        aspect-ratio: 3.5 / 1;
        object-fit: cover;
    }

    .nest-mobile-image-menu-text {
        position: static !important;
        display: flex !important;
        align-items: baseline !important;
        justify-content: space-between !important;
        padding: 10px 12px 11px !important;
        background: #0b0b0a !important;
        border: none !important;
    }

    .nest-mobile-image-menu-text span {
        position: static !important;
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #fff !important;
        font-family:
            "Yu Mincho",
            "Hiragino Mincho ProN",
            "Noto Serif JP",
            serif !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
        letter-spacing: .08em !important;
        white-space: nowrap !important;
        border: none !important;
        text-decoration: none !important;
        transform: none !important;
    }

    .nest-mobile-image-menu-text small {
        position: static !important;
        display: block !important;
        margin: 0 !important;
        color: #a7843e !important;
        font-family: Arial, sans-serif !important;
        font-size: 8px !important;
        font-weight: normal !important;
        line-height: 1.4 !important;
        letter-spacing: .15em !important;
        white-space: nowrap !important;
        transform: none !important;
    }

    .nest-mobile-image-menu p {
        margin: 0 !important;
        padding: 0 !important;
        color: #999 !important;
        font-size: 13px !important;
    }


    /* -----------------------------------------
       お問い合わせ
    ----------------------------------------- */

    .nest-mobile-contact {
        position: static !important;
        display: block !important;
        float: none !important;
        clear: both !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px 0 0 !important;
        padding: 17px 4px !important;
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
        transform: none !important;
    }

    .nest-mobile-contact-title {
        position: static !important;
        display: flex !important;
        align-items: baseline !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 12px !important;
        border: none !important;
        transform: none !important;
    }

    .nest-mobile-contact-title span,
    .nest-mobile-contact-title small {
        position: static !important;
        display: block !important;
        margin: 0 !important;
        border: none !important;
        text-decoration: none !important;
        box-shadow: none !important;
        background-image: none !important;
        transform: none !important;
    }

    .nest-mobile-contact-title span {
        color: #fff !important;
        font-size: 15px !important;
        letter-spacing: .08em !important;
        white-space: nowrap !important;
    }

    .nest-mobile-contact-title small {
        color: #a7843e !important;
        font-family: Arial, sans-serif !important;
        font-size: 8px !important;
        letter-spacing: .1em !important;
        white-space: nowrap !important;
    }

    .nest-mobile-contact-links {
        position: static !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        width: 100% !important;
        height: auto !important;
        margin: 12px 0 0 !important;
        transform: none !important;
    }

    .nest-mobile-contact-links a {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 11px !important;
        float: none !important;
        border: 1px solid rgba(255,255,255,0.25) !important;
        border-bottom: 1px solid rgba(255,255,255,0.25) !important;
        transform: none !important;
    }

    .nest-mobile-contact-links strong {
        font-family: Arial, sans-serif !important;
        font-size: 12px !important;
        letter-spacing: .12em !important;
    }

    .nest-mobile-contact-links span {
        position: static !important;
        display: block !important;
        margin-top: 3px !important;
        color: #aaa !important;
        font-size: 9px !important;
        transform: none !important;
    }


    /* -----------------------------------------
       閉じるボタン
       旧 .open の疑似要素を完全に無効化
    ----------------------------------------- */

    .nest-mobile-close {
        background: transparent !important;
        border: none !important;
        color: #fff !important;
    }

    .nest-mobile-close::before,
    .nest-mobile-close::after {
        content: none !important;
        display: none !important;
        border: none !important;
        width: 0 !important;
        height: 0 !important;
        background: none !important;
    }

}

    /* =========================================
   NEST VALUES
   ========================================= */

.nest-values h3 {
    margin: 20px 0 12px;
    padding: 0;
}

.nest-values h3 a {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border: 1px solid #b8944d;
    border-radius:14px;
    color: #292622;
    background: transparent;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    transition:
        background-color .3s ease,
        color .3s ease;
}

.nest-values h3 a:hover {
    background: #b8944d;
    color: #fff;
}

.nest-values-arrow {
    margin-right: 8px;
    color: #b8944d;
    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
}

.nest-values h3 a:hover .nest-values-arrow {
    color: #fff;
}


.nest-values-in p {text-align:center;line-height:1.8;color:363636;}
.nest-values-in h3 a{line-height:1.8;}
.nest-footer p{text-align:center;line-height:1.8;}
.nest-footer-logo{line-height:1.6;}
.nest-footer-links a{color:#FFF;}
.nest-instagram-text { padding: 10px;}
.nest-instagram-text h2 {line-height:1.8;}
.nest-instagram-text p {font-size: 14px; color:#FFF; padding:10px 0 ;margin-bottom:20px;}
.nest-instagram-text a{color:#FFF;}    
.nest-instagram-text a:hover{color:#FFF;text-decoration:none;}  
        
 /* =========================================
   CATEGORY MAIN VISUAL
   飾る / ct70
========================================= */

.nest-category-mainvisual {
    width: 100%;
    margin: 0 auto 35px;
}

.nest-category-mainvisual picture {
    display: block;
    width: 100%;
}

.nest-category-mainvisual img {
    display: block;
    width: 100%;
    height: auto;
}


/* -----------------------------------------
   スマホ
----------------------------------------- */

@media screen and (max-width: 700px) {

    .nest-category-mainvisual {
        margin-bottom: 25px;
    }

}
        
       @media screen and (max-width: 700px) {

    .nest-category-mainvisual {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        margin-bottom: 25px !important;
    }

    .nest-category-mainvisual picture,
    .nest-category-mainvisual img {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
    }

}
       /* =========================================
   CATEGORY INTRO
   飾るカテゴリ導入
========================================= */

.nest-category-intro {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 20px;
    padding: 0 5px 10px;
    background-color: #f5f3ee;
}


/* -----------------------------------------
   タイトル
----------------------------------------- */

.nest-category-intro-title {
    text-align: center;
    padding: 5px 10px 10px;
}

.nest-category-intro-title h2 {
    margin: 15px 0 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .08em;
    color: #292622;
}

.nest-category-intro-title p {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 2;
    letter-spacing: .08em;
    text-align: center;
    color: #55504a;
}


/* -----------------------------------------
   飾り方 3カード
----------------------------------------- */

.nest-display-style {
    display: grid;
    grid-template-columns: repeat(3, 150px);
    justify-content: center;
    gap: 35px;
        margin-top:0;
}


.nest-display-style-item {
    display: block;
    color: #292622;
    text-decoration: none;
          margin-top:0;
}


/* -----------------------------------------
   PC画像
----------------------------------------- */

.nest-display-style-image {
    width: 150px;
    height: auto;
    overflow: hidden;
    background: #eee;
    margin: 0 auto;
}


.nest-display-style-image img {
    display: block;
    width: 100%;
    height: auto;
}


.nest-display-style-item:hover
.nest-display-style-image img {
    transform: scale(1.03);
}


/* -----------------------------------------
   カード文字
----------------------------------------- */

.nest-display-style-text {
        border-top:#000 1px solid;
    position: relative;
    padding: 13px 5px 14px;
    text-align: center;
}


.nest-display-style-text p {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: .08em;
    color: #999;
}


.nest-display-style-text strong {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .12em;
        margin:0;padding:0;
}


/* -----------------------------------------
   PICK UP
----------------------------------------- */

.nest-display-pickup {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding: 10px;
    background: #f5f2ec;
    color: #292622;
    text-decoration: none;
}


.nest-display-pickup-image {
    flex: 0 0 38%;
    overflow: hidden;
}


.nest-display-pickup-image img {
    display: block;
    width: 100%;
    object-fit: cover;
}


.nest-display-pickup-text {
    padding: 8px 35px 8px 15px;
}


.nest-display-pickup-label {
    display: block;
    margin-bottom: 5px;
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
    color: #b8944d;
}


.nest-display-pickup-text h3 {
    margin: 0 0 7px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .08em;
}


.nest-display-pickup-text p {
    margin: 0;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: .05em;
    color: #55504a;
}


.nest-display-pickup-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #b8944d;
    color: #fff;
    font-size: 20px;
    line-height: 1;
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 700px) {

    .nest-category-intro {
        padding: 0 14px 15px;
    }


    .nest-category-intro-title {
        padding: 10px 5px 10px;
    }


    .nest-category-intro-title h2 {
       
        font-size: 20px;
        line-height: 1.7;
        letter-spacing: .06em;
    }


    .nest-category-intro-title p {
        margin: 0;
        padding: 0;
        font-size: 12px;
        line-height: 2;
    }


    /* -----------------------------------------
       3カード
    ----------------------------------------- */

    .nest-display-style {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }


    /* -----------------------------------------
       スマホ画像
    ----------------------------------------- */

    .nest-display-style-image {
        width: 100%;
        height: auto;
        margin: 0 auto;
        overflow: hidden;
    }


    .nest-display-style-image img {
        display: block;
        width: 100%;
        height: auto;
    }


    /* -----------------------------------------
       カード文字
    ----------------------------------------- */

    .nest-display-style-text {
        padding: 5px 2px 5px;
    }


    .nest-display-style-text p {
        margin-bottom: 6px;
        font-size: 10px;
        line-height: 1.6;
    }


    .nest-display-style-text strong {
        font-size: 12px;
        letter-spacing: .08em;
    }


    .nest-display-style-text span {
        margin-left: 2px;
        font-size: 13px;
    }


    /* -----------------------------------------
       PICK UP
    ----------------------------------------- */

    .nest-display-pickup {
        margin-top: 18px;
        padding: 8px;
    }


    .nest-display-pickup-image {
        flex-basis: 38%;
    }


    .nest-display-pickup-text {
        padding: 6px 28px 6px 12px;
    }


    .nest-display-pickup-label {
        margin-bottom: 3px;
        font-size: 12px;
    }


    .nest-display-pickup-text h3 {
        margin-bottom: 5px;
        font-size: 14px;
        letter-spacing: .05em;
    }


    .nest-display-pickup-text p {
        font-size: 10px;
        line-height: 1.7;
    }


    .nest-display-pickup-arrow {
        right: 8px;
        width: 25px;
        height: 25px;
        font-size: 18px;
    }

}
      
