@charset "UTF-8";
.strong {
  font-weight: bold;
}

.block {
  display: block;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 2rem 0 4rem;
}
.button-container a,
.button-container a:visited {
  color: #fff !important;
}
.button-container a:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .button-container {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
}

.sign-text-catch {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sign-text-catch {
    font-size: 1.8rem;
  }
}

.test {
  font-size: large;
}

.sign__header-red {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dd2c00;
  padding: 1.2rem 2rem 1rem;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.sign__header-gray {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #777777;
  padding: 1.2rem 2rem 1rem;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.sign__header-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f98c0b;
  padding: 1.2rem 2rem 1rem;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}

.sign__header__border--orange {
  padding: 0.5em;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border-top: 2px solid #f98c0b;
  border-bottom: 2px solid #f98c0b;
}

.c-center-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

.c-arrow__right-white-orange::before, .c-arrow__right-white-red::before, .c-arrow__right-red::before, .c-arrow__left-red::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%;
}

.c-arrow__right-black::after, .c-arrow__right-white-orange::after, .c-arrow__right-white-red::after, .c-arrow__right-red::after, .c-arrow__left-red::after {
  content: "";
  position: absolute;
  top: 50%;
  box-sizing: border-box;
}

.c-arrow__left-red {
  position: relative;
  padding-left: 2rem;
}
.c-arrow__left-red::before {
  width: 15px;
  height: 15px;
  background: #dd2c00;
  margin-top: -8px;
  left: 0;
}
.c-arrow__left-red::after {
  left: 6px;
  width: 5px;
  height: 8px;
  border: 4px solid transparent;
  border-left: 5px solid #fff;
  margin-top: -4px;
}
.c-arrow__right-red {
  position: relative;
  padding-right: 2rem;
}
.c-arrow__right-red::before {
  width: 15px;
  height: 15px;
  background: #dd2c00;
  margin-top: -8px;
  right: 0;
}
.c-arrow__right-red::after {
  right: 0px;
  width: 5px;
  height: 8px;
  border: 4px solid transparent;
  border-left: 5px solid #fff;
  margin-top: -4px;
}
.c-arrow__right-white-red {
  position: relative;
}
.c-arrow__right-white-red::before {
  width: 20px;
  height: 20px;
  background: #fff;
  margin-top: -12px;
  right: 15px;
}
.c-arrow__right-white-red::after {
  right: 16px;
  width: 9px;
  height: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #e44d3c;
  margin-top: -7px;
}
.c-arrow__right-white-orange {
  position: relative;
}
.c-arrow__right-white-orange::before {
  width: 20px;
  height: 20px;
  background: #fff;
  margin-top: -12px;
  right: 15px;
}
.c-arrow__right-white-orange::after {
  right: 16px;
  width: 9px;
  height: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #f98c0b;
  margin-top: -7px;
}
.c-arrow__right-black {
  position: relative;
}
.c-arrow__right-black::after {
  right: 16px;
  width: 9px;
  height: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #222222;
  margin-top: -7px;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* 白抜きスタイル用 modifier */
.menu-button--outline {
  background-color: #fff;
  color: #3a2100;
  border: 2px solid #3c1d00;
}

.menu-button--outline:hover {
  background-color: #f7e8e3;
}

.c-button__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  color: #fff;
  height: 60px;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: 600;
}
.c-button__primary :hover {
  opacity: 0.8;
}
.c-button__bg-red {
  background-color: #e44d3c;
}
.c-button__bg-orange {
  background-color: #f98c0b;
}

.check-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .check-box {
    margin-bottom: 2rem;
  }
}
.check-box__head {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.02em;
}
.check-box__head .__red {
  color: #dd2c00;
}
@media screen and (max-width: 768px) {
  .check-box__head {
    width: 100%;
    font-size: 2rem;
    text-align: left;
  }
}
.check-box__list {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  list-style: none;
  padding: 0;
  margin: 23px 0 0 50px;
}
@media screen and (max-width: 768px) {
  .check-box__list {
    margin: 23px 0 0 0px;
  }
}
.check-box__list li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 0;
}
.check-box__list li::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("https://tools.itembox.design/item/category/menubook/img/menubook/ico_check.png") no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0.1em;
}
@media screen and (max-width: 768px) {
  .check-box__list li {
    font-size: 1.4rem;
    margin-bottom: 0.5em;
    padding-left: 2.3em;
    padding-top: 4px;
  }
}

