:root {
  --font-primary: "Zen Kaku Gothic New", sans-serif;
  --font-secondary: "Shippori Mincho", serif;
  --font-en: "Baskervville", serif;
  --font-cardo: "Cardo", serif;
  --font-family-base: var(--font-primary);
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-primary: #4c8c2b;
  --color-secondary: #8fad15;
  --color-third: #44693d;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
  --input-height: 5rem;
  --input-padding-x: 2rem;
  --input-padding-y: 1rem;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 2.6666666667vw;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  html {
    font-size: 0.9090909091vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 10px;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: #000;
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
  padding-top: 5rem;
}
@media (min-width: 768px) {
  body {
    padding-top: 7rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

figure {
  margin: 0;
  padding: 0;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: 0 auto;
  max-width: 105rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.js-draw.animated .line {
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 1.5s ease-in-out forwards;
}
.js-draw .line {
  stroke: #1E1E1E;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
.fadeUp {
  animation-name: fadeUp;
}

@keyframes boxDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1E1E1E;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0;
  background-color: #FFF;
  border: 1px solid;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .btn-primary {
    min-height: 2.4rem;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    transition: 0.3s all;
    cursor: pointer;
  }
}
.btn-primary::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 0.8rem solid currentColor;
  border-left: 0.8rem solid transparent;
  content: "";
}
.btn-primary.--style-1 {
  width: 7.8rem;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
@media (min-width: 768px) {
  .btn-primary.--style-1 {
    width: 7rem;
  }
}
.btn-primary.--style-1.is-active {
  background-color: var(--color-secondary);
  color: #FFF;
}
.btn-primary.--style-2 {
  width: 10.5rem;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .btn-primary.--style-2 {
    width: 9.5rem;
  }
}
.btn-primary.--style-2.is-active {
  background-color: var(--color-primary);
  color: #FFF;
}
.btn-primary.--style-3 {
  width: 10rem;
  border-color: var(--color-third);
  color: var(--color-third);
}
@media (min-width: 768px) {
  .btn-primary.--style-3 {
    width: 9.1rem;
  }
}
.btn-primary.--style-3.is-active {
  background-color: var(--color-third);
  color: #FFF;
}
.btn-primary.--space-1 {
  letter-spacing: -0.07em;
}
.btn-primary.--space-2 {
  letter-spacing: -0.05em;
}

.btn-detail, .btn-vote {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 14.2rem;
  min-height: 2.5rem;
  border-radius: 2rem;
  background-color: var(--color-secondary);
  color: #FFF;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
}
@media (min-width: 768px) {
  .btn-detail, .btn-vote {
    min-height: 3rem;
    font-size: 1.4rem;
    transition: 0.3s ease opacity;
  }
  .btn-detail:hover, .btn-vote:hover {
    opacity: 0.8;
    cursor: pointer;
  }
}

.btn-vote {
  display: none;
  background-color: var(--color-primary);
}
.btn-vote.actived {
  pointer-events: none;
  background-color: #afa271;
}
.btn-vote.is-show {
  display: inline-flex;
}

.p-header {
  background-color: #fff;
  border-bottom: 1px solid #231815;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-inline: 1rem 5rem;
  z-index: 1000;
}
@media (min-width: 768px) {
  .p-header {
    height: 7rem;
    padding-inline: 0;
  }
}
.p-header__nav {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .p-header__nav {
    gap: 4.9rem;
    padding-inline: 7rem;
  }
}
.p-header__nav .logo01 {
  width: 11.73rem;
}
@media (min-width: 768px) {
  .p-header__nav .logo01 {
    width: 14.484rem;
  }
}
.p-header__nav .logo02 {
  width: 15.225rem;
}
@media (min-width: 768px) {
  .p-header__nav .logo02 {
    width: 18.375rem;
  }
}
.p-header__nav .logo03 {
  width: 16.4rem;
}
@media (min-width: 768px) {
  .p-header__nav .logo03 {
    width: 19.8rem;
  }
}
.p-header__nav .logo04 {
  width: 10.5rem;
}
@media (min-width: 768px) {
  .p-header__nav .logo04 {
    width: 13rem;
  }
}

.p-hamburger {
  position: fixed;
  z-index: 2001;
  right: 0;
  top: 0;
  width: 5rem;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .p-hamburger {
    width: 7rem;
  }
}
.p-hamburger::after {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  aspect-ratio: 1/1;
  background: url("../images/icon_close.svg") repeat center;
  background-size: 2rem auto;
  opacity: 0;
  transition: 0.3s ease opacity;
  content: "";
}
@media (min-width: 768px) {
  .p-hamburger::after {
    top: 2rem;
    right: 2.5rem;
    width: 3rem;
    background-size: 3rem auto;
  }
}
@media (min-width: 768px) {
  .p-hamburger {
    cursor: pointer;
    transition: 0.3s ease opacity;
  }
  .p-hamburger:hover {
    opacity: 0.8;
  }
}
.p-hamburger.is-active::after {
  opacity: 1;
}
.p-hamburger.is-active span {
  pointer-events: none;
  opacity: 0;
}
.p-hamburger span {
  position: absolute;
  top: 2.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 1px;
  background-color: #000;
  transition: 0.3s ease opacity;
}
@media (min-width: 768px) {
  .p-hamburger span {
    top: 3.5rem;
    right: 2.5rem;
    width: 3rem;
  }
}
.p-hamburger span::before, .p-hamburger span::after {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  content: "";
}
.p-hamburger span::before {
  top: -1rem;
}
@media (min-width: 768px) {
  .p-hamburger span::before {
    top: -1.5rem;
  }
}
.p-hamburger span::after {
  bottom: -1rem;
}
@media (min-width: 768px) {
  .p-hamburger span::after {
    bottom: -1.5rem;
  }
}

.p-menu {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  width: 23rem;
  height: 100vh;
  background-color: rgba(175, 162, 113, 0.8);
  overflow-y: auto;
  pointer-events: none;
  transform: translateX(110%);
  transition: 0.5s ease transform, 0.5s ease opacity;
}
@media (min-width: 768px) {
  .p-menu {
    width: 32rem;
  }
}
.p-menu.is-active {
  pointer-events: all;
  transform: translateX(0);
  opacity: 1;
}
.p-menu__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.25rem;
  padding-block: 8.7rem 3.75rem;
  padding-inline: 3.75rem;
}
@media (min-width: 768px) {
  .p-menu__list {
    padding-block: 12rem 5rem;
  }
}
.p-menu__item, .p-menu__item-4, .p-menu__item-3, .p-menu__item-2, .p-menu__item-1 {
  position: relative;
  padding-block: 1.5rem;
  border-top: 1px solid #FFF;
  color: #FFF;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.1111111111;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .p-menu__item, .p-menu__item-4, .p-menu__item-3, .p-menu__item-2, .p-menu__item-1 {
    padding-block: 2rem;
    font-size: 1.8rem;
    transition: 0.3s all;
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .p-menu__item.--small, .--small.p-menu__item-4, .--small.p-menu__item-3, .--small.p-menu__item-2, .--small.p-menu__item-1 {
    letter-spacing: 0;
  }
}
.p-menu__item::before, .p-menu__item-4::before, .p-menu__item-3::before, .p-menu__item-2::before, .p-menu__item-1::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 1.8rem);
  height: 1px;
  background-color: #FFF;
  content: "";
}
@media (min-width: 768px) {
  .p-menu__item::before, .p-menu__item-4::before, .p-menu__item-3::before, .p-menu__item-2::before, .p-menu__item-1::before {
    width: calc(100% - 2.5rem);
  }
}
.p-menu__item::after, .p-menu__item-4::after, .p-menu__item-3::after, .p-menu__item-2::after, .p-menu__item-1::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 1.5rem solid currentColor;
  border-left: 1.5rem solid transparent;
  transition: 0.3s all;
  content: "";
}
@media (min-width: 768px) {
  .p-menu__item::after, .p-menu__item-4::after, .p-menu__item-3::after, .p-menu__item-2::after, .p-menu__item-1::after {
    border-width: 2rem;
  }
}
.p-menu__item-1:hover {
  background-color: var(--color-secondary);
  border-top-color: var(--color-secondary);
}
.p-menu__item-1:hover::before {
  background-color: var(--color-secondary);
}
.p-menu__item-1:hover::after {
  border-bottom-color: var(--color-secondary);
}
.p-menu__item-2:hover {
  background-color: var(--color-primary);
  border-top-color: var(--color-primary);
}
.p-menu__item-2:hover::before {
  background-color: var(--color-primary);
}
.p-menu__item-2:hover::after {
  border-bottom-color: var(--color-primary);
}
.p-menu__item-3:hover {
  background-color: var(--color-third);
  border-top-color: var(--color-third);
}
.p-menu__item-3:hover::before {
  background-color: var(--color-third);
}
.p-menu__item-3:hover::after {
  border-bottom-color: var(--color-third);
}
.p-menu__item-4:hover {
  background-color: #000;
  border-top-color: #000;
}
.p-menu__item-4:hover::before {
  background-color: #000;
}
.p-menu__item-4:hover::after {
  border-bottom-color: #000;
}

