/* ====================================
	reset
==================================== */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 62.5%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-width: 375px;
  font-size: 1.6rem;
}

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior-y: none;
}

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

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}
/* ====================================
	add
==================================== */
body {
  background-color: #000000;
}

input[type="text"] {
}

/* ====================================
	responsive
==================================== */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* ====================================
	layout
==================================== */
header,
footer,
#wrap {
  max-width: 428px;
  margin: 0 auto;
}

#wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  margin: 0 auto;
  background-color: #ffffff;
}
main {
  padding: 50px 10px 0 10px;
}
#menu__ec {
  padding-top: 100px;
  display: block;
}

/* ====================================
	common
==================================== */
/* --------------------
	header
-------------------- */
header {
  position: relative;
}
header #header__home {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
header #header__home a {
  position: fixed;
  display: block;
  width: 24px;
}

header #header__account {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 24px;
}
header #header__account a {
  position: fixed;
  display: block;
  width: 24px;
}

@media only screen and (max-width: 767px) {
}

/* --------------------
	footer
-------------------- */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background-color: #eeeeee;
}
footer ul {
  display: flex;
}
footer ul li {
  width: calc(100% / 5);
}
footer ul li a {
  display: block;
  position: relative;
  height: 70px;
  font-size: 1.4rem;
}
footer ul li a img {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  width: 36px;
  margin: 0 auto;
}
footer ul li a span {
  display: block;
  position: absolute;
  bottom: 5px;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
}

/* --------------------
	hamburger
-------------------- */
.hamburger {
  position: relative;
  width: 50px;
  height: 44px;
  cursor: pointer;
  margin: 0 0 0 auto;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 4px;
}

.hamburger,
.hamburger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 20px;
}

.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.hamburger {
  display: none;
}

@media only screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}

/* ====================================
	list__flex
==================================== */

/* --------------------
	layout--2
-------------------- */
ul.list__flex {
  display: flex;
  flex-wrap: wrap;
}
ul.list__flex li {
  width: calc(50% - 5px);
  margin-bottom: 50px;
}
ul.list__flex li:nth-child(2n-1) {
  margin-right: 10px;
}
ul.list__flex li:nth-child(2n) {
  margin-right: 0;
}
ul.list__flex li a {
  display: block;
}
ul.list__flex li img {
  display: block;
  margin-bottom: 10px;
}
ul.list__flex li h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
ul.list__flex li p {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* --------------------
	layout--3
-------------------- */
ul.list__flex--3 {
  display: flex;
  flex-wrap: wrap;
}
ul.list__flex--3 li {
  width: calc(33% - 5px);
  margin-bottom: 50px;
}
ul.list__flex--3 li:nth-child(3n-2) {
  margin-right: 10px;
}
ul.list__flex--3 li:nth-child(3n-1) {
  margin-right: 10px;
}
ul.list__flex--3 li:nth-child(3n) {
  margin-right: 0;
}

/* --------------------
	common__title
-------------------- */
#content__detail > div {
  margin-bottom: 50px;
}
#content__detail h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#content__detail h1 span {
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
  padding-left: 0.5em;
}
#content__detail h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#content__detail h2 span {
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  padding-left: 0.5em;
}
#content__detail p {
  line-height: 1.5;
  font-size: 1.6rem;
}

#content__detail #anchor ul {
  display: flex;
  flex-wrap: wrap;
}

#content__detail #anchor ul li {
  width: calc(50% - 5px);
  margin-bottom: 10px;
  border: 1px solid #cccccc;
  text-align: center;
  padding: 5px 0;
  cursor: pointer;
}
#content__detail #anchor ul li:nth-child(2n-1) {
  margin-right: 10px;
}
#content__detail #anchor ul li:nth-child(2n) {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
}

/* ====================================
	angler
==================================== */

.angler_table tr {
  border-top: 1px solid #cccccc;
}
.angler_table tr:last-child {
  border-bottom: 1px solid #cccccc;
}
.angler_table th,
.angler_table td {
  font-size: 1.6rem;
  padding: 10px 5px;
  vertical-align: top;
}
.angler_table th {
  background-color: #eeeeee;
  text-align: left;
  font-weight: bold;
}
.angler_table td {
}

/* ====================================
	woocommerce
==================================== */
.woocommerce {
  padding: 0;
}
