@charset "UTF-8";
/***********************************************************************
media queries setting
**********************************************************************/
/***********************************************************************
reset
**********************************************************************/
* {
  margin: 0;
  padding: 0;
}

html, body {
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(0.78vw, 15px);
}
@media (max-width: 768px) {
  body {
    font-size: 4vw;
  }
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, table, th, td, img,
article, footer, header, nav, section {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  list-style-type: none;
}

th {
  font-weight: normal;
  text-align: inherit;
}

select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  outline: none;
}

*:focus {
  outline: none;
}

img[src$=".svg"] {
  width: 100%;
}

hr {
  display: none;
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

/* set html5 elements to block */
article, footer, header, nav, section {
  display: block;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

@media (max-width: 768px) {
  br.sp {
    display: inline-block !important;
  }
}

ul {
  font-size: 0;
}
ul li {
  font-size: min(0.78vw, 15px);
}
@media (max-width: 768px) {
  ul li {
    font-size: 4vw;
  }
}

/********************************************************************************
header
********************************************************************************/
header {
  /* sp nav */
  /* sp nav */
}
header #logo {
  position: absolute;
  z-index: 100;
}
header #nav-btn {
  background: #012b82;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  height: min(6.4vw, 123px);
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: min(6.4vw, 123px);
  z-index: 1000;
}
@media (max-width: 768px) {
  header #nav-btn {
    height: 13.06vw;
    width: 13.06vw;
  }
}
header #nav-btn span {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  height: 2px;
  position: absolute;
  left: calc(50% - min(0.807vw, 15.5px));
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: min(1.614vw, 31px);
}
@media (max-width: 768px) {
  header #nav-btn span {
    left: calc(50% - 3.465vw);
    width: 6.93vw;
  }
}
header #nav-btn span:nth-of-type(1) {
  top: min(2vw, 38.5px);
}
@media (max-width: 768px) {
  header #nav-btn span:nth-of-type(1) {
    top: 2.93vw;
  }
}
header #nav-btn span:nth-of-type(2) {
  top: min(2.52vw, 48.5px);
}
@media (max-width: 768px) {
  header #nav-btn span:nth-of-type(2) {
    top: 4.93vw;
  }
}
header #nav-btn span:nth-of-type(3) {
  top: min(3.04vw, 58.5px);
}
@media (max-width: 768px) {
  header #nav-btn span:nth-of-type(3) {
    top: 6.93vw;
  }
}
header #nav-btn::before {
  color: #fff;
  content: "MENU";
  font-size: min(0.625vw, 12px);
  font-weight: 700;
  letter-spacing: 0.2em;
  position: absolute;
  bottom: min(1.979vw, 38px);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  header #nav-btn::before {
    font-size: 2.13vw;
    bottom: 1.6vw;
  }
}
header #nav-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(min(0.52vw, 10px)) rotate(45deg);
          transform: translateY(min(0.52vw, 10px)) rotate(45deg);
}
@media (max-width: 768px) {
  header #nav-btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(2vw) rotate(45deg);
            transform: translateY(2vw) rotate(45deg);
  }
}
header #nav-btn.active span:nth-of-type(2) {
  opacity: 0;
}
header #nav-btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(calc(min(0.52vw, 10px) * -1)) rotate(-45deg);
          transform: translateY(calc(min(0.52vw, 10px) * -1)) rotate(-45deg);
}
@media (max-width: 768px) {
  header #nav-btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-2vw) rotate(-45deg);
            transform: translateY(-2vw) rotate(-45deg);
  }
}
header #nav-btn.active::before {
  content: "CLOSE";
}
header .gnav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #008200;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  height: 100vh;
  max-width: 434px;
  min-height: 100vh;
  opacity: 0;
  overflow-y: auto;
  padding: min(9.6vw, 184.5px) 0 min(1.458vw, 28px);
  position: fixed;
  right: 0;
  top: 0;
  text-align: center;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}
@media (max-width: 768px) {
  header .gnav {
    max-width: inherit;
    padding: 18.4vw 0;
  }
}
header .gnav.active {
  visibility: visible;
  opacity: 1;
}
header .gnav-btn {
  background: #fff;
  border-radius: min(0.9375vw, 18px);
  margin: 0 auto;
  padding: 33px 0 26px;
  width: 81%;
}
@media (max-width: 768px) {
  header .gnav-btn {
    border-radius: 16px;
    width: 84%;
  }
}
header .gnav-btn .btn a {
  background: #000;
  border: 2px solid #000;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 auto;
  padding: 9px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  text-align: center;
  width: 72.7%;
}
@media (max-width: 768px) {
  header .gnav-btn .btn a {
    border-radius: 4.53vw;
    font-size: 3.73vw;
    padding: 2.13vw;
  }
}
header .gnav-btn .btn a:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 768px) {
  header .gnav-btn .btn a:hover {
    background: #000;
    color: #fff;
  }
}
header .gnav-btn .btn + .btn {
  margin-top: min(0.521vw, 10px);
}
@media (max-width: 768px) {
  header .gnav-btn .btn + .btn {
    margin-top: 10px;
  }
}
header .gbtn-top {
  margin-bottom: 27px;
}
@media (max-width: 768px) {
  header .gbtn-top {
    margin-bottom: 6.4vw;
  }
}
header .gbtn-top img {
  margin: 0 auto 23px;
  width: 73%;
}
@media (max-width: 768px) {
  header .gbtn-top img {
    margin: 0 auto 5.6vw;
  }
}
header .gbtn-stamprally {
  margin-bottom: 50px;
}
header .gbtn-stamprally img {
  margin: 0 auto 42px;
  width: 92.4%;
}
@media (max-width: 768px) {
  header .gbtn-stamprally img {
    margin: 0 auto 10.6vw;
  }
}
header .instagram-box {
  color: #fff;
  text-align: center;
}
header .instagram-box .head {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  header .instagram-box .head {
    margin-bottom: 5.33vw;
  }
}
header .instagram-box .head span {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0 15px;
  position: relative;
}
@media (max-width: 768px) {
  header .instagram-box .head span {
    font-size: 4.8vw;
    padding: 0 3.46vw;
  }
}
header .instagram-box .head span::before, header .instagram-box .head span::after {
  background: #fff;
  border-radius: 1.5px;
  content: "";
  height: 40px;
  position: absolute;
  top: 55%;
  width: 3px;
}
@media (max-width: 768px) {
  header .instagram-box .head span::before, header .instagram-box .head span::after {
    height: 6.66vw;
    width: 1px;
  }
}
header .instagram-box .head span::before {
  left: -10px;
  -webkit-transform: translateY(-50%) rotate(-30deg);
          transform: translateY(-50%) rotate(-30deg);
}
@media (max-width: 768px) {
  header .instagram-box .head span::before {
    left: -1.56vw;
  }
}
header .instagram-box .head span::after {
  right: -10px;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
@media (max-width: 768px) {
  header .instagram-box .head span::after {
    right: -1.56vw;
  }
}
header .instagram-box a {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  display: inline-block;
  line-height: 0;
  margin-bottom: 10px;
  padding: 15px;
  width: 70px;
}
@media (max-width: 768px) {
  header .instagram-box a {
    margin-bottom: 2.13vw;
    padding: 2.66vw;
    width: 12vw;
  }
}
header .instagram-box a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  header .instagram-box a:hover {
    opacity: 1;
  }
}
header .instagram-box .sub {
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 768px) {
  header .instagram-box .sub {
    font-size: 3.2vw;
  }
}
header .fixed-logo {
  position: fixed;
  left: min(1.771vw, 34px);
  top: min(1.69vw, 32.5px);
  width: min(6.51vw, 125px);
  z-index: 10;
}
header .fixed-logo a {
  display: block;
}
header .fixed-logo a:hover {
  opacity: 0.7;
}

