@charset "utf-8";

/* ===========================================
   ◆ リセットの役割をする記述 
===========================================*/

body,h1,h2,h3,h4,h5,h6,p,ul,ol,dl,dd,figure{
    margin: 0;
    padding: 0;
    list-style: none;
}

img{
    vertical-align: bottom;
}

a{
    text-decoration: none;
}

address{
    font-style: normal;
}


/* ===========================================
   ◆ 全体に対する基本指定
===========================================*/

*{
    box-sizing: border-box;
}

body{
    font-size: 18px;
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:#000;
    line-height: 1;
    background-color: #f9face;
}

.kosugi-maru-regular {
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.capriola-regular {
    font-family: "Capriola", sans-serif;
    font-weight: 400;
    font-style: normal;
  }  
  
/* コンテンツ幅の制御2種類 */

.inner-1{
    width: 1080px;
    margin: 0 auto;
    /* outline: 1px solid #00f; */
}

/* 背景塗分け用class */

/* 茶色 */
.bg-1{
    background-color: #643800;
    color: #fff;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
    /* カンプから変更 */
}

/*　薄いオレンジ */
.bg-2{
    background: #fffdf2; /* 紙っぽい色 */
    border: 1px solid #d9d2b6;
    border-radius: 10px;
    box-shadow:
      0 10px 18px rgba(0,0,0,.12),  /* 落ち影 */
      inset 0 1px 0 rgba(255,255,255,.6);
    /* カンプから変更 */
}

/* 黄グラデ */
.gr-1{
    background: linear-gradient(90deg,#faf2ab 0%, #faf7de 50%, #f2ecaf 100%);
    color: #643800;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

/* 横並び用class */
.flex{
    display: flex;
}

/* ===========================================
   ◆ エリアごとの仕上げ
===========================================*/

/* ---------------------------
    上部固定エリア 
---------------------------*/

/* ブラウザ上部に固定 */
.top-fix{
    position: fixed;
    top:28px;
    left:0;
    width: 100%;
    z-index:3;
    justify-content: center;
    align-items: center;
}

.top-fix a{
    display:block;
    width:100%;
    line-height:50px;
    padding: 8px 0;
    color: #fff;
    font-size: 24px;
    transition: color 0.3s;
}

.top-fix a:hover{
    color:#fff100;
}

.top-fix h1{
    margin-right:15px;
    transition: transform 0.1s;
}

.top-fix h1:hover{
    transform: translateY(-5px);
}   

/* ---------------------------
    ヘッダーエリア 
---------------------------*/

header{
    width:300px;
    padding-top:122px; /* 94px(元のヘッダー分) + 28px(PCメッセージ分) */
}

/* 下層ページタイトル */
.page-title{
    font-size: 24px;
    color: #643800;
    text-align: center;
    padding: 20px;
    margin-top: 122px; /* ヘッダーと同じ高さ */
}

header .logo{
    padding-bottom: 28px;
    justify-content: center;
}

header ul li{
    line-height:98px;
    text-align: center;
    margin-bottom:31px;
    background: url(../assets/images/fry_99x99.png) center left no-repeat;
    margin-left:8%;
    animation: friesShake 2s infinite;
}

header ul li a{
    display:block;
    width:100%;
    height:100%;
    padding-left:20%;
    font-family: "Capriola", sans-serif;
    font-style: normal;
    font-size:24px;
    font-weight: bold;
    color:#643800;
    text-shadow: 2px 2px 0 #a67c52;
    transition: letter-spacing 0.3s;
}
    
header ul li a:hover{
    letter-spacing: 0.1em;
}

@keyframes friesShake {
    0%   { background-position: 0px center; }
    20%  { background-position: 4px center; }
    25%  { background-position: -4px center; }
    50%  { background-position: 3px center; }
    75%  { background-position: -2px center; }
    100% { background-position: 0px center; }
  }

.fixed{
    position: sticky;
    top: 80px;
}


/* ---------------------------
    フッターエリア 
---------------------------*/

footer .flex{
    justify-content: center;
    padding:21px 0 14px;
    font-size:12px;
    line-height:18px;
}

footer address{
    padding-left: 56px;
    align-self: center;
}

footer span{
    display:block;
    padding-bottom:1em;
}

footer .copyright{
    padding-bottom:14px;
    font-size:12px;
    text-align:center;
}

