/* ----- global_header ----- */
#global-header,
#global-nav {
  font-family: メイリオ, Meiryo, sans-serif;
}

#global-header .gh-content {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 60px;
}

#global-header #gh-logo {
  margin-left: 15px;
  width: 215px;
  /*width: 280px;*/
}

#global-header #gh-nav {
  display: none;
}

@media screen and (max-width: 768px)  {
  #global-header #gh-logo a {
    display: block;
    line-height: 0;
  }
}

@media screen and (min-width: 768px), print {
  #global-header .gh-content {
    height: 60px;
    max-width: 1200px;
  }

  #global-header #gh-logo {
    margin-left: 3px;
    width: 240px;
    /*width: 388px;*/
  }
  
  #global-header #gh-logo a {
    display: block;
    line-height: 0;
  }

  #global-header #gh-nav {
    margin-left: auto;
    display: flex;
    list-style: none;
  }

  #global-header #gh-nav li {
    margin-right: 15px;
  }
  
  #global-header #gh-nav li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
    transition: color .2s ease-in;
  }

  #global-header #gh-nav li a:hover {
    color: #f20000;
  }
  
  #global-header #gh-nav li a:before {
    content: "";
    display: block;
    height: 15px;
    margin-right: 6px;
  }
  
  #global-header #gh-nav li.gh-nav-shop a:before {
    width: 21px;
    background: url("images/icon_snav_shop.svg") no-repeat;
    background-size: contain;
  }

  #global-header #gh-nav li.gh-nav-webshop a:before {
    width: 20px;
    background: url("images/icon_snav_webshop.svg") no-repeat;
    background-size: contain;
  }

  #global-header #gh-nav li.gh-nav-contact a:before {
    width: 15px;
    background: url("images/icon_snav_contact.svg") no-repeat;
    background-size: contain;
  }

  #global-header #gh-nav li.gh-nav-english a:before {
    width: 23px;
    background: url("images/icon_snav_english.svg") no-repeat;
    background-size: contain;
  }
  
}

/* ----- gh-sp-btn ----- */
#gh-sp-btn {
  position: absolute;
  top: 0;
  right: 0;
  margin: auto 0;
  padding: 0;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 0;
  text-indent: -9999px;
  color: #FFF;
  -webkit-appearance: none;
  background: #ff0000;
  outline: none;
}

#gh-sp-btn::after {
  content: '';
  width: 30px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  margin: 0 auto;
  text-align: center;
  background: url(images/text_sp_menu.svg) no-repeat center center;
  background-size: contain;
}

#gh-sp-btn span {
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  top: 21px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 1px;
  background: #FFF;
  overflow: hidden;
}

#gh-sp-btn span:nth-of-type(1) {
  transform: translateY(-8px) rotate(0);
}

#gh-sp-btn[data-default="false"] span:nth-of-type(1) {
  animation: sp-btn-bar01 .5s forwards;
}

#gh-sp-btn.is-open span:nth-of-type(1) {
  animation: sp-btn-bar01-open .5s forwards;
}

#gh-sp-btn[data-default="false"] span:nth-of-type(2) {
  animation: sp-btn-bar02 .5s forwards;
}

#gh-sp-btn.is-open span:nth-of-type(2) {
  animation: sp-btn-bar02-open .5s forwards;
}

#gh-sp-btn span:nth-of-type(3) {
  transform: translateY(8px) rotate(0);
}

#gh-sp-btn[data-default="false"] span:nth-of-type(3) {
  animation: sp-btn-bar03 .5s forwards;
}

#gh-sp-btn.is-open span:nth-of-type(3) {
  animation: sp-btn-bar03-open .5s forwards;
}

@keyframes sp-btn-bar01 {
    0% { transform: translateY(0) rotate(45deg); }
   50% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(-7px) rotate(0); }
}

@keyframes sp-btn-bar01-open {
    0% { transform: translateY(-7px) rotate(0); }
   50% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(0) rotate(45deg); }
}