/********************************************************************************
footer
********************************************************************************/
.footer-slider {
  margin-bottom: min(9.375vw, 180px);
  overflow: visible;
  /*&::before{
  	background: url(../images/common/footer-deco.svg) no-repeat center/contain;
  	content: "";
  	height: min(17.6vw,338px);
  	position: absolute;
  	left: 50%;
  	top: 50%;
  	transform: translate(-50%,-50%);
  	width: min(55.57vw,1067px);
  	@include sp {
  		width: 82.48vw;
  	}
  }*/
}
.footer-slider .swiper-slide {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (max-width: 768px) {
  .footer-slider .swiper-slide {
    -webkit-transform: none;
            transform: none;
  }
}
.footer-slider .swiper-slide:nth-child(even) {
  margin-top: min(12vw, 231px);
}
@media (max-width: 768px) {
  .footer-slider .swiper-slide:nth-child(even) {
    margin-top: 0;
  }
}
.footer-slider .swiper-slide img {
  border-radius: min(8.7vw, 167px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media (max-width: 768px) {
  .footer-slider .swiper-slide img {
    border-radius: 50vw;
  }
}
.footer-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

footer {
  margin-bottom: min(7.03vw, 135px);
}
footer .footer-copy {
  margin: 0 auto min(9.896vw, 190px);
  width: min(32.55vw, 625px);
}
@media (max-width: 768px) {
  footer .footer-copy {
    width: 87.4vw;
  }
}
footer .instagram-box {
  margin-bottom: min(6.25vw, 120px);
  text-align: center;
}
footer .instagram-box .head {
  margin-bottom: min(1.302vw, 25px);
}
@media (max-width: 768px) {
  footer .instagram-box .head {
    margin-bottom: 5.33vw;
  }
}
footer .instagram-box .head span {
  font-size: min(1.719vw, 33px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0 min(0.938vw, 18px);
  position: relative;
}
@media (max-width: 768px) {
  footer .instagram-box .head span {
    font-size: 4.8vw;
    padding: 0 3.46vw;
  }
}
footer .instagram-box .head span::before, footer .instagram-box .head span::after {
  background: #000;
  border-radius: 1.5px;
  content: "";
  height: min(2.083vw, 40px);
  position: absolute;
  top: 55%;
  width: 3px;
}
@media (max-width: 768px) {
  footer .instagram-box .head span::before, footer .instagram-box .head span::after {
    height: 6.66vw;
    width: 1px;
  }
}
footer .instagram-box .head span::before {
  left: calc(min(1.56vw, 30px) * -1);
  -webkit-transform: translateY(-50%) rotate(-30deg);
          transform: translateY(-50%) rotate(-30deg);
}
footer .instagram-box .head span::after {
  right: calc(min(1.56vw, 30px) * -1);
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
footer .instagram-box a {
  display: inline-block;
  margin-bottom: min(0.521vw, 10px);
  width: min(3.64vw, 70px);
}
@media (max-width: 768px) {
  footer .instagram-box a {
    margin-bottom: 2.13vw;
    width: 12vw;
  }
}
footer .instagram-box a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  footer .instagram-box a:hover {
    opacity: 1;
  }
}
footer .instagram-box .sub {
  font-size: min(0.781vw, 15px);
  font-weight: 700;
}
@media (max-width: 768px) {
  footer .instagram-box .sub {
    font-size: 3.2vw;
  }
}
footer .copyright {
  font-size: min(1.3vw, 25px);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  footer .copyright {
    font-size: 5.33vw;
  }
}

/********************************************************************************
common
********************************************************************************/
.wrapper {
  overflow-x: hidden;
}

.inner {
  margin: 0 auto;
  max-width: 1680px;
  position: relative;
  width: 87.5%;
  z-index: 1;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.more-btn {
  margin: 0 auto;
  max-width: min(14.92vw, 286.5px);
}
@media (max-width: 768px) {
  .more-btn {
    max-width: 100%;
  }
}
.more-btn a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  border: 2px solid #000;
  border-radius: min(1.51vw, 29px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: min(0.74vw, 14.2px);
  font-weight: 700;
  height: min(3.04vw, 58.5px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .more-btn a {
    border-radius: 6.93vw;
    font-size: 3.786vw;
    height: inherit;
    line-height: 1.3;
    padding: 2.13vw 0;
  }
}
.more-btn a:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 768px) {
  .more-btn a:hover {
    background: #000;
    color: #fff;
  }
}
.more-btn.cs a {
  background: #fff;
  color: #000;
  pointer-events: none;
}

.marche-banner {
  margin: 0 auto;
  max-width: min(14.92vw, 286.5px);
}
@media (max-width: 768px) {
  .marche-banner {
    max-width: 100%;
  }
}
.marche-banner a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fe2301;
  border: 2px solid #fe2301;
  border-radius: min(1.51vw, 29px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: min(0.74vw, 14.2px);
  font-weight: 700;
  height: min(3.04vw, 58.5px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .marche-banner a {
    border-radius: 6.93vw;
    font-size: 3.786vw;
    height: inherit;
    line-height: 1.3;
    padding: 2.13vw 0;
  }
}
.marche-banner a:hover {
  background: #fff;
  color: #fe2301;
}
@media (max-width: 768px) {
  .marche-banner a:hover {
    background: #fe2301;
    color: #fff;
  }
}

/* anim */
.fi {
  opacity: 0;
}
.fi.active {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-filter: blur(0.8rem);
            filter: blur(0.8rem);
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0rem);
            filter: blur(0rem);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-filter: blur(0.8rem);
            filter: blur(0.8rem);
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0rem);
            filter: blur(0rem);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.bi {
  opacity: 0;
}
.bi.active {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes illustanim1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  10% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  15% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes illustanim1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  10% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  15% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes illustanim2 {
  0% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  5% {
    -webkit-transform: translate(0, 2px) rotate(3deg);
            transform: translate(0, 2px) rotate(3deg);
  }
  10% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
            transform: translate(0, 0) rotate(-3deg);
  }
  15% {
    -webkit-transform: translate(3px, 0) rotate(3deg);
            transform: translate(3px, 0) rotate(3deg);
  }
  20% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
}
@keyframes illustanim2 {
  0% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  5% {
    -webkit-transform: translate(0, 2px) rotate(3deg);
            transform: translate(0, 2px) rotate(3deg);
  }
  10% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
            transform: translate(0, 0) rotate(-3deg);
  }
  15% {
    -webkit-transform: translate(3px, 0) rotate(3deg);
            transform: translate(3px, 0) rotate(3deg);
  }
  20% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
}
/* anim */
/********************************************************************************
home
********************************************************************************/
#home {
  /* main */
  /* main */
  /* intro */
  /* intro */
  /* plan */
  /* plan */
  /* other-plan */
  /* other-plan */
  /* plan-content */
  /* plan-content */
  /* about */
  /* about */
  /* illust */
  /* illust */
}
#home #main .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*min-height: 100lvh;*/
  padding: min(6.094vw, 117px) 0 min(5.417vw, 104px);
}
@media (max-width: 768px) {
  #home #main .inner {
    display: block;
    min-height: inherit;
    padding: 38.38vw 0 13.33vw;
    width: 100%;
  }
}
#home #main h1 {
  position: relative;
  width: 36.68vw;
}
@media (max-width: 768px) {
  #home #main h1 {
    margin: 0 10vw 37.46vw;
    width: 80vw;
  }
}
#home #main h1 a {
  background: #ffd91a;
  border: 1px solid #000;
  border-radius: min(0.598vw, 11.5px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.78vw;
  display: block;
  letter-spacing: 0.1em;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  width: min(14.92vw, 286.5px);
}
@media (max-width: 768px) {
  #home #main h1 a {
    border-radius: 3.2vw;
    font-size: 3.46vw;
    margin-top: 2.66vw;
    padding: 0.53vw;
    position: static;
    width: 100%;
  }
}
#home #main h1 a:hover {
  opacity: 0.5;
}
@media (max-width: 768px) {
  #home #main h1 a:hover {
    opacity: 1;
  }
}
#home #main .stamprally-banner {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
  position: absolute;
  right: calc(50% - 18.34vw - min(20.52vw, 394px));
  top: calc(50% + min(0.469vw, 9px));
  width: min(19.14vw, 367.5px);
}
@media (max-width: 768px) {
  #home #main .stamprally-banner {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    position: static;
    margin: 0 -1.375vw;
    width: 102.75vw;
  }
}
#home #main .stamprally-banner a {
  background: #000;
  border: 2px solid #000;
  border-radius: min(1.51vw, 29px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: min(0.729vw, 14px);
  font-weight: 700;
  padding: min(0.938vw, 18px);
  position: absolute;
  bottom: calc(min(0.781vw, 15px) * -1);
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: min(14.92vw, 286.5px);
}
@media (max-width: 768px) {
  #home #main .stamprally-banner a {
    border-radius: 4.8vw;
    font-size: 3.73vw;
    bottom: -3.349vw;
    width: 90%;
  }
}
#home #main .stamprally-banner a:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 768px) {
  #home #main .stamprally-banner a:hover {
    background: #000;
    color: #fff;
  }
}
#home #main .copy {
  position: absolute;
  left: calc(min(4.55vw, 87.5px) * -1);
  top: min(3.385vw, 65px);
  width: min(2.656vw, 51px);
}
#home #main .en {
  position: absolute;
  right: calc(min(3.646vw, 70px) * -1);
  top: min(10.49vw, 201.5px);
  width: min(1.094vw, 21px);
}
@media (max-width: 768px) {
  #home #intro {
    border-bottom: 6px solid #000;
    border-top: 6px solid #000;
    padding: 25.86vw 0 36.53vw;
  }
}
#home #intro .inner {
  border-bottom: 8px solid #000;
  border-top: 8px solid #000;
  padding: min(2.45vw, 47px) 0;
}
@media (max-width: 768px) {
  #home #intro .inner {
    border: none;
    padding: 0;
    width: 89%;
  }
}
#home #intro p {
  font-size: min(1.25vw, 24px);
  font-weight: 700;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 1100px;
  text-align: justify;
  width: 65.5%;
}
@media (max-width: 768px) {
  #home #intro p {
    font-size: 4.26vw;
    line-height: 1.75;
    width: 100%;
  }
}
#home #plan {
  border-bottom: 2px solid #000;
  margin-bottom: min(3.64vw, 70px);
}
@media (max-width: 768px) {
  #home #plan {
    border-bottom: 0;
    margin-bottom: 9.6vw;
  }
}
#home #plan .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  #home #plan .inner {
    display: block;
  }
}
#home #plan .plan-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: min(1.46vw, 28px) 0;
  padding: min(1.04vw, 20px) min(2.5vw, 48px) min(2.6vw, 50px);
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  #home #plan .plan-box {
    border-bottom: 2px solid #000;
    margin: 0;
    padding: 13.33vw 0 8.53vw;
    width: 100%;
  }
}
#home #plan .plan-box:nth-child(odd) {
  border-right: 1px solid #000;
}
@media (max-width: 768px) {
  #home #plan .plan-box:nth-child(odd) {
    border-right: none;
  }
}
#home #plan .plan-box:nth-child(even) {
  border-left: 1px solid #000;
}
@media (max-width: 768px) {
  #home #plan .plan-box:nth-child(even) {
    border-left: none;
  }
}
#home #plan .plan-box:nth-child(-n+2)::before {
  border-bottom: 2px solid #000;
  content: "";
  height: 0;
  position: absolute;
  bottom: calc(min(1.46vw, 28px) * -1);
  width: calc(100% + 1px);
}
@media (max-width: 768px) {
  #home #plan .plan-box:nth-child(-n+2)::before {
    content: none;
  }
}
#home #plan .plan-box:first-child {
  z-index: 1;
}
#home #plan .plan-box:first-child .image {
  position: relative;
}
#home #plan .plan-box:first-child .sub {
  position: absolute;
  right: calc(min(3.59vw, 69px) * -1);
  top: calc(min(1.61vw, 31px) * -1);
  width: min(8.38vw, 161px);
  z-index: 1;
}
@media (max-width: 768px) {
  #home #plan .plan-box:first-child .sub {
    left: -8vw;
    right: inherit;
    top: -3.46vw;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    width: 26.66vw;
  }
}
#home #plan .plan-box:first-child::before {
  left: 0;
}
#home #plan .plan-box:nth-child(2)::before {
  right: 0;
}
@media (max-width: 768px) {
  #home #plan .plan-box:nth-child(3) .image {
    width: 100%;
  }
}
#home #plan .head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: min(5.13vw, 98.5px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: min(2.6vw, 50px);
  text-align: center;
}
@media (max-width: 768px) {
  #home #plan .head {
    height: inherit;
    margin-bottom: 7.2vw;
  }
}
#home #plan h2 {
  font-size: min(1.51vw, 29px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media (max-width: 768px) {
  #home #plan h2 {
    font-size: 5.33vw;
    line-height: 1.8;
  }
}
#home #plan h2 strong {
  background: #ffd91a;
  font-weight: 700;
}
#home #plan .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  #home #plan .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#home #plan .desc-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 5%;
  width: 40%;
}
@media (max-width: 768px) {
  #home #plan .desc-box {
    margin-right: 0;
    width: 100%;
  }
}
#home #plan .desc-box p {
  font-weight: 700;
  line-height: 1.8;
  text-align: justify;
}
@media (max-width: 768px) {
  #home #plan .desc-box p {
    margin-bottom: 8.26vw;
  }
}
#home #plan .marche-banner {
  margin: min(0.52vw, 10px) 0;
  max-width: inherit;
  width: 100%;
}
@media (max-width: 768px) {
  #home #plan .marche-banner {
    margin: 0 0 2.66vw;
  }
}
#home #plan .more-btn {
  max-width: inherit;
  width: 100%;
}
#home #plan .image {
  width: 55%;
}
@media (max-width: 768px) {
  #home #plan .image {
    margin: 0 auto 8.26vw;
    width: 90%;
  }
}
#home #plan .image img {
  border-radius: min(1.04vw, 20px);
}
@media (max-width: 768px) {
  #home #plan .image img {
    border-radius: 4.26vw;
  }
}
#home #other-plan {
  border-bottom: 8px solid #000;
  padding-bottom: min(4.06vw, 78px);
}
@media (max-width: 768px) {
  #home #other-plan {
    border-bottom: 6px solid #000;
    padding-bottom: 15.73vw;
  }
}
#home #other-plan .other-text {
  font-size: min(1.3vw, 25px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: min(3.64vw, 70px);
  text-align: center;
}
@media (max-width: 768px) {
  #home #other-plan .other-text {
    font-size: 4.26vw;
    margin-bottom: 5.86vw;
    text-align: left;
  }
}
#home #other-plan .op-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: min(3.33vw, 64px);
}
@media (max-width: 768px) {
  #home #other-plan .op-wrap {
    display: block;
    margin-bottom: 7.865vw;
  }
}
#home #other-plan .op-box {
  border-radius: min(5.86vw, 112.5px);
  padding: min(1.25vw, 24px) 0 min(1.146vw, 22px);
  text-align: center;
  width: 41%;
}
@media (max-width: 768px) {
  #home #other-plan .op-box {
    border-radius: 10.853vw;
    padding: 6.4vw 0;
    width: 100%;
  }
}
#home #other-plan .sub {
  font-size: min(1.09vw, 21px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  #home #other-plan .sub {
    font-size: 4.26vw;
  }
}
#home #other-plan h2 {
  font-size: min(1.77vw, 34px);
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-bottom: min(0.885vw, 17px);
}
@media (max-width: 768px) {
  #home #other-plan h2 {
    font-size: 5.86vw;
    margin-bottom: 3.46vw;
  }
}
#home #other-plan .desc {
  font-weight: 700;
  line-height: 1.8;
  padding: 0 min(4.92vw, 94.5px);
  text-align: justify;
}
@media (max-width: 768px) {
  #home #other-plan .desc {
    line-height: 1.55;
    padding: 0 6.93vw;
  }
}
#home #other-plan .op1 {
  border: 2px solid #fe2301;
  color: #fe2301;
  margin-right: min(2.7vw, 52px);
}
@media (max-width: 768px) {
  #home #other-plan .op1 {
    border: 1px solid #fe2301;
    margin-bottom: 5.86vw;
    margin-right: 0;
  }
}
#home #other-plan .op2 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  border: 2px solid #012b82;
  color: #012b82;
}
@media (max-width: 768px) {
  #home #other-plan .op2 {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
}
#home #plan-content {
  background: #faf8f0;
  border-bottom: 8px solid #000;
  display: none;
  padding: min(9.74vw, 187px) 0 min(9.16vw, 176px);
}
#home #plan-content .pc-box {
  padding: min(7.03vw, 135px) 0 min(3.23vw, 62px);
}
#home #plan-content .pc-box h3 {
  font-size: min(1.56vw, 30px);
  font-weight: 700;
  letter-spacing: 0.5em;
  margin-bottom: min(0.416vw, 8px);
  text-align: center;
}
#home #plan-content .pc-box h3 span {
  position: relative;
}
#home #plan-content .pc-box h3 span::before, #home #plan-content .pc-box h3 span::after {
  border-radius: 1.5px;
  content: "";
  height: min(2.89vw, 55.5px);
  position: absolute;
  top: 50%;
  width: 3px;
}
#home #plan-content .pc-box h3 span::before {
  left: calc(min(1.56vw, 30px) * -1);
  -webkit-transform: translateY(-50%) rotate(-30deg);
          transform: translateY(-50%) rotate(-30deg);
}
#home #plan-content .pc-box h3 span::after {
  right: calc(min(1.56vw, 30px) * -1);
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
#home #plan-content .pc-box h2 {
  font-size: min(2.97vw, 57px);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: min(1.2vw, 23px);
  text-align: center;
}
#home #plan-content .pc-box .cs-text {
  font-size: min(1.2vw, 23px);
  font-weight: 500;
  text-align: center;
}
#home #plan-content .pc-box:not(:last-child) {
  margin-bottom: min(4.76vw, 91.5px);
}
#home #plan-content .pc1 {
  background: url(../images/top/pc1-back.svg) no-repeat center/contain;
}
#home #plan-content .pc1 h3 {
  color: #008200;
}
#home #plan-content .pc1 h3 span::before,
#home #plan-content .pc1 h3 span::after {
  background: #008200;
}
#home #plan-content .pc1 h2 {
  color: #008200;
}
#home #plan-content .pc2 {
  background: url(../images/top/pc2-back.svg) no-repeat center/contain;
}
#home #plan-content .pc2 h3 {
  color: #fe2301;
}
#home #plan-content .pc2 h3 span::before,
#home #plan-content .pc2 h3 span::after {
  background: #fe2301;
}
#home #plan-content .pc2 h2 {
  color: #fe2301;
}
#home #plan-content .pc3 {
  background: url(../images/top/pc3-back.svg) no-repeat center/contain;
}
#home #plan-content .pc3 h3 {
  color: #012b82;
}
#home #plan-content .pc3 h3 span::before,
#home #plan-content .pc3 h3 span::after {
  background: #012b82;
}
#home #plan-content .pc3 h2 {
  color: #012b82;
}
#home #plan-content .pc4 {
  background: url(../images/top/pc4-back.svg) no-repeat center/contain;
  padding-bottom: min(4.9vw, 94px);
}
#home #plan-content .pc4 h3 {
  color: #000;
  margin-bottom: min(0.9375vw, 18px);
}
#home #plan-content .pc4 h3 span::before,
#home #plan-content .pc4 h3 span::after {
  background: #000;
}
#home #plan-content .pc4 h2 {
  color: #000;
  font-size: min(2.6vw, 50px);
  margin-bottom: min(2.24vw, 43px);
}
#home #plan-content .pc4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  max-width: min(45.83vw, 880px);
}
#home #plan-content .pc4 ul li {
  background: #ffd91a;
  border-radius: min(1.51vw, 29px);
  padding: min(0.625vw, 12px) 0 min(1.3vw, 25px);
  width: 48%;
}
#home #plan-content .pc4 ul li:nth-child(odd) {
  margin-right: 4%;
}
#home #plan-content .pc4 ul li:nth-child(-n+4) {
  margin-bottom: min(1.46vw, 28px);
}
#home #plan-content .pc4 h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: min(1.2vw, 23px);
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: min(3.54vw, 68px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto min(0.677vw, 13px);
  text-align: center;
}
#home #plan-content .pc4 p {
  font-size: min(0.937vw, 18px);
  font-weight: 500;
  text-align: center;
}
#home #about {
  padding: min(7.4vw, 142px) 0 min(10.93vw, 210px);
}
@media (max-width: 768px) {
  #home #about {
    padding: 55.2vw 0 20vw;
  }
}
#home #about .desc {
  font-size: min(1.2vw, 23px);
  font-weight: 700;
  line-height: 2.35;
  margin-bottom: min(7.29vw, 140px);
  text-align: center;
}
@media (max-width: 768px) {
  #home #about .desc {
    font-size: 4.8vw;
    line-height: 1.82;
    margin-bottom: 72.8vw;
    text-align: left;
  }
}
#home #about .desc strong {
  color: #fff;
  font-weight: 700;
  margin: 0 min(0.365vw, 7px);
  padding: 0 min(0.26vw, 5px);
}
#home #about .desc strong.red {
  background: #fe2301;
}
#home #about .desc strong.black {
  background: #000;
}
#home #about .desc strong.green {
  background: #008200;
}
#home #about .desc strong.blue {
  background: #012b82;
}
#home #about .about-copy {
  margin: 0 auto;
  width: min(32.9vw, 631.5px);
}
@media (max-width: 768px) {
  #home #about .about-copy {
    width: 72vw;
  }
}
#home .illust {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  position: absolute;
  z-index: -1;
}
#home .illust1 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  left: calc(50% - 18.34vw - min(20.625vw, 396px));
  top: calc(50% - min(18.17vw, 349px));
  width: min(16.45vw, 316px);
}
@media (max-width: 768px) {
  #home .illust1 {
    left: -5.86vw;
    top: -0.8vw;
    width: 33.72vw;
  }
}
#home .illust1 img {
  -webkit-animation: illustanim1 4.5s infinite forwards;
          animation: illustanim1 4.5s infinite forwards;
}
#home .illust2 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  left: calc(50% - 18.34vw - min(14.06vw, 270px));
  top: calc(50% - min(5.026vw, 96.5px));
  width: min(12.44vw, 239px);
}
@media (max-width: 768px) {
  #home .illust2 {
    left: 27.77vw;
    top: 13.65vw;
    width: 26.84vw;
  }
}
#home .illust3 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
  left: calc(50% - 18.34vw - min(20.07vw, 385.5px));
  top: calc(50% + min(3.49vw, 67px));
  width: min(12.44vw, 239px);
}
@media (max-width: 768px) {
  #home .illust3 {
    left: 65.33vw;
    top: 17vw;
    width: 21.56vw;
  }
}
#home .illust4 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  left: calc(50% - 18.34vw - min(12.68vw, 243.5px));
  top: calc(50% + min(11.82vw, 227px));
  width: min(11.79vw, 226.5px);
}
@media (max-width: 768px) {
  #home .illust4 {
    left: 3.95vw;
    top: 149.14vw;
    width: 26.98vw;
  }
}
#home .illust4 img {
  -webkit-animation: illustanim2 2.5s infinite 1.25s forwards;
          animation: illustanim2 2.5s infinite 1.25s forwards;
}
#home .illust5 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  right: calc(50% - 18.34vw - min(17.5vw, 336px));
  top: calc(50% - min(21.51vw, 413px));
  width: min(12.03vw, 231px);
}
@media (max-width: 768px) {
  #home .illust5 {
    right: 7.03vw;
    top: 153.65vw;
    width: 25.29vw;
  }
}
#home .illust5 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#home .illust6 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  right: calc(50% - 18.34vw - min(12.96vw, 249px));
  top: calc(50% - min(8.906vw, 171px));
  width: min(11.48vw, 220.5px);
}
@media (max-width: 768px) {
  #home .illust6 {
    right: 37.59vw;
    top: 154.07vw;
    width: 23.84vw;
  }
}
#home .illust7 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  right: calc(50% - 18.34vw - min(23.2vw, 445.5px));
  top: calc(50% - min(4.427vw, 85px));
  width: min(8.5vw, 163.5px);
}
@media (max-width: 768px) {
  #home .illust7 {
    right: 26.02vw;
    top: 3vw;
    width: 19.41vw;
  }
}
#home .illust7 img {
  -webkit-animation: illustanim1 4.5s infinite 2.25s forwards;
          animation: illustanim1 4.5s infinite 2.25s forwards;
}
#home .illust8 {
  bottom: calc(min(2.188vw, 42px) * -1);
  left: min(1.979vw, 38px);
  width: min(8.177vw, 157px);
}
#home .illust8 img {
  -webkit-animation: illustanim1 4.5s infinite 4.5s forwards;
          animation: illustanim1 4.5s infinite 4.5s forwards;
}
#home .illust9 {
  bottom: min(3.281vw, 63px);
  right: calc(min(7.865vw, 151px) * -1);
  width: min(17.78vw, 341.5px);
}
@media (max-width: 768px) {
  #home .illust9 {
    bottom: -29.06vw;
    left: 2.66vw;
    right: inherit;
    width: 49.78vw;
  }
}
#home .illust10 {
  bottom: min(20.28vw, 389.5px);
  right: calc(min(6.875vw, 132px) * -1);
  width: min(7.969vw, 153px);
}
#home .illust10 img {
  -webkit-animation: illustanim2 2.5s infinite 1.5s forwards;
          animation: illustanim2 2.5s infinite 1.5s forwards;
}
#home .illust11 {
  left: calc(min(6.95vw, 133.5px) * -1);
  top: calc(min(0.729vw, 14px) * -1);
  width: min(12.42vw, 238.5px);
}
#home .illust11 img {
  -webkit-animation: illustanim1 4.5s infinite forwards;
          animation: illustanim1 4.5s infinite forwards;
}
#home .illust12 {
  left: min(5.573vw, 107px);
  top: calc(min(5.729vw, 110px) * -1);
  width: min(8.906vw, 171px);
}
#home .illust12 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#home .illust13 {
  left: min(11.82vw, 227px);
  top: min(3.333vw, 64px);
  width: min(8.83vw, 169.5px);
}
#home .illust14 {
  right: min(2.78vw, 53.5px);
  top: calc(min(10.33vw, 198.5px) * -1);
  width: min(14.19vw, 272.5px);
}
#home .illust14 img {
  -webkit-animation: illustanim1 4.5s infinite 2.25s forwards;
          animation: illustanim1 4.5s infinite 2.25s forwards;
}
#home .illust15 {
  left: min(4.34vw, 83.5px);
  top: calc(min(1.536vw, 29.5px) * -1);
  width: min(9.427vw, 181px);
}
#home .illust16 {
  left: min(13.93vw, 267.5px);
  top: calc(min(5.365vw, 103px) * -1);
  width: min(9.219vw, 177px);
}
#home .illust16 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#home .illust17 {
  right: calc(min(11.35vw, 218px) * -1);
  top: min(23.9vw, 459px);
  width: min(20.65vw, 396.5px);
}
#home .illust17 img {
  -webkit-animation: illustanim1 4.5s infinite 2.25s forwards;
          animation: illustanim1 4.5s infinite 2.25s forwards;
}
#home .illust18 {
  left: calc(min(2.84vw, 54.5px) * -1);
  top: min(42vw, 806.5px);
  width: min(17.9vw, 344px);
}
#home .illust18 span {
  display: block;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#home .illust18 img {
  -webkit-animation: illustanim2 2.5s infinite 1.25s forwards;
          animation: illustanim2 2.5s infinite 1.25s forwards;
}
#home .illust19 {
  bottom: min(34.08vw, 654.5px);
  right: calc(min(0.2vw, 4px) * -1);
  width: min(18.64vw, 358px);
}
#home .illust19 img {
  -webkit-animation: illustanim1 4.5s infinite forwards;
          animation: illustanim1 4.5s infinite forwards;
}
#home .illust20 {
  bottom: min(2.63vw, 50.5px);
  left: calc(min(3.594vw, 69px) * -1);
  width: min(16.58vw, 318.5px);
}
#home .illust20 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#home .illust21 {
  left: min(4.271vw, 82px);
  top: min(7.708vw, 148px);
  width: min(15.44vw, 296.5px);
}
#home .illust21 img {
  -webkit-animation: illustanim1 4.5s infinite 2.5s forwards;
          animation: illustanim1 4.5s infinite 2.5s forwards;
}
#home .illust22 {
  left: calc(min(6.771vw, 130px) * -1);
  top: min(45.07vw, 865.5px);
  width: min(27.21vw, 522.5px);
}
#home .illust23 {
  left: min(7.656vw, 147px);
  top: min(62.34vw, 1197px);
  width: min(13.46vw, 258.5px);
}
#home .illust23 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#home .illust24 {
  right: min(7.292vw, 140px);
  top: min(17.36vw, 333.5px);
  width: min(11.43vw, 219.5px);
}
#home .illust24 img {
  -webkit-animation: illustanim2 2.5s infinite 1.5s forwards;
          animation: illustanim2 2.5s infinite 1.5s forwards;
}
#home .illust25 {
  right: min(1.198vw, 23px);
  top: min(40.2vw, 772px);
  width: min(16.61vw, 319px);
}
@media (max-width: 768px) {
  #home .illust25 {
    bottom: 60.91vw;
    left: 10.05vw;
    right: inherit;
    top: inherit;
    width: 36.45vw;
  }
}
#home .illust25 img {
  -webkit-animation: illustanim1 4.5s infinite forwards;
          animation: illustanim1 4.5s infinite forwards;
}
#home .illust26 {
  right: min(3.41vw, 65.5px);
  top: min(73.54vw, 1412px);
  width: min(10.86vw, 208.5px);
}
@media (max-width: 768px) {
  #home .illust26 {
    right: -11.7vw;
    top: -43.86vw;
    width: 38.89vw;
  }
}
#home .spillust1 {
  left: 11.616vw;
  top: -32.16vw;
  width: 18.64vw;
}
#home .spillust1 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#home .spillust2 {
  right: 14.256vw;
  top: -21.248vw;
  width: 23.84vw;
}
#home .spillust3 {
  bottom: -32.44vw;
  right: 1.156vw;
  width: 21.248vw;
}
#home .spillust3 img {
  -webkit-animation: illustanim1 4.5s infinite 2.5s forwards;
          animation: illustanim1 4.5s infinite 2.5s forwards;
}
#home .spillust4 {
  left: -14.24vw;
  top: -43.78vw;
  width: 26.99vw;
}
#home .spillust4 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#home .spillust5 {
  left: 25.47vw;
  top: -37.68vw;
  width: 27.548vw;
}
#home .spillust5 img {
  -webkit-animation: illustanim1 4.5s infinite forwards;
          animation: illustanim1 4.5s infinite forwards;
}
#home .spillust6 {
  bottom: 66vw;
  right: 0;
  width: 36vw;
}
#home .spillust6 img {
  -webkit-animation: illustanim2 2.5s infinite 1.15s forwards;
          animation: illustanim2 2.5s infinite 1.15s forwards;
}

