@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
img {
    width: 100%;
    vertical-align: bottom;
}
body {
    width: 100%;
    background-color: rgb(255, 229, 233);
}
.wrap {
    margin: 0 auto;
    width: 90%;
}
/* 仮 */

.haikei {
    background-color: #ffffff;
    margin: 30px;
}
@media (max-width: 768px) {
  .haikei {
    margin: 12px 0;
  }
}

h2 {
    text-align: center;
    color: #b4aa77;
    padding-top: 100px;
    padding-bottom: 20px;
    font-size: 2.5em;
    font-family: "Cormorant Garamond", serif;
    font-weight: bold;
    text-shadow: 1px 1px 1px #998c5c;
}
/* ham */
.menu-logo {
  display: none;
}

@media (max-width: 768px) {
  .menu-logo {
    display: block;
    width: 120px;
    margin: 40px auto 20px;
  }
}

.hamburger {
  display: none;
}

/* ハンバーガー共通 */
.hamburger span {
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* × */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


@media (max-width: 768px) {
  .hamburger {
    display: block;
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    top: 20px;
    right: 20px;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #b4aa77;
    margin: 6px 0;
  }
}
@media (max-width: 768px) {

  .flex-item-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    transition: right 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
  }

  .flex-item-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .flex-item-nav ul li a {
    font-size: 22px;

    display: block;
  }

  /* 開いた状態 */
  .flex-item-nav.active {
    right: 0;
  }
  
}

/* nav */

.flex-item-logo {
    width: 200px;
    padding: 20px;
    padding-left: 50px;
}

.instagram-icon {
    position: absolute;
    left: 300px;
    bottom: 540px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 5px;
    transition: background-color 0.3s;
}
@media (max-width: 768px) {
    .instagram-icon{
        display: none;
    }
}
.instagram-icon:hover {
    background: rgb(255, 229, 233);
}
.x-icon {
    position: absolute;

    left: 355px;
    bottom: 540px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 5px;
    transition: background-color 0.3s;
}

.x-icon:hover {
    background: rgb(255, 229, 233);
}
@media (max-width: 768px) {
    .x-icon{
        display: none;
    }}
.flex-box-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.flex-item-nav ul {
    display: flex;
    justify-content: space-evenly;
    padding: 0;
    margin: 0;
}
.flex-item-nav ul li {
    padding: 10px 20px;
    position: relative;
}
@media (max-width: 768px) {
  .flex-item-nav ul li {
    padding: 6px 0;
  }
}

.flex-item-nav ul li a {
    color: #b4aa77;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 1px #998c5c;
}
.flex-item-nav ul li a:hover {
    color: #998c5c;
}

/* navのほばー */
.flex-item-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(255, 229, 233);
    transition: width 0.5s ease;
}

.flex-item-nav a:hover::after {
    width: 100%;
}


/* hero */

#hero p {
    position: absolute;
    top: 570px;
    left: 170px;
    color: #b4aa77;
    text-shadow: 1px 1px 4px #998c5c;
}
#hero p span {
    font-size: 1.5em;
}
#hero h1 {
    position: absolute;
    top: 500px;
    left: 150px;
    color: #b4aa77;
    font-size: 3em;
    font-family: "Cormorant Garamond", serif;
    text-shadow: 1px 1px 1px #998c5c;
}
.hero {
    position: relative;
}
.hero img {
    height: 650px;
    object-fit: cover;
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.3em;
    top: 450px;
    left: 25px;
  }
  #hero p {
    font-size: 0.8em;
    top: 500px;
    left: 37px;
  }
  .hero img {
    height: 600px;
  }
  .flex-item-logo {
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    padding: 0;
  }
}

/* main news */

.flex-box-news ul {
    display: flex;
    justify-content: center;
    color: rgb(90, 64, 68);
}
.flex-box-news li {
    width: 250px;
    border: 2px solid #b4aa77; /* 全体の枠 */
    padding: 10px;
    margin: 10px;
    text-align: center;
}
.flex-box-news li p {
    margin: 10px;
}
.flex-box-news li img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    padding: 5px;
}

