@charset "UTF-8";
/*
* layout/l-wrap.css
*/
.l-curry-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
  color: #251e1c;
  transition-property: opacity;
  transition-duration: 1.5s;
  transition-timing-function: ease-out;
}
body.is-load .l-curry-wrap {
  opacity: 1;
}
.l-curry-wrap--pdt1 {
  padding-top: 7.5%;
}
@media screen and (max-width: 959.98px) {
  .l-curry-wrap--pdt1 {
    padding-top: 44px;
    padding-top: min(44px, 12.2222222222%);
  }
}
@media print, (min-width: 1200px) {
  .l-curry-wrap--pdt1 {
    padding-top: 90px;
  }
}
.l-curry-wrap--pdt2 {
  padding-top: 120px;
}
/*
* layout/l-curry-header.css
*/
.l-curry-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
}
.l-curry-header__inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.l-curry-header__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #534741;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media print, (min-width: 960px) {
  .l-curry-header.is-stuck .l-curry-header__inner::before {
    opacity: 0.7;
  }
}
.l-curry-header__sizer {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 7.5%;
  container-type: inline-size;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__sizer {
    padding-bottom: 44px;
    padding-bottom: min(44px, 12.2222222222%);
  }
}
@media print, (min-width: 1200px) {
  .l-curry-header__sizer {
    padding-bottom: 90px;
  }
}

.l-curry-header-sticky {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1.8333333333% 0 5.4166666667%;
}

.l-curry-header-sticky-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.l-curry-header.is-stuck .l-curry-header-sticky-top {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-curry-header-sticky-top__link {
  display: inline-block;
}
.l-curry-header-sticky-top__link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-curry-header-sticky-top__link:any-link:hover {
    opacity: 0.6;
  }
}
.l-curry-header-sticky-top__link-img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.l-curry-header-sticky__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6470588235rem;
  gap: 2.3333333333cqi;
  line-height: 1;
}
.l-curry-header-sticky__nav-item {
  flex: 0 0 15.8333333333cqi;
}
.l-curry-header-sticky__nav-link {
  position: relative;
  display: inline-block;
}
.l-curry-header-sticky__nav-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  background: #fff;
  mix-blend-mode: soft-light;
  pointer-events: none;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.l-curry-header-sticky__nav-link:any-link:hover::after {
  opacity: 1;
}
.l-curry-header-sticky__nav-link-img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.l-curry-header__hamburger {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 9.1666666667%;
  transform: translateY(-50%);
  width: 3%;
  height: 0;
  padding: 0 0 3%;
  border: none;
  cursor: pointer;
  background: url("../img/btn_header_hamburger.svg?d=202608011230") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__hamburger {
    right: auto;
    left: 0;
    width: 13.3333333333%;
    max-width: 48px;
    padding-bottom: min(44px, 12.2222222222%);
    background-size: 45.8333333333%;
  }
}
@media print, (min-width: 1200px) {
  .l-curry-header__hamburger {
    right: 110px;
    width: 36px;
    padding-bottom: 36px;
  }
}
body.is-gnav-open .l-curry-header__hamburger {
  visibility: hidden;
}
.l-curry-header__hamburger {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-curry-header__hamburger:hover {
    opacity: 0.6;
  }
}

.l-curry-header__close {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 9.1666666667%;
  z-index: 2;
  width: 3%;
  height: 0;
  margin-top: 3.5%;
  padding: 0 0 3%;
  background: none;
  border: none;
  cursor: pointer;
  background: url("../img/btn_header_hamburger_close.svg?d=202608011230") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__close {
    right: 0;
    width: 18.275862069%;
    max-width: 53px;
    margin-top: 0;
    padding-bottom: min(49px, 16.8965517241%);
    background-size: 24.5283018868%;
  }
}
@media print, (min-width: 1200px) {
  .l-curry-header__close {
    right: 110px;
    width: 36px;
    margin-top: 42px;
    padding-bottom: 36px;
  }
}
.l-curry-header__close {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-curry-header__close:hover {
    opacity: 0.6;
  }
}
body.is-gnav-open .l-curry-header__close {
  visibility: visible;
}

.l-curry-header__spacer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.l-curry-header__menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  outline: none;
  pointer-events: none;
  background: #534741;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__menu {
    width: 80.5555555556%;
    font-size: 1.1764705882rem;
    font-size: clamp(0.5882352941rem, 5.5555555556cqi, 2.3529411765rem);
  }
}
body.is-gnav-open .l-curry-header__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-curry-header__menu-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 120px);
  margin: 0 auto;
  max-width: 21.8em;
  overflow-y: auto;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__menu-wrap {
    max-width: none;
  }
}
@media print, (min-width: 1200px) {
  .l-curry-header__menu-wrap {
    height: calc(100vh - 90px);
  }
}

@media screen and (max-width: 959.98px) {
  .l-curry-header__menu-title {
    position: relative;
    width: 100%;
    height: 22px;
  }
}
@media print, (min-width: 960px) {
  .l-curry-header__menu-title {
    display: none;
  }
}

.l-curry-header__nav {
  position: relative;
  z-index: 1;
  display: block;
  width: 91.3043478261%;
  margin-inline: 0 auto;
  padding: 0.5769230769em 0.9615384615em 0.9615384615em;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2.8em 0.7em 1.45em;
  }
}

.l-curry-header__nav-list1 {
  display: flex;
  list-style: none;
  flex-direction: column;
  margin: 0 auto 0 0;
  padding: 0;
  font-weight: bold;
  line-height: 1.1538461538;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__nav-list1 {
    margin: 0;
  }
}

.l-curry-header__nav-list1-item {
  position: relative;
}

.l-curry-header__nav-list1-link {
  position: relative;
  display: block;
  padding: 0.55em 0 0.55em 1em;
  text-decoration: none;
  color: inherit;
}
.l-curry-header__nav-list1-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.05em;
  background: #fff;
  pointer-events: none;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.l-curry-header__nav-list1-link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-curry-header__nav-list1-link:any-link:hover {
    opacity: 0.6;
  }
}
.l-curry-header__nav-list1-item--1 .l-curry-header__nav-list1-link-img {
  width: 8.8em;
}
.l-curry-header__nav-list1-item--2 .l-curry-header__nav-list1-link-img {
  width: 6.5em;
}
.l-curry-header__nav-list1-item--3 .l-curry-header__nav-list1-link-img {
  width: 8em;
}
.l-curry-header__nav-list1-item--4 .l-curry-header__nav-list1-link-img {
  width: 9.25em;
}

.l-curry-header__nav-list2 {
  position: relative;
  margin: 3.6875em auto 0 0;
  font-size: 0.3076923077em;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__nav-list2 {
    margin: auto 0 0;
    font-size: 0.5277777778em;
  }
}

.l-curry-header__nav-list2-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 2.1875em;
  margin: 0;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__nav-list2-list {
    gap: 2.1052631579em;
    margin-top: 3.6875em;
  }
}

.l-curry-header__nav-list2-list-item {
  position: relative;
}

.l-curry-header__nav-list2-list-link {
  position: relative;
  display: inline-block;
  width: 1.375em;
  text-decoration: none;
  color: inherit;
}
.l-curry-header__nav-list2-list-link--text {
  width: auto;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__nav-list2-list-link--text {
    font-size: 0.5789473684em;
  }
}
.l-curry-header__nav-list2-list-link-img {
  width: 100%;
  vertical-align: bottom;
}
.l-curry-header__nav-list2-list-link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-curry-header__nav-list2-list-link:any-link:hover {
    opacity: 0.6;
  }
}

.l-curry-header__nav-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
  border-radius: 5em;
  background: #6455a0;
  box-shadow: inset 0 0 0 2px #6455a0;
  transition-property: background, color, opacity;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media screen and (max-width: 959.98px) {
  .l-curry-header__nav-btn {
    font-size: 1.1111111111em;
    min-width: 10em;
    min-height: 2em;
    max-width: 90%;
    margin-top: 1.25em;
    padding: 0.4em 1em;
  }
}
@media print, (min-width: 960px) {
  .l-curry-header__nav-btn {
    font-size: 1.125em;
    min-width: 7.7777777778em;
    height: 2.2222222222em;
    max-height: 100%;
    padding: 0.5em 1em;
  }
}
@media (any-hover: hover) {
  .l-curry-header__nav-btn:hover {
    background: #fff;
    color: #6455a0;
  }
}

