﻿@charset "UTF-8";

/* =======================================================================

  Default.css

======================================================================= */

/*  Base
======================================================= */

/* PC */
html {
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1140px) {
  html {
    font-size: calc(10 * (100vw / 1140));
  }
}

/* SP */
@media screen and (max-width: 375px) {
  html {
    font-size: calc(10 * (100vw / 375));
  }
}

body {
  font-family: var(--hiragino-gothic);
  font-size: var(--text-l);
  color: var(--color-black);
}

.contents_inner {
  width: var(--container-default);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.user_wrap {
  width: 100%;
}

#Wrap_lower.onlyDefault {
  margin-top: 0 !important;
  padding: 0 !important;
}



/* =============================================================

    Header Setting

============================================================= */

#header {
  /*position: fixed;*/
  width: 100%;
  z-index: var(--zindex-header);
  top: 0;
  font-family: var(--font-en), var(--hiragino-gothic);
  background: #fff;
}

#header.header_order {
  position: inherit;
}

.header_inner {
  width: var(--container-default);
  max-width: 95%;
  margin-right: auto;
  margin-left: auto;
}


/* -- Placeholder Color -- */

.header_search :placeholder-shown {
  color: var(--color-silver);
}

.header_search ::-webkit-input-placeholder {
  color: var(--color-silver);
}

.header_search :-moz-placeholder {
  color: var(--color-silver);
}

.header_search ::-moz-placeholder {
  color: var(--color-silver);
}

.header_search :-ms-input-placeholder {
  color: var(--color-silver);
}

/* Header Info
---------------------------------- */

#header_info {
  background: var(--color-dark-grey);
  color: var(--color-white);
}

#header_info .header_inner {
  padding: 1.5rem 0;
}

#header_info .header_inner,
#header_info .header_inner p {
  text-align: center;
}

#header_info a {
  text-decoration: underline;
}

#header_info a:hover {
  text-decoration: none;
}


/* Header Top
---------------------------------- */

#header_top {
  overflow: hidden;
}

#header_top .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

#header_top .header_logo {
  width: 12.4rem;
}

#header_top .header_logo img {
  width: 100%;
}

.header_inner__column {
  display: flex;
  align-items: center;
  line-height: 0;
}

/* ---- Header Utiliry ---- */

.header_login {
  padding: 0 1.5rem;
  font-weight: bold;
}

.header_login span {
  display: inline-block;
  padding: 0 1.2rem;
}

/* ---- Cart ---- */

.utility_cart a {
  position: relative;
  display: inline-block;
}

.utility_cart .num {
  position: absolute;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  background: #d91a35;
  border-radius: 100%;
  font-family: var(--hiragino-gothic);
  color: #fff !important;
  text-align: center;
  content: "";
}


/* ---- Header Utiliry ---- */

.header_utiliry ul {
  display: flex;
  align-items: center;
}

.header_utiliry ul li {
  padding: 0 1rem;
  text-align: center;
}

.header_utiliry ul li img{
  width: 2.6rem;
}


/* ---- Cart ---- */

.header_utiliry ul .utility_cart {
  padding-right: 1.2rem;
}

.utility_cart img {
  width: 2rem;
}

.utility_cart .num {
  top: -.4rem;
  right: -1.2rem;
  width: 1.9rem;
  height: 1.9rem;
  padding: 0;
}

_::-webkit-full-page-media, _:future, :root .utility_cart .num {
  padding-top: .2rem;
}

/* ---- キーワード検索 ---- */

.header_search .textBox {
  width: 22rem;
  height: 3rem;
  border-bottom: 1px solid var(--color-dark-grey);
  margin-right: 1.5rem;
  line-height: 2;
}

.header_search .textBox input {
  width: 100%;
  height: 100%;
  border: none;
}

.header_search .btnSearch {
  top: 0;
  right: -.02rem;
  width: 1.7rem;
  height: 100%;
}

.header_search .btnSearch a {
  display: flex;
  justify-content: center;
  height: 100%;
}

.header_search .btnSearch img {
  width: 1.5rem;
  margin-top: -0.5rem;
  vertical-align: 0;
}

#header #dvProductSearch input.text,
#header .header_search .textBox input {
  font-size: var(--text-m) !important;
  font-family: var(--hiragino-gothic) !important;
  line-height: 2;
}

/* Header Menu
---------------------------------- */

#header_menu {
  border-top: 1px solid var(--color-very-light-grey);
  border-bottom: 1px solid var(--color-very-light-grey);
}

