@charset "UTF-8";

html {
}

body {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.6rem;
    color: #7e5f4b;
    line-height: 1.8;
    letter-spacing: 0.02em;
    min-width: 320px;
    background-color: #fff;
    background-image: url("../images/back_pattern.webp");
    background-size: 300px;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}

.gothic {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.06em;
}

img {
    width: 100%;
    vertical-align: bottom;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
}

h2 {
    height: 72px;
}

h2 img {
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.head-logo {
    position: fixed;
    top: 40px;
    left: 40px;
    width: 80px;
    z-index: 98;
}

.fv-container {
    position: relative;
    padding: 12px 12px 0;
}

.fv-img {
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}

.fv-ttl {
    position: absolute;
    left: 50%;
    bottom: -6%;
    transform: translateX(-50%);
    width: 80%;
}

.copy-container {
    max-width: 640px;
    margin-inline: auto;
    padding: 0 20px;
}

.copy-container p {
    font-size: 2rem;
    text-align: center;
}

.furniture-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 calc(50% - (1080px / 2));
}

.furniture-container .illust {
    position: absolute;
    top: -90px;
    right: calc(50% - (1080px / 2));
    width: 300px;
    z-index: -1;
}

.furniture-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 40px;
}

.shop-box {
    display: block;
    padding: 4px;
    background-color: #d3847a;
    border-radius: 20px;
}

.goods .shop-box {
    background-color: #4f9492;
}

.col .swiper-slide,
.col .shop-box {
    max-width: 280px;
}

.shop-img {
    border-radius: 16px;
    overflow: hidden;
}

.shop-img img {
    transition: 0.3s;
}

.shop-box:hover .shop-img img {
    transform: scale(1.1);
}

.shop-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 16px;
}

.col .swiper-slide .shop-inner {
    padding: 12px;
}

.shop-name span {
    display: inline-block;
    font-size: 1.2rem;
    color: #d3847a;
    line-height: 1;
    padding: 4px;
    background-color: #fff;
}

.goods .shop-name span {
    color: #4f9492;
}

.shop-name h3 {
    color: #fff;
    line-height: 1.2;
    margin-top: 0.4em;
}

.shop-name h3 small {
    font-size: 85%;
}

.shop-arw {
    width: 32px;
}

.other {
    padding-left: calc(50% - (1200px / 2));
}

.other-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 24px;
    padding: 80px 0 80px 60px;
    background-color: #f8f3f1;
    border-radius: 80px 0 0 80px;
}

.other-container .illust {
    position: absolute;
    top: 10px;
    right: calc(50% - (1080px / 2));
    width: 250px;
}

.low .other-container {
    padding: 0 0 0 60px;
    background-color: unset;
}

.other-container .col.swiper {
    padding: 0 calc(50vw - (1000px / 2)) 0 40px;
}

.other .swiper-button-next,
.other .swiper-button-prev,
.other .swiper-pagination {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    margin-top: unset !important;
}

.other .swiper-button-next,
.other .swiper-button-prev {
    width: 32px !important;
    height: unset !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: none !important;
}

.other .swiper-button-prev img {
    transform: scale(-1, 1);
}

.other .swiper-nav,
.other .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
}

.other .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: unset !important;
    border-radius: 999px !important;
    transition: 0.3s;
    background-color: #d3847a !important;
}

.goods .swiper-pagination-bullet {
    background-color: #4f9492 !important;
}

.other .swiper-pagination-bullet-active {
    width: 20px !important;
}

.other .swiper-nav {
    gap: 20px;
}

.other .swiper-pagination {
    gap: 8px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b7d5d5c8;
    cursor: zoom-out;
    z-index: 99;
    display: none;
}

.overlay.active {
    display: block;
}

.modal-container {
    position: relative;
}

.modal-close {
    position: fixed;
    top: calc(50% - 350px);
    left: calc(50% + 500px);
    width: 60px;
    height: 60px;
    border: none;
    background: #4f9492;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

.modal-close::before,
.modal-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 3px;
    background: #fff;
}

.modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
    transform: translate(-50%, -50%) rotate(135deg);
}

.modal-close.active {
    display: block;
}

.modal-item,
.lowshop-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1080px;
    background: #fff;
    border-radius: 80px;
}

.lowshop-container {
    margin-inline: auto;
    padding: 80px;
}