.l-curry-header-loop {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

/*
* layout/l-footer.css
*/
@media screen and (max-width: 767.98px) {
  .corporateFooter {
    padding-bottom: 36.1111111111%;
  }
}

/*
* layout/l-main.css
*/
.l-curry-main {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 8.8333333333%;
}
@media screen and (max-width: 767.98px) {
  .l-curry-main {
    padding-bottom: 0;
  }
}
@media print, (min-width: 1200px) {
  .l-curry-main {
    padding-bottom: 106px;
  }
}
.l-curry-main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 0;
  margin-bottom: 5.0833333333%;
  padding-bottom: 4%;
  background: url("../img/bg_1.png?d=202608011230") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .l-curry-main::before {
    content: none;
  }
}
@media print, (min-width: 1200px) {
  .l-curry-main::before {
    margin-bottom: 61px;
    padding-bottom: 48px;
  }
}

.c-img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767.98px) {
  .c-img {
    width: 100%;
  }
}

.c-fit {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  font-family: "object-fit: contain;";
  vertical-align: middle;
}

/*
 * object/component/_maxim.scss
 */
.c-maxim-xxs {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-maxim-xxs {
    max-width: 0px;
  }
}

.c-maxim-xs {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-maxim-xs {
    max-width: 0px;
  }
}

.c-maxim-s {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-maxim-s {
    max-width: 0px;
  }
}

.c-maxim-dssp {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-maxim-dssp {
    max-width: 360px;
  }
}

.c-maxim-head {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-head {
    max-width: 960px;
  }
}

.c-maxim-m {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-m {
    max-width: 0px;
  }
}

.c-maxim-l {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-l {
    max-width: 0px;
  }
}

.c-maxim-lm {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-lm {
    max-width: 0px;
  }
}

.c-maxim-xl {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-xl {
    max-width: 0px;
  }
}

.c-maxim-xxl {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-xxl {
    max-width: 0px;
  }
}

.c-maxim-dspc {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-dspc {
    max-width: 1200px;
  }
}

/*
 * object/component/_width.scss
 */
.c-width {
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-width {
    width: 90%;
  }
}

.c-width-mb {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-mb {
    width: 90%;
  }
}

.c-width-pc {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-pc {
    width: 90%;
  }
}

.c-width-xxs {
  margin-inline: auto;
}
.c-width-xs {
  margin-inline: auto;
}
.c-width-s {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-width-s {
    width: 0%;
  }
}

.c-width-head {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-head {
    width: 80%;
  }
}

.c-width-l {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-l {
    width: 0%;
  }
}

.c-width-lm {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-lm {
    width: 0%;
  }
}

.c-width-l {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-l {
    width: 0%;
  }
}

.c-width-xl {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-xl {
    width: 0%;
  }
}

.c-width-xxl {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-xxl {
    width: 0%;
  }
}

/*
 * object/component/_c-link.scss
 */
.c-link1 {
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  line-height: inherit;
}
.c-link1--underline {
  text-decoration: underline;
}

.c-link1:any-link,
button.c-link1 {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .c-link1:any-link:hover,
  button.c-link1:hover {
    opacity: 0.6;
  }
}

.c-link2 {
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 0;
  appearance: none;
  color: #6455a0;
  text-decoration: underline;
}

/*
 * object/component/_c-button.scss
 */
.c-button1 {
  display: inline-block;
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 14.8764363199em;
  min-height: 2.558747047em;
  padding: 0.6545631981em 1.4281378867em;
  font-size: 0.9885352941rem;
  font-size: clamp(0.4942676471rem, 1.400425cqi, 0.9885352941rem);
  font-weight: 900;
  line-height: 1.1901149056;
  color: #fff;
  background: #9e222b;
  border-radius: 100vh;
}
@media screen and (max-width: 767.98px) {
  .c-button1 {
    width: 100%;
    max-width: 14.8953132212em;
    min-width: auto;
    min-height: 2.5874487755em;
    padding: 0.5384690695em 1.3147037021em;
    font-size: 0.8411647059rem;
    font-size: clamp(0.4205823529rem, 3.9721666667cqi, 1.6823294118rem);
  }
}
.c-button1__arrow {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 1.1901149056em;
  width: 0.7140689434em;
  height: 100%;
  background: url("../img/icon_arrow_1_right.svg?d=202608011230") no-repeat center;
  background-size: contain;
}

.c-buttons1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 2.5% auto 0;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .c-buttons1 {
    margin-top: 5%;
  }
}
.c-buttons1__item {
  width: 100%;
  text-align: center;
}
.c-buttons1__item + .c-buttons1__item {
  margin-top: 4.1666666667%;
}
@media screen and (max-width: 767.98px) {
  .c-buttons1__item + .c-buttons1__item {
    margin-top: 13.8888888889%;
  }
}
.c-buttons1--row {
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .c-buttons1--row {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.c-buttons1--row .c-buttons1__item {
  width: auto;
}
@media screen and (max-width: 767.98px) {
  .c-buttons1--row .c-buttons1__item {
    width: 100%;
  }
}
.c-buttons1--row .c-buttons1__item + .c-buttons1__item {
  margin: 0 0 0 2.75%;
}
@media screen and (max-width: 767.98px) {
  .c-buttons1--row .c-buttons1__item + .c-buttons1__item {
    margin: 5.8333333333% 0 0 0;
  }
}

/*
 * object/component/_c-popup.scss
 */
/************************************************\
  Micromodal.js用のデフォルトスタイル
\************************************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/************************************************\
  Demo Animation Style
\************************************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/************************************************\
  以下、カスタムスタイル
\************************************************/
body.is-modal:not(.is-modal-nofix) {
  overflow: hidden;
}

.c-popup1__overlay {
  overflow-y: auto;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.7);
}
html.is-modal-nofix .c-popup1__overlay {
  background: none;
}
.c-popup1__overlay--bg-none {
  background: none;
}

.c-popup1__container {
  position: relative;
  max-height: none;
  min-height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
  overflow: visible;
  container-type: inline-size;
}
@media screen and (max-width: 767.98px) {
  .c-popup1__container {
    width: 91.6666666667%;
    padding: 100px 0;
  }
}
@media print, (min-width: 768px) {
  .c-popup1__container {
    width: 90%;
    max-width: 955px;
    padding: 156px 0;
  }
}
.c-popup1[aria-hidden=false] .c-popup1__container {
  animation: none;
}

.c-popup1__bg {
  position: relative;
  width: 100%;
  padding: 0;
  background: #fff;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .c-popup1__bg {
    font-size: 0.8235294118rem;
    font-size: clamp(0.4117647059rem, 4.2424242424cqi, 1.6470588235rem);
    line-height: 1.4285714286;
  }
}
@media print, (min-width: 768px) {
  .c-popup1__bg {
    font-size: 0.9172411765rem;
    font-size: clamp(0.4586205882rem, 1.6327853403cqi, 0.9172411765rem);
    line-height: 1.9285773836;
  }
}
.c-popup1__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 9.2px 9.2px 6.5px #5c6652;
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.4;
}

.c-popup1__inner {
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .c-popup1__inner {
    padding: 2.32em 1em 1em;
  }
}
@media print, (min-width: 768px) {
  .c-popup1__inner {
    padding: 1.625em;
  }
}

.c-popup1__content {
  margin: 0 auto;
  line-height: inherit;
  color: inherit;
}

.c-popup1-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-popup1-card__inner {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .c-popup1-card__inner {
    flex-direction: column-reverse;
    gap: 1.12em;
  }
}
@media print, (min-width: 768px) {
  .c-popup1-card__inner {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 1.1875em;
  }
}
.c-popup1-card__content {
  flex: 1 1 auto;
  min-width: 71.4285714286%;
}
.c-popup1-card__head {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767.98px) {
  .c-popup1-card__head {
    margin-bottom: 0.56em;
  }
}
@media print, (min-width: 768px) {
  .c-popup1-card__head {
    margin-bottom: 0.5625em;
  }
}
.c-popup1-card__time {
  display: block;
  margin: 0;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .c-popup1-card__time {
    font-size: inherit;
  }
}
@media print, (min-width: 768px) {
  .c-popup1-card__time {
    font-size: 0.875em;
  }
}
.c-popup1-card__title {
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  .c-popup1-card__title {
    font-size: 1.32em;
  }
}
@media print, (min-width: 768px) {
  .c-popup1-card__title {
    font-size: 1.25em;
  }
}
.c-popup1-card__para1 {
  margin: 0;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767.98px) {
  .c-popup1-card__para1 {
    margin: -0.44em 0 -1em;
  }
}
@media print, (min-width: 768px) {
  .c-popup1-card__para1 {
    margin: -0.4375em 0 -1em;
  }
}
.c-popup1-card__pic {
  position: relative;
  display: block;
  min-width: 26.1904761905%;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
.c-popup1-card__pic-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.c-popup1__close {
  position: absolute;
  z-index: 1;
  background: url("../img/btn_close_1.svg?d=202608011230") no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: 0.2s linear;
}
@media screen and (max-width: 767.98px) {
  .c-popup1__close {
    top: 0.48em;
    right: 0.48em;
    width: 1.84em;
    height: 1.84em;
  }
}
@media print, (min-width: 768px) {
  .c-popup1__close {
    top: 0.7695711565em;
    right: 0.7695711565em;
    width: 4.0402485715em;
    height: 4.0402485715em;
  }
}
.c-popup1__close--sp {
  z-index: 1002;
  display: none;
}
@media screen and (max-width: 767.98px) {
  .c-popup1__close--sp {
    display: block;
    position: fixed;
    top: auto;
    bottom: 0.64em;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 1.6em;
  }
}
.c-popup1__close {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .c-popup1__close:hover {
    opacity: 0.6;
  }
}

.c-popup2__overlay {
  z-index: 1002;
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.7);
}

