@charset "UTF-8";
/* カラー */
.header {
  position: fixed;
  width: 100%;
  z-index: 999;
}
.header__inner {
  width: 100%;
  height: 80px;
  display: grid;
  grid-template-columns: clamp(13.75rem, 8.5rem + 22.4vw, 22.5rem) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
@media screen and (max-width: 1239px) {
  .header__inner {
    height: 58px;
    border-bottom: 2px solid #FFF0F5;
  }
}
.header__logo {
  padding: 0 clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
@media print {
  .header {
    display: none;
  }
}

.header-pc {
  display: none;
}
@media screen and (min-width: 1240px) {
  .header-pc {
    display: grid;
    grid-template-columns: auto auto;
    place-self: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    gap: 0 30px;
  }
  .header-pc__nav {
    height: 100%;
  }
  .header-pc__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 30px;
    height: 100%;
  }
  .header-pc__item {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .header-pc__item--sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .header-pc__item--sub-menu.active .header-pc__link--arrow::before {
    width: 100%;
  }
  .header-pc__item--sub-menu.active .header-pc__link--arrow::after {
    rotate: -135deg;
    top: 2px;
  }
}
@media screen and (min-width: 1240px) and (hover: hover) {
  .header-pc__item--sub-menu:hover .header-pc__sub-menu {
    opacity: 1;
    max-height: 500px;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1240px) {
  .header-pc__link {
    position: relative;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    font-weight: bold;
    height: 100%;
  }
  .header-pc__link:not(.header-pc__link--corporate)::before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    background: #EE372A;
    border-radius: 10px;
    left: 0;
    bottom: 15px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
@media screen and (min-width: 1240px) and (hover: hover) {
  .header-pc__link:hover::before {
    width: 100%;
  }
}
@media screen and (min-width: 1240px) {
  .header-pc__link--arrow {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .header-pc__link--arrow::after {
    content: "";
    position: relative;
    width: 10px;
    aspect-ratio: 1;
    border-right: 2px solid #EE372A;
    border-bottom: 2px solid #EE372A;
    top: -2px;
    rotate: 45deg;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .header-pc__link--corporate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    height: auto;
    background: #EEEEEE;
    border: 1px solid #EEEEEE;
    border-radius: 40px;
    padding: 8px 24px;
    -webkit-transition: 0.2S;
    transition: 0.2S;
  }
  .header-pc__link--corporate::after {
    content: "";
    width: 16px;
    aspect-ratio: 1;
    background: url(../../assets/img/icon/window.svg) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1240px) and (hover: hover) {
  .header-pc__link--corporate:hover {
    border-color: #EE372A;
    color: #EE372A;
    background: #fff;
  }
}
@media screen and (min-width: 1240px) {
  .header-pc__btn-wrap {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
  }
  .header-pc__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #EE372A;
    font-size: 10px;
    font-weight: bold;
    padding: 15px 18px;
  }
  .header-pc__btn:not(.header-pc__btn--color) {
    position: relative;
  }
  .header-pc__btn:not(.header-pc__btn--color)::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 60%;
    background: #EE372A;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
  .header-pc__btn--color {
    color: #fff;
    background: #EE372A;
  }
  .header-pc__btn--search {
    width: 96px;
    cursor: pointer;
  }
  .header-pc__btn img {
    width: 36px;
  }
  .header-pc__sub-menu {
    position: absolute;
    background: #fff;
    width: 100%;
    top: 100%;
    left: 0;
    padding: 30px;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .header-pc__sub-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .header-pc__sub-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
  }
  .header-pc__sub-link::before {
    content: "";
    background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
    width: 18px;
    height: 14px;
  }
  .header-pc__sub-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: #EE372A;
    left: 28px;
    bottom: -3px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media screen and (min-width: 1240px) and (hover: hover) {
  .header-pc__sub-link:hover::after {
    width: calc(100% - 28px);
  }
}

.header-pc__search {
  position: absolute;
  background: #FFF0F5;
  width: 100%;
  top: 100%;
  left: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.6s ease;
  transition: max-height 0.6s ease;
}
.header-pc__search.active {
  max-height: 500px;
  border-bottom: 2px solid #fff;
}
.header-pc__search #___gcse_0 {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}
.header-pc__search #___gcse_0 .gsc-control-cse {
  margin: 0 auto;
  border: none;
  background: none;
}
.header-pc__search #___gcse_0 .gsc-input-box {
  border: 1px solid #D3D3D3;
  border-radius: 5px 0 0 5px;
  padding: 15px;
}
.header-pc__search #___gcse_0 .gsc-input {
  padding: 0;
}
.header-pc__search #___gcse_0 .gsc-search-button {
  background-color: #EE372A;
  border-radius: 0 5px 5px 0;
  padding: 0 15px;
  border: none;
}
.header-pc__search #___gcse_0 .gsc-search-button-v2 svg {
  width: 24px;
  height: 24px;
}

.header-sp {
  display: none;
}
@media screen and (max-width: 1239px) {
  .header-sp {
    display: block;
  }
  .header-sp__btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header-sp__btn {
    width: clamp(3.125rem, 2.75rem + 1.6vw, 3.75rem);
    height: clamp(3.125rem, 2.75rem + 1.6vw, 3.75rem);
    padding: clamp(0.625rem, 0.55rem + 0.32vw, 0.75rem);
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1239px) {
  .hamburger {
    position: relative;
    display: block;
    border-radius: 50%;
    width: clamp(3.125rem, 2.75rem + 1.6vw, 3.75rem);
    height: clamp(3.125rem, 2.75rem + 1.6vw, 3.75rem);
    padding: clamp(0.75rem, 0.6375rem + 0.48vw, 0.9375rem);
    cursor: pointer;
  }
  .hamburger::before {
    content: "";
    position: absolute;
    background: #EE372A;
    width: 1px;
    height: 50%;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
  .hamburger__btn {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hamburger__bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #EE372A;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hamburger .top {
    top: 30%;
  }
  .hamburger .bottom {
    top: 70%;
  }
  .hamburger.active .top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 50%;
  }
  .hamburger.active .bottom {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 50%;
  }
}

.sp-menu {
  position: absolute;
  background: #fff;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  top: 0;
  right: 0;
  overflow-y: scroll;
  z-index: -1;
  translate: 100% 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sp-menu.active {
  translate: 0 0;
}
.sp-menu__inner {
  padding: 80px clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem) 40px;
}
.sp-menu__item {
  border-bottom: 1px dotted #D3D3D3;
}
.sp-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 10px;
  font-weight: bold;
}
.sp-menu__link::after {
  content: "";
  background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
}
.sp-menu__link--arrow::after {
  background: none;
  position: relative;
  width: 10px;
  height: 10px;
  border-right: 2px solid #EE372A;
  border-bottom: 2px solid #EE372A;
  top: -4px;
  right: 4px;
  rotate: 45deg;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sp-menu__link--arrow.active::after {
  rotate: -135deg;
}
.sp-menu__sub-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.sp-menu__sub-list.active {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 10px;
}
.sp-menu__sub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  padding: 8px 10px;
}
.sp-menu__sub-link::before {
  content: "";
  background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
}
.sp-menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #EE372A;
  color: #fff;
  border-radius: 60px;
  padding: 12px 20px;
  margin: 30px 0;
}
.sp-menu__btn::before {
  content: "";
  background: url(../../assets/img/icon/cart.svg) no-repeat center center/contain;
  width: 34px;
  height: 24px;
}
.sp-menu__btn::after {
  content: "";
  background: url(../../assets/img/icon/arrow-white.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
}
.sp-menu__sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}
.sp-menu__sns {
  width: 40px;
}
.sp-menu__external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 10px;
  font-weight: bold;
  border-top: 1px dotted #D3D3D3;
  border-bottom: 1px dotted #D3D3D3;
  margin-top: -1px;
}
.sp-menu__external::after {
  content: "";
  display: block;
  background: url(../../assets/img/icon/window.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
}
.sp-menu__policy {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  text-align: center;
  text-decoration: underline;
  margin: 30px auto;
}
.sp-menu__stamp {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}
.sp-menu__search {
  margin: 15px 0;
}
.sp-menu__search #___gcse_1 .gsc-control-cse {
  border: none;
  background: none;
  margin: 0 auto;
  padding: 0;
}
.sp-menu__search #___gcse_1 .gsc-input-box {
  border: 1px solid #D3D3D3;
  border-radius: 5px 0 0 5px;
  padding: 10px;
}
.sp-menu__search #___gcse_1 .gsib_a {
  padding: 0;
}
.sp-menu__search #___gcse_1 .gsc-input {
  padding: 0;
}
.sp-menu__search #___gcse_1 .gsc-search-button {
  background-color: #EE372A;
  border-radius: 0 5px 5px 0;
  padding: 0 5px;
  border: none;
}
.sp-menu__search #___gcse_1 .gsc-search-button-v2 svg {
  width: 20px;
  height: 20px;
}

