@charset "UTF-8";
/* * {
  outline: 2px red solid;
} */
html {
  font-size: 100%;
  font-family: "Yu Gothic", sans-serif, "Poppins", sans-serif;
  color: #333;
}
body {
  font-weight: 300;
  background-color: rgba(255, 243, 230, 100);
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
  padding: 0;
}
a {
  text-decoration: none;
  color: #333;
}
h2 {
  font-family: "Italianno";
  font-size: 1.5rem;
}
p {
  font-weight: 500;
}
:root {
  --myBlack: #333;
  /* --en: 'EB Garamond', serif; */
  --twelve: 12px;
  --sixTeen: 16px;
  --twenty: 20px;
  --twentyFour: 24px;
  --twentyFive: 25px;
  --thirty: 30px;
  --thirtyTwo: 32px;
  --fourty: 40px;
  --foutyFive: 45px;
  --sixty: 60px;
  --eighty: 80px;
  --eightyFive: 85px;
  --oneHundred: 100px;
  --fadeAnimation: fade 0.5s forwards;
}
/* animation */
@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.inner {
  /* width: 100%; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pc-show {
  display: block;
}
.md-show {
  display: none;
}

.fade-in {
  opacity: 0;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 80px);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* header */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  opacity: 0.8;
  padding-top: 20px;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 2% 0 5%;
}

.header__logo {
  margin: 0;
  line-height: 0;
}
.header__logo a {
  display: block;
}
.header__logo img {
  max-width: 180px;
}

.header__items {
  display: flex;
  align-items: center;
  margin: 0;
}

.header__item {
  margin-left: 30px;
}

.header__link,
.slide-menu__link,
.header__link--contact {
  font-family: "Italianno";
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.header__link::after .slide-menu__link::after {
  content: "";
  width: 0;
}

.header__link:hover {
  color: #c47c7c;
}

.header__link:hover::after,
.slide-menu__link:hover::after {
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
  display: block;
  border-radius: 2px;
  height: 2px;
  transition: width 0.3s;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  background-color: #cba96d;
}

.header__link {
  font-weight: 500;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  color: #141414;
  line-height: 1;
}

.header__link--contact {
  border: 1px solid #666666;
  border-radius: 4px;
  display: block;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  color: #141414;
  background-color: transparent;
  padding: 10px 40px;
  margin: 0 auto;
}

.header__link--contact span {
  position: relative;
  z-index: 9999;
}

.header__link--contact::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 150%;
  background: #e9af53;
  transition: all 0.5s ease-in-out;
  transform: translateX(-110%) translateY(-20%) rotate(45deg);
}

.header__link--contact:hover span {
  color: #fff;
}

.header__link--contact:hover::after {
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

nav ul li.current a,
nav ul li a:hover {
  color: #fff;
}

/* hamburger-button */
.hamburger-button {
  position: fixed;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  cursor: pointer;
  z-index: 9999;

  span {
    background-color: #333;
    height: 2px;
    width: 100%;
    position: absolute;
    transition: all 0.3s;
  }
}
.hamburger span {
  position: absolute;
}
.hamburger-button .hamburger-button span:first-of-type {
  top: 0;
}
.hamburger-button span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-button span:last-of-type {
  bottom: 0;
}
.hamburger-button.active > span:first-of-type {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 9999;
  background-color:  #443103;
}
.hamburger-button.active > span:nth-of-type(2) {
  display: none;
}
.hamburger-button.active > span:last-of-type {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 9999;
  background-color: #443103;
}

/* slide-menu */
.slide-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  transform: translate(0, -50%);
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 30%;
  height: 100%;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  opacity: 0.5;
  z-index: 998;
}
.slide-menu ul {
  margin: 40px 10px;
  text-align: center;
}
.slide-menu li {
  /* border-bottom: solid 2px #333; */
  width: 80px;
  margin: 20px;
  font-size: 20px;
}
.slide-menu__link:hover {
  color: #333;
}