.sign-item {
  margin-bottom: 70px;
}

.sign-item__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin: 30px 0;
}

.sign-item__column {
  background: #fff7f7;
  border-radius: 8px;
  width: calc((100% - 30px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sign-item__column:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .sign-item__column {
    width: calc((100% - 10px) / 2);
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .sign-item__column a {
    display: flex;
    background: #f6f6f6;
    padding: 15px 5px;
    width: 100%;
  }
}

.sign-item__image {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sign-item__image {
    width: 35px;
    padding: 0;
    max-height: 30px;
  }
}
.sign-item__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sign-item__link {
  background: #fff;
  width: calc(100% - 20px);
  text-align: center;
  padding: 0;
  border-radius: 50px;
  margin: 0 10px 10px 10px;
}
@media screen and (max-width: 768px) {
  .sign-item__link {
    width: 100%;
    padding: 0;
    border-radius: 0;
    margin: 0 0 0 15px;
    background: none;
    display: flex;
    align-items: center;
  }
}
.sign-item__link h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #222;
  margin: 0;
}
.sign-item__link.c-arrow__right-red::before {
  right: 10px;
}
.sign-item__link.c-arrow__right-red::after {
  right: 10px;
}
@media screen and (max-width: 768px) {
  .sign-item__link.c-arrow__right-black::after {
    right: 0px;
  }
}

.sign-guide-point {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .sign-guide-point {
    margin-bottom: 4rem;
  }
}
.sign-guide-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dd2c00;
  padding: 1rem 2rem;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.sign-guide-header__badge {
  color: #fff;
  border-radius: 2rem;
  padding: 0.5em 1.5em;
  font-size: 2.2rem;
  margin-right: 1.5rem;
  font-weight: bold;
  display: inline-block;
}
@media (max-width: 768px) {
  .sign-guide-header__badge {
    padding: 0;
    font-size: 2rem;
    line-height: 1.4;
    margin-right: 0;
  }
}
.sign-guide-header__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .sign-guide-header {
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
  }
  .sign-guide-header__title {
    font-size: 2rem;
    text-align: center;
    padding: 2rem;
  }
}
.sign-guide-columns {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  margin: 2rem auto;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 900px;
}
@media (max-width: 900px) {
  .sign-guide-columns {
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.sign-guide-column {
  width: calc(50% - 10px);
  background: #fff7f7;
  border-radius: 8px;
  border: 2px solid #e44d3c;
  min-width: 260px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.sign-guide-column.__orange {
  border: 2px solid #f88102;
}
.sign-guide-column.__large {
  width: 100%;
}
.sign-guide-column.__large .sign-guide-column__item {
  justify-content: center;
}
@media (max-width: 900px) {
  .sign-guide-column {
    width: 100%;
    min-width: unset;
  }
}
.sign-guide-column a:hover {
  color: #fff;
  text-decoration: underline;
  opacity: 1;
}
.sign-guide-column__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background: #e44d3c;
  border-radius: 5px 5px 0 0;
  padding: 0.5em 1.5em;
  line-height: 2rem;
  height: 65px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sign-guide-column__header {
    margin-bottom: 0;
    padding: 0.5em;
  }
}
.sign-guide-column__header span {
  width: calc(100% - 90px);
  text-align: center;
}
.sign-guide-column__header.__orange {
  background: #f88102;
  color: #fff;
}
.sign-guide-column__header.__orange.c-arrow__right-white-red::before {
  right: 250px;
}
@media screen and (max-width: 768px) {
  .sign-guide-column__header.__orange.c-arrow__right-white-red::before {
    right: 60px;
  }
}
.sign-guide-column__header.__orange.c-arrow__right-white-red::after {
  right: 251px;
}
@media screen and (max-width: 768px) {
  .sign-guide-column__header.__orange.c-arrow__right-white-red::after {
    right: 61px;
  }
}
@media screen and (max-width: 768px) {
  .sign-guide-column__header {
    gap: 0.5em;
  }
}
.sign-guide-column__header.c-arrow__right-white-red::before {
  right: 30px;
}
@media screen and (max-width: 768px) {
  .sign-guide-column__header.c-arrow__right-white-red::before {
    right: 20px;
  }
}
.sign-guide-column__header.c-arrow__right-white-red::after {
  right: 31px;
}
@media screen and (max-width: 768px) {
  .sign-guide-column__header.c-arrow__right-white-red::after {
    right: 21px;
  }
}
.sign-guide-column__content {
  padding: 3rem 2.5rem 4rem;
}
.sign-guide-column__icon {
  width: 36px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .sign-guide-column__icon {
    width: 2em;
    height: 2em;
    margin-left: 0;
  }
}
.sign-guide-column__item {
  font-size: 1.8rem;
}
.sign-guide-column__item p {
  margin: 0;
}
.sign-guide-column__item-content {
  min-width: 200px;
  max-width: 220px;
}
@media screen and (max-width: 768px) {
  .sign-guide-column__item-content {
    min-width: 220px;
    max-width: auto;
  }
}

.sign-qa-list {
  width: 860px;
  margin: 32px auto;
}
@media screen and (max-width: 768px) {
  .sign-qa-list {
    width: 100%;
    padding: 0 20px;
  }
}
.sign-qa-list .sign-qa-item {
  padding: 24px 0;
  border-bottom: 1px dashed #333333;
}
.sign-qa-list .sign-qa-item:first-child {
  border-top: none;
}
.sign-qa-list .sign-qa-item .sign-qa-q,
.sign-qa-list .sign-qa-item .sign-qa-a {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  margin-bottom: 8px;
}
.sign-qa-list .sign-qa-item .sign-qa-a {
  align-items: flex-start;
  margin-top: 10px;
}
.sign-qa-list .sign-qa-item .sign-qa-q {
  font-weight: bold;
}
.sign-qa-list .sign-qa-item .sign-qa-q .sign-qa-icon {
  background: #ffc2b5;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.sign-qa-list .sign-qa-item .sign-qa-a {
  color: #333;
}
.sign-qa-list .sign-qa-item .sign-qa-a .sign-qa-icon {
  background: #dd2c00;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.sign-results {
  margin-bottom: 70px;
}

.sign-results__columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
  background: #f5f5f5;
}

.sign-results__column {
  background: #efefef;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sign-results__column {
    width: calc((100% - 20px) / 2);
  }
}
.sign-results__column:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.sign-results__column:nth-of-type(odd) {
  background: #e3e3e3;
}
@media screen and (max-width: 768px) {
  .sign-results__column:nth-child(1) {
    background: #e3e3e3;
  }
}
@media screen and (max-width: 768px) {
  .sign-results__column:nth-child(2) {
    background: #efefef;
  }
}
@media screen and (max-width: 768px) {
  .sign-results__column:nth-child(3) {
    background: #efefef;
  }
}
@media screen and (max-width: 768px) {
  .sign-results__column:nth-child(4) {
    background: #e3e3e3;
  }
}
.sign-results__column a {
  color: #222;
}
.sign-results__column a:hover {
  text-decoration: none;
}

.sign-results__image {
  width: 100%;
  height: 495px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.sign-results__image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
}

.sign-results__text {
  background: #fff;
  width: calc(100% - 40px);
  height: 160px;
  padding: 1rem 0 1.5rem 0;
  border-radius: 8px;
  margin: 10px 20px;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  padding: 15px;
}
.sign-results__text h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin: 0;
  border-bottom: 1px solid #333;
}
.sign-results__text p {
  font-size: 1.6rem;
  color: #222;
  margin: 10px 0 0 0;
  line-height: 1.5;
}