.bnr {
  position: relative;
  padding: clamp(3.125rem, 1.25rem + 8vw, 6.25rem) 0 clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
.bnr__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.625rem, -0.125rem + 3.2vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .bnr__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.bnr__link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .bnr__link:hover {
    translate: 0 -5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}

.newsletter-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .newsletter-pc {
    background: #EE372A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 30px;
    padding: 10px;
  }
  .newsletter-pc__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    color: #fff;
    font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
    font-weight: bold;
  }
  .newsletter-pc__text::before {
    content: "";
    width: 40px;
    aspect-ratio: 8/5;
    background: url(../../assets/img/icon/newsletter.svg) no-repeat center center/contain;
  }
  .newsletter-pc__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    color: #EE372A;
    background: #fff;
    border: 1px solid #fff;
    font-size: clamp(0.8125rem, 0.7375rem + 0.32vw, 0.9375rem);
    font-weight: bold;
    border-radius: 40px;
    padding: 5px 15px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .newsletter-pc__btn::before {
    content: "";
    width: 16px;
    aspect-ratio: 1;
    background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .newsletter-pc__btn:hover {
    color: #fff;
    background: #EE372A;
  }
}

.newsletter-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #EE372A;
  color: #fff;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: bold;
  padding: 10px 20px;
}
.newsletter-sp::before {
  content: "";
  width: 40px;
  aspect-ratio: 8/5;
  background: url(../../assets/img/icon/newsletter.svg) no-repeat center center/contain;
}
.newsletter-sp::after {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow-white.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .newsletter-sp {
    display: none;
  }
}

