@charset "UTF-8";
html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  min-height: 1px;
}

footer {
  margin-top: auto;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", "Yu Gothic Medium", sans-serif;
  font-size: 16px;
  background-color: #fdf4f4;
  color: #302a2f;
}
body.js-no_scroll {
  overflow: hidden;
}
body.js-no_scroll:before {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #302a2f;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #ffffff;
}
a.btn {
  text-decoration: none;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

:focus,
button:focus {
  outline: none;
}

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

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}

:root {
  scroll-behavior: auto !important;
}

h2 {
  margin: 40px auto;
  font-size: 56px;
  text-align: center;
  color: #CB0014;
  letter-spacing: 0.08em;
  font-family: "gugi", "makinas-4-flat", sans-serif;
  border-top: 2px solid #CB0014;
  border-bottom: 2px solid #CB0014;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  h2 {
    margin: 30px auto;
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}
h2 span {
  font-family: "makinas-4-flat", sans-serif;
  font-size: 20px;
  display: block;
  color: black;
  letter-spacing: 0.06em;
}

h3 {
  color: #CB0014;
  padding-bottom: 20px;
}

.list-icon {
  list-style-type: none;
  padding-left: 0;
  padding-bottom: 10px;
  color: #302a2f;
  max-width: 1000px;
  margin: 0 auto;
}
.list-icon > li {
  padding-left: 1.4em;
  position: relative;
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 14px;
}
@media (max-width: 575px) {
  .list-icon > li {
    font-size: 12px;
  }
}
.list-icon > li span {
  color: #302a2f;
  position: absolute;
  left: 0;
}

.kvareabg {
  padding-top: 40px;
  background-color: #f4def5;
  background-image: url("../img/kvbg.webp");
  background-size: cover;
  background-position: top;
}
@media (max-width: 767px) {
  .kvareabg {
    padding-top: 0;
  }
}

.kvarea {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 2300px;
  margin: 0 auto;
}

/* キャラクターの配置設定 */
.model-container {
  position: absolute;
  right: 8%;
  top: 0;
  width: 40%;
  max-width: 960px;
  z-index: 10;
  pointer-events: none;
  will-change: transform;
}
@media (max-width: 1800px) {
  .model-container {
    top: 5%;
    right: -8%;
    width: 54%;
  }
}
@media (max-width: 767px) {
  .model-container {
    top: 34%;
    width: 111%;
    right: -31%;
  }
}

.model-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* 湯切りアニメーションの修正 */
.yukiri-animation {
  transform-origin: bottom center;
  /* 動きを滑らかにするため cubic-bezier を使用 */
  animation: yukiri-move 4s ease-in-out infinite;
}

