@charset "UTF-8";

/* 全ページ共通部分　*/
html {
    font-size: 100%;
}

body {
    background-color: rgb(239, 229, 212);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

a, p {
    text-decoration: none;
} 

img {
    max-width: 100%;
}

/* リンクの演出 */
a:link {
    color: black;
}

/* HEADER */
.company-name {
    display: flex;
    justify-content: space-between;
}

.company-title > a:link {
    color: black;
}

.logo {
    float: left;
    width: 100px;
    height: 100px;
    margin-top: 14px; 
}

.company-title{
    text-align: center;
    font-size: 50px;
}

.e-mail{
    text-align: center;
    font-size: 20px;
}

h1 {
    text-align: center;
}
 .contact-wrapper {
    display: flexbox;
    justify-content: center;
    text-align: center;
    margin-top: 16px;
} 

/* ヘッダーメニューを中央にするやり方 */
/*.main-nav ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: fixed;
}

.main-nav{
    text-align: center;
}
.main-nav li {
    list-style: none;
}

.main-nav a {
    display: block;
    padding: 10px;
    border: none solid #8bd;
    border-right: none;
    text-decoration: none;
    color: none;
    background: none;
}

.main-nav {
    margin-left: 10;
} 

.main-nav a {
    color: #432;
} 

.main-nav a:hover { 
    color: #8bd;
}*/

/* ヘッダーを移動させる */
.main-nav {
    width: 100%;
    height: 80px;
    background-color: rgb(239, 229, 212);
    background-position: center;
    background-size: cover;
}

nav {
    width: 100%;
    /*padding: 20px 0;*/
    text-align: center;
    position: fixed;
}

nav ul {
    background: rgb(239, 229, 212);
}

nav ul li {
    display: inline-block;
    margin: 0 30px;
}

/*ヘッダーを固定(移動)する*/
nav.sticky {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(239, 229, 212);
    transition: 0.6s;
    display: flex;
}
/* フォーム */
form div {
    background-color: aquamarine;
    /* background-attachment: fixed; */
    height: auto;
    width: 373px; 
    margin-bottom: 10px;
}

label {
    background-color: rgb(244, 165, 185);
    font-weight: fixed;
    font-size: 1.125rem;
    margin-bottom: 5px;
    height: auto;
    width: 373px; 
    display: block;
}

/* HEADERの項目を横に持ってくる */

.page-header {
    display: flex;
    justify-content:space-between;
}

.wrapper {
    margin: 0 auto;
    padding: 0 4%;
}

.head_area {
    position: fixed;
    top: 0;
    width: 100%;
}

/* お店の商品の概要 */
.wrapper-grid {
    display: grid;
    gap: 1%;
    grid-template-columns: repeat(2, 1fr);
    /* margin-top: 15%;  */
    margin-bottom: 70px;
}

.category {
    text-align: center;
}

/* フッター */
footer {
    text-align: center;
}

/* sns */
#sns {
    background: #faf;
    padding: 4% 0;
}
#sns .wrapper {
    display: flex;
    justify-content: space-between;
}
#sns .sub-title {
    margin-top: 30px;
}
.sns-box {
    width: 30%;
}