.back {
  position: fixed;
  right: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
  bottom: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
  width: clamp(1.75rem, 1.45rem + 1.28vw, 2.25rem);
  z-index: 800;
  opacity: 0;
  translate: 0 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.back.show {
  opacity: 1;
  translate: 0 0;
}
@media print {
  .back {
    display: none;
  }
}
.back--recipe {
  translate: 0 0;
}
@media screen and (min-width: 768px) {
  .back--recipe {
    translate: 0 60px;
  }
}
.back--recipe.show {
  translate: 0 -65px;
}
@media screen and (min-width: 768px) {
  .back--recipe.show {
    translate: 0 0;
  }
}

.fixed-search {
  position: fixed;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #EE372A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: bold;
  text-align: center;
  right: 10px;
  bottom: 10px;
  padding: 10px 15px 10px 10px;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .fixed-search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
    right: 0;
    bottom: 50%;
    translate: 0 50%;
    border-radius: 20px 0 0 20px;
    border-right: none;
    padding: 10px 15px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .fixed-search:hover {
    padding: 10px 25px 10px 15px;
  }
}
@media print {
  .fixed-search {
    display: none;
  }
}
.fixed-search img {
  width: 30px;
}

.footer__main {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__main {
    display: block;
    background: #FFF0F5;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(0rem, -2.25rem + 9.6vw, 3.75rem);
  padding: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
.footer__body {
  width: 230px;
}
.footer__lead {
  position: relative;
  display: block;
  font-size: clamp(0.8125rem, 0.7375rem + 0.32vw, 0.9375rem);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
  padding-left: 10px;
}
.footer__lead::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #EE372A;
  top: 0;
  left: 0;
}
.footer__lead:has(+ .footer__lead) {
  margin-bottom: 15px;
}
.footer__lead--external::after {
  content: "";
  display: inline-block;
  width: 14px;
  aspect-ratio: 1;
  background: url(../../assets/img/icon/window.svg) no-repeat center center/contain;
}
.footer a.footer__lead {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .footer a.footer__lead:hover {
    color: #EE372A;
  }
}
.footer__list {
  display: grid;
  gap: 8px;
}
.footer__list:has(+ .footer__lead) {
  margin-bottom: 20px;
}
.footer__link {
  position: relative;
  font-size: clamp(0.75rem, 0.675rem + 0.32vw, 0.875rem);
}
.footer__link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #EE372A;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  left: 0;
  bottom: -2px;
}
@media (hover: hover) {
  .footer__link:hover::before {
    width: 100%;
  }
}
.footer__sns-wrap {
  display: grid;
  grid-template-columns: repeat(3, 25px);
  gap: 15px;
  margin: 0 0 20px 10px;
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
  margin: 20px 0;
}
.footer_logo {
  width: clamp(12.5rem, 10.625rem + 8vw, 15.625rem);
}
.footer__text {
  max-width: 490px;
  font-size: clamp(0.5625rem, 0.45rem + 0.48vw, 0.75rem);
  line-height: 1.5;
}
.footer__copy {
  font-size: clamp(0.5625rem, 0.45rem + 0.48vw, 0.75rem);
  line-height: 1.5;
}

.only-pc { /*PCのみ*/
  display: none;
}
@media screen and (min-width: 1024px) {
  .only-pc {
    display: block;
  }
}

.only-tab { /*タブレット以上*/
  display: block;
}
@media screen and (min-width: 768px) {
  .only-tab {
    display: none;
  }
}

.under-tab { /*タブレット以下*/
  display: block;
}
@media screen and (min-width: 1024px) {
  .under-tab {
    display: none;
  }
}

.only-sp { /*スマホのみ*/
  display: block;
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

.except-sp { /*スマホ以外*/
  display: none;
}
@media screen and (min-width: 768px) {
  .except-sp {
    display: block;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, p, li, dt, dd, tr, td, a {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.075em;
}

p {
  font-size: clamp(0.875rem, 0.7625rem + 0.48vw, 1.0625rem);
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
p a {
  color: #EE372A;
  text-decoration: underline;
}

.section {
  position: relative;
  padding: clamp(3.125rem, 1.25rem + 8vw, 6.25rem) 0;
}
.section:has(+ .section) {
  padding-bottom: 0;
}

.section-bg {
  position: relative;
  padding: clamp(3.125rem, 1.25rem + 8vw, 6.25rem) 0;
}
.section-bg--color1 {
  background: #FFF0F5;
}
.section-bg--color2 {
  background: #F8F4E9;
}
.section-bg--color3 {
  background: #EBF4F1;
}

.container {
  max-width: 1260px;
  padding: 0 clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
  margin: 0 auto;
}

.container-min {
  max-width: 1000px;
  margin: 0 auto;
}

.container-short {
  max-width: 700px;
  margin: 0 auto;
}

.cmn-wrap:has(+ .cmn-wrap) {
  margin-bottom: clamp(2.5rem, 1rem + 6.4vw, 5rem);
}

@media print {
  .no-print {
    display: none;
  }
}

.wave-top::before {
  content: "";
  position: absolute;
  background: url(../../assets/img/common/wave-sp.svg) no-repeat center top/cover;
  width: 100%;
  height: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .wave-top::before {
    background-image: url(../../assets/img/common/wave.svg);
  }
}

.wave-bottom::after {
  content: "";
  position: absolute;
  background: url(../../assets/img/common/wave-sp.svg) no-repeat center bottom/cover;
  width: 100%;
  height: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
  left: 0;
  bottom: 0;
  rotate: 180deg;
}
@media screen and (min-width: 768px) {
  .wave-bottom::after {
    background-image: url(../../assets/img/common/wave.svg);
  }
}

.breadcrumbs {
  display: none;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    display: block;
    width: 100%;
    position: absolute;
    top: clamp(3.125rem, 2rem + 4.8vw, 5rem);
    left: 0;
  }
}
.breadcrumbs__text {
  max-width: 1260px;
  font-size: clamp(0.75rem, 0.675rem + 0.32vw, 0.875rem);
  padding: 0 clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
  margin: 0 auto;
}
.breadcrumbs__text a {
  color: #000;
}

.cmn-title {
  position: relative;
  padding: clamp(5rem, 2.75rem + 9.6vw, 8.75rem) 0 clamp(2.5rem, 1rem + 6.4vw, 5rem);
}
.cmn-title:has(.c-recipe) {
  padding-bottom: clamp(5rem, 2rem + 12.8vw, 10rem);
}
.cmn-title--color1 {
  background: #FFF0F5;
}
.cmn-title--color2 {
  background: #F8F4E9;
}
.cmn-title--color3 {
  background: #EBF4F1;
}
.cmn-title__text {
  font-size: clamp(1.375rem, 1rem + 1.6vw, 2rem);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
.cmn-title__text:has(+ .c-search) {
  margin-bottom: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
.cmn-title__text--small {
  font-size: 70%;
  vertical-align: middle;
}
@media print {
  .cmn-title__text {
    font-size: 20px;
  }
}
@media print {
  .cmn-title {
    padding: 40px 0;
  }
}

.cmn-mv {
  position: relative;
  padding-top: 58px;
}
@media screen and (min-width: 768px) {
  .cmn-mv {
    padding: clamp(4.375rem, 2.5rem + 8vw, 7.5rem) 0 0;
  }
}
.cmn-mv .container {
  padding: 0;
}

.title {
  font-size: clamp(1.25rem, 0.95rem + 1.28vw, 1.75rem);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
}
.title:has(+ .description) {
  margin-bottom: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
.title--icon {
  position: relative;
  padding-top: clamp(4.375rem, 3.625rem + 3.2vw, 5.625rem);
}
.title--icon::before {
  content: "";
  position: absolute;
  width: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  aspect-ratio: 1/3;
  background: url(../../assets/img/icon/mirin.svg) no-repeat center center/contain;
  top: 0;
  left: 50%;
  translate: -50% 0;
}

.title-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
}
.title-link .title {
  margin: 0 auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.title-link .title::after {
  content: "";
  position: relative;
  display: inline-block;
  width: clamp(1.375rem, 1rem + 1.6vw, 2rem);
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow-circle.svg) no-repeat center center/contain;
  top: 4px;
  margin-left: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .title-link:hover {
    color: #EE372A;
  }
  .title-link:hover .title::after {
    translate: 5px 0;
  }
}

.heading2 {
  border-bottom: 2px solid #EE372A;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  padding-bottom: clamp(0.375rem, 0.15rem + 0.96vw, 0.75rem);
  margin-bottom: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
.heading2:has(+ .description) {
  margin-bottom: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
@media print {
  .heading2 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.heading2 span {
  font-size: 80%;
}

.heading3 {
  font-size: clamp(1.0625rem, 0.875rem + 0.8vw, 1.375rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
}
.heading3--center {
  text-align: center;
}

.heading4 {
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 1px dotted #4A4A4A;
  padding-bottom: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
  margin-bottom: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
}

.description {
  margin-bottom: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .description--center {
    text-align: center;
  }
}
.description:has(+ .note) {
  margin-bottom: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
}
.description b {
  color: #EE372A;
}

.text:has(+ .text) {
  margin-bottom: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
}

.note {
  font-size: clamp(0.75rem, 0.675rem + 0.32vw, 0.875rem);
  line-height: 1.4;
  padding-left: 14px;
  text-indent: -14px;
}
.note--color {
  color: #EE372A;
}
.note:has(+ .note) {
  margin-bottom: 5px;
}

.result {
  font-weight: bold;
  margin-bottom: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
}
.result--num {
  font-size: 120%;
  color: #EE372A;
}

.box-grid {
  display: grid;
  gap: 20px clamp(1.25rem, -1rem + 9.6vw, 5rem);
}
@media screen and (min-width: 768px) {
  .box-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.box-grid:has(+ .box-grid) {
  margin-bottom: clamp(2.5rem, 1rem + 6.4vw, 5rem);
}
@media screen and (min-width: 768px) {
  .box-grid:nth-of-type(even) img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 768px) {
  .box-grid--min {
    grid-template-columns: 30% 1fr;
  }
}

.not-found {
  padding-top: clamp(4.375rem, 1.75rem + 11.2vw, 8.75rem);
}
.not-found__inner {
  padding: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem) 30px;
}
.not-found__title {
  color: #666;
  font-size: clamp(3.75rem, 2.25rem + 6.4vw, 6.25rem);
  font-weight: bold;
  text-align: center;
  margin: 0 0 clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
}
.not-found__title span {
  display: block;
  font-size: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
.not-found__lead {
  color: #EE372A;
  font-weight: bold;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
.not-found__text {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ===============================================
# 各共通パーツ読み込み
=============================================== */
/* ===============================================
# ボタン
=============================================== */
.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .btn-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.btn-wrap--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap .btn {
  margin: 0;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: clamp(12.5rem, 11rem + 6.4vw, 15rem);
  background: #fff;
  border: 2px solid #EE372A;
  border-radius: 40px;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: bold;
  line-height: 1.2;
  padding: clamp(0.5rem, 0.35rem + 0.64vw, 0.75rem) clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
  margin: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem) auto 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn::before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .btn:hover {
    color: #fff;
    background: #EE372A;
  }
  .btn:hover::before {
    background-image: url(../../assets/img/icon/arrow-white.svg);
  }
}

.btn--red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: clamp(12.5rem, 11rem + 6.4vw, 15rem);
  color: #fff;
  background: #EE372A;
  border: 2px solid #EE372A;
  border-radius: 40px;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: bold;
  line-height: 1.2;
  padding: clamp(0.5rem, 0.35rem + 0.64vw, 0.75rem) clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
  margin: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem) auto 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn--red::before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow-white.svg) no-repeat center center/contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .btn--red:hover {
    color: #EE372A;
    background: #fff;
  }
  .btn--red:hover::before {
    background-image: url(../../assets/img/icon/arrow.svg);
  }
}

/* ===============================================
# 商品シリーズ
=============================================== */
.series {
  display: grid;
}
@media screen and (min-width: 768px) {
  .series {
    grid-template-columns: repeat(6, 1fr);
  }
}
.series__item {
  background: #fff;
  border: 1px solid #EE372A;
  margin-top: -1px;
  margin-left: -1px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .series__item {
    grid-column: span 2;
  }
}
@media screen and (min-width: 768px) {
  .series__item--wide {
    grid-column: span 3;
  }
}
@media screen and (min-width: 768px) {
  .series__item--wide .series__link:has(.series__img-wrap) {
    grid-template-columns: clamp(5rem, 2.75rem + 9.6vw, 8.75rem) 1fr;
  }
}
@media screen and (min-width: 768px) {
  .series__item--wide:first-of-type .series__link:has(.series__img-wrap) {
    grid-template-columns: clamp(1.25rem, -4.75rem + 25.6vw, 11.25rem) 1fr;
  }
}
@media (hover: hover) {
  .series__item:hover {
    translate: 0 -5px;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  }
}
.series__link {
  position: relative;
  display: block;
  height: 100%;
  padding: clamp(1.25rem, 0.6875rem + 2.4vw, 2.1875rem);
}
.series__link:has(.series__img-wrap) {
  display: grid;
  grid-template-columns: clamp(2.5rem, 1.75rem + 3.2vw, 3.75rem) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.series__logo {
  position: absolute;
  top: clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
  right: clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
}
.series__logo--01 {
  width: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
}
.series__logo--02 {
  width: clamp(2.25rem, 1.875rem + 1.6vw, 2.875rem);
}
.series__logo--03 {
  width: clamp(5rem, 3.875rem + 4.8vw, 6.875rem);
}
.series__title {
  color: #EE372A;
  font-weight: bold;
  font-size: clamp(1.0625rem, 0.95rem + 0.48vw, 1.25rem);
  margin-bottom: clamp(0.5rem, 0.2rem + 1.28vw, 1rem);
}
.series__title::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
  top: 2px;
}
.series__text {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  line-height: 1.5;
}

/* ===============================================
# 商品一覧スライド
=============================================== */
.s-products__inner {
  display: grid;
  gap: 20px clamp(1.25rem, -1rem + 9.6vw, 5rem);
}
@media screen and (min-width: 768px) {
  .s-products__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.s-products__main {
  border: 1px solid #D3D3D3;
  padding: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem) clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
  margin-bottom: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
}
.s-products__img-wrap {
  aspect-ratio: 1;
  margin-bottom: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
}
.s-products__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.s-products__lineup {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #EE372A;
  font-size: clamp(0.75rem, 0.675rem + 0.32vw, 0.875rem);
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}
.s-products__lineup::before {
  content: "";
  position: absolute;
  width: calc(100% + clamp(2.5rem, 1rem + 6.4vw, 5rem));
  height: 100%;
  background: #FFF0F5;
  border-radius: 40px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.s-products__sub .splide__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
}
.s-products__sub .splide__slide {
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid #D3D3D3;
  padding: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
  cursor: pointer;
}
.s-products__sub .splide__slide.is-active {
  border: 2px solid #EE372A;
}
.s-products__text-wrap p {
  font-size: clamp(0.875rem, 0.7625rem + 0.48vw, 1.0625rem);
  line-height: 1.8;
}
.s-products__bnr {
  max-width: 430px;
  margin: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem) 0;
}
.s-products__bnr:has(.splide__track) {
  max-width: 490px;
  padding: 0 clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
}
.s-products__bnr .splide__arrows {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.s-products__bnr .splide__arrow {
  position: relative;
  width: clamp(0.75rem, 0.6rem + 0.64vw, 1rem);
  aspect-ratio: 1;
}
.s-products__bnr .splide__arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border-top: 2px solid #EE372A;
  border-right: 2px solid #EE372A;
  top: 50%;
  left: 50%;
}
.s-products__bnr .splide__arrow--prev {
  left: 0;
}
.s-products__bnr .splide__arrow--prev::after {
  rotate: -135deg;
  translate: -30% -50%;
}
.s-products__bnr .splide__arrow--next {
  right: 0;
}
.s-products__bnr .splide__arrow--next::after {
  rotate: 45deg;
  translate: -70% -50%;
}

/* ===============================================
# とっておきのレシピ
=============================================== */
.c-recipe {
  display: grid;
  gap: 30px 0;
}
@media screen and (min-width: 768px) {
  .c-recipe {
    grid-template-columns: 46% 1fr;
  }
}

.c-recipe-main__title {
  color: #EE372A;
  font-size: clamp(1.125rem, 0.9rem + 0.96vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
}
.c-recipe-main__title::after {
  content: "";
}
@media (hover: hover) {
  .c-recipe-main__link:hover .c-recipe-main__img-wrap img {
    scale: 1.05;
  }
}
.c-recipe-main__img-wrap {
  aspect-ratio: 3/2;
  border: 2px solid #EE372A;
  overflow: hidden;
}
.c-recipe-main__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-recipe-main__lead {
  background: #EE372A;
  color: #fff;
  font-size: clamp(0.9375rem, 0.825rem + 0.48vw, 1.125rem);
  font-weight: bold;
  padding: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem) clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
  margin-top: -2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-recipe-main__lead::before {
  content: "";
  position: relative;
  display: inline-block;
  width: clamp(1rem, 0.85rem + 0.64vw, 1.25rem);
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow-white.svg) no-repeat center center/contain;
  top: 2px;
  margin-right: 5px;
}
.c-recipe-main__bottom {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem) auto 0;
  padding: 0 40px;
}
.c-recipe-main__bottom .splide__pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  z-index: 1;
}
.c-recipe-main__bottom .splide__page {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #EE372A;
  background: #fff;
  border-radius: 50%;
}
.c-recipe-main__bottom .splide__page.is-active {
  background: #EE372A;
}
.c-recipe-main__bottom .splide__arrows {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.c-recipe-main__bottom .splide__arrow {
  position: relative;
  width: 12px;
  aspect-ratio: 1;
}
.c-recipe-main__bottom .splide__arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border-top: 2px solid #EE372A;
  border-right: 2px solid #EE372A;
  top: 50%;
  left: 50%;
}
.c-recipe-main__bottom .splide__arrow--prev {
  left: 0;
}
.c-recipe-main__bottom .splide__arrow--prev::after {
  rotate: -135deg;
  translate: -30% -50%;
}
.c-recipe-main__bottom .splide__arrow--next {
  right: 0;
}
.c-recipe-main__bottom .splide__arrow--next::after {
  rotate: 45deg;
  translate: -70% -50%;
}

.c-recipe-sub {
  position: relative;
  border-top: 1px solid #EE372A;
  padding: 30px 0 0 0;
}
@media screen and (min-width: 768px) {
  .c-recipe-sub {
    padding: 0 clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
    margin: 0 0 0 clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
    border-top: none;
    border-left: 2px solid #EE372A;
  }
}
@media screen and (min-width: 768px) {
  .c-recipe-sub .splide__slide {
    margin-bottom: 15px;
  }
}
.c-recipe-sub .splide__slide img {
  max-width: 466px;
}
.c-recipe-sub__bottom {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem) auto 0;
  padding: 0 40px;
}
@media screen and (min-width: 768px) {
  .c-recipe-sub__bottom {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: 50%;
    right: -30px;
    translate: 0 -50%;
    margin: 0;
    padding: 0;
  }
}
.c-recipe-sub__bottom .splide__pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-recipe-sub__bottom .splide__pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-recipe-sub__bottom .splide__page {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #EE372A;
  background: #fff;
  border-radius: 50%;
}
.c-recipe-sub__bottom .splide__page.is-active {
  background: #EE372A;
}
.c-recipe-sub__bottom .splide__arrows {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .c-recipe-sub__bottom .splide__arrows {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    left: 50%;
    translate: -50% -50%;
    height: calc(100% + 50px);
  }
}
.c-recipe-sub__bottom .splide__arrow {
  position: relative;
  width: 12px;
  aspect-ratio: 1;
}
.c-recipe-sub__bottom .splide__arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border-top: 2px solid #EE372A;
  border-right: 2px solid #EE372A;
  top: 50%;
  left: 50%;
}
.c-recipe-sub__bottom .splide__arrow--prev {
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-recipe-sub__bottom .splide__arrow--prev {
    rotate: 90deg;
  }
}
.c-recipe-sub__bottom .splide__arrow--prev::after {
  rotate: -135deg;
  translate: -30% -50%;
}
.c-recipe-sub__bottom .splide__arrow--next {
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-recipe-sub__bottom .splide__arrow--next {
    rotate: 90deg;
  }
}
.c-recipe-sub__bottom .splide__arrow--next::after {
  rotate: 45deg;
  translate: -70% -50%;
}

/* ===============================================
# 作り方
=============================================== */
.cooking {
  counter-reset: number 0;
}
.cooking__preparation {
  line-height: 1.8;
  margin-bottom: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
}
.cooking__index {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #EE372A;
  border: 1px solid #EE372A;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1;
  padding: 5px clamp(0.9375rem, 0.75rem + 0.8vw, 1.25rem);
  margin-bottom: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
}
.cooking__item {
  display: grid;
  grid-template-columns: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem) 1fr;
  gap: clamp(0.5rem, 0.2rem + 1.28vw, 1rem);
  padding: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem) 0;
  border-bottom: 1px dotted #D3D3D3;
}
@media print {
  .cooking__item {
    grid-template-columns: 10px 1fr;
    padding: 5px;
  }
}
.cooking__num {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid #EE372A;
  border-radius: 50%;
}
@media print {
  .cooking__num {
    aspect-ratio: initial;
    border: none;
  }
}
.cooking__num::before {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  color: #EE372A;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: bold;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media print {
  .cooking__num::before {
    position: static;
    font-size: 12px;
  }
}
.cooking__inner:has(.cooking__img) {
  display: grid;
  gap: 15px clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .cooking__inner:has(.cooking__img) {
    grid-template-columns: 1fr clamp(12.5rem, 7.625rem + 20.8vw, 20.625rem);
  }
}
@media print {
  .cooking__img {
    display: none;
  }
}
.cooking__text {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  line-height: 1.6;
}
@media print {
  .cooking__text {
    font-size: 13px;
  }
}
.cooking__memo {
  position: relative;
  background-color: #ffffff;
  background-image: radial-gradient(circle, #ccb361 0.5px, transparent 0.5px), radial-gradient(circle, #ccb361 0.5px, transparent 0.5px);
  background-position: 0 0, 1.5px 3px;
  background-size: 3px 6px;
  padding: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem) clamp(0.9375rem, -1.5rem + 10.4vw, 5rem);
  margin-top: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
@media print {
  .cooking__memo {
    border: 1px solid #D3D3D3;
    padding: 15px;
  }
}
.cooking__memo:has(img) {
  display: grid;
  gap: 20px clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .cooking__memo:has(img) {
    grid-template-columns: 1fr 1fr;
  }
}
.cooking__memo::before {
  content: "";
  position: absolute;
  width: clamp(3.75rem, 3rem + 3.2vw, 5rem);
  aspect-ratio: 17/6;
  background: url(../../assets/img/icon/memo.svg) no-repeat center center/contain;
  top: -10px;
  left: 50%;
  translate: -50% 0;
  rotate: -10deg;
}
@media print {
  .cooking__memo::before {
    content: "memo";
    font-size: 13px;
    rotate: 0deg;
    width: auto;
    padding: 0 20px;
  }
}
.cooking__lead {
  color: #EE372A;
  font-size: clamp(0.875rem, 0.7625rem + 0.48vw, 1.0625rem);
  font-weight: bold;
  line-height: 1.6;
}
@media print {
  .cooking__lead {
    font-size: 14px;
  }
}

/* ===============================================
# 表組
=============================================== */
.sub-heading {
  color: #EE372A;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: bold;
  line-height: 1.4;
  border-left: 4px solid #EE372A;
  padding-left: 15px;
}
@media print {
  .sub-heading {
    font-size: 14px;
    border-width: 2px;
    padding-left: 10px;
  }
}

.dl {
  display: grid;
  gap: 5px 20px;
  border-bottom: 1px dotted #D3D3D3;
  padding: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem) clamp(0rem, -0.75rem + 3.2vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .dl {
    grid-template-columns: 250px 1fr;
  }
}
@media print {
  .dl {
    grid-template-columns: 200px 1fr;
    padding: 5px;
  }
  .dl .dd {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .dl--between .dd {
    margin-left: auto;
  }
}
.dl:has(+ .sub-heading) {
  margin-bottom: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}

.dt, .dd {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  line-height: 1.4;
}
@media print {
  .dt, .dd {
    font-size: 13px;
  }
}

/* ===============================================
# シェアボタン
=============================================== */
.share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
.share__btn {
  width: clamp(1.5rem, 1.275rem + 0.96vw, 1.875rem);
}

/* ===============================================
# 商品リスト
=============================================== */
.c-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
}
.c-products--wide {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.c-products__link {
  display: grid;
  grid-template-columns: clamp(5.625rem, 4.5rem + 4.8vw, 7.5rem) 1fr;
}
@media (hover: hover) {
  .c-products__link:hover .c-products__text {
    color: #EE372A;
  }
  .c-products__link:hover .c-products__img {
    translate: 0 -5px;
  }
}
.c-products__img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-products__text-wrap {
  border-bottom: 1px dotted #D3D3D3;
}
.c-products__text {
  display: grid;
  grid-template-columns: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem) 1fr;
  gap: 5px;
  line-height: 1.4;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-products__text::before {
  content: "";
  position: relative;
  width: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem);
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
  top: 2px;
}
.c-products__new {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background: #EE372A;
  font-size: clamp(0.75rem, 0.675rem + 0.32vw, 0.875rem);
  font-weight: bold;
  line-height: 1;
  padding: 3px 10px;
  margin-bottom: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
}

/* ===============================================
# レシピリスト
=============================================== */
.l-recipe {
  display: grid;
  gap: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .l-recipe {
    grid-template-columns: 1fr 1fr;
  }
}
.l-recipe__link {
  display: grid;
  grid-template-columns: clamp(6.25rem, 1.75rem + 19.2vw, 13.75rem) 1fr;
  gap: clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
}
@media (hover: hover) {
  .l-recipe__link:hover .l-recipe__text {
    color: #EE372A;
  }
  .l-recipe__link:hover .l-recipe__img-wrap img {
    scale: 1.05;
  }
}
.l-recipe__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.l-recipe__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-recipe__text-wrap {
  border-bottom: 1px dotted #D3D3D3;
}
.l-recipe__text {
  display: grid;
  grid-template-columns: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem) 1fr;
  gap: 5px;
  line-height: 1.3;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-recipe__text::before {
  content: "";
  position: relative;
  width: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem);
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
  top: 2px;
}
.l-recipe__tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
  margin: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem) 0;
}
.l-recipe__tag {
  font-size: clamp(0.625rem, 0.55rem + 0.32vw, 0.75rem);
  font-weight: bold;
  color: #EE372A;
}