#header_menu .header_menu__list > ul {
  display: flex;
  align-items: center;
}

#header_menu .header_menu__item > a,
#header_menu .header_menu__item > p > a {
  display: block;
  position: relative;
  padding: 2.2rem 3.4rem;
  color: var(--color-light-grey);
  text-align: center;
}

#header_menu .header_menu__item:first-child a {
  padding-left: 0;
}

#Wrap_lower.onlyOrder,
#Wrap_lower.onlyUser {
  padding-top: 0;
}


/*  Header PC Only Setting
-------------------------- */

@media (min-width: 769px) {

  #header_top a {
    transition: opacity var(--transition-default);
  }

  #header_top a:hover {
    opacity: var(--hover-opacity);
  }


  /*  Menu Contents
  -------------------------- */

  .header_menu__contents {
    height: 0;
    opacity: 0;
    transition: opacity .4s ease-in-out;
    visibility: hidden;
    z-index: -1;
    position: absolute;
    top: 18.1rem;
    left: 0;
    right: 0;
    z-index: var(--zindex-header);
    color: #C7C7C7;
  }

  .header_menu__contents a {
    transition: color .4s ease-in-out;
  }

  .header_menu__contents a:hover {
    color: var(--color-black);
  }

  .header_menu__contents::before {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #efefef;
    content: "";
  }

  .header_menu__item:hover .header_menu__contents  {
    height: auto;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
  }

  .header_menu__contents .contents_inner {
    width: var(--container-default);
    margin-right: auto;
    margin-left: auto;
    padding: 2.5rem 0 1rem;
    max-width: 95%;
  }

  .header_menu__contents .nav_list {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .header_menu__contents .nav_list > ul > li {
    display: flex;
    overflow: hidden;
  }

  .header_menu__contents .nav_list > ul > li:first-child {
    padding-bottom: 2.5rem;
  }

  .header_menu__contents .nav_list .nav_toggle {
    width: 20rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-weight: bold;
  }

  .header_menu__contents .nav_list .nav_list__child {
    width: 90rem;
    font-size: var(--text-l);
  }

  .header_menu__contents .nav_list .nav_list__child li::after {
    padding: 0 1.5rem;
    content: "│";
  }

  .nav_list__child {
    display: flex;
    flex-wrap: wrap;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .nav_list__child li {
    margin-bottom: 2rem;
  }

  /* ---- Hover Line ---- */

  #header_menu .header_menu__item > a,
  #header_menu .header_menu__item > p > a {
    transition: color var(--transition-default);
  }

  #header_menu .header_menu__item > a::before,
  #header_menu .header_menu__item > p > a::before {
    transition: opacity var(--transition-default);
    opacity: 0;
    position: absolute;
    right: 3.4rem;
    bottom: 0;
    left: 3.4rem;
    height: .2rem;
    background: var(--color-black);
    content: "";
  }

  #header_menu .header_menu__item:first-child > a::before,
  #header_menu .header_menu__item:first-child > p > a::before {
    left: 0;
  }

  #header_menu .header_menu__item:hover > a,
  #header_menu .header_menu__item:hover > p > a {
    color: var(--color-black);
  }

  #header_menu .header_menu__item:hover > a::before,
  #header_menu .header_menu__item:hover > p > a::before {
    opacity: 1;
  }

}

/*  Footer SP Only Setting
-------------------------- */