.c-popup2__container {
  position: relative;
  width: calc(177.7777777778vh - 213.3333333333px);
  height: calc(56.25vw - 114.75px);
  max-width: calc(100% - 204px);
  max-height: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0);
  overflow: visible;
}
@media (orientation: portrait) {
  .c-popup2__container {
    width: calc(100% - 34px);
    height: calc(56.25vw - 19.125px);
    max-width: 100%;
  }
}

.c-popup2__bg {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow-y: auto;
  background: #000;
}

.c-popup2__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-popup2__content {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-popup2__container iframe,
.c-popup2__container video {
  width: 100%;
  height: 100%;
  vertical-align: top;
  border-radius: inherit;
}

.c-popup2__content {
  margin: 0;
  border-radius: 3px;
  background: #fff;
}

.c-popup2__close {
  position: absolute;
  top: auto;
  bottom: 100%;
  left: calc(100% + 16px);
  width: 52px;
  height: 52px;
  border-radius: 3px;
  background: url("../img/icon_close_1_white.svg?d=202608011230") no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: 0.2s linear;
}
@media (orientation: portrait) {
  .c-popup2__close {
    display: none;
    position: fixed;
    top: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
  }
}
.c-popup2__close {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .c-popup2__close:hover {
    opacity: 0.6;
  }
}
.c-popup2__close--sp {
  display: none;
}
@media (orientation: portrait) {
  .c-popup2__close--sp {
    display: block;
  }
}

/*
 * object/component/_c-ani.scss
 */
.c-ani-fuwafuwa1 {
  animation: fuwafuwa 3s ease-in-out infinite;
  scale: 1;
}
.c-ani-fuwafuwa1--delay1 {
  animation-delay: 0.3s;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.c-ani-fuwafuwa2 {
  animation: fuwafuwa2 3s ease-in-out infinite;
  scale: 1;
}
.c-ani-fuwafuwa2--delay1 {
  animation-delay: 0.3s;
}

@keyframes fuwafuwa2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.c-ani-yurayura {
  animation: yurayura 1.5s ease-in-out infinite;
  scale: 1;
}
.c-ani-yurayura--delay1 {
  animation-delay: 0.3s;
}
.c-ani-yurayura--delay2 {
  animation-delay: 0.6s;
}

@keyframes yurayura {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
.c-ani-dokundokun {
  animation: dokundokun 1.3s ease infinite;
}
.c-ani-dokundokun--delay1 {
  animation-delay: 0.4s;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  15% {
    transform: scale(1.2);
    opacity: 1;
  }
  30% {
    transform: scale(1);
    opacity: 1;
  }
  45% {
    transform: scale(1.2);
    opacity: 1;
  }
  70% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.c-ani-kiraan1 {
  position: relative;
  overflow: hidden;
  mask-image: url("../img/bg_img_ai_1_1.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 767.98px) {
  .c-ani-kiraan1 {
    mask-image: url("../img/bg_img_ai_1_1_sp.svg");
  }
}
.c-ani-kiraan1::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 0;
  width: 50%;
  height: 400%;
  background-color: #fff;
  animation: kiran1 1.3s ease-in-out infinite;
}
@media screen and (max-width: 767.98px) {
  .c-ani-kiraan1::before {
    width: 30%;
    animation: kiran1-sp 1.3s linear infinite;
  }
}

@keyframes kiran1 {
  0% {
    transform: translate(-200%, -50%) rotate(-45deg);
    opacity: 1;
  }
  50% {
    transform: translate(400%, -50%) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translate(-200%, -50%) rotate(-45deg);
    opacity: 0;
  }
}
@keyframes kiran1-sp {
  0% {
    transform: translate(-200%, -50%) rotate(-45deg);
    opacity: 1;
  }
  75% {
    transform: translate(400%, -50%) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translate(-200%, -50%) rotate(-45deg);
    opacity: 0;
  }
}
.c-ani-kiraan2 {
  position: relative;
  overflow: hidden;
}
.c-ani-kiraan2::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 0;
  width: 400%;
  height: 200%;
  background-color: #fff;
  animation: kiran2 2.5s ease-in-out infinite;
}
.c-ani-kiraan2--delay::before {
  animation-delay: 0.3s;
}

@keyframes kiran2 {
  0% {
    transform: translate(-20%, -50%) scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: translate(-20%, -50%) scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: translate(-20%, -50%) scale(2) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translate(-20%, -50%) scale(8) rotate(45deg);
    opacity: 0;
  }
}
.c-ani-blinking1 {
  animation: blinking 0.5s ease-in-out infinite alternate;
}

@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-ani-blinking2 {
  animation: blink-simple 1s step-start infinite;
}

@keyframes blink-simple {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.c-ani-blinking3 {
  animation: scale-blink 1s infinite;
}

@keyframes scale-blink {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}
.c-ani-unun {
  animation: unun 3s linear infinite;
  transform-origin: 50% 100%;
}

@-webkit-keyframes unun {
  0% {
    -webkit-transform: rotate(0);
  }
  10% {
    -webkit-transform: rotate(6deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(6deg);
  }
  55% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0);
  }
}
@keyframes unun {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(6deg);
  }
  25% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(6deg);
  }
  55% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0);
  }
}
/*
* page/pg-index.css
*/
.pg-curry-bg1 {
  background: #f0e8cd;
}

.pg-curry-hero {
  position: relative;
  color: #fff;
}
.pg-curry-hero__sizer {
  position: relative;
  z-index: 1;
  container-type: inline-size;
}
.pg-curry-hero__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.pg-curry-hero__kv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 46.8333333333%;
  background: url("../img/bg_hero_1.png?d=202608011230") no-repeat center;
  background-size: contain;
  background-size: cover;
  background-position: bottom center;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-hero__kv {
    padding-bottom: 46.9444444444%;
    background-image: url("../img/bg_hero_1_sp.png?d=202608011230");
  }
}
@media print, (min-width: 1200px) {
  .pg-curry-hero__kv {
    padding-bottom: 562px;
  }
}
.pg-curry-hero__kv-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.pg-curry-hero__title {
  width: 69.5833333333%;
  margin: 16.1666666667% 0 0 6%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-hero__title {
    width: 88.3333333333%;
    margin: 23.6111111111% 0 0 9.1666666667%;
  }
}

.pg-curry-hero__product {
  position: absolute;
  top: 0;
  left: 0;
  width: 20.5833333333%;
  margin: 9% 0 0 1%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-hero__product {
    width: 29.1666666667%;
    margin: 10.5555555556% 0 0 0.2777777778%;
  }
}
.pg-curry-hero__product-balloon {
  position: absolute;
  top: 0;
  left: 0;
  width: 68.4210526316%;
  margin: -42.1052631579% 0 0 54.6558704453%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-hero__product-balloon {
    width: 84.7619047619%;
    margin: -34.2857142857% 0 0 68.5714285714%;
  }
}

.pg-curry-himitsu {
  position: relative;
}
.pg-curry-himitsu__sizer {
  position: relative;
  container-type: inline-size;
}
.pg-curry-himitsu__inner {
  position: relative;
  padding: 5.75% 0 11.1666666667%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu__inner {
    padding: 5.8333333333% 0 24.7222222222%;
  }
}
.pg-curry-himitsu-title1 {
  position: relative;
  z-index: 1;
  width: 38.5%;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-title1 {
    width: 69.4444444444%;
  }
}
.pg-curry-himitsu-title1__img {
  vertical-align: bottom;
}
.pg-curry-himitsu-title1__bg {
  position: absolute;
  top: 0;
  height: 0;
  left: 0;
  width: 14.5021645022%;
  margin: 0.2164502165% 0 0 7.7922077922%;
  padding-bottom: 17.9653679654%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/bg_ttl_himitsu_1.svg?d=202608011230");
}