.p-footer {
  border-top: 1px solid #000;
  padding-block: 3rem 1.5rem;
}
@media (min-width: 768px) {
  .p-footer {
    padding-block: 4.5rem;
  }
}
.p-footer__inner {
  max-width: 87rem;
}
.p-footer__copyright {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-footer__copyright {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }
}

.f-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  row-gap: 4rem;
  margin-inline: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .f-nav {
    gap: 3.8rem;
    margin-inline: 0;
  }
}
.f-nav__item-1 {
  width: 11.5rem;
}
@media (min-width: 768px) {
  .f-nav__item-1 {
    width: 14.8rem;
  }
}
.f-nav__item-2 {
  width: 14.1rem;
}
@media (min-width: 768px) {
  .f-nav__item-2 {
    width: 18rem;
  }
}
.f-nav__item-3 {
  width: 15.7rem;
}
@media (min-width: 768px) {
  .f-nav__item-3 {
    width: 20.6rem;
  }
}
.f-nav__item-4 {
  width: 10.3rem;
}
@media (min-width: 768px) {
  .f-nav__item-4 {
    width: 14rem;
  }
}
.f-nav img {
  display: block;
  width: 100%;
}

.f-nav-second {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  row-gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .f-nav-second {
    flex-direction: row;
    gap: 2.2rem;
    margin-bottom: 3.5rem;
  }
}
.f-nav-second__item {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0;
}