.slide-menu__link--contact {
  padding: 10px 3px;
  transition: 0.3s background-color;
  background-color: #cba96d;
  border-radius: 6px;
}
.slide-menu__link--contact:hover {
  opacity: 1;
  background-color: #cba96d;
}
.slide-menu.active {
  display: flex;
  animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
  0% {
    top: 45%;
    opacity: 0;
  }

  100% {
    top: 50%;
    opacity: 1;
  }
}
.icon-button i {
  font-size: 30px;
  display: flex;
  text-align: center;
  padding: 10px;
  color: #333;
  cursor: pointer;
}

/* Works-FV */
.fv {
  margin-top: 100px;
}

.fv__head {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 150px;
  background-image: url(../img/aboutback.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title {
  display: inline-block;
  font-size: 80px;
  letter-spacing: 0.08em;
  font-weight: 100;
  padding: 0;
  position: relative;
}


.page-title--creator,
.page-title--dessert,
.page-title--hobby {
  display: inline-block;
  font-size: 80px;
  letter-spacing: 0.08em;
  font-weight: 100;
  padding: 0;
  position: relative;
}

/* .page-title--creator::after,
.page-title--dessert::after,
.page-title--hobby::after {
  position: absolute;
  bottom: 15px;
  right: 0px;
  content: "";
  border: solid 2px #bf901a;
  width: 80px;
  border-radius: 5px;
} */

.fv-img {
  border-radius: 8px;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5),
    5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1130 / 670;
}

/* contents */
.contents {
  margin: 80px 0;
  position: relative;
  z-index: 100;
}

.contents__inner {
  display: flex;
}

.contents__items {
  width: 70%;
  margin: 100px 30px;
}

.contents__item {
  display: flex;
  padding: 30px 0;
}

.contents-title {
  padding: 0 20px;
  margin: 0px;
 
}

/* .contents__text {
  padding: 0px 0px;
  margin-top: 0;
} */

.contents__img {
  
  width: 40%;
  height: 700px;
  border-radius: 8px;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5),
    5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.read-more__button {
  display: flex;
  width: 160px;
  padding: 18px;
  border-radius: 7px;
  /* border: 2px solid #ccc; */
  /* background: #f1e767; */
  font-family: "Italianno";
  background: gradient(
    linear,
    left top,
    left bottom,
    from(#fdfbfb),
    to(#ebedee)
  );
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
  margin: 20px auto;
  justify-content: center;
  font-size: 30px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: filter 0.3s, transform 0.3s;
  position: relative;
  z-index: 100;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5),
    5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.read-more__button span {
  position: relative;
}
.read-more__button::before {
  background: linear-gradient(to right, rgba(203, 122, 157, 0.699), #f4fcfe);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  z-index: -10;
  transition: all 0.5s ease-out;
  width: 100%;
  border-radius: 8px;
}
.read-more__button::after {
  content: "";
  position: relative;
  width: 10px; /* ボックスの横幅を指定する */
  height: 10px; /* ボックスの高さを指定する */
  border-top: 1px solid #666666; /* 境界線の上部を実線に指定する*/
  border-right: 1px solid #666666; /* 境界線の上部を実線に指定する*/
  transform: rotate(45deg); /* ボックスを回転させる（右向き矢印） */
  top: 11px;
  animation: slideBlink 1s linear infinite;
}
@keyframes slideBlink {
  /* アニメーションの内容 */
  from {
    /* アニメーション開始時のスタイル */
    opacity: 0;
    left: 8px;
  }
  to {
    /* アニメーション終了時のスタイル */
    opacity: 1;
    left: 25px;
  }
}

.read-more__button:hover {
  background: gradient(
    linear,
    left bottom,
    left top,
    from(#fdfbfb),
    to(#ebedee)
  );
  background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
}
.read-more__button:hover::before {
  opacity: 0;
}

/* Footer */
#footer {
  width: 100%;
  background-image: url(../img/footer-background.jpg);
  /* padding-bottom: 180px; */
}
.footer__container {
  display: flex;
  text-align: center;
  justify-content: center;
}
.footer__items {
}

.footer ul {
  width: 100%;
  /* display: flex; */
  justify-content: space-around;
  padding: 70px 0;
  margin: 0;
}

.footer a {
  color: #1d1635;
  font-family: "Italianno";
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
.footer__wrap {
  padding-top: 50px;
  margin-left: 5rem;
}
.footer__icon i {
  font-size: 30px;
  padding: 10px;
  margin: 0 10px;
  color: #333;
  cursor: pointer;
}
.footer__icon {
  text-align: center;
}
.footer__info {
  letter-spacing: 2px;
  line-height: 1.5;
  display: block;
  max-width: 500px;
}

.footer__copy-right p {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 0;
  font-size: 0.85rem;
}

/* scroll */
.scroll-fixed {
  /* position: fixed; */
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.loop__wrap {
  display: flex;
  position: relative;
  z-index: -100;
}

.loop__wrap div {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 130px;
  font-weight: 900;
  overflow: hidden;
  margin: 0 auto;
}
.loop__wrap--first {
  color: #dd9b45;
}
.loop__wrap--second {
  color: #dd9b45;
}
.loop__wrap div:nth-child(odd) {
  animation: loop 200s -100s linear infinite;
}

.loop__wrap div:nth-child(even) {
  animation: loop2 200s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/* Hobby.html */
.section-title {
  margin-top: 80px;
}
.list {
  /* display: flex; */
  /* flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  margin-top: 40px;
  /* gap: var(--sixty) calc((100% - 96%) / 2); */
  
}
.list > div {
  /* width: 32%; */
  position: relative;
  cursor: pointer;
  opacity: 0;
}
.list > div img {
  width: 100%;
  height: 300px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.6);
  transition: 0.5s;
  border-radius: 8px;
}
.list > div p {
  text-align: center;
  padding-top: var(--twenty);
  font-size: 18px;
}
/* .list > div:nth-of-type(3n-1) {
  top: var(--fourty);
} */
/* .list > div:nth-of-type(3n) {
  top: var(--eighty);
} */
.modal__gallery.show .list > div {
  animation: var(--fadeAnimation);
}
.modal__gallery.show .list > div:first-of-type {
  animation-delay: 0s;
}
.modal__gallery.show .list > div:nth-of-type(2) {
  animation-delay: 0.4s;
}
.modal__gallery.show .list > div:nth-of-type(3) {
  animation-delay: 0.8s;
}
.modal__gallery.show .list > div:nth-of-type(4) {
  animation-delay: 1.2s;
}
.modal__gallery.show .list > div:nth-of-type(5) {
  animation-delay: 1.6s;
}
.modal__gallery.show .list > div:nth-of-type(6) {
  animation-delay: 2s;
}
.modal__gallery.show .list > div:nth-of-type(7) {
  animation-delay: 2.4s;
}
.modal__gallery.show .list > div:nth-of-type(8) {
  animation-delay: 2.8s;
}
.modal__gallery.show .list > div:nth-of-type(9) {
  animation-delay: 3.2s;
}
.modal__gallery.show .list > div:nth-of-type(10) {
  animation-delay: 3.6s;
}
.modal__gallery.show .list > div:nth-of-type(11) {
  animation-delay: 4s;
}
.modal__gallery.show .list > div:nth-of-type(12) {
  animation-delay: 4.4s;
}
.modal__gallery.show .list > div:hover img {
  box-shadow: none;
}
/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
}
.modal-bg {
  background-color: rgba(0, 0, 0, 0.83);
  width: 100%;
  height: 100%;
  position: relative;
}
.modal-content {
  /* text-align: center; */
  display:grid;
  align-items: center;
  justify-content: center;
 
  position: relative;
  top: 25%;
  /* left: 30%; */
  /* transform: translate(30%, 10%); */
}
.modal-content > div {
  position: relative;
}
.modal-content img {
  max-width: 50%;
  /* height: 40vh; */
  border-radius: 8px;
  /* padding: 200px ; */
}
.modal-btn {
  position: absolute;
  top: -40px;
  right: 30%;
  cursor: pointer;
}
.modal-btn > div {
  width: var(--thirty);
  height: var(--thirty);
  position: relative;
}
.modal-btn > div > span {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  right:  -200px;
  background-color: #fff;
}
.modal-btn > div > span:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-btn > div > span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__wrap {
  display: flex;
  width: 100%;
}
.modal__item {
  margin: 0 20px;
  padding: 0 30px;
  background-color:rgba(211, 211, 211, 0.83);
  border-radius: 8px;
  width: 100%;
}

.my-hobby {
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);

  width: 80%;
  margin-top: 100px;
  border-radius: 8px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 100;
}

.my-hobby__title {
  padding-top: 30px;
}

.my-hobby__text {
  letter-spacing: 0.05em;
  line-height: 1.88;
}

/* dessert.html */
.slider img {
  width: 70%; /*スライダー内の画像を横幅100%に*/
  height: 300px;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.test-slick {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
  position: relative;
  z-index: 100;
}

.test-slick__item {
  margin-right: 5px;
  margin-left: 5px;
}

.test-slick__item img {
  height: auto;
  width: 100%;
}

.introduce {
  position: relative;
  z-index: 100;
  margin: 80px 0;
}

.introduce__inner {
  display: flex;
  /* margin-inline: auto; */
  padding: 0;
}

.introduce__shop-img {
  width: 40%;
  margin: 0 20px;
  border-radius: 8px;
  object-fit: cover;
}
.introduce__wrap {
  margin-top: 80px;
  width: 100%;
  text-align: center;
  background-image: url(../img/aboutback.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.my-shop__title {
  font-size: 24px;
  /* padding-left: 30px; */
}

.my-shop__title--policy {
  letter-spacing: 0.05em;
  line-height: 1.337;
}
.my-shop__text {
  padding: 30px;
  letter-spacing: 0.05em;
  line-height: 1.55;
}
.shop__link {
  font-size: 18px;
  /* margin-left: 30px; */
  padding: 20px;
  width: 40%;
}
.shop__link.read-more__button {
  width: 250px;
}
.shop__link.read-more__button::after {
  top: 3px;
}

.introduce__shop-img--container {
  display: flex;
  margin-top: 80px;
}

.my-shop__map--inner {
  margin: 80px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .test-slick {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
}

.test-slick__item {
  margin-right: 5px;
  margin-left: 5px;
}

.test-slick__item img {
  height: auto;
  width: 100%;
} */

/* creator.html */
.kv {
  position: relative;
  /* display: flex; */
  z-index: 100;
}

.kv__video {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  border-radius: 8px;
  /* aspect-ratio: 1000 / 700; */
}
.kv__video-wrap {
  width: 100%;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px 0;
  margin: 20px 0 40px;
}
.kv__video-title {
  line-height: 1.88;
  text-align: center;
  width: 100%;
}

.swiper-title {
  text-align: center;
  font-family: "Yu Gothic";
  position: relative;
  z-index: 100;
}
.swiper__sv {
  position: relative;
  z-index: 100;
}
.swiper {
  width: 100%;
  height: 50%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background-color: #fff3e6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 80%;
  height: 50%;
  border-radius: 8px;
  /* object-fit: cover; */
  aspect-ratio: 350 / 300;
}
.swiper__wrapper--bottom {
  width: 80%;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px 0;
  margin: 20px auto;
}

.swiper__wrapper--text {
  padding: 0 20px;
  letter-spacing: 0.05em;
  line-height: 1.887;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    width: 60%;
  }

  .contents__item {
    flex-direction: column;
    padding-top: 20px;
  }
  .contents__text {
    padding-top: 20px;
  }

  .footer__icon {
    display: flex;
    padding: 0;
    justify-content: center;
  }
  .modal__gallery {
    padding-top: 30px;
  }
  .list > div img {
    height: calc(237 * 0.15vw);
  }
  .modal-content img {
    width: calc(723 * 0.1vw);
  }
  
  @media screen and (max-width: 768px) {
    :root {
      --twelve: calc(12 * 0.2666vw);
      --sixTeen: calc(16 * 0.2666vw);
      --twenty: calc(20 * 0.2666vw);
      --twentyFour: calc(24 * 0.2666vw);
      --twentyFive: calc(25 * 0.2666vw);
      --thirty: calc(30 * 0.2666vw);
      --thirtyTwo: calc(32 * 0.2666vw);
      --fourty: calc(40 * 0.2666vw);
      --foutyFive: calc(45 * 0.2666vw);
      --sixty: calc(60 * 0.2666vw);
      --eighty: calc(80 * 0.2666vw);
      --eightyFive: calc(85 * 0.2666vw);
      --oneHundred: calc(100 * 0.2666vw);
    }
    .header__logo {
      width: 132px;
    }

    .logo img {
      width: 150px;
      margin-left: 0;
    }
    .hamburger-button {
      /* position: absolute; */
      top: 40px;
      right: 100px;
      z-index: 2000;
    }
    .fv {
      margin-top: 80px;
    }
    .page-title {
      font-size: 50px;
    }
    .fv__head {
      flex-direction: column;
    }

    .contents__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .contents-title {
      /* padding-left: 20%; */
      padding: 0;
    }
    .contents__items {
      margin: 0 0 40px 0;
    }
    .contents__item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 10px;
    }
    .contents__img {
      width: 80%;
    }
    .swiper__wrapper--text {
      padding: 0;
    }

    .page-title--creator,
    .page-title--dessert,
    .page-title--hobby {
      display: inline-block;
      font-size: 50px;
      letter-spacing: 0.08em;
      font-weight: 100;
      padding: 0;
      position: relative;
    }

    .list {
      row-gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
    column-gap: 10px;
    }
    .list > div {
      width: 100%;
      position: static;
      /* padding: 0 80px; */
    }
    .list > div img {
      height: calc(235 * 0.15vw);
    }
    .modal-content {
      /* position: absolute;
      top: 10%;
      left: 15%; */
      /* transform: translate(-50%, -50%); */
      left: 20%;
    }

    .modal-content img {
      width: 95vw;
      /* height: 61vw; */
    }
    .modal__wrap {
      flex-direction: column;
    }
    .modal__item {
      margin: 20px 0 0;
      
      width: 37%;
      height: 200px;
    }

    
    .modal-btn > div > span {
right: 0;
    }


    .introduce__inner {
      width: 100%;
      flex-direction: column;
    }
    .shop__link.read-more__button {
      margin-inline: auto;
    }
    .introduce__wrap {
      text-align: center;
      width: 100%;
      margin-top: 30px;
    }
    .introduce__shop-img--container {
      flex-direction: column;
      margin: 30px auto;
    }
    .introduce__shop-img {
      width: 80%;
      margin-inline: auto;
      margin: 20px auto;
    }
    .my-shop__title--policy {
      margin: 30px;
    }
    .my-hobby__text {
      width: 80%;
      margin-inline: auto;
    }
    .read-more__button {
      margin: 40px auto;
    }

    .kv {
      flex-direction: column;
    }
    .kv__video {
      width: 100%;
    }
    .kv__video-wrap {
      margin-inline: auto;
    }

    .footer__container {
      display: flex;
    }
    .footer__nav.inner {
      width: 150px;
    }
    .footer__items {
      max-width: 200px;
      flex-direction: column;
    }
    .footer__item {
      padding: 20px 0;
    }

    .footer__icon {
      flex-direction: column;
      width: 50px;
      margin: 0 15px;
    }
    .footer__icon i {
      font-size: 30px;
      padding: 25px 0;
    }
    .footer__info.inner {
      padding-top: 80px;
    }

    .pc-show {
      display: none;
    }
    .md-show {
      display: block;
    }

    .md-none {
      display: none;
    }
    @media screen and (max-width: 375px) {
      .hamburger-button {
        /* position: absolute; */
        top: 40px;
        right: 60px;
        z-index: 2000;
      }
      .fv {
        margin-top: 150px;
      }
      .page-title {
        font-size: 30px;
      }
      .page-title::after {
        top: 35px;
        width: 40px;
      }
      .list {
       
      grid-template-columns: repeat(1, 1fr);
      
      }
      .list > div img {
        height: calc(237 * 0.3vw);
      }
      .swiper__wrapper--text {
        padding: 0 7px;
      }
      .sp-show {
        display: block;
      }
      .sp-none {
        display: none;
      }
    }
  }
}