@keyframes sp-btn-bar02 {
    0% { transform: rotateX(90deg); }
   50% { transform: rotateX(90deg); }
  100% { transform: rotateX(0); }
}

@keyframes sp-btn-bar02-open {
    0% { transform: rotateX(0); }
   50% { transform: rotateX(90deg); }
  100% { transform: rotateX(90deg); }
}

@keyframes sp-btn-bar03 {
    0% { transform: translateY(0) rotate(-45deg); }
   50% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(7px) rotate(0); }
}

@keyframes sp-btn-bar03-open {
    0% { transform: translateY(7px) rotate(0); }
   50% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(0) rotate(-45deg); }
}

@media screen and (min-width: 768px), print {
  #gh-sp-btn {
    display: none!important;
  }
}

/* ----- global-nav ----- */
#global-nav {
  width: 100%;
  background: #ff0000;
}

#gh-sp-btn.is-close + #global-nav {
  display: none;
}

#global-nav ul {
  list-style: none;
}

#global-nav a {
  text-decoration: none;
}

#gnav-main {
}

@media screen and (max-width: 768px) {
  #global-nav #gnav-main ul li {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
  }
  
  #global-nav #gnav-main ul li a {
    display: block;
    padding: 18px 22px;
    font-size: 14px;
    color: #FFF;
    line-height: 1.2;
    position: relative;
  }
  
  #global-nav #gnav-main ul li a:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    margin: auto;
    box-sizing: border-box;
  }
  
  #global-nav #gnav-aside-sp ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 15px 10px 9px;
    box-sizing: border-box;
    line-height: 0;
  }
  
  #global-nav #gnav-aside-sp ul li {
    margin: 0 10px;
    margin-bottom: 6px;
    line-height: 0;
  }
  
  #global-nav #gnav-aside-sp ul li a {
    display: inline-block;
    padding-left: 1.5em;
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    position: relative;
  }
  
  #global-nav #gnav-aside-sp ul li a:before {
    content: "";
    display: block;
    width: 1.2em;
    height: 1em;
    position: absolute;
    top: .2em;
    left: 0;
  }
  
  #global-nav #gnav-aside-sp ul li.gnav-aside-shop a:before {
    background: url("images/icon_snav_shop_white.svg") no-repeat center;
    background-size: contain;
  }

   #global-nav #gnav-aside-sp ul li.gnav-aside-webshop a:before {
    background: url("images/icon_snav_webshop_white.svg") no-repeat center;
    background-size: contain;
  }

   #global-nav #gnav-aside-sp ul li.gnav-aside-contact a:before {
    background: url("images/icon_snav_contact_white.svg") no-repeat center;
    background-size: contain;
  }
  
   #global-nav #gnav-aside-sp ul li.gnav-aside-english a:before {
    background: url("images/icon_snav_english_white.svg") no-repeat center;
    background-size: contain;
  }
  
}

@media screen and (min-width: 768px), print {
  #global-nav {
    display: block!important;
  }

  #global-nav ul {
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    height: 50px;
  }

  #global-nav a {
    color: #FFF;
  }
  
  #global-nav ul li {
    flex: 1 1 240px;
    box-sizing: border-box;
    height: 50px;
    border-right: solid 1px #ff8080;
  }

  #global-nav ul li:first-child {
    border-left: solid 1px #ff8080;
  }

  #global-nav ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    font-size: 16px;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: background .2s ease-in;
  }

  #global-nav ul li a:hover {
    color: #fff;
    background: #d40000;
    opacity: 1;
  }
  
  #gnav-aside-sp {
    display: none!important;
  }
}


/* ----- footer-sitemap ----- */
#footer-sitemap,
#global-footer {
  font-family: メイリオ, Meiryo, sans-serif;
}

#footer-sitemap {
  padding: 20px 25px 15px;
  background: #f2f2f2;
}

#footer-sitemap ul {
  list-style: none;
}

#footer-sitemap a {
  color: inherit;
  text-decoration: none;
}

#footer-sitemap .fs-contents {
  margin: 0 auto;
  width: 100%;
}