.hline01 {
  color: var(--hline01-color, #000);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.1111111111;
}
@media (min-width: 768px) {
  .hline01 {
    line-height: 1.2;
  }
}
.hline01__ttl {
  margin-bottom: 0.6rem;
  font-family: var(--font-en);
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .hline01__ttl {
    margin-bottom: 0;
    font-size: 3.6rem;
    text-align: left;
  }
}
.hline01__sub {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .hline01__sub {
    font-size: 1.6rem;
  }
}

.hline02 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  color: #231815;
}
@media (min-width: 768px) {
  .hline02 {
    flex-direction: row;
  }
}
.hline02__ttl {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  background-color: #FFF;
  font-family: var(--font-en);
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .hline02__ttl {
    margin-bottom: 0;
    padding-right: 2rem;
    font-size: 6rem;
  }
}
.hline02__sub {
  position: relative;
  z-index: 1;
  background-color: #FFF;
  color: #000;
  font-family: var(--font-secondary);
  font-size: 1.65rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .hline02__sub {
    padding-left: 2rem;
    font-size: 2.2rem;
  }
}
.hline02__line {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 5.8rem;
  width: 27.8rem;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.5s ease;
}
@media (min-width: 768px) {
  .hline02__line {
    width: 100%;
    left: 0;
    top: 50%;
  }
}
@media (max-width: 767px) {
  .hline02__line {
    transform-origin: center;
    transform: translateX(-50%) scaleX(0);
  }
}
@media (min-width: 768px) {
  .hline02__line.animated {
    transform: scaleX(1);
  }
}
@media (max-width: 767px) {
  .hline02__line.animated {
    transform: translateX(-50%) scaleX(1);
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.font-sec {
  font-family: var(--font-secondary);
}

.font-en {
  font-family: var(--font-en);
}

.img-fit {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mb-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .c-hover {
    transition: 0.3s opacity ease;
  }
  .c-hover:hover {
    opacity: 0.8;
  }
}

.c-box {
  position: relative;
}
.c-box.animated .line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 6s ease-in-out forwards;
}
@media (min-width: 768px) {
  .c-box.animated .line {
    stroke-width: 1;
  }
}
.c-box__frame {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-box__frame .line {
  stroke: #000;
}

.p-mv {
  margin-bottom: 3.5rem;
  padding-block: 5.5rem;
  background: url("../images/bg_symbol_sp.png") repeat;
  background-size: auto;
  background-position-x: center;
  background-position-y: -0.5rem;
}
@media (min-width: 768px) {
  .p-mv {
    height: calc(100vh - 7rem);
    margin-bottom: 6.4rem;
    padding-block: 4.9rem;
    background-image: url("../images/bg_symbol.jpg");
    background-position-y: -1rem;
  }
}
.p-mv__wrap {
  height: 42rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-mv__wrap {
    height: 100%;
  }
}
.p-mv__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}
.p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.p-mv__txt {
  position: absolute;
  left: 2.2rem;
  right: 2.2rem;
  top: 2rem;
  text-align: center;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
@media (min-width: 768px) {
  .p-mv__txt {
    left: 4.5rem;
    right: 4.5rem;
    top: 3rem;
  }
}
@media (min-width: 1430px) and (max-width: 1690px) {
  .p-mv__txt {
    top: 2rem;
  }
}
.p-mv__txt img {
  width: 26.5rem;
}
@media (min-width: 768px) {
  .p-mv__txt img {
    width: 100%;
    max-width: 107rem;
    margin-inline: auto;
  }
}
@media (min-width: 1430px) and (max-width: 1690px) {
  .p-mv__txt img {
    max-width: 100rem;
  }
}
@media (min-width: 1900px) {
  .p-mv__txt img {
    max-width: 143rem;
  }
}
.p-mv__logo {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.8rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}
@media (min-width: 768px) {
  .p-mv__logo {
    bottom: min(2vw, 30px);
    justify-content: space-between;
    width: 100%;
    max-width: 88rem;
    margin-inline: auto;
    padding-inline: 2rem;
  }
}
@media (min-width: 1100px) {
  .p-mv__logo {
    max-width: 104rem;
    bottom: min(2vw, 40px);
  }
}
@media (min-width: 1900px) {
  .p-mv__logo {
    max-width: 127rem;
  }
}
@media (min-width: 2000px) {
  .p-mv__logo {
    bottom: 3vw;
  }
}
.p-mv__logo li {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1281px) {
  .p-mv__logo li:nth-child(1) {
    margin-left: 3.5rem;
  }
}
.p-mv__logo li:nth-child(2) {
  margin-inline: 5.2rem 4.3rem;
}
@media (min-width: 768px) {
  .p-mv__logo li:nth-child(2) {
    margin-inline: 0;
  }
}
.p-mv__logo .mv-logo01 {
  width: 7.75rem;
}
@media (min-width: 768px) {
  .p-mv__logo .mv-logo01 {
    width: 20.7rem;
  }
}
@media (min-width: 1900px) {
  .p-mv__logo .mv-logo01 {
    width: 29.2rem;
  }
}
.p-mv__logo .mv-logo02 {
  width: 6rem;
}
@media (min-width: 768px) {
  .p-mv__logo .mv-logo02 {
    width: 15.9rem;
  }
}
@media (min-width: 1900px) {
  .p-mv__logo .mv-logo02 {
    width: 22.5rem;
  }
}
.p-mv__logo .mv-logo03 {
  width: 8.8rem;
}
@media (min-width: 768px) {
  .p-mv__logo .mv-logo03 {
    width: 23.4rem;
  }
}
@media (min-width: 1900px) {
  .p-mv__logo .mv-logo03 {
    width: 33rem;
  }
}

.p-intro {
  margin-bottom: 3.7rem;
}
@media (min-width: 768px) {
  .p-intro {
    margin-bottom: 7.5rem;
  }
}
.p-intro__txt {
  max-width: 73rem;
  margin-inline: -1rem;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.7307692308;
  text-align: center;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .p-intro__txt {
    margin: 0 auto;
    font-size: 1.76rem;
    line-height: 1.75;
  }
}
.p-intro__time {
  margin-bottom: 3.2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-intro__time {
    max-width: 44.1rem;
    margin-bottom: 4.5rem;
    margin-inline: auto;
  }
}
.p-intro__line {
  display: block;
  max-width: 72rem;
  width: 100%;
  height: 1px;
  background-color: #000;
  margin: 2.8rem auto 3rem;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 1.5s ease;
}
@media (min-width: 768px) {
  .p-intro__line {
    margin: 2.8rem auto 3.5rem;
  }
}
.p-intro__line.animated {
  transform: scaleX(1);
}
.p-intro__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .p-intro__nav {
    gap: 4rem;
  }
}
.p-intro__item, .p-intro__item-4, .p-intro__item-3, .p-intro__item-2, .p-intro__item-1 {
  position: relative;
  width: calc((100% - 2.5rem) / 2);
  padding-block: 1.5rem;
  border-top: 1px solid currentColor;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.1111111111;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-intro__item, .p-intro__item-4, .p-intro__item-3, .p-intro__item-2, .p-intro__item-1 {
    flex: 1;
    width: auto;
    padding-block: 2rem;
    font-size: 1.8rem;
    transition: 0.3s all;
    cursor: pointer;
  }
  .p-intro__item:hover::before, .p-intro__item-4:hover::before, .p-intro__item-3:hover::before, .p-intro__item-2:hover::before, .p-intro__item-1:hover::before {
    width: 100%;
  }
  .p-intro__item:hover::after, .p-intro__item-4:hover::after, .p-intro__item-3:hover::after, .p-intro__item-2:hover::after, .p-intro__item-1:hover::after {
    right: 1px;
    bottom: 1px;
  }
}
.p-intro__item::before, .p-intro__item-4::before, .p-intro__item-3::before, .p-intro__item-2::before, .p-intro__item-1::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 1.9rem);
  height: 1px;
  background-color: currentColor;
  content: "";
}
@media (min-width: 768px) {
  .p-intro__item::before, .p-intro__item-4::before, .p-intro__item-3::before, .p-intro__item-2::before, .p-intro__item-1::before {
    width: calc(100% - 2.5rem);
  }
}
.p-intro__item::after, .p-intro__item-4::after, .p-intro__item-3::after, .p-intro__item-2::after, .p-intro__item-1::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 1.5rem solid currentColor;
  border-left: 1.5rem solid transparent;
  transition: 0.3s all;
  content: "";
}
@media (min-width: 768px) {
  .p-intro__item::after, .p-intro__item-4::after, .p-intro__item-3::after, .p-intro__item-2::after, .p-intro__item-1::after {
    border-width: 2rem;
  }
}
.p-intro__item-1 {
  color: var(--color-secondary);
}
.p-intro__item-1:hover {
  color: #FFF;
  background-color: var(--color-secondary);
  border-top-color: var(--color-secondary);
}
.p-intro__item-1:hover::before {
  background-color: var(--color-secondary);
}
.p-intro__item-2 {
  color: var(--color-primary);
}
.p-intro__item-2:hover {
  color: #FFF;
  background-color: var(--color-primary);
  border-top-color: var(--color-primary);
}
.p-intro__item-2:hover::before {
  background-color: var(--color-primary);
}
.p-intro__item-3 {
  color: var(--color-third);
}
.p-intro__item-3:hover {
  color: #FFF;
  background-color: var(--color-third);
  border-top-color: var(--color-third);
}
.p-intro__item-3:hover::before {
  background-color: var(--color-third);
}
.p-intro__item-4 {
  color: #000;
}
.p-intro__item-4:hover {
  color: #FFF;
  background-color: #000;
  border-top-color: #000;
}
.p-intro__item-4:hover::before {
  background-color: #000;
}