/* booths-list */
#booths-list {
  border-bottom: 8px solid #000;
  padding: min(7.81vw, 150px) 0 min(8.59vw, 165px);
}
@media (max-width: 768px) {
  #booths-list {
    border-bottom: 6px solid #000;
    padding: 13.68vw 0 12.26vw;
  }
}
#booths-list .head-box {
  margin-bottom: min(5.28vw, 101.5px);
}
@media (max-width: 768px) {
  #booths-list .head-box {
    margin-bottom: 11vw;
  }
}
#booths-list h2 {
  margin: 0 auto min(1.4vw, 27px);
  width: min(31.43vw, 603.5px);
}
@media (max-width: 768px) {
  #booths-list h2 {
    margin: 0 auto 5.33vw;
    width: 84.1vw;
  }
}
#booths-list h3 {
  margin-bottom: min(3.125vw, 60px);
  text-align: center;
}
@media (max-width: 768px) {
  #booths-list h3 {
    margin-bottom: 6.13vw;
  }
}
#booths-list h3 span {
  display: inline-block;
  font-size: min(1.719vw, 33px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.05;
  padding: 0 min(3.646vw, 70px);
  position: relative;
}
@media (max-width: 768px) {
  #booths-list h3 span {
    font-size: 4.8vw;
    padding: 0 9.06vw;
  }
}
#booths-list h3 span::before, #booths-list h3 span::after {
  background: url(../images/common/booths-list-head-arrow.svg) no-repeat center/contain;
  content: "";
  height: min(3.802vw, 73px);
  position: absolute;
  top: 50%;
  width: min(1.094vw, 21px);
}
@media (max-width: 768px) {
  #booths-list h3 span::before, #booths-list h3 span::after {
    height: 10.4vw;
    width: 2.93vw;
  }
}
#booths-list h3 span::before {
  left: 0;
  -webkit-transform: scale(-1, 1) translate(0, -50%);
          transform: scale(-1, 1) translate(0, -50%);
}
#booths-list h3 span::after {
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
#booths-list h3 span strong {
  color: #fe2301;
  font-weight: 700;
  font-size: min(1.094vw, 21px);
}
@media (max-width: 768px) {
  #booths-list h3 span strong {
    font-size: 3.2vw;
  }
}
#booths-list .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: min(3.281vw, 63px);
}
@media (max-width: 768px) {
  #booths-list .category-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    margin-bottom: 7.2vw;
  }
}
#booths-list .category-list li {
  background: #000;
  border-radius: min(0.938vw, 18px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: min(0.417vw, 8px);
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: min(7.969vw, 153px);
}
@media (max-width: 768px) {
  #booths-list .category-list li {
    border-radius: 3.46vw;
    font-size: 3.73vw;
    margin-bottom: 4vw;
    padding: 0.8vw;
    width: 32.6%;
  }
}
#booths-list .category-list li:not(:last-child) {
  margin-right: min(0.26vw, 5px);
}
@media (max-width: 768px) {
  #booths-list .category-list li:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  #booths-list .category-list li:not(:nth-child(3n)) {
    margin-right: 1.1%;
  }
}
#booths-list .category-list li:hover {
  opacity: 0.75;
}
@media (max-width: 768px) {
  #booths-list .category-list li:hover {
    opacity: 1;
  }
}
#booths-list .category-list .food-truck, #booths-list .category.food-truck {
  background: #ed6c00;
}
#booths-list .category-list .restaurant, #booths-list .category.restaurant {
  background: #c90080;
}
#booths-list .category-list .bakery-sweets, #booths-list .category.bakery-sweets {
  background: #93542a;
}
#booths-list .category-list .vegetables-fruits, #booths-list .category.vegetables-fruits {
  background: #009400;
}
#booths-list .category-list .processed-foods, #booths-list .category.processed-foods {
  background: #004098;
}
#booths-list .category-list .alcohol, #booths-list .category.alcohol {
  background: #501b86;
}
#booths-list .category-list .marine, #booths-list .category.marine {
  background: #0077b6;
}
#booths-list .category-list .others, #booths-list .category.others {
  background: #009fa8;
}
#booths-list .list-wrap {
  margin-bottom: min(4.01vw, 77px);
}
#booths-list .booths-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  #booths-list .booths-list {
    display: block;
  }
}
#booths-list .booths-list > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 min(1.667vw, 32px);
  width: 25%;
}
@media (max-width: 768px) {
  #booths-list .booths-list > li {
    border-top: 2px solid #000;
    padding: 8.26vw 0 14.66vw;
    width: 100%;
  }
}
#booths-list .booths-list > li:not(:nth-child(4n)) {
  border-right: 2px solid #000;
}
@media (max-width: 768px) {
  #booths-list .booths-list > li:not(:nth-child(4n)) {
    border-right: none;
  }
}
#booths-list .booths-list > li:nth-child(n+5) {
  margin-top: min(4.688vw, 90px);
  position: relative;
}
@media (max-width: 768px) {
  #booths-list .booths-list > li:nth-child(n+5) {
    display: none;
  }
}
#booths-list .booths-list > li:nth-child(n+5)::before {
  border-bottom: 2px solid #000;
  content: "";
  height: 0;
  position: absolute;
  top: calc(min(2.344vw, 45px) * -1);
  left: 0;
  width: calc(100% + 2px);
}
#booths-list .booths-list > li .image {
  margin-bottom: min(1.771vw, 34px);
}
@media (max-width: 768px) {
  #booths-list .booths-list > li .image {
    margin-bottom: 6.13vw;
  }
}
#booths-list .booths-list > li .image img {
  height: min(12.8vw, 246px);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  #booths-list .booths-list > li .image img {
    height: 62.616vw;
  }
}
#booths-list .booths-list > li .mc-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: min(0.781vw, 15px);
}
@media (max-width: 768px) {
  #booths-list .booths-list > li .mc-list {
    margin-bottom: 4vw;
  }
}
#booths-list .booths-list > li .municipality {
  font-size: min(0.99vw, 19px);
  font-weight: 700;
  margin-bottom: min(0.573vw, 11px);
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  #booths-list .booths-list > li .municipality {
    font-size: 5.06vw;
    margin-bottom: 2.93vw;
  }
}
#booths-list .booths-list > li .municipality::before {
  color: #b4b488;
  content: "●";
}
#booths-list .booths-list > li .category {
  border-radius: min(0.781vw, 15px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: min(0.677vw, 13px);
  font-weight: 700;
  margin-left: min(0.99vw, 19px);
  padding: min(0.26vw, 5px);
  text-align: center;
  width: min(6.354vw, 122px);
}
@media (max-width: 768px) {
  #booths-list .booths-list > li .category {
    border-radius: 3.73vw;
    font-size: 3.73vw;
    margin-left: 5.06vw;
    padding: 1.06vw;
    width: 32.53vw;
  }
}
#booths-list .booths-list > li .category + .category {
  margin-left: min(0.4vw, 8px);
}
@media (max-width: 768px) {
  #booths-list .booths-list > li .category + .category {
    margin-left: 2vw;
  }
}
#booths-list .booths-list > li .booth-title {
  font-size: min(1.458vw, 28px);
  font-weight: 700;
  margin-bottom: min(0.625vw, 12px);
}
@media (max-width: 768px) {
  #booths-list .booths-list > li .booth-title {
    font-size: 7.46vw;
    margin-bottom: 4vw;
  }
}
#booths-list .booths-list > li .desc {
  font-weight: 700;
  line-height: 1.8;
  text-align: justify;
}
#booths-list .booths-list > li.none {
  border-right: none;
  text-align: center;
  width: 100%;
}
#booths-list .booths-list.hide {
  display: none;
}

