@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/* =============================================
 * ### 目次
 *   1.  CSS カスタムプロパティ
 *   2.  基本設定
 *   3.  メディア表示制御
 *   4.  Container
 *   5.  Slick Slider
 *   6.  共通パーツ
 *   7.  Header
 *       - ヘッダー基本
 *       - カートアイコン
 *       - グローバルナビ
 *       - ハンバーガーボタン
 *       - Nav Overlay（SP）
 *   8.  Footer
 *       - ブランドエリア
 *       - フッターカラム
 *       - フッターボトム
 *       - フッターカラムパーツ
 * ============================================= */
:root {
  --ctm-container: 120rem;
  --ctm-text: #0f0f0f;
  --ctm-text2: #8e8e8e;
  --ctm-muted: #6b6b6b;
  --ctm-line: #e8e8e8;
  --ctm-soft: #271d1d;
  --ctm-dark: #0b0b0b;
  --ctm-white: #ffffff;
  --ctm-bg1: #f1f1f1;
  --ctm-radius: 1.6rem;
  --ctm-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
  --ctm-h1: clamp(3.4rem, 4.2vw, 7.2rem);
  --ctm-h2: clamp(2.2rem, 2.2vw, 3.4rem);
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  font-family: "Manrope", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: var(--ctm-text);
  background: #fff;
  line-height: 1.6;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 300ms ease-out, color 300ms ease-out, background-color 300ms ease-out;
}
a:hover {
  opacity: 0.7;
}

button {
  font: inherit;
  transition: opacity 300ms ease-out, background 300ms ease-out;
}