.recipe-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0 clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .recipe-list {
    gap: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem) clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
  }
}
.recipe-list__link {
  display: grid;
  grid-template-columns: clamp(6.875rem, 5.75rem + 4.8vw, 8.75rem) 1fr;
  gap: 10px;
  border-bottom: 1px dotted #D3D3D3;
  padding: clamp(0.9375rem, 0.75rem + 0.8vw, 1.25rem) 0;
}
@media screen and (min-width: 768px) {
  .recipe-list__link {
    grid-template-columns: auto;
    border: none;
    padding: 0;
  }
}
@media (hover: hover) {
  .recipe-list__link:hover .recipe-list__text {
    color: #EE372A;
  }
  .recipe-list__link:hover .recipe-list__img-wrap img {
    scale: 1.05;
  }
}
.recipe-list__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.recipe-list__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recipe-list__text {
  display: grid;
  grid-template-columns: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem) 1fr;
  gap: 5px;
  line-height: 1.3;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.recipe-list__text::before {
  content: "";
  position: relative;
  width: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem);
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
  top: 2px;
}
.recipe-list__tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
  margin: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem) 0 0;
}
.recipe-list__tag {
  font-size: clamp(0.625rem, 0.55rem + 0.32vw, 0.75rem);
  font-weight: bold;
  color: #EE372A;
}

