@charset "UTF-8";
/*============
共通
=============*/
/* * { outline: 1px solid red;
}  */
.w-container {
width: min(92%, 1166px);
margin-right: auto;
margin-left: auto;
}

:root {
/* h2 */
--fontsize-ll: 20px;
/* 少し大きめ */
--fontsize-l: 18px;
/* 基本 */
--fontsize-m: 16px;
/* 少し小さめ */
--fontsize-s: 14px;
/* 小さめ */
--fontsize-ss: 10px;

/* カラー */
--fontcolor-brown: #674636;
--fontcolor-white: #fff;
--fontcolor-black: #33372C;
--color-orange: #E67E22;
--color-darkgreen: #809D3C;
--color-lightgreen: #A9C46C;
--color-beige: #EFE3C2;
--color-lightblue: #CAE4FD;
--color-lightyellow: #EFE193;
--color-pink: #F6A4A4;
--color-darkorange: #FFA139;
--color-darkblue: #9BB4C0;
--color-lightbrown: #C1785A;
--backcolor-beige: #FFFDF3;
--fontweight-bold: 700;
}
.btn {
  background-color: var(--color-orange);
  border-radius: 25px;
  color: var(--fontcolor-white);
  padding: 0.5em 1em;
}
body {
  color: var(--fontcolor-brown);
  font-size: var(--fontsize-m);
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: var(--backcolor-beige);
}
h2 {
  font-size: var(--fontsize-ll);
  width: 100%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.btn:hover {
  background-color: var(--fontcolor-white);
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  font-weight: bold;
}
.ira-move:hover {
  transform: rotate(10deg);
}

.pc-only {
  display: none;
}
/*============
topへ戻る
=============*/
#p-scroll {
  position: fixed;
  bottom: 50px;
  right: 10px;
  z-index: 10000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--fontcolor-white);
  color: var(--fontcolor-brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);

}
#p-scroll a {
  text-align: center;
  text-decoration: none;
}
#p-scroll img {
  width: 30px;
}
#p-scroll p {
  font-size: var(--fontsize-ss);
  font-weight: bold;
}
#p-scroll:hover {
  background-color: var(--color-beige);
}

/*============
ヘッダー
=============*/
header {
  height: 100px;
  width: 100%;
  background-color: var(--fontcolor-white);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
}
.header_inner {
  display: grid;
  grid-template-columns: 1fr 3fr 0.5fr;
  grid-template-rows: 1fr;
}