@media screen and (min-width: 992px) {
  .sp-only {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .tab-only {
    display: block !important;
  }
}

@media screen and (max-width: 1199px) {
  .desktop-only {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .tab-desktop {
    display: none !important;
  }
}

.hide-content {
  display: none !important;
}

.ctm_srOnly {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ctm_container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.6rem;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .ctm_container {
    padding-inline: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .ctm_container {
    max-width: var(--ctm-container);
    padding-inline: 0;
  }
}

.ctm_btn1 a {
  display: block;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 0.6em 0;
}
a.arrow_r {
  margin-top: 0.5em;
  padding-right: 1em;
  position: relative;
  display: flex;
  text-decoration: none;
  align-items: center;
  gap: 10px;
}
a.arrow_r::after {
  content: " ";
  display: inline-block;
  background-image: url(https://theemo.itembox.cloud/item/img/common/icon_arrow2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 13px 11px;
  border: 1px solid #000;
  border-radius: 2px;
  width: 30px;
  height: 30px;
  transition: all 0.5s ease;
  background-color: #fff;
}
a.arrow_r:hover {
  background-color: #fff;
  color: #000;
}
a.arrow_r:hover::after {
  content: "";
  background-image: url(https://theemo.itembox.cloud/item/img/common/icon_arrow2_wh.svg);
  background-color: #000;
}

.ctm_siteHeader {
  position: fixed;
  top: 1.2rem;
  z-index: 30;
  margin: 0 1.6rem;
  width: calc(100% - 3.2rem);
  background: #fff;
  backdrop-filter: blur(0.8rem);
  border-radius: 0.4rem;
}
.ctm_siteHeader__inner {
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
@media screen and (max-width: 991px) {
  .ctm_siteHeader__inner {
    height: 4.6rem;
  }
}
.ctm_siteHeader .sitelogo {
  width: 132px;
}
.ctm_siteHeader__cart a {
  display: flex;
}
.ctm_siteHeader__cart .fs-client-cart-count {
  font-size: 1rem;
  border: 1px solid #8E8E8E;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  text-align: center;
  margin-left: 3px;
}

.ctm_iconLink {
  font-size: 1.3rem;
  opacity: 0.85;
}

.ctm_gnav {
  display: flex;
  gap: 1.8rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 991px) {
  .ctm_gnav {
    position: fixed;
    top: 4.3rem;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 30;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    padding: 1.6rem 2.4rem 2.4rem;
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: calc(100vh - 4.3rem - 1.2rem);
    opacity: 0;
    border-radius: 0 0 0.4rem 0.4rem;
  }
  .ctm_gnav.is-open {
    transform: translateY(0);
    opacity: 1;
  }
}
.ctm_gnav_container {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .ctm_gnav_container {
    display: block;
    width: 100%;
    gap: 0;
    padding: 20px 0;
  }
}
@media screen and (max-width: 991px) {
  .ctm_gnav__item {
    padding: 1.2rem 0;
  }
}
.ctm_gnav__item.hasChild .ctm_gnav__item_submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ctm_gnav__item.hasChild > .ctm_gnav__link::after {
  content: "+";
  display: inline-block;
  margin-left: 0.4em;
  color: #8e8e8e;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .ctm_gnav__item.hasChild .ctm_gnav__item_submenu li a {
    display: block;
    padding: 0.7rem 1.6rem;
    font-size: 1.3rem;
  }
}
.ctm_gnav__item.hasChild.is-open > .ctm_gnav__link::after {
  content: "-";
}
.ctm_gnav__item.hasChild.is-open .ctm_gnav__item_submenu {
  display: flex;
}
.ctm_gnav__item.hasChild.is-open .ctm_gnav__item_submenu ul {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .ctm_gnav__item.hasChild.is-open .ctm_gnav__item_submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 0.4rem 0.4rem;
    padding: 0.6rem 0;
    z-index: 40;
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 991px) {
  .ctm_gnav__item.hasChild.is-open .ctm_gnav__item_submenu {
    padding: 1rem 0;
  }
}
.ctm_gnav__link {
  opacity: 0.85;
  transition: opacity 300ms ease-out;
}
.ctm_gnav__link:hover {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .ctm_gnav__link {
    display: block;
    font-weight: 600;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .ctm_gnav__item_submenu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-inline: auto;
  }
}
@media screen and (max-width: 991px) {
  .ctm_gnav__item_submenu ul {
    flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .ctm_gnav__item_submenu li a {
    display: block;
    padding: 0.3em 0;
    text-align: center;
  }
}

.ctm_hamburger {
  width: 2rem;
  height: 1.3rem;
  background: transparent;
  border: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 35;
}
.ctm_hamburger span {
  display: block;
  width: 100%;
  height: 0.1rem;
  background: #111;
  border-radius: 99rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.ctm_hamburger.is-open span:nth-child(1) {
  transform: translateY(0.6rem) rotate(45deg);
}
.ctm_hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ctm_hamburger.is-open span:nth-child(3) {
  transform: translateY(-0.6rem) rotate(-45deg);
}

.ctm_navOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 25;
}
.ctm_navOverlay.is-open {
  display: block;
}

.ctm_footer {
  background: var(--ctm-dark);
  color: #fff;
  padding: 4rem 0;
}
@media screen and (min-width: 992px) {
  .ctm_footer {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .ctm_footer {
    padding: 6rem 0 2.4rem;
  }
}
.ctm_footer a {
  color: rgba(241, 241, 241, 0.5);
}
.ctm_footer .ctm_btn1 a {
  border: 1px solid rgba(241, 241, 241, 0.5);
}
.ctm_footer .ctm_btn1 a:hover {
  opacity: 1;
  background-color: #fff;
  color: #000;
}
.ctm_footer__btnlist {
  display: grid;
  gap: 1.2rem;
  max-width: 25rem;
  margin-inline: auto;
}
.ctm_footer__top {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 22.7rem;
  padding-bottom: 2.8rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.12);
  justify-content: space-between;
  max-width: 1280px;
  margin-inline: auto;
}
@media screen and (max-width: 991px) {
  .ctm_footer__top {
    grid-template-columns: 1fr;
    padding: 0 1.6rem 2.8rem;
    gap: 3.6rem;
  }
}
.ctm_footer__top .ctm_sitelogo {
  width: 22.4rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 991px) {
  .ctm_footer__top .ctm_sitelogo {
    width: 17.5rem;
  }
}
.ctm_footer__contact {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 991px) {
  .ctm_footer__contact {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
.ctm_footer__contact__info {
  margin-bottom: 1.2rem;
}
.ctm_footer__Newsletter, .ctm_footer__mypage {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 991px) {
  .ctm_footer__Newsletter, .ctm_footer__mypage {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
.ctm_footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  align-items: start;
}
@media screen and (max-width: 991px) {
  .ctm_footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
}
.ctm_footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  max-width: 1280px;
  margin-inline: auto;
  padding: 2.8rem 0;
}
@media screen and (max-width: 991px) {
  .ctm_footer__bottom {
    flex-direction: column;
  }
}
.ctm_footer__copy {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.2rem;
}
.ctm_footer__links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .ctm_footer__links {
    display: grid;
    text-align: center;
    gap: 0.5rem;
  }
}
.ctm_footer__links a {
  font-size: 1.2rem;
}
.ctm_footer__links a:hover {
  color: #fff;
}

.ctm_fcol_wrapper {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 992px) {
  .ctm_fcol_wrapper {
    display: contents;
  }
}

.ctm_fcol__title {
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}

.ctm_fcol__list {
  display: grid;
  gap: 0.8rem;
  align-items: flex-start;
}

.ctm_fcol__link {
  display: block;
  transition: color 300ms ease-out;
}
.ctm_fcol__link:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .ctm_fcol__link {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=common.css.map */