@charset "UTF-8";
/* reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

body {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 3.815rem;
  font-weight: 800;
  margin-bottom: 1.3rem;
}

h2 {
  font-size: 1.8rem; /* 調整しました */
  font-weight: 700;
  margin-bottom: 1.3rem;
  letter-spacing: 0.075em;
}

h3 {
  font-size: 1.5rem; /* 調整しました */
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h4 {
  font-size: 1.25rem; /* 調整しました */
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h5 {
  font-size: 1rem; /* 調整しました */
  font-weight: 700;
  margin-bottom: 1.1rem;
}

h6 {
  font-size: 1rem; /* 調整しました */
  margin-bottom: 1.1rem;
}

p {
  margin-bottom: 1rem;
}

small {
  font-size: 0.8rem;
}

b {
  font-weight: bold;
}

:root {
  font-size: 18px;
  color: #321500;
}
@media screen and (max-width: 768px) {
  :root {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    font-size: 14px;
  }
}

body {
  line-height: 2.2;
  background-color: #fcfffc;
  color: #321500;
}

main {
  overflow-x: hidden;
}

.modal {
  position: fixed;
  overflow: hidden;
  background-color: #fcfffc;
  z-index: 99999;
  width: 100%;
  height: 100dvh;
  display: grid;
  place-items: center;
}
.modal div {
  max-width: 70vw;
  width: 400px;
  padding-bottom: 2rem;
}

.mologo {
  fill: rgba(255, 255, 255, 0);
}
.mologo path {
  fill: rgba(255, 255, 255, 0);
  stroke-width: 1;
}

img,
svg {
  vertical-align: bottom;
  width: 100%;
}

img {
  border-radius: 8px;
}

h2,
h3 {
  text-transform: uppercase;
  text-align: center;
}

a.btn {
  color: #321500;
  display: inline-block;
  border: 3px solid #321500;
  padding: 2rem;
  line-height: 0;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
  transition: color 0.5s;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  a.btn {
    font-size: 0.8rem;
  }
}
a.btn::after {
  box-sizing: border-box;
  border: 3px solid #321500;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #321500;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: none;
  z-index: -1;
}
@media screen and (min-width: 480px) {
  a.btn:hover {
    color: #fcfffc;
  }
  a.btn:hover::after {
    animation: slideIn 0.2s forwards;
  }
  a.btn:not(:hover)::after {
    animation: slideOut 0.2s forwards;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
#header {
  /* ハンバーガーメニューのボタンスタイル */
  /* ナビゲーションメニューのスタイル */
}
#header h1 {
  position: fixed;
  z-index: 999;
  line-height: 0;
}
#header h1 div {
  width: 7rem;
  height: 7rem;
  padding: 0.5rem;
  position: relative;
  transform-origin: left top;
}
#header h1 div svg {
  padding: 0.75rem;
  box-sizing: border-box;
  fill: #fcfffc;
}
#header h1 div span {
  display: inline-block;
  position: absolute;
  z-index: -1;
  background-color: #321500;
  width: 145%;
  height: 145%;
  top: -50%;
  left: -50%;
  transform: rotate(-40deg) scaleX(2);
  transition: 0.5;
}
#header h1 div span.brown {
  background-color: #321500;
}
@media screen and (max-width: 1440px) {
  #header h1 div {
    scale: 0.75;
  }
}
@media screen and (max-width: 768px) {
  #header h1 div {
    scale: 0.667;
  }
}
#header .hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  aspect-ratio: 1;
  cursor: pointer;
  z-index: 1000;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  #header .hamburger {
    scale: 0.667;
  }
}
#header .hamburger > div {
  width: 54px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#header .hamburger span {
  display: block;
  height: 5px;
  background-color: #321500;
  transition: 0.3s;
}
#header .hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(135deg);
  background-color: #fcfffc;
}
#header .hamburger.open span:nth-child(2) {
  background-color: #fcfffc;
  transform: translateY(-5px) rotate(-135deg);
}
#header nav {
  position: fixed;
  display: grid;
  place-items: center;
  top: 0;
  right: 0;
  height: 100dvh;
  max-width: 100%;
  width: 600px;
  background-color: #321500;
  color: #fcfffc;
  z-index: 999;
  transition: 0.5s;
  transform: translateX(100%);
}
#header nav.open {
  transform: translateX(0);
}
#header nav ul {
  flex-direction: column;
  text-align: center;
}
#header nav ul:first-of-type {
  padding-bottom: 1rem;
  border-bottom: 1px solid #fcfffc;
  margin-bottom: 1rem;
}
#header nav ul li {
  margin: 1rem 0;
}
#header nav ul li a {
  color: #fcfffc;
  text-transform: uppercase;
}

