@charset "UTF-8";
@font-face {
  font-family: HelveticaNeueMedium;
  src: url(../fonts/HelveticaNeueMedium.woff2) format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: HelveticaNeueRoman;
  src: url(../fonts/HelveticaNeueRoman.woff2) format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: HelveticaNeueLight;
  src: url(../fonts/HelveticaNeueLight.woff2) format("woff2");
  font-style: normal;
  font-display: swap;
}
body {
  font-family: HelveticaNeueLight, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1100px) {
  body {
    font-size: 13px;
  }
}

.br_pc {
  display: block;
}
@media screen and (max-width: 1100px) {
  .br_pc {
    display: none;
  }
}

.br_sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .br_sp {
    display: block;
  }
}

/* ヘッダー＆ナビ =======================*/
nav {
  width: 100%;
}

.nav-menu-checkbox {
  display: none;
}

.nav-menu-item {
  position: fixed;
  width: 100px;
  height: 100px;
  top: 0;
  right: 0;
  margin: 0;
  background: #000;
  cursor: pointer;
  padding-top: 40px;
  z-index: 102;
}
@media screen and (max-width: 900px) {
  .nav-menu-item {
    width: 58px;
    height: 58px;
    padding-top: 22px;
  }
}
.nav-menu-item span {
  display: block;
  position: relative;
  width: 32px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.4s;
}
.nav-menu-item span:nth-of-type(1) {
  top: -5px;
}
@media screen and (max-width: 900px) {
  .nav-menu-item span:nth-of-type(1) {
    top: -4px;
  }
}
.nav-menu-item span:nth-of-type(2) {
  top: 5px;
}
@media screen and (max-width: 900px) {
  .nav-menu-item span:nth-of-type(2) {
    top: 4px;
  }
}
.nav-menu-item .nav-menu-item-text {
  display: block;
  top: 18px;
  background: transparent;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 900px) {
  .nav-menu-item .nav-menu-item-text {
    top: 13px;
    letter-spacing: 0.1em;
  }
}

.nav-menu-list {
  position: fixed;
  width: 230px;
  height: 100vh;
  background: #ffffff;
  color: #000;
  top: 0;
  right: -230px;
  max-width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.4s;
  font-size: 15px;
  letter-spacing: 0.1em;
  z-index: 101;
}
.nav-menu-list ul {
  list-style: none;
  padding: 130px 30px 30px;
}
@media screen and (max-width: 900px) {
  .nav-menu-list ul {
    padding: 80px 30px 30px;
  }
}
.nav-menu-list li {
  margin: 20px 0;
}

.nav-menu-overlay {
  background: #000;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  transition: 0.4s;
  z-index: 100;
}

.nav-menu-checkbox:checked ~ .nav-menu-item span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(25deg);
}
.nav-menu-checkbox:checked ~ .nav-menu-item span:nth-of-type(2) {
  top: -1px;
  transform: translateX(-50%) rotate(-25deg);
}
.nav-menu-checkbox:checked ~ .nav-menu-list {
  right: 0;
}
.nav-menu-checkbox:checked ~ .nav-menu-overlay {
  opacity: 0.3;
  pointer-events: auto;
}

/* ニュースエリア =======================*/
.news-area {
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
@media screen and (max-width: 900px) {
  .news-area {
    border-top: 1px solid #ddd;
    padding: 10px 0;
  }
}
.news-area a {
  width: 660px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 900px) {
  .news-area a {
    width: 94%;
  }
}
.news-area a .news-img-area {
  width: 25%;
  padding-right: 30px;
}
@media screen and (max-width: 900px) {
  .news-area a .news-img-area {
    width: 40%;
    padding-right: 15px;
  }
}
.news-area a .news-img-area img {
  width: 100%;
}
.news-area a .news-text-area {
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .news-area a .news-text-area {
    letter-spacing: 0;
    line-height: 1.4;
  }
}
.news-area a .news-text-area .news-text-date {
  font-size: 20px;
  color: #a3a3a3;
  font-weight: bold;
  font-family: HelveticaNeueMedium, sans-serif;
}
@media screen and (max-width: 900px) {
  .news-area a .news-text-area .news-text-date {
    font-size: 14px;
  }
}
.news-area a .news-text-area .news-text-main {
  font-size: 18px;
  font-weight: bold;
  padding: 7px 0 8px;
}
@media screen and (max-width: 900px) {
  .news-area a .news-text-area .news-text-main {
    font-size: 13px;
    padding: 0px 0 2px 0;
  }
}
.news-area a .news-text-area .news-text-sub-en {
  font-size: 14px;
  padding-bottom: 3px;
}
@media screen and (max-width: 900px) {
  .news-area a .news-text-area .news-text-sub-en {
    font-size: 11px;
    letter-spacing: 0.02em;
  }
}
.news-area a .news-text-area .news-text-sub-jp {
  font-size: 11px;
}
@media screen and (max-width: 900px) {
  .news-area a .news-text-area .news-text-sub-jp {
    font-size: 10px;
  }
}
.news-area a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
}
@media screen and (max-width: 900px) {
  .news-area a::before {
    width: 10px;
    height: 10px;
    right: 3px;
  }
}
.news-area a:hover {
  text-decoration: none;
}