/* ===============================================
# タグ
=============================================== */
.cmn-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
  margin-top: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
.cmn-tag__label {
  display: block;
  background: #fff;
  color: #EE372A;
  border: 1px solid #EE372A;
  border-radius: 30px;
  font-size: clamp(0.625rem, 0.55rem + 0.32vw, 0.75rem);
  font-weight: bold;
  padding: 5px 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .cmn-tag__label:hover {
    color: #fff;
    background: #EE372A;
  }
}
@media print {
  .cmn-tag__label {
    font-size: 10px;
  }
}

/* ===============================================
# 検索フォーム（FE Advanced Search）
=============================================== */
.c-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  max-width: 1000px;
  min-height: clamp(8.125rem, 4.75rem + 14.4vw, 13.75rem);
  border-radius: clamp(1.875rem, -4.5rem + 27.2vw, 12.5rem);
  margin: 0 auto;
  padding: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem) clamp(1.25rem, -2.5rem + 16vw, 7.5rem);
}
.c-search:has(+ .c-recipe) {
  margin-bottom: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}
.c-search__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
  color: #EE372A;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: bold;
  margin-bottom: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
.c-search__title::before {
  content: "";
  width: clamp(1.875rem, 1.3125rem + 2.4vw, 2.8125rem);
  aspect-ratio: 3/2;
  background: url(../../assets/img/icon/recipe.svg) no-repeat center center/contain;
}
.c-search__title--products::before {
  content: "";
  width: clamp(0.75rem, 0.6rem + 0.64vw, 1rem);
  aspect-ratio: 1/2;
  background: url(../../assets/img/icon/products.svg) no-repeat center center/contain;
}
.c-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #D3D3D3;
  border-radius: 10px;
}
.c-search input[type=text] {
  width: 100%;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  padding: clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
}
.c-search__btn {
  position: relative;
  color: #fff;
  background: #EE372A;
  border-radius: 0 10px 10px 0;
}
.c-search__btn::after {
  content: "";
  position: absolute;
  width: clamp(1.125rem, 0.675rem + 1.92vw, 1.875rem);
  aspect-ratio: 1;
  background: url(../../assets/img/icon/search-white.svg) no-repeat center center/contain;
  top: 50%;
  right: clamp(0.1875rem, -0.075rem + 1.12vw, 0.625rem);
  translate: 0 -50%;
  pointer-events: none;
}
.c-search input[type=submit] {
  height: 100%;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  padding: clamp(0.5rem, 0.2375rem + 1.12vw, 0.9375rem) clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem) clamp(0.5rem, 0.2375rem + 1.12vw, 0.9375rem) clamp(0.5rem, 0.2375rem + 1.12vw, 0.9375rem);
}
.c-search__tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px clamp(0.625rem, -0.125rem + 3.2vw, 1.875rem);
  margin-top: clamp(0.9375rem, 0.75rem + 0.8vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .c-search__tag-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-search__lead {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: bold;
}
.c-search__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.5rem, 0.2rem + 1.28vw, 1rem);
}