.p-guide {
  margin-bottom: 4rem;
  --hline01-color: var(--color-secondary);
}
@media (min-width: 768px) {
  .p-guide {
    margin-bottom: 7.5rem;
  }
}
.p-guide__inner {
  padding: 3rem 2.5rem 4.5rem;
}
@media (min-width: 768px) {
  .p-guide__inner {
    padding: 4.3rem 4.8rem 4.5rem;
  }
}
.p-guide .hline01 {
  margin-bottom: 2.2rem;
}
@media (min-width: 768px) {
  .p-guide .hline01 {
    margin-bottom: 2.5rem;
  }
}
.p-guide__table {
  display: none;
}
@media (min-width: 768px) {
  .p-guide__table {
    display: table;
    width: 100%;
    margin-bottom: 2rem;
  }
}
.p-guide__table .w-1 {
  width: 33.5%;
}
.p-guide__table .w-2 {
  width: 33%;
}
.p-guide__table th, .p-guide__table td {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  text-align: center;
}
.p-guide__table thead th {
  padding: 0 1rem 0.8rem 1rem;
}
.p-guide__table tbody th {
  background-color: #afa271;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
  height: 4rem;
}
.p-guide__table tbody th.is-custom {
  background-color: #8c8c8f;
}
.p-guide__table tbody td {
  padding: 1.8rem 1rem 0;
  color: #afa271;
  font-size: 1.8rem;
  font-weight: bold;
}
.p-guide__table tbody td.is-custom {
  color: #8c8c8f;
}
.p-guide .ttl-1 {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  min-height: 4.8rem;
  margin-bottom: 1.5rem;
  padding-left: 3.8rem;
  color: #000;
  font-size: 2.16rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .p-guide .ttl-1 {
    min-height: inherit;
    margin-bottom: 0;
    padding-left: 3.5rem;
    font-size: 2rem;
  }
}
.p-guide .ttl-1 .sub {
  font-size: 1.3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-guide .ttl-1 .sub {
    font-size: 1.2rem;
  }
}
.p-guide .ttl-1::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.9rem;
  height: 4.8rem;
  background: url("../images/icon_vote_01.svg") no-repeat center;
  background-size: 2.9rem auto;
  content: "";
}
@media (min-width: 768px) {
  .p-guide .ttl-1::after {
    width: 2.6rem;
    height: 4.4rem;
    background-size: 2.6rem auto;
  }
}
.p-guide .ttl-1.--custom-1 {
  min-height: 5.8rem;
  margin-bottom: 1rem;
  padding-left: 5.8rem;
}
@media (min-width: 768px) {
  .p-guide .ttl-1.--custom-1 {
    position: relative;
    top: 0.5rem;
    min-height: inherit;
    padding-left: 5.2rem;
  }
}
.p-guide .ttl-1.--custom-1::after {
  top: -0.7rem;
  width: 5.1rem;
  height: 5.8rem;
  background-image: url("../images/icon_vote_02.svg");
  background-size: 5.1rem auto;
}
@media (min-width: 768px) {
  .p-guide .ttl-1.--custom-1::after {
    top: -0.7rem;
    width: 4.7rem;
    height: 5.3rem;
    background-size: 4.7rem auto;
  }
}
.p-guide__content-sp {
  display: block;
  margin-bottom: 1.5rem;
  font-family: var(--font-secondary);
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-guide__content-sp {
    display: none;
  }
}
.p-guide__content-sp .row {
  padding-block: 2rem;
  border-bottom: 1px solid #000;
}
.p-guide__content-sp .row:first-child {
  border-top: 1px solid #000;
}
.p-guide__content-sp .ttl-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.5rem;
  min-height: 3rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  background-color: #afa271;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}
