html {
    /* font-family: 'Oswald', sans-serif; */
    font-family: 'Noto Sans JP', sans-serif;
}


.pop { font-family: 'Poppins', sans-serif;}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

/* ヘッダー */
header {
    padding: 27px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
}
header .logo .with { 
    color: #80BA4A;
}

header .logo .fun {
  color: darkorange;
}

.header_menu li {
    margin-left: 40px;
}
.header_menu li a {
    transition: .3s;
}
.header_menu li a:hover {
    color: darkorange;
    transition: .3s;
}


/* 全体を縦のflexに */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:#fff;
  color:#333;
  position: relative;
  overflow-x: hidden;
}

/* mainは伸縮領域 */
main {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* フッターは常に下 */
footer {
  text-align:center;
  padding:20px 0;
  background: rgba(255,255,255,0.95);
  color:#333;
  position: relative;
  z-index:1;
  box-shadow:0 -2px 8px rgba(0,0,0,0.05);
}
