@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

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

/* border-box */
*, *: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, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(45% + 0.5vw);
  }
}
body {
  font-size: 1.6rem;
  font-family: 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
  line-height: 1.5;
  color: #000;
  background-color: #FFE400;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 0;
    font-size: 3.2vw;
  }
}
a {
  color: inherit;
  transition: opacity 0.3s;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }
}
/* helper */
._spOnly {
  display: none;
}

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

  ._pcOnly {
    display: none;
  }
}
._bg-image {
  color: transparent;
  font: 0/0 a;
}

._serif {
  font-family: 'Noto Serif JP', sans-serif;
}

/* common parts
-----------------------*/
#site-wrapper {
  overflow: hidden;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding: 0 4vw;
  }
}
/* global-navi
-----------------------*/
#global-navi-wrap {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 100;
}
#global-navi-wrap .inner {
  position: relative;
  padding: 0;
}
#global-navi-wrap #global-navi {
  /*
  position: absolute;
  right: 0;
  top: 20px;    
  */
  min-width: 358px;
  padding: 20px;
  border-radius: 5px;
  z-index: 20;
}
#global-navi-wrap #global-navi.is-open {
  background-color: #F2CD00;
}
#global-navi-wrap .btn-menu {
  width: 100px;
  margin-left: auto;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  line-height: 30px;
  background-color: #DF1E1F;
  border-radius: 5px;
  cursor: pointer;
}
#global-navi-wrap ul {
  display: none;
  margin-top: 20px;
}
#global-navi-wrap ul li {
  font-size: 2.6rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  #global-navi-wrap {
    top: 2.66667vw;
    right: 2.66667vw;
  }
  #global-navi-wrap #global-navi {
    min-width: 66.66667vw;
    padding: 2.66667vw;
  }
  #global-navi-wrap .btn-menu {
    width: 20vw;
    font-size: 3.46667vw;
    line-height: 6.66667vw;
  }
  #global-navi-wrap ul {
    margin-top: 2.66667vw;
  }
  #global-navi-wrap ul li {
    font-size: 4vw;
    line-height: 2;
  }
}
/* footer
-----------------------*/
#footer {
  padding: 20px 0 130px 0;
  border-top: 3px solid #AB7D4D;
}
#footer ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
#footer ul li {
  margin: 0 1em;
  font-size: 2.0rem;
}

@media screen and (max-width: 767px) {
  #footer {
    padding: 0 0 75px 0;
  }
  #footer .inner {
    padding: 0;
  }
  #footer ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #AB7D4D;
  }
  #footer ul li {
    width: 50%;
    border-left: 1px solid #AB7D4D;
    border-top: 1px solid #AB7D4D;
    margin: 0;
    font-size: 3.2vw;
  }
  #footer ul li:nth-child(-n + 2) {
    border-top: none;
  }
  #footer ul li:nth-child(2n + 1) {
    border-left: none;
  }
  #footer ul li a {
    display: block;
    padding: 2vw;
    text-align: center;
  }
}
/* float
-----------------------*/
.float {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 50px 0 10px 0;
  background-color: #AB7D4D;
  box-shadow: 0 0 25px #000;
  z-index: 20;
}
.float .copyright {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
.float .link-shop {
  position: absolute;
  top: 10px;
  right: 150px;
  display: -webkit-flex;
  display: flex;
}
.float .link-shop .text {
  color: #fff;
  font-size: 2.4rem;
}
.float .link-shop a {
  display: inline-block;
  margin-top: -70px;
}
.float #pagetop {
  position: absolute;
  right: 50px;
  top: -25px;
}
.float #pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: url(../images/common/btn_pagetop.png) #DF1E1F no-repeat center;
}

@media screen and (max-width: 767px) {
  .float {
    height: 75px;
    box-shadow: 0 0 15px #000;
  }
  .float .link-shop {
    position: absolute;
    top: 10px;
    right: 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .float .link-shop .text {
    color: #fff;
    font-size: 3.73333vw;
  }
  .float .link-shop a {
    width: 100px;
    margin-top: -10px;
  }
  .float .copyright {
    font-size: 2.66667vw;
  }
  .float #pagetop {
    display: none;
  }
}