#footer-sitemap .fs-logo {
  display: none;
}

#footer-sitemap .fs-column + .fs-column {
  padding-top: 15px;
  margin-top: 15px;
  border-top: solid 1px #ffffff;
}

#footer-sitemap .fs-heading {
  font-size: 14px;
  margin-bottom: 12px;
  color: #f20000;
}

#footer-sitemap .fs-marks {
  margin-top: 10px;
}

#footer-sitemap .fs-list li a {
  display: inline-block;
  line-height: 1.5;
  position: relative;
}

#footer-sitemap .fs-list li a:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #7f7f7f;
  border-bottom: 2px solid #7f7f7f;
  transform: rotate(-45deg);
  position: absolute;
  top: 0.4em;
  left: 0;
  box-sizing: border-box;
}

#footer-sitemap .fs-marks {
  margin-top: 10px;
}

#footer-sitemap .fs-marks ul {
  display: flex;
  justify-content: center;
}

#footer-sitemap .fs-marks ul li {
  display: block;
  flex: 1 1 auto;
  margin: 0 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #footer-sitemap {
    line-height: 1.5 !important;
  }
    
  #footer-sitemap .fs-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }

  #footer-sitemap .fs-list li {
    width: calc(50% - 5px);
    margin-bottom: 9.6px;
    font-size: 12px;
    box-sizing: border-box;
  }
  
  #footer-sitemap .fs-list li a {
    padding-left: 10px;
  }

  #footer-sitemap .fs-list li a:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #7f7f7f;
    border-bottom: 2px solid #7f7f7f;
    box-sizing: border-box;
    position: absolute;
    left: -2px;
    top: .6.4px;
    transform: rotate(-45deg);
  }
  
  #footer-sitemap .fs-marks a {
    display: block;
  }
  
  #footer-sitemap .fs-marks ul {
    display: block;
    margin: 0 auto;
  }
  
  #footer-sitemap .fs-marks ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 1.2;
    box-sizing: border-box;
    padding-top: 15px;
    margin-top: 15px;
    border-top: solid 1px #ffffff;    
  }

  #footer-sitemap .fs-marks ul li > div {
    width: 70%;
    max-width: 270px;
    align-items:center;
    text-align: left;
  }
  
  #footer-sitemap .fs-marks ul li a {
    display: block;
  }

  #footer-sitemap .fs-marks ul li .mark-img,
  #footer-sitemap .fs-marks ul li .mark-name {
    text-align: center;
  }
  
  #footer-sitemap .fs-marks ul li .mark-img {
    width: 30%;
    padding-right: 15px;
    line-height: 0;
    box-sizing: border-box;
  }

  #footer-sitemap .fs-marks ul li .mark-name {
    margin-bottom: 8px;
  }
  
  #footer-sitemap .fs-marks ul li .mark-img img {
    display: block;
    margin: 0 auto;
    line-height: 0;
  }
  
  
}