/* シリーズ共通 =======================*/
.series-logo {
  width: 100%;
  border-bottom: 1px solid #ddd;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .series-logo {
    height: 58px;
    border-bottom: none;
  }
}
.series-logo img {
  width: 260px;
}
@media screen and (max-width: 900px) {
  .series-logo img {
    width: 180px;
  }
}

.series-logo.logo02 img {
  width: 200px;
}
@media screen and (max-width: 900px) {
  .series-logo.logo02 img {
    width: 130px;
  }
}

.series-logo.logo03 img {
  width: 240px;
}
@media screen and (max-width: 900px) {
  .series-logo.logo03 img {
    width: 165px;
  }
}

.brand-intro {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  background: url(/assets/img/nr_mainbg.webp) no-repeat left top;
  background-size: 100%;
}
@media screen and (max-width: 900px) {
  .brand-intro {
    display: block;
  }
}
.brand-intro .brand-visual {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .brand-intro .brand-visual {
    width: 100%;
  }
}
.brand-intro .brand-text {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .brand-intro .brand-text {
    width: 100%;
    padding: 34px 0;
    font-size: 13px;
    line-height: 2;
  }
}
@media screen and (max-width: 1100px) {
  .brand-intro .brand-text .brand-text-inner {
    width: 87%;
  }
}
.brand-intro .brand-text .brand-text-inner .brand-text-main {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .brand-intro .brand-text .brand-text-inner .brand-text-main {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
  }
}
.brand-intro .brand-text .brand-text-inner .brand-text-main.topcopy {
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .brand-intro .brand-text .brand-text-inner .brand-text-main.topcopy {
    font-size: 17px;
    line-height: 1.8;
  }
}
.brand-intro .brand-text .brand-text-inner .brand-text-main2 {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 1.8;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 900px) {
  .brand-intro .brand-text .brand-text-inner .brand-text-main2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.brand-intro .brand-text .brand-text-inner p {
  margin-bottom: 15px;
}
@media screen and (max-width: 1100px) {
  .brand-intro .brand-text .brand-text-inner p {
    margin-bottom: 10px;
  }
}
.brand-intro .brand-text .brand-text-inner p:last-child {
  margin-bottom: 0;
}

.brand-copy {
  width: 100%;
  background: url(/assets/img/nr_copybg.webp) no-repeat center top;
  background-size: cover;
}

.brand-copy-inner {
  width: 85%;
  margin: 0 auto;
  padding: 70px 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .brand-copy-inner {
    padding: 40px 0;
  }
}
.brand-copy-inner .brand-copy-en {
  font-size: 22px;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
  font-weight: normal;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  .brand-copy-inner .brand-copy-en {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }
}
.brand-copy-inner .brand-copy-jp {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2.2;
}
@media screen and (max-width: 1100px) {
  .brand-copy-inner .brand-copy-jp {
    line-height: 1.8;
    font-size: 12px;
  }
}
.brand-copy-inner img {
  width: 190px;
  margin: 0 auto;
}
.brand-copy-inner .brand-copy-name {
  font-size: 12px;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .brand-copy-inner .brand-copy-name {
    font-size: 11px;
    margin-top: 20px;
  }
}
.brand-copy-inner .brand-copy-name span {
  font-size: 16px;
  margin-bottom: 3px;
  display: block;
  font-weight: normal;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 900px) {
  .brand-copy-inner .brand-copy-name span {
    font-size: 13px;
  }
}

/* シリーズ、コレクション一覧タイトル =======================*/
.series-list {
  padding: 100px 0 70px;
  text-align: center;
}
.series-list.dtlist {
  padding-bottom: 0;
}
@media screen and (max-width: 900px) {
  .series-list {
    padding: 50px 0 0;
  }
}
.series-list h2 {
  font-family: HelveticaNeueMedium;
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 900px) {
  .series-list h2 {
    font-size: 17px;
  }
}
.series-list .series-list-sub {
  margin-bottom: 40px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .series-list .series-list-sub {
    margin-bottom: 30px;
  }
}

/* シリーズ一覧 =======================*/
.series-list-item-wp {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .series-list-item-wp {
    width: 100%;
  }
}
.series-list-item-wp .series-list-item {
  width: 33%;
  padding: 0 15px 30px;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .series-list-item-wp .series-list-item {
    width: 80%;
    padding: 0 0 40px;
    margin: 0 auto;
  }
}
.series-list-item-wp .series-img img {
  width: 100%;
}
.series-list-item-wp .brand-logo {
  width: 42%;
  margin: 0 auto;
  padding-top: 25px;
}
@media screen and (max-width: 900px) {
  .series-list-item-wp .brand-logo {
    width: 62%;
    padding-top: 20px;
  }
}
.series-list-item-wp .brand-logo.logo02 {
  width: 30%;
}
@media screen and (max-width: 900px) {
  .series-list-item-wp .brand-logo.logo02 {
    width: 40%;
  }
}
.series-list-item-wp .brand-logo.logo03 {
  width: 40%;
}
@media screen and (max-width: 900px) {
  .series-list-item-wp .brand-logo.logo03 {
    width: 55%;
  }
}

/* ナルシソボタン =======================*/
.nr_discover {
  width: 100%;
  height: 350px;
  background: url(/assets/img/nr_btn.webp) no-repeat center top;
  background-size: cover;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .nr_discover {
    height: 250px;
  }
}
.nr_discover .nr_discover_inner {
  margin-left: 15%;
}
@media screen and (max-width: 900px) {
  .nr_discover .nr_discover_inner {
    margin-left: 7%;
  }
}
.nr_discover .nr_discover_inner .nr_discover_logo {
  width: 320px;
}
@media screen and (max-width: 900px) {
  .nr_discover .nr_discover_inner .nr_discover_logo {
    width: 185px;
  }
}
.nr_discover .nr_discover_inner a {
  border: 1px solid #666;
  padding: 10px 15px 10px 30px;
  display: inline-block;
  margin-top: 35px;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 900px) {
  .nr_discover .nr_discover_inner a {
    margin-top: 25px;
    font-size: 12px;
    padding: 10px 2px 10px 20px;
  }
}
.nr_discover .nr_discover_inner a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
}
@media screen and (max-width: 900px) {
  .nr_discover .nr_discover_inner a::before {
    left: 8px;
    width: 6px;
    height: 6px;
  }
}
.nr_discover .nr_discover_inner a:hover {
  background: #eee;
  text-decoration: none;
}

