@charset "utf-8";

body{
    margin: 0;
    padding: 0;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

ol,
ul {
    list-style: none;
    list-style-type: none;
}
a{
    text-decoration: none;
}

a:link {color: #3F1414;} /*未訪問のリンク*/
a:visited {color: #5b4242;} /*訪問済みのリンク*/

/*全体*/
.wrapper{
      background-image: url(../images/top_pc.jpg);
      background-position: center;
      background-size: cover;
      width: 100%;
      height: 100vh;
}

/*一番上のタイトル*/
.headtitle {
    position: relative;
    width: 40vw; /*ロゴの幅*/
    margin: 0 auto;
    z-index: 10;
}

/*右上の模様*/
.detail1{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}

.detail1 img{
  width: 29vw;
  height: auto;
}

/*左下の模様*/
.detail2{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    line-height: 0;
  }

.detail2 img{
  width: 40vw;
  height: auto;
}

/*フッター*/
  footer {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 10;
}

/*コンテンツを囲む*/
.filed {
    display: flex;
    justify-content: space-around;
    width: 65vw;
    margin: 0 auto;
    padding-top: 10vh;
    }

/*左のコンテンツ*/
.container1{
    position: relative;
    width: 40vw;
    height: 40vh;
    z-index: 20;
    color: #3F1414;
}

.subtitle{
    padding-left: 1.5vw;
    width: 30%;
    background-color: #ffeaea;
    border: 5px solid #fabfd3;
    border-radius: 10px; /*角丸*/
}
.subtitle h1{
    font-size: clamp(16px,1.8vw,33px);
}

.contents1{
    margin-top: 20px;
    padding-left: 1.2vw;
    background-color: #ffeaea;
    border: 5px solid #fabfd3;
    border-radius: 10px; /*角丸*/
}

.contents1 h3{
    font-size: clamp(10px,1.6vw,20px);
}


/*右のメニュー*/
.container2{
    position: relative;
    width: 15vw;
    background-color: #ffeaea;
    border: 5px solid #fabfd3;
    border-radius: 10px; /*角丸*/
    z-index: 30;
}

.gnav{
    padding-top: 5vh;
}
.gnav-menu{
    margin: 0 auto;
    font-size: clamp(16px,1.8vw,30px);
    padding-left: 2vw;
}

.gnav-menu :hover{
    color: #bd5c5c;
}


/*コンセプト*/
.contents1 h3 p{
    height: 20vw;
}

/*商品一覧*/
.contents5 {
    margin-top: 20px;
    padding-left: 1.2vw;
    display: flex;
    justify-content: center;
    background-color: #ffeaea;
    border: 5px solid #fabfd3;
    border-radius: 10px; /*角丸*/
    overflow-y: scroll;
}

.contents5 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    height: 46vh;
    grid-template-columns: repeat(2, 230px) ;
    grid-template-rows: 200px 200px;
    gap: 30px;
}

.contents5 li{
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: transform 0.2s ease,box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.contents5 li:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contents5 li img {
    width: 100%;
    max-width: 180px;
    display: block;
    margin: 0 auto;
}

.contents5 li p {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 14px;
    text-align: center;
}


/*お問い合せ*/
.contents3{
    margin-top: 20px;
    padding: 20px;
    background-color: #ffeaea;
    border: 5px solid #fabfd3;
    border-radius: 10px; /*角丸*/
}


.input-label {
    display: block;
    margin: 8px 2px 0;
}

input[type="email"] {
    width: 250px;
    margin: 0 2px;
}

.input-title {
    width: 98%;
    margin: 0 2px;
}

textarea {
    width: 98%;
    height: 8em;
    margin: 0 2px;
}

input[type="submit"] {
    display: block;
    width: 200px;
    margin: auto;
}

fieldset{
    border-color: #DB6C8D;
    border-style: solid;
}

/*店舗案内*/
.contents4 {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    height: auto;
    max-width: 900px;
    background-color: #ffeaea;
    border: 5px solid #fabfd3;
    border-radius: 10px; /*角丸*/
}

.text {
    flex: 1;
    padding-left: 20px;
    font-size: clamp(6px,1vw,18px);

}

.map iframe {
    width: 20vw;
    height: 30vh;
    padding: 2vw;
}