h1 {
  grid-column: 2 / 3 ;
  grid-row: 1;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
h1 p {
  font-size: var(--fontsize-ss);
  text-align: center;
}
h1 a {
  width: 150px;
}
h1 img {
  vertical-align: top;
}
.h_cart_container {
  grid-column: 3 / 4 ;
  grid-row: 1;
  align-self: center;
  justify-items: center;
}
.cart {
  display: block;
  border-radius: 50px;
  background-color: var(--color-orange);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart p {
  font-size: var(--fontsize-ss);
  font-weight: var(--fontweight-bold);
  text-align: center;
}

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 100;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
.inner_top {
  display: flex;
  justify-content: center;
}
.inner_top a {
  padding: 10px;
  display: flex;
  align-items: center;
}

nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--fontcolor-brown);
}
nav .inner ul li a {
  display: block;
  color: var(--fontcolor-brown);
  font-size: var(--fontsize-s);
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
  font-weight: bold;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
nav img {
  display: block;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
nav ul li img {
  display: inline;
  width: 30px;
  margin-right: 30px;
}
.nav_footer {
  font-size: var(--fontsize-ss);
  display: flex;
  margin-left:25px;
  margin-right: 25px;
  margin-top: auto;
  margin-bottom: 20px;
}
.nav_in_sns {
  display: flex;
  align-items: end;
  font-size: var(--fontsize-s);
  margin-left: 30px;
}
.nav_in_sns .fa-instagram {
  margin-right: 20px;
}
.nav_fo_tx {
  display: flex;
  flex-direction: column;
}
.nav_footer .fo_in_kousiki {
  margin-top: 20px;
  margin-bottom: 0px;
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 40px;
  left: 40px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 100;
}
.open .toggle_btn {
  left: 330px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--fontcolor-brown);
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.open .toggle_btn span:nth-child(1), .open .toggle_btn span:nth-child(3) {
  width: 16px;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translate(-1px,4px) rotate(-45deg);
  transform: translate(-1px,4px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translate(-1px,-4px) rotate(45deg);
  transform: translate(-1px,-4px) rotate(45deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
/*============
フッター
=============*/
footer {
  position: relative;
  width: 100%;
  height: clamp(18.75rem, 15.1387rem + 15.4083vw, 25rem);
  overflow: hidden;
  display: flex;
}
.fo_ira1 {
  width: clamp(4.375rem, 1.4859rem + 12.3267vw, 9.375rem);
  position: absolute;
  right: 10%;
  top: clamp(0rem, -2.2755rem + 9.7087vw, 9.375rem);
  z-index: 600;
}
.footer_mt {
  position: absolute;
  z-index: 500;
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比を保ちつつカバー */
  object-position: 50% 0%; /* 左右中央、上基準で表示 */
}
.footer-inner {
  position: relative;
  z-index: 600;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.fo_nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.fo_nav li {
  margin-right: 20px;
  font-size: var(--fontsize-s);
  margin-bottom: 0.6em;
}
.fo_in_link {
  font-size: var(--fontsize-ss);
  display: flex;
}
.fo_in_kousiki {
  display: inline-block;
  border-radius: 25px;
  border: 2px solid var(--fontcolor-brown);
  padding: 5px;
  font-weight: bold;
  background-color: var(--fontcolor-white);
}
.fo_in_kousiki:hover {
  background-color: var(--fontcolor-brown);
  color: var(--fontcolor-white);
}
.fo_in_sns {
  display: flex;
  justify-content: center;
  font-size: var(--fontsize-l);
}
.fo_in_sns a {
  margin-left: 10px;
  margin-right: 10px;
}
.fo_in_sns a:hover {
  color: var(--fontcolor-white);
}
.fo_copy {
  font-size: var(--fontsize-ss);
  text-align: center;
  margin-top: 2em;
  margin-bottom: 1em;
}
@media (min-width: 767px) {
/*============
pc767-共通
=============*/
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
/*============
pc767-ヘッダー
=============*/
  h1 {
    grid-column: 1 / 2 ;
    grid-row: 1;
    align-self: center;
    justify-self: center;
  }
  nav {
    all: unset;
    grid-column: 2 / 3;
    grid-row: 1;
    display: flex;
    align-self: center;
    margin-left: 10px;
  }
  nav ul {
    display: flex;
    justify-content: space-around;
  }
  nav ul li img {
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
  }
  nav ul li div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  nav ul li {
    font-size: var(--fontsize-s);
    margin-right: 15px;
    font-weight: bold;
  }
/*============
pc767-TOPに戻る
=============*/
  #p-scroll {
    right: 100px;
  }
/*============
pc767-footer
=============*/
.fo_in_text {
    font-size: var(--fontsize-s);
    line-height: 2;
}
.fo_in_link {
  font-size: var(--fontsize-s);
}
.fo_in_sns {
  font-size: 24px;
}
}
@media (min-width: 1024px) {
/*============
pc1024-共通
=============*/
  h2 {
    font-size: 24px;
  }
/*============
pc1024-nav
=============*/
  nav ul li {
    font-size: var(--fontsize-s);
    /* margin-right: 50px; */
    font-weight: bold;
  }
  h1 p {
    font-size: var(--fontsize-s);
  }
  .cart {
    width: 80px;
    height: 80px;
  }
  .cart p {
    font-size: var(--fontsize-s);
  }
/*============
pc1024-topへ戻る
=============*/
  #p-scroll {
    width: 80px;
    height: 80px;
  }
  #p-scroll img {
    width: 50px;
  }
  #p-scroll p {
    font-size: var(--fontsize-s);
  }
/*============
pc1024-footer
=============*/
  footer {
    height: 400px;
  }
  .fo_nav li {
    font-size: var(--fontsize-m);
  }
  .fo_copy {
    font-size: var(--fontsize-s);
  }
}