@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 基本スタイル
====================================== */

html {
  font-size: 62.5%;
}

html.is-fixed {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #000;
  background: #f7f7f7;
  min-height: 100vh;
  position: relative;
}

.fade-huwari {
  animation: fadein 3s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 1.6rem;
  font-weight: normal;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

li {
  list-style: none;
}

/* 基本 フォーム
====================================== */

/* input
-------------------------------------- */

input {
  width: auto;
  max-width: 100%;
  padding: 0.4em 0.8em;
  background-color: #fff;
  border: none;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

/* テキストエリア
-------------------------------------- */

textarea {
  width: auto;
  max-width: 100%;
  height: 100px;
  padding: 0.4em 0.8em;
  background-color: #fff;
  border: none;
  border-radius: 40px;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

/* ラジオボタン
-------------------------------------- */

input[type="radio"] {
  display: none;
}

input[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: 0 1em 0 1.4em;
  margin: 0;
  cursor: pointer;
}

input[type="radio"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #949494;
  background: #fff;
  border-radius: 50%;
}

input[type="radio"] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bfcf54;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

input[type="radio"]:checked + span::after {
  opacity: 1;
}

/* チェックボックス
-------------------------------------- */

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: 0 1em 0 1.4em;
  margin: 0;
  cursor: pointer;
}

input[type="checkbox"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #949494;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  display: block;
}

input[type="checkbox"] + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #bfcf54;
  border-bottom: 3px solid #bfcf54;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
}

/* セレクト
-------------------------------------- */

.c-select {
  display: inline-block;
  border: none;
  background: #fff;
  border-radius: 5em;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.c-select::after {
  content: "\f078";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 0.3em;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-select select {
  width: 100%;
  padding: 5px 35px 5px 10px;
}

.c-select:focus-within::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* モーダル
====================================== */

.p-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.p-modal {
  display: none;
  background: #fff;
  padding: 40px 15px;
  left: 50%;
  top: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 1280px;
  border-radius: 20px;
  z-index: 100;
}

.p-modal__inner {
  height: auto;
  max-height: 70vh;
  overflow-y: auto;
}

.p-modal__close {
  position: absolute;
  top: 30px;
  right: 40px;
}

/* タイトル共通
-------------------------------------- */
.ttl__head-main {
  margin-bottom: 36px;
}
.ttl__head-main.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ttl__head-main.flex-row span {
  padding-left: 1.5vw;
}
.ttl__head-main strong {
  position: relative;
  display: block;
  font-size: 4rem;
  font-weight: 200;
  color: #d2a597;
  letter-spacing: 0.06em;
  font-family: "helvetica-neue-lt-pro", sans-serif;
}
.ttl__head-main strong::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 20px);
  width: 46px;
  height: 3px;
  content: "";
  background: #d2a597;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.ttl__head-main span {
  padding-left: 2.5vw;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d2a597;
  letter-spacing: 0.1em;
  line-height: 2;
}
.ttl__head-main span span {
  display: block;
  color: #4a4a4a;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1365px) {
  .ttl__head-main strong::before {
    width: 23px;
    height: 2px;
  }
  .ttl__head-main span {
    padding-left: 25px;
  }
}
@media screen and (max-width: 959px) {
  .ttl__head-main strong {
    margin-left: 48px;
    font-size: 2.8rem;
  }
  .ttl__head-main span {
    padding-left: 15px;
  }
}
/* SHOPINFO----------*/
.c-title__shopinfo {
  margin-bottom: 35px;
}
.c-title__shopinfo strong {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  display: block;
  font-size: 5rem;
  font-weight: 200;
  color: #000;
  letter-spacing: 0.08em;
}
.c-title__shopinfo span {
  position: relative;
  position: relative;
  display: block;
  padding-top: 15px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #d2a597;
}
.c-title__shopinfo span::before {
  position: absolute;
  top: 0;
  left: 20px;
  width: 46px;
  height: 3px;
  content: "";
  background: #d2a597;
}
@media screen and (max-width: 1365px) {
  .c-title__shopinfo strong {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 959px) {
  .c-title__shopinfo {
    margin-bottom: 25px;
  }
  .c-title__shopinfo strong {
    font-size: 2.8rem;
    text-align: center;
  }
  .c-title__shopinfo span {
    padding-left: 0;
    text-align: center;
  }
  .c-title__shopinfo span::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/* モーダル（共通）
--------------------*/
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.65);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.p-modal__item {
  position: absolute;
  right: 0;
  bottom: 35px;
  width: 235px;
  padding: 7px;
  font-weight: 700;
  color: #d2a597;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.12em;
  background: #fff;
  border: 1px solid #d2a597;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "noto-sans-cjk-jp", sans-serif;
  cursor: pointer;
}
.p-modal__item::before {
  position: absolute;
  top: 52%;
  right: 15px;
  width: 7px;
  height: 9px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  background: #d2a597;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 60px 80px 100px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  border-top: 20px solid #eff2ed;
  border-bottom: 20px solid #eff2ed;
  height: 80%;
  overflow-y: scroll;
}
.modal__content::-webkit-scrollbar {
  width: 10px;
}
.modal__content::-webkit-scrollbar-track {
  background-color: #fff;
}
.modal__content::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 6px;
}
.modal-close {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 0 20px;
  font-size: 4rem;
}
.c--title-modal-8flow {
  color: #d2a597;
  font-size: 5rem;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .modal__content {
    padding: 40px 20px 60px;
    position: absolute;
  }
  .c--title-modal-8flow {
    font-size: 3rem;
  }
  .modal__content {
    width: 90%;
  }
}
@media screen and (max-width: 559px) {
  .p-modal__item {
    width: 90%;
    margin: 0 5% 30px;
    font-size: 2rem;
  }
}
/* アコーディオン（共通）
--------------------*/
/*アコーディオンタイトル*/
.acd-title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  transition: all 0.5s ease;
}
/*アイコンの＋と×*/
.acd-title::before,
.acd-title::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #707070;
}
.acd-title.ttl-product-name::before,
.acd-title.ttl-product-name::after {
  background-color: #fff;
}
.acd-title::before {
  top: 48%;
  right: 30px;
  transform: rotate(0deg);
}
.acd-title::after {
  top: 48%;
  right: 30px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.acd-title.close::before {
  transform: rotate(0deg);
}
.acd-title.close::after {
  transform: rotate(-45deg);
  display: none;
}
/*アコーディオンで現れるエリア*/
.acd-box {
  display: none; /*はじめは非表示*/
  border-bottom: none !important;
}

@media screen and (max-width: 559px) {
  .acd-title::before,
.acd-title::after {
  width: 15px;
}
  .acd-title::before {
  right: 10px;
}
.acd-title::after {
  right: 10px;
}
}
/* ------------------------------------
ヘッダー
-------------------------------------- */

/* ----------------------------------------
ヘッダー
---------------------------------------- */
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 15;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(29, 29, 29, 0) 100%
  );
}
.l-header.is-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-animation: slidein 0.5s ease-in-out forwards;
  animation: slidein 0.5s ease-in-out forwards;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(210, 165, 151, 1) 100%
  );
}
.l-drawer {
  display: none;
}
@-webkit-keyframes slidein {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slidein {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* ドロワー
-------------------------------------- */
.c-drawer {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 14px 14px;
}
.c-drawer__bar {
  display: block;
  width: 100%;
  height: 0;
  border-top: 1px solid #d2a597;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
.c-drawer__bar:not(:last-child) {
  margin-bottom: 8.5px;
}
.c-drawer.is-change-color .c-drawer__bar {
  border-color: #000000;
}
.c-drawer.is-active .c-drawer__bar {
  position: absolute;
  width: 32px;
  margin-bottom: 0;
}
.c-drawer.is-active .c-drawer__bar:nth-child(1) {
  top: 12px;
  left: -3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.c-drawer.is-active .c-drawer__bar:nth-child(2) {
  top: 25px;
  left: 9px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-drawer.is-active .c-drawer__bar:nth-child(3) {
  top: 25px;
  left: 9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* ヘッダー
-------------------------------------- */
.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  padding: 25px 100px;
}
.p-header .p-logo {
  width: clamp(160px, 23.38vw, 185px);
}
.p-header .p-logo .logo-fixed {
  display: none;
}
.is-fixed .p-header .p-logo .logo-fixed {
  display: block;
}
.is-fixed .p-header .p-logo .logo {
  display: none;
}
.p-header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 2;
}
.p-drawer {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 40;
}

/* ナビゲーション
-------------------------------------- */
.l-nav {
  position: absolute;
  top: 10px;
  right: 150px;
  z-index: 1;
}
.p-nav-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.p-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.p-nav > li {
  padding: 25px 0;
  color: #fff;
}
.p-nav > li:last-child {
  /* padding-right: 100px; */
  padding-right: 0;
}
.p-nav > li a {
  color: #fff;
}
.l-header {
  color: #fff;
}
.l-header.js-header.is-fixed .p-nav > li,
.l-header.js-header.is-fixed .p-nav > li a {
  color: #fff;
}
.p-nav__item {
  position: relative;
  cursor: pointer;
}
.l-header .p-nav__item:hover::after {
  width: 25px;
  opacity: 1;
}
.p-nav-child {
  display: grid;
  grid-template-columns: repeat(6, auto);
}
.p-nav-child li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-nav-child li {
  display: block;
  text-align: center;
  border-right: 1px dotted #6d8a97;
}
.p-nav-child li:last-child {
  border-right: 0px dotted #6d8a97;
}
.p-nav-child li a {
  display: block;
  color: #6b8895;
  padding: 3px 0;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}
.p-nav-child li a:hover {
  color: #4fbbd5;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1750px) {
  .p-nav {
    padding-left: 300px;
    justify-content: flex-start;
    gap: 10px;
  }
}
@media screen and (max-width: 1500px) {
  .p-header {
    padding: 25px;
  }
  .p-nav > li:last-child {
    /* padding-right: 25px; */
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .p-drawer {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .l-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(180, 133, 119, 0.85);
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
  }
  .l-nav.is-active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .l-nav .p-nav-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 95%;
    max-width: 700px;
    height: 100%;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .l-drawer {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    background: #fff;
    border-radius: 100vh;
    z-index: 40;
  }
  .p-header {
    padding: 17px 62px 17px 15px;
  }
  .p-header__btn {
    display: none;
  }
  .p-nav {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .p-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.4em;
  }
  .p-nav > li {
    padding: 0;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    justify-content: center;
    text-align: center;
    padding-bottom: 20px;
  }
  .p-nav__item {
    color: #fff;
  }
  .p-nav__item::after {
    display: none;
  }
}

/* ------------------------------------
フッター
-------------------------------------- */
.l-footer {
  background: #d2a597;
  padding: 230px 0;
}
.foot-menu {
  margin: 100px auto 0;
}
.foot-bnr {
  margin: 0 auto;
}
.foot-menu ul,
.foot-bnr ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.6rem;
}
.foot-menu ul {
  justify-content: space-between;
  max-width: 940px;
  margin: 0 auto;
}
.foot-menu ul li,
.foot-bnr ul li {
  padding: 0 10px;
  margin-bottom: 10px;
}
.foot-menu ul li a,
.foot-bnr ul li a {
  color: #fff;
  text-decoration: none;
}
.foot-menu ul li a:hover,
.foot-bnr ul li a:hover {
  opacity: 0.75;
}
.l-footer--copy p {
  display: block;
  text-align: center;
  margin-top: 64px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 595px) {
  .foot-menu ul li,
  .foot-bnr ul li {
    width: 100%;
    text-align: center;
  }
  .l-footer {
    background: #d2a597;
    padding: 60px 0;
  }
}

/* ------------------------------------
レイアウト
-------------------------------------- */

.l-container,
.l-container__1200,
.l-container__1250,
.l-container__1450,
.l-container__1600 {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.l-container__1200 {
  max-width: 1230px;
}
.l-container__1250 {
  max-width: 1280px;
}
.l-container__1450 {
  max-width: 1480px;
}
.l-container__1600 {
  max-width: 1630px;
}
.l-product {
  padding-top: 150px;
  padding-bottom: 160px;
}
.l-company {
  padding-bottom: 160px;
}
.l-shopinfo {
  padding-bottom: 160px;
}

/* ------------------------------------
ボタン
-------------------------------------- */
.c-btn-more {
  margin: 30px auto 0;
}
.c-btn-more a.btn-more {
  position: relative;
  display: block;
  max-width: 380px;
  padding: 15px 15px 15px 45px;
  margin: 0 auto;
  font-weight: 700;
  color: #fff;
  background: #d2a597;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn-more a.btn-more img {
  padding-right: 30px;
  position: relative;
  top: -5px;
}
.c-btn-more a.btn-more:hover {
  opacity: 0.75;
}
@media screen and (max-width: 559px) {
  .c-btn-more a.btn-more {
    padding: 15px 10px 15px 15px;
  }
}
/* 購入する
--------------------*/
.c-btn__order {
  position: relative;
  display: block;
  max-width: 240px;
  padding: 7px;
  margin: 0 auto;
  font-weight: 700;
  color: #d2a597;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  border: 1px dotted #d2a597;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn__order::before {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 7px;
  height: 9px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  background: #d2a597;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-btn__order:hover {
  background: #d2a597;
  color: #fff;
}