.modal-item {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    max-height: 90%;
    padding: 0 80px;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: scroll;
    z-index: 101;
}

.modal-item.open {
    height: auto;
    padding: 80px;
    opacity: 1;
}

.modal-item h3,
.lowshop-container h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 12px;
    font-size: 3.2rem;
    color: #4f9492;
    line-height: 1;
}

.modal-item h3 span,
.lowshop-container h3 span {
    display: inline-block;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1;
    padding: 0.4em;
    background-color: #4f9492;
}

.product {
    display: flex;
    align-items: center;
    gap: 40px;
}

.product-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-img {
    align-self: flex-start;
    width: 330px !important;
    border-radius: 20px;
    border: 1px solid #7e5f4b38;
    overflow: hidden;
}

.lowshop .product-img {
    width: 50% !important;
}

.product .swiper-nav {
    position: absolute;
}

.product .swiper-button-prev {
    left: -14px;
    transform: scale(-1, 1);
}

.product .swiper-button-next {
    right: auto;
    left: 388px;
}

.modal-item .product .swiper-button-next {
    left: 316px;
}

.product .swiper-button-prev img,
.product .swiper-button-next img {
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
}

.product-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0 0.4em;
    padding: 0 12px;
}

.product-ttl span {
    font-size: 1.2rem;
    line-height: 1;
    color: #4f9492;
    padding: 0.3em 0.6em;
    border: 1px solid #4f9492;
    border-radius: 999px;
}

.product-ttl h4 {
    font-size: 2rem;
    line-height: 1.2;
    color: #4f9492;
    margin-top: 0.4em;
}

.product-ttl h4 sub {
    font-size: 1.4rem;
}

.product-inner h5 {
    flex: auto;
    font-size: 2.4rem;
    text-align: right;
    line-height: 1.2;
}

.product-inner h5 small {
    font-size: 1.4rem;
}

.product-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(100% - 370px);
}

.product-main p {
    width: 100%;
    font-size: 1.4rem;
}

.product-main > p {
    padding: 0 12px;
}

.product-main p.kome {
    text-align: right;
    color: #7d7d7d;
}

.product-main hr {
    width: 100%;
}

.product-tel {
    display: flex;
    flex: auto;
    justify-content: flex-end;
}

.product-tel p {
    padding: 8px 20px;
    text-align: right;
    border-radius: 12px;
    background-color: #f3f3f3;
    font-size: 1.4rem;
    color: #7d7d7d;
}

.product-tel p a {
    pointer-events: none;
    text-decoration: none;
    color: #7d7d7d;
}

.notes-container p {
    font-size: 1.4rem;
    text-align: center;
}

footer {
    position: relative;
    padding: 0 12px 12px;
}

.low footer {
    margin-top: 100px;
}

.foot-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px 20px;
    background-color: #e6c7bd;
    border-radius: 80px 80px 0 0;
}

.foot-logo {
    width: 100px;
}

.service-btn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 220px;
    z-index: 11;
}

.service-btn a {
    display: block;
    border-radius: 50%;
    transition: 0.4s;
}

.service-btn a:hover {
    transform: scale(0.9);
}

.service-txt {
    transition: 0.4s;
}

.service-btn a:hover .service-txt {
    opacity: 0.6;
}

.service-back {
    position: absolute;
    inset: 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.service-txt {
    position: relative;
    z-index: 1;
}

.foot-copy span {
    display: block;
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
}

.btn-main {
    width: 300px;
    margin-inline: auto;
}

.btn-main a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    background: #d3847a;
    border-radius: 999px;
    transition: 0.3s;
    overflow: hidden;
}

.btn-main a:hover {
    background: #b46c63;
}

.btn-main a img {
    display: block;
    width: 28px;
    margin-right: -28px;
    mix-blend-mode: lighten;
    position: relative;
    transform: scale(-1, 1);
}

.btn-main a span {
    display: block;
    color: #fff;
    width: 100%;
    font-size: 2rem;
    text-align: center;
    position: relative;
}

.lowfv-container {
    padding: 80px 20px 0;
}

.lowfv-container h2 img {
    object-position: center center;
}

.lowshop-container h3 {
    color: #d3847a;
}

.lowshop-container h3 span {
    background-color: #d3847a;
}

.lowshop-container .product-ttl span {
    color: #d3847a;
    border: 1px solid #d3847a;
}

.lowshop-container .product-ttl h4 {
    color: #d3847a;
}
