@charset "UTF-8";
:root {
  --text-main-color: #fef8ea;
  --brown-color: #68473E;
  --background-color: #797d5c;
  --icon-color:#c7966b;
  --box-shadow: #00000040;
  --ff-main: "Noto Sans JP", sans-serif;
  --ff-title: "Goudy Bookletter 1911", sans-serif;
  --ff-sub: "Montserrat", sans-serif;
}

html {
  font-size: 100%;
}

a {
  color: #121212;
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

h2 {
  font-size: 5rem;
  padding-bottom: 0;
  margin-bottom: 0;
  font-family: var(--ff-title);
}
@media (max-width: 768px) {
  h2 {
    font-size: 4.5rem;
  }
}
@media (max-width: 400px) {
  h2 {
    font-size: 4.1rem;
  }
}

h3 {
  font-size: 1rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 0.9rem;
  }
}
@media (max-width: 400px) {
  h3 {
    font-size: 0.8rem;
  }
}

p {
  font-family: var(--ff-main);
}

#header {
  position: fixed;
  width: 100%;
  z-index: 300;
  pointer-events: none;
}

.header-wrapper {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--brown-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  pointer-events: auto;
}
@media (max-width: 400px) {
  .header-wrapper {
    height: 50px;
  }
}
.header-wrapper p {
  color: var(--text-main-color);
  margin-left: 50px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .header-wrapper p {
    font-size: 1.8rem;
  }
}
@media (max-width: 400px) {
  .header-wrapper p {
    font-size: 1.5rem;
    margin-left: 10px;
  }
}
.header-wrapper .toggle {
  width: 30px;
  height: 50px;
  position: relative;
  display: none;
  margin-right: 10px;
  z-index: 250;
}
@media (max-width: 768px) {
  .header-wrapper .toggle {
    display: block;
  }
}
@media (max-width: 400px) {
  .header-wrapper .toggle {
    display: block;
  }
}
.header-wrapper .toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-main-color);
  position: absolute;
  transition: all 0.5s;
}
.header-wrapper .toggle span:first-child {
  top: 25%;
}
.header-wrapper .toggle span:nth-of-type(2) {
  top: 50%;
}
.header-wrapper .toggle span:nth-of-type(3) {
  top: 75%;
}
.header-wrapper .mask {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

header.open .toggle {
  margin-right: 20px;
}
header.open .toggle span:first-child {
  top: 50%;
  transform: rotate(-315deg);
  background-color: var(--text-main-color);
}
header.open .toggle span:nth-of-type(2) {
  opacity: 0;
}
header.open .toggle span:nth-of-type(3) {
  top: 50%;
  transform: rotate(315deg);
  background-color: var(--text-main-color);
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 50px;
}
nav ul li a {
  position: relative;
  overflow: hidden;
  color: var(--text-main-color);
  margin-right: 50px;
  font-size: 1.1rem;
}
@media (max-width: 400px) {
  nav ul li a {
    font-size: 0.9rem;
  }
}
nav ul li a span {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  transition: all 0.4s;
  transform: translate(-50%, 0);
  opacity: 1;
  white-space: nowrap;
  text-align: center;
}
nav ul li a span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, 100%);
}
nav ul li a:hover span:nth-child(1) {
  opacity: 0;
  transform: translate(-50%, -100%);
}
nav ul li a:hover span:nth-child(2) {
  opacity: 1;
  transform: translate(-50%, 0);
  font-size: 1rem;
}

@media (max-width: 768px) {
  #header {
    pointer-events: auto;
  }
  nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: rgba(123, 150, 118, 0.9);
    transition: right 0.3s;
    z-index: 200;
  }
  nav ul {
    display: block;
    margin-top: 100px;
    padding: 24px;
    text-align: center;
  }
  nav ul li {
    padding-bottom: 30px;
  }
}
@media (max-width: 400px) {
  nav {
    position: fixed;
    top: 0;
    right: -150px;
    width: 150px;
    height: 100vh;
    background-color: hsla(67deg, 15%, 43%, 0.9);
    transition: right 0.3s;
    z-index: 200;
    border-left: 1px solid white;
  }
  nav ul {
    display: block;
    margin-top: 100px;
    padding: 24px;
    text-align: center;
  }
  nav ul li {
    padding-bottom: 30px;
  }
}
header.open nav {
  right: 0;
}

