@charset "UTF-8";

/* --------------------------------------------------------------------------
  STYLE
-------------------------------------------------------------------------- */

.js-brand-box-title,
.js-brand-box-text {
  height: 0;
  overflow: hidden;
}
/* スライダー共通ボタン */
@media all and (min-width: 768px), print {
  .top-slide-btn-controller {
    display: flex;
    gap: calc(16 / var(--page-font) * 1rem);
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    margin-top: calc(-18 / var(--page-font) * 1rem);
    margin-right: calc(140 / 1440 * 100%);
  }
  .top-slide-btn-controller .swiper-button-prev,
  .top-slide-btn-controller .swiper-button-next {
    --btn-bg: var(--c-main);
    --btn-border: var(--c-main);
    --ico-bg: var(--c-white);
    width: calc(47 / var(--page-font) * 1rem);
    height: calc(47 / var(--page-font) * 1rem);
    background: var(--btn-bg);
    border: solid 1px var(--btn-border);
    border-radius: 100%;
    position: static;
    margin: 0;
    transition: var(--transition-all);
  }
  .top-slide-btn-controller .swiper-button-prev {
    padding-right: calc(2 / var(--page-font) * 1rem);
  }
  .top-slide-btn-controller .swiper-button-next {
    padding-left: calc(2 / var(--page-font) * 1rem);
  }
  .top-slide-btn-controller .swiper-button-prev:hover,
  .top-slide-btn-controller .swiper-button-next:hover {
    --btn-bg: var(--c-white);
    --ico-bg: var(--c-main);
  }
  .top-slide-btn-controller .swiper-button-prev::after,
  .top-slide-btn-controller .swiper-button-next::after {
    content: "";
    -webkit-mask: url("/assets_v2/img/common/btn_ico_arrow.svg") no-repeat center / contain;
    mask: url("/assets_v2/img/common/btn_ico_arrow.svg") no-repeat center / contain;
    background: var(--ico-bg);
    width: calc(13 / var(--page-font) * 1rem);
    height: calc(13 / var(--page-font) * 1rem);
    transition: var(--transition-all);
  }
  .top-slide-btn-controller .swiper-button-prev::after {
    transform: rotate(180deg);
  }
}
@media all and (max-width: 767px) {
  .top-slide-btn-controller {
    display: none;
  }
}