@media (max-width: 768px) {

  #header {
    border-bottom: 1px solid var(--color-very-light-grey);
  }

  .header_inner__column,
  #header_top .header_inner {
    display: block;
  }

  .header_inner {
    max-width: 100%;
  }

  /* Header Info
  ---------------------------------- */

  #header_info {
  }

  #header_info .header_inner,
  #header_info .header_inner p {
    text-align: center;
    line-height: 1.5;
  }

  #header_info .header_inner {
    padding: .8rem 1rem .6rem;
    font-size: var(--text-m);
  }

  /* Header Top
  ---------------------------------- */

  #header_top .header_inner {
    position: relative;
    height: 5.6rem;
    padding: 1.4rem 2.5rem;
  }

  #header_top .header_logo {
    position: absolute;
    top: 1.7rem;
    left: 50%;
    width: 6.6rem;
    margin-left: -3.3rem;
    line-height: 0;
  }

  #header_top .header_utiliry {
    float: right;
    padding: 0 .6em 0 0;
  }

  #header_top .header_utiliry li {
    margin: 0 .75em;
  }

  #header_top .utility_favorite {
    width: 2.5rem;
  }

  #header_top .utility_cart {
    width: 2.5rem;
  }

  #header_top .utility_menu {
    position: absolute;
    top: 3.9rem;
    left: 0;
  }


  /* Hamburger Menu
  ---------------------------------- */

  .hamburger {
    position: absolute;
    top: -2rem;
    left: 1rem;
    z-index: var(--zindex-header);
    width: 2.4rem;
    height: 1.8rem;
    cursor: pointer;
  }

  .hamburger::before,
  .hamburger::after,
  .hamburger span {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #053931;
    border-radius: 100px;
    transition: transform .3s,top .3s,left .3s;
  }

  .hamburger::before,
  .hamburger::after {
    left: 0;
    content: "";
  }

  .hamburger span {
    display: block;
    top: 0.8rem;
  }

  .sp_open  .hamburger span {
    height: 0
  }

  .hamburger::before {
    top: 0;
  }

  .hamburger::before {
    top: 0;
  }

  .hamburger::after {
    bottom: 0;
  }

  .sp_open  .hamburger {
    position: fixed;
    top: 1.8rem;
    right: 2.5vw;
    left: auto;
    width: 2.5rem;
    height: 2.5rem;
  }

  .sp_open  .hamburger::before,
  .sp_open  .hamburger::after {
    background-color: #fff;
  }

  .sp_open  .hamburger::before {
    transform: rotate(45deg);
    top: 50%;
  }

  .sp_open  .hamburger::after {
    transform: rotate(-45deg);
    top: 50%;
  }

  /* SP Menu
  ---------------------------------- */

  .sp_menu {
    opacity: 0;
    position: fixed;
    top: 0;
    left: auto;
    right: 100%;
    z-index: var(--zindex-header);
    width: 88vw;
    height: 100vh;
    overflow: auto;
    background: var(--color-white);
    transition: right .4s ease-in-out, opacity .25s ease-in-out;
    font-family: var(--hiragino-gothic);
  }


  .sp_menu.is-menu-open {
    opacity: 1;
    right: 12vw;
  }

  /* iPad対応 */
  @media (min-width: 550px) and (max-width: 768px) {

    .sp_menu {
      width: 90vw;
    }

    .sp_menu.is-menu-open {
      right: 10vw;
    }

  }

  .sp_menu.sp_only {
    display: none;
  }

  .sp_menu__inner {
    position: relative;
    padding: 0 0 10rem;
  }

  /* -- navi menu setting -- */

  body.no-scroll {
   /* width: 100%;
    height: 100%;*/
    overflow: hidden;
  }

  .no-scroll .navigation-overlay {
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: var(--zindex-header-bg);
    background: rgba(0, 0, 0, 0.5);
  }

  /* .btn__advancedsearch-popup {
    z-index: 1 !important;
  } */


  /* ------ SP Menu List ------ */

  .sp_menu__title {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: -1px;
    padding: 1.65rem 1.6rem 1.5rem;
    background: var(--color-silver-white);
    font-size: 1.3rem;
    font-weight: bold;
  }

  .nav_list {
  }

  .sp_menu .nav_list ul {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  .sp_menu .nav_list li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--color-very-light-grey);
    text-align: left;
  }

  .nav_list li a {
    display: block;
    position: relative;
    padding: 1.8rem 3rem 1.8rem 1.6rem;
    background: url(../Contents/ImagesPkg/common/icn_arw.svg) no-repeat calc(100% - 2rem) 50%;
    background-size: .6rem 1rem;
    font-size: var(--text-xxl);
    text-align: left;
  }

  .nav_list:last-child > ul > li:last-child {
    border-bottom: 1px solid var(--color-very-light-grey);
  }

  .nav_list .nav_toggle {
    transition: background .2s linear;
    background: url(../Contents/ImagesPkg/common/icn_toggle_off.svg) #fafafa calc(100% - 1.6rem) 1.9rem no-repeat;
    background-size: 1.4rem 1.4rem;
  }

  .nav_list .nav_toggle > a {
    display: inline-block;
    width: auto;
    background: none;
    pointer-events: none;
  }

  .nav_list .nav_toggle.is-active {
    background-image: url(../Contents/ImagesPkg/common/icn_toggle_on.svg);
  }

  .nav_list .nav_toggle + ul {
    display: none;
  }

  /* ---- Search ---- */

  .header_search dd {
    padding: 1.5rem 1.6rem;
  }

  .header_search .textBox {
    overflow: hidden;
    width: 100%;
    height: 5rem;
    border-radius: .5rem;
    border: 1px solid var(--color-light-grey);
  }

  .header_search .text {
    padding: 1.6rem 5.5rem 1.6rem 1.8rem;
  }

  .header_search .btnSearch {
    top: 0;
    right: 0;
    width: 5rem;
    height: 100%;
  }

  .header_search .btnSearch img {
    width: 1.9em;
    margin-top: 0;
    vertical-align: 0;
  }

  #dvProductSearch input.text {
    transform: scale(0.8);
    width: 126%;
    height: 6rem;
    margin-top: -0.7rem;
    margin-left: -13%;
    padding-right: 4rem;
    font-size: 1.6rem;
    background: none;
  }

  /* ---- Mail Magazine ---- */

  .sp_menu .bnr_mailmagazine {
    padding: 2rem 1.6rem;
  }

  .bnr_mailmagazine {
    text-align: center;
  }

  .bnr_mailmagazine img {
    width: 50rem;
    max-width: 100%;
    margin: 0 auto;
  }

  /* ---- SNS ---- */

  .sp_menu .sns_area {
    padding: 2rem 0 0;
    text-align: center;
    color: var(--color-grey);
    font-family: var(--font-en), var(--hiragino-gothic);
  }

  .sp_menu .sns_area dt {
    display: block;
    margin-bottom: 2.4rem;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: .02em;
  }

  .sp_menu .sns_area ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sp_menu .sns_area ul li {
    padding: 0 1.7rem;
  }


}


