@charset "UTF-8";
:root {
  --c-primary: #E8734A;
  --c-primary-light: #F2985D;
  --c-primary-dark: #D35F3A;
  --c-orange: #F5A623;
  --c-bg-warm: #FFF5EE;
  --c-bg-peach: #FDEEE5;
  --c-bg-cream: #FFFAF5;
  --c-bg-light-green: #EAF6E8;
  --c-bg-light-blue: #E8F0FA;
  --c-bg-light-pink: #FCEEF0;
  --c-text: #333;
  --c-text-light: #666;
  --c-white: #fff;
  --c-border: #e0e0e0;
  --c-green: #7BBB5E;
  --c-red: #D94F4F;
  --c-blue: #5B8FD4;
  --ff: 'Zen Maru Gothic', sans-serif;
  --max-w: 1536px;
  --radius: 12px;
  --radius-sm: 8px;
  --header-height: calc(116/883*100vw);
  --anchor-offset: calc(var(--header-height) + 24px);
}

@media (min-width: 768px) {
  :root {
    --header-height: fluidPC(80);
    --anchor-offset: calc(var(--header-height) + 24px);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: var(--ff);
  color: var(--c-text);
  line-height: 1.8;
  background: var(--c-white);
  overflow-x: hidden;
  padding-top: var(--header-height);
}
body.is-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.75;
}

ul,
ol {
  list-style: none;
}

.inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media print, screen and (min-width: 768px) {
  .inner {
    padding: 0 min(180 / 1902 * 100vw, 180px);
  }
}

.section-label {
  display: block;
  text-align: center;
  font-weight: 500;
  color: #ED6D46;
  font-size: 5.3001132503vw;
}
@media print, screen and (min-width: 768px) {
  .section-label {
    font-size: max(36 / 1902 * 100vw, 3.6rem);
  }
}
.section-label::before {
  display: inline-flex;
  content: "";
  width: 3.2842582106vw;
  aspect-ratio: 29/24;
  background: url("../img/cmn/ic_section_title.svg") center/contain no-repeat;
  transform: translateY(-100%);
}
@media print, screen and (min-width: 768px) {
  .section-label::before {
    width: max(36 / 1902 * 100vw, 2.2rem);
  }
}

.section-title {
  text-align: center;
  color: #6D0B0B;
  font-size: 6.7723669309vw;
  font-weight: 700;
  margin: 6px 0 12px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .section-title {
    font-size: max(46 / 1902 * 100vw, 4.6rem);
    margin-bottom: 16px;
  }
}

