@charset "utf-8";


/* ========================
   Base & Reset
======================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #232323;
    line-height: 1.6;
    background-color: #fdfdfd;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#root a,
#root a:hover {
    color: red;
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    margin-bottom: 40px;
}

.brsp {
    display: block;
}

.bold {
    font-weight: bold;
    padding-right: 8px;
}

.panlist {
    font-size: clamp(12px, 3vw, 14px);
}

#page-top {
    display: none;
}

.shoppic a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    /* マウスホバー時に虫眼鏡アイコン */
}

.shoppic img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.shoppic a:hover img {
    transform: scale(1.03);
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    color: #fdfdfd !important;
}

.mySwiper .swiper-pagination-bullet-active {
    background: #ff4500 !important;
}

.mySwiper {
    padding-bottom: 32px;
}


@media screen and (min-width: 1100px) {
    section {
        margin-bottom: 80px;
    }

    .brsp {
        display: none;
    }

    #page-top {
        display: block;
        right: 1%;
        font-size: 77%;
        position: fixed;
        bottom: 2%;
        z-index: 9999;
        transition: opacity 0.4s, visibility 0.4s;
        opacity: 1;
        visibility: visible;
    }

    #page-top.hide {
        opacity: 0;
        visibility: hidden;
    }

    #page-top a {
        background: #666;
        text-decoration: none;
        color: #fff;
        width: 110px;
        padding: 10px 0;
        text-align: center;
        display: block;
        border-radius: 5px;
    }

    .nav_wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: baseline;
        gap: 16px;
    }
}

/* ==========================================================================
   ハンバーガーメニュー
   ========================================================================== */
:root {
    --btn-size: 48px;
    --bar-width: 24px;
    --bar-height: 2px;
    --bar-color: #232323;
    --speed: 0.3s;
}

.header-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px 0;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #E6001E;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.hamburger,
.nav-overlay {
    display: none;
}

/* ==========================================================================
   sp &tablet responsive
   ========================================================================== */
@media (max-width: 1100px) {

    .hamburger {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 100;
        width: var(--btn-size);
        height: var(--btn-size);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .hamburger-bar {
        display: block;
        width: var(--bar-width);
        height: var(--bar-height);
        background-color: var(--bar-color);
        transition: transform var(--speed), opacity var(--speed);
        border-radius: 2px;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 80;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--speed);
    }

    /* ハンバーガー変形アニメーション */
    .hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* ナビゲーションをドロワー化 */
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 90;
        width: 50%;
        height: 100vh;
        background-color: #fdfdfd;
        padding: 80px 20px 20px;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform var(--speed) ease-in-out;
    }

    .nav a {
        display: block;
        padding: 15px 0;
        margin-left: 0;
        border-bottom: 1px solid #eee;
    }

    .hamburger[aria-expanded="true"]~.nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger[aria-expanded="true"]~.header-inner .nav {
        transform: translateX(0);
    }
}