.filter {
  max-width: 800px;
  margin: 0 auto;
  /* 全体のlabel */
}
.filter__item {
  border: 1px solid #D3D3D3;
  border-radius: 10px;
  margin-bottom: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
.filter__title {
  position: relative;
  font-weight: bold;
  padding: clamp(0.9375rem, 0.75rem + 0.8vw, 1.25rem);
  cursor: pointer;
}
.filter__title::before, .filter__title::after {
  content: "";
  position: absolute;
  width: clamp(0.75rem, 0.6rem + 0.64vw, 1rem);
  height: 2px;
  background: #EE372A;
  top: 50%;
  right: clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
  translate: 0 -50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.filter__title::after {
  rotate: -90deg;
}
.filter__title.active::after {
  rotate: 0deg;
}
.filter__body {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.filter__index {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.9375rem, 0.75rem + 0.8vw, 1.25rem);
  font-size: clamp(0.875rem, 0.7625rem + 0.48vw, 1.0625rem);
  padding: clamp(0.9375rem, 0.75rem + 0.8vw, 1.25rem);
}
.filter__index::before {
  content: "";
  position: absolute;
  width: calc(100% - clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem));
  height: 1px;
  background: #EE372A;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.filter .feas_clevel_01 {
  cursor: pointer;
}
.filter .feas_clevel_01 input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.filter .feas_clevel_01 input[type=checkbox] + span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.25rem, 0.1rem + 0.64vw, 0.5rem);
}
.filter .feas_clevel_01 input[type=checkbox] + span::before {
  content: "";
  display: block;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #EE372A;
  width: 16px;
  height: 16px;
}
.filter .feas_clevel_01 input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #EE372A;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.filter__free {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px clamp(0.625rem, 0.25rem + 1.6vw, 1.25rem);
  margin-bottom: clamp(0.9375rem, 0.375rem + 2.4vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .filter__free {
    grid-template-columns: auto 1fr;
  }
}
.filter__lead {
  font-size: clamp(0.875rem, 0.7625rem + 0.48vw, 1.0625rem);
  font-weight: bold;
}
.filter input[type=text] {
  width: 100%;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  border: 1px solid #D3D3D3;
  border-radius: 10px;
  padding: clamp(0.9375rem, 0.75rem + 0.8vw, 1.25rem);
}
.filter__btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.3125rem, -0.25rem + 2.4vw, 1.25rem);
}
.filter__btn-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background: #EE372A;
  border-radius: 40px;
}
.filter__btn-wrap::after {
  content: "";
  position: absolute;
  width: clamp(1.125rem, 0.675rem + 1.92vw, 1.875rem);
  aspect-ratio: 1;
  background: url(../../assets/img/icon/search-white.svg) no-repeat center center/contain;
  top: 50%;
  right: clamp(0.625rem, 0.325rem + 1.28vw, 1.125rem);
  translate: 0 -50%;
  pointer-events: none;
}
.filter input[type=reset] {
  height: 100%;
  border: 1px solid #D3D3D3;
  border-radius: 40px;
  font-size: clamp(0.75rem, 0.675rem + 0.32vw, 0.875rem);
  padding: clamp(0.5rem, 0.2375rem + 1.12vw, 0.9375rem) clamp(0.9375rem, 0.75rem + 0.8vw, 1.25rem);
}
.filter input[type=submit] {
  height: 100%;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  padding: clamp(0.5rem, 0.2375rem + 1.12vw, 0.9375rem) clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem) clamp(0.5rem, 0.2375rem + 1.12vw, 0.9375rem) clamp(1.125rem, 0.8625rem + 1.12vw, 1.5625rem);
}