#mv {
  box-sizing: border-box;
  max-width: 1920px;
  height: 100svh;
  max-height: 1200px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 4vw;
  position: relative;
}
@media screen and (max-width: 480px) {
  #mv {
    max-height: 166.67vw;
  }
}
#mv div.mv {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
#mv div.mv .mvbg {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/mv.jpg);
  background-size: cover;
  background-position: center left;
  transform: scale(1.07);
  transition: 1s;
}
@media screen and (max-width: 480px) {
  #mv div.mv .mvbg {
    background-position: 33.333%;
  }
}
#mv div.mm {
  position: absolute;
  writing-mode: vertical-rl;
  z-index: 1;
  color: #fcfffc;
  text-align: start;
  font-weight: normal;
  right: min(17vw, 400px);
  font-size: min(7vh, 80px);
  transition: 0.5s;
  transition-delay: 0.5s;
  transform: translateX(20px);
  opacity: 0;
  letter-spacing: 0.125em;
}
#mv div.mm span {
  display: block;
}
@media screen and (max-width: 768px) {
  #mv div.mm {
    right: 8vw;
    top: 8vw;
    background-color: #fcfffc;
    padding: 0.75em;
    line-height: 0;
  }
  #mv div.mm span {
    color: #321500;
    display: inline;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  #mv div.mm {
    right: 9vw;
    top: 9vw;
    padding: 0.5em;
    line-height: 0;
  }
}

@media screen and (max-width: 768px) {
  .br {
    display: none;
  }
}
article section {
  max-width: 1200px;
  margin: 5rem auto;
}
@media screen and (max-width: 1200px) {
  article section {
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 3rem 0;
  }
}
article section > h2 {
  margin-bottom: 2em;
}
article section > h2::before {
  content: "— ";
}
article section > h2::after {
  content: " —";
}
@media screen and (max-width: 768px) {
  article section > h2 {
    margin-bottom: 1rem;
  }
}

#concept figure {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 10rem;
}
#concept figure h2 {
  display: none;
}
#concept figure h3 {
  text-align: left;
}
@media screen and (max-width: 768px) {
  #concept figure {
    grid-template-columns: 1fr !important;
    margin-bottom: 2rem;
    gap: 2rem;
  }
  #concept figure .section-img {
    order: 1 !important;
  }
  #concept figure figcaption {
    order: 2 !important;
  }
}
#concept figure .section-img {
  aspect-ratio: 4/3;
}
#concept figure .section-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #concept figure h3 {
    line-height: 1;
    font-size: 1.5rem;
    text-align: center !important;
  }
  #concept figure p {
    text-align: center !important;
  }
}
@media screen and (max-width: 480px) {
  #concept figure h3 {
    font-size: 1.25rem;
  }
}
#concept figure:nth-child(even) {
  grid-template-columns: 3fr 4fr;
}
#concept figure:nth-child(even) h3,
#concept figure:nth-child(even) p {
  text-align: right;
}
#concept figure:nth-child(even) .section-img {
  order: 1;
}
#concept figure:nth-child(even) figcaption {
  order: 0;
}