.p-guide__content-sp .ttl-2.--style-1 {
  margin-bottom: 2rem;
}
.p-guide__content-sp .ttl-2.recom {
  background-color: #8c8c8f;
}
.p-guide__content-sp .txt {
  color: #afa271;
  text-align: center;
  letter-spacing: 0;
  font-size: 1.4rem;
}
.p-guide__content-sp .txt.--style-1 {
  margin-bottom: 2.5rem;
}
.p-guide__content-sp .txt.recom {
  color: #8c8c8f;
}
.p-guide__ttl {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-guide__ttl {
    margin-bottom: 3.4rem;
  }
}
.p-guide__ttl::after {
  content: none;
}
@media (min-width: 768px) {
  .p-guide__ttl::after {
    content: "";
    background-color: #000;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 1rem;
    z-index: -1;
  }
}
.p-guide__ttl span {
  display: inline-block;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-guide__ttl span {
    padding-inline: 1.7rem;
    font-size: 2rem;
  }
}
.p-guide__ttl-sub {
  margin-left: 1rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .p-guide__ttl-sub {
    font-size: 1.4rem;
  }
}
.p-guide__list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-guide__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
  }
}
.p-guide__list-txt {
  margin-block: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-guide__list-txt {
    margin-block: 1.5rem 0;
    font-size: 1.4rem;
  }
}
.p-guide__list-map {
  aspect-ratio: 1/1;
}
.p-guide__list-map img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-guide__note {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-guide__note {
    margin-top: 3.7rem;
    line-height: 1.5555555556;
    font-size: 1.8rem;
  }
}
.p-guide__note-2 {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-guide__note-2 {
    text-align: right;
    margin-bottom: 4rem;
  }
}

.product-wrap {
  background: url("../images/bg_symbol_sp.png") repeat;
  background-size: auto;
  background-position-x: center;
  background-position-y: -0.3rem;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .product-wrap {
    padding: 7.3rem 0;
    background-image: url("../images/bg_symbol.jpg");
    background-position-y: -1.3rem;
  }
}