/* booths-list */
/********************************************************************************
booths-list-page
********************************************************************************/
.booths-list-page #booths-list {
  border-bottom: none;
  padding-bottom: min(10.93vw, 210px);
}
@media (max-width: 768px) {
  .booths-list-page #booths-list {
    padding-bottom: 20vw;
  }
}
.booths-list-page #booths-list h3 span {
  display: inline-block;
}
.booths-list-page #booths-list .category-list li {
  padding: 0;
}
.booths-list-page #booths-list .category-list li a {
  color: #fff;
  display: block;
  padding: min(0.417vw, 8px);
}
@media (max-width: 768px) {
  .booths-list-page #booths-list .category-list li a {
    padding: 0.8vw;
  }
}
@media (max-width: 768px) {
  .booths-list-page #booths-list .booths-list > li:nth-child(n+5) {
    display: block;
    margin-top: 0;
  }
  .booths-list-page #booths-list .booths-list > li:nth-child(n+5)::before {
    content: none;
  }
}

.pagenation {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: min(4.427vw, 85px);
}
@media (max-width: 768px) {
  .pagenation {
    margin-top: 0;
  }
}
.pagenation .page-numbers {
  font-size: min(0.99vw, 19px);
}
@media (max-width: 768px) {
  .pagenation .page-numbers {
    font-size: 3.73vw;
  }
}
.pagenation .page-numbers:not(.next):not(.prev) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: min(2.6vw, 50px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(2.6vw, 50px);
}
@media (max-width: 768px) {
  .pagenation .page-numbers:not(.next):not(.prev) {
    height: 8vw;
    width: 8vw;
  }
}
.pagenation .page-numbers:not(.next):not(.prev):hover {
  background: #000;
  color: #fff;
}
@media (max-width: 768px) {
  .pagenation .page-numbers:not(.next):not(.prev):hover {
    background: #fff;
    color: #000;
  }
}
.pagenation .page-numbers:not(:last-child) {
  margin-right: min(0.885vw, 17px);
}
@media (max-width: 768px) {
  .pagenation .page-numbers:not(:last-child) {
    margin-right: 2.66vw;
  }
}
.pagenation .page-numbers.current {
  background: #000;
  color: #fff;
}
.pagenation .next, .pagenation .prev {
  padding: 5px;
}
.pagenation .next:hover {
  -webkit-transform: translate(5px, 0);
          transform: translate(5px, 0);
}
@media (max-width: 768px) {
  .pagenation .next:hover {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.pagenation .prev:hover {
  -webkit-transform: translate(-5px, 0);
          transform: translate(-5px, 0);
}
@media (max-width: 768px) {
  .pagenation .prev:hover {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

/********************************************************************************
stamprally-page
********************************************************************************/
.section-head {
  text-align: center;
}
.section-head span {
  font-size: min(2.24vw, 43px);
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}
@media (max-width: 768px) {
  .section-head span {
    font-size: 6.66vw;
    letter-spacing: 0;
    padding: 0 8.4vw;
  }
}
.section-head span::before {
  content: "";
  height: min(3.594vw, 69px);
  position: absolute;
  right: calc(min(3.49vw, 67px) * -1);
  top: calc(min(1.927vw, 37px) * -1);
  width: min(3.073vw, 59px);
}
@media (max-width: 768px) {
  .section-head span::before {
    height: 9.78vw;
    right: 0;
    top: -6vw;
    width: 8.4vw;
  }
}
.section-head strong {
  font-weight: 700;
}

#stamprally-page {
  /* main */
  /* main */
  /* participate */
  /* participate */
  /* lineup */
  /* lineup */
  /* faq */
  /* faq */
  /* contact */
  /* contact */
}
#stamprally-page #main {
  margin-bottom: min(11.46vw, 220px);
  padding-top: min(5.208vw, 100px);
  position: relative;
}
@media (max-width: 768px) {
  #stamprally-page #main {
    padding-top: 6.13vw;
  }
}
#stamprally-page #main .title-box {
  margin: 0 auto min(3.281vw, 63px);
  width: min(56.17vw, 1078.5px);
}
@media (max-width: 768px) {
  #stamprally-page #main .title-box {
    width: 91vw;
  }
}
#stamprally-page #main .period {
  margin: 0 auto min(7.031vw, 135px);
  width: min(32vw, 614.5px);
}
@media (max-width: 768px) {
  #stamprally-page #main .period {
    width: 76.9vw;
  }
}
#stamprally-page #main .intro-text {
  font-weight: 700;
  font-size: min(1.302vw, 25px);
  line-height: 1.85;
  margin: 0 auto;
  text-align: justify;
  width: min(43.645vw, 838px);
}
@media (max-width: 768px) {
  #stamprally-page #main .intro-text {
    font-size: 3.73vw;
    width: 100%;
  }
}
#stamprally-page #main::before {
  background: url(../images/stamprally/main-back.png) no-repeat center top/contain;
  content: "";
  height: 68.96vw;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
}
@media (max-width: 768px) {
  #stamprally-page #main::before {
    background: url(../images/stamprally/main-back-sp.png) no-repeat center top/contain;
    height: 149vw;
  }
}
#stamprally-page #participate {
  margin-bottom: min(12.86vw, 247px);
  position: relative;
}
@media (max-width: 768px) {
  #stamprally-page #participate {
    margin-bottom: 26.66vw;
  }
}
#stamprally-page #participate .inner {
  width: min(57.29vw, 1100px);
}
@media (max-width: 768px) {
  #stamprally-page #participate .inner {
    width: 90%;
  }
}
#stamprally-page #participate .stamp {
  position: absolute;
  right: calc(min(3.75vw, 72px) * -1);
  top: calc(min(1.927vw, 37px) * -1);
  width: min(16.458vw, 316px);
  z-index: 3;
}
@media (max-width: 768px) {
  #stamprally-page #participate .stamp {
    margin: 0 auto 7.2vw;
    position: static;
    width: 37.146vw;
  }
}
#stamprally-page #participate .section-head {
  margin-bottom: min(4.427vw, 85px);
}
#stamprally-page #participate .section-head span::before {
  background: url(../images/stamprally/participate-head-deco.svg) no-repeat center/contain;
}
#stamprally-page #participate .section-head strong {
  color: #008400;
}
#stamprally-page #participate .participate-list {
  padding-bottom: min(3.49vw, 67px);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #stamprally-page #participate .participate-list {
    padding-bottom: 5.426vw;
  }
}
#stamprally-page #participate .participate-list li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ff0000;
  border-radius: min(3.125vw, 60px);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: min(1.146vw, 22px) min(2.5vw, 48px);
}
@media (max-width: 768px) {
  #stamprally-page #participate .participate-list li {
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    border-radius: 8.13vw;
    padding: 2.66vw 6.13vw;
  }
}
#stamprally-page #participate .participate-list li:not(:last-child) {
  margin-bottom: min(3.125vw, 60px);
}
#stamprally-page #participate .participate-list .num {
  border-right: 1px solid #fff;
  font-size: min(2.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-right: min(1.562vw, 30px);
  padding-right: min(1.719vw, 33px);
}
@media (max-width: 768px) {
  #stamprally-page #participate .participate-list .num {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 5.73vw;
    margin-right: 3.46vw;
    padding-right: 4vw;
  }
}
#stamprally-page #participate .participate-list .desc {
  font-size: min(1.354vw, 26px);
  font-weight: 700;
}
@media (max-width: 768px) {
  #stamprally-page #participate .participate-list .desc {
    font-size: 4.26vw;
    line-height: 1.4;
  }
}
#stamprally-page #participate .participate-list .desc small {
  font-size: min(1.042vw, 20px);
}
@media (max-width: 768px) {
  #stamprally-page #participate .participate-list .desc small {
    font-size: 4.26vw;
  }
}
#stamprally-page #participate .participate-list .desc strong {
  color: #ffd700;
  font-weight: 700;
}
#stamprally-page #participate .participate-list .desc a {
  color: #fff;
  text-decoration: underline;
}
#stamprally-page #participate .participate-list::before {
  border-left: 4px solid #000;
  content: "";
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  #stamprally-page #participate .participate-list::before {
    border-left: 1px solid #000;
  }
}
#stamprally-page #participate h3 {
  background: #000;
  border-radius: min(1.146vw, 22px);
  color: #fff;
  font-size: min(1.51vw, 29px);
  font-weight: 700;
  margin: 0 auto min(3.229vw, 62px);
  padding-bottom: min(0.104vw, 2px);
  position: relative;
  text-align: center;
  width: min(12.42vw, 268.5px);
  z-index: 1;
}
@media (max-width: 768px) {
  #stamprally-page #participate h3 {
    border-radius: 2.82vw;
    font-size: 3.73vw;
    margin: 0 auto 5.33vw;
    padding-bottom: 1px;
    width: 34.4vw;
  }
}
#stamprally-page #participate h3::before {
  background: url(../images/stamprally/participate-line.svg) no-repeat center/contain;
  content: "";
  height: min(4.375vw, 84px);
  position: absolute;
  left: 50%;
  top: min(1.12vw, 21.5px);
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: min(31.4vw, 603px);
  z-index: -1;
}
@media (max-width: 768px) {
  #stamprally-page #participate h3::before {
    height: 8.38vw;
    top: 2.6vw;
    width: 50.65vw;
  }
}
#stamprally-page #participate .apply-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#stamprally-page #participate .apply-list li {
  background: #fff;
  border-radius: min(8.125vw, 156px);
  padding: min(2.865vw, 55px) 0 min(1.719vw, 33px);
  width: 47.7%;
}
@media (max-width: 768px) {
  #stamprally-page #participate .apply-list li {
    border-radius: 4.4vw;
  }
}
#stamprally-page #participate .apply-list li h4 {
  font-weight: 700;
  margin-bottom: min(1.719vw, 33px);
  text-align: center;
}
#stamprally-page #participate .apply-list li img {
  display: block;
  margin: 0 auto;
  width: min(7.396vw, 142px);
}
@media (max-width: 768px) {
  #stamprally-page #participate .apply-list li img {
    width: 17.8vw;
  }
}
#stamprally-page #participate .apply-list .apply1 {
  border: 10px solid #008400;
  color: #008400;
  margin-right: 4.6%;
}
@media (max-width: 768px) {
  #stamprally-page #participate .apply-list .apply1 {
    border: 3px solid #008400;
  }
}
#stamprally-page #participate .apply-list .apply1 h4 {
  font-size: min(1.719vw, 33px);
  line-height: 1.65;
}
@media (max-width: 768px) {
  #stamprally-page #participate .apply-list .apply1 h4 {
    font-size: 5.33vw;
    line-height: 1.4;
  }
}
#stamprally-page #participate .apply-list .apply1 h4 small {
  display: block;
  font-size: min(1.042vw, 20px);
  line-height: 1.5;
}
@media (max-width: 768px) {
  #stamprally-page #participate .apply-list .apply1 h4 small {
    font-size: 3.73vw;
    line-height: 1.35;
  }
}
#stamprally-page #participate .apply-list .apply2 {
  border: 10px solid #002c87;
  color: #002c87;
}
@media (max-width: 768px) {
  #stamprally-page #participate .apply-list .apply2 {
    border: 3px solid #002c87;
  }
}
#stamprally-page #participate .apply-list .apply2 h4 {
  font-size: min(1.51vw, 29px);
}
@media (max-width: 768px) {
  #stamprally-page #participate .apply-list .apply2 h4 {
    font-size: 4vw;
    padding: 0 2.66vw;
    text-align: justify;
  }
}
#stamprally-page #participate::before {
  background: url(../images/stamprally/participate-deco.svg) no-repeat center/contain;
  content: "";
  height: min(70.08vw, 1345.5px);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(70.08vw, 1345.5px);
}
@media (max-width: 768px) {
  #stamprally-page #participate::before {
    height: 175.3vw;
    top: 56%;
    width: 175.3vw;
  }
}
#stamprally-page #lineup {
  border-bottom: 8px solid #000;
  padding-bottom: min(5.573vw, 107px);
  text-align: center;
}
@media (max-width: 768px) {
  #stamprally-page #lineup {
    padding-bottom: 11.46vw;
  }
}
#stamprally-page #lineup .inner {
  width: min(57.29vw, 1100px);
}
@media (max-width: 768px) {
  #stamprally-page #lineup .inner {
    width: 90%;
  }
}
#stamprally-page #lineup .section-head {
  margin-bottom: min(10vw, 192px);
}
@media (max-width: 768px) {
  #stamprally-page #lineup .section-head {
    margin-bottom: 37.33vw;
  }
}
#stamprally-page #lineup .section-head span::before {
  background: url(../images/stamprally/lineup-head-deco.svg) no-repeat center/contain;
}
#stamprally-page #lineup .section-head strong {
  color: #002c87;
}
#stamprally-page #lineup .lineup-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: min(2.24vw, 43px);
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list {
    display: block;
    margin-bottom: 5.33vw;
  }
}
#stamprally-page #lineup .lineup-list li {
  border-radius: min(2.24vw, 43px);
  font-weight: 700;
  padding: min(1.406vw, 27px) min(0.729vw, 14px) min(1.302vw, 25px);
  position: relative;
  width: 31.5%;
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list li {
    border-radius: 11.2vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 7.46vw 2.4vw 6.4vw;
    width: 100%;
  }
}
#stamprally-page #lineup .lineup-list li:not(:last-child) {
  margin-right: 2.75%;
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list li:not(:last-child) {
    margin-bottom: 37.6vw;
    margin-right: 0;
  }
}
#stamprally-page #lineup .lineup-list .prize {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: min(1.458vw, 28px);
  height: min(7.42vw, 142.5px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.027em;
  padding-top: min(0.26vw, 5px);
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(7.42vw, 142.5px);
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list .prize {
    font-size: 7.2vw;
    height: 36.7vw;
    padding-top: 2.13vw;
    width: 36.7vw;
  }
}
#stamprally-page #lineup .lineup-list .prize strong {
  font-size: min(3.125vw, 60px);
  font-weight: 700;
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list .prize strong {
    font-size: 15.45vw;
  }
}
#stamprally-page #lineup .lineup-list .prize::before {
  background: url(../images/stamprally/lineup-prize-deco.svg) no-repeat center/contain;
  content: "";
  height: min(2.526vw, 48.5px);
  position: absolute;
  left: 50%;
  top: calc(min(2.188vw, 42px) * -1);
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: min(3.46vw, 66.5px);
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list .prize::before {
    height: 12.5vw;
    top: -10.85vw;
    width: 17.168vw;
  }
}
#stamprally-page #lineup .lineup-list .nop {
  color: #fff;
  font-size: min(0.99vw, 19px);
  line-height: 1;
  margin-bottom: min(1.354vw, 26px);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list .nop {
    font-size: 4.93vw;
    margin-bottom: 5.86vw;
  }
}
#stamprally-page #lineup .lineup-list .nop strong {
  font-size: min(2.448vw, 47px);
  font-weight: 700;
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list .nop strong {
    font-size: 12vw;
  }
}
#stamprally-page #lineup .lineup-list h3 {
  background: #fff;
  border-radius: min(1.198vw, 23px);
  font-size: min(1.69vw, 32.5px);
  line-height: 1.35;
  margin-bottom: min(0.312vw, 6px);
  padding: min(0.781vw, 15px);
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list h3 {
    border-radius: 5.93vw;
    font-size: 8.394vw;
    margin-bottom: 2.66vw;
    padding: 4vw;
  }
}
#stamprally-page #lineup .lineup-list h3 small {
  display: block;
  font-size: min(1.25vw, 24px);
  margin-top: min(0.312vw, 6px);
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list h3 small {
    font-size: 6.13vw;
    margin-top: 1.33vw;
  }
}
#stamprally-page #lineup .lineup-list .nos {
  color: #fff;
  font-size: min(0.99vw, 19px);
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list .nos {
    font-size: 4.93vw;
  }
}
#stamprally-page #lineup .lineup-list .nos strong {
  color: #ffd700;
  font-size: min(2.63vw, 50.5px);
  font-weight: 700;
}
@media (max-width: 768px) {
  #stamprally-page #lineup .lineup-list .nos strong {
    font-size: 13.04vw;
  }
}
#stamprally-page #lineup .lineup-list .lineup1 {
  background: #ff0000;
}
#stamprally-page #lineup .lineup-list .lineup1 .prize {
  background: #ff0000;
}
#stamprally-page #lineup .lineup-list .lineup1 h3 {
  color: #ff0000;
}
#stamprally-page #lineup .lineup-list .lineup2 {
  background: #008400;
}
#stamprally-page #lineup .lineup-list .lineup2 .prize {
  background: #008400;
}
#stamprally-page #lineup .lineup-list .lineup2 h3 {
  color: #008400;
}
#stamprally-page #lineup .lineup-list .lineup3 {
  background: #002c87;
}
#stamprally-page #lineup .lineup-list .lineup3 .prize {
  background: #002c87;
}
#stamprally-page #lineup .lineup-list .lineup3 h3 {
  color: #002c87;
}
#stamprally-page #lineup .note {
  display: inline-block;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}