.sign-original {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sign-original .sign-text-catch {
    padding-left: 4.2rem;
    text-align: left;
    background: url("https://tools.itembox.design/item/category/store-promotion/promotion-sign/img/ilust_01_sp.png?version=20241001") no-repeat left center;
  }
}
.sign-original .sign__header-orange img {
  margin: 0 10px;
  width: 30px;
}
.sign-original-flow__columns {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin: 2rem auto;
  width: 100%;
  margin: 20px auto 40px;
}
@media screen and (max-width: 768px) {
  .sign-original-flow__columns {
    flex-direction: column;
    align-items: center;
  }
}
.sign-original-flow__column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fcf4ea;
  border-radius: 8px;
  width: calc((100% - 30px) / 4);
  border: 2px solid #f98c0b;
}
@media screen and (max-width: 768px) {
  .sign-original-flow__column {
    width: calc(100% - 40px);
    z-index: 5;
  }
}
.sign-original-flow__column h3 {
  position: relative;
  display: block;
  background: #f98c0b;
  border-radius: 6px 6px 0 0;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
  width: 100%;
  padding: 15px 20px 15px 60px;
}
.sign-original-flow__column h3 .__no {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #f98c0b;
  background: #fff;
  border-radius: 50%;
  padding: 0 10px 0 9px;
  line-height: 30px;
  margin-right: 20px;
  width: 30px;
  height: 30px;
}
.sign-original-flow__column p {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 0 0 6px 6px;
  color: #222;
  padding: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .sign-original-flow__column p {
    font-weight: normal;
  }
}
.sign-original-flow__column p span.small {
  font-size: 1.4rem;
}
.sign-original-flow__column .image {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: auto;
  padding: 0 20px 20px;
}
.sign-original-flow__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sign-original__columns {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
  justify-content: flex-start;
  margin: 2rem auto;
  width: 860px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .sign-original__columns {
    width: 100%;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.sign-original__column {
  background: #fce9d3;
  border-radius: 8px;
  width: calc((100% - 40px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
}
@media screen and (max-width: 768px) {
  .sign-original__column {
    width: calc((100% - 20px) / 2);
    padding: 2rem 1rem;
  }
}
.sign-original__column h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #222;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sign-original__column h3 {
    font-size: 1.6rem;
  }
}

.sign-fukidashi__container {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 40px auto 30px;
}
@media screen and (max-width: 768px) {
  .sign-fukidashi__container {
    margin: 20px auto 0;
  }
}

.sign-fukidashi__bg {
  background: url("https://tools.itembox.design/item/category/store-promotion/promotion-sign/img/ilust_01.png") no-repeat bottom right;
  background-size: contain;
  width: 930px;
  height: 100px;
  position: absolute;
  top: -20px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .sign-fukidashi__bg {
    display: none;
  }
}

.sign-fukidashi {
  position: relative;
  margin: 0 auto;
  width: 440px;
  padding: 0.5rem;
  border: 1px solid #333;
  border-radius: 50px;
}
.sign-fukidashi ::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 29px;
  height: 17px;
  background: url("https://tools.itembox.design/item/category/store-promotion/promotion-sign/img/ico_fukidashi.png") no-repeat center center;
}
@media screen and (max-width: 768px) {
  .sign-fukidashi {
    width: calc(100% - 20px);
    padding: 1rem;
  }
}
.sign-fukidashi h3 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #222;
  margin: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sign-fukidashi h3 {
    font-size: 1.6rem;
  }
}
.sign-fukidashi .__orange {
  color: #f98c0b;
}
.sign-fukidashi .__no {
  font-size: 2rem;
}

.menu-book-item-header {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .menu-book-item-header {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.menu-book-item .c-arrow__right-red::before {
  right: 10px;
}
.menu-book-item .c-arrow__right-red::after {
  right: 10px;
}
.menu-book-item-column {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: 2rem 0 4rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media screen and (max-width: 768px) {
  .menu-book-item-column {
    flex-direction: column;
  }
}
.menu-book-item-column a {
  width: 32.6%;
  min-width: 260px;
  color: #222;
  text-decoration: none;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .menu-book-item-column a {
    width: 100%;
  }
}
.menu-book-item-column__item {
  display: flex;
  gap: 5%;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  box-sizing: border-box;
}
.menu-book-item-column__item:hover {
  background: #f7e8e3;
}
.menu-book-item-column__item-content h3 {
  font-weight: bold;
  margin: 3px 0;
}
.menu-book-item-column__item-content .price {
  font-weight: bold;
  margin-bottom: 3px;
}

.bnr-container {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .bnr-container {
    margin-top: 40px;
  }
  .bnr-container img {
    width: 100%;
  }
}

.c-button__primary {
  width: 400px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-button__primary {
    width: 100%;
  }
}/*# sourceMappingURL=promotion-sign.css.map */