@keyframes yukiri-move {
  0% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
h1.hdg-title img {
  display: block;
  margin: 0px auto;
}

.about-area {
  border-top: 2px solid #cc1864;
  border-bottom: 2px solid #cc1864;
  margin-top: 20px;
  margin-bottom: 20px;
}

.about-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 20px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 991px) {
  .about-container {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .about-container {
    padding: 0px 16px;
    flex-direction: column;
  }
}
.about-container .collab-img-pc {
  display: block;
  width: 100%;
  max-width: 260px;
}
.about-container .collab-img-pc img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .about-container .collab-img-pc {
    display: none;
  }
}
.about-container .collab-txt {
  max-width: 1000px;
  margin: 0;
  color: #302a2f;
  font-family: "makinas-4-flat", sans-serif;
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-container .collab-txt {
    width: 100%;
    margin: 0 auto;
    padding: 28px 10px;
    overflow: hidden;
  }
}
.about-container .collab-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  width: 100%;
  height: 100%;
  max-width: 600px;
  background-image: url("../img/oiwai.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}
.about-container .collab-txt.is-active::before {
  animation: bgPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.about-container .collab-txt.is-active .headline {
  animation: textUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s;
}
.about-container .collab-txt.is-active .headline .headline-inside {
  animation: markerPlay 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.7s;
}
.about-container .collab-txt .headline,
.about-container .collab-txt .collab-img-sp,
.about-container .collab-txt .collab-txt-detail,
.about-container .collab-txt .corner {
  position: relative;
  z-index: 1;
}
.about-container .collab-txt .headline {
  color: #b81c22;
  line-height: 2em;
  font-size: 32px;
  display: block;
  opacity: 0;
}
@media (max-width: 575px) {
  .about-container .collab-txt .headline {
    font-size: 28px;
  }
}
@media (max-width: 400px) {
  .about-container .collab-txt .headline {
    font-size: 24px;
  }
}
.about-container .collab-txt .headline .headline-inside {
  background: linear-gradient(transparent 40%, rgb(240, 203, 215) 40%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left bottom;
  display: inline;
}
.about-container .collab-txt .collab-img-sp {
  display: none;
}
@media (max-width: 767px) {
  .about-container .collab-txt .collab-img-sp {
    display: block;
    max-width: 180px;
    margin: 10px auto 0;
  }
  .about-container .collab-txt .collab-img-sp img {
    width: 80%;
    margin: 0 auto;
    height: auto;
    display: block;
  }
}
.about-container .collab-txt .corner {
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: url("../img/corner.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.about-container .collab-txt .corner.tl {
  top: 0;
  left: 0;
}
.about-container .collab-txt .corner.tr {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}
.about-container .collab-txt .corner.bl {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}
.about-container .collab-txt .corner.br {
  bottom: 0;
  right: 0;
  transform: scale(-1, -1);
}
.about-container .collab-txt .collab-txt-detail {
  font-size: 20px;
  margin: 0;
  line-height: 1.8;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about-container .collab-txt .collab-txt-detail {
    margin-top: 20px !important;
  }
}
@media (max-width: 575px) {
  .about-container .collab-txt .collab-txt-detail {
    font-size: 17px;
  }
}
@media (max-width: 400px) {
  .about-container .collab-txt .collab-txt-detail {
    font-size: 14px;
  }
}

@keyframes bgPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes textUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes markerPlay {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
#anchor-menu {
  background-color: #b50214;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}
#anchor-menu:before, #anchor-menu:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  background-image: url(../img/line.png);
  background-repeat: repeat-x;
  background-size: auto 16px;
}
@media (max-width: 575px) {
  #anchor-menu:before, #anchor-menu:after {
    background-size: auto 14px;
  }
}
#anchor-menu:before {
  top: 20px;
}
#anchor-menu:after {
  bottom: 0px;
}
#anchor-menu h2 {
  padding-top: 38px;
  padding-bottom: 28px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
#anchor-menu h2 .title-text {
  font-size: clamp(1.875rem, 0.375rem + 4.17vw, 3.5rem);
  color: #ffffff;
  letter-spacing: 0.08em;
  font-family: "gugi", "makinas-4-flat", sans-serif;
}
@media (max-width: 575px) {
  #anchor-menu h2 .title-text {
    font-size: clamp(1.438rem, 0.805rem + 2.98vw, 1.875rem);
  }
}
#anchor-menu h2 .title-text span {
  display: block;
  font-size: 20px;
  margin-top: 4px;
  color: #ffd87b;
}
#anchor-menu h2:before {
  content: "";
  background-image: url(../img/aburasoba.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 49px;
  display: inline-block;
  margin-right: 20px;
}
@media (max-width: 575px) {
  #anchor-menu h2:before {
    width: 40px;
    height: 36px;
  }
}
#anchor-menu h2:after {
  content: "";
  background-image: url(../img/aburasoba.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 49px;
  display: inline-block;
  margin-left: 20px;
}
@media (max-width: 575px) {
  #anchor-menu h2:after {
    width: 40px;
    height: 36px;
  }
}
#anchor-menu .collab-chara {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  animation: hyokkori 6s ease-in-out infinite;
}
@media (max-width: 991px) {
  #anchor-menu .collab-chara {
    width: 60px;
  }
}
@media (max-width: 575px) {
  #anchor-menu .collab-chara {
    top: 260px;
  }
}
#anchor-menu .collab-chara img {
  width: 100%;
  height: auto;
  display: block;
}
#anchor-menu {
  /* 💡 既存の .animeimg の中身を整理 */
}
#anchor-menu .animeimg {
  position: relative;
  z-index: 2;
}
#anchor-menu .soba-menutxt p {
  text-align: center;
  font-size: clamp(0.875rem, 0.747rem + 0.59vw, 1.188rem);
  font-weight: 500;
  color: #302a2f;
  line-height: 42px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  #anchor-menu .soba-menutxt p {
    font-size: 16px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  #anchor-menu .soba-menutxt p {
    line-height: 28px;
    font-size: 13px;
    padding-bottom: 0px;
  }
}
@media (max-width: 380px) {
  #anchor-menu .soba-menutxt p {
    line-height: 27px;
    font-size: 12px;
  }
}
#anchor-menu p {
  color: #b50214;
}
#anchor-menu .menu-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  margin: 0 auto;
  width: 100%;
  gap: 0px;
  align-items: center;
}
@media (max-width: 575px) {
  #anchor-menu .menu-box {
    gap: 0;
  }
}
#anchor-menu .menu-box .soba-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
#anchor-menu .menu-box .soba-img img {
  max-width: 100%;
  height: auto;
}
#anchor-menu .menu-box .menu-info h3 {
  font-family: "makinas-4-flat", sans-serif;
  font-size: 50px;
  color: #b50214;
  letter-spacing: 0.07em;
  padding-bottom: 35px;
  text-align: start;
}
@media (max-width: 991px) {
  #anchor-menu .menu-box .menu-info h3 {
    font-size: 33px;
  }
}
@media (max-width: 575px) {
  #anchor-menu .menu-box .menu-info h3 {
    font-size: 30px;
    padding-bottom: 18px;
  }
}
#anchor-menu .menu-box .menu-info h3 span {
  font-size: clamp(1.875rem, 0.958rem + 1.48vw, 2.625rem);
}
@media (max-width: 991px) {
  #anchor-menu .menu-box .menu-info h3 span {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  #anchor-menu .menu-box .menu-info h3 span {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  #anchor-menu .menu-box .soba-img {
    grid-column: 1/2;
    transform: translateX(-20px) scale(1);
  }
  #anchor-menu .menu-box .menu-info {
    grid-column: 2/3;
  }
}
@media (max-width: 767px) {
  #anchor-menu .menu-box {
    grid-template-columns: 1fr;
  }
  #anchor-menu .menu-box .soba-img {
    transform: translateX(0) scale(1);
  }
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1200px) {
  .menu-list {
    max-width: 380px;
  }
}
@media (max-width: 767px) {
  .menu-list {
    gap: 6px;
    padding: 0 10px;
  }
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 0px;
  font-family: "makinas-4-flat", sans-serif;
  letter-spacing: 0.1em;
}
@media (max-width: 991px) {
  .menu-list li {
    padding-left: 0;
    padding: 8px 0px;
  }
}
@media (max-width: 575px) {
  .menu-list li {
    padding: 4px 0px;
  }
}
.menu-list li .menu-name {
  font-size: 23px;
  color: #b50214;
}
@media (max-width: 991px) {
  .menu-list li .menu-name {
    font-size: 20px;
  }
}
.menu-list li .price-box {
  color: #302a2f;
  font-size: 22px;
}
@media (max-width: 991px) {
  .menu-list li .price-box {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .menu-list li .price-box {
    font-size: 18px;
  }
}
.menu-list li .price-box span {
  font-size: 16px;
}
@media (max-width: 767px) {
  .menu-list li .price-box span {
    font-size: 14px;
  }
}

.postc-p {
  font-size: 40px;
  font-family: "makinas-4-flat", sans-serif;
  background: linear-gradient(transparent 18%, #f6d2de 18%);
  display: inline;
  line-height: 2em;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left bottom;
}
@media (max-width: 991px) {
  .postc-p {
    font-size: 30px;
    line-height: 2em;
  }
}
@media (max-width: 575px) {
  .postc-p {
    font-size: clamp(1.188rem, 0.102rem + 5.11vw, 1.938rem);
  }
}
.postc-p.is-active {
  animation: markerPlay 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.postc-p span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  color: #ffffff;
  line-height: 1.6em;
}
@media (max-width: 575px) {
  .postc-p span {
    font-size: 14px;
    text-align: left;
  }
}

@keyframes hyokkori {
  0%, 15%, 85%, 100% {
    transform: translate(-50%, 0);
  }
  30%, 70% {
    transform: translate(-50%, -40px);
  }
}
#anchor-benefits {
  padding-top: 20px;
}
#anchor-benefits h4 {
  color: #ffffff;
  font-family: "makinas-4-flat", sans-serif;
  letter-spacing: 0.07em;
  text-align: center;
  font-size: 42px;
  padding-bottom: 15px;
  margin-top: 36px;
}
@media (max-width: 575px) {
  #anchor-benefits h4 {
    font-size: 30px;
    margin-top: 44px;
  }
}
#anchor-benefits .tokuten {
  margin: 0 auto;
  padding: 20px 0px;
  position: relative;
}
@media (min-width: 767px) {
  #anchor-benefits .tokuten {
    margin-top: 20px;
  }
}
#anchor-benefits .tokuten .tokuten-icon {
  display: table;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media (max-width: 575px) {
  #anchor-benefits .tokuten .tokuten-icon {
    top: 20px;
    width: 58px;
    height: 58px;
  }
}
#anchor-benefits .tokuten .tokuten-icon img {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#anchor-benefits .tokuten .tokuten-icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 5s linear infinite;
  background: url(../img/tokuten-f.png) no-repeat center center;
  background-size: contain;
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
#anchor-benefits .tokuten .postc-tokuten {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px;
  padding-top: 20px;
  justify-content: center;
}
@media (max-width: 767px) {
  #anchor-benefits .tokuten .postc-tokuten {
    gap: 70px;
  }
}
@media (max-width: 575px) {
  #anchor-benefits .tokuten .postc-tokuten {
    gap: 50px;
  }
}
#anchor-benefits .tokuten .postc-tokuten img {
  margin-bottom: 25px;
  max-width: 800px;
  width: 100%;
}
@media (max-width: 767px) {
  #anchor-benefits .tokuten .postc-tokuten img {
    padding: 0 10px;
    margin-bottom: 0px;
  }
}
#anchor-benefits .tokuten .postc-tokuten .postcard-box {
  text-align: center;
  padding: 20px 80px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box {
    width: 100%;
    padding: 20px 0px;
  }
}
#anchor-benefits .tokuten .postc-tokuten .postcard-box .p-tatesize {
  display: flex;
  max-width: 1000px;
  gap: 100px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .p-tatesize {
    gap: 30px;
  }
}
#anchor-benefits .tokuten .postc-tokuten .postcard-box .p-tatesize img {
  width: calc((100% - 100px) / 2);
}
@media (max-width: 767px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .p-tatesize img {
    width: 100%;
    max-width: 400px;
  }
}
#anchor-benefits .tokuten .postc-tokuten .postcard-box .period {
  color: #ffffff;
  font-family: "makinas-4-flat", sans-serif;
  margin: 0px auto 20px;
  padding: 15px 8px 12px;
  z-index: 1000;
  position: relative;
  max-width: 452px;
}
@media (max-width: 767px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .period {
    padding: 13px 4px 12px;
  }
}
#anchor-benefits .tokuten .postc-tokuten .postcard-box .period h3 {
  font-size: 29px;
  border-bottom: 4px dotted;
  padding-bottom: 8px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  color: #b50214;
}
@media (max-width: 1200px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .period h3 {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .period h3 {
    font-size: 23px;
  }
}
@media (max-width: 380px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .period h3 {
    font-size: 21px;
  }
}
#anchor-benefits .tokuten .postc-tokuten .postcard-box .period p {
  color: #b50214;
  font-size: 16px;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .period p {
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .period p {
    font-size: 14px;
  }
}
#anchor-benefits .tokuten .postc-tokuten .postcard-box .period p .day {
  font-size: 20px;
}
@media (max-width: 1300px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .period p .day {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .period p .day {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  #anchor-benefits .tokuten .postc-tokuten .postcard-box .period p .day {
    font-size: 14px;
  }
}

#anchor-store {
  font-family: "gugi", "makinas-4-flat", sans-serif;
}
@media (min-width: 575px) and (max-width: 991px) {
  #anchor-store .container {
    max-width: 90%;
  }
}