.pg-curry-himitsu-box1 {
  position: relative;
  width: 84.9166666667%;
  margin: -2.75% auto 0;
  padding: 7.25% 0 11.4166666667%;
  font-size: 1.1684235294rem;
  font-size: clamp(0.5842117647rem, 1.6552666667cqi, 1.1684235294rem);
  background: #fff;
  container-type: inline-size;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box1 {
    width: 100%;
    margin-top: -5.8333333333%;
    padding: 8.8888888889% 0 31.9444444444%;
    font-size: 0.8823529412rem;
    font-size: clamp(0.4411764706rem, 4.1666666667cqi, 1.7647058824rem);
  }
}
.pg-curry-himitsu-box1::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 27.1835132483%;
  margin: 19.9214916585% -2.9440628067% 0 0;
  padding-bottom: 25.8096172718%;
  background: url("../img/img_himitsu_2.png?d=202608011230") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box1::before {
    top: auto;
    bottom: 0;
    width: 27.7777777778%;
    margin: 0 0 13.3333333333% 0;
    padding-bottom: 25.2777777778%;
    background-image: url("../img/img_himitsu_2_sp.png?d=202608011230");
    background-size: auto 100%;
    background-position: left center;
  }
}
.pg-curry-himitsu-box1__corner {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
}
.pg-curry-himitsu-box1__corner::before, .pg-curry-himitsu-box1__corner::after {
  display: inline-block;
  content: "";
  position: absolute;
  border-width: 34px;
}
.pg-curry-himitsu-box1__corner--top {
  top: 0;
}
.pg-curry-himitsu-box1__corner--top::before {
  top: 0;
  left: 0;
  border-left: 3.3366045142cqi solid #f0e8cd;
  border-bottom: 3.3366045142cqi solid rgba(255, 255, 255, 0);
}
.pg-curry-himitsu-box1__corner--top::after {
  top: 0;
  right: 0;
  border-right: 3.3366045142cqi solid #f0e8cd;
  border-bottom: 3.3366045142cqi solid rgba(255, 255, 255, 0);
}
.pg-curry-himitsu-box1__corner--bottom {
  bottom: 0;
}
.pg-curry-himitsu-box1__corner--bottom::before {
  bottom: 100%;
  left: 0;
  border-left: 3.3366045142cqi solid #f0e8cd;
  border-top: 3.3366045142cqi solid rgba(255, 255, 255, 0);
}
.pg-curry-himitsu-box1__corner--bottom::after {
  bottom: 100%;
  right: 0;
  border-right: 3.3366045142cqi solid #f0e8cd;
  border-top: 3.3366045142cqi solid rgba(255, 255, 255, 0);
}

.pg-curry-himitsu-title2 {
  position: relative;
  width: 59.3719332679%;
  margin: 0 0 3.532875368% 4.2198233562%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-title2 {
    width: 84.4444444444%;
    margin: 6.1111111111% auto 4.4444444444% 9.1666666667%;
  }
}
.pg-curry-himitsu-title2__img {
  vertical-align: bottom;
}
.pg-curry-himitsu-title2__bg {
  position: absolute;
  top: 0;
  height: 0;
  left: 0;
  width: 12.8925619835%;
  margin: -4.2975206612% 0 0 0.6611570248%;
  padding-bottom: 22.3140495868%;
  transform-origin: bottom right;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/bg_ttl_himitsu_2.svg?d=202608011230");
}

.pg-curry-himitsu-desc1 {
  position: relative;
  margin: 0 auto;
  padding: 0 5.0344355391em 0 7.6523420194em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-desc1 {
    padding: 0 1.9333333333em;
  }
}

.pg-curry-himitsu-para1 {
  margin: 0;
  font-weight: bold;
  line-height: 1.7142857143;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-para1 {
    line-height: 1.6;
  }
}
.pg-curry-himitsu-para1 + .pg-curry-himitsu-para1 {
  margin-top: 1.7142857143em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-para1 + .pg-curry-himitsu-para1 {
    margin-top: 1.6em;
  }
}
.pg-curry-himitsu-para1--mgb1-pc {
  margin-bottom: -0.4027548431em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-para1--mgb1-pc {
    margin-bottom: 0;
  }
}
.pg-curry-himitsu-para1__large {
  position: relative;
  display: inline-block;
  transform: translateY(0.0783134417em);
  padding-bottom: 0.3132537669em;
  font-size: 1.2857142857em;
  font-weight: 900;
  line-height: 1.3333333333;
  color: #6e3352;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-para1__large {
    padding-bottom: 0.4210526316em;
    font-size: 1.2666666667em;
    line-height: 1.2631578947;
  }
}
.pg-curry-himitsu-para1__large::before {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}
.pg-curry-himitsu-para1__large--1::before {
  width: 14.2922031137em;
  height: 0.3132537669em;
  background-image: url("../img/bg_himitsu_2_1.png?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-para1__large--1::before {
    width: 14.2105263158em;
    height: 0.3684210526em;
    background-image: url("../img/bg_himitsu_2_1_sp.png?d=202608011230");
  }
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-para1__large--2 {
    transform: none;
    letter-spacing: -0.075em;
  }
}
.pg-curry-himitsu-para1__large--2::before {
  width: 6.5783291044em;
  height: 0.3524104877em;
  background-image: url("../img/bg_himitsu_2_2.png?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-para1__large--2::before {
    width: 100%;
    height: 0.3684210526em;
    background-image: url("../img/bg_himitsu_2_1_sp.png?d=202608011230");
  }
}

.pg-curry-himitsu-collabo {
  position: absolute;
  top: 0;
  right: 0;
  width: 23.7487733072%;
  margin: -15.014720314% -8.3415112856% 0 0;
}
.pg-curry-himitsu-collabo:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .pg-curry-himitsu-collabo:any-link:hover {
    opacity: 0.6;
  }
}
.pg-curry-himitsu-collabo__img {
  vertical-align: bottom;
}

.pg-curry-himitsu-box2 {
  position: relative;
  width: 84.9166666667%;
  margin: 0 auto;
  container-type: inline-size;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2 {
    width: 100%;
  }
}

.pg-curry-himitsu-box2-title1 {
  position: relative;
  width: 72.9146221786%;
  margin: -10.0098135427% auto 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-title1 {
    width: 91.6666666667%;
    margin: -12.5% auto 0;
  }
}
.pg-curry-himitsu-box2-title1__img {
  margin-left: 1.6172506739%;
  vertical-align: bottom;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-title1__img {
    margin-left: 0;
  }
}
.pg-curry-himitsu-box2-title1__bg {
  position: absolute;
  top: 0;
  height: 0;
  left: 0;
  width: 9.5558546433%;
  margin: 4.7106325707% 0 0 8.0753701211%;
  padding-bottom: 13.8627187079%;
  transform-origin: bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/bg_ttl_himitsu_3.svg?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-title1__bg {
    margin-left: 6.9696969697%;
  }
}

.pg-curry-himitsu-box2-head1 {
  display: flex;
  justify-content: center;
  margin: 6.6732090285% auto 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-head1 {
    display: block;
    margin: 5.2777777778% auto 0;
  }
}
.pg-curry-himitsu-box2-head1__img {
  vertical-align: bottom;
}

.pg-curry-himitsu-box2-head1-title {
  font-size: 1.4188rem;
  font-size: clamp(0.7094rem, 2.3669872424cqi, 1.4188rem);
  font-weight: 900;
  line-height: 1.4705882353;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-head1-title {
    font-size: 1rem;
    font-size: clamp(0.5rem, 4.7222222222cqi, 2rem);
    line-height: 1.4705882353;
  }
}
.pg-curry-himitsu-box2-head1-title__img {
  width: 11.7908257185em;
  transform: translateX(0.7462810329em);
  vertical-align: bottom;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-head1-title__img {
    transform: none;
  }
}
.pg-curry-himitsu-box2-head1-title__text {
  display: block;
  margin: 1.3681818936em auto 0;
  transform: translateX(0.9950413771em);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-head1-title__text {
    transform: none;
    margin-top: 0.7058823529em;
    padding-left: 0.3529411765em;
  }
}

.pg-curry-himitsu-box2-head1-pic {
  flex: 0 0 34.0529931305%;
  margin-top: -0.7850834151%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-head1-pic {
    width: 68.0555555556%;
    margin: 0.8333333333% auto 0;
  }
}
.pg-curry-himitsu-box2-head1-pic__img {
  transform: translateX(13.8328530259%);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-head1-pic__img {
    transform: none;
  }
}

.pg-curry-himitsu-box2-para1 {
  width: 70.8537782139%;
  transform: translateX(1.2174180485em);
  margin: 0.7048209755em auto 0;
  font-size: 0.9180470588rem;
  font-size: clamp(0.4590235294rem, 1.5315799804cqi, 0.9180470588rem);
  font-weight: bold;
  line-height: 1.9090909091;
  letter-spacing: -0.045em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-box2-para1 {
    width: 92.5%;
    transform: none;
    margin-top: 1.6428571429em;
    font-size: 0.8235294118rem;
    font-size: clamp(0.4117647059rem, 3.8888888889cqi, 1.6470588235rem);
    line-height: 1.7857142857;
    letter-spacing: -0.05em;
  }
}