/* =============================================================

    Footer Setting

============================================================= */

#footer {
  position: relative;
  font-family: var(--font-en), var(--hiragino-gothic);
}

.footer_inner {
  width: var(--container-default);
  max-width: 95%;
  margin-right: auto;
  margin-left: auto;
}

#footer a {
  transition: opacity var(--transition-default);
}

#footer a:hover {
  opacity: var(--hover-opacity);
}

/* Footer Top
---------------------------------- */

#footer_top {
  background: var(--color-grey);
  font-size: var(--text-l);
  color: var(--color-white);
  letter-spacing: .05rem;
}

#footer_top .bnr_mailmagazine {
  margin-bottom: 4.5rem;
}

#footer_top .bnr_mailmagazine {
  width: 100%;
}

.bnr_mailmagazine img {
  max-width: 100%;
}

.footer_nav {
  padding: .6em 0 0;
}

.footer_nav li {
  margin: 0 0 3.8rem;
}

#footer_top .sns_area {
}

#footer_top .sns_area dt {
  display: block;
  margin-bottom: 2.5rem;
}

#footer_top .sns_area ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Footer Bottom
---------------------------------- */

#footer_bottom {
  background: var(--color-grey);
  border-top: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: var(--text-s);
}

#footer_bottom .footer_inner {
  display: flex;
  justify-content: space-between;
  padding: 2.6rem 0;
}

.footer_btm_nav {
  padding-top: 0;
}

#footer_bottom .coryright {
  font-size: var(--text-m);
}


/* Page Top
---------------------------------- */

#pagetop {
  transition: opacity var(--transition-default), height var(--transition-default);
  opacity: 0;
  position: absolute;
  top: -10rem;
  right: 3rem;
  bottom: auto;
  z-index: var(--zindex-header);
  width: 6rem;
  height: 6rem;
}

#pagetop.show {
  opacity: 1;
}

#pagetop.fxd {
  position: fixed;
  top: auto;
  bottom: 3rem;
}

.pagetop__link {
  transition: opacity var(--transition-default),top .3s cubic-bezier(0.51, 0.21, 0.41, 0.69), background-color var(--transition-default), border-color var(--transition-default);
  display: block;
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../Contents/ImagesPkg/common/icn_pagetop.svg) no-repeat center var(--color-silver-white);
  background-size: 1.4rem 11rem;
  border-radius: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.pagetop__link:hover {
  opacity: var(--hover-opacity);
}

.pagetop__txt {
  display: none;
}

/* NewsList
---------------------------------- */
.news_detail {
  display: none;
}

/*  Footer PC Only Setting
-------------------------- */