.shop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 20px;
  max-width: 1200px;
}
@media (min-width: 1201px) {
  .shop-list {
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .shop-list {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .shop-list {
    gap: 12px;
  }
}
.shop-list li {
  position: relative;
  overflow: hidden;
  width: calc((100% - 90px) / 3);
  background: #fff;
  border: 2px solid #b50214;
}
@media (max-width: 1200px) {
  .shop-list li {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 767px) {
  .shop-list li {
    width: calc((100% - 12px) / 2);
  }
}
.shop-list li img {
  padding: 4px;
}
.shop-list li h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 400;
  background-color: #b92b5d;
  color: #ffffff;
  display: inline;
  padding: 4px;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .shop-list li h3 {
    font-size: 18px;
  }
}
.shop-list li .shop-info {
  padding: 10px 15px;
}
@media (max-width: 767px) {
  .shop-list li .shop-info {
    padding: 10px 5px 10px;
  }
}
.shop-list li .shop-info dl {
  display: flex;
  font-size: 15px;
  margin-bottom: 5px;
  flex-direction: column;
}
@media (max-width: 575px) {
  .shop-list li .shop-info dl {
    font-size: 12px;
  }
}
.shop-list li .shop-info dl dt {
  position: relative;
  color: #b92b5d;
  font-weight: 400;
  line-height: 1.3;
  font-size: 16px;
  padding-bottom: 4px;
}
@media (max-width: 575px) {
  .shop-list li .shop-info dl dt {
    font-size: 15px;
  }
}
.shop-list li .shop-info dl dt.address::before, .shop-list li .shop-info dl dt.time::before, .shop-list li .shop-info dl dt.map::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 575px) {
  .shop-list li .shop-info dl dt.address::before, .shop-list li .shop-info dl dt.time::before, .shop-list li .shop-info dl dt.map::before {
    width: 18px;
    height: 18px;
  }
}
.shop-list li .shop-info dl dt.map::before {
  background-image: url("../img/map.png");
}
.shop-list li .shop-info dl dt.map {
  line-height: 1.2;
}
.shop-list li .shop-info dl .maplink {
  color: #CB0014;
  position: relative;
  display: inline-block;
}
.shop-list li .shop-info dl .maplink:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #b81c22;
  position: relative;
  margin-top: 5px;
  transition: all 0.3s ease-out;
}
.shop-list li .shop-info .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .shop-list li .shop-info .icon {
    width: 18px;
    height: 18px;
  }
}