.pg-curry-himitsu-buttons {
  padding-left: 2.5%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-himitsu-buttons {
    padding-left: 0;
  }
}

.pg-curry-ai {
  position: relative;
  background: #5e513f;
  color: #fff;
}
.pg-curry-ai__sizer {
  position: relative;
  container-type: inline-size;
}
.pg-curry-ai__inner {
  position: relative;
  padding: 5.4166666667% 0 5.9166666667%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai__inner {
    padding: 14.1666666667% 0 3.0555555556%;
  }
}
.pg-curry-ai-title1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 38.5%;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai-title1 {
    transform: translate(-50%, -58%);
    width: 69.4444444444%;
  }
}
.pg-curry-ai-title1__img {
  vertical-align: bottom;
}
.pg-curry-ai-title1__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  width: 10.1731601732%;
  margin: -4.9783549784% 15.1515151515% 0 0;
  padding-bottom: 20.1298701299%;
  transform-origin: bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/bg_ttl_ai_1.svg?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai-title1__bg {
    margin-left: 9.2%;
  }
}

.pg-curry-ai-desc1 {
  position: relative;
  margin: 0 auto;
  font-size: 1.1684235294rem;
  font-size: clamp(0.5842117647rem, 1.6552666667cqi, 1.1684235294rem);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai-desc1 {
    padding: 0 0.7333333333em;
    font-size: 0.8823529412rem;
    font-size: clamp(0.4411764706rem, 4.1666666667cqi, 1.7647058824rem);
  }
}

.pg-curry-ai-para1 {
  width: fit-content;
  margin: 0 auto;
  font-weight: bold;
  line-height: 1.7142857143;
  letter-spacing: -0.05em;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai-para1 {
    width: 100%;
    line-height: 1.6;
    text-align: left;
  }
}

.pg-curry-ai-pic1 {
  position: relative;
  width: 89%;
  margin: 1.4166666667% auto 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai-pic1 {
    width: 88.3333333333%;
    margin: 3.3333333333% auto 0;
  }
}
.pg-curry-ai-pic1__item {
  font-size: 0;
}
.pg-curry-ai-pic1__item--1 {
  position: absolute;
  top: 0;
  left: 0;
  margin: 4.4007490637% 0 0 41.3857677903%;
  width: 5.8988764045%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai-pic1__item--1 {
    width: 13.8364779874%;
    margin: 102.2012578616% 0 0 36.4779874214%;
  }
}
.pg-curry-ai-pic1__item--2 {
  position: absolute;
  top: 0;
  left: 0;
  margin: 3.3707865169% 0 0 46.2546816479%;
  width: 7.6779026217%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai-pic1__item--2 {
    width: 18.2389937107%;
    margin: 97.4842767296% 0 0 54.4025157233%;
  }
}
.pg-curry-ai-pic1__item--3 {
  position: absolute;
  top: 0;
  right: 0;
  margin: 3.9325842697% 30.8988764045% 0 0;
  width: 13.9513108614%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai-pic1__item--3 {
    width: 33.0188679245%;
    margin: 80.1886792453% -5.9748427673% 0 0;
  }
}
.pg-curry-ai-pic1__img {
  width: 100%;
}

.pg-curry-ai-info {
  position: relative;
  width: 88.5833333333%;
  margin: 1.0833333333% auto 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-ai-info {
    width: 88.0555555556%;
    margin-top: 3.0555555556%;
  }
}

.pg-curry-nutrition {
  position: relative;
  background: #f0e8cd;
}
.pg-curry-nutrition__sizer {
  position: relative;
  container-type: inline-size;
}
.pg-curry-nutrition__inner {
  position: relative;
  padding: 8.3333333333% 0 4.6666666667%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-nutrition__inner {
    padding: 16.3888888889% 0 8.0555555556%;
  }
}
.pg-curry-nutrition-box1 {
  position: relative;
  width: 86.75%;
  margin: 0 auto;
  padding: 4.75% 0 1.0833333333%;
  border-radius: 33px;
  border-radius: 2.7654166667cqi;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-nutrition-box1 {
    width: 95%;
    padding: 15.2777777778% 0 8.0555555556%;
    border-radius: 21px;
    border-radius: 5.8333333333cqi;
  }
}

.pg-curry-nutrition-title1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -54%);
  width: 44.3804034582%;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-nutrition-title1 {
    transform: translate(-50%, -48%);
    width: 73.0994152047%;
  }
}
.pg-curry-nutrition-title1__img {
  vertical-align: bottom;
}
.pg-curry-nutrition-title1__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 18.6147186147%;
  margin: -3.4632034632% 0 0 3.4632034632%;
  padding-bottom: 19.9134199134%;
  transform-origin: bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/bg_ttl_nutrition_1.svg?d=202608011230");
}

.pg-curry-nutrition-desc1 {
  position: relative;
  margin: 0 auto;
  padding: 0 1em;
  font-size: 1.1684235294rem;
  font-size: clamp(0.5842117647rem, 1.6552666667cqi, 1.1684235294rem);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-nutrition-desc1 {
    padding: 0 0.7333333333em;
    font-size: 0.8823529412rem;
    font-size: clamp(0.4411764706rem, 4.1666666667cqi, 1.7647058824rem);
  }
}

.pg-curry-nutrition-para1 {
  width: fit-content;
  margin: 0 auto;
  transform: translateX(1em);
  font-weight: bold;
  line-height: 1.7142857143;
  letter-spacing: -0.05em;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-nutrition-para1 {
    transform: none;
    width: 100%;
    line-height: 1.6;
    letter-spacing: -0.073em;
    text-align: left;
  }
}

.pg-curry-nutrition-pic1 {
  width: 89.0489913545%;
  margin: 2.6897214217% auto 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-nutrition-pic1 {
    width: 93.2748538012%;
    margin-top: 7.0175438596%;
  }
}
.pg-curry-nutrition-pic1__img {
  transform: translateX(1.5369836695%);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-nutrition-pic1__img {
    transform: translateX(2.0467836257%);
  }
}

.pg-curry-recipe {
  position: relative;
  background: #fff;
}
.pg-curry-recipe__sizer {
  position: relative;
  container-type: inline-size;
}
.pg-curry-recipe__inner {
  position: relative;
  padding: 3.5833333333% 0 2.75%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe__inner {
    padding: 6.3888888889% 0 0;
  }
}
.pg-curry-recipe-title1 {
  position: relative;
  width: 38.5%;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-title1 {
    width: 70%;
  }
}
.pg-curry-recipe-title1__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  width: 21.4285714286%;
  margin: 1.2987012987% -1.5151515152% 0 0;
  padding-bottom: 16.0173160173%;
  transform-origin: bottom right;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/bg_ttl_recipe_1.svg?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-title1__bg {
    margin: 1.5873015873% -2.7777777778% 0 0;
  }
}

.pg-curry-recipe-desc1 {
  position: relative;
  margin: 0.8558540416em auto 0;
  padding: 0 1em;
  font-size: 1.1684235294rem;
  font-size: clamp(0.5842117647rem, 1.6552666667cqi, 1.1684235294rem);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-desc1 {
    margin-top: 1.2em;
    padding: 0 0.8666666667em;
    font-size: 0.8823529412rem;
    font-size: clamp(0.4411764706rem, 4.1666666667cqi, 1.7647058824rem);
  }
}

.pg-curry-recipe-para1 {
  width: fit-content;
  transform: translateX(1em);
  margin: 0 auto;
  font-weight: bold;
  line-height: 1.7142857143;
  letter-spacing: -0.05em;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-para1 {
    transform: none;
    width: 100%;
    line-height: 1.6;
    letter-spacing: -0.073em;
    text-align: left;
  }
}