/* --------------------------------------------------------------------------
ANIMATION
-------------------------------------------------------------------------- */
@media all and (min-width: 768px), print {
  body {
    transform-origin: top center;
    animation: loading 1.5s;
  }
  @keyframes loading {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/* mv-animation */
@media all and (min-width: 768px), print {
  .mv-animation-text {
    display: block;
    margin-top: calc(77 / 430 * 100%);
  }
  .mv-animation-text__inner {
    position: relative;
    width: calc(370 / 430 * 100%);
    aspect-ratio: 370 / 128;
  }
  .mv-animation-text-content__label {
    visibility: hidden;
    display: none;
  }
  .mv-animation-text svg {
    width: 100%;
    height: 100%;
  }
  .mv-animation-text__inner::before {
    content: "";
    display: block;
    width: calc(226 / 370 * 100%);
    padding-top: calc(56 / 370 * 100%);
    background: url("/assets_v2/img/top/mv_deco_title.svg") no-repeat center / contain;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: calc(-30 / 370 * 100%);
    opacity: 0.15;
  }
  .mv-animation-text-mask__label {
    fill: none;
    stroke: var(--c-white);
    stroke-width: 6;
    stroke-miterlimit: 10;
  }
  .mv-animation-text__label {
    fill: var(--c-orange);
  }
}
@media all and (max-width: 767px) {
  .mv-animation-text {
    display: block;
    margin: auto;
    width: calc(202 / 375 * 100vw);
    aspect-ratio: 202 / 71;
    text-align: center;
  }
  .mv-animation-text__inner {
    position: relative;
  }
  .mv-animation-text-content__label {
    visibility: hidden;
    display: none;
  }
  .mv-animation-text svg {
    width: 100%;
    height: 100%;
  }
  .mv-animation-text__inner::before {
    content: "";
    display: block;
    width: calc(134 / 375 * 100vw);
    padding-top: calc(26 / 375 * 100vw);
    background: url("/assets_v2/img/top/mv_deco_title.svg") no-repeat center / contain;
    position: absolute;
    bottom: 0;
    left: calc(43 / 375 * 100vw);
    margin-bottom: calc(-22 / 375 * 100vw);
    opacity: 0.15;
  }
  .mv-animation-text-mask__label {
    fill: none;
    stroke: var(--c-white);
    stroke-width: 6;
    stroke-miterlimit: 10;
  }
  .mv-animation-text__label {
    fill: var(--c-orange);
  }
}

/* top-header */
@media all and (min-width: 768px), print {
  .top-header-text__label > span,
  .top-header-sub__label > span {
    opacity: 0;
    transition: var(--transition-all);
    transform: translateY(40%);
    display: inline-block;
  }
  .top-header-text__label > span.is-active,
  .top-header-sub__label > span.is-active {
    opacity: 1;
    animation: headingAnimation 0.85s linear forwards;
  }

  @keyframes headingAnimation {
    0% {
      transform: translateY(25%);
    }
    25% {
      transform: translateY(-5%);
    }
    50% {
      transform: translateY(2.5%);
    }
    75% {
      transform: translateY(-0.25%);
    }
    100% {
      transform: translateY(0);
    }
  }
}
@media all and (max-width: 767px) {
  .top-header-text__label > span,
  .top-header-sub__label > span {
    opacity: 0;
    transition: var(--transition-all);
    transform: translateY(40%);
    display: inline-block;
  }
  .top-header-text__label > span.is-active,
  .top-header-sub__label > span.is-active {
    opacity: 1;
    animation: headingAnimation 0.85s linear forwards;
  }

  @keyframes headingAnimation {
    0% {
      transform: translateY(25%);
    }
    25% {
      transform: translateY(-5%);
    }
    50% {
      transform: translateY(2.5%);
    }
    75% {
      transform: translateY(-0.25%);
    }
    100% {
      transform: translateY(0);
    }
  }
}

/* js-animation-list */
@media all and (min-width: 768px), print {
  .js-animation-list > li {
    opacity: 0;
    transform: translateY(10%);
    transition: all 0.5s ease;
  }
  .js-animation-list .js-animation-list--active {
    transform: translateY(0);
    opacity: 1;
  }
}
@media all and (max-width: 767px) {
  .js-animation-list > li {
    opacity: 0;
    transform: translateY(10%);
    transition: all 0.5s ease;
  }
  .js-animation-list .js-animation-list--active {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
CONTENTS
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .main-container {
  }
  .l-section {
    position: relative;
    z-index: 0;
    margin-top: calc(38 / var(--page-font) * 1rem);
  }
  .l-section.--bg-white-wave {
  }
  .top-header,
  .l-section__inner,
  .mainvisual__inner {
    padding: 0 calc(40 / var(--page-font) * 1rem);
    max-width: calc(1180 / var(--page-font) * 1rem);
    width: 100%;
    margin: 0 auto;
  }

  .bg-deco {
    background-color: #fff;
    position: relative;
  }
  .bg-deco::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(192 / var(--page-font) * 1rem);
    -webkit-mask: url(../img/common/deco_bg.svg) no-repeat center / calc(2560 / var(--page-font) * 1rem);
    mask: url(../img/common/deco_bg.svg) no-repeat center / calc(2560 / var(--page-font) * 1rem);
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: calc(-114 / var(--page-font) * 1rem);
    z-index: -1;
  }
  .bg-deco.--bg-deco-orange,
  .bg-deco.--bg-deco-orange:before {
    background-color: var(--bg-orange);
  }
}

@media all and (max-width: 767px) {
  .main-container {
  }
  .l-section {
    position: relative;
    z-index: 0;
    margin-top: calc(50 / 375 * 100vw);
  }
  .top-header {
    padding: 0 0;
    margin: 0 auto;
  }
  .l-section__inner,
  .mainvisual__inner {
    padding: 0 calc(18 / 375 * 100vw);
    margin: 0 auto;
  }

  .bg-deco {
    background-color: #fff;
    position: relative;
  }
  .bg-deco::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(48.5 / 375 * 100vw);
    -webkit-mask: url(../img/common/deco_bg_sp.svg) no-repeat center bottom / 100vw;
    mask: url(../img/common/deco_bg_sp.svg) no-repeat center bottom / 100vw;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: calc(-20 / 375 * 100vw);
    z-index: -1;
  }
  .bg-deco.--bg-deco-orange,
  .bg-deco.--bg-deco-orange:before {
    background-color: var(--bg-orange);
  }
}

/* --------------------------------------------------------------------------
  MV
-------------------------------------------------------------------------- */
@media all and (min-width: 768px), print {
  .mainvisual {
    background-color: #fff;
    padding-top: calc(55 / 1440 * 100vw);
    background-image: url(../img/top/bg_mainvisual_01_pc.png);
    background-size: 102% auto;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    height: calc(458 / 1440 * 100vw);
  }
  .mainvisual__inner {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
  }
  .mainvisual__body {
    max-width: calc(565 / 1440 * 100vw);
    position: relative;
    left: calc(2 / 1440 * 100vw);
    margin: 0 auto;
  }
  .mainvisual:after {
    content: "";
    background-color: #fff;
    mask-image: url(../img/common/bg_mainvisual_line_pc.svg);
    mask-size: cover;
    mask-position: top center;
    mask-repeat: no-repeat;
    position: absolute;
    display: block;
    width: 100%;
    height: calc(114 / 1440 * 100vw);
    left: 0;
    bottom: 0;
    z-index: 10;
  }
}
@media all and (max-width: 767px) {
  .mainvisual {
    background-color: #fff;
    padding-top: calc(81 / 750 * 100vw);
    background-image: url(../img/top/bg_mainvisual_01_sp.png);
    background-size: 100% auto;
    background-position: top calc(-100 / 750 * 100vw) center;
    background-repeat: no-repeat;
    position: relative;
    height: calc(960 / 750 * 100vw);
  }
  .mainvisual__inner {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
  }
  .mainvisual__body {
    max-width: calc(539 / 750 * 100vw);
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------------
  ABOUT
-------------------------------------------------------------------------- */
@media all and (min-width: 768px), print {
  .l-section.--about .c-section-title__inner {
    max-width: calc(296 / var(--page-font) * 1rem);
    width: 100%;
  }
  .l-section.--about .c-bg-green-box-bg {
  }

  .about-contents {
    margin-top: calc(54 / var(--page-font) * 1rem);
  }
  .about-contents__text {
    font-size: calc(20 / var(--page-font) * 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(40 / 20);
    text-align: center;
  }
  .about-box-wrap {
    padding-top: calc(56 / var(--page-font) * 1rem);
    position: relative;
    margin-top: calc(38 / var(--page-font) * 1rem);
  }
  .about-box {
    max-width: calc(1000 / var(--page-font) * 1rem);
    width: 100%;
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
  }
  .about-box__body {
    display: flex;
    gap: calc(80 / var(--page-font) * 1rem);
  }
  .about-box__contents {
    max-width: calc(470 / var(--page-font) * 1rem);
    width: 100%;
    margin-top: calc(15 / var(--page-font) * 1rem);
  }
  .about-box__image {
    padding-bottom: calc(22 / var(--page-font) * 1rem);
    max-width: calc(450 / var(--page-font) * 1rem);
    width: 100%;
    filter: drop-shadow(calc(5 / var(--page-font) * 1rem) calc(6 / var(--page-font) * 1rem) calc(10 / var(--page-font) * 1rem) #efefec);
    position: relative;
    top: calc(-6 / var(--page-font) * 1rem);
  }
  .about-box__title {
    display: flex;
  }
  .about-box__title__icon {
    background-color: var(--main-orange);
    mask-image: url(../img/common/ico_01_pc.svg);
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    max-width: calc(22 / var(--page-font) * 1rem);
    width: 100%;
    height: calc(25 / var(--page-font) * 1rem);
    display: block;
    flex-shrink: 0;
    position: relative;
    top: calc(-4 / var(--page-font) * 1rem);
    left: calc(1 / var(--page-font) * 1rem);
  }
  .about-box__title__label {
    color: var(--title-color);
    font-size: calc(26 / var(--page-font) * 1rem);
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: calc(26 / 36);
    margin-left: calc(20 / var(--page-font) * 1rem);
  }
  .about-box__text {
    font-size: calc(20 / var(--page-font) * 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(40 / 20);
    margin-top: calc(25.5 / var(--page-font) * 1rem);
  }
}
@media all and (max-width: 767px) {
  .l-section.--about {
    margin-top: calc(29 / var(--page-font) * 1rem);
  }
  .l-section.--about .c-section-title__inner {
    max-width: calc(420 / 750 * 100vw);
    width: 100%;
  }
  .about-contents {
    margin-top: calc(64 / 750 * 100vw);
  }
  .about-contents__text {
    font-size: calc(30 / 750 * 100vw);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(40 / 20);
    text-align: center;
  }
  .about-box-wrap {
    padding-top: calc(59 / 750 * 100vw);
    position: relative;
    margin-top: calc(63 / 750 * 100vw);
  }
  .about-box {
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
  }
  .about-box__body {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: calc(40 / 750 * 100vw) 0;
  }
  .about-box__contents {
    max-width: calc(630 / 750 * 100vw);
    width: 100%;
    margin-top: calc(6 / 750 * 100vw);
  }
  .about-box__image {
    padding-bottom: calc(22 / 750 * 100vw);
    max-width: calc(630 / 750 * 100vw);
    width: 100%;
    filter: drop-shadow(calc(5 / 750 * 100vw) calc(14 / 750 * 100vw) calc(12 / 750 * 100vw) #dde7d5);
  }
  .about-box__title {
    display: flex;
  }
  .about-box__title__icon {
    background-color: var(--main-orange);
    mask-image: url(../img/common/ico_01_pc.svg);
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    max-width: calc(31 / 750 * 100vw);
    width: 100%;
    height: calc(37 / 750 * 100vw);
    display: block;
    flex-shrink: 0;
    position: relative;
    top: calc(-7 / 750 * 100vw);
  }
  .about-box__title__label {
    color: var(--title-color);
    font-size: calc(38 / 750 * 100vw);
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: calc(38 / 54);
    margin-left: calc(18 / 750 * 100vw);
  }
  .about-box__text {
    font-size: calc(30 / 750 * 100vw);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(60 / 30);
    margin-top: calc(37 / 750 * 100vw);
  }
}

/* --------------------------------------------------------------------------
  LINEUP
-------------------------------------------------------------------------- */
@media all and (min-width: 768px), print {
  .l-section.--lineup .c-bg-green-box-bg {
    height: calc(363 / var(--page-font) * 1rem);
  }
  .l-section.--lineup .c-section-title__inner {
    max-width: calc(235 / var(--page-font) * 1rem);
    width: 100%;
  }
  .l-section.--lineup .c-bg-green-box-bg {
  }

  .lineup-contents {
    margin-top: calc(54 / var(--page-font) * 1rem);
  }
  .lineup-contents__text {
    font-size: calc(20 / var(--page-font) * 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(40 / 20);
    text-align: center;
  }
  .lineup-box-wrap {
    padding-top: calc(54 / var(--page-font) * 1rem);
    position: relative;
    margin-top: calc(44 / var(--page-font) * 1rem);
  }
  .lineup-box {
    max-width: calc(1100 / var(--page-font) * 1rem);
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: calc(67 / var(--page-font) * 1rem);
    margin-left: auto;
    margin-right: auto;
  }
  .lineup-box + .lineup-box {
    margin-top: calc(65 / var(--page-font) * 1rem);
  }
  .lineup-box__inner {
    padding: calc(34 / var(--page-font) * 1rem) 0 0 0;
  }
  .lineup-box__body {
    background-color: #fff;
    padding-top: calc(11 / var(--page-font) * 1rem);
    padding-bottom: calc(11 / var(--page-font) * 1rem);
    position: relative;
    filter: drop-shadow(calc(5 / var(--page-font) * 1rem) calc(6 / var(--page-font) * 1rem) calc(10 / var(--page-font) * 1rem) #eef4ea);
    mix-blend-mode: multiply;
  }
  .lineup-box__container {
    padding: calc(0 / var(--page-font) * 1rem) calc(40 / var(--page-font) * 1rem) calc(22 / var(--page-font) * 1rem) calc(40 / var(--page-font) * 1rem);
    margin: calc(0 / var(--page-font) * 1rem) calc(12 / var(--page-font) * 1rem) calc(0 / var(--page-font) * 1rem) calc(12 / var(--page-font) * 1rem);
    border: 1px solid #a2cb28;
    position: relative;
    z-index: 10;
  }
  .lineup-box__container__inner {
    display: flex;
    gap: calc(52 / var(--page-font) * 1rem);
  }
  .lineup-box__contents {
    max-width: calc(550 / var(--page-font) * 1rem);
    width: 100%;
    position: relative;
    z-index: 20;
  }
  .lineup-box__image {
    max-width: calc(380 / var(--page-font) * 1rem);
    width: 100%;
    margin-top: calc(-43 / var(--page-font) * 1rem);
    margin-left: calc(16 / var(--page-font) * 1rem);
  }
  .lineup-box__title {
    padding-right: calc(9 / var(--page-font) * 1rem);
    padding-bottom: calc(18 / var(--page-font) * 1rem);
    max-width: calc(260 / var(--page-font) * 1rem);
    width: 100%;
    height: calc(149 / var(--page-font) * 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: calc(-51 / var(--page-font) * 1rem);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: calc(1 / var(--page-font) * 1rem);
    mix-blend-mode: multiply;
  }
  .lineup-box__title__bk {
    background-image: url(../img/top/bg_lineup_01_01_pc.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    margin: 0 auto;
    mix-blend-mode: multiply;
  }
  .lineup-box__title__label {
    color: var(--title-color);
    font-size: calc(26 / var(--page-font) * 1rem);
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: calc(26 / 36);
    position: relative;
    z-index: 10;
    top: calc(5 / var(--page-font) * 1rem);
  }
  .lineup-box__text {
    font-size: calc(18 / var(--page-font) * 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(36 / 18);
    margin-top: calc(14 / var(--page-font) * 1rem);
  }
  .lineup-box__text__attention {
    font-size: calc(14 / var(--page-font) * 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(30 / 14);
    display: flex;
  }
  .lineup-box__text__attention:before {
    content: "※";
    flex-shrink: 0;
  }
  .lineup-box__buttom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(17 / var(--page-font) * 1rem);
    margin-top: calc(20 / var(--page-font) * 1rem);
  }
  .lineup-box-button {
    max-width: calc(100% / 2 - calc(8.5 / var(--page-font) * 1rem));
    width: 100%;
  }

  .lineup-box-button .mc-button {
    --btn-bg-color: var(--button-color);
    --btn-border-color: var(--button-color);
  }
  .lineup-box-button .mc-button:hover {
    --btn-bg-color: var(--c-white);
  }

  .lineup-box-button .mc-button .text-02 {
    font-size: 80%;
    position: relative;
    top: calc(-3 / var(--page-font) * 1rem);
  }

  .line-box-text-02 {
    font-size: calc(16 / var(--page-font) * 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(32 / 16);
    text-align: center;
    margin-top: calc(19 / var(--page-font) * 1rem);
  }

  .line-box-banner {
    max-width: calc(800 / var(--page-font) * 1rem);
    width: 100%;
    margin-top: calc(21 / var(--page-font) * 1rem);
    margin-left: auto;
    margin-right: auto;
  }

  .line-box-banner__link {
    display: block;
    transition: 0.3s ease;
  }

  .line-box-banner__link:hover {
    opacity: 0.7;
  }

  /*************************/
  .lineup-box.--box-02 .lineup-box__container {
    padding-bottom: calc(48 / var(--page-font) * 1rem);
    gap: calc(58 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-02 .lineup-box__container__inner {
    flex-direction: row-reverse;
  }
  .lineup-box.--box-02 .lineup-box__image {
    position: relative;
    top: calc(-7 / var(--page-font) * 1rem);
    left: calc(-10 / var(--page-font) * 1rem);
    margin-top: calc(25 / var(--page-font) * 1rem);
    margin-left: 0;
  }
  .lineup-box.--box-02 .lineup-box__title {
    max-width: calc(335 / var(--page-font) * 1rem);
    width: 100%;
    height: calc(184 / var(--page-font) * 1rem);
    gap: calc(49 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-02 .lineup-box__title__label {
    line-height: calc(26 / 18);
    text-align: center;
  }
  .lineup-box.--box-02 .lineup-box__title__bk {
    background-image: url(../img/top/bg_lineup_02_01_pc.png);
  }
  .lineup-box.--box-02 .lineup-box__contents {
    max-width: calc(546 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-02 .lineup-box__text {
    margin-top: calc(8 / var(--page-font) * 1rem);
  }
  /*************************/
  .lineup-box.--box-03 .lineup-box__container {
    padding-bottom: calc(48 / var(--page-font) * 1rem);
    gap: calc(58 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-03 .lineup-box__container__inner {
    gap: calc(48 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-03 .lineup-box__image {
    position: relative;
    top: calc(-7 / var(--page-font) * 1rem);
    left: calc(-2 / var(--page-font) * 1rem);
    margin-top: calc(27 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-03 .lineup-box__title {
    max-width: calc(310 / var(--page-font) * 1rem);
    width: 100%;
    height: calc(180 / var(--page-font) * 1rem);
    margin-top: calc(-48 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-03 .lineup-box__title__label {
    line-height: calc(26 / 18);
    text-align: center;
  }
  .lineup-box.--box-03 .lineup-box__title__bk {
    background-image: url(../img/top/bg_lineup_03_01_pc.png);
  }
  .lineup-box.--box-03 .lineup-box__contents {
  }
  /*************************/
  .lineup-box.--box-04 .lineup-box__container {
    padding-bottom: calc(37 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-04 .lineup-box__container__inner {
    flex-direction: row-reverse;
  }
  .lineup-box.--box-04 .lineup-box__image {
    max-width: calc(310 / var(--page-font) * 1rem);
    margin-top: calc(70 / var(--page-font) * 1rem);
    margin-left: 0;
    margin-right: calc(35 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-04 .lineup-box__title {
    padding-right: calc(3 / var(--page-font) * 1rem);
    max-width: calc(313 / var(--page-font) * 1rem);
    width: 100%;
    height: calc(166 / var(--page-font) * 1rem);
    margin-top: calc(-42 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-04 .lineup-box__title__label {
    line-height: calc(26 / 18);
    text-align: center;
  }
  .lineup-box.--box-04 .lineup-box__title__bk {
    background-image: url(../img/top/bg_lineup_04_01_pc.png);
  }
  .lineup-box.--box-04 .lineup-box__contents {
    max-width: calc(556 / var(--page-font) * 1rem);
    margin-left: calc(20 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-04 .lineup-box__text__attention {
    margin-top: calc(13 / var(--page-font) * 1rem);
  }
  .lineup-box.--box-04 .lineup-box__text {
    margin-top: calc(15 / var(--page-font) * 1rem);
  }
}
@media all and (max-width: 767px) {
  .l-section.--lineup .c-bg-green-box-bg {
  }
  .l-section.--lineup .c-bg-green-box-bg:before {
  }
  .l-section.--lineup .c-section-title__inner {
    max-width: calc(346 / 750 * 100vw);
    width: 100%;
  }
  .lineup-contents {
    margin-top: calc(54 / 750 * 100vw);
  }
  .lineup-contents__text {
    font-size: calc(20 / 750 * 100vw);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(40 / 20);
    text-align: center;
  }
  .lineup-box-wrap {
    padding-top: calc(54 / 750 * 100vw);
    position: relative;
    margin-top: calc(44 / 750 * 100vw);
  }
  .lineup-box {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: calc(127 / 750 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  .lineup-box + .lineup-box {
    margin-top: calc(96 / 750 * 100vw);
  }
  .lineup-box + .lineup-box.--box-02 {
    margin-top: calc(101 / 750 * 100vw);
  }
  .lineup-box + .lineup-box.--box-03 {
    margin-top: calc(103 / 750 * 100vw);
  }
  .lineup-box + .lineup-box.--box-04 {
    margin-top: calc(102 / 750 * 100vw);
  }
  .lineup-box__inner {
    padding: calc(34 / 750 * 100vw) 0 0 0;
  }
  .lineup-box__body {
    background-color: #fff;
    padding-top: calc(15 / 750 * 100vw);
    padding-bottom: calc(15 / 750 * 100vw);
    position: relative;
    filter: drop-shadow(calc(5 / 750 * 100vw) calc(6 / 750 * 100vw) calc(10 / 750 * 100vw) #dde7d5);
    mix-blend-mode: multiply;
  }
  .lineup-box__container {
    padding: calc(0 / 750 * 100vw) calc(40 / 750 * 100vw) calc(66 / 750 * 100vw) calc(40 / 750 * 100vw);
    margin: calc(0 / 750 * 100vw) calc(12 / 750 * 100vw) calc(0 / 750 * 100vw) calc(12 / 750 * 100vw);
    border: 1px solid #a2cb28;
    position: relative;
    z-index: 10;
  }
  .lineup-box__container__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(29 / 750 * 100vw);
  }
  .lineup-box__contents {
    width: 100%;
    position: relative;
    z-index: 20;
  }
  .lineup-box__image {
    max-width: calc(532 / 750 * 100vw);
    width: 100%;
    margin-top: calc(-93 / 750 * 100vw);
  }
  .lineup-box__title {
    max-width: calc(383 / 750 * 100vw);
    width: 100%;
    height: calc(219 / 750 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    mix-blend-mode: multiply;
  }
  .lineup-box__title__bk {
    background-image: url(../img/top/bg_lineup_01_01_sp.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    margin: 0 auto;
    mix-blend-mode: multiply;
  }
  .lineup-box__title__label {
    color: var(--title-color);
    font-size: calc(38 / 750 * 100vw);
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: calc(38 / 54);
    position: relative;
    top: calc(-8 / 750 * 100vw);
    z-index: 10;
  }
  .lineup-box__text {
    font-size: calc(28 / 750 * 100vw);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(44.8 / 28);
    margin-top: calc(26 / 750 * 100vw);
  }
  .lineup-box__text__attention {
    font-size: calc(20 / 750 * 100vw);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(30 / 20);
    display: flex;
    margin-top: calc(28 / 750 * 100vw);
  }
  .lineup-box__text__attention:before {
    content: "※";
    flex-shrink: 0;
  }
  .lineup-box__buttom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: calc(26 / 750 * 100vw);
    margin-top: calc(42 / 750 * 100vw);
  }
  .lineup-box-button {
    max-width: calc(550 / 750 * 100vw);
    width: 100%;
  }

  .lineup-box-button .mc-button {
    --btn-bg-color: var(--button-color);
    --btn-border-color: var(--button-color);
  }
  .lineup-box-button .mc-button__body {
    position: relative;
    min-height: calc(90 / 750 * 100vw);
  }
  .lineup-box-button .mc-button:hover {
  }
  .lineup-box-button .mc-button-text__label {
    font-size: calc(30 / 750 * 100vw);
  }
  .lineup-box-button .mc-button-ico__label {
    margin-right: calc(30 / 750 * 100vw);
  }
  .lineup-box-button .mc-button-ico__label .mc-svg {
    width: calc(14 / 750 * 100vw);
  }

  .lineup-box-button .mc-button br {
    display: none;
  }

  .lineup-box-button .mc-button .text-02 {
    font-size: 90%;
    position: relative;
    top: calc(-1 / 750 * 100vw);
    margin-left: calc(14 / 750 * 100vw);
  }

  .line-box-text-02 {
    font-size: calc(28 / 750 * 100vw);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(44.8 / 28);
    text-align: center;
    margin-top: calc(74 / 750 * 100vw);
  }

  .line-box-banner {
    max-width: calc(554 / 750 * 100vw);
    width: 100%;
    margin-top: calc(36 / 750 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }

  .line-box-banner__link {
    display: block;
    transition: 0.3s ease;
  }

  .line-box-banner__link:hover {
    opacity: 0.7;
  }

  /*************************/
  .lineup-box.--box-02 .lineup-box__container__inner {
  }
  .lineup-box.--box-02 .lineup-box__image {
    margin-top: calc(-94 / 750 * 100vw);
  }
  .lineup-box.--box-02 .lineup-box__title {
    max-width: calc(491 / 750 * 100vw);
    width: 100%;
    height: calc(266 / 750 * 100vw);
  }
  .lineup-box.--box-02 .lineup-box__title__label {
    line-height: calc(26 / 18);
    text-align: center;
  }
  .lineup-box.--box-02 .lineup-box__title__bk {
    background-image: url(../img/top/bg_lineup_02_01_sp.png);
  }
  .lineup-box.--box-02 .lineup-box__contents {
  }
  /*************************/
  .lineup-box.--box-03 .lineup-box__container__inner {
  }
  .lineup-box.--box-03 .lineup-box__image {
    margin-top: calc(-94 / 750 * 100vw);
  }
  .lineup-box.--box-03 .lineup-box__title {
    padding-right: 0;
    max-width: calc(456 / 750 * 100vw);
    width: 100%;
    height: calc(258 / 750 * 100vw);
  }
  .lineup-box.--box-03 .lineup-box__title__label {
    line-height: calc(26 / 18);
    text-align: center;
    position: relative;
    top: calc(-1 / 750 * 100vw);
  }
  .lineup-box.--box-03 .lineup-box__title__bk {
    background-image: url(../img/top/bg_lineup_03_01_sp.png);
  }
  .lineup-box.--box-03 .lineup-box__contents {
  }
  .lineup-box.--box-03 .lineup-box__container__inner {
    gap: calc(26 / 750 * 100vw);
  }
  .lineup-box.--box-03 .lineup-box__text {
    margin-top: calc(36 / 750 * 100vw);
  }
  /*************************/
  .lineup-box.--box-04 .lineup-box__container__inner {
  }
  .lineup-box.--box-04 .lineup-box__image {
    max-width: calc(434 / 750 * 100vw);
    margin-top: calc(-96 / 750 * 100vw);
  }
  .lineup-box.--box-04 .lineup-box__title {
    max-width: calc(464 / 750 * 100vw);
    width: 100%;
    height: calc(268 / 750 * 100vw);
  }
  .lineup-box.--box-04 .lineup-box__title__label {
    line-height: calc(26 / 18);
    text-align: center;
  }
  .lineup-box.--box-04 .lineup-box__title__bk {
    background-image: url(../img/top/bg_lineup_04_01_sp.png);
  }
  .lineup-box.--box-04 .lineup-box__contents {
    margin-top: calc(0 / 750 * 100vw);
  }
  .lineup-box.--box-04 .lineup-box__text__attention {
    margin-top: calc(21 / 750 * 100vw);
  }
}

/* --------------------------------------------------------------------------
  TYPES
-------------------------------------------------------------------------- */
@media all and (min-width: 768px), print {
  .l-section.--types {
    margin-top: calc(68 / var(--page-font) * 1rem);
  }
  .l-section.--types .c-section-title__inner {
    max-width: calc(219 / var(--page-font) * 1rem);
    width: 100%;
  }
  .l-section.--types .c-bg-green-box-bg {
    height: calc(554 / var(--page-font) * 1rem);
  }
  .l-section.--types .c-bg-green-box-bg {
  }

  .types-summary {
    margin-top: calc(58 / var(--page-font) * 1rem);
  }

  .types-summary__inner {
  }
  .types-summary__body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}

@media all and (min-width: 768px) and (max-width: 1200px) {
}
@media all and (max-width: 767px) {
  .l-section.--types {
    margin-top: calc(119 / 750 * 100vw);
  }
  .l-section.--types .c-section-title__inner {
    max-width: calc(322 / 750 * 100vw);
    width: 100%;
  }
  .l-section.--types .l-section__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .types-summary {
    position: relative;
    overflow: hidden;
    margin-top: calc(80 / 750 * 100vw);
  }
  .types-summary__inner {
    position: relative;
    overflow-x: auto;
    margin-left: calc(40 / 750 * 100vw);
  }
  .types-summary__body {
    margin-right: calc(40 / 750 * 100vw);
    width: calc(1208 / 750 * 100vw);
    overflow: visible;
    position: relative;
  }
}

/* --------------------------------------------------------------------------
  TYPES TABLE
-------------------------------------------------------------------------- */

.types-table__cell {
  background-color: #fffffb;
  vertical-align: top;
}
.types-table__cell {
  padding: calc(23 / var(--page-font) * 1rem) calc(20 / var(--page-font) * 1rem);
  width: calc(330 / var(--page-font) * 1rem);
  position: relative;
}
.types-table__text {
  font-size: calc(16 / var(--page-font) * 1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: calc(28 / 16);
}
.types-detail-box {
}
.types-detail-box__title {
  font-size: calc(16 / var(--page-font) * 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: calc(28 / 16);
}

.types-detail-box__inner {
  font-size: calc(16 / var(--page-font) * 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: calc(28 / 16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(12 / var(--page-font) * 1rem);
}
/******/
.types-detail-box-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(6 / var(--page-font) * 1rem) !important;
  gap: calc(3 / var(--page-font) * 1rem) calc(0 / var(--page-font) * 1rem);
}
.types-detail-box-list__item:after {
  content: "、";
}
.types-detail-box-list__link {
  padding-right: calc(11 / var(--page-font) * 1rem);
  text-decoration: underline !important;
  position: relative;
}
.types-detail-box-list__link:after {
  content: "";
  display: block;
  border: 2px solid #000;
  border-left: 0;
  border-bottom: 0;
  border-radius: 1px;
  transform: rotate(45deg);
  width: calc(8 / var(--page-font) * 1rem);
  height: calc(8 / var(--page-font) * 1rem);
  position: absolute;
  top: calc(7 / var(--page-font) * 1rem);
  right: 0;
}

.types-detail-box-list__item:last-child:after {
  content: none;
}

/******/
.types-detail-box__circle {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 100%;
  max-width: calc(76 / var(--page-font) * 1rem);
  width: 100%;
  height: calc(76 / var(--page-font) * 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  gap: calc(2 / var(--page-font) * 1rem);
}
.types-detail-box__circle__label {
  font-size: calc(11 / var(--page-font) * 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: calc(14 / 11);
  text-align: center;
}
.types-detail-box__circle__label.--label-02 {
  font-size: calc(14 / var(--page-font) * 1rem);
  line-height: calc(16 / 14);
}

.types-table__text.--flex {
  display: block;
}
.types-table__text .text-01 {
  background: linear-gradient(transparent 50%, #e8dbac 50%);
  font-weight: 700;
  flex-shrink: 0;
  display: inline-block;
}
.types-table__text .text-02 {
  display: inline;
  margin-left: 1em;
}

.types-table__bottom {
  margin-top: calc(27 / var(--page-font) * 1rem);
}
.types-table-button {
  font-size: calc(16 / var(--page-font) * 1rem);
  font-weight: 500;
}
.types-table-button + .types-table-button {
  margin-top: calc(10 / var(--page-font) * 1rem);
}
.types-table-button .mc-button__body {
  padding-left: calc(16 / var(--page-font) * 1rem);
  padding-right: calc(25 / var(--page-font) * 1rem);
  min-height: calc(50 / var(--font) * 1rem);
}
.types-table-button .mc-button-text__label {
  font-size: calc(15 / var(--page-font) * 1rem);
}
.types-table-button .text-02 {
  font-size: 110%;
  font-weight: 700;
}
.types-table-button .mc-button-ico__label {
  margin-right: calc(20 / var(--font) * 1rem);
}
/******/
.types-table__row:first-child .types-table__cell:first-child,
.types-table__row:nth-child(2) .types-table__cell:first-child,
.types-table__row:nth-child(3) .types-table__cell:first-child,
.types-table__row:nth-child(4) .types-table__cell:first-child {
  background-color: #fff8e0;
  padding: calc(22 / var(--page-font) * 1rem) calc(12 / var(--page-font) * 1rem);
  vertical-align: top;
  width: calc(110 / var(--page-font) * 1rem);
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 20;
}
.types-table__cell:first-child .types-table__text {
  font-size: calc(18 / var(--page-font) * 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: calc(36 / 18);
  text-align: center;
}

.types-table__row:first-child .types-table__cell:first-child,
.types-table__row:nth-child(2) .types-table__cell:first-child,
.types-table__row:nth-child(3) .types-table__cell:first-child,
.types-table__row:nth-child(4) .types-table__cell:first-child,
.types-table__row:nth-child(5) .types-table__cell:first-child {
  border: 1px solid var(--table-border-color);
}
.types-table__row:first-child .types-table__cell:first-child .types-table__text:before,
.types-table__row:nth-child(2) .types-table__cell:first-child .types-table__text:before,
.types-table__row:nth-child(3) .types-table__cell:first-child .types-table__text:before,
.types-table__row:nth-child(4) .types-table__cell:first-child .types-table__text:before,
.types-table__row:nth-child(5) .types-table__cell:first-child .types-table__text:before,
.types-table__row:first-child .types-table__cell:first-child .types-table__text:after,
.types-table__row:nth-child(2) .types-table__cell:first-child .types-table__text:after,
.types-table__row:nth-child(3) .types-table__cell:first-child .types-table__text:after,
.types-table__row:nth-child(4) .types-table__cell:first-child .types-table__text:after,
.types-table__row:nth-child(5) .types-table__cell:first-child .types-table__text:after {
  content: "";
  background-color: var(--table-border-color);
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 50;
}
.types-table__row:first-child .types-table__cell:first-child .types-table__text:after,
.types-table__row:nth-child(2) .types-table__cell:first-child .types-table__text:after,
.types-table__row:nth-child(3) .types-table__cell:first-child .types-table__text:after,
.types-table__row:nth-child(4) .types-table__cell:first-child .types-table__text:after,
.types-table__row:nth-child(5) .types-table__cell:first-child .types-table__text:after {
  left: auto;
  right: -1px;
}

.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(2) .types-detail-box-list__item:after,
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(2) .types-detail-box-list__link,
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(2) .types-detail-box__circle__label,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(1) .types-detail-box-list__item:after,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(1) .types-detail-box-list__link,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(1) .types-detail-box__circle__label {
  color: var(--muchousei-color);
}
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(2) .types-detail-box-list__link:after,
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(2) .types-detail-box__circle,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(1) .types-detail-box-list__link:after,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(1) .types-detail-box__circle {
  border-color: var(--muchousei-color);
}

.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(3) .types-detail-box-list__item:after,
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(3) .types-detail-box-list__link,
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(3) .types-detail-box__circle__label,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(2) .types-detail-box-list__item:after,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(2) .types-detail-box-list__link,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(2) .types-detail-box__circle__label {
  color: var(--chousei-color);
}
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(3) .types-detail-box-list__link:after,
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(3) .types-detail-box__circle,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(2) .types-detail-box-list__link:after,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(2) .types-detail-box__circle {
  border-color: var(--chousei-color);
}

.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(4) .types-detail-box-list__item:after,
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(4) .types-detail-box-list__link,
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(4) .types-detail-box__circle__label,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(3) .types-detail-box-list__item:after,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(3) .types-detail-box-list__link,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(3) .types-detail-box__circle__label {
  color: var(--tonyu-color);
}
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(4) .types-detail-box-list__link:after,
.types-table__row:nth-child(-n + 4) .types-table__cell:nth-child(4) .types-detail-box__circle,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(3) .types-detail-box-list__link:after,
.types-table__row:nth-child(n + 5) .types-table__cell:nth-child(3) .types-detail-box__circle {
  border-color: var(--tonyu-color);
}

.types-table__row:nth-child(2n-6) .types-table__cell:nth-child(2),
.types-table__row:nth-child(2n + 6) .types-table__cell:nth-child(1) {
  background-color: var(--bg-muchousei-color);
}
.types-table__row:nth-child(2n-6) .types-table__cell:nth-child(3),
.types-table__row:nth-child(2n + 6) .types-table__cell:nth-child(2) {
  background-color: var(--bg-chousei-color);
}
.types-table__row:nth-child(2n-6) .types-table__cell:nth-child(4),
.types-table__row:nth-child(2n + 6) .types-table__cell:nth-child(3) {
  background-color: var(--bg-tonyu-color);
}

.types-table__row:nth-child(4) .types-table__cell {
  padding-top: calc(19 / var(--page-font) * 1rem);
  padding-bottom: calc(19 / var(--page-font) * 1rem);
}
.types-table__row:nth-child(n + 5) .types-table__cell {
  padding-top: calc(9 / var(--page-font) * 1rem);
  padding-bottom: calc(9 / var(--page-font) * 1rem);
}
.types-table__row:nth-child(n + 5) .types-detail-box__inner {
  min-height: calc(124 / var(--page-font) * 1rem);
}
.types-table__row:nth-child(n + 3) .types-detail-box-list {
  margin-top: calc(2 / var(--page-font) * 1rem) !important;
}
.types-table__row:last-child .types-table__cell {
  padding-bottom: calc(28 / var(--page-font) * 1rem);
}

.types-table__row:nth-child(n + 6) .types-table__cell:nth-child(1) .types-table-button .mc-button {
  --btn-bg-color: var(--muchousei-color);
  --btn-border-color: var(--muchousei-color);
}

.types-table__row:nth-child(n + 6) .types-table__cell:nth-child(2) .types-table-button .mc-button {
  --btn-bg-color: var(--chousei-color);
  --btn-border-color: var(--chousei-color);
}

.types-table__row:nth-child(n + 6) .types-table__cell:nth-child(3) .types-table-button .mc-button {
  --btn-bg-color: var(--tonyu-color);
  --btn-border-color: var(--tonyu-color);
}

/******/
.types-table__head {
  padding: calc(22 / var(--page-font) * 1rem) calc(12 / var(--page-font) * 1rem);
}
.types-table__head .types-table__text {
  color: #fff;
  font-size: calc(18 / var(--page-font) * 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: calc(36 / 18);
  text-align: center;
}
.types-table__head.--muchousei {
  background-color: var(--muchousei-color);
  border-right-color: var(--muchousei-color);
}
.types-table__head.--chousei {
  background-color: var(--chousei-color);
  border-right-color: var(--chousei-color);
}
.types-table__head.--tonyu {
  background-color: var(--tonyu-color);
  border-right-color: var(--tonyu-color);
}
.types-table__cell {
  background-color: #fff;
  border: 1px solid var(--table-border-color);
}

@media screen and (min-width: 768px) {
  .types-table__row:nth-child(n + 6) .types-table__cell:nth-child(1) .types-table-button .mc-button:hover {
    --btn-bg-color: var(--c-white);
  }
  .types-table__row:nth-child(n + 6) .types-table__cell:nth-child(2) .types-table-button .mc-button:hover {
    --btn-bg-color: var(--c-white);
  }
  .types-table__row:nth-child(n + 6) .types-table__cell:nth-child(3) .types-table-button .mc-button:hover {
    --btn-bg-color: var(--c-white);
  }
}
@media all and (max-width: 767px) {
  .types-table__cell {
    padding: calc(42 / 750 * 100vw) calc(22 / 750 * 100vw);
    width: calc(364 / 750 * 100vw);
  }
  .types-table__head {
    padding: calc(26 / 750 * 100vw) calc(22 / 750 * 100vw);
  }
  .types-table__text {
    font-size: calc(28 / 750 * 100vw);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(42 / 28);
  }

  .types-table__head .types-table__text {
    font-size: calc(30 / 750 * 100vw);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: calc(72 / 30);
    text-align: center;
  }

  .types-table__row:first-child .types-table__cell:first-child,
  .types-table__row:nth-child(2) .types-table__cell:first-child,
  .types-table__row:nth-child(3) .types-table__cell:first-child,
  .types-table__row:nth-child(4) .types-table__cell:first-child {
    padding: calc(22 / 750 * 100vw) calc(12 / 750 * 100vw);
    width: calc(122 / 750 * 100vw);
  }
  .types-table__cell:first-child .types-table__text {
    font-size: calc(30 / 750 * 100vw);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: calc(72 / 30);
  }
  .types-detail-box__inner {
    font-size: calc(28 / 750 * 100vw);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(42 / 28);
    display: block;
    position: relative;
  }
  .types-detail-box__title {
    padding-right: calc(136 / 750 * 100vw);
    font-size: calc(28 / 750 * 100vw);
    font-weight: 700;
    letter-spacing: 0em;
    line-height: calc(42 / 28);
    font-feature-settings: "palt";
  }
  .types-detail-box-list {
    gap: calc(4 / 750 * 100vw) calc(0 / 750 * 100vw);
    margin-top: calc(16 / 750 * 100vw) !important;
  }
  .types-detail-box-list__link {
    padding-right: calc(16 / 750 * 100vw);
  }
  .types-detail-box-list__link:after {
    content: "";
    display: block;
    border: calc(4 / 750 * 100vw) solid #000;
    border-left: 0;
    border-bottom: 0;
    border-radius: 1px;
    transform: rotate(45deg);
    width: calc(14 / 750 * 100vw);
    height: calc(14 / 750 * 100vw);
    position: absolute;
    top: calc(11 / 750 * 100vw);
    right: 0;
  }
  .types-detail-box__circle {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 100%;
    max-width: calc(130 / 750 * 100vw);
    width: 100%;
    height: calc(130 / 750 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    gap: calc(6 / 750 * 100vw);
    position: absolute;
    top: calc(-10 / 750 * 100vw);
    right: calc(0 / 750 * 100vw);
  }
  .types-detail-box__circle__label {
    font-size: calc(20 / 750 * 100vw);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: calc(26 / 20);
    text-align: center;
  }
  .types-detail-box__circle__label.--label-02 {
    font-size: calc(25 / 750 * 100vw);
    line-height: calc(30 / 26);
  }

  .types-table__row:nth-child(n + 4) .types-detail-box__title {
    min-height: calc(140 / 750 * 100vw);
    display: flex;
    align-items: center;
    position: relative;
    top: calc(-13 / 750 * 100vw);
  }
  .types-table__row:nth-child(n + 5) .types-detail-box__inner {
    min-height: calc(253 / 750 * 100vw);
  }
  .types-table__bottom {
    margin-top: calc(16 / 750 * 100vw);
  }
  .types-table-button {
    font-size: calc(16 / 750 * 100vw);
    font-weight: 500;
  }
  .types-table-button .mc-button {
  }
  .types-table-button + .types-table-button {
    margin-top: calc(26 / 750 * 100vw);
  }
  .types-table-button .mc-button__inner {
    border-radius: calc(20 / 750 * 100vw);
  }
  .types-table-button .mc-button__body {
    padding-left: calc(16 / 750 * 100vw);
    padding-right: calc(25 / 750 * 100vw);
    min-height: calc(136 / 750 * 100vw);
  }
  .types-table-button .mc-button-text__label {
    font-size: calc(28 / 750 * 100vw);
    letter-spacing: 0.04em;
    font-feature-settings: initial;
  }
  .types-table-button .mc-button-ico__label .mc-svg {
    width: calc(16 / 750 * 100vw);
  }
  .types-table-button .text-02 {
    font-size: 110%;
    font-weight: 700;
  }
  .types-table-button .mc-button-ico__label {
    margin-right: calc(20 / 750 * 100vw);
  }

  .types-table-button.--type02 .mc-button__body {
    padding-right: calc(25 / 750 * 100vw);
    min-height: calc(90 / 750 * 100vw);
  }

  .types-table__row:nth-child(4) .types-table__cell {
    padding-top: calc(38 / 750 * 100vw);
    padding-bottom: calc(38 / 750 * 100vw);
  }
  .types-table__row:nth-child(5) .types-table__cell {
    padding-top: calc(50 / 750 * 100vw);
    padding-bottom: calc(17 / 750 * 100vw);
  }
  .types-table__row:nth-child(6) .types-table__cell {
    padding-top: calc(50 / 750 * 100vw);
    padding-bottom: calc(12 / 750 * 100vw);
  }
  .types-table__row:nth-child(n + 5) .types-detail-box__inner {
  }
  .types-table__row:nth-child(n + 3) .types-detail-box-list {
    margin-top: calc(2 / 750 * 100vw) !important;
  }
  .types-table__row:last-child .types-table__cell {
    padding-top: calc(50 / 750 * 100vw);
    padding-bottom: calc(50 / 750 * 100vw);
  }
}

/* --------------------------------------------------------------------------
  RECIPE
-------------------------------------------------------------------------- */
@media all and (min-width: 768px), print {
  .l-section.--recipe {
    margin-top: calc(67 / var(--page-font) * 1rem);
    padding-bottom: calc(97 / var(--page-font) * 1rem);
  }
  .l-section.--recipe .c-section-title__inner {
    max-width: calc(445 / var(--page-font) * 1rem);
    width: 100%;
  }
  .l-section.--recipe .c-bg-green-box-bg {
    height: calc(353 / var(--page-font) * 1rem);
  }
  .recipe-list {
    margin-top: calc(45 / var(--page-font) * 1rem);
  }
}

@media all and (min-width: 768px) and (max-width: 1200px) {
}
@media all and (max-width: 767px) {
  .l-section.--recipe {
    padding-bottom: calc(136 / 750 * 100vw);
  }
  .l-section.--recipe .c-section-title__inner {
    max-width: calc(503 / 750 * 100vw);
    width: 100%;
  }
  .recipe-list {
    margin-top: calc(60 / 750 * 100vw);
  }
  .l-section.--recipe .c-bg-green-box-bg {
    height: calc(410 / 750 * 100vw);
  }
}

/* --------------------------------------------------------------------------
  RECIPES
-------------------------------------------------------------------------- */
@media all and (min-width: 768px), print {
  .recipes-sec {
    background: var(--bg-rough);
    position: relative;
  }
  .recipes-sec__in {
    max-width: calc(1200 / 1440 * 100vw);
  }
  .recipes-sec__body {
    padding-bottom: calc(200 / var(--page-font) * 1rem);
  }
  .recipe-content {
  }
  .recipe-content-txt {
    margin-bottom: calc(52 / var(--page-font) * 1rem);
  }
  .recipe-list__outer {
    position: relative;
  }
  .recipe-list__container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw + (110 / 1440 * 100vw));
    margin-left: calc(-55 / 1440 * 100vw);
  }
  .recipe-list {
    align-items: end;
  }
  .recipe-list-item {
  }
  .swiper-slide-active {
  }
  .recipe-list-item {
    padding-bottom: calc(65 / 1440 * 100vw);
    transition: all 0.5s ease;
    min-height: calc(360 / 1440 * 100vw);
    display: flex;
    align-items: end;
  }
  .recipe-list-item.swiper-slide-active.swiper-slide {
    width: calc(450 / 1440 * 100vw) !important;
  }
  .recipe-card {
    width: 100%;
  }
  .recipe-card__in {
  }
  a.recipe-card__in:hover {
    opacity: 1;
  }
  a.recipe-card__in img {
    transition: all 0.3s ease;
  }
  .recipe-card__body {
    position: relative;
  }
  .recipe-card-img__container {
  }
  .recipe-card-img {
  }
  .recipe-card-img {
    position: relative;
  }
  .recipe-list-item--new .recipe-card-img::before {
    content: "";
    display: block;
    background: #eaaa58;
    width: calc(80 / 1440 * 100vw);
    padding-top: calc(36 / 1440 * 100vw);
    border-radius: 0 0 calc(20 / 1440 * 100vw) 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .recipe-card-img::before,
  .recipe-card-img::after {
    z-index: 1;
  }
  .recipe-list-item--new .recipe-card-img::after {
    content: "";
    background: url("../img/recipe_ico_new.svg") no-repeat center / contain;
    display: block;
    width: calc(41 / 1440 * 100vw);
    padding-top: calc(22 / 1440 * 100vw);
    position: absolute;
    top: 0;
    left: 0;
    margin-top: calc(7 / 1440 * 100vw);
    margin-left: calc(20 / 1440 * 100vw);
  }
  .recipe-card .recipe-card-img-ico {
    background: var(--white-color);
    width: calc(37 / 1440 * 100vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: calc(10 / 1440 * 100vw);
    margin-right: calc(8 / 1440 * 100vw);
    transition: all 0.3s ease;
  }
  .recipe-card .recipe-card-img-ico:hover {
    opacity: 0.7;
  }
  .recipe-card-img-ico::before {
    content: "";
    display: block;
    width: calc(17 / 1440 * 100vw);
    padding-top: calc(17 / 1440 * 100vw);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: calc(2 / 1440 * 100vw);
    margin-left: calc(0.5 / 1440 * 100vw);
    transform: translate(-50%, -50%);
  }
  .i-fav[data-fav="off"].recipe-card-img-ico::before {
    background: url("../img/recipes_ico_favorite.png") no-repeat center / contain;
  }
  .i-fav[data-fav="on"].recipe-card-img-ico::before {
    background: url("../img/recipes_ico_favorite_current.png") no-repeat center / contain;
  }
  .recipe-card-read {
    min-height: calc(40 / 1440 * 100vw);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
  }
  .recipe-card-read-txt {
    margin-top: calc(18 / 1440 * 100vw);
  }
  .recipe-card-read-txt__label {
    color: var(--main-color-500);
    font-size: calc(18 / var(--page-font) * 1rem);
    font-family: var(--font-zen-kaku);
    font-weight: 500;
    line-height: calc(28.8 / 18);
    letter-spacing: calc(50 / 1000 * 1em);
  }
  .swiper-slide-active .recipe-card-read-txt__label {
  }
  .recipe-swiper-btn__container {
    width: calc(112 / 1440 * 100vw);
    display: flex;
    align-items: center;
    gap: calc(12 / 1440 * 100vw);
    position: absolute;
    top: 0;
    right: 0;
  }
  .recipe-swiper-btn-next,
  .recipe-swiper-btn-prev {
    background: #fff;
    border: 1px solid var(--chousei-color);
    border-radius: 100%;
    width: calc(50 / 1440 * 100vw);
    height: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    position: relative;
    margin-top: 0;
    left: auto;
    right: auto;
    transition: all 0.3s ease;
  }
  .recipe-swiper-btn-next:hover,
  .recipe-swiper-btn-prev:hover {
    opacity: 0.7;
  }
  .recipe-swiper-btn-next::after,
  .recipe-swiper-btn-prev::after {
    content: "";
    display: block;
    -webkit-mask-image: url("../img/ico_arrow.svg");
    mask-image: url("../img/ico_arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--chousei-color);
    width: calc(7 / 1440 * 100vw);
    padding-top: calc(12 / 1440 * 100vw);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .recipe-swiper-btn-prev::after {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  .recipe-swiper-btn-next {
  }
  .recipe-swiper-btn-prev {
  }
}
@media all and (max-width: 767px) {
  .recipes-sec {
    background: var(--bg-rough);
    position: relative;
  }
  .recipes-sec__in {
    position: relative;
    max-width: calc(1200 / var(--page-font) * 1em);
  }
  .recipes-sec__in::before {
    content: "";
    display: block;
    width: calc(186 / var(--page-font) * 1em);
    padding-top: calc(141 / var(--page-font) * 1em);
    background: url("../img/recipes_deco_01.png") no-repeat center / contain;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: calc(-32 / var(--page-font) * 1em);
    margin-left: calc(14 / var(--page-font) * 1em);
  }
  .recipes-sec__body {
    padding-bottom: calc(230 / var(--page-font) * 1em);
  }
  .recipes-sec .c-header-title {
    --header-w: 345;
  }
  .recipe-content {
  }
  .recipe-content-txt {
    margin-bottom: calc(36 / var(--page-font) * 1em);
  }
  .recipe-list__outer {
    position: relative;
  }
  .recipe-list__container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw + (60 / var(--page-font) * 1rem));
    margin-left: calc(-30 / var(--page-font) * 1em);
  }
  .recipe-list {
    align-items: end;
  }
  .recipe-list-item {
  }
  .swiper-slide-active {
  }
  .recipe-list-item {
    padding-bottom: calc(50 / var(--page-font) * 1em);
    transition: all 0.5s ease;
    display: flex;
    align-items: end;
  }
  .recipe-list-item.swiper-slide-active {
    width: calc(225 / var(--page-font) * 1rem) !important;
  }
  .recipe-card {
  }
  .recipe-card__in {
  }
  .recipe-card__body {
    position: relative;
  }
  .recipe-card-img__container {
  }
  .recipe-card-img {
  }
  .recipe-card-img {
    position: relative;
  }
  .recipe-list-item--new .recipe-card-img::before {
    content: "";
    display: block;
    background: #eaaa58;
    width: calc(80 / var(--page-font) * 1em);
    padding-top: calc(36 / var(--page-font) * 1em);
    border-radius: 0 0 calc(20 / var(--page-font) * 1rem) 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .recipe-list-item--new .recipe-card-img::after {
    content: "";
    background: url("../img/recipe_ico_new.svg") no-repeat center / contain;
    display: block;
    width: calc(41 / var(--page-font) * 1em);
    padding-top: calc(22 / var(--page-font) * 1em);
    position: absolute;
    top: 0;
    left: 0;
    margin-top: calc(7 / var(--page-font) * 1em);
    margin-left: calc(20 / var(--page-font) * 1em);
  }
  .recipe-card .recipe-card-img-ico {
    background: var(--white-color);
    width: calc(37 / var(--page-font) * 1em);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: calc(8 / var(--page-font) * 1em);
    margin-right: calc(8 / var(--page-font) * 1em);
  }
  .recipe-card-img-ico::before {
    content: "";
    display: block;
    width: calc(18 / var(--page-font) * 1em);
    padding-top: calc(18 / var(--page-font) * 1em);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: calc(1 / var(--page-font) * 1em);
    transform: translate(-50%, -50%);
  }
  .i-fav[data-fav="off"].recipe-card-img-ico::before {
    background: url("../img/recipes_ico_favorite.png") no-repeat center / contain;
  }
  .i-fav[data-fav="on"].recipe-card-img-ico::before {
    background: url("../img/recipes_ico_favorite_current.png") no-repeat center / contain;
  }
  .recipe-card-read {
    min-height: calc(40 / var(--page-font) * 1em);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
  }
  .recipe-card-read-txt {
    margin-top: calc(16 / var(--page-font) * 1em);
  }
  .recipe-card-read-txt__label {
    color: var(--main-color-500);
    font-size: calc(14 / var(--page-font) * 1em);
    font-family: var(--font-zen-kaku);
    font-weight: 500;
    line-height: calc(39.2 / 28);
    letter-spacing: calc(60 / 1000 * 1em);
  }
  .recipe-swiper-btn__container {
    display: none;
  }
  .mc-breadcrumb {
    margin-top: calc(-70 / var(--page-font) * 1em);
  }
}

/* --------------------------------------------------------------------------
  RECIPE-BTN
-------------------------------------------------------------------------- */
@media all and (min-width: 768px), print {
  .resipe-btn__container {
    text-align: center;
    margin-top: calc(68 / var(--page-font) * 1rem);
  }
  .resipe-btn-read {
    position: relative;
    display: flex;
    justify-content: center;
    gap: calc(20 / var(--page-font) * 1rem);
    margin-bottom: calc(30 / var(--page-font) * 1rem);
  }
  .resipe-btn-read::before,
  .resipe-btn-read::after {
    content: "";
    display: block;
    background: url("../img/deco_btn_txt.png") no-repeat center / contain;
    width: calc(28 / var(--page-font) * 1rem);
    padding-top: calc(37 / var(--page-font) * 1rem);
  }
  .resipe-btn-read::after {
    transform: scale(-1, 1);
  }
  .resipe-btn-read-txt {
    text-align: center;
  }
  .resipe-btn-read-txt__label {
    font-size: calc(16 / var(--page-font) * 1rem);
    font-family: var(--font-zen-maru);
    font-weight: bold;
    line-height: calc(25.6 / 16);
  }
  .resipe-btn {
    width: calc(440 / var(--page-font) * 1rem);
    margin: 0 auto;
    position: relative;
    z-index: 0;
  }
  .resipe-btn .c-btn {
    --btn-bg-color: var(--black-color);
    --btn-border-color: var(--black-color);
    --btn-txt-color: var(--white-color);
    --btn-arrow-color: var(--white-color);
    --btn-min-height: 86;
    --btn-px: 70;
    transition: all 0.3s ease;
  }
  .resipe-btn a.c-btn:hover {
    --btn-bg-color: var(--black-color);
    --btn-border-color: var(--black-color);
    --btn-txt-color: var(--white-color);
    --btn-arrow-color: var(--white-color);
    opacity: 1;
    transform: translate(calc(-6 / var(--page-font) * 1rem), calc(6 / var(--page-font) * 1rem));
  }
  .resipe-btn .c-btn__in {
    position: relative;
  }
  .resipe-btn .c-btn__in::before {
    content: "";
    display: block;
    width: 100%;
    height: calc(var(--btn-min-height) / var(--page-font) * 1rem);
    border-radius: calc(var(--btn-radius) / var(--page-font) * 1rem);
    border: solid var(--black-color) 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(calc(-6 / var(--page-font) * 1rem), calc(6 / var(--page-font) * 1rem));
    z-index: -1;
    transition: all 0.3s ease;
  }
  .resipe-btn a.c-btn:hover .c-btn__in::before {
    transform: translate(0);
  }
  .resipe-btn .c-btn-arrow__label {
    margin-left: calc(24 / var(--page-font) * 1rem);
  }
  .resipe-btn .c-btn-arrow__label .c-svg {
    width: calc(12 / var(--page-font) * 1rem);
  }
}
@media all and (max-width: 767px) {
  .resipe-btn__container {
    text-align: center;
    margin-top: calc(68 / var(--page-font) * 1rem);
  }
  .resipe-btn-read {
    position: relative;
    display: flex;
    justify-content: center;
    gap: calc(20 / var(--page-font) * 1rem);
    margin-bottom: calc(40 / var(--page-font) * 1rem);
  }
  .resipe-btn-read::before,
  .resipe-btn-read::after {
    content: "";
    display: block;
    background: url("../img/deco_btn_txt.png") no-repeat center / contain;
    width: calc(44 / var(--page-font) * 1rem);
    padding-top: calc(60 / var(--page-font) * 1rem);
  }
  .resipe-btn-read::after {
    transform: scale(-1, 1);
  }
  .resipe-btn-read-txt {
    text-align: center;
  }
  .resipe-btn-read-txt__label {
    font-size: calc(24 / var(--page-font) * 1rem);
    font-family: var(--font-zen-maru);
    font-weight: bold;
    line-height: calc(38.4 / 24);
  }
  .resipe-btn {
    width: calc(560 / var(--page-font) * 1rem);
    margin: 0 auto;
    position: relative;
    z-index: 0;
  }
  .resipe-btn .c-btn {
    --btn-bg-color: var(--black-color);
    --btn-border-color: var(--black-color);
    --btn-txt-color: var(--white-color);
    --btn-arrow-color: var(--white-color);
    --btn-min-height: 128;
    --btn-px: 70;
    transition: all 0.3s ease;
  }
  .resipe-btn .c-btn__in {
    position: relative;
  }
  .resipe-btn .c-btn__in::before {
    content: "";
    display: block;
    width: 100%;
    height: calc(var(--btn-min-height) / var(--page-font) * 1rem);
    border-radius: calc(var(--btn-radius) / var(--page-font) * 1rem);
    border: solid var(--black-color) 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(calc(-10 / var(--page-font) * 1rem), calc(10 / var(--page-font) * 1rem));
    z-index: -1;
    transition: all 0.3s ease;
  }
  .resipe-btn .c-btn-arrow__label {
    margin-left: calc(8 / var(--page-font) * 1rem);
  }
  .resipe-btn .c-btn-arrow__label .c-svg {
    width: calc(24 / var(--page-font) * 1rem);
  }
}