footer {
  padding-block: 10px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-main-color);
  background-color: rgb(152, 144, 144);
}

#about {
  width: 100%;
  padding-bottom: 200px;
  background-color: var(--background-color);
}

.about-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-wrapper {
    max-width: 700px;
  }
}
@media (max-width: 400px) {
  .about-wrapper {
    max-width: 400px;
    flex-direction: column-reverse;
  }
}
.about-wrapper .about-left {
  width: 50%;
  position: relative;
}
@media (max-width: 400px) {
  .about-wrapper .about-left {
    margin: 0 auto;
  }
}
.about-wrapper .about-left p:nth-of-type(1) {
  width: 80%;
  height: 80px;
}
@media (max-width: 768px) {
  .about-wrapper .about-left p:nth-of-type(1) {
    width: 80%;
    height: 60px;
  }
}
@media (max-width: 400px) {
  .about-wrapper .about-left p:nth-of-type(1) {
    width: 100%;
    height: 100px;
  }
}
.about-wrapper .about-left p:nth-of-type(2) {
  width: 60%;
  height: 50px;
  position: absolute;
  top: 80%;
  left: 25%;
}
@media (max-width: 768px) {
  .about-wrapper .about-left p:nth-of-type(2) {
    height: 40px;
    top: 70%;
  }
}
@media (max-width: 400px) {
  .about-wrapper .about-left p:nth-of-type(2) {
    display: none;
  }
}
.about-wrapper .about-right {
  width: 50%;
  margin-top: 80px;
  color: var(--text-main-color);
}
@media (max-width: 400px) {
  .about-wrapper .about-right {
    width: 300px;
  }
}
.about-wrapper .about-right p:nth-of-type(1) {
  margin-block: 100px 80px;
  font-size: 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .about-wrapper .about-right p:nth-of-type(1) {
    margin-block: 50px 50px;
    font-size: 1.2rem;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .about-wrapper .about-right p:nth-of-type(1) {
    margin-block: 50px 50px;
    font-size: 0.9rem;
    margin: 0 auto;
  }
}
.about-wrapper .about-right p:nth-of-type(1) span {
  color: var(--brown-color);
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .about-wrapper .about-right p:nth-of-type(1) span {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-wrapper .about-right p:nth-of-type(1) span {
    font-size: 1.2rem;
  }
}
.about-wrapper .about-right p:nth-of-type(1)::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 2px;
  background-color: var(--text-main-color);
  top: 50px;
}
@media (max-width: 400px) {
  .about-wrapper .about-right p:nth-of-type(1)::before {
    width: 170px;
    height: 1.5px;
  }
}
.about-wrapper .about-right:nth-of-type(2) {
  color: var(--text-main-color);
  font-size: 1.2rem;
  line-height: 2.2;
  padding-right: 5px;
}
@media (max-width: 768px) {
  .about-wrapper .about-right:nth-of-type(2) {
    font-size: 1rem;
    padding: 0;
    padding-top: 20px;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .about-wrapper .about-right:nth-of-type(2) {
    font-size: 1rem;
    padding-top: 60px;
    margin: 0 auto;
  }
}

.scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: 2s;
}

.scroll.fadeIn {
  opacity: 1;
  transform: translateY(0);
}

#main-visual {
  width: 100%;
  height: 100vh;
  position: relative;
}
#main-visual .logo {
  width: 250px;
  height: 200px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 400px) {
  #main-visual .logo {
    width: 220px;
    height: 180px;
  }
}
#main-visual h1 {
  font-size: 4.5rem;
  position: absolute;
  text-align: center;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-title);
  color: var(--text-main-color);
}
@media (max-width: 400px) {
  #main-visual h1 {
    font-size: 3.5rem;
  }
}
#main-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  inset: 0;
  background: url("../img/top.png") no-repeat center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  position: relative;
  z-index: 1;
}