/* ========================
   Header
======================== */
.header {
    border-bottom: 1px solid #ccc;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: clamp(150px, 20vw, 280px);
    font-weight: bold;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.cta_wrap {
    text-align: right;
}

.header_cta {
    display: none;
}

.store-title {
    width: 100%;
    display: inline-block;
    border-bottom: none;
    background-image: linear-gradient(to right, #E6001E 0%, #E6001E 30%, #ccc 30%, #ccc 100%);
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-bottom: 16px;
}

.store-title h1 {
    font-size: clamp(24px, 2vw, 40px);
    padding: 32px 0 8px;
    text-align: center;
}

.telbtn {
    text-align: center;
}

@media screen and (min-width: 1100px) {
    .store-title {
        margin-bottom: 40px;
    }

    .header_cta {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ========================
   Notice (お知らせ)
======================== */
.notice {
    background-color: #eee;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    flex-direction: column;
}

.notice-label {
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.news_title {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
}

.news_text {
    font-size: clamp(12px, 2vw, 14px);
}

.news_list {
    list-style: none;
    padding-left: 0;
    width: 100%;
    background: #fdfdfd;
    padding: 8px;
    height: 185px;
    overflow-y: scroll;
}

.news_item {
    padding-top: 8px;
}

.newscate_group {
    display: inline-block;
}

.shiro {
    background-color: #fdfdfd;
    border: 1px solid #ff8080;
    border-radius: 16px;
    padding: 2px 8px;
    font-size: clamp(12px, 2vw, 14px);
    text-align: center;
    color: #ff8080;
}

.kuro {
    background-color: #ff8080;
    border-radius: 16px;
    padding: 2px 8px;
    font-size: clamp(12px, 2vw, 14px);
    text-align: center;
    color: #fdfdfd;
}

@media screen and (min-width: 769px) {
    .newscate_group {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
    }
}

/* ========================
   Action Area (ボタン)
======================== */
.action-area {
    text-align: center;
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.6);
    justify-content: center;
    margin-bottom: 0;
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex: 1;
}

.btn {
    flex: 1;
    text-align: center;
    padding: 16px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: bold;
    border: 3px solid #E6001E;
    background: #fdfdfd;
    box-shadow: 0 4px 8px rgba(201, 201, 201, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #E6001E;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline,
.headbtn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    /* margin: 10px 0; */
    font-size: clamp(16px, 3vw, 24px);
    font-weight: bold;
    background: linear-gradient(135deg, #E6001E, #E6001E);
    box-shadow: 0 4px 8px rgba(201, 201, 201, 0.4), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    color: #fdfdfd;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.headbtn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    font-size: clamp(16px, 3vw, 20px);
    white-space: nowrap;
}

.btn-outline:hover,
.headbtn-outline:hover {
    background: linear-gradient(135deg, #aa0017, #a10016);
}

.store-info {
    width: 100%;
    color: #555;
    background-color: #fdfdfd;
    padding: 8px;
}

.store-info h1 {
    font-size: clamp(18px, 3vw, 24px);
}

.btn-outline,
.btn-primary {
    max-width: 600px;
    margin: 0 auto;
}

.action_teltime {
    padding-top: 4px;
    font-size: clamp(12px, 3vw, 14px);
}

@media screen and (min-width: 1100px) {
    .action-area {
        position: static;
        display: block;
        margin-bottom: 24px;
    }

    .action-buttons {
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        background-color: transparent;
    }

    .action_teltime {
        padding-top: 8px;
    }
}

/* ========================
   Map Area (外観・マップ)
======================== */
.map_area {
    margin-bottom: 40px;
    padding: 8px;
    border-radius: 8px;
}

.map_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 8px;
}

.store_contents,
.map_item {
    width: 100%;
    margin-bottom: 32px;
    flex: 1;
}

.store_contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

.map_item iframe {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
}

.img_area img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.info_wrapper {
    display: block;
}

@media screen and (min-width: 769px) {
    .map_wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: row;
        gap: 32px;
    }

    .store_contents,
    .map_item {
        margin-bottom: 0;
    }


    .store_contents {
        gap: 32px;
    }

    .map_area {
        padding: 24px;
    }

    .info_wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ========================
   Manager Comment
======================== */
.manager-comment {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    padding: 8px;
}

.manager-icon {
    width: clamp(150px, 2vw, 200px);
    margin: 0 auto;
}

.manager-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.manager-title {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.manager-desc {
    font-size: 0.9rem;
    color: #666;
    padding-top: 8px;
}

.txt_wrap {
    padding: 8px;
    border: 1px solid #ffc4cc;
    border-radius: 8px;
}

.about_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 0;
}

.shopimg_box {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.shopTxt {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
    padding-bottom: 24px;
}

.about_title {
    text-align: center;
}

@media screen and (min-width: 769px) {
    .manager-comment {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .about_wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        padding: 8px;
    }

    .manager-desc {
        font-size: 1rem;
    }

    .txt_wrap {
        padding: 16px;
    }

    .shopTxt {
    padding-bottom: 0;
    }
}
/* ========================
   Services
======================== */
.section-title {
    font-size: 24px;
    color: #232323;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    font-weight: bold;
    border-bottom: none;
    background-image: linear-gradient(to right, #E6001E 0%, #E6001E 30%, #ccc 30%, #ccc 100%);
    background-size: 100% 2px;
    /* 線の太さを 2px に指定 */
    background-repeat: no-repeat;
    background-position: bottom;
}

.services {
    margin-bottom: 40px;
}

.services-grid {
    display: block;
}

.service-card {
    background: #fdfdfd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
}

.service_img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service_txt {
    font-size: clamp(14px, 2vw, 16px);
    text-align: left;
    padding-bottom: 16px;
}

.contents_wrap {
    padding: 8px;
}

.contents_title {
    text-align: center;
    padding: 16px 0;
}

@media screen and (min-width: 769px) {
    .services {
        margin-bottom: 80px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 16px 0;
    }

    .contents_title {
        text-align: center;
        padding: 16px 0 24px;
    }
}

/* ========================
   Inventory & Cases
======================== */
.inventory-cases {
    margin-bottom: 40px;
}

.category-box,
.cases-box {
    min-width: 0;
}

.category-box {
    flex: 1;
    padding: 40px 8px;
    background-color: #fafafa;
}

.case-card {
    flex: 1;
    padding: 40px 16px;
    background-color: #fdfdfd;
}

.cate_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.cate_item {
    width: 100%;
    box-sizing: border-box;
    background-color: #fdfdfd;
}

.case-wrapper,
.case_contents,
#rss-office-case {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.case_contents img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cate_img {
    margin: 0 auto;
    width: 80%;
}

.cate_img img {
    width: 100%;
    height: auto;
    display: block;
}

.cate_name h3 {
    font-size: clamp(12px, 2vw, 14px);
    text-align: center;
    padding: 8px 0;
}

.case-wrapper,
.category-box {
    flex: 1;
}

.case_contents {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

.feed_case_item {
    flex: 1 1 calc(50% - 8px);
    box-sizing: border-box;
    padding: 8px;
}

.feed_case_title {
    font-size: clamp(14px, 2vw, 18px);
}

.feed_case_date {
    font-size: clamp(12px, 2vw, 14px);
}

.feed_case_pic {
    position: relative;
}

.feed_case_taxonomy {
    position: absolute;
    bottom: 0;
    display: block;
}

.taxonomy-item {
    padding: 5px;
    background: #404040;
    font-size: 10px;
    display: inline-block;
    color: #fdfdfd;
}

@media screen and (min-width: 769px) {
    .cate_wrap {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 16px;
        align-items: start;
        margin-bottom: 40px;
    }

    .case_contents {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: row;
        gap: 16px;
    }

    .category-box {
        padding: 40px;
    }

    .feed_case_item {
        padding: 16px;
    }
}

/* ========================
   service area
======================== */
.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.area-list li {
    background: #f6f5f5;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.area-sub-title {
    padding-top: 24px;
}

.area-group-title {
    padding-bottom: 8px;
}

.area_contents {
    padding-top: 8px;
}

.area-group {
    padding-top: 24px;
}

@media screen and (min-width: 769px) {
    .area_contents {
        padding-top: 16px;
    }
}

/* ========================
   cta
======================== */
.shop_cta {
    position: relative;
    /* 子要素や疑似要素の基準点にする */
    width: 100%;
    padding: 80px 20px;
    /* 上下の余白 */
    text-align: center;
    overflow: hidden;
    margin: 40px auto;
}

.shop_cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.119happy.com/ws/images/sakura/004.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
    z-index: 1;
}

.cta_wrapper {
    max-width: 800px;
    position: relative;
    z-index: 2;
    background-color: #fdfdfd;
    border-radius: 8px;
    margin: 0 auto;
    padding: 16px;
}

.shop_cta h2 {
    font-size: clamp(16px, 3vw, 24px);
    margin-bottom: 15px;
    font-weight: bold;
}

.formwrap {
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: bold;
    background: linear-gradient(135deg, #E6001E, #F00);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(201, 201, 201, 0.4), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    color: #fdfdfd;
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 16px;
}

.formwrap:hover {
    background: linear-gradient(135deg, #E6001E, #F00);
    transform: scale(1.1);
}

.fas.fa-phone-alt {
    font-size: clamp(16px, 2vw, 24px);
    color: #E6001E;
    padding-right: 8px;
}

.telwrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.headertelnum,
.telnum {
    font-weight: bold;
    color: #E6001E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.telnum {
    font-size: clamp(28px, 2vw, 32px);
}

.headertelnum {
    font-size: clamp(24px, 3vw, 30px);
}

.teltime {
    display: none;
}

@media screen and (min-width: 1100px) {
    .formwrap {
        padding: 16px 40px;
    }

    .teltime {
        display: block;
        font-size: clamp(10px, 3vw, 12px);
        padding-top: 4px;
    }
}

/* ========================
   Footer
======================== */
.footer {
    padding: 40px 20px 80px;
    margin-top: 40px;
    background-color: #f8f8f8;
}

.footer_container {
    padding: 24px 8px;
    background-color: #fdfdfd;
    text-align: center;
}

.footerChild {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: start;
    gap: 32px 16px;
    box-sizing: border-box;
    list-style: none;
    padding: 16px 0;
    margin: 0;
}

.shopbox .footerChild li {
    text-align: center;
    min-width: 0;
}

.footerChild a {
    font-weight: bold;
}

.footerChild li img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.permission {
    padding: 40px 0;
}

.permission ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop_phone {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    background-color: #f6f5f5;
    padding: 4px 8px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.fas.fa-phone-alt.footer_phone {
    color: #232323;
    font-size: clamp(10px, 2vw, 12px);
    padding-right: 0;
    transition: all 0.3s ease;
}

.shop_phone:hover {
    color: #E6001E;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.shopname {
    border-bottom: none;
    background-image: linear-gradient(to right, #E6001E 0%, #E6001E 30%, #ccc 30%, #ccc 100%);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    padding-bottom: 4px;
}

.shopname:hover {
    color: #E6001E;
}

.footerChild li img,
.footerChild li a {
    transition: all 0.3s ease;
}

.footerChild li:hover img {
    opacity: 0.8;
}

.footertel {
    font-size: clamp(12px, 3vw, 18px);
}

.tomizawa_num {
    padding: 4px 0;
    border-bottom: 1px solid #ccc;
}

.contents_num li {
    padding-top: 8px;
}

@media screen and (min-width: 1100px) {
    .footerChild {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 0 32px;
    }

    .shop_phone {
        padding: 4px 24px;

    }

    .permission {
        padding: 80px 0 0;
    }

}