@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  word-wrap: break-word !important;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input[type=submit], input[type=button] {
  -webkit-appearance: none;
}

ul, ol {
  list-style: none;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  max-width: 100%;
  vertical-align: bottom;
}

main {
  display: block;
}

/*====================================
* 初期設定
=====================================*/
:root {
  --color01:#fff56c;
}

html {
  font-size: 2.6666666667vw;
  scroll-behavior: smooth;
}
@media screen and (min-width: 780px) {
  html {
    font-size: 130%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  background-color: #000000;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #000;
  animation: fadeIn 1.2s ease-out 0s 1 normal;
  -webkit-animation: fadeIn 1.2s ease-out 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #333;
}

img {
  vertical-align: middle;
}

.small {
  font-size: 1rem;
}

/*====================================
* common
=====================================*/
#wrapper {
  overflow: hidden;
  margin: auto;
  position: relative;
  max-width: 780px;
  background-color: var(--color01);
}
#wrapper .inner {
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  background-color: #fff;
  padding: 2.4rem 0;
  position: relative;
}
header p {
  width: 10rem;
  margin: 0 auto;
}
header p img {
  width: 100%;
  height: auto;
}

main {
  position: relative;
  z-index: 1;
}

#mainNav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
#mainNav ul li {
  width: 100%;
}

#fixNav {
  position: fixed;
  top: 0;
  left: auto;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  transition-property: opacity, visibility;
}
#fixNav .fixNav-inner {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
#fixNav ul {
  display: flex;
  width: 100%;
}
#fixNav ul li {
  width: 33.3333333333%;
}
#fixNav ul li a {
  display: block;
}
#fixNav ul li a img {
  width: 100%;
}

.styleBox {
  padding-top: 4rem;
}
.styleBox h2 {
  margin: auto;
}
.styleBox .catBox {
  padding-top: 3rem;
}
.styleBox .catBox h3 {
  margin-bottom: 2rem;
}
.styleBox .catBox > div {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.styleBox .catBox > div p img {
  width: 100%;
  height: auto;
}

#style01 h2 {
  width: 31rem;
}

#style02 h2 {
  width: 29rem;
}

#style01, .catBox {
  scroll-margin-top: 7rem;
}

#category03 {
  padding-top: 6rem;
}

footer {
  padding: 4rem 0;
}
footer p {
  text-align: center;
}
footer .btn01 {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}
footer .btn01 a {
  display: block;
  border: 0.1rem solid #000000;
  border-radius: 60rem;
  padding: 1.4rem 0;
}

#fixNav.is-active {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */