@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  line-height: 2rem;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.-center {
  text-align: center;
}

.-left {
  text-align: left;
}

ul, li {
  list-style-type: none;
  padding: 0;
  padding-inline-start: 0;
}

a:hover,
.Sale_pc img:hover,
a.contact_btn:hover {
  opacity: 0.8 !important;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
/* Drawer */
.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease-in;
}

nav.nav {
  width: 100%;
  height: 100vh;
  background-color: #bfb300;
  right: -100%;
  top: 0;
  position: fixed;
  padding: 0;
  transition: all 200ms ease-in-out;
  z-index: 5;
}

nav.nav ul {
  border: none;
  padding: 15vh 0 0 0;
  overflow-y: scroll;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav.nav ul .pc_slide_menu_contact {
  display: none;
}

.toggle {
  position: absolute;
  top: 7px;
  right: 5%;
  width: 50px;
  height: 50px;
  color: #313131;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
}

span.toggler,
span.toggler:before,
span.toggler:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #313131;
  position: absolute;
  pointer-events: none;
  z-index: 25;
}

span.toggler:before {
  bottom: 9px;
}

span.toggler:after {
  top: 9px;
}

span.deleteclass {
  background-color: transparent;
}

span.deleteclass::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #313131;
}

span.deleteclass::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #313131;
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo a {
  text-decoration: none;
  color: #888;
  font-size: 2rem;
}

.nav ul li {
  display: block;
  list-style: none;
  margin: 0 20% 10px 20%;
  padding: 0;
  text-align: center;
  border-bottom: dashed 1px #000;
  width: 100%;
}

.nav ul li.icon {
  border-bottom: none;
  width: 10%;
  margin: 20px 7%;
}

.nav ul li a {
  padding: 5px 0;
  display: block;
  color: #313131;
  font-size: 1rem;
  text-decoration: none;
  transition: all 200ms ease;
}

/* Show Nav */
.show-nav .nav {
  right: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.show-nav .overlay {
  opacity: 1;
  visibility: visible;
}

#Footer {
  margin: 0 5%;
  border-top: solid 1px #000;
  padding-top: 2rem;
}
#Footer .foote-ttl {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
#Footer ul.footer_menu {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
#Footer ul.footer_menu li {
  display: none;
}
#Footer ul.footer_menu li.icon {
  display: block;
  width: 8%;
  margin: 0 2%;
}

.copyright {
  background-color: #bfb300;
  text-align: center;
  margin-top: 2rem;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.15rem;
}

.-bodoni {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.-noto {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.-min {
  font-family: "Bodoni Moda", "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

#sp_btn {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 30;
}
#sp_btn a.sp_btn_l {
  width: 50%;
  padding: 1rem 0;
  background-color: #e4d85a;
  text-decoration: none;
  color: #000;
  box-sizing: border-box;
  text-align: center;
}
#sp_btn a.sp_btn_r {
  width: 50%;
  padding: 1rem 0;
  background-color: #4d4d4d;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  text-align: center;
}

.Sale_pc {
  display: none;
}

/* 簡単なスタイルを追加 */
#easyModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.7);
}

.modal-content {
  background-color: #4d4d4d;
  margin: 20% auto 0 auto;
  width: 90%;
  max-width: 710px;
  color: #fff;
  position: relative;
  text-align: center;
}

.Close_btn {
  color: #000;
  float: right;
  font-size: 2.5rem;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0;
}

.Close_btn:hover,
.Close_btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeIn {
  animation: fadeIn 0.5s forwards;
}

.fadeOut {
  animation: fadeOut 0.5s forwards;
}

.modal_contact_btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  margin: 1rem auto 0 auto;
  text-decoration: none;
  width: 90%;
  box-sizing: border-box;
}

#modalCloseLink {
  display: inline-block;
  margin: 1rem auto;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: fixed;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  top: 7px;
  right: 5%;
  width: 50px;
  height: 50px;
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: black;
  transform: translateX(-50%);
}

.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}

/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}

.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}

.drawer__nav__inner {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}

.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

.pc_slide_menu {
  display: none;
}

li.pc_slide_menu_contact,
#Footer ul.footer_menu li.pc_slide_menu_contact {
  display: none;
}

#pc_side {
  display: none;
}

/*---タブレット---*/
/*---PC---*/
@media screen and (min-width: 1024px) {
  body {
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
  }
  .Sale_sp {
    display: none;
  }
  .Sale_pc {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    cursor: pointer;
  }
  .Sale_pc img {
    width: 100%;
    height: auto;
    cursor: pointer;
  }
  #Footer ul.footer_menu {
    align-items: center;
  }
  #Footer ul.footer_menu li {
    display: block;
    margin: 0 1%;
  }
  #Footer ul.footer_menu li a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
  }
  #Footer ul.footer_menu li a img {
    width: 100%;
    height: auto;
    display: block;
  }
  #Footer ul.footer_menu li.icon {
    width: 20px;
    margin: 0 1%;
    display: flex;
    flex-wrap: wrap;
  }
  .copyright {
    padding: 0.5rem 0;
  }
  .pc_slide_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e4d85a;
    box-sizing: border-box;
    padding: 0;
    transition: 0.6s;
    opacity: 0;
    z-index: -1;
  }
  .pc_slide_menu .Site_ttl {
    font-size: 1.5rem;
    line-height: 1rem;
    margin-left: 3%;
    letter-spacing: 0.3rem;
  }
  .pc_slide_menu .Menu_nav {
    margin: 0;
    justify-content: flex-end;
  }
  .pc_slide_menu .Menu_nav li {
    padding: 0;
    margin: 0 2% 0 0;
    line-height: 1rem;
    flex-shrink: 0;
  }
  .pc_slide_menu .Menu_nav li a {
    padding: 0.5rem 0;
  }
  .pc_slide_menu .Menu_nav .pc_slide_menu_contact {
    display: block;
    margin: 0;
  }
  .pc_slide_menu .Menu_nav .pc_slide_menu_contact a {
    background-color: #4d4d4d;
    color: #FFF;
    padding: 1.5rem 2rem;
  }
  #pc_side {
    display: block;
    width: 72px;
    height: auto;
    position: fixed;
    transition: 0.6s;
    opacity: 0;
    z-index: -1;
    right: 0;
    bottom: 10vh;
  }
  .modal-content {
    margin: 5% auto 0 auto;
  }
  .modal_contact_btn {
    margin: 0 auto 0 auto;
    max-width: 580px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 2rem;
    letter-spacing: 0.3rem;
  }
  #modalCloseLink {
    cursor: pointer;
  }
}
/****
ふわっとするやつ用CSS
__________________________*/
.fuwatAnime {
  visibility: visible;
  /* 他のスタイル設定 */
}

.fuwatAnime-l {
  visibility: visible;
  /* 他のスタイル設定 */
}

.fuwatAnime-r {
  visibility: visible;
  /* 他のスタイル設定 */
}

.fuwatAnime-dwn {
  visibility: visible;
  /* 他のスタイル設定 */
}

.fuwatAnime {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fuwatAnime;
  visibility: visible !important;
}
@keyframes fuwatAnime {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fuwatAnime-l {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fuwatAnime-l;
  visibility: visible !important;
}
@keyframes fuwatAnime-l {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fuwatAnime-r {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fuwatAnime-r;
  visibility: visible !important;
}
@keyframes fuwatAnime-r {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fuwatAnime-dwn {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fuwatAnime;
  visibility: visible !important;
}
@keyframes fuwatAnime {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=common.css.map */