.p-search {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-search {
    margin-bottom: 7.5rem;
  }
}
.p-search__inner {
  padding: 3rem 2.5rem 1rem;
  background-color: #fff;
  clip-path: polygon(100% 0, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 0 100%, 0 2.5rem, 2.5rem 0);
}
@media (min-width: 768px) {
  .p-search__inner {
    height: 35rem;
    padding: 4rem 12.5rem;
    clip-path: polygon(100% 0, 100% calc(100% - 5rem), calc(100% - 5rem) 100%, 0 100%, 0 5rem, 5rem 0);
  }
}
.p-search__hline {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-search__hline {
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .p-search__hline .hline01__ttl {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .p-search__hline .hline01__ttl {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 2.7rem;
  }
}
.p-search__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #000;
}
@media (min-width: 768px) {
  .p-search__item {
    flex-direction: row;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.p-search__item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.p-search__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.6rem;
  padding: 0;
}
@media (min-width: 768px) {
  .p-search__head {
    justify-content: flex-end;
    width: 18.5rem;
    margin-bottom: 0;
    padding: 1.5rem 2.8rem 1.8rem 0;
    border-right: 1px solid #000;
  }
}
.p-search__ttl {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .p-search__ttl {
    font-size: 2.2rem;
  }
}
.p-search__content {
  width: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  .p-search__content {
    width: calc(100% - 18.5rem);
    padding-block: 1.8rem;
    padding-inline: 3.2rem 0;
  }
}
.p-search__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
}
@media (min-width: 768px) {
  .p-search__list {
    flex-wrap: nowrap;
    justify-content: inherit;
    gap: 2rem;
  }
}

.c-caption {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  width: 3.5rem;
  height: 3rem;
  background: url("../images/bg_caption.svg") no-repeat center;
  background-size: 3.5rem 3rem;
  font-family: var(--font-cardo);
}
@media (min-width: 768px) {
  .c-caption {
    width: 5.5rem;
    height: 5rem;
    background-size: 5.5rem 5rem;
  }
}
.c-caption .tag {
  display: inline-block;
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .c-caption .tag {
    top: 0.8rem;
    font-size: 1.4rem;
  }
}
.c-caption .num {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .c-caption .num {
    font-size: 2.8rem;
  }
}

.p-product {
  margin-bottom: 4rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-product {
    margin-bottom: 7.5rem;
  }
}
.p-product__inner {
  max-width: 110rem;
  padding-block: 5rem 8rem;
}
@media (min-width: 768px) {
  .p-product__inner {
    padding-block: 10rem 17rem;
  }
}
.p-product__hline {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .p-product__hline {
    margin-bottom: 4rem;
  }
}
.p-product__content {
  position: relative;
}
.p-product__line-1, .p-product__line-2 {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 2rem;
  width: 1px;
  height: calc(100% + 3rem);
  background-color: #000;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.5s ease;
  opacity: 0.5;
}
.p-product__line-1.animated, .animated.p-product__line-2 {
  transform: scaleY(1);
}
@media (min-width: 768px) {
  .p-product__line-1, .p-product__line-2 {
    left: 32.5%;
    top: 3rem;
    height: 100%;
  }
}
.p-product__line-2 {
  left: 67.5%;
}
@media (max-width: 767px) {
  .p-product__line-2 {
    display: none;
  }
}
.p-product__list {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .p-product__list {
    row-gap: 5rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
  }
}
@media (max-width: 767px) {
  .p-product__list {
    row-gap: 4rem;
    justify-content: space-between;
  }
}
.p-product__item {
  width: calc(50% - 1rem);
  mix-blend-mode: multiply;
}
.p-product__item.is-hidden {
  display: none;
}
@media (min-width: 768px) {
  .p-product__item {
    width: calc((100% - 8rem) / 3);
  }
  .p-product__item:nth-child(3n+2) {
    transform: translateY(7rem);
  }
}
@media (max-width: 767px) {
  .p-product__item:nth-child(even) {
    transform: translateY(4rem);
  }
}

.product-card {
  position: relative;
}
.product-card__head {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .product-card__head:hover {
    cursor: pointer;
  }
}
.product-card__caption {
  top: 0;
}
@media (min-width: 768px) {
  .product-card__caption {
    top: 3rem;
  }
}
.product-card__image {
  margin-inline: -2rem;
  aspect-ratio: 53/35;
}
@media (min-width: 768px) {
  .product-card__image {
    margin-inline: -5rem;
  }
}
.product-card__image img {
  display: block;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .product-card__image img {
    height: 100%;
  }
}
.product-card__box {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .product-card__box:hover {
    cursor: pointer;
  }
}
.product-card__ttl {
  font-size: 1.2rem;
  line-height: 1.4285714286;
  font-weight: 700;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .product-card__ttl {
    font-size: 1.4rem;
  }
}
.product-card__txt {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .product-card__txt {
    font-size: 1.2rem;
  }
}
.product-card__btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .product-card__btns {
    gap: 1.5rem;
  }
}
.product-card__btns .btn-detail,
.product-card__btns .btn-vote {
  width: calc((100% - 0.8rem) / 2);
}
@media (min-width: 768px) {
  .product-card__btns .btn-detail,
  .product-card__btns .btn-vote {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 767px) {
  .product-card__btns .btn-detail,
  .product-card__btns .btn-vote {
    min-height: 2.2rem;
    font-size: 1rem;
    letter-spacing: 0;
  }
}

@media (min-width: 768px) {
  .p-onigiri {
    min-height: 45rem;
  }
}
.p-onigiri__inner {
  padding: 3rem 2rem 4.8rem;
  background-color: #fff;
  clip-path: polygon(100% 0, 100% calc(100% - 2.5rem), calc(100% - 2.5rem) 100%, 0 100%, 0 2.5rem, 2.5rem 0);
}
@media (min-width: 768px) {
  .p-onigiri__inner {
    position: relative;
    padding-block: 4.2rem 5.5rem;
    padding-inline: 0;
    clip-path: polygon(100% 0, 100% calc(100% - 5rem), calc(100% - 5rem) 100%, 0 100%, 0 5rem, 5rem 0);
  }
}
.p-onigiri__hline {
  margin-bottom: 1.7rem;
  color: var(--color-third);
}
@media (min-width: 768px) {
  .p-onigiri__hline {
    margin-bottom: 3rem;
  }
}
.p-onigiri__block {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-onigiri__block {
    padding-inline: 7.7rem 0;
  }
}
@media (min-width: 768px) {
  .p-onigiri__content {
    padding-right: 23rem;
  }
}
.p-onigiri__ttl {
  margin-bottom: 0;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-onigiri__ttl {
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 0.01em;
    text-align: left;
    line-height: 1.75;
  }
}
.p-onigiri__btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2rem;
  margin-inline: auto;
  padding: 0.5rem 0.5rem 0.4rem;
  background-color: #afa271;
  color: #FFF;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3125;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .p-onigiri__btn {
    margin-bottom: 1.5rem;
    margin-inline: 0;
  }
}
.p-onigiri__txt {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  display: block;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .p-onigiri__txt {
    margin-bottom: 0;
    margin-inline: 0;
    padding-left: 2rem;
    font-size: 1.8rem;
    line-height: 1.875;
    text-align: left;
  }
}
.p-onigiri__txt::before {
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/icon_arrow_01.svg") no-repeat center;
  background-size: 1rem auto;
  content: "";
}
@media (min-width: 768px) {
  .p-onigiri__txt::before {
    top: 1.1rem;
    background-size: 1.1rem auto;
  }
}
.p-onigiri__sub {
  position: relative;
  margin-bottom: 1.3rem;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-onigiri__sub {
    padding-left: 2rem;
    font-size: 1.2rem;
    line-height: 1.875;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .p-onigiri__image-pc {
    position: absolute;
    right: 0.7rem;
    top: 8rem;
    width: 35rem;
    aspect-ratio: 1/1;
    margin-bottom: 0;
  }
  .p-onigiri__image-pc img {
    display: block;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .p-onigiri__image-pc {
    display: none;
  }
}
.p-onigiri__image-sp {
  width: 29.2rem;
  aspect-ratio: 1/1;
  margin-inline: auto;
}
.p-onigiri__image-sp img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) {
  .p-onigiri__image-sp {
    display: none;
  }
}

.business-wrap {
  overflow: hidden;
  padding-block: 4rem 2rem;
}
@media (min-width: 768px) {
  .business-wrap {
    padding-block: 7.5rem 4.5rem;
  }
}
@media (max-width: 767px) {
  .business-wrap__inner {
    padding-inline: 3.7rem;
  }
}
.business-wrap__list {
  display: flex;
  gap: 2.5rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .business-wrap__list {
    flex-direction: row;
    gap: 5rem;
  }
}
.business-wrap__note {
  margin-top: 1.6rem;
  margin-inline: -1.5rem;
  font-size: 1rem;
  line-height: 2.1;
  text-align: center;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .business-wrap__note {
    margin-top: 4.5rem;
    margin-inline: 0;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    line-height: 1.8181818182;
  }
}
@media (max-width: 767px) {
  .business-wrap__note {
    white-space: nowrap;
  }
}

.p-business {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  padding: 2.5rem 2rem 1.5rem;
  clip-path: polygon(2rem 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%, 0 2rem);
  background-color: var(--color-primary);
}
@media (min-width: 768px) {
  .p-business {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}
.p-business::before {
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #FFF;
  clip-path: polygon(2rem 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%, 0 2rem);
  content: "";
}
.p-business__ins {
  position: absolute;
  z-index: 5;
  right: 1.5rem;
  top: 1.5rem;
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("../images/icon_ins.svg") no-repeat center;
  background-size: 1.8rem 1.8rem;
  transition: 0.3s ease opacity;
}
@media (min-width: 768px) {
  .p-business__ins:hover {
    opacity: 0.8;
    cursor: pointer;
  }
}
.p-business__head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  height: 5rem;
  margin-bottom: 2rem;
}
.p-business__brand {
  display: block;
  height: 100%;
}
.p-business__brand img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-business__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media (min-width: 768px) {
  .p-business__row.--style-1 {
    min-height: 10.8rem;
  }
}
.p-business__ttl {
  margin-bottom: 1.5rem;
  padding-block: 0.2rem;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .p-business__ttl {
    font-size: 1.6rem;
  }
}
.p-business__txt {
  color: #000;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.p-slider-product__image {
  width: 100%;
  aspect-ratio: 53/35;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-slider-product__image {
    height: 22.5rem;
  }
}
.p-slider-product__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(175, 162, 113, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: 0.1s ease opacity;
}
.p-modal.is-active {
  pointer-events: all;
  opacity: 1;
}
.p-modal__close {
  position: absolute;
  z-index: 2;
  right: -1px;
  top: -1px;
  width: 2rem;
  aspect-ratio: 1/1;
  background: url("../images/icon_close.svg") no-repeat center;
  background-size: 2rem auto;
}
@media (min-width: 768px) {
  .p-modal__close {
    width: 3rem;
    background-size: 3rem auto;
    transition: 0.3s ease opacity;
    cursor: pointer;
  }
  .p-modal__close:hover {
    opacity: 0.8;
  }
}

.modal-detail {
  display: none;
  position: relative;
  max-width: 32.5rem;
  width: 100%;
  height: 60rem;
  background-color: #FFF;
  border: 1px solid #000;
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal-detail {
    max-width: 80rem;
    height: 50rem;
    overflow-y: hidden;
  }
}
@media (max-width: 767px) {
  .modal-detail {
    max-height: calc(100vh - 8rem);
  }
}
.modal-detail.is-active {
  display: block;
  pointer-events: all;
}
.modal-detail .c-caption {
  z-index: 1;
}
@media (min-width: 768px) {
  .modal-detail .c-caption {
    left: 2rem;
    top: 2rem;
  }
}
@media (max-width: 767px) {
  .modal-detail .c-caption {
    left: 1rem;
    top: 0.8rem;
    width: 4rem;
    height: 4rem;
    background-size: 3.8rem auto;
  }
  .modal-detail .c-caption .tag {
    top: 1rem;
  }
  .modal-detail .c-caption .num {
    position: relative;
    bottom: 0.3rem;
    font-size: 1.8rem;
  }
}
.modal-detail__mid {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .modal-detail__mid {
    flex-direction: row;
    height: 35rem;
  }
}
.modal-detail__main-slide {
  width: calc(100% - 1px);
}
@media (min-width: 768px) {
  .modal-detail__main-slide {
    width: 50rem;
  }
}
@media (max-width: 767px) {
  .modal-detail__main-slide {
    margin-bottom: 10rem;
  }
}
.modal-detail__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 2rem;
  width: 100%;
  padding-inline: 2rem 2rem;
  padding-block: 1rem 0;
}
@media (min-width: 768px) {
  .modal-detail__content {
    width: calc(100% - 50rem);
    padding-block: 4rem 3rem;
    padding-inline: 3rem 2rem;
  }
}
.modal-detail__box {
  overflow-y: auto;
}
.modal-detail .btn-vote {
  width: 100%;
}
@media (min-width: 768px) {
  .modal-detail .btn-vote {
    max-width: 23.5rem;
    margin-inline: auto;
    margin-inline: 0;
  }
}
@media (max-width: 767px) {
  .modal-detail .btn-vote {
    max-width: 27.5rem;
    min-height: 3.5rem;
    font-size: 1.6rem;
  }
}
.modal-detail__ttl {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  word-break: break-word;
}
@media (min-width: 768px) {
  .modal-detail__ttl {
    margin-bottom: 1rem;
  }
}
.modal-detail__txt {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
  white-space: pre-line;
}
.modal-detail__note {
  font-size: 1.1rem;
  line-height: 1.5454545455;
  font-weight: 400;
  letter-spacing: 0;
  white-space: pre-line;
}
.modal-detail__bot {
  display: flex;
}
@media (min-width: 768px) {
  .modal-detail__bot {
    border-top: 1px solid #000;
    height: 15rem;
  }
}
.modal-detail__thumbs {
  display: flex;
  width: 50%;
}
@media (min-width: 768px) {
  .modal-detail__thumbs {
    border-right: 1px solid #000;
  }
}
@media (max-width: 767px) {
  .modal-detail__thumbs {
    position: absolute;
    width: 100%;
    height: 100px;
    right: 1px;
    top: 22.5rem;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
}
.modal-detail__thumb {
  position: relative;
  flex: 1;
}
.modal-detail__thumb::after {
  position: absolute;
  width: 100%;
  height: calc(100% - 2px);
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: 0.2s ease opacity;
  content: "";
}
.modal-detail__thumb.is-active::after {
  opacity: 0;
}
@media (min-width: 768px) {
  .modal-detail__thumb {
    cursor: pointer;
  }
}
.modal-detail__thumb:first-child {
  border-right: 1px solid #000;
}
.modal-detail__thumb:first-child.just-one {
  border-right: 0;
}
.modal-detail__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.modal-detail__info {
  display: flex;
}
@media (min-width: 768px) {
  .modal-detail__info {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .modal-detail__info {
    width: 100%;
    padding-inline: 2.5rem;
    padding-block: 3rem;
  }
}
.modal-detail__info-txt {
  display: flex;
  align-items: center;
  width: 50%;
  height: 100%;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .modal-detail__info-txt {
    width: calc(100% - 15rem);
    padding-block: 1rem;
    padding-inline: 3rem 0;
  }
}
.modal-detail__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
@media (min-width: 768px) {
  .modal-detail__brand {
    width: 15rem;
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .modal-detail__brand {
    padding-left: 2rem;
  }
}
.modal-detail__brand img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) {
  .modal-detail__brand img {
    max-width: 12rem;
  }
}

.modal-vote {
  display: none;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  width: 32.5rem;
  height: 35rem;
  padding: 1.5rem;
  background: url("../images/bg_symbol_sp.png") repeat;
  background-position-y: -1rem;
  background-size: auto;
  background-position-x: center;
  background-position-y: -1rem;
}
@media (min-width: 768px) {
  .modal-vote {
    width: 100%;
    max-width: 57rem;
    height: 55rem;
    padding: 2.4rem;
    background-image: url("../images/bg_symbol.jpg");
  }
}
.modal-vote.is-active {
  display: flex;
  pointer-events: all;
}
.modal-vote__mid {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border: 1px solid #000;
}
.modal-vote .c-caption {
  z-index: 1;
  top: 1rem;
  left: 1rem;
}
@media (min-width: 768px) {
  .modal-vote .c-caption {
    top: 2rem;
    left: 2rem;
  }
}
.modal-vote__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 12.5rem);
  aspect-ratio: 50/32;
  overflow: hidden;
}
@media (min-width: 768px) {
  .modal-vote__image {
    height: calc(100% - 18rem);
  }
}
.modal-vote__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.modal-vote__content {
  padding-inline: 0.5rem;
  height: 12.5rem;
}
@media (min-width: 768px) {
  .modal-vote__content {
    padding-block: 2rem;
    height: 18rem;
  }
}
@media (max-width: 767px) {
  .modal-vote__content {
    overflow-y: auto;
  }
}
.modal-vote__txt {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .modal-vote__txt {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
.modal-vote__txt.--custom-1 {
  letter-spacing: 0;
}
.modal-vote__note {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .modal-vote__note {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}
.modal-vote .btn-vote {
  display: flex;
  width: 22rem;
  margin-block: 1.5rem 1.5rem;
  margin-inline: auto;
  background-color: #afa271;
  pointer-events: none;
  text-align: center;
}
@media (max-width: 767px) {
  .modal-vote .btn-vote {
    width: 18.4rem;
    height: 2.5rem;
    margin-block: 1rem 1rem;
    font-size: 1.6rem;
  }
}

.p-pagetop {
  display: block;
  position: fixed;
  z-index: 99;
  right: 2rem;
  bottom: 2rem;
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 12rem;
  border: 1px solid #000;
  background-color: #FFF;
  opacity: 0;
  transition: 0.3s ease opacity;
  pointer-events: none;
}
.p-pagetop.is-show {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .p-pagetop {
    width: 8rem;
    transition: 0.3s ease opacity;
  }
  .p-pagetop:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}
.p-pagetop::after {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 1.2rem;
  height: 1.7rem;
  background: url("../images/icon_arrow_02.svg") no-repeat center;
  background-size: 1.2rem auto;
  transform: translateX(-50%);
  content: "";
}
@media (min-width: 768px) {
  .p-pagetop::after {
    top: 1.4rem;
    width: 1.4rem;
    height: 2.2rem;
    background-size: 1.4rem auto;
  }
}
.p-pagetop__ttl {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  display: block;
  width: 3.6rem;
  aspect-ratio: 72/22;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-pagetop__ttl {
    width: 4.8rem;
    bottom: 2rem;
  }
}