.pg-curry-recipe-box1-title1 {
  position: relative;
  width: 36.5833333333%;
  margin: 7.0833333333% auto 2.0833333333%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-title1 {
    width: 53.3333333333%;
    margin: 7.7777777778% auto 3.0555555556%;
  }
}
.pg-curry-recipe-box1-title1::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 37.1298405467%;
  height: 0;
  margin: 0 -45.5580865604% -49.430523918% 0;
  padding-bottom: 85.6492027335%;
  background: url("../img/bg_recipe_2_1.png?d=202608011230") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-title1::before {
    margin: 0 -34.375% -49.4791666667% 0;
  }
}
.pg-curry-recipe-box1-title1__img {
  transform: translateX(7.7448747153%);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-title1__img {
    transform: translateX(-5.2083333333%);
  }
}
.pg-curry-recipe-box1-title1__bg {
  position: absolute;
  top: 0;
  height: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.pg-curry-recipe-box1-title1__bg--1 {
  left: 0;
  width: 19.8633257403%;
  margin: 4.3280182232% 0 0 -16.6287015945%;
  padding-bottom: 19.589977221%;
  background-image: url("../img/bg_recipe_2_1_kira_1.svg?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-title1__bg--1 {
    margin-left: -30.2083333333%;
  }
}
.pg-curry-recipe-box1-title1__bg--2 {
  right: 0;
  width: 18.4282460137%;
  margin: -9.3394077449% -51.708428246% 0 0;
  padding-bottom: 17.7676537585%;
  background-image: url("../img/bg_recipe_2_1_kira_2.svg?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-title1__bg--2 {
    margin-right: -40.1041666667%;
  }
}

.pg-curry-recipe-box1-title2 {
  position: relative;
  width: 41.1666666667%;
  margin: 1.9166666667% auto 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-title2 {
    width: 85.2777777778%;
    margin: 11.3888888889% auto 0;
  }
}
.pg-curry-recipe-box1-title2__img {
  transform: translateX(-2.8340080972%);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-title2__img {
    transform: translateX(-5.5374592834%);
  }
}
.pg-curry-recipe-box1-title2__bg {
  position: absolute;
  top: 0;
  height: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.pg-curry-recipe-box1-title2__bg--1 {
  right: 0;
  width: 13.967611336%;
  margin: -1.2145748988% -15.5870445344% 0 0;
  padding-bottom: 13.967611336%;
  background-image: url("../img/bg_recipe_2_2_kira_1.svg?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-title2__bg--1 {
    margin: -8.7947882736% -6.5146579805% 0 0;
  }
}

.pg-curry-recipe-box1 {
  position: relative;
  width: 83.5%;
  margin: 0 auto;
  padding: 3.1666666667% 0 3.75%;
  border-radius: 33px;
  border-radius: 2.7654166667cqi;
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1 {
    width: 100%;
    padding: 4.1666666667% 0 7.5%;
    border-radius: 0;
  }
}
.pg-curry-recipe-box1--1 {
  background-image: url("../img/bg_recipe_1_1.jpg?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1--1 {
    background-image: url("../img/bg_recipe_1_1_sp.jpg?d=202608011230");
  }
}
.pg-curry-recipe-box1--2 {
  margin-top: -3.9166666667%;
  background-image: url("../img/bg_recipe_1_2.jpg?d=202608011230");
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1--2 {
    margin-top: -8.3333333333%;
    padding: 10.8333333333% 0 12.2222222222%;
    background-image: url("../img/bg_recipe_1_2_sp.jpg?d=202608011230");
  }
}

.pg-curry-recipe-box1-desc1 {
  position: relative;
  width: 94.5109780439%;
  margin: 0 auto 1.6110193725em;
  font-size: 1.1684235294rem;
  font-size: clamp(0.5842117647rem, 1.6552666667cqi, 1.1684235294rem);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-desc1 {
    width: 100%;
    margin-bottom: 1.4666666667em;
    padding: 0 0.7333333333em;
    font-size: 0.8823529412rem;
    font-size: clamp(0.4411764706rem, 4.1666666667cqi, 1.7647058824rem);
  }
}

.pg-curry-recipe-box1-para1 {
  width: fit-content;
  margin: 0 auto;
  font-weight: bold;
  line-height: 1.7142857143;
  letter-spacing: -0.05em;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-para1 {
    width: 100%;
    line-height: 1.6;
    letter-spacing: -0.073em;
    text-align: left;
  }
}

.pg-curry-note1 {
  margin: 0.8571428571em auto 0;
  padding-right: 1em;
  font-size: 0.7048209755em;
  font-weight: bold;
  line-height: 1.5;
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-note1 {
    margin-top: 1em;
    padding-right: 0;
    font-size: 0.8em;
  }
}

.pg-curry-recipe-box1-list1 {
  display: flex;
  gap: 0.4228925853em;
  width: 94.5109780439%;
  margin: 0 auto;
  font-size: 1.2518823529rem;
  font-size: clamp(0.6259411765rem, 1.7735cqi, 1.2518823529rem);
  line-height: 1.4666666667;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-list1 {
    flex-direction: column;
    gap: 1.2857142857em;
    width: 100%;
    font-size: 0.8235294118rem;
    font-size: clamp(0.4117647059rem, 3.8888888889cqi, 1.6470588235rem);
    line-height: 1;
  }
}
.pg-curry-recipe-box1-list1__item {
  position: relative;
  flex: 1 1 0%;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-list1__item {
    flex: 1 1 auto;
    width: 91.6666666667%;
    margin: 0 auto;
  }
}

.pg-curry-recipe-box1-card {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 0.6578329104em;
  height: 100%;
  padding: 0.9397613006em 0.9397613006em 1.5975942111em;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-card {
    gap: 0;
    padding: 1em 1em 1.8571428571em;
  }
}

.pg-curry-recipe-box1-card-desc {
  flex: 1 1 auto;
}

.pg-curry-recipe-box1-card-para1 {
  margin: 0 auto;
  font-weight: bold;
  letter-spacing: -0.05em;
  text-decoration: underline;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-card-para1 {
    font-size: 1.0714285714em;
    line-height: 1.7333333333;
  }
}

.pg-curry-recipe-box1-card-balloon {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.6048303731em;
  margin: 0.2819283902em 0 0 0.1879522601em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-card-balloon {
    width: 6.5em;
    height: 6.5em;
    margin: -0.4285714286em 0 0 -0.6428571429em;
  }
}

.pg-curry-recipe-box1-card-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pg-curry-recipe-box1-card-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media (any-hover: hover) {
  .pg-curry-recipe-box1-card-button:hover::before {
    opacity: 1;
  }
}
.pg-curry-recipe-box1-card-button__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.5804905554em;
  height: 3.4771168123em;
  background: url("../img/btn_click_1.svg?d=202608011230") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1-card-button__icon {
    width: 100%;
    height: 2.1428571429em;
    background-image: url("../img/btn_click_1_sp.svg?d=202608011230");
    background-size: auto 36.6666666667%;
  }
}

.pg-curry-popup1-card {
  position: relative;
  height: 100%;
  padding: 1.4108804535em 0.9619639456em 2.18045161em;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card {
    font-weight: bold;
    padding: 1em 0 3.5714285714em;
  }
}

.pg-curry-popup1-card-acd {
  position: relative;
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s linear;
}
.pg-curry-popup1-card-acd.is-active {
  height: auto;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-wrap1 {
    display: flex;
    flex-direction: column;
  }
}
.pg-curry-popup1-card-wrap1::after {
  content: "";
  display: block;
  clear: both;
}

.pg-curry-popup1-card-kv {
  position: relative;
  padding: 0 0.9619639456em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-kv {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    padding: 0;
  }
}

.pg-curry-popup1-card-head {
  margin-bottom: 0.3206546485em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-head {
    order: 2;
    margin-top: 0;
    padding: 0 1em;
  }
}

.pg-curry-popup1-card-title1 {
  margin: 0 auto;
  padding-left: 1.2em;
  font-size: 1.4651672855em;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-title1 {
    padding-left: 0;
    font-size: 1.0714285714em;
    line-height: 1.7333333333;
    text-decoration: underline;
    text-align: center;
  }
}

.pg-curry-popup1-card-pic1 {
  position: relative;
  float: left;
  width: 68.1081081081%;
  margin-right: 3.1351351351%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-pic1 {
    order: 1;
    float: none;
    width: 100%;
    margin-right: 0;
    padding: 0 1em;
  }
}

.pg-curry-popup1-card-balloon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 6.4772239003em;
  margin: 0.6413092971em 0 0 0.6413092971em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-balloon {
    width: 6.5em;
    margin: -1.2857142857em 0 0 -0.6428571429em;
  }
}
.pg-curry-popup1-card-balloon__img {
  width: 100%;
}

.pg-curry-popup1-card-lead {
  position: relative;
  float: left;
  width: 68.1081081081%;
  margin-top: 0.8013325015em;
  padding-bottom: 0.9158085731em;
  font-size: 1.1204250598em;
  line-height: 1.5300356593;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-lead {
    order: 3;
    float: none;
    margin-top: 0;
    padding: 2.8571428571em 0.7142857143em 0.5em;
    font-size: inherit;
    line-height: 1.2857142857em;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-lead::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 97.8787878788%;
    height: 1px;
    background: #251e1c;
  }
}
.pg-curry-popup1-card-lead__para {
  padding: 0 1.3737128597em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-lead__para {
    padding: 0;
  }
}