.shop-info .map {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  color: #b81c22;
  letter-spacing: 0.08em;
  font-family: "gugi", "makinas-4-flat", sans-serif;
}
@media (max-width: 575px) {
  .shop-info .map {
    gap: 2px;
  }
}
.shop-info .map::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #e468b5;
  transition: all 0.3s ease-out;
}
.shop-info .map .maplink {
  position: relative;
  color: #ca4276;
  text-decoration: none;
}
@media (max-width: 575px) {
  .shop-info .map .maplink {
    font-size: 15px;
  }
}
.shop-info .map .maplink:hover {
  opacity: 0.8;
}
.shop-info .map .maplink {
  transform: translateY(-2px);
}
.shop-info .map:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/map.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.officialpage a {
  color: #B92B5D;
  font-weight: bold;
  text-decoration: underline;
}

#anchor-goods {
  background-color: #ad2855;
  border: none;
  padding: 20px 0px 30px;
}
@media (min-width: 575px) and (max-width: 991px) {
  #anchor-goods .container {
    max-width: 90%;
  }
}
#anchor-goods h2 {
  color: #ffffff;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
#anchor-goods h2 span {
  color: #ffd87b;
}
#anchor-goods .collab-frame {
  outline: 4px solid #cb4276;
}
#anchor-goods .collab-frame::before, #anchor-goods .collab-frame::after,
#anchor-goods .collab-frame .frame_under::before,
#anchor-goods .collab-frame .frame_under::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("../img/corner3.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  #anchor-goods .collab-frame::before, #anchor-goods .collab-frame::after,
  #anchor-goods .collab-frame .frame_under::before,
  #anchor-goods .collab-frame .frame_under::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  #anchor-goods .collab-frame {
    outline: 3px solid #cb4276;
    outline-offset: -3px;
    padding: 48px 10px;
  }
}
#anchor-goods .collab-frame::before {
  top: 0;
  left: 0;
}
#anchor-goods .collab-frame::after {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}
#anchor-goods .collab-frame .frame_under::before {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}
#anchor-goods .collab-frame .frame_under::after {
  bottom: 0;
  right: 0;
  transform: scale(-1);
}
#anchor-goods .title {
  text-align: center;
}
#anchor-goods .title img {
  max-height: 120px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  #anchor-goods .title img {
    margin-bottom: 20px;
    width: 96%;
  }
}
#anchor-goods img {
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
#anchor-goods .animate {
  font-family: "makinas-4-flat", sans-serif;
}
#anchor-goods .animate h3 {
  border: 1px solid #f9ffc3;
  color: #ffffff;
  background-color: #cb4276;
  display: inline-block;
  margin: 0 auto;
  padding: 6px 28px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  font-size: 20px;
}
@media (max-width: 575px) {
  #anchor-goods .animate h3 {
    padding: 6px 20px;
    font-size: 17px;
  }
}
#anchor-goods .animate p {
  color: #302a2f;
}
#anchor-goods .animate p a {
  text-decoration: underline;
}