#stamprally-page #faq {
  background: #f9f7ee;
  border-bottom: 8px solid #000;
  padding: min(7.448vw, 143px) 0 min(6.406vw, 123px);
}
@media (max-width: 768px) {
  #stamprally-page #faq {
    padding: 14.66vw 0 11.2vw;
  }
}
#stamprally-page #faq .inner {
  width: min(43.64vw, 838px);
}
@media (max-width: 768px) {
  #stamprally-page #faq .inner {
    width: 90%;
  }
}
#stamprally-page #faq .section-head {
  margin-bottom: min(3.906vw, 75px);
}
@media (max-width: 768px) {
  #stamprally-page #faq .section-head {
    margin-bottom: 8.8vw;
  }
}
#stamprally-page #faq .section-head span::before {
  background: url(../images/stamprally/faq-head-deco.svg) no-repeat center/contain;
}
#stamprally-page #faq .section-head strong {
  color: #ff0000;
}
#stamprally-page #faq .faq-list li {
  background: #fff;
  border: 3px solid #008400;
  border-radius: min(1.823vw, 35px);
  padding: min(0.99vw, 19px) min(2.083vw, 40px);
}
@media (max-width: 768px) {
  #stamprally-page #faq .faq-list li {
    border-radius: 12vw;
    padding: 0;
  }
}
#stamprally-page #faq .faq-list li:not(:last-child) {
  margin-bottom: min(1.146vw, 22px);
}
@media (max-width: 768px) {
  #stamprally-page #faq .faq-list li:not(:last-child) {
    margin-bottom: 4.8vw;
  }
}
#stamprally-page #faq .faq-list h5 {
  color: #008400;
  cursor: pointer;
  font-size: min(1.094vw, 21px);
  font-weight: 700;
  padding-left: min(2.63vw, 50.5px);
  position: relative;
}
@media (max-width: 768px) {
  #stamprally-page #faq .faq-list h5 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 4.8vw;
    height: 22.93vw;
    padding: 0 17.33vw 0 14.66vw;
  }
}
#stamprally-page #faq .faq-list h5 span {
  font-size: min(1.562vw, 30px);
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (max-width: 768px) {
  #stamprally-page #faq .faq-list h5 span {
    font-size: 6.93vw;
    left: 4.53vw;
  }
}
#stamprally-page #faq .faq-list h5::before, #stamprally-page #faq .faq-list h5::after {
  background: #008400;
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  width: min(1.094vw, 21px);
}
@media (max-width: 768px) {
  #stamprally-page #faq .faq-list h5::before, #stamprally-page #faq .faq-list h5::after {
    right: 4vw;
    width: 5.6vw;
  }
}
#stamprally-page #faq .faq-list h5::before {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#stamprally-page #faq .faq-list h5::after {
  -webkit-transform: translate(-50%, 0) rotate(90deg);
          transform: translate(-50%, 0) rotate(90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
#stamprally-page #faq .faq-list h5.open::before {
  opacity: 0;
}
#stamprally-page #faq .faq-list h5.open::after {
  -webkit-transform: translate(-50%, 0) rotate(180deg);
          transform: translate(-50%, 0) rotate(180deg);
}
#stamprally-page #faq .faq-list p {
  display: none;
  font-size: min(0.938vw, 18px);
  line-height: 1.6;
  padding-left: min(2.63vw, 50.5px);
  margin-top: min(1.667vw, 32px);
  position: relative;
}
@media (max-width: 768px) {
  #stamprally-page #faq .faq-list p {
    font-size: 4vw;
    padding: 0 5.06vw 5.33vw 14.66vw;
  }
}
#stamprally-page #faq .faq-list p span {
  color: #008400;
  font-size: min(1.562vw, 30px);
  font-weight: 500;
  position: absolute;
  left: 0;
  top: calc(min(0.417vw, 8px) * -1);
}
@media (max-width: 768px) {
  #stamprally-page #faq .faq-list p span {
    font-size: 6.93vw;
    left: 4.53vw;
    top: -2.13vw;
  }
}
#stamprally-page #contact {
  padding: min(8.229vw, 158px) 0 min(8.854vw, 170px);
}
@media (max-width: 768px) {
  #stamprally-page #contact {
    padding: 17.33vw 0 22.33vw;
  }
}
#stamprally-page #contact .inner {
  width: min(31.77vw, 610px);
}
@media (max-width: 768px) {
  #stamprally-page #contact .inner {
    width: 72%;
  }
}
#stamprally-page #contact .section-head {
  margin-bottom: min(2.604vw, 50px);
}
@media (max-width: 768px) {
  #stamprally-page #contact .section-head {
    margin-bottom: 5.06vw;
  }
}
#stamprally-page #contact .section-head span::before {
  background: url(../images/stamprally/contact-head-deco.svg) no-repeat center/contain;
}
#stamprally-page #contact .section-head strong {
  color: #002c87;
}
#stamprally-page #contact p {
  font-size: min(1.042vw, 20px);
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #stamprally-page #contact p {
    font-size: 3.73vw;
    line-height: 1.7;
  }
}
#stamprally-page #contact p a {
  text-decoration: underline;
}
#stamprally-page .illust {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  position: absolute;
  z-index: -1;
}
#stamprally-page .illust1 {
  left: calc(min(16.3vw, 313px) * -1);
  top: calc(min(12.24vw, 235px) * -1);
  width: min(13.62vw, 261.5px);
}
#stamprally-page .illust1 img {
  -webkit-animation: illustanim2 2.5s infinite 1.25s forwards;
          animation: illustanim2 2.5s infinite 1.25s forwards;
}
#stamprally-page .illust2 {
  bottom: min(1.927vw, 37px);
  left: calc(min(18.17vw, 349px) * -1);
  width: min(15.18vw, 291.5px);
}
#stamprally-page .illust2 span {
  display: block;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#stamprally-page .illust2 img {
  -webkit-animation: illustanim1 4.5s infinite 2.25s forwards;
          animation: illustanim1 4.5s infinite 2.25s forwards;
}
#stamprally-page .illust3 {
  right: calc(min(26.46vw, 508px) * -1);
  top: calc(min(10.94vw, 210px) * -1);
  width: min(28vw, 536.5px);
}
#stamprally-page .illust4 {
  bottom: min(12.92vw, 248px);
  right: calc(min(24.22vw, 465px) * -1);
  width: min(15.86vw, 304.5px);
}
#stamprally-page .illust5 {
  bottom: min(3.281vw, 63px);
  right: calc(min(24.22vw, 360.5px) * -1);
  width: min(18.77vw, 304.5px);
}
#stamprally-page .illust5 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#stamprally-page .illust6 {
  left: calc(min(23.07vw, 443px) * -1);
  top: min(0.729vw, 14px);
  width: min(14.19vw, 272.5px);
}
#stamprally-page .illust6 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#stamprally-page .illust7 {
  left: calc(min(18.54vw, 356px) * -1);
  top: min(30.57vw, 587px);
  width: min(11.74vw, 225.5px);
}
#stamprally-page .illust7 img {
  -webkit-animation: illustanim1 4.5s infinite 2.25s forwards;
          animation: illustanim1 4.5s infinite 2.25s forwards;
}
#stamprally-page .illust8 {
  right: calc(min(21.82vw, 419px) * -1);
  top: min(2.292vw, 44px);
  width: min(15.18vw, 291.5px);
}
#stamprally-page .illust9 {
  right: calc(min(31.66vw, 608px) * -1);
  top: min(14.24vw, 273.5px);
  width: min(20.65vw, 396.5px);
}
#stamprally-page .illust9 img {
  -webkit-animation: illustanim2 2.5s infinite 1.25s forwards;
          animation: illustanim2 2.5s infinite 1.25s forwards;
}
#stamprally-page .illust10 {
  left: calc(min(4.792vw, 92px) * -1);
  top: calc(min(3.958vw, 76px) * -1);
  width: min(13.93vw, 267.5px);
}
#stamprally-page .illust10 img {
  -webkit-animation: illustanim1 4.5s infinite forwards;
          animation: illustanim1 4.5s infinite forwards;
}
#stamprally-page .illust11 {
  right: calc(min(0.938vw, 18px) * -1);
  top: calc(min(14.036vw, 269.5px) * -1);
  width: min(8.93vw, 171.5px);
}
#stamprally-page .illust11 img {
  -webkit-animation: illustanim2 2.5s infinite forwards;
          animation: illustanim2 2.5s infinite forwards;
}
#stamprally-page .illust12 {
  right: calc(min(5vw, 96px) * -1);
  top: calc(min(4.974vw, 95.5px) * -1);
  width: min(8.83vw, 169.5px);
}
#stamprally-page .illust13 {
  bottom: min(0.365vw, 7px);
  left: calc(min(21.98vw, 422px) * -1);
  width: min(16.6vw, 319px);
}
#stamprally-page .illust14 {
  right: calc(min(23.96vw, 460px) * -1);
  top: calc(min(10.93vw, 210px) * -1);
  width: min(14.95vw, 287px);
}