/* コレクション一覧 =======================*/
.brand-product {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .brand-product {
    padding-bottom: 30px;
  }
}
.brand-product .brand-product-item {
  width: 25%;
  padding: 0 10px 30px;
  flex-direction: column;
}
@media screen and (max-width: 1100px) {
  .brand-product .brand-product-item {
    width: 50%;
  }
}
@media screen and (max-width: 900px) {
  .brand-product .brand-product-item {
    padding: 0 7px 10px;
  }
}
.brand-product .product-img {
  position: relative;
  background: #f4f4f3;
  padding: 0;
}
.brand-product .product-img img {
  width: 85%;
  margin: 0 auto;
  padding: 10px 0;
}
@media screen and (max-width: 900px) {
  .brand-product .product-img img {
    width: 90%;
  }
}
.brand-product .product-img .new-icon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
}
@media screen and (max-width: 900px) {
  .brand-product .product-img .new-icon {
    font-size: 10px;
    padding: 3px 6px;
  }
}
.brand-product .product-name {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin: 12px 0 10px;
  letter-spacing: 0;
}

/* 商品詳細 =======================*/
.product-dt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .product-dt {
    display: block;
  }
}
.product-dt .product-dt-text {
  width: 50%;
  padding: 40px 50px;
}
@media screen and (max-width: 900px) {
  .product-dt .product-dt-text {
    width: 100%;
    padding: 20px 25px;
  }
}
.product-dt .product-copy {
  font-size: 15px;
  margin: 20px 0 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .product-dt .product-copy {
    font-size: 13px;
  }
}
.product-dt .product-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .product-dt .product-name {
    font-size: 18px;
  }
}
.product-dt .product-name-en {
  font-size: 14px;
  margin-bottom: 45px;
  color: #666;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .product-dt .product-name-en {
    font-size: 13px;
    letter-spacing: 0.08em;
  }
}
.product-dt .product-text {
  line-height: 2;
  margin-bottom: 40px;
  text-align: center;
}
.product-dt .product-incense,
.product-dt .product-perfumer,
.product-dt .product-price {
  font-size: 13px;
  margin-bottom: 40px;
}
.product-dt .product-incense .subtitle,
.product-dt .product-perfumer .subtitle,
.product-dt .product-price .subtitle {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #999;
  width: 100%;
  padding-bottom: 4px;
  margin-bottom: 8px;
}
.product-dt .product-price {
  font-size: 15px;
  text-align: center;
}
.product-dt .product-price span {
  font-size: 11px;
}
.product-dt .new-icon {
  text-align: center;
}
.product-dt .new-icon .new-txt {
  background: #333;
  color: #fff;
  padding: 3px 10px;
  display: inline-block;
}
.product-dt .product-incense-list {
  margin-top: 15px;
}
.product-dt .product-incense-list li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 2px;
}
.product-dt .product-incense-list li .incense-t {
  width: 20%;
  text-align: center;
  font-size: 12px;
  padding-bottom: 3px;
  margin-bottom: 3px;
}
.product-dt .product-incense-list li .incense-t span {
  display: block;
  width: 100%;
  border: 1px solid #999;
  padding: 1px 0;
}
.product-dt .product-incense-list li .incense-d {
  width: 76%;
  display: block;
  border-bottom: 1px solid #ccc;
  padding-bottom: 3px;
  margin-bottom: 3px;
}
.product-dt .product-use {
  font-size: 13px;
}
.product-dt .product-use .subtitle {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #999;
  width: 100%;
  padding-bottom: 4px;
  margin-bottom: 8px;
}
.product-dt .product-use li {
  padding-bottom: 2px;
  padding-left: 14px;
  position: relative;
}
.product-dt .product-use li::before {
  position: absolute;
  top: 0.7em;
  left: 0.2em;
  width: 4px;
  height: 4px;
  content: "";
  background: #000;
  border-radius: 100%;
}
.product-dt .product-use.point {
  margin-top: 12px;
}
.product-dt .product-dt-img {
  width: 50%;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .product-dt .product-dt-img {
    width: 100%;
  }
}
.product-dt .product-dt-img img {
  max-width: 100%;
  height: auto;
}