.box-goods {
  max-width: 1000px;
  margin: 0 auto;
}

.goodswrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.dongoodsinfo {
  display: flex;
  flex-direction: column;
  width: calc(50% - 25px);
  margin-top: 40px;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #b50214;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dongoodsinfo.is-active {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1024px) {
  .dongoodsinfo {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .dongoodsinfo {
    padding: 10px;
  }
}

.goodsinfo {
  display: flex;
  flex-direction: column;
  width: calc(50% - 25px);
  margin-top: 40px;
  padding: 20px;
  background-color: rgba(252, 246, 246, 0.6901960784);
  border: 2px solid #eea0ca;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.goodsinfo.is-active {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1024px) {
  .goodsinfo {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .goodsinfo {
    padding: 10px;
  }
}
.goodsinfo h3 {
  grid-area: title;
  font-size: 26px;
  font-family: "makinas-4-flat", sans-serif;
  padding: 10px 0 4px;
  width: 100%;
  margin: 0 auto 36px;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to left, #f09ec8, #f09ec8) 1;
     border-image: linear-gradient(to left, #f09ec8, #f09ec8) 1;
  margin-bottom: 20px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .goodsinfo h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.col-spec {
  grid-area: spec;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item_btn {
  margin-top: auto;
}

.custom-grid {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .custom-grid {
    display: grid !important;
    -moz-column-gap: 30px;
         column-gap: 30px;
    grid-template-columns: 4fr 6fr;
  }
}
@media (min-width: 1025px) {
  .custom-grid {
    grid-template-rows: auto auto 1fr;
    align-items: stretch;
  }
}

.photo-goods {
  padding: 0 30px;
}
@media (max-width: 991px) {
  .photo-goods {
    padding: 0 4px;
  }
}
@media (max-width: 767px) {
  .photo-goods {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .photo-goods {
    margin: 0 auto 20px;
  }
}

.text-goods {
  margin: 12px 2px 25px;
}
@media (max-width: 767px) {
  .text-goods {
    margin: 0 0 25px;
  }
}
.text-goods dl {
  display: flex;
  flex-wrap: wrap;
}
.text-goods dl dt {
  font-family: "makinas-4-flat", sans-serif;
  width: 18%;
  align-self: flex-start;
  color: #ffffff;
  background: #B92B5D;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 0.6rem 0.6rem;
  text-align: center;
  margin-top: 10px;
  padding: 4px 0;
}
@media (max-width: 575px) {
  .text-goods dl dt {
    width: 20%;
    padding: 4px;
    font-size: 15px;
  }
}
.text-goods dl dd {
  width: 80%;
  padding-left: 1.2em;
  margin-top: 13px;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .text-goods dl dd {
    padding-left: 1em;
    font-size: 14px;
  }
}

.don {
  width: 100% !important;
  max-width: 955px;
  background-color: #fff;
  margin: 0 auto;
  border: none;
  padding: 0 0 28px;
}
@media (min-width: 991px) {
  .don img {
    padding: 0 20px;
  }
}

.collabitem_btn {
  box-sizing: border-box;
  background-color: #B92B5D;
  border-radius: 100vh;
  background-repeat: no-repeat;
  height: 60px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.collabitem_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 575px) {
  .collabitem_btn a {
    font-size: 16px;
  }
}

.collabitem_btntxt {
  font-size: 14px;
}
@media (max-width: 575px) {
  .collabitem_btntxt {
    font-size: 12px;
  }
}

.goodsinfo .custom-grid {
  grid-template-areas: "title" "image" "desc" "spec";
}
@media (min-width: 768px) {
  .goodsinfo .custom-grid {
    grid-template-areas: "title title" "desc desc" "image spec";
  }
}
.goodsinfo .col-single {
  grid-area: image;
}
.goodsinfo .col-single .single-image-area img {
  width: 100%;
  display: block;
  border: 1px solid #ffd9ed;
}

.button-detail {
  display: block;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 6px;
  color: #ffffff;
  background: #B92B5D;
  border: none;
  padding: 14px 0 14px;
  text-decoration: none;
  transition: 0.5s;
}
.button-detail:hover {
  opacity: 0.6;
  color: #ffffff;
}

.sales-info {
  color: #302a2f;
  font-family: "gugi", "makinas-4-flat", sans-serif;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 991px) {
  .sales-info {
    margin-bottom: 1rem;
  }
}
@media (max-width: 575px) {
  .sales-info {
    font-size: 16px;
  }
}
.sales-info strong {
  color: #ad2855;
}
.sales-info__item {
  margin: 0 0 0.5rem 0;
}
.sales-info__item:last-child {
  margin-bottom: 0;
}

#update-info {
  padding: 40px 0;
}
@media (max-width: 575px) {
  #update-info {
    padding: 40px 0 80px;
  }
}
#update-info h3 {
  font-weight: bold;
  color: #998b79;
  font-size: 25px;
  text-underline-offset: 0.25em;
}
@media (max-width: 575px) {
  #update-info h3 {
    font-size: 16px;
    padding-bottom: 0px;
  }
}
#update-info .sns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: 15px auto 0;
  justify-content: center;
  max-width: 880px;
  font-family: "makinas-4-flat", sans-serif;
}
@media (max-width: 575px) {
  #update-info .sns-list {
    margin-top: 20px;
    gap: 20px;
  }
}
#update-info .sns-list li {
  width: calc((100% - 50px) / 2);
  height: 50px;
  box-sizing: border-box;
  background-color: #b50000;
  border-radius: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 66px;
}
@media (max-width: 767px) {
  #update-info .sns-list li {
    width: 100%;
  }
}
@media (max-width: 575px) {
  #update-info .sns-list li {
    width: 98%;
  }
}
#update-info .sns-list li:hover {
  opacity: 0.8;
}
#update-info .sns-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 991px) {
  #update-info .sns-list li a {
    font-size: 13px;
  }
}
#update-info .sns-list li a:hover {
  color: #fff;
}
#update-info .sns-list li .x-name {
  font-size: 13px;
}
@media (max-width: 575px) {
  #update-info .sns-list li .x-name {
    font-size: 12px;
  }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.5s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.timing02 {
  transition-delay: 0.3s;
}