.section-subtitle {
  text-align: center;
  color: #333;
  font-size: 3.2389580974vw;
  font-weight: 500;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  .section-subtitle {
    font-size: 2.2rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: var(--c-white);
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #333;
  color: #000;
  padding: 2.718006795vw 3.62400906vw;
  border-radius: 9999px;
  font-size: 3.1710079275vw;
  font-weight: 500;
  line-height: 1.2;
  background: transparent;
  cursor: pointer;
  transition: all linear 0.2s;
}
@media print, screen and (min-width: 768px) {
  .btn-outline {
    font-size: 1.6rem;
    padding: 15px 30px;
  }
}
.btn-outline:hover {
  transform: scale(1.05);
}

.btn-center {
  text-align: center;
  margin-top: calc(24 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .btn-center {
    margin-top: calc(30 / 1902 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  background: #f7ede5;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.718006795vw;
  padding: 0 3.0577576444vw;
  height: 13.1370328426vw;
}
@media (min-width: 768px) {
  .site-header__inner {
    align-items: center;
    max-width: 1536px;
    margin-inline: auto;
    height: calc(80 / 1902 * 100vw);
    padding: 0 20px;
  }
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .site-header__brand {
    gap: 14px;
  }
}

.site-header__logo--ah {
  width: calc(300 / 883 * 100vw);
}
@media (min-width: 768px) {
  .site-header__logo--ah {
    width: calc(200 / 1902 * 100vw);
  }
}

.site-header__logo--allumy {
  width: calc(184.8 / 883 * 100vw);
}
@media (min-width: 768px) {
  .site-header__logo--allumy {
    width: calc(135 / 1902 * 100vw);
  }
}

.site-header__nav,
.site-header__contact {
  display: none;
}
@media (min-width: 768px) {
  .site-header__nav,
  .site-header__contact {
    display: flex;
  }
}

@media (min-width: 768px) {
  .site-header__nav {
    flex: 1;
    justify-content: flex-end;
  }
}
.site-header__nav a {
  color: #000;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: calc(32 / 1902 * 100vw);
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: calc(18 / 1902 * 100vw);
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .site-header__contact {
    align-items: center;
    justify-content: center;
    gap: calc(8 / 1902 * 100vw);
    padding: calc(12 / 1902 * 100vw) calc(20 / 1902 * 100vw);
    font-size: calc(16 / 1902 * 100vw);
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #6D0B0B;
    border-radius: 999px;
  }
}
.site-header__contact {
  transition: all linear 0.2s;
}
.site-header__contact:hover {
  transform: scale(1.05);
}

.site-header__menu {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: #f2633f;
  font-weight: 700;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
@media (min-width: 768px) {
  .site-header__menu {
    display: none;
  }
}

.site-header__menu-text {
  font-size: 3.4881087203vw;
  line-height: 1;
}

.site-header__menu-line {
  width: 8.1540203851vw;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

/* ==============================
  SP Menu
============================== */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  min-height: 100svh;
  color: #fff;
  background: #f2633f;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (min-width: 768px) {
  .sp-menu {
    display: none !important;
  }
}
.sp-menu.is-open {
  display: block;
}

.sp-menu__inner {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 100svh;
  padding: 1.6987542469vw 3.0577576444vw 2.8312570781vw;
}

.sp-menu__close {
  justify-self: end;
  display: grid;
  gap: 6px;
  justify-items: center;
  color: #fff;
  background-color: transparent;
  border: none;
  font-weight: 700;
}

.sp-menu__close-text {
  font-size: 3.4881087203vw;
  line-height: 1;
}

.sp-menu__close-icon {
  position: relative;
  display: block;
  width: 8.1540203851vw;
  height: 4.7565118913vw;
}
.sp-menu__close-icon::before, .sp-menu__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
}
.sp-menu__close-icon::before {
  transform: translate(-50%, -50%) rotate(28deg);
}
.sp-menu__close-icon::after {
  transform: translate(-50%, -50%) rotate(-28deg);
}

.sp-menu__brand {
  display: flex;
  justify-content: center;
  margin-top: 6.7950169875vw;
}

.sp-menu__brand-logo {
  width: 43.4881087203vw;
}

.sp-menu__nav {
  display: flex;
  justify-content: center;
  margin-top: 10.4190260476vw;
}

.sp-menu__nav-list {
  display: grid;
  gap: 6.7950169875vw;
  width: 61.1551528879vw;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sp-menu__nav-list a {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 1.1325028313vw;
  font-size: 4.530011325vw;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.sp-menu__nav-list a::before {
  content: "→";
  font-size: 0.9em;
  line-height: 1;
}

.sp-menu__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 9.0600226501vw;
}

.sp-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 61.1551528879vw;
  min-height: 12.4575311438vw;
  padding: 2.2650056625vw 4.530011325vw;
  font-size: 4.0770101925vw;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background: #6D0B0B;
  border-radius: 999px;
}

/* ==============================
  Hero
============================== */
.hero {
  overflow: hidden;
  background: #f7ede5;
}

.hero__inner {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .hero__inner {
    padding-top: calc(80 / 1902 * 100vw);
  }
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "copy" "visual" "cta";
  margin-top: calc(50 / 883 * 100vw);
  color: #fff;
  background: url("../img/hero/bg_hero01_sp.svg") right 3.3975084938vw top/100% auto no-repeat;
}
@media (min-width: 768px) {
  .hero__content {
    grid-template-columns: 40.6940063091vw 59.2008412198vw;
    grid-template-areas: "badges visual" "copy   visual" "cta    visual";
    align-items: center;
    margin: 0;
    padding: 1.7350157729vw 0 0 0;
    background: url("../img/hero/bg_hero01.svg") left top 9.4637223975vw/41.5vw auto no-repeat;
  }
}
/* ==============================
  Hero Badges
============================== */
.hero__badges {
  grid-area: badges;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  transform: translateY(-20px);
}
@media only screen and (max-width: 767px) {
  .hero__badges {
    position: absolute;
    right: calc(20 / 883 * 100vw);
    top: 0;
    gap: calc(20 / 883 * 100vw);
  }
}
@media (min-width: 768px) {
  .hero__badges {
    justify-content: center;
    gap: 36px;
    margin-bottom: 12px;
    padding-top: calc(60 / 1902 * 100vw);
    padding-left: calc(83 / 1902 * 100vw);
  }
}

.hero-badge {
  display: grid;
  place-content: center;
  width: calc(201 / 883 * 100vw);
}
@media (min-width: 768px) {
  .hero-badge {
    width: calc(140 / 1902 * 100vw);
  }
}

@media only screen and (max-width: 767px) {
  .hero-badge--yellow {
    margin-top: calc(26 / 883 * 100vw);
  }
}
@media (min-width: 768px) {
  .hero-badge--yellow {
    margin-top: calc(-55 / 1902 * 100vw);
  }
}

/* ==============================
  Hero Copy
============================== */
.hero__copy {
  grid-area: copy;
}
@media only screen and (max-width: 767px) {
  .hero__copy {
    padding-top: calc(100 / 883 * 100vw);
    padding-left: calc(28 / 883 * 100vw);
  }
}
@media print, screen and (min-width: 768px) {
  .hero__copy {
    padding-left: calc(183 / 1902 * 100vw);
  }
}

.hero__lead {
  font-size: 3.6484711212vw;
  font-weight: 700;
  line-height: 1.38;
}
@media (min-width: 768px) {
  .hero__lead {
    font-size: 1.3669821241vw;
    line-height: 1.25;
  }
}

.hero__title {
  text-shadow: 0 0.3397508494vw 5.43601359vw rgba(99, 31, 31, 0.35);
  margin: calc(10 / 883 * 100vw) 0 calc(20 / 883 * 100vw);
  font-size: 8.3285390713vw;
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: -0.3057757644vw;
}
@media (min-width: 768px) {
  .hero__title {
    margin: calc(10 / 1902 * 100vw) 0 calc(20 / 1902 * 100vw);
    font-size: calc(53 / 1902 * 100vw);
    letter-spacing: -0.1051524711vw;
    line-height: 1.36;
    text-shadow: 0 0.1051524711vw 1.840168244vw rgba(99, 31, 31, 0.35);
  }
}

.hero__text {
  margin: 0;
  font-size: 3.1954699887vw;
  font-weight: 700;
  line-height: 1.58;
}
@media (min-width: 768px) {
  .hero__text {
    margin-bottom: calc(20 / 1902 * 100vw);
    font-size: 1.1566771819vw;
    line-height: 1.47;
  }
}

/* ==============================
  Hero Visual
============================== */
.hero__visual {
  grid-area: visual;
  display: grid;
  margin-top: 28px;
  background-color: #ED6D46;
}
@media (min-width: 768px) {
  .hero__visual {
    align-self: stretch;
    margin-top: 0;
    overflow: hidden;
    border-radius: 2.6288117771vw 0 0 0;
  }
}

.hero__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1706/1144;
  border-radius: 20px 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .hero__image {
    margin-left: calc(28 / 883 * 100vw);
  }
}
@media (min-width: 768px) {
  .hero__image {
    aspect-ratio: 1126/612;
    height: 100%;
    min-height: 360px;
    border-radius: 28px 0 0 28px;
  }
}

.hero__brand-card {
  justify-self: end;
  margin-top: calc(-190 / 883 * 100vw);
  padding: calc(44 / 883 * 100vw) calc(55 / 883 * 100vw) calc(50 / 883 * 100vw);
  background: url("../img/hero/bg_hero02_sp.svg") right top/100% no-repeat;
}
@media (min-width: 768px) {
  .hero__brand-card {
    margin-top: calc(-210 / 1902 * 100vw);
    width: auto;
    padding: calc(50 / 1902 * 100vw) calc(190 / 1902 * 100vw) 0 calc(80 / 1902 * 100vw);
    background: url("../img/hero/bg_hero02.svg") right top/100% auto no-repeat;
  }
}

.hero__brand-text {
  margin: 0 0 10px;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 900;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .hero__brand-text {
    padding-right: calc(180 / 1902 * 100vw);
    font-size: 1.0858044164vw;
  }
}

.hero__brand-logo {
  width: min(44vw, 240px);
}
@media (min-width: 768px) {
  .hero__brand-logo {
    width: 17.8233438486vw;
  }
}

/* ==============================
  Hero CTA
============================== */
.hero__cta-wrap {
  grid-area: cta;
  display: flex;
  justify-content: center;
  background-color: #ED6D46;
}
@media (min-width: 768px) {
  .hero__cta-wrap {
    justify-content: flex-start;
    margin-top: 0;
    padding-left: calc(183 / 1902 * 100vw);
  }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(23 / 883 * 100vw);
  padding: calc(35 / 883 * 100vw) calc(70 / 883 * 100vw);
  font-size: calc(33 / 883 * 100vw);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background: #6D0B0B;
  border-radius: 999px;
  transition: all linear 0.2s;
}
@media (min-width: 768px) {
  .hero__cta {
    width: auto;
    min-height: 0;
    padding: calc(23 / 1902 * 100vw) calc(55 / 1902 * 100vw);
    font-size: calc(20 / 1902 * 100vw);
  }
  .hero__cta:hover {
    transform: scale(1.05);
  }
}
.hero__cta span {
  font-size: 1.25em;
}

/* ==============================
  Hero Bottom
============================== */
.hero__bottom {
  min-height: calc(60 / 883 * 100vw);
  background: #ED6D46;
}
@media (min-width: 768px) {
  .hero__bottom {
    min-height: calc(60 / 1902 * 100vw);
    margin-inline: auto;
    border-radius: 0;
  }
}

.hero__dish {
  width: 96px;
  transform: translateY(-52px);
}
@media (min-width: 768px) {
  .hero__dish {
    width: 118px;
    transform: translateY(-64px);
  }
}
.hero__dish img {
  width: 100%;
}

.news {
  position: relative;
  background-color: #ED6D46;
  padding: 0 3.3975084938vw 0 0;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .news {
    padding: 0 5vw 0 0;
  }
}
.news.newsListTOP {
  background-color: white;
  padding: 0;
}
.news.newsListTOP .inner {
  border-radius: 0;
  padding: 11.3250283126vw 3.3975084938vw 13.5900339751vw;
}
@media print, screen and (min-width: 768px) {
  .news.newsListTOP .inner {
    margin: 0 auto;
    max-width: 1130px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news.newsListTOP .news-list {
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
}
@media print, screen and (min-width: 768px) {
  .news.newsListTOP .news-list {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .news.newsListTOP .news-list > li:last-child {
    border-bottom: none;
  }
}
.news.newsDetail {
  background-color: white;
  padding: 0;
}
.news.newsDetail .inner {
  border-radius: 0;
  padding: 11.3250283126vw 3.3975084938vw 13.5900339751vw;
}
@media print, screen and (min-width: 768px) {
  .news.newsDetail .inner {
    margin: 0 auto;
    max-width: 1130px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news .inner {
  background: var(--c-white);
  border-radius: 0 5.6625141563vw 0 0;
  padding: 5.6625141563vw 3.3975084938vw 5.6625141563vw 6.7950169875vw;
}
@media (min-width: 768px) {
  .news .inner {
    border-radius: 0 50px 0 0;
    margin: 0;
    padding: 50px 5vw 50px 10vw;
  }
}
.news-heading {
  font-weight: 700;
  margin-bottom: 2.4915062288vw;
  padding-bottom: 1.81200453vw;
  border-bottom: 2px solid #333;
  font-size: 3.62400906vw;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .news-heading {
    max-width: 1488px;
    margin: 0 auto 22px;
    padding-bottom: 16px;
    font-size: 24px;
  }
}
.news-list li {
  position: relative;
  border-bottom: 1px dotted #7B7D81;
  font-size: 0.8rem;
  display: flex;
  align-items: start;
}
@media only screen and (max-width: 767px) {
  .news-list li {
    flex-wrap: wrap;
    gap: 1.3590033975vw 1.81200453vw;
    padding-top: 1.1325028313vw;
    padding-bottom: 2.2650056625vw;
  }
}
@media print, screen and (min-width: 768px) {
  .news-list li {
    border-bottom-style: dashed;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-right: 8px;
  }
}
@media print, screen and (min-width: 768px) {
  .news-list li:last-child {
    border-bottom: none;
  }
}
.news-list li:has(a:hover) {
  background-color: #f4f4f4;
}
.news-list li > * {
  transition: all linear 0.2s;
}
.news-list li > a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.news-list li > a:hover ~ * {
  transform: translateX(4px);
}
.news-list li > a:hover::after {
  opacity: 1;
}
.news-date {
  font-family: "Inconsolata", monospace;
  color: #333;
  flex-shrink: 0;
  font-size: 2.4915062288vw;
}
@media print, screen and (min-width: 768px) {
  .news-date {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}
.news-category {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  flex-shrink: 0;
  width: 18.7995469989vw;
  height: 3.8505096263vw;
  line-height: 1;
  font-size: 2.2650056625vw;
}
@media print, screen and (min-width: 768px) {
  .news-category {
    width: 120px;
    height: 24px;
    border-radius: 5px;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0 24px 0 30px;
  }
}
.news-category.info {
  background-color: #FFEFAF;
}
.news-category.release {
  background-color: #D9EDFF;
}
.news-category.menus {
  background-color: #DFF28B;
}
.news-category.event {
  background-color: #FBE5D6;
}
.news-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.1710079275vw;
}
@media only screen and (max-width: 767px) {
  .news-text {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .news-text {
    flex-grow: 10;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.news-text a {
  color: #333;
}
.news-text a:hover {
  color: var(--c-primary);
}
.news-titles {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
}
@media print, screen and (min-width: 768px) {
  .news-titles .news-date {
    font-size: max(18 / 1902 * 100vw, 1.8rem);
  }
}
.news-titles .news-title {
  width: 100%;
  color: #333;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .news-titles .news-title {
    font-size: max(28 / 1902 * 100vw, 2.8rem);
  }
}
.news-content {
  border-bottom: 2px solid #333;
  padding: 0 0 calc(40 / 883 * 100vw);
  margin: 0 0 calc(20 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .news-content {
    padding: 0 0 calc(60 / 1902 * 100vw);
    margin: 0 0 calc(30 / 1902 * 100vw);
  }
}
.news-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16 / 883 * 100vw, 1.2rem);
  line-height: 1.8;
  margin: 0.5em 0;
}
@media print, screen and (min-width: 768px) {
  .news-content p {
    font-size: 1.8rem;
  }
}
.news-content p.image {
  margin: 1em 0;
}
.news-content img.radius {
  border-radius: 30px;
}
@media print, screen and (min-width: 768px) {
  .news-buttons {
    margin-top: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .news-buttons .btn-outline {
    width: 210px;
  }
}
.news-decoration .deco01 {
  position: absolute;
  left: 0;
  top: calc(-120 / 883 * 100vw);
  width: calc(130 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .news-decoration .deco01 {
    top: calc(-50 / 1902 * 100vw);
    width: calc(150 / 1902 * 100vw);
  }
}
.news-decoration .deco02 {
  position: absolute;
  right: 0;
  bottom: calc(-80 / 883 * 100vw);
  width: calc(204 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .news-decoration .deco02 {
    bottom: calc(-160 / 1902 * 100vw);
    width: calc(302 / 1902 * 100vw);
  }
}

.merit {
  padding: 48px 0;
  background: #F7EDE4;
  position: relative;
}
@media (min-width: 768px) {
  .merit {
    padding: 64px 0;
  }
}
.merit > .inner {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .merit > .inner {
    padding: calc(70 / 1902 * 100vw) inherit calc(130 / 1902 * 100vw);
  }
}
.merit .section-subtitle {
  font-family: "Noto Sans JP", sans-serif;
}
.merit-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(114 / 883 * 100vw);
  margin-top: calc(94 / 883 * 100vw);
}
@media (min-width: 768px) {
  .merit-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: calc(32 / 1902 * 100vw);
    margin-top: calc(60 / 1902 * 100vw);
  }
}
.merit-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius);
  padding-bottom: calc(60 / 883 * 100vw);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media print, screen and (min-width: 768px) {
  .merit-card {
    padding-bottom: calc(40 / 1902 * 100vw);
  }
}
.merit-card.is-01 .merit-card-header {
  background-image: url("../img/merit/bg_merit01.svg");
}
.merit-card.is-01 .merit-card-body h3 {
  background-color: #FDE0A4;
}
.merit-card.is-01 .merit-card-body h4 {
  color: #F08200;
}
.merit-card.is-02 .merit-card-header {
  background-image: url("../img/merit/bg_merit02.svg");
}
.merit-card.is-02 .merit-card-body h3 {
  background-color: #C1E3E0;
}
.merit-card.is-02 .merit-card-body h4 {
  color: #58C3E0;
}
.merit-card.is-03 .merit-card-header {
  background-image: url("../img/merit/bg_merit03.svg");
}
.merit-card.is-03 .merit-card-body h3 {
  background-color: #D3E9D5;
}
.merit-card.is-03 .merit-card-body h4 {
  color: #66BF97;
}
.merit-card.is-04 .merit-card-header {
  background-image: url("../img/merit/bg_merit04.svg");
}
.merit-card.is-04 .merit-card-body h3 {
  background-color: #F8CAC8;
}
.merit-card.is-04 .merit-card-body h4 {
  color: #EE869B;
}
.merit-card-header {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc(126 / 883 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media print, screen and (min-width: 768px) {
  .merit-card-header {
    height: calc(70 / 1902 * 100vw);
  }
}
.merit-card-header img {
  height: calc(40 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .merit-card-header img {
    height: calc(24 / 1902 * 100vw);
  }
}
.merit-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  background: var(--c-bg-warm);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.merit-card-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: calc(-45 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .merit-card-body {
    margin-top: calc(-45 / 1902 * 100vw);
  }
}
.merit-card-body h3 {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: calc(25.84 / 883 * 100vw);
  font-weight: 700;
  line-height: 1;
  border-radius: 0 999px 999px 0;
  padding: calc(10 / 883 * 100vw) calc(36 / 883 * 100vw);
  min-width: calc(200 / 883 * 100vw);
  margin: calc(30 / 883 * 100vw) 0 calc(15 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .merit-card-body h3 {
    min-width: calc(180 / 1902 * 100vw);
    font-size: max(14 / 1902 * 100vw, 1.4rem);
    padding: calc(10 / 1902 * 100vw) calc(20 / 1902 * 100vw);
    margin: calc(30 / 1902 * 100vw) 0 calc(15 / 1902 * 100vw);
  }
}
.merit-card-body h4 {
  font-size: calc(36 / 883 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  padding: 0 calc(36 / 883 * 100vw);
  margin: calc(10 / 883 * 100vw) 0;
}
@media print, screen and (min-width: 768px) {
  .merit-card-body h4 {
    font-size: max(20 / 1902 * 100vw, 2rem);
    padding: 0 calc(20 / 1902 * 100vw);
    margin: calc(12 / 1902 * 100vw) 0;
  }
}
.merit-card-body p {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: calc(33 / 883 * 100vw);
  line-height: 1.5;
  padding: 0 calc(36 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .merit-card-body p {
    font-size: max(18 / 1902 * 100vw, 1.8rem);
    padding: 0 calc(20 / 1902 * 100vw);
  }
}
.merit-decoration .deco01 {
  position: absolute;
  z-index: 1;
  left: calc(52 / 883 * 100vw);
  top: calc(80 / 883 * 100vw);
  width: calc(101 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .merit-decoration .deco01 {
    left: calc(52 / 1902 * 100vw);
    top: calc(80 / 1902 * 100vw);
    width: calc(101 / 1902 * 100vw);
  }
}
.merit-decoration .deco02 {
  position: absolute;
  z-index: 1;
  left: 0;
  top: calc(684 / 883 * 100vw);
  width: calc(88 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .merit-decoration .deco02 {
    top: calc(567 / 1902 * 100vw);
    width: calc(77 / 1902 * 100vw);
  }
}

.service {
  padding: calc(70 / 1902 * 100vw) 0 calc(100 / 1902 * 100vw);
  background: #F6E4AB;
  position: relative;
}
@media (min-width: 768px) {
  .service {
    padding: calc(80 / 1902 * 100vw) inherit calc(110 / 1902 * 100vw);
  }
}
.service > .inner {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .service > .inner {
    padding: 0 calc(90 / 883 * 100vw);
  }
}
.service .section-title-caption {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(28.6 / 883 * 100vw);
  margin-bottom: calc(60 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .service .section-title-caption {
    font-size: max(22 / 1902 * 100vw, 2.2rem);
    margin-bottom: calc(35 / 1902 * 100vw);
  }
}
.service .section-subtitle {
  font-size: calc(40 / 883 * 100vw);
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .service .section-subtitle {
    text-align: left;
    font-size: max(32 / 1902 * 100vw, 3.2rem);
  }
}
.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0 40px;
}
@media (min-width: 768px) {
  .service-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.service-feature {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2; /* 見出し + 本文 の2行を共有 */
  background: #fff;
  padding: calc(35 / 883 * 100vw) calc(50 / 883 * 100vw) calc(40 / 883 * 100vw);
  border-radius: var(--radius-sm);
}
@media (min-width: 768px) {
  .service-feature {
    padding: calc(24 / 1902 * 100vw) calc(20 / 1902 * 100vw);
  }
}
.service-feature-icon {
  display: flex;
  align-items: center;
  gap: calc(18 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .service-feature-icon {
    gap: calc(13 / 1902 * 100vw);
  }
}
.service-feature-icon::before {
  content: "";
  background: url("../img/cmn/ic_check.svg") center/contain no-repeat;
  flex-shrink: 0;
  width: calc(42 / 883 * 100vw);
  aspect-ratio: 1;
}
@media print, screen and (min-width: 768px) {
  .service-feature-icon::before {
    width: 30px;
  }
}
.service-feature-icon strong {
  color: #6D0B0B;
  font-weight: 700;
  font-size: calc(37.642 / 883 * 100vw);
  line-height: 1.2;
}
@media print, screen and (min-width: 768px) {
  .service-feature-icon strong {
    font-size: max(25 / 1902 * 100vw, 2.5rem);
  }
}
.service-feature-text {
  font-size: calc(28 / 883 * 100vw);
  line-height: 1.42;
}
@media print, screen and (min-width: 768px) {
  .service-feature-text {
    font-size: max(18 / 1902 * 100vw, 1.8rem);
  }
}
@media print, screen and (min-width: 768px) {
  .service-steps-titles {
    margin: calc(70 / 1902 * 100vw) 0 calc(90 / 1902 * 100vw);
    display: flex;
    align-items: center;
    gap: calc(30 / 1902 * 100vw);
  }
}
.service-steps-title {
  text-align: center;
  font-size: calc(40 / 883 * 100vw);
  font-weight: 700;
  margin: calc(48 / 883 * 100vw) 0 calc(16 / 883 * 100vw);
  color: #333;
}
@media print, screen and (min-width: 768px) {
  .service-steps-title {
    margin: 0;
    font-size: max(32 / 1902 * 100vw, 3.2rem);
  }
}
.service-steps-sub {
  text-align: center;
  font-size: calc(34 / 883 * 100vw);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-bottom: calc(64 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .service-steps-sub {
    margin: 0;
    font-size: max(26 / 1902 * 100vw, 2.6rem);
  }
}
.service-steps {
  display: flex;
  gap: calc(25 / 883 * 100vw);
}
@media only screen and (max-width: 767px) {
  .service-steps {
    flex-direction: column;
    align-items: center;
    padding: 0 calc(33 / 883 * 100vw);
  }
}
@media (min-width: 768px) {
  .service-steps {
    flex-direction: row;
    gap: calc(12 / 1902 * 100vw);
  }
}
.service-link {
  margin-top: 24px;
  text-align: center;
}
.service-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
}
.service-business {
  background-color: #fff;
  display: flex;
  border-radius: 12px;
  padding: calc(38 / 883 * 100vw);
}
@media only screen and (max-width: 767px) {
  .service-business {
    flex-wrap: wrap;
    gap: calc(30 / 883 * 100vw);
    margin: calc(107 / 883 * 100vw) calc(33 / 883 * 100vw) 0;
  }
}
@media print, screen and (min-width: 768px) {
  .service-business {
    align-items: center;
    padding: calc(38 / 1902 * 100vw);
    gap: calc(32 / 1902 * 100vw);
    margin: calc(70 / 1902 * 100vw) 0 0;
  }
}
.service-business h3 {
  display: flex;
  align-items: center;
  gap: calc(25 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .service-business h3 {
    gap: calc(10 / 1902 * 100vw);
  }
}
.service-business h3 {
  flex-shrink: 0;
}
.service-business h3::before {
  flex-shrink: 0;
  content: "";
  background: url("../img/cmn/ic_document.svg") center/contain no-repeat;
  width: calc(46 / 883 * 100vw);
  aspect-ratio: 50/66;
}
@media print, screen and (min-width: 768px) {
  .service-business h3::before {
    width: calc(30 / 1902 * 100vw);
  }
}
.service-business h3 span {
  font-size: calc(44 / 883 * 100vw);
  color: #6D0B0B;
}
@media print, screen and (min-width: 768px) {
  .service-business h3 span {
    font-size: max(26 / 1902 * 100vw, 2.6rem);
  }
}
.service-business p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(28 / 883 * 100vw);
  line-height: 1.42;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .service-business p {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .service-business p {
    font-size: max(18 / 1902 * 100vw, 1.8rem);
  }
}
.service-decoration .deco01 {
  position: absolute;
  z-index: 1;
  left: calc(-31 / 883 * 100vw);
  top: calc(-82 / 883 * 100vw);
  width: calc(249 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .service-decoration .deco01 {
    left: calc(279 / 1902 * 100vw);
    top: calc(-59 / 1902 * 100vw);
    width: calc(300 / 1902 * 100vw);
  }
}
.service-decoration .deco02 {
  position: absolute;
  z-index: 1;
  right: calc(36 / 883 * 100vw);
  top: calc(-50 / 883 * 100vw);
  width: calc(120 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .service-decoration .deco02 {
    right: calc(428 / 1902 * 100vw);
    top: calc(-27 / 1902 * 100vw);
    width: calc(165 / 1902 * 100vw);
  }
}
.service-decoration .deco03 {
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .service-decoration .deco03 {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .service-decoration .deco03 {
    top: calc(600 / 1902 * 100vw);
    right: calc(141 / 1902 * 100vw);
    width: calc(129 / 1902 * 100vw);
  }
}

.step-item {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .step-item {
    flex: 1 1 0;
    padding: calc(45 / 1902 * 100vw) calc(25 / 1902 * 100vw) calc(20 / 1902 * 100vw);
  }
}
.step-item h4 {
  font-size: calc(53 / 883 * 100vw);
  font-weight: 700;
  color: #6D0B0B;
}
@media print, screen and (min-width: 768px) {
  .step-item h4 {
    font-size: max(38 / 1902 * 100vw, 3.8rem);
  }
}
.step-item p {
  font-size: calc(28 / 883 * 100vw);
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .step-item p {
    font-size: max(18 / 1902 * 100vw, 1.8rem);
  }
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: calc(176 / 883 * 100vw);
  aspect-ratio: 253/238;
}
@media print, screen and (min-width: 768px) {
  .step-number {
    width: calc(126 / 1902 * 100vw);
  }
}

.step-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  .step-img {
    margin: calc(20 / 1902 * 100vw) 0;
    height: calc(220 / 1902 * 100vw);
  }
}
@media print, screen and (min-width: 768px) {
  .step-img img {
    max-width: calc(260 / 1902 * 100vw);
    max-height: calc(190 / 1902 * 100vw);
  }
}

.step-arrow {
  flex-shrink: 0;
  align-self: center;
  line-height: 1;
  text-indent: -9999px;
  width: calc(98 / 883 * 100vw);
  height: calc(86 / 883 * 100vw);
  background: url("../img/service/ic_arrow_down.svg") center/contain no-repeat;
}
@media (min-width: 768px) {
  .step-arrow {
    background: url("../img/service/ic_arrow_right.svg") center/contain no-repeat;
    flex-shrink: 0;
    width: calc(68 / 1902 * 100vw);
    height: calc(68 / 1902 * 100vw);
  }
}

.menu {
  position: relative;
  padding: 48px 0;
  background: url("../img/menu/bg_menu.webp") center center/cover no-repeat;
}
.menu::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.menu > .inner {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .menu {
    padding: 64px 0;
  }
}
.menu-desc {
  text-align: center;
  color: #333;
  font-size: 3.2389580974vw;
  font-weight: 500;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  .menu-desc {
    font-size: 2.2rem;
  }
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.8505096263vw;
}
@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2552083333% 2.0833333333%;
  }
}
.menu-item {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2.138px 8.553px 0 rgba(0, 0, 0, 0.15);
  padding-bottom: 2.3782559456vw;
}
@media print, screen and (min-width: 768px) {
  .menu-item {
    padding-bottom: 20px;
  }
}
.menu-item-img {
  width: 100%;
}
.menu-item-name {
  color: #F08200;
  margin: 1.3590033975vw 0;
  padding: 0 2.3782559456vw;
  font-weight: 500;
  line-height: 1.08;
  font-size: 3.1325028313vw;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .menu-item-name {
    margin: 13px 0;
    padding: 0 20px;
    font-size: 2.4rem;
  }
}
.menu-item-detail {
  color: #333;
  padding: 0 2.3782559456vw;
  line-height: 1.55;
  font-size: 2.1795016988vw;
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .menu-item-detail {
    padding: 0 20px;
    font-size: 1.8rem;
  }
}

.support {
  position: relative;
  padding: calc(70 / 883 * 100vw) 0 calc(100 / 883 * 100vw);
  background: #F7EDE4;
}
@media (min-width: 768px) {
  .support {
    padding: calc(80 / 1902 * 100vw) inherit calc(110 / 1902 * 100vw);
  }
}
.support-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .support-cards {
    padding: 0 calc(13.0237825595vw - 20px);
  }
}
@media (min-width: 768px) {
  .support-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.support-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 16px;
  gap: 10px;
}
@media print, screen and (min-width: 768px) {
  .support-card {
    padding: 34px;
    gap: 18px;
  }
}
.support-card-title {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 1.3590033975vw;
}
@media print, screen and (min-width: 768px) {
  .support-card-title {
    gap: 12px;
  }
}
.support-card-icon {
  flex-shrink: 0;
  width: 4.530011325vw;
  aspect-ratio: 1;
  background: url("../img/cmn/ic_check.svg") center/contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
  .support-card-icon {
    width: 30px;
  }
}
.support-card-badges {
  display: flex;
  width: 100%;
  gap: 1.3590033975vw;
}
@media print, screen and (min-width: 768px) {
  .support-card-badges {
    gap: 12px;
  }
}
.support-card-badge {
  flex-shrink: 0;
  border-radius: 10px;
  width: 9.0600226501vw;
  aspect-ratio: 1;
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4061155153vw;
  font-weight: 400;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .support-card-badge {
    width: 60px;
    border-width: 2px;
    font-size: 1.6rem;
  }
}
.support-card-badge.is-dev {
  border-color: #98E5EE;
  background: #EBFDFF;
}
.support-card-badge.is-paid {
  border-color: #EED998;
  background: #FFFAEB;
}
.support-card h3 {
  font-weight: 700;
  color: #6D0B0B;
  text-align: left;
  width: auto;
  line-height: 1.28;
  font-size: 3.7599093998vw;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .support-card h3 {
    width: calc(100% - 42px);
    font-size: max(2 / 1902 * 100vw, 2rem);
  }
}
.support-card p {
  flex-grow: 10;
  color: #333;
  line-height: 1.55;
  font-size: 3.1710079275vw;
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .support-card p {
    font-size: 1.8rem;
  }
}
.support-card figure {
  align-self: center;
  width: 50%;
  flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .support-card figure {
    width: 53.9714867617%;
  }
}
.support > .inner {
  position: relative;
  z-index: 2;
}
.support-decoration .deco01 {
  position: absolute;
  z-index: 1;
  left: calc(-20 / 883 * 100vw);
  top: calc(20 / 883 * 100vw);
  width: calc(168 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .support-decoration .deco01 {
    left: calc(0 / 1902 * 100vw);
    top: calc(123 / 1902 * 100vw);
    width: calc(300 / 1902 * 100vw);
  }
}

.case-study {
  position: relative;
  padding: calc(70 / 883 * 100vw) 0 calc(100 / 883 * 100vw);
  background: #FFF;
}
@media (min-width: 768px) {
  .case-study {
    padding: calc(80 / 1902 * 100vw) 0 calc(110 / 1902 * 100vw);
  }
}

@media print, screen and (min-width: 768px) {
  .case-card {
    padding: 0 calc(20 / 1902 * 100vw);
  }
}
.case-card-label {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 329/70;
  background: url("../img/case/bg_label.svg") center/contain no-repeat;
  color: var(--c-white);
  font-weight: 700;
  font-size: 3.1710079275vw;
  line-height: 1;
  padding: 0 3.3975084938vw;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .case-card-label {
    padding: 15px 0;
    font-size: 2.8rem;
    line-height: 1;
  }
}
.case-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}
@media (min-width: 768px) {
  .case-card-content {
    flex-direction: row;
    gap: 40px;
  }
}
.case-card-img {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2.2650056625%;
}
@media print, screen and (min-width: 768px) {
  .case-card-img {
    width: 50.206043956%;
    gap: 20px;
  }
}
.case-card-img ul {
  display: flex;
  gap: 2.2650056625%;
  margin-bottom: 2.2650056625%;
}
@media print, screen and (min-width: 768px) {
  .case-card-img ul {
    gap: 20px;
  }
}
.case-card-text {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.case-card-text h3 {
  color: #6D0B0B;
  margin-top: 1.6987542469vw;
  font-size: 4.3035107588vw;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .case-card-text h3 {
    font-size: 3.4rem;
  }
}
.case-card-text h4 {
  font-size: 3.1710079275vw;
  margin: 4.3035107588vw 0 2.0385050963vw;
  padding: 1.6987542469vw 4.530011325vw;
  line-height: 1;
  font-weight: 700;
  border-radius: 9999px;
  background-color: #FDE0A4;
}
@media print, screen and (min-width: 768px) {
  .case-card-text h4 {
    margin: 30px 0 5px;
    padding: 15px 30px;
    font-size: 2rem;
  }
}
.case-card-text p {
  color: #333;
  font-size: 3.1710079275vw;
  line-height: 1.35;
}
@media print, screen and (min-width: 768px) {
  .case-card-text p {
    font-size: 1.8rem;
  }
}

.case-decoration .deco01 {
  position: absolute;
  z-index: 1;
  left: calc(-26.5 / 883 * 100vw);
  top: calc(70 / 883 * 100vw);
  width: calc(158 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .case-decoration .deco01 {
    left: calc(25 / 1902 * 100vw);
    top: calc(116 / 1902 * 100vw);
    width: calc(158 / 1902 * 100vw);
  }
}
.case-decoration .deco02 {
  position: absolute;
  z-index: 1;
  right: calc(53 / 883 * 100vw);
  top: calc(-40 / 883 * 100vw);
  width: calc(76 / 883 * 100vw);
}
@media print, screen and (min-width: 768px) {
  .case-decoration .deco02 {
    right: calc(89 / 1902 * 100vw);
    top: calc(-38 / 1902 * 100vw);
    width: calc(95 / 1902 * 100vw);
  }
}

.cta {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 5.43601359vw 0 17.8935447339vw;
  background: linear-gradient(135deg, var(--c-bg-peach), var(--c-bg-warm));
  text-align: center;
}
@media (min-width: 768px) {
  .cta {
    padding: 64px 0 120px;
  }
}
.cta .inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-primary);
  margin-bottom: 16px;
  width: 45.8663646659%;
}
@media print, screen and (min-width: 768px) {
  .cta-logo {
    width: 405px;
  }
}
.cta h2 {
  font-size: 4.0770101925vw;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #6D0B0B;
}
@media (min-width: 768px) {
  .cta h2 {
    font-size: 3.6rem;
    margin-bottom: 50px;
  }
}
.cta-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 5.6625141563vw 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  width: 82.7859569649%;
  transition: all linear 0.2s;
}
@media (min-width: 768px) {
  .cta-box {
    width: 768px;
    padding: 32px 48px;
  }
}
.cta-box:has(a:hover) {
  transform: scale(1.05);
}
.cta-box-icon {
  width: 48px;
  aspect-ratio: 117/79;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.cta-box p {
  font-size: 0.75rem;
  color: #6D0B0B;
  margin-bottom: 20px;
  font-size: 3.9422423556vw;
  line-height: 1.25;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .cta-box p {
    font-size: 2.2rem;
  }
}
.cta-box p#mailLinkCP {
  color: #6D0B0B;
  text-decoration: underline;
  font-size: 2.8670441676vw;
  line-height: 1.25;
}
@media print, screen and (min-width: 768px) {
  .cta-box p#mailLinkCP {
    font-size: 1.6rem;
  }
}
.cta-box a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.footer {
  position: relative;
  z-index: 5;
  color: #fff;
  padding: 4.530011325vw 6.7950169875vw 3.3975084938vw;
}
@media print, screen and (min-width: 768px) {
  .footer {
    padding: 100px 20px 40px;
  }
}
.footer::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ED6D46;
}
.footer::after {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  left: 0;
  top: calc(-50 / 883 * 100vw);
  background: url("../img/cmn/footer_wave_sp.svg") center/100% auto no-repeat;
  width: 100vw;
  aspect-ratio: 3679/1275;
}
@media print, screen and (min-width: 768px) {
  .footer::after {
    width: 100%;
    height: calc(305 / 1902 * 100vw);
    background: url("../img/cmn/footer_wave.svg") center/auto 100% repeat-x;
    top: calc(-50 / 1902 * 100vw);
  }
}
.footer a {
  color: #fff;
}
.footer .inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer .inner {
    max-width: 1300px;
    margin: 0 auto;
    gap: 0;
  }
}
.footer-logo {
  width: 30.2378255946vw;
}
@media print, screen and (min-width: 768px) {
  .footer-logo {
    width: 290px;
    flex-shrink: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-logo img {
    width: 190px;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer-nav {
    width: 100%;
    gap: 0;
    flex-wrap: nowrap;
  }
}
.footer-nav > ul {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footer-nav > ul {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-nav > ul {
    flex-grow: 10;
    gap: 50px;
  }
}
.footer-nav > ul > li {
  flex: 1 1 0;
}
.footer-nav > ul > li > p {
  font-size: 3.62400906vw;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .footer-nav > ul > li > p {
    font-size: 2.2rem;
  }
}
.footer-nav > ul > li > ul {
  flex-direction: column;
  font-size: 2.8312570781vw;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .footer-nav > ul > li > ul {
    font-size: 1.6rem;
  }
}
.footer-rel {
  font-family: "Noto Sans JP";
  font-size: 2.718006795vw;
  margin: 20px 0 5px;
}
@media print, screen and (min-width: 768px) {
  .footer-rel {
    margin: 60px 0 10px;
    font-size: 1.6rem;
  }
}
.footer-copy {
  text-align: center;
  font-size: 2.4915062288vw;
}
@media print, screen and (min-width: 768px) {
  .footer-copy {
    font-size: 1.4rem;
  }
}

[data-fade] {
  --fade-x: 0;
  --fade-y: 24px;
  --fade-scale: 1;
  --fade-duration: 700ms;
  --fade-delay: 0ms;
  --fade-ease: cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translate3d(var(--fade-x), var(--fade-y), 0) scale(var(--fade-scale));
  transition: opacity var(--fade-duration) var(--fade-ease) var(--fade-delay), transform var(--fade-duration) var(--fade-ease) var(--fade-delay);
  will-change: opacity, transform;
}
[data-fade].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

[data-fade=up] {
  --fade-x: 0;
  --fade-y: 24px;
  --fade-scale: 1;
}

[data-fade=down] {
  --fade-x: 0;
  --fade-y: -24px;
  --fade-scale: 1;
}

[data-fade=left] {
  --fade-x: 24px;
  --fade-y: 0;
  --fade-scale: 1;
}

[data-fade=right] {
  --fade-x: -24px;
  --fade-y: 0;
  --fade-scale: 1;
}

[data-fade=none] {
  --fade-x: 0;
  --fade-y: 0;
  --fade-scale: 1;
}

[data-fade=zoom] {
  --fade-x: 0;
  --fade-y: 16px;
  --fade-scale: 0.96;
}

[data-fade=step] {
  --fade-x: 0;
  --fade-y: 24px;
}

@media (min-width: 768px) {
  [data-fade=step] {
    --fade-x: -24px;
    --fade-y: 0;
  }
}/*# sourceMappingURL=main.css.map */