/* shop-list */
#shop-list {
  border-bottom: 8px solid #000;
  padding: min(7.81vw, 150px) 0 min(8.59vw, 165px);
}
@media (max-width: 768px) {
  #shop-list {
    border-bottom: 6px solid #000;
    padding: 13.68vw 0 12.26vw;
  }
}
#shop-list .section-head {
  margin-bottom: min(4.01vw, 77px);
}
@media (max-width: 768px) {
  #shop-list .section-head {
    margin-bottom: 9.06vw;
  }
}
#shop-list .section-head span {
  display: inline-block;
  line-height: 1;
}
#shop-list .section-head span::before {
  background: url(../images/stamprally/shop-list-head-deco.svg) no-repeat center/contain;
}
#shop-list .section-head strong {
  color: #008400;
}
#shop-list .section-head small {
  color: #fe2301;
  font-weight: 700;
  font-size: min(1.094vw, 21px);
}
@media (max-width: 768px) {
  #shop-list .section-head small {
    font-size: 3.2vw;
  }
}
#shop-list .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: min(3.281vw, 63px);
  padding-bottom: min(4.16vw, 80px);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #shop-list .category-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    margin-bottom: 7.2vw;
    padding-bottom: 24.8vw;
  }
}
#shop-list .category-list li {
  background: #000;
  border-radius: min(0.938vw, 18px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: min(0.417vw, 8px);
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: min(7.969vw, 153px);
}
@media (max-width: 768px) {
  #shop-list .category-list li {
    border-radius: 3.46vw;
    font-size: 3.73vw;
    margin-bottom: 4vw;
    padding: 0.8vw;
    width: 32.6%;
  }
}
#shop-list .category-list li:not(:last-child) {
  margin-right: min(0.26vw, 5px);
}
@media (max-width: 768px) {
  #shop-list .category-list li:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  #shop-list .category-list li:not(:nth-child(3n)) {
    margin-right: 1.1%;
  }
}
#shop-list .category-list li:hover {
  opacity: 0.75;
}
@media (max-width: 768px) {
  #shop-list .category-list li:hover {
    opacity: 1;
  }
}
#shop-list .category-list li::before {
  border: 4px solid #000;
  border-radius: min(0.938vw, 18px);
  content: "";
  height: calc(100% - 8px);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: calc(100% - 8px);
}
@media (max-width: 768px) {
  #shop-list .category-list li::before {
    border: 3px solid #000;
    border-radius: 3.46vw;
  }
}
#shop-list .category-list .area-tab {
  background: transparent;
  border: 1px solid #a9a9a9;
  border-radius: 6px;
  color: #000;
  font-size: min(1.25vw, 24px);
  font-weight: 400;
  padding: min(0.104vw, 2px);
  position: absolute;
  bottom: 0;
  left: calc(50% + min(3.51vw, 67.5px));
  text-align: left;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: min(9.583vw, 184px);
}
@media (max-width: 768px) {
  #shop-list .category-list .area-tab {
    font-size: 5.6vw;
    line-height: 1;
    left: 50%;
    padding: 0.8vw;
    width: 43.33vw;
  }
}
#shop-list .category-list .area-tab:hover {
  opacity: 1;
}
#shop-list .category-list .area-tab::before {
  border: none;
  content: "エリアで探す";
  font-size: min(0.99vw, 19px);
  font-weight: 700;
  line-height: 1;
  left: calc(min(7.031vw, 135px) * -1);
  top: min(0.677vw, 13px);
}
@media (max-width: 768px) {
  #shop-list .category-list .area-tab::before {
    font-size: 4.53vw;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    top: -7.73vw;
  }
}
#shop-list .category-list .area-tab::after {
  background: #000 url(../images/common/shop-area-arrow.svg) no-repeat center/min(0.7vw, 13.5px) auto;
  border-radius: 0 6px 6px 0;
  content: "";
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(1.719vw, 33px);
}
@media (max-width: 768px) {
  #shop-list .category-list .area-tab::after {
    background-size: 3.2vw;
    width: 7.73vw;
  }
}
#shop-list .category-list .area-sub {
  background: #fff;
  display: none;
  margin-top: 2px;
  position: absolute;
  left: 0;
  top: 100%;
  width: min(9.583vw, 184px);
  z-index: 10;
}
@media (max-width: 768px) {
  #shop-list .category-list .area-sub {
    width: 100%;
  }
}
#shop-list .category-list .area-sub li {
  background: transparent;
  border: none;
  border-radius: 0px;
  color: #000;
  font-size: min(1.25vw, 24px);
  font-weight: 400;
  margin: 0;
  width: 100%;
}
@media (max-width: 768px) {
  #shop-list .category-list .area-sub li {
    font-size: 5.6vw;
    line-height: 1.5;
  }
}
#shop-list .category-list .area-sub li:not(:last-child) {
  border-bottom: 1px solid #a9a9a9;
}
#shop-list .category-list .area-sub li::before {
  content: none;
}
#shop-list .category-list .japanese, #shop-list .ac-list .category.japanese {
  background: #fff;
  color: #000;
}
#shop-list .category-list .japanese::before, #shop-list .ac-list .category.japanese::before {
  border-color: #db0082;
}
#shop-list .category-list .western, #shop-list .ac-list .category.western {
  background: #fff;
  color: #000;
}
#shop-list .category-list .western::before, #shop-list .ac-list .category.western::before {
  border-color: #00419d;
}
#shop-list .category-list .asian, #shop-list .ac-list .category.asian {
  background: #fff;
  color: #000;
}
#shop-list .category-list .asian::before, #shop-list .ac-list .category.asian::before {
  border-color: #ff6100;
}
#shop-list .category-list .noodles, #shop-list .ac-list .category.noodles {
  background: #fff;
  color: #000;
}
#shop-list .category-list .noodles::before, #shop-list .ac-list .category.noodles::before {
  border-color: #009600;
}
#shop-list .category-list .izakaya-bar, #shop-list .ac-list .category.izakaya-bar {
  background: #fff;
  color: #000;
}
#shop-list .category-list .izakaya-bar::before, #shop-list .ac-list .category.izakaya-bar::before {
  border-color: #57168a;
}
#shop-list .category-list .cafe-sweets, #shop-list .ac-list .category.cafe-sweets {
  background: #fff;
  color: #000;
}
#shop-list .category-list .cafe-sweets::before, #shop-list .ac-list .category.cafe-sweets::before {
  border-color: #9c501e;
}
#shop-list .category-list .accommodation-hall, #shop-list .ac-list .category.accommodation-hall {
  background: #fff;
  color: #000;
}
#shop-list .category-list .accommodation-hall::before, #shop-list .ac-list .category.accommodation-hall::before {
  border-color: #d9b900;
}
#shop-list .category-list .others, #shop-list .ac-list .category.others {
  background: #009fa8;
}
#shop-list .category-list .others::before, #shop-list .ac-list .category.others::before {
  border-color: #009fa8;
}
#shop-list .list-wrap {
  margin-bottom: min(4.01vw, 77px);
}
#shop-list .shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  #shop-list .shop-list {
    display: block;
  }
}
#shop-list .shop-list > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 min(1.667vw, 32px) min(2.969vw, 57px);
  position: relative;
  width: 25%;
}
@media (max-width: 768px) {
  #shop-list .shop-list > li {
    border-top: 2px solid #000;
    padding: 8.26vw 0 23.2vw;
    width: 100%;
  }
}
#shop-list .shop-list > li:not(:nth-child(4n)) {
  border-right: 2px solid #000;
}
@media (max-width: 768px) {
  #shop-list .shop-list > li:not(:nth-child(4n)) {
    border-right: none;
  }
}
#shop-list .shop-list > li:nth-child(n+5) {
  margin-top: min(4.688vw, 90px);
  position: relative;
}
@media (max-width: 768px) {
  #shop-list .shop-list > li:nth-child(n+5) {
    display: none;
  }
}
#shop-list .shop-list > li:nth-child(n+5)::before {
  border-bottom: 2px solid #000;
  content: "";
  height: 0;
  position: absolute;
  top: calc(min(2.344vw, 45px) * -1);
  left: 0;
  width: calc(100% + 2px);
}
#shop-list .shop-list > li .image {
  margin-bottom: min(1.771vw, 34px);
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .image {
    margin-bottom: 6.13vw;
  }
}
#shop-list .shop-list > li .image img {
  height: min(12.8vw, 246px);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .image img {
    height: 62.616vw;
  }
}
#shop-list .shop-list > li .ac-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: min(0.781vw, 15px);
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .ac-list {
    margin-bottom: 4vw;
  }
}
#shop-list .shop-list > li .area {
  font-size: min(0.99vw, 19px);
  font-weight: 700;
  margin-right: min(0.573vw, 11px);
  position: relative;
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .area {
    font-size: 5.06vw;
    margin-right: 2.93vw;
  }
}
#shop-list .shop-list > li .area::before {
  content: "●";
}
#shop-list .shop-list > li .area.eastern::before {
  color: #00a74b;
}
#shop-list .shop-list > li .area.western::before {
  color: #f29700;
}
#shop-list .shop-list > li .area.southern::before {
  color: #12b6c6;
}
#shop-list .shop-list > li .category {
  border-radius: min(0.781vw, 15px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: min(0.677vw, 13px);
  font-weight: 700;
  padding: min(0.26vw, 5px);
  position: relative;
  text-align: center;
  width: min(6.354vw, 122px);
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .category {
    border-radius: 3.73vw;
    font-size: 3.73vw;
    padding: 1.06vw;
    width: 32.53vw;
  }
}
#shop-list .shop-list > li .category::before {
  border: 4px solid;
  border-radius: min(0.938vw, 18px);
  content: "";
  height: calc(100% - 8px);
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 8px);
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .category::before {
    border: 3px solid;
    border-radius: 3.46vw;
  }
}
#shop-list .shop-list > li .shop-title {
  font-size: min(1.458vw, 28px);
  font-weight: 700;
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .shop-title {
    font-size: 7.46vw;
  }
}
#shop-list .shop-list > li .address {
  font-weight: 500;
  margin-bottom: min(0.938vw, 18px);
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .address {
    margin-bottom: 5.33vw;
  }
}
#shop-list .shop-list > li .desc {
  font-weight: 700;
  line-height: 1.8;
  text-align: justify;
}
#shop-list .shop-list > li .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: calc(100% - min(3.334vw, 64px));
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .btn {
    bottom: 9.33vw;
    width: 100%;
  }
}
#shop-list .shop-list > li .btn a {
  background: #f9f7ee;
  border: 1px solid #000;
  border-radius: min(0.885vw, 17px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  font-size: min(0.729vw, 14px);
  font-weight: 700;
  padding: min(0.312vw, 6px);
  text-align: center;
  text-decoration: underline;
  text-decoration-color: transparent;
  width: 100%;
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .btn a {
    border-radius: 4.61vw;
    font-size: 3.73vw;
    padding: 2.13vw;
  }
}
#shop-list .shop-list > li .btn a:hover {
  text-decoration-color: #000;
}
@media (max-width: 768px) {
  #shop-list .shop-list > li .btn a:hover {
    text-decoration-color: transparent;
  }
}
#shop-list .shop-list > li.none {
  border-right: none;
  text-align: center;
  width: 100%;
}
#shop-list .shop-list.hide {
  display: none;
}

/* shop-list */
/********************************************************************************
shop-list-page
********************************************************************************/
.shop-list-page #shop-list {
  border-bottom: none;
  padding-bottom: min(10.93vw, 210px);
}
@media (max-width: 768px) {
  .shop-list-page #shop-list {
    padding-bottom: 20vw;
  }
}
.shop-list-page #shop-list .section-head span {
  display: inline-block;
}
.shop-list-page #shop-list .category-list li {
  padding: 0;
}
.shop-list-page #shop-list .category-list li a {
  display: block;
  padding: min(0.417vw, 8px);
}
@media (max-width: 768px) {
  .shop-list-page #shop-list .category-list li a {
    padding: 0.8vw;
  }
}
.shop-list-page #shop-list .category-list li:first-child a, .shop-list-page #shop-list .category-list li.others a {
  color: #fff;
}
.shop-list-page #shop-list .area-sub li:first-child a {
  color: #000;
}
@media (max-width: 768px) {
  .shop-list-page #shop-list .shop-list > li:nth-child(n+5) {
    display: block;
    margin-top: 0;
  }
  .shop-list-page #shop-list .shop-list > li:nth-child(n+5)::before {
    content: none;
  }
}