/*スクロールダウン全体の場所*/
.scrolldown {
  position: absolute;
  bottom: 1%;
  right: 50%;
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
  /*下からの距離が変化して全体が下→上→下に動く*/
  /* 矢印の描写 */
}
@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -30px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 1rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 2px;
  height: 20px;
  background: #eee;
  transform: skewX(-31deg);
}
.scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 2px;
  height: 60px;
  background: #eee;
}

#craft {
  background-color: var(--text-main-color);
  padding-block: 100px;
}
#craft h2 {
  color: var(--brown-color);
  text-align: center;
}
#craft h3 {
  color: var(--brown-color);
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  #craft h3 {
    margin-bottom: 50px;
  }
}
#craft ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 200px;
  position: relative;
}
@media (max-width: 768px) {
  #craft ul li {
    margin-bottom: 150px;
  }
}
@media (max-width: 400px) {
  #craft ul li {
    margin-bottom: 10px;
    gap: 40px;
  }
}
#craft ul li p {
  color: var(--brown-color);
  font-size: 1.2rem;
  line-height: 2;
}
@media (max-width: 768px) {
  #craft ul li p {
    font-size: 1rem;
  }
}
@media (max-width: 400px) {
  #craft ul li p {
    font-size: 1rem;
  }
}
#craft ul .first-block .left-block {
  width: 68%;
}
@media (max-width: 768px) {
  #craft ul .first-block .left-block {
    width: 50%;
  }
}
@media (max-width: 400px) {
  #craft ul .first-block .left-block {
    margin-bottom: 100px;
  }
}
#craft ul .first-block .left-block img {
  height: 600px;
  margin-left: 50px;
}
@media (max-width: 768px) {
  #craft ul .first-block .left-block img {
    height: 400px;
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  #craft ul .first-block .left-block img {
    height: 200px;
    margin-left: 10px;
  }
}
#craft ul .first-block .right-block {
  width: 32%;
  position: relative;
}
@media (max-width: 400px) {
  #craft ul .first-block .right-block {
    width: 50%;
  }
}
#craft ul .first-block .right-block img {
  width: 350px;
  height: 300px;
  position: absolute;
  top: -80px;
  left: 50px;
}
@media (max-width: 768px) {
  #craft ul .first-block .right-block img {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
  }
}
@media (max-width: 400px) {
  #craft ul .first-block .right-block img {
    width: 150px;
    height: 100px;
    top: 0;
    left: 0;
  }
}
#craft ul .first-block .right-block p {
  margin-right: 30px;
  padding-top: 450px;
}
@media (max-width: 768px) {
  #craft ul .first-block .right-block p {
    margin-right: 20px;
    padding-top: 300px;
  }
}
@media (max-width: 400px) {
  #craft ul .first-block .right-block p {
    margin-top: 50px;
    padding-top: 200px;
  }
}
#craft ul .center-block {
  position: relative;
}
#craft ul .center-block .left-block {
  width: 32%;
  position: relative;
}
@media (max-width: 768px) {
  #craft ul .center-block .left-block {
    width: 50%;
    margin-left: 30px;
  }
}
@media (max-width: 400px) {
  #craft ul .center-block .left-block {
    width: 50%;
    margin-left: 10px;
  }
}
#craft ul .center-block .left-block img {
  position: absolute;
  height: 400px;
  top: 400px;
  left: 40px;
}
@media (max-width: 768px) {
  #craft ul .center-block .left-block img {
    top: 300px;
    width: 300px;
    height: 300px;
    left: 0px;
  }
}
@media (max-width: 768px) {
  #craft ul .center-block .left-block img {
    top: 300px;
    width: 200px;
    height: 200px;
  }
}
#craft ul .center-block .left-block p {
  padding-top: 100px;
}
@media (max-width: 400px) {
  #craft ul .center-block .left-block p {
    padding-top: 50px;
  }
}
#craft ul .center-block .right-block {
  width: 600px;
  height: 200px;
  margin-right: 50px;
}
@media (max-width: 768px) {
  #craft ul .center-block .right-block {
    width: 450px;
    height: 400px;
    margin-right: 0px;
  }
}
@media (max-width: 400px) {
  #craft ul .center-block .right-block {
    width: 50%;
    height: 200px;
  }
}
#craft ul .last-block {
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  position: relative;
  margin-top: 800px;
  z-index: 10;
}
@media (max-width: 768px) {
  #craft ul .last-block {
    margin-top: 400px;
  }
}
@media (max-width: 400px) {
  #craft ul .last-block {
    margin-top: 300px;
  }
}
@media (max-width: 400px) {
  #craft ul .last-block p {
    padding-inline: 10px;
  }
}
#craft ul .last-block img {
  width: 70%;
  height: 450px;
}
@media (max-width: 400px) {
  #craft ul .last-block img {
    width: 280px;
    height: 200px;
  }
}