.pg-curry-popup1-card-material {
  margin-top: 0.4489165079em;
  line-height: 1.7142902951;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-material {
    order: 4;
    margin-top: 1.1428571429em;
    padding: 0 0.7142857143em;
    font-weight: 500;
    line-height: 1.4285714286;
  }
}
.pg-curry-popup1-card-material__title-sub {
  margin-top: 1em;
}
.pg-curry-popup1-card-material__list-dots {
  letter-spacing: -0.5em;
  margin-right: 0.5em;
}

.pg-curry-popup1-card-wrap2 {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-wrap2 {
    display: block;
  }
}
.pg-curry-popup1-card-wrap2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96.8648648649%;
  height: 1px;
  background: rgba(37, 30, 28, 0.5);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-wrap2::before {
    content: none;
  }
}

.pg-curry-popup1-card-howto {
  flex: 1 1 auto;
  margin-top: 0.6413092971em;
  padding: 0 1.5391423129em;
  line-height: 1.9285773836;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-howto {
    margin-top: 1.2857142857em;
    padding: 0 0.7142857143em;
    font-weight: 500;
    line-height: 1.4285714286;
  }
}
.pg-curry-popup1-card-howto__list {
  text-indent: -1em;
  padding-left: 1em;
}
.pg-curry-popup1-card-howto__list-num {
  margin-right: 0.5em;
}

.pg-curry-popup1-card-point {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  flex: 0 0 35.6756756757%;
  margin-right: 1.8378378378%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-point {
    display: block;
    margin-right: 0;
    font-weight: 500;
  }
}

.pg-curry-popup1-card-point-balloon {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 7.0544022677em;
  margin: 0.7054402268em auto 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-point-balloon {
    width: 95.7575757576%;
    margin-top: 2em;
    min-height: 4.5em;
    font-weight: 500;
    line-height: 1.0714285714;
  }
}
.pg-curry-popup1-card-point-balloon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0e8cd;
  border-radius: 1.1543567347em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-point-balloon::after {
    border-radius: 0.9285714286em;
  }
}
.pg-curry-popup1-card-point-balloon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2.6934990477em;
  height: 2.0521897506em;
  margin: -1.2826185941em 5.3869980953em 0 0;
  background: url("../img/bg_popup_recipe_point_1_top.png?d=202608011230") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-point-balloon::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 1.5714285714em;
    height: 1.4285714286em;
    margin: 0 0 -1.2142857143em 0.6428571429em;
    background-image: url("../img/bg_popup_recipe_point_1_bottom.png?d=202608011230");
  }
}
.pg-curry-popup1-card-point-balloon__title {
  position: absolute;
  right: 2.7272727273%;
  bottom: 0;
  z-index: 1;
  width: 31.8181818182%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-point-balloon__title {
    width: 22.4683544304%;
  }
}
.pg-curry-recipe-box1--2 .pg-curry-popup1-card-point-balloon__title {
  right: 0;
}
.pg-curry-popup1-card-point-balloon__detail {
  width: 65.4545454545%;
  position: relative;
  z-index: 1;
  padding: 0.6413092971em 0.2em 0.6413092971em 1.4108804535em;
  line-height: 1.4651672855;
  letter-spacing: -0.075em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-point-balloon__detail {
    width: 77.5316455696%;
    padding: 0.5em 0.2em 0.5em 1.0714285714em;
    line-height: inherit;
    letter-spacing: inherit;
  }
}

.pg-curry-popup1-card-point-pic {
  position: relative;
  width: 60.6060606061%;
  margin: 1.3467495238em 0 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-point-pic {
    width: 63.6363636364%;
    margin: 1.4285714286em auto 0;
  }
}
.pg-curry-popup1-card-point-pic__img {
  vertical-align: bottom;
}
.pg-curry-popup1-card-point-pic__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.3389509765em;
  height: 1.3389509765em;
  margin: 0.3749062734em 0.3927589531em;
  font-size: 0.7184459793em;
  font-weight: bold;
  line-height: 1;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-point-pic__caption {
    width: 1.3627468616em;
    height: 1.3627468616em;
    margin: 0.3815691212em 0.4578829455em;
    font-size: 1.3103785714em;
  }
}

.pg-curry-popup1-card-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.5804905554em;
  height: 3.4771168123em;
  background: url("../img/btn_click_1.svg?d=202608011230") no-repeat center;
  background-size: contain;
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-popup1-card-button {
    width: 100%;
    height: 2.1428571429em;
    background-image: url("../img/btn_click_1_sp.svg?d=202608011230");
    background-size: auto 36.6666666667%;
  }
}
.pg-curry-popup1-card.is-active .pg-curry-popup1-card-button {
  transform: scale(1, -1);
}

.pg-curry-acd-card {
  position: relative;
  height: 100%;
  padding: 0.9397613006em 0.9397613006em 1.5975942111em;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card {
    font-weight: bold;
    padding: 1em 0 1.5em;
  }
}

.pg-curry-acd-card-wrap1 {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 0.6578329104em;
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-wrap1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    height: auto;
  }
}

.pg-curry-acd-card-head {
  flex: 1 1 auto;
  margin-bottom: 0.3206546485em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-head {
    order: 2;
    margin-top: 0;
    padding: 0 1em;
  }
}

.pg-curry-acd-card-title1 {
  margin: 0 auto;
  font-weight: bold;
  letter-spacing: -0.05em;
  text-align: center;
  text-decoration: underline;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-title1 {
    padding-left: 0;
    font-size: 1.0714285714em;
    line-height: 1.7333333333;
  }
}

.pg-curry-acd-card-pic1 {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-pic1 {
    order: 1;
    padding: 0 1em;
  }
}

.pg-curry-acd-card-content {
  position: relative;
  display: none;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s linear;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-content {
    display: block;
  }
}
.pg-curry-acd-card.is-active .pg-curry-acd-card-content {
  height: auto;
  overflow: visible;
  visibility: visible;
  opacity: 1;
}

.pg-curry-acd-card-wrap2 {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-wrap2 {
    display: block;
    padding-bottom: 1.4285714286em;
  }
}
.pg-curry-acd-card-wrap2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96.8648648649%;
  height: 1px;
  background: rgba(37, 30, 28, 0.5);
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-wrap2::before {
    content: none;
  }
}

.pg-curry-acd-card-balloon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 4.6048303731em;
  margin: -0.6578329104em 0 0 -0.6578329104em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-balloon {
    width: 6.5em;
    margin: -1.2857142857em 0 0 -0.6428571429em;
  }
}
.pg-curry-acd-card-balloon__img {
  width: 100%;
}

.pg-curry-acd-card-lead {
  position: relative;
  float: left;
  margin-top: 0.8013325015em;
  padding-bottom: 0.9158085731em;
  font-size: 1.1204250598em;
  line-height: 1.5300356593;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-lead {
    float: none;
    margin-top: 0;
    padding: 2.8571428571em 0.7142857143em 0.5em;
    font-size: inherit;
    line-height: 1.2857142857em;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-lead::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 97.8787878788%;
    height: 1px;
    background: #251e1c;
  }
}
.pg-curry-acd-card-lead__para {
  padding: 0 1.3737128597em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-lead__para {
    padding: 0;
  }
}

.pg-curry-acd-card-material {
  margin-top: 0.4489165079em;
  line-height: 1.7142902951;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-material {
    margin-top: 1.1428571429em;
    padding: 0 0.7142857143em;
    font-weight: 500;
    line-height: 1.4285714286;
  }
}
.pg-curry-acd-card-material__title-sub {
  margin-top: 1em;
}
.pg-curry-acd-card-material__list-dots {
  letter-spacing: -0.5em;
  margin-right: 0.5em;
}

.pg-curry-acd-card-howto {
  flex: 1 1 auto;
  margin-top: 0.6413092971em;
  padding: 0 1.5391423129em;
  line-height: 1.9285773836;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-howto {
    margin-top: 1.2857142857em;
    padding: 0 0.7142857143em;
    font-weight: 500;
    line-height: 1.4285714286;
  }
}
.pg-curry-acd-card-howto__list {
  text-indent: -1em;
  padding-left: 1em;
}
.pg-curry-acd-card-howto__list-num {
  margin-right: 0.5em;
}

.pg-curry-acd-card-point {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  flex: 0 0 35.6756756757%;
  margin-right: 1.8378378378%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-point {
    display: block;
    margin-right: 0;
    font-weight: 500;
  }
}