@media screen and (min-width: 768px), print {
  #footer-sitemap {
    padding: 40px 0 30px;
  }
  
  #footer-sitemap {
    line-height: 1.5;
  }
  
  #footer-sitemap .fs-contents {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
 }

  #footer-sitemap .fs-logo {
    margin: 0 auto 0 30px;
    flex: none;
    width: 130px;
    display: block;
    line-height: 1;
  }
    
  #footer-sitemap .fs-column,
  #footer-sitemap .fs-column + .fs-column {
    flex: none;
    width: 280px;
    margin: 0 0 0 20px;
    padding: 0;
    border: none;
  }

  #footer-sitemap .fs-heading {
    font-size: 18px;
    line-height: 1.5;
  }

  #footer-sitemap .fs-heading a {
    transition: opacity .2s ease-in;
  }
  
  #footer-sitemap .fs-heading a:hover {
    opacity: .6;
  }
  
  #footer-sitemap .fs-list {
    column-count: 1;
    column-gap: 0;
    font-size: 14px;
    line-height: 1.5;
 }

  #footer-sitemap .fs-list li {
    margin-bottom: 9.6px;
      line-height: 0;
  }
  
  #footer-sitemap .fs-list a {
    display: inline-block;
    padding-left: 16px;
    position: relative;
    transition: color .2s ease-in;
  }

  #footer-sitemap .fs-list li a:hover {
    color: #f20000;
  }
  
  #footer-sitemap .fs-list a:before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #7f7f7f;
    border-bottom: 2px solid #7f7f7f;
    transform: rotate(-45deg);
    position: absolute;
    top: 0.4rem;
    left: 0;
    box-sizing: border-box;
  }
  
  #footer-sitemap .fs-marks {
    width: 100%;
    margin-top: 30px;
    line-height: 0;
  }

  #footer-sitemap .fs-marks ul li {
    flex: 0 0 auto;
    margin: 0 15px;
    font-size: 10px;
    line-height: 1.2;
  }

  #footer-sitemap .fs-marks ul li {
    max-width: 160px;
    margin-bottom: 10px;
    text-align: left;
  }
  
  #footer-sitemap .fs-marks ul li a {
    display: block;
  }

  #footer-sitemap .fs-marks ul li .mark-img,
  #footer-sitemap .fs-marks ul li .mark-name {
    padding-bottom: 5px;
    text-align: center;
  }
  
  #footer-sitemap .fs-marks ul li .mark-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
    line-height: 0;
    box-sizing: border-box;
  }
  
  #footer-sitemap .fs-marks ul li .mark-img img {
    display: block;
    line-height: 0;
  }
}

@media screen and (min-width: 768px) and (max-width:1199px) {
  body.g-body #footer-sitemap .fs-logo {
    width: calc(100% - 40px);
    margin: 0 20px 40px;
  }

  body.g-body #footer-sitemap .fs-logo img {
    width: 130px;
  }

  body.g-body #footer-sitemap .fs-column,
  body.g-body #footer-sitemap .fs-column + .fs-column {
    width: calc(33.3% - 20px);
  }

}

/* ----- global-footer ----- */
#global-footer {
  color: #FFF;
  background: #3a3a3a;
  padding: 10px 15px;
}

#global-footer a {
  color: inherit;
  text-decoration: none;
}

#global-footer .gf-content {
  margin: 0 auto;
}

#global-footer #gf-nav {
  margin-bottom: 10px;
  display: inline-block;
  letter-spacing: -.4rem;
}

#global-footer #gf-nav li {
  display: inline-block;
  letter-spacing: normal;
}

#global-footer #gf-nav li:not(:last-child)::after {
  content: '｜';
}

#global-footer #gf-copyright {
  display: block;
  font-size: 10px;
  font-style: normal;
  text-align: center;
}

@media screen and (max-width: 768px)  {
  #global-footer {
    font-size: 12px;
    line-height: 1.5 !important;
  }
}

@media screen and (min-width: 768px), print {
  #global-footer {
    padding: 10px 0;
    line-height: 1.5;
  }

  #global-footer .gf-content {
    font-size: 14px;
  }
  
  #global-footer .gf-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
  }

  #global-footer #gf-nav {
    margin-bottom: 0;
  }

  body #global-footer #gf-nav a {
    transition: opacity .2s ease-in;
  }

  body #global-footer #gf-nav a:hover {
    opacity: .7;
  }
  
  #global-footer #gf-copyright {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) and (max-width:1199px) {	
  body.g-body #global-footer .gf-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  body.g-body #global-footer .gf-content {
    width: 100%;
    flex-wrap: wrap;
    box-sizing: border-box;
  }

  body.g-body #footer-sitemap .fs-marks ul {
    width: 100%;
    flex-wrap: wrap;
  }
  
  body.g-body #global-footer #gf-nav,
  body.g-body #global-footer #gf-copyright {
    width: 100%;
  }
  
  body.g-body #global-footer #gf-nav {
    margin-bottom: 10px;
  }
  
  body.g-body #global-footer #gf-copyright {
    text-align: center;
  }

}