/* ===============================================
# ページネーション
=============================================== */
.pagination {
  margin-top: clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.5rem, -0.325rem + 3.52vw, 1.875rem);
}
.page-numbers li span, .page-numbers li a {
  display: grid;
  place-content: center;
  width: clamp(1.5rem, 0.9rem + 2.56vw, 2.5rem);
  height: clamp(1.5rem, 0.9rem + 2.56vw, 2.5rem);
  border-radius: 50%;
  font-size: clamp(0.875rem, 0.65rem + 0.96vw, 1.25rem);
}
.page-numbers li span {
  color: #fff;
  background: #EE372A;
}
.page-numbers li a {
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .page-numbers li a:hover {
    background: #FFF0F5;
  }
}
.page-numbers.dots {
  color: #EE372A;
  background: none;
}
.page-numbers.next, .page-numbers.prev {
  position: relative;
}
.page-numbers.next::before, .page-numbers.prev::before {
  content: "";
  position: absolute;
  width: clamp(0.375rem, 0.225rem + 0.64vw, 0.625rem);
  height: clamp(0.375rem, 0.225rem + 0.64vw, 0.625rem);
  border-top: 2px solid #EE372A;
  border-right: 2px solid #EE372A;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.page-numbers.prev::before {
  rotate: -135deg;
}
.page-numbers.next::before {
  rotate: 45deg;
}