#items {
  background-color: var(--background-color);
  padding-block: 50px;
}
#items .item-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#items .item-wrapper h2,
#items .item-wrapper h3 {
  color: var(--text-main-color);
  text-align: center;
}
#items .item-wrapper h2 {
  padding-top: 50px;
}
#items .item-wrapper h3 {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #items .item-wrapper h3 {
    padding-bottom: 40px;
  }
}
@media (max-width: 400px) {
  #items .item-wrapper h3 {
    padding-bottom: 30px;
  }
}
#items .item-wrapper .item-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 400px) {
  #items .item-wrapper .item-img {
    gap: 10px;
  }
}
#items .item-wrapper .item-img img {
  width: 500px;
  height: 250px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #items .item-wrapper .item-img img {
    width: 400px;
    height: 230px;
    margin-bottom: 8px;
  }
}
@media (max-width: 400px) {
  #items .item-wrapper .item-img img {
    width: 300px;
    height: 200px;
    margin-bottom: 8px;
  }
}
#items .item-wrapper .item-img p {
  color: var(--text-main-color);
}
#items .item-list-btn {
  width: 200px;
  height: 40px;
  background-color: var(--text-main-color);
  border-radius: 20px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-block: 30px;
  align-items: center;
  position: relative;
  z-index: 150;
}
#items .item-list-btn:hover {
  border: 2px solid var(--brown-color);
}
#items .item-list-btn a {
  color: var(--brown-color);
  text-align: center;
}

#stockist {
  background-color: var(--text-main-color);
  text-align: center;
  padding-block: 100px;
}
#stockist h2,
#stockist h3 {
  color: var(--brown-color);
}
#stockist h3 {
  margin-bottom: 60px;
}
#stockist .stockist-text p {
  color: var(--brown-color);
  font-size: 1.2rem;
  margin-bottom: 100px;
  line-height: 1.8;
}
@media (max-width: 400px) {
  #stockist .stockist-text p {
    font-size: 1rem;
    padding-inline: 10px;
  }
}
#stockist ul {
  display: flex;
  justify-content: center;
  gap: 50px;
  width: 100%;
}
@media (max-width: 768px) {
  #stockist ul {
    display: block;
  }
}
#stockist ul li {
  width: 25%;
  height: 500px;
  background-color: var(--background-color);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  #stockist ul li {
    width: 450px;
    height: 500px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 400px) {
  #stockist ul li {
    width: 300px;
    height: 450px;
  }
}
#stockist ul li img {
  width: 250px;
  height: 250px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  #stockist ul li img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 400px) {
  #stockist ul li img {
    width: 180px;
    height: 180px;
  }
}
#stockist ul li .place {
  margin-top: 30px;
}
#stockist ul li .place p {
  color: var(--text-main-color);
}
#stockist ul li .place p:nth-of-type(1) {
  font-size: 1.2rem;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 400px) {
  #stockist ul li .place p:nth-of-type(1) {
    font-size: 1.1rem;
  }
}
#stockist ul li .place p:nth-of-type(1)::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 1px;
  background-color: var(--text-main-color);
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#stockist ul li .place p:nth-of-type(2) {
  font-size: 1rem;
}
#stockist ul .shop-list.show {
  opacity: 1;
  transform: translateY(0);
}