.slider .swiper-wrapper .swiper-slide {
  background: #f4f4f3;
}

.slider-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

/*フッター =======================*/
footer {
  width: 90%;
  margin: 0 auto;
}
footer .inquiry {
  border: 1px solid #999;
  padding: 20px 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  footer .inquiry {
    padding: 20px 25px;
    display: block;
    font-size: 13px;
  }
}
footer .inquiry .inquiry-tit {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}
footer .inquiry .tel {
  font-size: 17px;
}
footer .inquiry .qrcode {
  display: flex;
  margin-left: 20px;
}
@media screen and (max-width: 900px) {
  footer .inquiry .qrcode {
    margin-left: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  footer .inquiry .qrcode div {
    margin-top: 22px;
  }
}
footer .inquiry .qrcode div:first-child {
  margin-right: 35px;
}
footer .inquiry .qrcode div img {
  width: 90px;
}
footer .notes {
  padding-bottom: 30px;
  font-size: 12px;
}

/*コレクション一覧ボタン =======================*/
.series-list-btn {
  display: none;
}
@media screen and (max-width: 900px) {
  .series-list-btn {
    position: fixed;
    z-index: 80;
    right: 5vw;
    bottom: 8vw;
    background-color: rgba(80, 80, 80, 0.95);
    color: #fff;
    line-height: 1.4;
    text-align: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    letter-spacing: 0.12em;
    opacity: 1;
    transition: opacity 0.4s;
  }
  .series-list-btn::before {
    content: "";
    margin: auto;
    position: absolute;
    bottom: 18px;
    left: auto;
    right: auto;
    width: 8px;
    height: 8px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    transform: rotate(135deg);
  }
}/*# sourceMappingURL=style.css.map */