@charset 'UTF-8';

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a,
a:hover {
  text-decoration: none;
}

.aln_l {
  text-align: left !important;
}

.aln_c {
  text-align: center !important;
}

.aln_r {
  text-align: right !important;
}

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

.pc.tb {
  display: block;
}

.tb {
  display: none;
}

.sp.tb {
  display: none;
}

.sp {
  display: none;
}

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

  .pc.tb {
    display: block;
  }

  .tb {
    display: block;
  }

  .sp.tb {
    display: block;
  }

  .sp {
    display: none;
  }
}

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

  .pc.tb {
    display: none;
  }

  .tb {
    display: none;
  }

  .sp.tb {
    display: block;
  }

  .sp {
    display: block;
  }
}

/*  */
.tsm_design {
  font-family: 'Noto Serif JP', serif;
}

.tsm_design p {
  font-family: 'Noto Sans JP', sans-serif;
}

/*  */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  font-weight: 400;
}

h1 {
  font-size: 30px;
  line-height: 1.2em;
}

h2 {
  font-size: 18px;
  line-height: 1.5em;
}

h3 {
  font-size: 16px;
  line-height: 1.2em;
}

h4 {
  font-size: 14px;
  line-height: 1.2em;
}

h5 {
  font-size: 14px;
  line-height: 1.2em;
}

h6 {
  font-size: 14px;
  line-height: 1.2em;
}

p {
  font-size: 14px;
  line-height: 2em;
}

/* header.hd_nav_wrap */
header.hd_nav_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 9px 30px 7px;
  background-color: rgba(0, 0, 0, .8);
}

header.hd_nav_wrap a:hover,
header.hd_nav_wrap a:hover span {
  opacity: .6;
}

.hd_sitelogo {
  width: 200px;
}

.hd_sitelogo img {
  width: 100%;
}

.hd_nav {
  display: block;
  margin-top: 3px;
}

.hd_nav ul {
  display: flex;
  justify-content: space-between;
  width: 560px;
}

.hd_nav li {
  font-size: 16px;
  line-height: 1.2em;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
}

.hd_nav a {
  color: #fff;
}

.hd_nav span {
  font-size: 10px;
  display: block;
}

.hd_cart {
  width: 200px;
}

.hd_cart ul {
  display: flex;
  justify-content: flex-end;
  margin-top: 7px;
}

.hd_cart li:first-child {
  width: 35px;
}

.hd_cart li:last-child {
  width: 26px;
  margin-left: 25px;
}

.hd_cart li img {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .hd_cart {
    width: 90px;
  }
}

.burger-btn {
  display: none;
}

.hd_nav .sp {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .hd_nav .sp {
    display: block !important;
  }

  .burger-btn {
    position: fixed;
    z-index: 9000;
    top: 0;
    right: 0;
    display: block;
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(100, 100, 100, .8);
  }

  .bar {
    position: absolute;
    left: 50%;
    display: block;
    width: 40px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 10px;
    background-color: #fff;
  }

  .bar_top {
    top: 12px;
    transition: transform .3s;
  }

  .bar_mid {
    top: 50%;
    transition: opacity .3s;
    transform: translate(-50%, -50%);
  }

  .bar_bottom {
    bottom: 12px;
    transition: transform .3s;
  }

  .burger-btn.close .bar_top {
    transition: transform .3s;
    transform: translate(-50%, 17px) rotate(45deg);
  }

  .burger-btn.close .bar_mid {
    transition: opacity .3s;
    opacity: 0;
  }

  .burger-btn.close .bar_bottom {
    transition: transform .3s;
    transform: translate(-50%, -15px) rotate(-45deg);
  }

  header.hd_nav_wrap {
    display: block;
    padding: 9px 30px 7px;
  }

  .hd_nav {
    position: fixed;
    z-index: 4000;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
  }

  .hd_nav ul {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .hd_nav li {
    font-size: 16px;
    line-height: 1.2em;
    margin: 1.2em 0;
    text-align: center;
  }

  .hd_cart {
    position: fixed;
    z-index: 9000;
    top: 5px;
    right: 70px;
    display: block;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(100, 100, 100, .5);
    border-radius: 50%;
  }

  .hd_cart ul {
    display: block;
    margin-top: 0;
  }

  .hd_cart li:first-child {
    width: 100%;
    position: relative;
  }

  .hd_cart li:first-child img {
    width: 35px;
    position: absolute;
    top: 12px;
    left: 6px;
  }

  .hd_cart li:last-child {
    display: none;
  }

}

@media screen and (max-width: 768px) {
  header.hd_nav_wrap {
    display: block;
    padding: 0;
  }

  .hd_sitelogo {
    width: 30%;
    height: 60px;
    padding: .8% 0 0 1%;
  }
}

@media screen and (max-width: 600px) {
  .hd_sitelogo {
    width: 40%;
    padding: .8% 0 0 1%;
  }
}

@media screen and (max-width: 480px) {
  .hd_sitelogo {
    width: 50%;
    padding: 3% 0 0 1%;
  }
}

@media screen and (max-width: 320px) {
  .hd_sitelogo {
    padding: 4.5% 0 0 1%;
  }
}

/* footer */
footer {
  width: 100%;
  padding: 50px 0 20px;
  background-color: rgba(0, 0, 0, .8);
}

footer a:hover {
  opacity: .6;
}

.ft_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.ft_wrap>li {
  width: 50%;
  margin-bottom: 1em;
}

.ft_nav li {
  margin: 0 0 1em;
}

.ft_nav a {
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
}

.ft_sns {
  display: flex;
  flex-wrap: wrap;
}

.ft_sns li {
  width: 35px;
  margin-right: 15px;
}

.ft_sns li img {
  width: 100%;
}

.ft_shopinfo {
  color: #fff;
  margin: 15px 0 0;
}

.ft_shopinfo p:nth-child(1) {
  line-height: 1.5em;
}

.ft_shopinfo p:nth-child(2) {
  font-size: 24px;
  line-height: 1.5em;
}

.ft_shopinfo p:nth-child(3) {
  line-height: 1.5em;
}

.ft_shopinfo p:nth-child(4) {
  line-height: 1.5em;
}

.copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .ft_wrap {
    padding: 0 50px;
  }
}

@media screen and (max-width: 600px) {
  .ft_wrap {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2%;
  }

  .ft_wrap li {
    width: 100%;
  }

  .ft_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ft_nav li {
    margin: 0 1em 1em;
    text-align: center;
  }

  .ft_nav li:nth-child(1) {
    width: 3em;
  }

  .ft_nav li:nth-child(2) {
    width: 6em;
  }

  .ft_nav li:nth-child(3) {
    width: 7em;
  }

  .ft_nav li:nth-child(4) {
    width: 10em;
  }

  .ft_nav li:nth-child(5) {
    width: 8em;
  }

  .ft_sns {
    justify-content: center;
  }

  .ft_sns li {
    width: 35px;
    margin-right: 15px;
  }

  .ft_shopinfo {
    text-align: center;
  }

  .copyright {
    margin-top: 30px;
  }
}
