@charset "UTF-8";
/*--- 共通 ---*/
img {
  width: 100%;
  height: auto;
}

_:lang(x)::-internal-media-controls-overlay-cast-button, img {
  image-rendering: -webkit-optimize-contrast;
}

/*--- ヘッダー ---*/
header {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 85px;
  z-index: 90;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 1200px) {
  header {
    height: 7.1vw;
    padding-top: 1.3vw;
    padding-bottom: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: 15vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    padding-left: 4.1vw;
  }
}
header .title {
  position: relative;
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .title {
    max-width: none;
    width: 100%;
    align-items: flex-start;
  }
}
header .logo {
  text-align: center;
}
@media screen and (max-width: 768px) {
  header .logo {
    text-align: left;
  }
}
header .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  header .logo a {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 768px) {
  header .logo a {
    font-size: 3.9vw;
  }
}
header .logo a img {
  display: block;
  width: 57px;
  height: auto;
  margin-right: 6px;
}
@media screen and (max-width: 1200px) {
  header .logo a img {
    width: 4.8vw;
    margin-right: 0.5vw;
  }
}
@media screen and (max-width: 768px) {
  header .logo a img {
    width: 10vw;
    margin-right: 1.6vw;
  }
}
header .navToggle {
  display: block;
  position: absolute;
  right: 50px;
  top: 20px;
  width: 42px;
  height: 21px;
  cursor: pointer;
  z-index: 10;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  header .navToggle {
    right: 4.2vw;
    top: 1.7vw;
    width: 4.2vw;
    height: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  header .navToggle {
    right: 4vw;
    top: 2.7vw;
    width: 8vw;
    height: 3.7vw;
  }
}
header .navToggle span {
  display: block;
  position: absolute;
  /* .navToggleに対して */
  width: 42px;
  border-bottom: 3px solid #000;
  transition: 0.25s ease-in-out;
}
@media screen and (max-width: 1200px) {
  header .navToggle span {
    width: 3.5vw;
    border-bottom-width: 0.3vw;
  }
}
@media screen and (max-width: 768px) {
  header .navToggle span {
    width: 8vw;
    border-bottom-width: 0.5vw;
  }
}
header .navToggle span:nth-child(1) {
  top: 0;
}
header .navToggle span:nth-child(2) {
  top: 9px;
}
@media screen and (max-width: 1200px) {
  header .navToggle span:nth-child(2) {
    top: 0.8vw;
  }
}
@media screen and (max-width: 768px) {
  header .navToggle span:nth-child(2) {
    top: 1.6vw;
  }
}
header .navToggle span:nth-child(3) {
  top: 18px;
}
@media screen and (max-width: 1200px) {
  header .navToggle span:nth-child(3) {
    top: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  header .navToggle span:nth-child(3) {
    top: 3.2vw;
  }
}
header .navToggle.active span {
  top: 9px;
}
@media screen and (max-width: 1200px) {
  header .navToggle.active span {
    top: 0.8vw;
  }
}
@media screen and (max-width: 768px) {
  header .navToggle.active span {
    top: 1.6vw;
  }
}
header .navToggle.active span {
  /* 最初のspanをマイナス45度に */
}
header .navToggle.active span:nth-child(1) {
  transform: rotate(-45deg);
}
header .navToggle.active span:nth-child(2), header .navToggle.active span:nth-child(3) {
  transform: rotate(45deg);
}

.anker {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding-top: 85px;
  margin-top: -85px;
}
@media screen and (max-width: 1200px) {
  .anker {
    padding-top: 7.1vw;
    margin-top: -7.1vw;
  }
}
@media screen and (max-width: 768px) {
  .anker {
    padding-top: 15vw;
    margin-top: -15vw;
  }
}

main {
  padding-top: 85px;
}
@media screen and (max-width: 1200px) {
  main {
    padding-top: 7.1vw;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 15vw;
  }
}

footer {
  border-top: 3px solid #000;
}
@media screen and (max-width: 1200px) {
  footer {
    border-top-width: 0.3vw;
  }
}
@media screen and (max-width: 768px) {
  footer {
    border-top-width: 3px;
  }
}
footer .footer-top {
  position: relative;
  background-color: #fff;
  padding: 48px 0 0;
}
@media screen and (max-width: 1200px) {
  footer .footer-top {
    padding: 4vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top {
    padding: 10.5vw 0 0;
  }
}
footer .footer-top .inner {
  position: relative;
}
footer .footer-top .footer-menu {
  width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .footer-menu {
    width: 33.3vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-menu {
    width: 80vw;
  }
}
footer .footer-top .footer-menu .contact-btn,
footer .footer-top .footer-menu .user-shop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  line-height: 1.2;
  text-align: center;
}
footer .footer-top .footer-menu .contact-btn .arrow,
footer .footer-top .footer-menu .user-shop-nav a .arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .footer-menu .contact-btn .arrow,
  footer .footer-top .footer-menu .user-shop-nav a .arrow {
    right: 1.5vw;
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-menu .contact-btn .arrow,
  footer .footer-top .footer-menu .user-shop-nav a .arrow {
    right: 3vw;
    font-size: 3vw;
  }
}
footer .footer-top .footer-menu .contact-btn {
  height: 100px;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 15px;
  font-size: 21px;
  font-weight: bold;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .footer-menu .contact-btn {
    height: 8.3vw;
    font-size: 1.8vw;
    border-width: 0.3vw;
    border-radius: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-menu .contact-btn {
    height: 22.7vw;
    font-size: 4.8vw;
    border-width: 3px;
    border-radius: 3.4vw;
  }
}
footer .footer-top .footer-menu .contact-btn .arrow-up {
  font-size: 13px;
  transition: transform 0.3s;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .footer-menu .contact-btn .arrow-up {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-menu .contact-btn .arrow-up {
    font-size: 3vw;
  }
}
footer .footer-top .footer-menu .contact-btn.open .arrow-up {
  transform: translateY(-50%) rotate(180deg);
}
footer .footer-top .footer-menu .user-shop-nav {
  display: none;
  background-color: #fff100;
  border-radius: 15px;
  overflow: hidden;
  margin-top: -25px;
  padding-top: 25px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .footer-menu .user-shop-nav {
    border-radius: 1.3vw;
    margin-top: -2.1vw;
    padding-top: 2.1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-menu .user-shop-nav {
    border-radius: 3vw;
    margin-top: -8vw;
    padding-top: 8vw;
  }
}
footer .footer-top .footer-menu .user-shop-nav a {
  height: 74px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .footer-menu .user-shop-nav a {
    height: 6.2vw;
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-menu .user-shop-nav a {
    height: 18.2vw;
    font-size: 4.5vw;
  }
}
footer .footer-top .footer-menu .user-shop-nav hr {
  width: 92%;
  margin: 0 auto;
  border: none;
  height: 1px;
  background-color: #000;
}
footer .footer-top .footer-banner {
  width: 400px;
  margin: 26px auto 0;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .footer-banner {
    width: 33.3vw;
    margin: 2.2vw auto 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-banner {
    width: 54.1vw;
    margin: 10.5vw auto 0;
  }
}
footer .footer-top .footer-banner a {
  display: block;
}
footer .footer-top .footer-banner a img {
  width: 100%;
  height: auto;
}
footer .footer-top .page-top {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 93px;
  height: 93px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff100;
  border-radius: 50%;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .page-top {
    right: 4.2vw;
    bottom: 4.2vw;
    width: 7.8vw;
    height: 7.8vw;
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .page-top {
    right: 2.5vw;
    bottom: 15.5vw;
    width: 14.3vw;
    height: 14.3vw;
    font-size: 2.5vw;
  }
}
footer .footer-top .page-top .arrow {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 4px;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .page-top .arrow {
    font-size: 1.3vw;
    margin-bottom: 0.3vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .page-top .arrow {
    font-size: 2.5vw;
  }
}
footer .footer-top .page-top .label {
  display: block;
}
footer .footer-top .notice_sub_txt {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5em;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .notice_sub_txt {
    font-size: 1vw;
    margin-top: 5vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .notice_sub_txt {
    width: 94.5%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.2vw;
    margin-top: 15.9vw;
  }
}
footer .footer-top .notice-text {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5em;
  margin-top: 13px;
  padding: 0 0 1em;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .notice-text {
    font-size: 1.5vw;
    margin-top: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .notice-text {
    font-size: 2.5vw;
    margin-top: 4.9vw;
    padding: 0 0 3.9vw;
  }
}
footer .bottom {
  background-color: #fff100;
  padding: 32px 20px 24px;
}
@media screen and (max-width: 1200px) {
  footer .bottom {
    padding: 2.7vw 1.7vw 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .bottom {
    padding: 4vw 0vw;
  }
}
footer .bottom .footer-info,
footer .bottom .copyright {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  footer .bottom .footer-info,
  footer .bottom .copyright {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  footer .bottom .footer-info,
  footer .bottom .copyright {
    font-size: 2.3vw;
  }
}
footer .bottom .footer-info {
  margin-bottom: 16px;
}
@media screen and (max-width: 1200px) {
  footer .bottom .footer-info {
    margin-bottom: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  footer .bottom .footer-info {
    margin-bottom: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer .bottom .copyright {
    font-size: 2.1vw;
  }
}

/* .animate,
.animate2,
.animate3 {
	opacity: 1;
	transition-property: opacity, transform;
	transition-duration: 0.5s;
	transition-timing-function: ease-in-out;
}
.animate.deactive,
.animate2.deactive,
.animate3.deactive {
	opacity: 0;
	transition: 0s;
} */
/*===============================================
  スマホ／ハンバーガーメニュー（#sp_menu）※全ページ共通
===============================================*/
.deco-slash {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0.4em;
  font-weight: 900;
}

#sp_menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  #sp_menu {
    background-color: transparent;
  }
}

@media screen and (max-width: 768px) {
  body.menu-open header {
    background-color: transparent;
  }
}

.sp_menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 440px;
  height: 100%;
  padding: 150px 38px 50px;
  overflow-y: auto;
  background-color: #fff100;
}
@media screen and (max-width: 1200px) {
  .sp_menu__panel {
    padding-top: 13vw;
  }
}
@media screen and (max-width: 768px) {
  .sp_menu__panel {
    width: 100%;
    padding: 26vw 8.6vw 14vw;
  }
}

.menu_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .menu_list {
    gap: 3.4vw;
  }
}
.menu_list__wide {
  grid-column: 1/-1;
}
.menu_list li {
  display: flex;
}

.menu_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  color: #000;
}
@media screen and (max-width: 768px) {
  .menu_heading {
    margin: 8vw 0 5.5vw;
    font-size: 4.55vw;
  }
}

.menu_card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 116px;
  padding: 10px;
  border: 3px solid #000;
  border-radius: 15px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.28;
  color: #000;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .menu_card {
    min-height: 26.4vw;
    border-width: 2px;
    border-radius: 3.4vw;
    font-size: 4vw;
  }
}
.menu_card--wide {
  min-height: 56px;
}
@media screen and (max-width: 768px) {
  .menu_card--wide {
    min-height: 12.75vw;
  }
}
.menu_card--disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}
.menu_card__arrow {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 13.469px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .menu_card__arrow {
    right: 2vw;
    bottom: 1.5vw;
    font-size: 2.5vw;
  }
}
.menu_card--wide .menu_card__arrow {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}/*# sourceMappingURL=style.css.map */