@charset "utf-8";
/*================================
common
================================*/
:root {
    --primary-beige: #FFF6EF;
    --primary-brown: #A58974;
    --primary-darkBrown: #605146;
    --primary-white: #FFFFFF;
    --primary-black: #0F0E0E;
    --primary-yellow: #FFE7B2;
    --primary-pink: #FFE1EC;
    --primary-green: #BCE5B4;
    --primary-blue: #D1EAEA;
    --primary-lightYellow: #FAF8D7;
    --contentWidth: 89.3%;
    --contentPadding: 5.3%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Zen Maru Gothic',
        'Zen Old Mincho',
        'Arial';
    font-style: normal;
    color: var(--primary-darkBrown,#605146);
    background-color: var(--primary-beige,#FFF6EF);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.section__topic {
    color: var(--primary-brown);
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: clamp(3.2rem, 4vw, 4.8rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 auto;
}

/* common pc */
@media screen and (min-width: 769px) {
    .section__topic {
        font-size: clamp(3.2rem, 4vw, 4.8rem);
    }
    
}
/* pc 769px */

/*================================
header
================================*/
.header {
    padding: 0 4% 0 5.3%;
    height: 95px;
}

.header__inner {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__btn {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header__logo,
.nav__logo {
  max-width: 100px;
}

.instagramIcon {
    width: 26px;
}

/* navの初期表示 */
.nav {
    background: rgba(255, 255, 255, 0.90);
    width: 100%;
    height: 100vh;
    padding: 40px 5.3%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__btn {
    width: 20px;
}

.nav__list {
    margin-top: 33px;
}

.nav__item {
    color: var(--primary-black,#0F0E0E);
    text-align: left;
    font-size: 1.6rem;
    margin-top: 27px;
}

.nav__list img {
    padding-right: 20px;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

/* header pc */
@media screen and (min-width: 900px) {
    .header {
        max-width: 1440px;
        height: 90px;
        margin: 0 auto;
        /* padding: 27px 50px 30px 27px; */
    }


    .header__logo {
        width: 140px !important;
        min-width: 140px;
    }

    .img__logo {
        width: 140px !important;
    }

    .nav__header {
        display: none;
    }

    .nav {
        background: transparent;/* 背景を透明にしてねトランスペアレント */
        width: auto;
        height: auto;
        padding: 0;
        position: static;/* positionfixedを打ち消すために上書き */
        transform: translateX(0);
    }

    .nav__item {
        margin: 0 0 0 32px;
        color: var(--primary-darkBrown);
        text-align: center;
        font-size: 1.6rem;
        line-height: 1;
    }

    .nav__list {
        margin-top: 0;
        display: flex;
        align-items: center;
        margin-right: 50px;
    }

    .flower {
        display: none;
    }

    .header__right {
        display: flex;
        align-items: center;

    }

    .btn-menu {
        display: none;
    }
}
/* pc 769px */

/*================================
Article header
================================*/
.mainImg__pc {
    display: none;
}

.mainImg__sp {
    width: 100%;
}

.article__header {
    position: relative;
}

.sliderArea {
  position: absolute; /* メインビジュアルの上に配置 */
  bottom: 10%; /* 位置は調整してね */
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 10;
}

.slider {
  display: flex;
  animation: slide-left 20s linear infinite;
}

.cut-img {
  width: auto; /* 切り抜き画像のサイズに応じて調整 */
  height: 150px;
  margin-right: 12px;
  object-fit: contain;
  animation: float 2.5s ease-in-out infinite;
}

/* スマホ非表示クラス（sp-hide） */
/* .sp-hide {
  display: none;
}

@media (min-width: 768px) {
  .sp-hide {
    display: inline;
  }
} */

/* スライドアニメーション */
@keyframes slide-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 上下にゆれる動き */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 上に10pxふわっと */
  }
}

/* 画像ごとにアニメーション開始のタイミングを少しずらす */
.cut-img:nth-child(1) { animation-delay: 0s; }
.cut-img:nth-child(2) { animation-delay: 0.5s; }
.cut-img:nth-child(3) { animation-delay: 1s; }
.cut-img:nth-child(4) { animation-delay: 1.5s; }
.cut-img:nth-child(5) { animation-delay: 2s; }

/* Article header pc */
@media screen and (min-width: 769px) {
    .mainImg__sp {
        display: none;
    }

    .mainImg__pc {
        display: block;
        width: 100%;
    }

    .sliderArea {
        top: 40%;
        bottom: auto;
    }

    .cut-img {
        height: 220px;
    }

    .slider {
        animation-duration: 40s; /* ←流れる速さを遅くする（元は20s）*/
    }

}

    
/* pc 769px */

/*================================
Story
================================*/
.section--story {
    padding: clamp(37px, 5vw, 50px) 4.3% 0;
}

.storyTopic__img img {
    display: block;
    margin: 25px auto 0;
    border-radius: 10px;
}

.storyTopic__txt {
    padding: 0 4.3%;
    margin-top: clamp(20px, 3vw, 27px);
    text-align: center;
}

h4 {
    color: var(--primary-darkBrown,#605146);
    font-family: "Zen Maru Gothic";
    font-size: clamp(2rem, 2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.storyTopic__txt p {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    line-height: 28px;
    margin: 13px auto;
    text-align: left;
    font-family: "Zen Maru Gothic";
    color: var(--primary-darkBrown,#605146);
}

.btn__storyPage {
    width: clamp(200px, 20vw, 230px);
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-brown,#A58974);
    color: var(--primary-white,#FFFFFF);
    border-radius: 50px;
    font-family: "Zen Maru Gothic";
    font-weight: 700;
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
    line-height: 1;
    position: relative;
}

.btn__storyPage::after {
    display: block;
    content: '→';
    font-weight: 700;
    font-size: 1.8rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.btn__storyPage:hover {
    opacity: 0.5;
}

.item__category {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}

.item__txt {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}

.accordion__item {
    font-size: clamp(1.2rem, 2vw, 2.4rem);
}

.voice__txt {
    font-size: clamp(1.2rem, 1.3vw, 1.4rem);
}

.section__cut {
    display: block;
    margin: 40px auto 0;
    max-width: 100%;
    height: auto;
}

.pcBr {
    display: none;
}

/* story pc */
@media screen and (min-width: 769px) {

    .storyTopic {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 56px 0;
        gap: 0 80px;
    }

    .storyTopic__img img {
        max-width: 455px;
        margin-top: 0;
        height: auto;
        border-radius: 20px;
    }

    .storyTopic__txt {
        max-width: 520px;
        padding: 0;
    }

    .storyTopic__txt p {
        max-width: 520px;
        text-align: left;
        margin: 15px 0 0;
    }

    .storyTopic__txt h4 {
        text-align: left;
    }


    .btn__storyPage {
        margin-top: clamp(10px, 2vw, 21px);
        float: right;
        width: clamp(200px, 20vw, 230px); /* 念のため再宣言 */
    }

    .pcBr {
        display: block;
    }
}
/* pc 769px */

/*================================
Item
================================*/
.section--item {
    padding: 37px 0 0 0;
    background-image: url(../images/flower_top.png),url(../images/flower_bottom.png);
    background-size: 130px;
    background-position:  100% 30px, 30px 100%;
    background-repeat: no-repeat, no-repeat;
}

.item__top,
.item__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item__list {
    display: flex;
    margin-top: 40px;
    border-radius: 20px;
    background: var(--primary-white,#FFFFFF);
    width: 230px;
    height: auto;
    padding: 20px 35px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.item__category {
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    text-align: center;
}

.itemImg {
    width: 160px;
    height: 117px;
    margin-top: 16px;
}

.item__txt {
    font-family: "Zen Maru Gothic";
    width: 160px;
    color: var(--primary-darkBrown,#605146);
    font-size: 1.6rem;
    margin-top: 16px;
}

.itemBtn {
    margin-top: 16px;
    width: 170px;
    height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-darkBrown,#605146);
    font-family: "Zen Maru Gothic";
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
}

.shop-link-orange {
    background: var(--primary-yellow,#FFE7B2); 
}

.shop-link-pink {
    background: var(--primary-pink,#FFE1EC);
}

.shop-link-green {
    background: var(--primary-green,#BCE5B4);
}

.shop-link-blue {
    background: var(--primary-blue,#D1EAEA);
}

.shop-link-yellow {
    background: var(--primary-lightYellow,#FAF8D7);
}

.itemBtn::after {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../images/icon-shop-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.itemBtn:hover {
    opacity: 0.5;
}

/* item pc */
@media screen and (min-width: 900px) {
    .section--item {
        padding: 58px 0  0;
        background-image: url(../images/flower_top.png),url(../images/flower_bottom.png);
        background-size: 180px;
        background-position:  100% 30px, 30px 100%;
        background-repeat: no-repeat, no-repeat;
    }
    
    .item__top {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0 80px;
    }

    .item__bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0 80px;
    }

    .section__cut {
        display: block;
        margin: 70px auto 0;
        
        max-width: 100%;
        height: auto;
    }
}
/* pc 769px */

/*================================
User voice
================================*/
.section--uservoice {
    padding: 37px 6.9% 0;
}

.voice__content {
    padding: 0 18px 15px;
    text-align: center;
    font-family: "Arial";
    font-size: 1.6rem;
    font-weight: 700;
}

.voice__title {
    margin-top: 28px;
}

.voice__txt {
    margin-top: 20px;
    height: 150px;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 400;
}

.voice__who {
    margin-top: 20px;
    font-size: 1.4rem;
    text-align: right;
}

.swiper {
    margin: 30px auto 0;
}

/* Swiperの各スライド（カード）の幅を322pxに固定 */
.w {
    width: 322px;
    margin: 0 auto;
}

.swiper-slide {
  /* width: 322px !important;  */
  display: flex;
  justify-content: center;
}

/* カード全体のデザイン（枠） */
.uservoice__list {
  width: 100%; /* swiper-slideで幅は固定されてるので、中では100% */
  background: #fff;
  box-sizing: border-box;
}

/* 画像サイズ固定 */
.voice__img img {
  width: 322px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
    .w {
        width: 1118px;
    }
    
    .section--uservoice {
        padding: 58px 4.3%  0;
    }

    .swiper {
        max-width: 1118px;
    }
}

/*================================
lookbook
================================*/
.section--lookbook {
    padding: 37px 4.3% 0;
}

.season {
    text-align: center;
}

.season p {
    color: var(--primary-darkBrown,#605146);
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    margin-top: 10px;
}

.look__top,
.look__bottom {
    gap: 0 23px;
}

.lookbook-img {
    margin: 30px auto 0;
    display: block;
    width: 150px;
}

.look__top {
    display: flex;
    justify-content: center;
}

.look__bottom {
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 769px) {
    .lookGallery {
        display: flex;
        justify-content: center;
        gap: 0 38px;
    }

    .lookbook-img {
        margin: 30px auto 0;
        display: block;
        width: 249px;
    }

    .look__top,
    .look__bottom {
        gap: 0 38px;
    }

    .season p {
        font-size: 1.8rem;
        margin-top: 24px;
    }

}

/*================================
Instagram
================================*/
.section--instagram {
    padding: 37px 9% 0;
}

.instagram-media {
    display: block;
    margin: 30px auto 0!important;
    min-width: 10px!important;
}

@media screen and (min-width: 769px) {
    .section--instagram{
        background-image: url(../images/flower_top.png),url(../images/flower_bottom.png);
        background-size: 180px;
        background-position:  100% 30px, 30px 100%;
        background-repeat: no-repeat, no-repeat;
    }
}

/*================================
FAQ
================================*/
.section--faq {
    padding: 37px 4.3% 0;
}

/* 必須 */
.accordion-content {
  display: none;
}

/* アコーディオン装飾用 */

.accordion {
  margin-top: 30px;
}

.accordion__item{
  background-color: var(--primary-lightYellow,#FAF8D7);
  border-radius: 10px;
  margin-top: 10px;
  font-family: "Zen Maru Gothic";
  font-size: 1.2rem;
  overflow: hidden;
}
.accordion-header {
  padding: 12px 45px 10px 20px;
  background-color: var(--primary-yellow,#FFE7B2);
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}

.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top: 50%;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  background:#151E2F;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.active .accordion-header{
  background-color: var(--primary-yellow,#FFE7B2);
}
.active .accordion-header::after{transform:rotate(0deg);}

.accordion-content {
  background-color: #ffffff;
  border-top: 2px dashed var(--primary-brown,#A58974);
  padding: 12px 20px 10px;
}

.accordion-header span,
.accordion-content span{
  position: relative;
}

.accordion-header span::before{
  position: absolute;
  content:"";
  top: -40%;
  left: 0;
  font-size: 17px;
}

/* hover */
.accordion-header:hover {
  background-color: var(--primary-lightYellow,#FAF8D7);
}

@media screen and (min-width: 769px) {
    .section--faq {
        margin: 0 auto;
        max-width: 1118px;
    } 

    .accordion {
        margin-top: 60px;
    }

    .accordion__item{
        margin-top: 40px;
        font-size: 2.4rem;
    }

    .accordion-header {
        padding: 27px 20px;
    }

    .accordion-content {
        padding: 27px 20px;
    }

}

/*================================
Contact
================================*/
.section--contact {
    padding: 37px 6% 60px;
}

.contact {
    align-items: center;
}

.contact__dogImg {
    width: 150px;
    margin: 30px auto;
}

.contact__detail {
    display: flex;
    gap: 0 10px;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-green,#BCE5B4);
    padding: 30px 16px;

}

.contact__lineImg img {
    width: 40px;
    height: 40px;
}

.contact__detail p {
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
}

@media screen and (min-width: 769px) {
    .contact {
        display: flex;
        justify-content: center;
        gap: 0 40px;
        margin-top: 58px;
    }

    .contact__dogImg {
        width: 283px;
        height: 196px;
        margin: 0;
    }

    .contact__lineImg img {
        width: 100px;
        height: auto;
    }

    .contact__detail p {
        font-family: "Zen Maru Gothic";
        font-size: 2.4rem;
    }

    .contact__detail {
        gap: 0 20px;
        align-items: center;
        justify-content: center;
        border: 2px dashed var(--primary-green,#BCE5B4);
        padding: 30px 16px;

    }
}

/*================================
footer
================================*/
.footer {
    padding: 15px 9% 10px;
    background-color: var(--primary-white,#ffffff);
}

.menu {
    display: none;
}

.footer__logo {
    width: 120px;
}

.footer__shop {
    display: flex;
    margin-top: 13px;
    align-items: center;
    gap: 0 5px;
}

.footer__shop p {
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    line-height: 30px; /* 214.286% */
}

.footer__sns {
    display: flex;
    margin-top: 20px;
    gap: 0 10px;
}

.footer__instagramIcon,
.footer__lineIcon {
    width: 26px;
}

.copyright {
    text-align: center;
    background: var(--primary-white,#FFFFFF);
    padding: 10px 0;   
}

@media screen and (min-width: 769px) {
    
    .menu {
        display: block;
    }

    .footer__pc {
        display: flex;
        justify-content: space-between;
    }
    
    .footer__shop p {
        font-size: 2rem;
    }

    .menu__list {
        font-size: 2.4rem;
        display: flex;
        justify-content: space-around;
        gap: 0 53px;
    }

    .footer__link {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    .footer {
        padding: 60px 4.3%;
    }

    .footer__sns {
        gap: 0 17px;
    }
    
    .footer__instagramIcon {
        width: 50px;
        height: auto;
    }

    .footer__lineIcon {
        width: 50px;
        height: auto;
    }

    .copyright {
        font-size: 1.4rem;
    }
    
}