@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;600;700&display=swap"); /* 
/*
font-family: 'Sweet Sans Pro', sans-serif;

font-family: "Noto Sans JP", sans-serif;
*/

/*-------------------------------------------------------------------*/
/***  共通ヘッダー  ***/
/*-------------------------------------------------------------------*/
#menu-btn-check {
  display: none;
  /* チェックボックスを非表示 */
}

.ramNavigation {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
}

.ramNavigationWrap {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.ramNavigation a {
  text-decoration: none !important;
}

/*  For SP  */

@media screen and (max-width: 1024px) {
  .container {
    padding-top: 59px;
  }

  .ramNavigationWrap {
    padding: 10px 20px;
  }
}

.menu-btn {
  /* ボタンのスタイル */
  position: fixed;
  top: 20px;
  right: 20px;
  width: 25px;
  /* 幅 */
  height: 25px;
  /* 高さ */
  background: #fff;
  /* 背景色 */
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  /* アイコンのスタイル */
  position: absolute;
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #333;
  transition: all 0.5s;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

/* アイコンのスタイル（チェック済み） */
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.ramNaviMain {
  /* メニュー全体のスタイル */
  /*visibility: hidden;*/
  /* メニューを非表示 */
  width: 100%;
  height: 100%;
  padding: 30px;
  color: #333;
  /* 文字色 */
  background: #fff;
  /* 背景色 */
  overflow-y: scroll;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .ramNaviMain {
    position: fixed;
    top: 58px;
    left: 100%;
    z-index: 1;
    width: 100vw;
    height: auto;
    height: 100vh;
    padding: 10px 30px 30px;
    transition: all 0.5s;
  }
}

#menu-btn-check:checked ~ .ramNaviMain {
  /* メニュー全体のスタイル（チェック済） */
  /*visibility: visible; */
  left: 0;
  /* メニューを表示 */
}

/* 各項目のスタイル */
@media screen and (max-width: 1024px) {
  .ramNaviMain li {
    /*font-size: 14px;*/
    font-size: 1.4rem;
    padding: 0.5em 0;
  }

  .ramNaviMain li.ramNaviMainMenu {
    position: relative;
    margin-bottom: 1em;
    padding-bottom: 1em;
  }

  .ramNaviMain li.ramNaviMainMenu:not(:last-child):after {
    content: "";
    margin: 0 auto;
    height: 2px;
    width: 30px;
    background-color: #1c3638;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .ramNaviMainMenuA {
    /*font-size: 16px;*/
    font-size: 1.6rem;
    font-weight: bold;
  }

  .ramNaviMain li.ramNaviMainMenu:not(:first-child) a.ramNaviMainMenuA:active {
    cursor: default;
  }

  .ramNaviMainMenuA:active {
    cursor: default;
    color: #ff0000;
  }
}

@media screen and (min-width: 1025px) {
  /*  For PC */

  .menu-btn {
    display: none;
    /* ハンバーガーメニューのボタンを非表示 */
  }

  .ramNavigationWrap {
    padding: 10px 20px 0;
    align-items: center;
  }

  .ramNaviMain {
    /* メニュー全体のスタイル */
    /* width: calc(100% - 180px); */
    width: 100%;
    padding: 0;
    color: #333;
    /* 文字色 */
    background: #fff;
    /* 背景色 */
    text-align: center;
    visibility: visible;
    /* メニューを表示 */
    overflow-y: visible;
  }

  .ramNaviMainUl {
    font-size: 0;
    /* position: relative; */
    max-width: 1390px;
  }

  .ramNaviMain li.ramNaviMainMenu {
    display: inline-block;
  }

  .ramNaviMain li.ramNaviMainMenu a.ramNaviMainMenuA {
    /* 各項目のスタイル */
    position: relative;
    display: block;
    padding: 0;
  }

  .ramNaviMain li.ramNaviMainMenu:first-child a.ramNaviMainMenuA:before,
  .ramNaviMain li.ramNaviMainMenu a.ramNaviMainMenuA:after {
    position: absolute;
    top: calc(50% - (40px / 2));
    content: "";
    height: 40px;
    width: 1px;
    background-color: rgba(17, 17, 17, 0.1);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  .ramNaviMain li.ramNaviMainMenu a.ramNaviMainMenuA span {
    display: -webkit-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    height: 63px;
    padding: 5px 50px;
    font-size: 1.6rem;
  }

  @media screen and (max-width: 1320px) {
    .ramNaviMain li.ramNaviMainMenu a.ramNaviMainMenuA span {
      padding: 5px 20px 5px 40px;
      font-size: 1.4rem;
    }
    .ramNaviMain li.ramNaviMainMenu:first-child a.ramNaviMainMenuA span {
      padding: 5px 20px;
    }
  }
  @media screen and (max-width: 1146px) {
    .ramNaviMain li.ramNaviMainMenu a.ramNaviMainMenuA span {
      padding: 5px 10px 5px 30px;
      font-size: 1.3rem;
    }
    .ramNaviMain li.ramNaviMainMenu:first-child a.ramNaviMainMenuA span {
      padding: 5px 10px;
    }
  }

  .ramNaviMain
    li.ramNaviMainMenu:not(:first-child)
    a.ramNaviMainMenuA
    span:before {
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    top: calc(50% - (0.7rem / 2));
    left: calc(30px - 0.7rem);
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #615e5e;
    content: "";
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  @media screen and (max-width: 1146px) {
    .ramNaviMain
      li.ramNaviMainMenu:not(:first-child)
      a.ramNaviMainMenuA
      span:before {
      left: calc(20px - 0.7rem);
    }
  }

  .ramNaviMain li.ramNaviMainMenu a.ramNaviMainMenuA span:after {
    content: "";
    margin: 0 auto;
    height: 2px;
    width: 30px;
    background-color: #1c3638;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .ramNaviMain li.ramNaviMainMenu.ramCurrent a.ramNaviMainMenuA span:after {
    opacity: 1;
  }

  .ramNaviSub {
    /* 下層メニューのスタイル */
    width: 100%;
    position: absolute;
    top: 100%;
    /* 親項目の直下に配置 */
    left: 0;
    padding: 0 30px;
    height: 0;
    color: #fff;
    /* 文字色 */
    background-color: rgba(255, 255, 255, 0.7);
    /* 背景色 */
    -webkit-transition: height 0.6s ease;
    transition: height 0.6s ease;
    overflow: hidden;
    /*visibility: hidden;  下層メニューを非表示 */
  }

  /* 下層メニューのスタイル（親項目ホバー時） */
  /*.ramNaviMainMenu:hover .ramNaviSub { 
	  visibility: visible;
	  height: 90px;
	}*/
  .ramNaviSub.is-active {
    /* 下層メニューのスタイル（親項目ホバー時） */
    /*visibility: visible;  下層メニューを表示 */
    height: 90px;
  }

  .ramNaviSub ul {
    margin: 20px auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .ramNaviSub li {
    width: 168px;
    margin: 0 10px;
  }

  .ramNaviSub li a {
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 50px;

    color: #fff;
    /*font-size: 14px;*/
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    text-align: center;

    background-color: #1c3638;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
  }

  .ramNaviSub li:hover a,
  .ramNaviSub li.ramCurrent a {
    background-color: #265c60;
  }

  #MAIN.ram ul .ramNaviSub li a:link {
    color: #fff;
  }
}

.ramNaviMain li.ramNaviMainMenu a.ramNaviMainMenuA span {
  font-family: "Questrial", sans-serif;
  letter-spacing: 0.06em;
}
.ramNaviMain li.ramNaviMainMenu a.ramNaviMainMenuA span .is-amp {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding-inline: 1px;
}
@media screen and (max-width: 1024px) {
  .ramNaviMain li.ramNaviMainMenu a.ramNaviMainMenuA span .is-amp {
    font-weight: 600;
	padding-inline: 0;
  }
}

.ramNaviSub li a span {
  /*font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;*/
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 1025px) {
  .ramNaviShop {
    display: inline-block;
    padding-left: 24px;
  }

  .ramNaviShop a {
    width: 93px;
    height: 32px;
    /* position: absolute;
		top: 20px;
		right: 10px; */
    cursor: pointer;
  }

  .ramNaviShop a,
  .ramNaviShop a:visited {
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
    background: url(/product_carpet/rug&mat/asset/img/common/ico_blank.png)
      no-repeat 70px 10px #000;
    /* background-image: linear-gradient(to right, white, white 50%, black 50%, black);
		background-size: 200% 100%;
		background-position: 100%; */
    transition: all 0.5s ease;
    color: #fff !important;
    border: 1px solid #000;
    border-radius: 16px;
  }

  .ramNaviShop a span {
    display: block;
    width: 93px;
    height: 32px;
    padding-top: 5px;
    padding-right: 10px;
  }

  .ramNaviShop a:hover {
    background-position: 0;
    background: url(/product_carpet/rug&mat/asset/img/common/ico_blank_hover.png)
      no-repeat 70px 10px;
    color: #000 !important;
    transition: all 0.5s ease;
  }
  .ramNaviEc {
    display: inline-block;
    padding-left: 8px;
  }

  .ramNaviEc a {
    width: 160px;
    height: 32px;
    /* position: absolute;
		top: 20px;
		right: 10px; */
    cursor: pointer;
  }
  @media screen and (max-width: 1068px) {
    .ramNaviEc a {
      width: 130px;
    }
  }

  .ramNaviEc.last a {
    width: 170px;
  }

  .ramNaviEc a,
  .ramNaviEc a:visited {
    font-size: 1.1rem;
    font-weight: bold;
    display: block;
    /* background: url(/product_carpet/rug&mat/asset/img/common/ico_blank_hover.png) no-repeat 70px 10px; */
    /* background-image: linear-gradient(to right, white, white 50%, black 50%, black);
		background-size: 200% 100%;
		background-position: 100%; */
    transition: all 0.5s ease;
    color: #000 !important;
    border: 1px solid #000;
    border-radius: 16px;
  }

  .ramNaviEc a span:after {
    content: url(/product_carpet/rug&mat/asset/img/common/ico_blank_hover.png);
    width: 9px;
    height: 9px;
    margin-left: 3px;
  }

  .ramNaviEc a span {
    display: block;
    width: 160px;
    height: 32px;
    padding-top: 7px;
    padding-right: 10px;
  }
  @media screen and (max-width: 1068px) {
    .ramNaviEc a span {
      width: 130px;
    }
    .ramNaviEc.last a span {
      width: 160px;
    }
  }

  .ramNaviEc.last a span {
    width: 170px;
  }

  .ramNaviEc a:hover {
    /* background-position: 0;
		background: url(/product_carpet/rug&mat/asset/img/common/ico_blank.png) no-repeat 70px 10px #000; */
    color: #fff !important;
    transition: all 0.5s ease;
    background-color: #000;
  }

  .ramNaviEc a:hover span:after {
    content: url(/product_carpet/rug&mat/asset/img/common/ico_blank.png);
    width: 9px;
    height: 9px;
    margin-left: 3px;
  }
}

@media screen and (max-width: 1024px) {
  .ramNaviShop a,
  .ramNaviShop a:visited,
  .ramNaviEc a,
  .ramNaviEc a:visited {
    font-weight: bold;
    font-size: 1.6rem;
    padding-right: 1.5rem;
    background: url(/product_carpet/rug&mat/asset/img/common/ico_blank_hover.png)
      no-repeat right center;
  }
}

/*-------------------------------------------------------------------*/
/***  共通フッター  ***/
/*-------------------------------------------------------------------*/
.ram_footer {
  position: relative;
  width: 100%;
  padding: 30px 0;
  text-align: center;
}

.ram_footer_logo {
  max-width: 104px;
  margin: 0 auto 20px;
}

.ram_footer_logo img {
  width: 100%;
}

.ram_footer_copy {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic,
    sans-serif;
  /*font-size: 12px;*/
  font-size: 1.2rem;
}

@media screen and (min-width: 1025px) {
  /*  For PC */
  .ram_footer {
    margin-top: 154px;
  }
}

@media screen and (max-width: 1024px) {
  /*  For SP */
  .ram_footer_logo {
    max-width: 84px;
  }
}

.store-section {
  background-color: #778688;
  margin-bottom: 30px;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 0;
}

@media screen and (max-width: 1024px) {
  .store-section {
    padding: 60px 0;
    display: block;
  }
}

.store-section-store {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .store-section-store {
    display: block;
  }
}
.store__ttl {
  color: #fff;
  margin-right: 28px;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .store__ttl {
    margin-bottom: 30px;
    margin-right: 0;
  }
}
.store-ttl__text-en {
  font-size: 2.8rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 800;
}
.store-ttl__text-jp {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ,
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 1024px) {
  .store-section-store__button {
    margin-bottom: 15px;
  }
}

.store-section-store__button a {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 280px;
  height: 55px;
  border: solid 1px #fff;
  border-radius: 36px;
  position: relative;
  margin-left: 16px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .store-section-store__button a {
    margin: 0 auto 15px auto;
    width: 80%;
  }
}
.store-section-store__button a:hover {
  background-color: #fff;
}
.store-section-store__button span {
  display: block;
  width: 280px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ,
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 1024px) {
  .store-section-store__button span {
    width: 100%;
  }
}
.store-section-store__button:hover span {
  color: #778688;
}

.store-section-store__button span::after {
  content: url(/product_carpet/rug&mat/asset/img/common/ico_blank.png);
  margin-left: 10px;
  padding-bottom: 3px;
}

.store-section-store__button:hover span::after {
  content: url(/product_carpet/rug&mat/asset/img/common/ico_blank_footer.png);
}