.collab-frame {
  position: relative;
  width: 94%;
  max-width: 1500px;
  margin: 0 auto 50px;
  padding: 40px 40px;
  box-sizing: border-box;
  background-color: #ffffff;
  outline: 4px solid #ffbf7b;
  outline-offset: -4px;
  isolation: isolate;
  z-index: 2;
}
.collab-frame::before, .collab-frame::after,
.collab-frame .frame_under::before,
.collab-frame .frame_under::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("../img/corner2.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .collab-frame::before, .collab-frame::after,
  .collab-frame .frame_under::before,
  .collab-frame .frame_under::after {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .collab-frame {
    outline: 3px solid #ffbf7b;
    outline-offset: -3px;
    padding: 48px 10px;
  }
}
.collab-frame::before {
  top: 0;
  left: 0;
}
.collab-frame::after {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}
.collab-frame .frame_under::before {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}
.collab-frame .frame_under::after {
  bottom: 0;
  right: 0;
  transform: scale(-1);
}

@keyframes hyokkori {
  0%, 15%, 85%, 100% {
    /* 最初と最後、待機時間はフレームの後ろに完全に隠す */
    transform: translate(-50%, 0);
  }
  30%, 70% {
    /* 飛び出している状態（-120pxの部分はキャラクターの高さに合わせて調整してください） */
    transform: translate(-50%, -120px);
  }
}
.introduction-box {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 22px 50px;
  background-color: #fff;
  background: repeating-linear-gradient(138deg, #f6f5fb, #f6f5fb 24px, #fff 0, #fff 30px);
  border: 4px solid #BA3F6B;
  background: linear-gradient(rgb(248, 234, 246) 0px, rgb(242, 226, 246) 50%, rgb(223, 232, 255) 100%);
}
@media (max-width: 991px) {
  .introduction-box {
    gap: 20px;
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .introduction-box {
    padding: 15px 20px;
    width: 94%;
    gap: 30px;
  }
}
.introduction-box .introduction-img {
  width: calc(30% - 60px);
  padding: 10px;
}
@media (max-width: 991px) {
  .introduction-box .introduction-img {
    width: calc(35% - 20px);
  }
}
@media (max-width: 767px) {
  .introduction-box .introduction-img {
    width: auto;
    margin: 0 auto;
  }
}
.introduction-box .introduction-img img {
  max-width: 280px;
  width: 100%;
}
@media (max-width: 767px) {
  .introduction-box .introduction-img img {
    max-width: 200px;
  }
}
@media (max-width: 575px) {
  .introduction-box .introduction-img img {
    max-width: 180px;
  }
}
.introduction-box h3 {
  color: #BA3F6B;
  font-family: "makinas-4-flat", sans-serif;
  letter-spacing: 0.06em;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  font-size: clamp(1.438rem, 1.211rem + 1.05vw, 2rem);
  border-bottom: 2px solid;
  padding-bottom: 16px;
}
@media (max-width: 575px) {
  .introduction-box h3 {
    font-size: 19px;
    padding-bottom: 13px;
  }
}
.introduction-box h3 span {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
.introduction-box .introduction-txt {
  width: calc(70% - 60px);
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
}
@media (max-width: 991px) {
  .introduction-box .introduction-txt {
    width: calc(65% - 20px);
  }
}
@media (max-width: 767px) {
  .introduction-box .introduction-txt {
    width: 100%;
    font-size: 14px;
  }
}
.introduction-box .Officiallink {
  box-sizing: border-box;
  background-color: #c7547d;
  border-radius: 100vh;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  height: 60px;
  width: 400px;
}
@media (max-width: 767px) {
  .introduction-box .Officiallink {
    background-position: center;
    width: 100%;
  }
}
.introduction-box .Officiallink a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 575px) {
  .introduction-box .Officiallink a {
    font-size: 16px;
  }
}
.introduction-box .Officiallink a:hover {
  opacity: 0.6;
}

/* a にクラスが乗るので a::before で定義 */
.youtube > a::before,
.x > a::before {
  content: "";
  display: inline-block;
  margin-right: 14px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .youtube > a::before,
  .x > a::before {
    margin-right: 8px;
  }
}

.youtube > a::before {
  width: 31px;
  height: 30px;
}

.x > a::before {
  width: 23px;
  height: 23px;
}

/* アイコン別の画像を指定 */
.x > a::before {
  background-image: url(../img/x-icon.png);
}

/* 20260716修正 */
#anchor-goods .animate p a:hover {
  color: #302a2f;
}

.contact-box {
  position: relative;
  width: 94%;
  max-width: 1500px;
  margin: 0 auto 50px;
  padding: 40px;
  box-sizing: border-box;
  background-color: #ffffff;
  outline: 4px solid #cb4276;
  outline-offset: -4px;
  isolation: isolate;
  z-index: 2;
}
.contact-box h3 {
  font-family: gugi, makinas-4-flat, sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  color: #ad2855;
  padding-bottom: 10px;
}
.contact-box a {
  text-decoration: underline;
}
.contact-box a:hover {
  color: #302a2f;
}
@media (max-width: 575px) {
  .contact-box {
    outline: 3px solid #cb4276;
    outline-offset: -3px;
    padding: 28px 10px;
  }
  .contact-box h3 {
    font-size: 16px;
  }
}

footer {
  padding: 10px 0 10px;
  background-color: #302A2F;
}
footer .link-pageup {
  position: fixed;
  width: 56px;
  height: 56px;
  right: 40px;
  bottom: 20px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
@media (max-width: 991px) {
  footer .link-pageup {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 15px;
  }
}
footer .link-pageup:hover {
  color: #CB0014;
  opacity: 1;
}
footer .copyright {
  display: block;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 575px) {
  footer .copyright {
    font-size: 10px;
  }
}

html {
  scrollbar-gutter: stable;
}

header {
  background-color: transparent;
  padding: 15px 20px;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
}
header .headerbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  position: relative;
}
header .head_logo {
  display: flex;
  align-items: center;
}
header .head_logo .img-logo {
  width: 100px;
  height: auto;
}
header .head_logo p {
  font-size: 12px;
  margin-left: 10px;
  color: #333333;
  font-weight: 500;
  line-height: 1.4;
}

/* --- 固定ボタン（茶色の円形） --- */
.menu-trigger {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #CB0000;
  box-shadow: 2px 2px 10px rgba(75, 66, 66, 0.2509803922);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 12000;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.menu-trigger:hover {
  transform: scale(1.05);
}
.menu-trigger {
  /* 三本線アイコン：くるっと消える */
}
.menu-trigger .hamburger-icon {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
  transform: rotate(0deg);
}
.menu-trigger .hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}
.menu-trigger {
  /* CSSで描くバツ印：くるっと現れる */
}
.menu-trigger .close-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-180deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-trigger .close-icon::before, .menu-trigger .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}
.menu-trigger .close-icon::before {
  transform: rotate(45deg);
}
.menu-trigger .close-icon::after {
  transform: rotate(-45deg);
}

/* --- 黄色のメニューカード --- */
.menu-overlay {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 360px;
  background-color: #F5E8F7;
  border-radius: 24px;
  z-index: 9999;
  padding: 90px 40px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  /* スライド初期状態 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-overlay .navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-overlay .navbar-nav .nav-item {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .menu-overlay .navbar-nav .nav-item {
    margin-bottom: 20px;
  }
}
.menu-overlay .navbar-nav .nav-item:last-child {
  margin-top: 0;
}
.menu-overlay .navbar-nav .nav-item .nav-link {
  text-decoration: none;
  color: #b92b5d;
  font-weight: 600;
  font-size: 20px;
  display: block;
  letter-spacing: 0.1em;
  font-family: "gugi", "makinas-4-flat", sans-serif;
}
.menu-overlay .navbar-nav .nav-item .nav-link span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
}
.menu-overlay figure {
  vertical-align: bottom;
  height: 100%;
  width: 30%;
  margin: 0 auto;
}
.menu-overlay img {
  padding-top: 20px;
  max-width: 74px;
  margin: 0 auto;
}

/* --- 黒の背景 --- */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

/* --- 開閉制御（bodyのクラスで一括管理） --- */
body.is-menu-open {
  overflow: hidden;
  /* アイコンをくるっと入れ替え */
}
body.is-menu-open .menu-trigger .hamburger-icon {
  opacity: 0;
  visibility: hidden;
  transform: rotate(180deg);
}
body.is-menu-open .menu-trigger .close-icon {
  opacity: 1;
  visibility: visible;
  transform: rotate(0deg);
}
body.is-menu-open {
  /* メニュー出現 */
}
body.is-menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  max-height: 100vh;
  overflow-y: auto !important;
  touch-action: auto !important;
}
body.is-menu-open {
  /* 背景出現 */
}
body.is-menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
}

/* スマホ対応 */
@media (max-width: 575px) {
  .menu-overlay {
    width: 70%;
    padding-top: min(11.1111111111svh, 18.8295165394vw, 74px);
    padding-bottom: min(3.3033033033svh, 8.5979643766vw, 22px);
    padding-left: min(6.1561561562svh, 10.4325699746vw, 41px);
    padding-right: min(4.954954955svh, 8.3969465649vw, 33px);
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
  }
  header {
    padding: 10px 15px;
  }
}
.img-logo {
  opacity: 0;
  visibility: hidden;
  /* クリック判定もなくすため */
  transition: opacity 0.5s ease, visibility 0.5s ease;
  /* 0.5秒かけて変化 */
}

/* 100pxスクロールした時に付与するクラス */
.img-logo.is-show {
  opacity: 1;
  visibility: visible;
}