.box {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#faq {
  padding-block: 100px;
  background-color: var(--text-main-color);
}
#faq h2,
#faq h3 {
  color: var(--brown-color);
  text-align: center;
}
#faq h3 {
  padding-bottom: 50px;
}
#faq dl {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  color: var(--brown-color);
}
@media (max-width: 400px) {
  #faq dl {
    max-width: 300px;
  }
}
#faq dl dt {
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#faq dl .icon.q-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--icon-color);
  color: var(--text-main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
#faq dl .question-text {
  flex: 1;
}
#faq dl .arrow {
  transition: transform 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--icon-color);
}
#faq dd {
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  border-bottom: none;
}
#faq dd .icon.a-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--brown-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 12px;
  flex: 0 0 26px;
}
#faq dd p {
  margin: 0;
  flex: 1;
}

dt.question.active {
  border-bottom: 1px solid rgba(128, 93, 93, 0.245);
}
dt.question.active .arrow {
  transform: rotate(180deg);
}
dt.question.active .faq-answer {
  border-top-color: var(--brown-color);
}

#item-list {
  background-color: var(--text-main-color);
  padding-top: 100px;
}
#item-list h2 {
  color: var(--brown-color);
  text-align: center;
  margin-bottom: 30px;
}
#item-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  text-align: right;
}
#item-list ul li {
  width: 20%;
  height: auto;
}
@media (max-width: 768px) {
  #item-list ul li {
    width: calc(30% - 25px);
  }
}
@media (max-width: 768px) {
  #item-list ul li {
    width: calc(40% - 25px);
  }
}
#item-list ul li p {
  color: var(--brown-color);
  padding-top: 5px;
  padding-right: 5px;
}

.item-page {
  display: flex;
  justify-content: space-around;
  padding-top: 150px;
  color: var(--brown-color);
}
@media (max-width: 400px) {
  .item-page {
    flex-direction: column;
    align-items: center;
    margin-inline: 10px;
  }
}
.item-page .left-block {
  width: 50%;
  width: 500px;
  margin: 0 auto;
}
@media (max-width: 400px) {
  .item-page .left-block {
    width: 300px;
  }
}
.item-page .right-block {
  width: 50%;
  text-align: left;
  padding-block: 50px;
}
.item-page .right-block p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.item-page .right-block p:nth-of-type(2) {
  margin-bottom: 50px;
}
.item-page .right-block dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  padding-bottom: 10px;
}
.item-page .right-block dl dd {
  width: 50px;
}
.item-page .right-block dl dt {
  flex: 1;
}

.back-to-list {
  width: 200px;
  height: 40px;
  background-color: var(--background-color);
  border-radius: 20px;
  margin: 0 auto;
  margin-block: 100px;
  text-align: center;
  padding-block: 10px;
}
.back-to-list:hover {
  border: 2px solid var(--brown-color);
  background-color: var(--text-main-color);
  color: var(--background-color);
}
.back-to-list a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--text-main-color);
}
.back-to-list a:hover {
  color: var(--background-color);
}

.gallery {
  margin-left: 5px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 5;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid rgba(89, 84, 84, 0.969); /*矢印の色*/
  border-right: 2px solid rgba(89, 84, 84, 0.969); /*矢印の色*/
  height: 25px;
  width: 25px;
}
.slick-prev::before,
.slick-next::before {
  display: none;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

.choice-btn {
  margin-inline: 3%;
}

/*選択するサムネイル画像の設定*/
.choice-btn li {
  cursor: pointer;
  outline: none;
}

.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}

.choice-btn .slick-track {
  transform: unset !important; /*画面幅サイズ変更に伴うサムネイル固定*/
}
/*# sourceMappingURL=style.css.map */