/* ===============================================
# happy sunバナー
=============================================== */
.happysun {
  max-width: clamp(17.5rem, 14.5rem + 12.8vw, 22.5rem);
  margin: 0 auto;
}
.happysun__lead {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #EE372A;
  font-size: clamp(0.875rem, 0.65rem + 0.96vw, 1.25rem);
  font-weight: bold;
  margin: 0 auto clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
  padding: 0 20px;
}
.happysun__lead::before, .happysun__lead::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #EE372A;
  top: 50%;
  translate: 0 -50%;
}
.happysun__lead::before {
  left: 0;
  rotate: -30deg;
}
.happysun__lead::after {
  right: 0;
  rotate: 30deg;
}
.happysun__lead span {
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
}

/* ===============================================
# コラム一覧
=============================================== */
.column {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px clamp(1.25rem, -1.75rem + 12.8vw, 6.25rem);
}
@media screen and (min-width: 768px) {
  .column {
    grid-template-columns: 1fr clamp(6.25rem, -1.25rem + 32vw, 18.75rem);
  }
}
.column__list--col2 {
  display: grid;
}
@media screen and (min-width: 768px) {
  .column__list--col2 {
    grid-template-columns: 1fr 1fr;
    gap: 0 clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
  }
}
.column__link {
  display: grid;
  grid-template-columns: clamp(6.875rem, 3.5rem + 14.4vw, 12.5rem) 1fr;
  gap: clamp(0.625rem, 0.4375rem + 0.8vw, 0.9375rem);
  border-top: 1px dotted #D3D3D3;
  border-bottom: 1px dotted #D3D3D3;
  padding: clamp(1.25rem, 0.875rem + 1.6vw, 1.875rem) 0;
  margin-top: -1px;
}
@media (hover: hover) {
  .column__link:hover .column__text {
    color: #EE372A;
  }
  .column__link:hover .column__img-wrap img {
    scale: 1.05;
  }
}
.column__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.column__img-wrap:has(.no-image) {
  border: 1px solid #D3D3D3;
}
.column__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.column__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
  margin-bottom: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
}
.column__date {
  font-size: clamp(0.8125rem, 0.7375rem + 0.32vw, 0.9375rem);
}
.column__label {
  color: #EE372A;
  background: #fff;
  border: 1px solid #EE372A;
  font-size: clamp(0.625rem, 0.475rem + 0.64vw, 0.875rem);
  line-height: 1;
  padding: 3px clamp(0.5rem, 0.2rem + 1.28vw, 1rem);
}
.column__title {
  display: grid;
  grid-template-columns: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem) 1fr;
  gap: 5px;
}
.column__title::before {
  content: "";
  position: relative;
  width: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem);
  aspect-ratio: 1;
  background: url(../../assets/img/icon/arrow.svg) no-repeat center center/contain;
  top: 2px;
}
.column__text {
  font-size: clamp(0.875rem, 0.7625rem + 0.48vw, 1.0625rem);
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}/*# sourceMappingURL=common.css.map */