#detail ol {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  #detail ol {
    grid-template-columns: 1fr;
  }
}
#detail figure figcaption {
  text-align: center;
}
#detail figure figcaption h3 {
  display: inline-block;
  position: relative;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #detail figure figcaption h3 {
    margin-bottom: 0;
  }
}
#detail figure figcaption h3::after {
  position: absolute;
  bottom: 0;
  left: -1em;
  content: " ";
  display: inline-block;
  width: calc(100% + 2em);
  height: 1px;
  background-color: #321500;
}
@media screen and (max-width: 768px) {
  #detail figure figcaption h3::after {
    display: none;
  }
}
#detail figure figcaption p {
  text-align: left;
}
#detail figure div {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 100%;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  #detail figure div {
    width: 54vw;
    margin-left: auto;
    margin-right: auto;
    min-width: 270px;
  }
}
#detail figure div img {
  -o-object-fit: cover;
     object-fit: cover;
}

#story .noriko {
  text-align: right;
  margin-bottom: 2rem;
}
#story .noriko + h3 {
  word-break: keep-all;
}

#product {
  text-align: center;
}
#product h2 {
  margin-bottom: 1rem;
}
#product h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  #product h3 {
    margin-bottom: 2.2em;
  }
}
#product h4 {
  margin-bottom: 2rem;
}
#product ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #product ul {
    grid-template-columns: 1fr;
  }
}
#product ul h4 {
  line-height: 1;
  text-transform: uppercase;
}
#product ul figure div {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
#product ul figcaption dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-bottom: 2.2em;
  align-items: center;
}
#product ul figcaption dl dt {
  font-weight: bold;
  line-height: 1.6;
  text-align: right;
}
#product ul figcaption dl dd {
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  #product .lead {
    text-align: left;
  }
}

#insta h2 {
  text-align: center;
}
#insta #instagram-posts {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  #insta #instagram-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 480px) {
  #insta #instagram-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
#insta .instagram-post {
  aspect-ratio: 1;
}
#insta .instagram-post a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  background-color: black;
  overflow: hidden;
  position: relative;
}
#insta .instagram-post a p {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: grid;
  transform: translateY(8px);
  place-items: center;
}
#insta .instagram-post a p span {
  display: inline-block;
  border: 3px solid;
  padding: 1rem;
  line-height: 0;
  font-weight: bold;
}
@media screen and (min-width: 480px) {
  #insta .instagram-post a:hover p {
    transform: translateY(0);
    opacity: 1;
    transition: 0.5s;
  }
  #insta .instagram-post a:hover img {
    scale: 1.05;
    opacity: 0.5;
  }
}
#insta .instagram-post img {
  transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#insta > div:last-of-type {
  text-align: center;
}

#profile {
  line-height: 1.5;
}
#profile p {
  font-size: 0.8rem;
}
#profile h2 {
  display: none;
}
#profile ul {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 480px) {
  #profile ul {
    grid-template-columns: 1fr;
  }
}
#profile ul li {
  background-color: #ddd;
  padding: 1.5rem;
}
#profile ul hgroup {
  margin-bottom: 0.5rem;
}
#profile ul hgroup h3 {
  font-weight: normal;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 0;
}
#profile ul hgroup p {
  line-height: 1.4;
  margin-bottom: 0;
}
#profile ul a {
  text-decoration: underline;
  transition: 0.3s;
}
#profile ul a:hover {
  opacity: 0.7;
}
#profile ul .furukawa {
  display: grid;
  grid-template-columns: 150px auto;
  align-items: center;
  gap: 1rem;
}

footer {
  text-align: center;
  margin-top: 5rem;
  padding: 1em 0;
  background-color: #321500;
}
footer a {
  text-decoration: none;
}
footer a small {
  color: #fcfffc;
  line-height: 0;
}/*# sourceMappingURL=styles.css.map */