.pg-curry-acd-card-point-balloon {
  position: relative;
  margin: 0.7054402268em auto 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-point-balloon {
    display: flex;
    align-items: center;
    width: 95.7575757576%;
    min-height: 4.5em;
    margin-top: 2em;
    font-weight: 500;
    line-height: 1.0714285714;
  }
}
.pg-curry-acd-card-point-balloon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0e8cd;
  border-radius: 1.1543567347em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-point-balloon::after {
    border-radius: 0.9285714286em;
  }
}
.pg-curry-acd-card-point-balloon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2.6934990477em;
  height: 2.0521897506em;
  margin: -1.2826185941em 5.0022125171em 0 0;
  background: url("../img/bg_popup_recipe_point_1_top.png?d=202608011230") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-point-balloon::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 1.5714285714em;
    height: 1.4285714286em;
    margin: 0 0 -1.2142857143em 2.1428571429em;
    background-image: url("../img/bg_popup_recipe_point_1_bottom.png?d=202608011230");
  }
}
.pg-curry-acd-card-point-balloon__title {
  position: absolute;
  right: 2.7272727273%;
  bottom: 0;
  z-index: 1;
  width: 31.8181818182%;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-point-balloon__title {
    width: 22.4683544304%;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-curry-recipe-box1--2 .pg-curry-acd-card-point-balloon__title {
    right: 0;
  }
}
.pg-curry-acd-card-point-balloon__detail {
  width: 65.4545454545%;
  position: relative;
  z-index: 1;
  padding: 0.6413092971em 0.2em 0.6413092971em 1.4108804535em;
  line-height: 1.4651672855;
  letter-spacing: -0.075em;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-point-balloon__detail {
    width: 77.5316455696%;
    padding: 0.5em 0.2em 0.5em 1.0714285714em;
    line-height: inherit;
    letter-spacing: inherit;
  }
}

.pg-curry-acd-card-point-pic {
  position: relative;
  width: 60.6060606061%;
  margin: 1.3467495238em 0 0;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-point-pic {
    width: 63.6363636364%;
    margin: 1.4285714286em auto 0;
  }
}
.pg-curry-acd-card-point-pic__img {
  vertical-align: bottom;
}
.pg-curry-acd-card-point-pic__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.3389509765em;
  height: 1.3389509765em;
  margin: 0.3749062734em 0.3927589531em;
  font-size: 0.7184459793em;
  font-weight: bold;
  line-height: 1;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-point-pic__caption {
    top: 0;
    bottom: auto;
    width: 1.3627468616em;
    height: 1.3627468616em;
    margin: 0.3815691212em 0.4578829455em;
    font-size: 1.3103785714em;
  }
}

.pg-curry-acd-card-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.5804905554em;
  height: 3.4771168123em;
  background: url("../img/btn_click_1.svg?d=202608011230") no-repeat center;
  background-size: contain;
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .pg-curry-acd-card-button {
    width: 100%;
    height: 2.1428571429em;
    background-image: url("../img/btn_click_1_sp.svg?d=202608011230");
    background-size: auto 36.6666666667%;
  }
}
.pg-curry-acd-card.is-active .pg-curry-acd-card-button {
  transform: scale(1, -1);
}

.pg-curry-bnr1 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.pg-curry-bnr1__link {
  display: block;
  text-align: center;
  background: #dea849;
}
.pg-curry-bnr1__link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .pg-curry-bnr1__link:any-link:hover {
    opacity: 0.6;
  }
}

/*
 * object/utility/_u-mg.scss
 */
.u-mg-auto {
  margin: 0 auto;
}

.u-mgi-auto {
  margin-inline: auto;
}

.u-mg-none {
  margin: 0;
}

.u-mgt-none {
  margin-top: 0;
}

.u-mgb-none {
  margin-bottom: 0;
}

.u-mgl-none {
  margin-left: 0;
}

.u-mgr-none {
  margin-right: 0;
}

.u-mgt-em1 {
  margin-top: 1em;
}

.u-mgb-em1 {
  margin-bottom: 1em;
}

.u-mgl-em1 {
  margin-left: 1em;
}

.u-mgr-em1 {
  margin-right: 1em;
}

.u-mgl-em03 {
  margin-left: 0.3em;
}

/*
 * object/utility/_u-pd.scss
 */
.u-pd-none {
  padding: 0;
}

.u-pdt-none {
  padding-top: 0;
}

.u-pdb-none {
  padding-bottom: 0;
}

.u-pdl-none {
  padding-left: 0;
}

.u-pdr-none {
  padding-right: 0;
}

.u-pdt-none {
  padding-top: 0;
}

.u-pdt-em1 {
  padding-top: 1em;
}

.u-pdb-em1 {
  margin-bottom: 1em;
}

.u-pdl-em1 {
  padding-left: 1em;
}

.u-pdr-em1 {
  padding-right: 1em;
}

/*
 * object/utility/_u-typo.scss
 */
.u-weight-thin {
  font-weight: 100;
}

.u-weight-exlight {
  font-weight: 200;
}

.u-weight-light {
  font-weight: 300;
}

.u-weight-normal {
  font-weight: 400;
}

.u-weight-medium {
  font-weight: 500;
}

.u-weight-semibold {
  font-weight: 600;
}

.u-weight-bold {
  font-weight: bold;
}

.u-weight-black {
  font-weight: 900;
}

.u-align-left {
  text-align: left;
}

.u-align-center {
  text-align: center;
}

.u-align-right {
  text-align: right;
}

.u-space {
  letter-spacing: 1em;
}

.u-space-tight {
  letter-spacing: -1em;
}

.u-space-half {
  letter-spacing: 0.5em;
}

.u-space-half-tight {
  letter-spacing: -0.5em;
}

.u-deco-under {
  text-decoration: underline;
}

@media screen and (max-width: 767.98px) {
  .u-phrase-sp {
    display: inline-block;
  }
}

@media screen and (max-width: 359.98px) {
  .u-phrase-dssp {
    display: inline-block;
  }
}

@media print, (min-width: 360px) {
  .u-phrase-dssp-min {
    display: inline-block;
  }
}

@media (min-width: 560px) and (max-width: 767.98px) {
  .u-phrase-tab-s {
    display: inline-block;
  }
}

@media (min-width: 768px) and (max-width: -0.02px) {
  .u-phrase-tab {
    display: inline-block;
  }
}

@media print, (min-width: 768px) {
  .u-phrase-pc {
    display: inline-block;
  }
}

/*
 * object/utility/_u-hover.scss
 */
@media print, (min-width: 375px) {
  .u-max-iphone {
    display: none;
  }
}

@media screen and (max-width: 374.98px) {
  .u-min-iphone {
    display: none;
  }
}

@media print, (min-width: 560px) {
  .u-max-sp {
    display: none;
  }
}

@media screen and (max-width: 559.98px) {
  .u-min-sp {
    display: none;
  }
}

@media print, (min-width: 360px) {
  .u-max-dssp {
    display: none;
  }
}

@media screen and (max-width: 359.98px) {
  .u-min-dssp {
    display: none;
  }
}

@media print, (min-width: 768px) {
  .u-max-br {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .u-min-br {
    display: none;
  }
}

@media print, (min-width: 0px) {
  .u-max-m {
    display: none;
  }
}

@media screen and (max-width: -0.02px) {
  .u-min-m {
    display: none;
  }
}

@media print, (min-width: 0px) {
  .u-max-l {
    display: none;
  }
}

@media screen and (max-width: -0.02px) {
  .u-min-l {
    display: none;
  }
}

@media print, (min-width: 0px) {
  .u-max-xl {
    display: none;
  }
}

@media screen and (max-width: -0.02px) {
  .u-min-xl {
    display: none;
  }
}

@media print, (min-width: 960px) {
  .u-max-head {
    display: none;
  }
}

@media screen and (max-width: 959.98px) {
  .u-min-head {
    display: none;
  }
}

@media (min-width: 560px) and (max-width: 767.98px) {
  .u-tab-s-none {
    display: none;
  }
}

.u-tab-s-block {
  display: none;
}
@media (min-width: 560px) and (max-width: 767.98px) {
  .u-tab-s-block {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: -0.02px) {
  .u-tab-none {
    display: none;
  }
}

.u-tab-block {
  display: none;
}
@media (min-width: 768px) and (max-width: -0.02px) {
  .u-tab-block {
    display: block;
  }
}

.u-display-none {
  display: none;
}

.u-display-i {
  display: inline;
}

.u-display-b {
  display: block;
}

.u-display-ib {
  display: inline-block;
}

@media print, (min-width: 768px) {
  .u-display-ib-pc {
    display: inline-block;
  }
}

@media screen and (max-width: 767.98px) {
  .u-display-ib-sp {
    display: inline-block;
  }
}

.u-display-flex {
  display: flex;
}

.u-display-if {
  display: inline-flex;
}

/*
 * object/utility/_u-clearfix.scss
 */
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}/*# sourceMappingURL=style.css.map */