@media (min-width: 769px) {

  /* Footer Top
  ---------------------------------- */

  #footer_top .footer_inner {
    display: flex;
    justify-content: space-between;
    padding: 6.4rem 0 5rem;
  }

  #footer_top .footer_inner__column {
    width: 24.4rem;
    padding: 0 .5em 0 0;
  }

  #footer_top .footer_inner__column:nth-child(1) {
    width: 28rem;
  }

  #footer_top .footer_inner__column:nth-child(2) {
    width: 24rem;
  }

  #footer_top .footer_inner__column:nth-child(3) {
    width: 36rem;
  }

  #footer_top .footer_inner__column:nth-child(4) {
    width: 28rem;
    padding: 0;
  }

  #footer_top .footer_logo {
    width: 12.5rem;
  }

  #footer_top .footer_logo img {
    max-width: 100%;
  }

  /* Footer Bottom
  ---------------------------------- */

  #footer_bottom .footer_nav ul {
    display: flex;
    width: 100%;
  }

  .footer_btm_nav ul {
    display: flex;
  }

  .footer_btm_nav li {
    margin-bottom: 0;
    padding-left: 2.4rem;
  }

  .footer_btm_nav li:first-child {
    padding-left: 0;
  }

}

/*  Footer SP Only Setting
-------------------------- */

@media (max-width: 768px) {

  .footer_inner {
    max-width: 100%;
    padding: 1.8rem;
  }


  /* Footer Top
  ---------------------------------- */

  #footer_top {
  }

  #footer_top .footer_inner {
    padding-top: 4rem;
  }

  .footer_logo {
    width: 11.8rem;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 4rem;
    text-align: center;
  }

  .footer_logo img {
    max-width: 100%;
  }

  .footer_nav {
    padding: 0;
  }

  .footer_nav li {
    margin: 0;
  }

  .footer_nav li a {
    display: block;
    padding: 2em 0;
    border-bottom: 1px solid #989898;
  }

  .footer_nav li:first-child {
    border-top: 1px solid #989898;
  }

  .sp_nav__half {
    margin-bottom: 4rem;
  }

  .sp_nav__half ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-left: -1px;
  }

  .sp_nav__half li:first-child {
    border-top: none;
  }

  .sp_nav__half li {
    width: 50%;
  }

  .sp_nav__half li:nth-child(2n) a {
    padding-left: 1.5rem;
    border-left: 1px solid #989898;
  }

  #footer_top .sns_area {
    width: 22rem;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 3.5rem;
  }

  #footer_top .sns_area dt {
    font-size: 1.3rem;
    text-align: center;
  }

  #footer_top .sns_area li {
    width: 2.4rem;
  }

  /* Footer Bottom
  ---------------------------------- */

  #footer_bottom {
    border-top-width: 0;
  }

  #footer_bottom .footer_inner {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer_btm_nav {
    margin-bottom: 1rem;
    font-size: var(--text-l);
    text-align: center;
  }

  .footer_btm_nav li {
    margin-bottom: 1rem;
    text-align: center;
  }

  .footer_btm_nav li:last-child {
    margin-bottom: 0;
  }

  .footer_btm_nav li a {
    display: block;
    padding: .5rem 0;
  }

  #footer_bottom .coryright {
    display: block;
    padding: 2.8rem 0;
    text-align: center;
    font-size: var(--text-xl);
  }

  /* Page Top
  ---------------------------------- */

  #pagetop {
    width: 5rem;
    height: 5rem;
  }

  #pagetop,
  #pagetop.fxd {
    position: fixed;
    top: auto;
    right: 1.2rem;
    bottom: 1.2rem;
  }


}


/* =============================================================

    Contents Setting

============================================================= */

/* Section Area
---------------------------------- */

.section p {
  margin: 0 0 5rem;
  font-size: var(--text-m);
  line-height: 2;
}

.section .btn-base {
  width: 24rem;
  height: 6rem;
  margin: 2rem 0;
  padding: .5rem 0;
}

.contents_section {
  padding-top: 5rem;
}

/*  Contents SP Only Setting
-------------------------- */

@media (max-width: 768px) {

  /* Section Area
  ---------------------------------- */

  .contents_section {
    padding-top: 4rem;
  }

}


/* =============================================================

    User Setting

============================================================= */

#Wrap_lower.onlyOrder,
#Wrap_lower.onlyUser {
  width: var(--container-default);
  margin-right: auto;
  margin-left: auto;
}

#Wrap_lower.onlyOrder {
  padding-top: 5rem;
  padding-bottom: 10rem;
}

#loginWrap {
  width: var(--container-static);
  margin-right: auto;
  margin-left: auto;
}