/* NEWS ほばー */
.flex-box-news img {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.flex-box-news img:hover {
    opacity: 0.5;
}
@media (max-width: 768px) {
  .flex-box-news ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .flex-box-news li {
    width: 48%;
    margin: 6px 0;
  }
  .flex-box-news li img {
    height: 120px;
  }

  .flex-box-news li p {
    font-size: 0.85em;
  }
  .flex-box-news {
    padding: 0 8px;
  }
}
/* btn */
.more-btn-wrapper {
    margin-top: 20px;
    text-align: center;
}
.more-btn {
    display: inline-block;
    background-color: #b4aa77;
    color: white;
    padding: 20px 24px;
    border-radius: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    width: 300px;
}
.more-btn:hover {
    background-color: #998c5c;
}

@media (max-width: 768px){
    .more-btn{
        width: 200px;
        padding: 10px;
        
    }
}
/* concept */

.flex-box-concept {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    border: 2px solid #b4aa77;
    padding: 15px;
    align-items: center;
}
.flex-box-concept p {
    padding-bottom: 20px;
    color: rgb(90, 64, 68);
}

.flex-box-concept span {
    font-size: 1.5em;
    color: #b4aa77;
}
.flex-box-concept h3 {
    color: rgb(90, 64, 68);
}
.flex-box-concept img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
  .flex-box-concept {
    display: flex;
    flex-direction: column; /* 縦積み */
    align-items: center;    /* 中央寄せ */
    width: 90%;
    margin: 0 auto;
    gap: 16px;
  }

  .flex-box-concept img {
    width: 100%;
    max-width: 300px; /* 画像の上限 */
    height: auto;
     aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .flex-box-concept h3 {
    font-size: 1.2em;
    text-align: center;
  }

  .flex-box-concept p {
    font-size: 0.95em;
    text-align: center;
  }
}

/* collection */

.flex-box-collection {
    display: flex;
    width: 1000px;
    margin: 0 auto;
    /* justify-content: center; */
    flex-wrap: wrap;
}
.flex-box-collection img {
    padding: 10px;
    margin: 10px;
    width: 310px;
    height: 300px;
    object-fit: cover; /* 画像を枠に収める */
    border: 2px solid #b4aa77; /* 全体の枠 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}
.flex-box-collection img:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 12px 25px rgba(106, 106, 106, 0.416);
    z-index: 10;
    cursor: default;
}
#collection h3 {
    text-align: center;
    color: #b4aa77;
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 1.5em;
}
#collection p {
    text-align: center;
    padding-bottom: 20px;
    color: rgb(90, 64, 68);
}
#petit h3 {
    text-align: center;
    color: #b4aa77;
    padding-top: 80px;
    padding-bottom: 20px;
    font-size: 1.5em;
}
#petit p {
    text-align: center;
    padding-bottom: 10px;
    color: rgb(90, 64, 68);
}
@media screen and (max-width: 767px) {
  .flex-box-collection {
    display: flex;
    align-items: center;  
    flex-wrap: wrap;  
    width: 90%;
  }


.flex-box-collection img {
width: 43%;
height: auto;
aspect-ratio: 1/1;

}

  #collection h2 {
    padding-bottom: 1px;
  }
}




  




/* access */

.flex-box-access {
    display: flex;
    border: 2px solid #b4aa77;
    padding: 15px;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: center;
    width: 1000px;
    margin: 0 auto;
}
.flex-box-access h3 {
    color: #b4aa77;
    padding-top: 10px;
}
.flex-box-access p {
    color: rgb(90, 64, 68);
}
@media screen and (max-width: 767px) {
  .flex-box-access {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    width: 90%;
    margin: 0 auto;
    gap: 16px;
    text-align: center;     
  }

  .flex-box-access img {
    width: 100%;
    max-width: 300px;      
    aspect-ratio: 1 / 1;   
    object-fit: cover;     
  }

  .flex-box-access h3 {
    font-size: 1.2em;
  }

  .flex-box-access p {
    font-size: 0.95em;
  }
  .flex-box-access iframe {
    width: 100%;
    height: 250px;
}
}
/* cantact */

#contact h3 {
    text-align: center;
    color: #b4aa77;
    padding-bottom: 20px;
}
#contact dl {
    width: 70%;
    margin: 0 auto;
    border: 2px solid #b4aa77;
    padding: 10px;
}
#contact dl dt {
    float: left;
    padding: 1em;
    color: rgb(90, 64, 68);
}
#contact dl dd {
    border-bottom: 1px solid #b4aa77;
    margin: 0;
    padding: 1em 0 1em 18em;
}
#contact dl dt .must {
    color: palevioletred;
}
#contact dl dd {
    color: rgb(90, 64, 68);
}
p.submit {
    text-align: center;
    padding-top: 10px;
}
input[type="submit"] {
    display: inline-block;
    background-color: #b4aa77;
    color: white;
    padding: 20px 24px;
    border-radius: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    width: 300px;
    font-size: 1em;
}
input[type="submit"]:hover {
    background-color: #998c5c;
}
/* footer */

footer p {
    margin: 50px;
    text-align: center;
    color: #b4aa77;
    padding-bottom: 20px;
}
/* top button */

.fixed_banner {
    position: fixed;
    z-index: 99999;
    bottom: 20px;
    right: 10px;
}

.fixed_banner_pc {
    width: 150px;
}

.fixed_banner:hover {
    opacity: 0.8;
}
.wrap .haikei .fixed_banner img.fixed_banner_pc {
    background: transparent;
    border: none;
}
.fixed_banner {
    border: none;
    background: none;
}
@media (max-width: 768px) {
  .fixed_banner,
  .animated-logo {
    display: none;
  }
}

/* animation */
.animated-logo {
    position: fixed;
    right: -10px; /* ロゴサイズの中心が画面外に来るように調整 */
    bottom: -20px;
    width: 250px; /* サイズは適宜調整 */
    height: 250px;
    z-index: 1;
    pointer-events: none;
    animation: rotateLogo 35s linear infinite;
    transform-origin: center center;
}

.animated-logo img {
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center center;
}

@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
