@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --zIndex: 100;
  --zIndex-fixedCta: calc(var(--zIndex) * 4);
  --zIndex-gnav: calc(var(--zIndex) * 5);
  --zIndex-btnMenu: calc(var(--zIndex) * 6);
  --zIndex-header: calc(var(--zIndex) * 7);
  --zIndex-modal: calc(var(--zIndex) * 10);
  --color-bgMain: #4a3b2e;
  --color-accent01: #d9bc7a;
  --color-accent02: #c1272d;
  --color-accent03: #7d6628;
  --color-border: #dbdbdb;
  --color-textCream: #fffdf8;
  --color-black: #333333;
  --color-white: #ffffff;
  --color-bgBase-rgb: 245, 244, 241;
  --color-bgBase: rgb(var(--color-bgBase-rgb));
  --color-emphasis: #9b1615;
  --color-gradientRedEnd: #8e1b22;
  --gradient-red: linear-gradient(165deg, var(--color-accent02) 0%, var(--color-gradientRedEnd) 100%);
  --color-footerBrand: #004ea4;
  --fontFamily-base: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
  --fontWeight-base: 600;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --lineHeight-base: 1.5;
  --lineHeight-none: 1;
  --lineHeight-loose: 2;
  --fontSize-base: 0.875rem;
  --fontSize-lead: 1.0625rem;
  --fontSize-ttl: 1.5rem;
  --letterSpacing-ttl: 0.02em;
  --fontColor-base: #4a3b2e;
  --gap-section: 2.5rem;
  --gap-block: 1.5rem;
  --gap-group: 1.25rem;
  --gap-item: 1rem;
  --gap-inline: 0.625rem;
}

/* base */
html {
  /*
   * 〜375px  : 16px 固定（デザイン実寸。これ以上は縮めない）
   * 375〜500px: 16px → 21.33px へ滑らかに拡大（Figmaのtop_pcが375pxデザインの1.333倍のため）
   * 500px〜  : 21.33px 固定（中央カラムが500pxで確定するので拡大を止める）
   *
   * 上下限をremで止めているので、ユーザーのブラウザ文字サイズ設定も効く。
   * 4.2667vw = 16 ÷ 375 × 100
   */
  font-size: clamp(1rem, 4.2667vw, 1.3333rem);
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 500px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-family: var(--fontFamily-base);
  font-size: var(--fontSize-base);
  font-weight: var(--fontWeight-base);
  line-height: var(--lineHeight-base);
  color: var(--fontColor-base);
  background-color: var(--color-bgBase);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* l-body */
.l-body.noScroll {
  overflow: hidden;
}

/* l-header */
.l-header {
  position: relative;
  background-color: var(--color-white);
}
.l-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  max-width: 500px;
  z-index: var(--zIndex-header);
  -webkit-box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header.is-fixed.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 500px) {
  .l-header.is-fixed {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-inline: 0;
    width: auto;
    max-width: none;
    z-index: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
  .l-header.is-fixed.is-visible {
    -webkit-transform: none;
            transform: none;
  }
}
.l-header.is-fixed + .c-site__main {
  padding-top: 3.75rem;
}
@media screen and (min-width: 500px) {
  .l-header.is-fixed + .c-site__main {
    padding-top: 0;
  }
}
.l-header__inner {
  position: relative;
  z-index: var(--zIndex-header);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 3.75rem;
  padding-left: 1rem;
  background-color: var(--color-white);
}
.l-header__logo img {
  display: block;
  width: 11.25rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__gnav {
  display: none;
}
.l-header__gnav.menu_isOpen {
  display: block;
  position: fixed;
  top: 3.75rem;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: 100%;
  max-width: 500px;
  z-index: var(--zIndex-gnav);
  overflow-y: auto;
  z-index: var(--zIndex-gnav);
}

/* l-footer */
.l-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-white);
  margin-bottom: 3.375rem;
}
.l-footer__logo {
  padding: 2.5rem 0;
}
.l-footer__logo img {
  display: block;
  width: 15.0625rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__copy {
  width: 100%;
  padding: 0.625rem 0;
  text-align: center;
  background-color: var(--color-footerBrand);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: var(--color-white);
}

/* l-inner */
.l-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 1.25rem;
  margin: auto;
}

/* l-section */
.l-section {
  position: relative;
  padding: var(--gap-section) 1.25rem;
  background-color: var(--color-bgBase);
}
.l-section--texture {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--color-bgBase-rgb), 0.8)), to(rgba(var(--color-bgBase-rgb), 0.8))), url(../images/bg_texture.png);
  background-image: linear-gradient(rgba(var(--color-bgBase-rgb), 0.8), rgba(var(--color-bgBase-rgb), 0.8)), url(../images/bg_texture.png);
  background-repeat: repeat;
}
.l-section--dark {
  background-color: var(--color-bgMain);
  color: var(--color-textCream);
}

/* c-site */
.c-site {
  position: relative;
}
@media screen and (min-width: 500px) {
  .c-site::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url(../images/site_bg.jpg) center center/cover no-repeat;
    z-index: 0;
  }
}
.c-site__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  background-color: var(--color-bgBase);
  overflow: hidden;
}
@media screen and (min-width: 500px) {
  .c-site__content {
    border-left: 4px solid #F5F4F1;
    border-right: 4px solid #F5F4F1;
  }
}
.c-site__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-site__side {
  display: none;
}
@media screen and (min-width: 1120px) {
  .c-site__side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    position: fixed;
    top: 50%;
    left: 50%;
    translate: calc(500px / 2 + clamp(20px, 50vw - 540px, 100px)) -50%;
    width: 310px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0 20px;
    z-index: 2;
  }
}
.c-site__sideNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}
.c-site__sideItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
}
.c-site__sideItem--accent .c-site__sideLink {
  color: var(--color-accent01);
}
.c-site__sideItem--accent .c-site__sideDivider {
  background-color: var(--color-accent01);
}
.c-site__sideLink {
  font-size: 16px;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-white);
}
.c-site__sideDivider {
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.3;
}
.c-site__sideCta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
}
.c-site__sideCta .c-btn {
  gap: 10px;
  padding: 20px 16px;
  font-size: 14px;
  height: 56px;
}
.c-site__sideSns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
.c-site__sideSnsLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
}
.c-site__sideSnsLink img {
  width: 100%;
}

/* c-gnav */
.c-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.c-gnav__scroll {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  background-color: #f1efec;
  padding: 3rem 1.5rem 2.5rem;
}
.c-gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.c-gnav__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.c-gnav__groupHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
}
.c-gnav__groupLink {
  display: block;
  font-size: 1rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 1.4;
  color: var(--color-bgMain);
}
.c-gnav__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  cursor: pointer;
}
.c-gnav__arrow::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1px solid var(--color-bgMain);
  border-bottom: 1px solid var(--color-bgMain);
  translate: -50% -50%;
  rotate: 45deg;
  -webkit-transition: rotate 0.2s ease-in-out;
  transition: rotate 0.2s ease-in-out;
}
.c-gnav__group.isOpen .c-gnav__arrow::before {
  rotate: 225deg;
}
.c-gnav__divider {
  display: block;
  height: 1px;
  background-color: var(--color-accent03);
  opacity: 0.4;
}
.c-gnav__subList {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-left: 0.25rem;
}
.c-gnav__group.isOpen .c-gnav__subList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-gnav__subLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
}
.c-gnav__subIcon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/icon-gnav-sub.svg) no-repeat center center/contain;
}
.c-gnav__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  border-left: 1px solid var(--color-accent03);
  border-right: 1px solid var(--color-accent03);
}
@media screen and (min-width: 500px) {
  .c-gnav__row {
    border-left: none;
    border-right: none;
  }
}
.c-gnav__rowDivider {
  width: 1px;
  height: 1.25rem;
  background-color: var(--color-accent03);
  opacity: 0.4;
}
.c-gnav__rowLink {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
}
.c-gnav__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.c-gnav__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.c-gnav__snsLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
.c-gnav__snsLink img {
  width: 100%;
}
.c-gnav__estimate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-white);
  background: var(--gradient-red);
  border-top: 1px solid var(--color-white);
}

/* c-btnMenu */
.c-btnMenu {
  width: 3.75rem;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
  padding: 0;
  border: none;
  background-color: var(--color-emphasis);
  cursor: pointer;
}
@media screen and (min-width: 1120px) {
  .c-btnMenu {
    display: none;
  }
}
.c-btnMenu__icon {
  position: relative;
  width: 1.5rem;
  height: 0.625rem;
}
.c-btnMenu__iconLine {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btnMenu__iconLine:nth-child(1) {
  top: 0;
}
.c-btnMenu__iconLine:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
}
.c-btnMenu__iconLine:nth-child(3) {
  bottom: 0;
}
.c-btnMenu__label {
  font-family: var(--fontFamily-base);
  font-size: 0.75rem;
  line-height: var(--lineHeight-none);
  color: var(--color-white);
}
.c-btnMenu__label--close {
  display: none;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__iconLine:nth-child(1) {
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__iconLine:nth-child(2) {
  opacity: 0;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__iconLine:nth-child(3) {
  bottom: 50%;
  translate: 0 50%;
  rotate: -45deg;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__label--open {
  display: none;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__label--close {
  display: block;
}

/* c-ttl */
.c-ttl {
  font-size: var(--fontSize-ttl);
  font-weight: var(--fontWeight-semiBold);
  line-height: var(--lineHeight-base);
  letter-spacing: var(--letterSpacing-ttl);
  color: var(--color-bgMain);
  text-align: center;
}
.c-ttl::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-accent03);
  margin: 0 auto;
  margin-top: 1.125rem;
}
.c-ttl__accent {
  color: var(--color-emphasis);
}

/* c-btn */
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 1rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  text-align: center;
  line-height: 1;
}
.c-btn--outline {
  background-color: var(--color-white);
  border: 1px solid var(--color-accent03);
  color: var(--color-accent03);
}
.c-btn--primary {
  background: var(--gradient-red);
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.c-btn--dark {
  background-color: var(--color-accent03);
  color: var(--color-white);
  -webkit-box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  font-size: 0.8125rem;
}
.c-btn--navy {
  background-color: #071376;
  color: var(--color-white);
  -webkit-box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  font-size: 0.8125rem;
}
.c-btn--radius4 {
  border-radius: 4px;
}
.c-btn--menu {
  padding: 0.625rem 1rem;
}
.c-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* c-fixedCta */
.c-fixedCta {
  position: fixed;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: 100%;
  max-width: 500px;
  z-index: var(--zIndex-fixedCta);
}
.c-fixedCta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: var(--color-bgMain);
}
.c-fixedCta__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.6875rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.5;
  text-align: center;
  -webkit-box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
}
.c-fixedCta__btn--tel {
  background-color: var(--color-white);
  border: 1px solid var(--color-accent03);
  color: var(--color-accent03);
}
.c-fixedCta__btn--estimate {
  background: var(--gradient-red);
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.c-fixedCta__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.c-fixedCta__line {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-fixedCta__line img {
  width: 100%;
}

/* c-badge */
.c-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.25rem 0.3125rem;
  background-color: var(--color-accent02);
  color: var(--color-white);
  font-size: 0.625rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1;
  white-space: nowrap;
}
.c-badge--overlay {
  background-color: rgba(0, 0, 0, 0.6);
}
.c-badge--caseTtl {
  font-size: 0.6875rem;
}

/* c-cardCase */
.c-cardCase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
}
.c-cardCase__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}
.c-cardCase__label {
  font-size: 1.125rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent03);
  line-height: 1;
}
.c-cardCase__ttl {
  font-size: 1.0625rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: var(--lineHeight-base);
}
.c-cardCase__ttl .c-cardCase__ttlSmall {
  font-size: 0.875rem;
}
.c-cardCase__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.c-cardCase__metaText {
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
}
.c-cardCase__slider {
  position: relative;
  width: 100%;
}
.c-cardCase__swiper {
  width: 100%;
  padding-bottom: 2.375rem;
}
.c-cardCase__slide {
  position: relative;
}
.c-cardCase__img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardCase__swiper--tall .c-cardCase__img {
  height: 25.25rem;
}
.c-cardCase__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.c-cardCase__arrow {
  position: absolute;
  top: 50%;
  translate: 0 -30%;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background: transparent;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
}
.c-cardCase__arrow--prev {
  left: 0;
  background: url(../images/case_arrow_left.svg) no-repeat center center/contain;
}
.c-cardCase__arrow--next {
  right: 0;
  background: url(../images/case_arrow_right.svg) no-repeat center center/contain;
}
.c-cardCase__arrow--disabled {
  opacity: 0.3;
  cursor: default;
}
.c-cardCase__pagination {
  position: absolute;
  bottom: 0;
  z-index: 2;
}
.c-cardCase__pagination .swiper-pagination-bullet {
  background-color: #D8D8D8;
  opacity: 1;
  margin: 0 0.5rem !important;
}
.c-cardCase__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent03);
}
.c-cardCase__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}
.c-cardCase__note {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent03);
}
.c-cardCase__desc {
  font-size: 1rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: var(--lineHeight-base);
}

/* c-cardStyle */
.c-cardStyle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 9.375rem;
  padding: 0.625rem;
  border-radius: 0.25rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.08);
  border: none;
  background-color: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.c-cardStyle__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardStyle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 100%);
}
.c-cardStyle__text {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  color: var(--color-white);
  font-weight: var(--fontWeight-semiBold);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.c-cardStyle__name {
  font-size: 1.25rem;
  line-height: 1;
}
.c-cardStyle__sub {
  font-size: 0.75rem;
  line-height: 1;
}
.c-cardStyle__more {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-bgMain);
  font-size: 1.25rem;
  line-height: 1;
}

/* c-modal */
.c-modal {
  display: none;
  position: fixed;
  inset: 0;
  padding: 1.25rem;
  z-index: var(--zIndex-modal);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-modal.isOpen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.c-modal__body {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--color-white);
  padding: 3rem 1.25rem 1.5rem;
}
.c-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.625rem;
  height: 1.625rem;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  color: var(--color-bgMain);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.c-modal__ttl {
  font-size: 1.125rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
  color: var(--color-bgMain);
  margin-bottom: 1.5rem;
}
.c-modal__spec {
  margin-top: 1.5rem;
}
.c-modal__note {
  width: 100%;
  margin-top: 0.625rem;
  font-size: 0.6875rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1;
  color: #4d4d4d;
  text-align: right;
}

/* c-modalGallery */
.c-modalGallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
}
.c-modalGallery__main {
  width: 100%;
}
.c-modalGallery__slide {
  aspect-ratio: 620/400;
}
.c-modalGallery__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-modalGallery__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem 0.25rem;
  width: 100%;
}
.c-modalGallery__thumb {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1/1;
  padding: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-modalGallery__thumb.isActive {
  opacity: 1;
}
.c-modalGallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* c-specTable */
.c-specTable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border-top: 0.0625rem solid var(--color-border);
}
.c-specTable__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  border-bottom: 0.0625rem solid var(--color-border);
}
.c-specTable__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.625rem 0.875rem;
  background-color: var(--color-bgBase);
  font-size: 0.8125rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  text-align: center;
}
.c-specTable__value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.7;
}

/* c-ttlNum */
.c-ttlNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  background-color: var(--color-bgMain);
}
.c-ttlNum__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 1;
  color: var(--color-accent01);
}
.c-ttlNum__divider {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background-color: var(--color-white);
  opacity: 0.4;
}
.c-ttlNum__label {
  font-size: 1.0625rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 1;
  color: var(--color-textCream);
}

/* c-listCheck */
.c-listCheck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.c-listCheck__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.c-listCheck__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--color-accent03);
}
.c-listCheck__text {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 1.5;
  color: var(--color-bgMain);
}
.c-listCheck__text u {
  text-decoration-color: var(--color-accent03);
  text-underline-offset: 2px;
}

/* c-tab */
.c-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-filter: drop-shadow(0 0.25rem 2px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0 0.25rem 2px rgba(0, 0, 0, 0.08));
}
.c-tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.c-tab__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 2.75rem;
  padding: 1.125rem 1rem;
  border: none;
  border-radius: 0.25rem 0.25rem 0 0;
  background-color: var(--color-accent03);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 1.1;
  cursor: pointer;
}
.c-tab__btn.isActive {
  background-color: var(--color-white);
  color: var(--color-accent03);
}
.c-tab__panel {
  display: none;
  width: 100%;
  padding: 1.25rem 1rem;
  background-color: var(--color-white);
}
.c-tab__panel.isActive {
  display: block;
}

/* c-accordion */
.c-accordion {
  width: 100%;
}
.c-accordion__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  background-color: var(--color-white);
}
.c-accordion__qMark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent03);
  line-height: 1;
}
.c-accordion__qText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.5;
}
.c-accordion__toggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}
.c-accordion__toggleLine {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: var(--color-accent03);
  -webkit-transition: rotate 0.2s ease-in-out;
  transition: rotate 0.2s ease-in-out;
}
.c-accordion__toggleLine--v {
  width: 2px;
  height: 0.875rem;
}
.c-accordion__toggleLine--h {
  width: 0.875rem;
  height: 2px;
}
.c-accordion.isOpen .c-accordion__toggleLine--v {
  rotate: 90deg;
  opacity: 0;
}
.c-accordion__a {
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem;
}
.c-accordion.isOpen .c-accordion__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-accordion__aMark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent03);
  line-height: 1;
}
.c-accordion__aText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.7;
}

/* c-btnTel */
.c-btnTel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 2.875rem;
  border-radius: 1.875rem;
  background-color: var(--color-bgMain);
}

.c-btnTel__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.75rem;
  height: 1.375rem;
}
.c-btnTel__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-btnTel__num {
  font-size: 1.5rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-white);
  line-height: 1;
}

/* p-mv */
.p-mv {
  position: relative;
  height: 37.9375rem;
  overflow: hidden;
  color: var(--color-white);
}
.p-mv__swiper {
  position: absolute;
  inset: 0;
}
.p-mv__slide img {
  display: block;
  width: 100%;
  height: 37.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.4375rem;
  z-index: 2;
  width: 3.1875rem;
  height: 14.8125rem;
}
.p-mv__badge img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-mv__gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 15.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(74, 59, 46, 0)), color-stop(50%, rgba(74, 59, 46, 0.7)), to(var(--color-bgMain)));
  background: linear-gradient(to bottom, rgba(74, 59, 46, 0) 0%, rgba(74, 59, 46, 0.7) 50%, var(--color-bgMain) 100%);
  pointer-events: none;
}
.p-mv__copy {
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  z-index: 2;
  width: 23.125rem;
  max-width: calc(100% - 0.625rem);
}
.p-mv__copy img {
  display: block;
  width: 100%;
  height: auto;
}

/* p-benefit */
.p-benefit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 1rem;
  background-color: var(--color-bgMain);
}
.p-benefit__frame {
  width: 100%;
  padding: 0.125rem;
  border: 2px solid var(--color-bgBase);
}
.p-benefit__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0.625rem;
  background-color: var(--color-bgBase);
  background-image: url("../images/benefit_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-benefit__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  color: var(--color-bgMain);
  text-align: center;
  line-height: 1;
}
.p-benefit__ttlLead {
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
}
.p-benefit__ttlMain {
  font-size: 1.5rem;
  font-weight: var(--fontWeight-semiBold);
}
.p-benefit__ttlAccent {
  color: var(--color-accent02);
}
.p-benefit__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-filter: drop-shadow(0 0 0.3125rem rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 0 0.3125rem rgba(0, 0, 0, 0.3));
}
.p-benefit__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-benefit__col--flex {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.p-benefit__col--fixed {
  width: 11.1875rem;
}
.p-benefit__ribbon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 0.375rem 0;
  background: -webkit-gradient(linear, right top, left top, from(#8e1b22), color-stop(50%, var(--color-accent02)), to(#8e1b22));
  background: linear-gradient(to left, #8e1b22 0%, var(--color-accent02) 50%, #8e1b22 100%);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1;
  border-right: 1px solid #fff;
}
.p-benefit__colBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.75rem 0.625rem 0.625rem;
  background-color: var(--color-white);
}
.p-benefit__col--flex .p-benefit__colBody {
  border-right: 1px solid var(--color-border);
}
.p-benefit__icon {
  width: 7.125rem;
  height: 6.75rem;
}
.p-benefit__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-benefit__iconList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}
.p-benefit__iconRow {
  width: 100%;
  height: 2.75rem;
}
.p-benefit__iconRow img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-benefit__iconDivider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}
.p-benefit__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  width: 100%;
  padding: 0.625rem 0 0.25rem;
  border-radius: 2px;
  background-color: var(--color-accent03);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1;
}
.p-benefit__btnIcon {
  width: 0.875rem;
  height: 0.875rem;
}
.p-benefit__subsidy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.p-benefit__subsidyLabelRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0 0.625rem;
}
.p-benefit__subsidyLabelLine {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: var(--color-accent03);
  opacity: 0.5;
}
.p-benefit__subsidyLabel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent03);
  white-space: nowrap;
}
.p-benefit__subsidyMain {
  padding-bottom: 1rem;
  color: var(--color-bgMain);
  font-size: 1rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 1.3;
  text-align: center;
}
.p-benefit__subsidyMain strong {
  color: var(--color-accent02);
  font-size: 1.75rem;
  font-weight: var(--fontWeight-semiBold);
}
.p-benefit__subsidyMain em {
  font-style: normal;
  color: var(--color-accent03);
}
.p-benefit__subsidyMain small {
  font-size: 0.625rem;
}
.p-benefit__subsidyDivider {
  width: calc(100% - 1.25rem);
  height: 1px;
  background-color: var(--color-accent03);
}
.p-benefit__note {
  font-size: 0.6875rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.3;
  color: #4d4d4d;
  margin-top: 0.5rem;
}

/* p-problem */
.p-problem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  background: url(../images/problem_bg.jpg) no-repeat center center/cover;
}
.p-problem__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.p-problem__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}

/* p-life */
.p-life {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  color: var(--color-textCream);
  background: #6d553f url(../images/life_bg.jpg) no-repeat center center/cover;
  padding: 2.5rem 1.25rem;
}
.p-life__intro {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.p-life__introLead {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  color: #f2e3c4;
  text-align: center;
  padding-bottom: 0.75rem;
  position: relative;
}
.p-life__introLead::before {
  content: "";
  width: 8.125rem;
  height: 0.625rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/life_lead_deco.svg) no-repeat bottom center/contain;
}
.p-life__introTtl {
  font-size: 1.5rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: var(--lineHeight-base);
  letter-spacing: 0.02em;
  color: var(--color-textCream);
  text-align: center;
}
.p-life__introTtl strong,
.p-life__introTtl .p-life__introBig {
  display: block;
  font-size: 2rem;
}
.p-life__introTtl .p-life__introColor {
  color: var(--color-accent01);
}
.p-life__introDivider {
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-textCream);
  margin-top: 0.5rem;
}
.p-life__block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.p-life__banner {
  width: 100%;
  height: 11.25rem;
}
.p-life__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-life__stripe {
  width: 100%;
  height: 0.5rem;
  background-color: var(--color-accent01);
}
.p-life__card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1rem 2.5rem;
  background-color: #fcfaf6;
  color: var(--color-bgMain);
}
.p-life__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  width: 100%;
  min-height: 2.75rem;
  text-align: center;
}
.p-life__num {
  font-size: 1.25rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1;
}
.p-life__heading {
  font-size: 1.375rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.02em;
  color: var(--color-bgMain);
  line-height: 1.5;
}
.p-life__headDivider {
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-accent03);
}
.p-life__lead {
  width: 100%;
  padding: 0 0.625rem;
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
}
.p-life__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  margin-top: 1.25rem;
}
.p-life__campaign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.p-life__campaignHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-life__campaignTtl {
  width: 100%;
  padding: 0.75rem 0 0.625rem;
  border-top: 1px solid var(--color-accent02);
  border-bottom: 1px solid var(--color-accent02);
  color: var(--color-accent02);
  font-size: 1.25rem;
  font-weight: var(--fontWeight-semiBold);
  text-align: center;
  line-height: var(--lineHeight-base);
}
.p-life__campaignArrow {
  width: 1rem;
  height: 0.625rem;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.625rem solid var(--color-accent02);
}
.p-life__campaignArrow--example {
  border-top-color: var(--color-accent03);
}
.p-life__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.p-life__product {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
.p-life__productImg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 6.25rem;
  overflow: hidden;
}
.p-life__productImg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-life__productName {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  text-align: center;
}
.p-life__note {
  width: 100%;
  padding: 1rem 0;
  border-top: 1px dashed var(--color-bgMain);
  border-bottom: 1px dashed var(--color-bgMain);
  font-size: 0.8125rem;
  font-weight: var(--fontWeight-semiBold);
  text-align: center;
  line-height: var(--lineHeight-base);
  margin-top: 1rem;
}
.p-life__upsell {
  width: 100%;
  padding: 0.25rem;
  border: 2px solid var(--color-white);
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
  margin-top: 1rem;
}
.p-life__upsellInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding: 1.5rem 1rem 1rem;
  background-color: var(--color-white);
}
.p-life__upsellLogo {
  width: 8.9375rem;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-life__upsellCopy {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  text-align: center;
  line-height: 1.2;
}
.p-life__upsellCopy strong {
  display: block;
  color: var(--color-accent02);
  font-size: 1.125rem;
}
.p-life__upsellCopy .p-life__upsellCopyNumber {
  font-size: 1.75rem;
}
.p-life__upsellCopy .p-life__upsellCopyKeyword {
  font-size: 1.125rem;
  font-weight: var(--fontWeight-semiBold);
}
.p-life__upsellCta {
  width: 100%;
  margin-top: 0.75rem;
}
.p-life__ctaArea {
  margin-top: 2.5rem;
  width: 100%;
}
.p-life__caseArea {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.p-life__caseHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.p-life__caseHeadTtl {
  width: 100%;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-accent03);
  border-bottom: 1px solid var(--color-accent03);
  color: var(--color-accent03);
  font-size: 1.25rem;
  font-weight: var(--fontWeight-semiBold);
  text-align: center;
}
.p-life__caseList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.p-life__caseDivider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}
.p-life__subsidy {
  width: 100%;
  padding: 0.25rem;
  border: 2px solid var(--color-white);
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
  margin-top: 1.25rem;
}
.p-life__subsidyInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.25rem 1rem;
  background-color: var(--color-white);
}
.p-life__subsidyLead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.p-life__subsidyLabel {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent03);
}
.p-life__subsidyTtl {
  font-size: 1.25rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: var(--lineHeight-base);
}
.p-life__subsidyTtl em {
  font-style: normal;
  color: var(--color-accent03);
}
.p-life__subsidyMeta {
  font-size: 0.75rem;
  line-height: var(--lineHeight-base);
  margin-top: 0.5rem;
}
.p-life__subsidyText {
  font-size: 0.9375rem;
  line-height: 1.7;
  padding-top: 1.125rem;
  border-top: 1px solid var(--color-accent03);
  margin-top: 0.75rem;
}
.p-life__subsidyText em {
  font-style: normal;
  color: var(--color-accent02);
}
.p-life__subsidyNote {
  font-size: 0.75rem;
  line-height: var(--lineHeight-base);
}
.p-life__subsidyCta {
  width: 100%;
  margin-top: 1.375rem;
}
.p-life__subsidyDesc {
  padding-bottom: 1.25rem;
  margin-top: 1.375rem;
  border-bottom: 1px solid var(--color-accent03);
}
.p-life__styleLead {
  width: 100%;
  font-size: 0.875rem;
  line-height: var(--lineHeight-base);
}
.p-life__styleList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.p-life__banner--dark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  width: 100%;
  height: auto;
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--color-accent01);
  border-bottom: 1px solid var(--color-accent01);
}
.p-life__bannerIcon {
  width: 1.5rem;
}
.p-life__bannerIcon img, .p-life__bannerIcon svg {
  width: 100%;
  height: auto;
}
.p-life__bannerTtl {
  font-size: 1.125rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-textCream);
  text-align: center;
  line-height: var(--lineHeight-base);
}
.p-life__bannerText {
  font-size: 0.875rem;
  color: var(--color-textCream);
  text-align: center;
}

/* p-product */
.p-product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  padding: 2.5rem 1.25rem;
  background-color: #e7e2d6;
}
.p-product__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  width: 100%;
}
.p-product__ttlWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.p-product__eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.p-product__eyebrow::before {
  content: "";
  width: 11.25rem;
  height: 0.75rem;
  background: url("../images/product_lead_deco.svg") no-repeat bottom center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-product__eyebrowText {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent03);
}
.p-product__ttl {
  font-size: 1.5rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  text-align: center;
  line-height: 1.5;
}
.p-product__ttlSub {
  display: block;
  font-size: 2rem;
}
.p-product__ttlDivider {
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-accent03);
  margin-top: 1.25rem;
}
.p-product__note {
  width: 20.9375rem;
  max-width: 100%;
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  line-height: 1.5;
  color: var(--color-bgMain);
  text-align: center;
}
.p-product__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.p-product__navRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.p-product__navBtn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  height: 4.375rem;
  padding: 0 1rem;
  border: 1px solid var(--color-bgMain);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.1;
  text-align: center;
}
.p-product__navBtn--wide {
  width: 100%;
  height: 3.75rem;
}
.p-product__navArrow {
  width: 0;
  height: 0;
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 0.3125rem solid var(--color-bgMain);
}
.p-product__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
.p-product__groupHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.p-product__groupEyebrow {
  font-size: 0.75rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-accent03);
}
.p-product__groupTtl {
  font-size: 1.75rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
}
.p-product__groupDivider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}
.p-product__img {
  width: 100%;
  height: 13rem;
  margin-bottom: 0.625rem;
  background-color: #d9d9d9;
}
.p-product__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.3125rem 0.5rem;
  margin-bottom: 0.625rem;
  border: 1px solid var(--color-accent03);
  font-size: 0.8125rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent03);
}
.p-product__name {
  font-size: 1.375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.3;
}
.p-product__spec {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.5;
}
.p-product__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.625rem 0;
  background-color: var(--color-border);
}
.p-product__priceRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.p-product__discount {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: var(--color-accent02);
  color: var(--color-white);
  line-height: 1;
}
.p-product__discountNum {
  font-size: 1.5rem;
  font-weight: var(--fontWeight-semiBold);
}
.p-product__discountNum small {
  font-size: 0.875rem;
}
.p-product__discountLabel {
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
}
.p-product__priceList {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
.p-product__priceOrig {
  font-size: 0.8125rem;
  color: var(--color-bgMain);
}
.p-product__priceOrig del {
  text-decoration: line-through;
}
.p-product__priceFair {
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent02);
}
.p-product__priceNote {
  margin-top: 0.625rem;
  font-size: 0.6875rem;
  font-weight: var(--fontWeight-medium);
  color: #4d4d4d;
}
.p-product__footNote {
  width: 100%;
  font-size: 0.75rem;
  font-weight: var(--fontWeight-medium);
  color: #4d4d4d;
  line-height: 1.3;
}
.p-product__subsidy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
}
.p-product__subsidyBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
}
.p-product__subsidyTtl {
  font-size: 1.1875rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1;
}
.p-product__subsidyDivider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}
.p-product__subsidyMax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 0.625rem;
  background-color: rgba(231, 226, 214, 0.5);
}
.p-product__subsidyMaxLabel {
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent02);
}
.p-product__subsidyMaxNum {
  font-size: 2rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent02);
  line-height: 1;
}
.p-product__subsidyMaxNum small {
  font-size: 0.9375rem;
}
.p-product__subsidyBreakdown {
  width: 100%;
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.8;
}
.p-product__subsidyLink {
  width: 100%;
  font-size: 0.8125rem;
  font-weight: var(--fontWeight-medium);
  color: #071376;
  line-height: 1.5;
}

/* p-plan */
.p-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  background: url("../images/plan_bg.jpg") no-repeat center/cover;
}

.p-plan__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.p-plan__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.p-plan__ttl img {
  display: block;
  width: 12.4375rem;
  height: auto;
}

.p-plan__lead {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  text-align: center;
  line-height: 1.5;
}
.p-plan__lead em {
  font-style: normal;
  color: var(--color-accent02);
}

.p-plan__divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-bgMain);
  opacity: 0.3;
}

.p-plan__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.p-plan__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
}
.p-plan__item:not(:last-child) {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.p-plan__itemTtl {
  font-size: 1.375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.p-plan__card {
  width: 100%;
  -webkit-filter: drop-shadow(0 0.25rem 2px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0 0.25rem 2px rgba(0, 0, 0, 0.08));
}
.p-plan__card img {
  display: block;
  width: 100%;
  height: auto;
}

.p-plan__note {
  width: 100%;
  font-size: 0.75rem;
  font-weight: var(--fontWeight-medium);
  color: #4d4d4d;
  line-height: 1.3;
}

.p-plan__line {
  display: block;
  width: 100%;
  -webkit-filter: drop-shadow(0 0.25rem 2px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0 0.25rem 2px rgba(0, 0, 0, 0.08));
}
.p-plan__line img {
  display: block;
  width: 100%;
  height: auto;
}

/* p-result */
.p-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding: 2.5rem 1.25rem 3.75rem;
  background-color: #fafafa;
}

.p-result__ttl {
  font-family: var(--fontFamily-base);
  font-size: 1.5rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-black);
  text-align: center;
  line-height: 1.5;
}
.p-result__ttl strong {
  font-size: 1.875rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-emphasis);
}

.p-result__faqList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.p-result__faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.p-result__faqHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-bottom: -2rem;
  z-index: 2;
}

.p-result__faqQ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  white-space: nowrap;
}

.p-result__faqIcon {
  width: 5.3125rem;
  height: 5rem;
}
.p-result__faqIcon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-result__faqCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 3.5rem 1.25rem 2rem;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.p-result__faqA {
  font-size: 1.25rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  text-align: center;
  line-height: 1.7;
  text-decoration: underline;
  text-decoration-color: var(--color-accent01);
  text-decoration-thickness: 10%;
}
.p-result__faqA small {
  font-size: 0.8125rem;
  text-decoration: none;
}

.p-result__faqText {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.7;
  text-align: left;
}

.p-result__faqNote {
  font-size: 0.6875rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.7;
}

.p-result__ttl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.p-result__ttl2Text {
  font-size: 1.5rem;
  font-weight: var(--fontWeight-semiBold);
  letter-spacing: 0.02em;
  color: var(--color-bgMain);
}

.p-result__ttl2Divider {
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-accent03);
}

.p-result__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.p-result__statHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-result__statNum {
  font-size: 1.5rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-accent03);
  line-height: 1;
}

.p-result__statLabel {
  font-size: 1rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.5;
}

.p-result__stat01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
}

.p-result__stat01Img {
  width: 13.25rem;
  max-width: 100%;
}
.p-result__stat01Img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-result__stat01List {
  font-size: 0.8125rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.6;
}

.p-result__statRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.p-result__statCol {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-result__statImg {
  width: 100%;
  max-width: 9.375rem;
}
.p-result__statImg img {
  display: block;
  width: 100%;
  height: auto;
}

.p-result__statNote {
  width: 100%;
  font-size: 0.6875rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.7;
}

.p-result__voiceList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.p-result__voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1.5rem 1.25rem;
  background-color: #f3f2ee;
}

.p-result__voiceHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
}

.p-result__voiceAvatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4.625rem;
  height: 4.625rem;
  border-radius: 50%;
  overflow: hidden;
}
.p-result__voiceAvatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-result__voiceTtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.125rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.7;
}

.p-result__voiceText {
  width: 100%;
  font-size: 0.875rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.7;
}

/* p-faq */
.p-faq {
  background: url("../images/faq_bg.jpg") no-repeat center/cover;
}
.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 2.5rem;
}

/* p-event */
.p-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 1.25rem;
  background-color: #e8e5de;
}

.p-event__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.p-event__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
}

.p-event__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.p-event__headText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-event__lead {
  font-size: 1.0625rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.5;
}

.p-event__ttl {
  font-size: 1.375rem;
  font-weight: var(--fontWeight-bold);
  color: var(--color-bgMain);
  line-height: 1.5;
}

.p-event__divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}

.p-event__text {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.7;
}

.p-event__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}

.p-event__metaRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
}

.p-event__metaIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}

.p-event__metaLabel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  white-space: nowrap;
}

.p-event__metaLabelIcon {
  width: 1.25rem;
  height: 1.25rem;
}

.p-event__metaValue {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.5;
}

.p-event__venues {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.4);
}

.p-event__venue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.p-event__venue:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.p-event__venueName {
  font-size: 1rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.5;
}

.p-event__venueRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
}

.p-event__venueLabel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.125rem;
  padding: 2px 0.25rem;
  background-color: var(--color-white);
  font-size: 0.75rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
}

.p-event__venueValue {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.875rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-bgMain);
  line-height: 1.5;
}

.p-event__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
  width: 100%;
  padding: 1.25rem 0;
  border-radius: 2px;
  background-color: var(--color-bgMain);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: var(--fontWeight-semiBold);
  -webkit-box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.25rem 2px rgba(0, 0, 0, 0.08);
}

/* p-shop */
.p-shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 1.25rem;
  background-color: #fafafa;
}

.p-shop__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.p-shop__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.p-shop__item:not(:last-child) {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.p-shop__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.p-shop__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.p-shop__name {
  font-size: 1.5rem;
  font-weight: var(--fontWeight-bold);
  color: var(--color-bgMain);
  line-height: 1.5;
}

.p-shop__addr {
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.5;
}

.p-shop__hours {
  font-size: 0.9375rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  line-height: 1.5;
}

.p-shop__btnArea {
  width: 100%;
  padding: 0 2rem;
}

.p-shop__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.p-shop__groupHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.p-shop__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.p-shop__contactLabel {
  font-size: 0.875rem;
  font-weight: var(--fontWeight-semiBold);
  color: var(--color-bgMain);
  text-align: center;
}

/* u-align */
.u-align--center {
  text-align: center !important;
}
.u-align--right {
  text-align: right !important;
}

/* u-txt */
/* u-display */
@media screen and (min-width: 1120px) {
  .u-display--pcNone {
    display: none !important;
  }
}
.u-display--spNone {
  display: none;
}
@media screen and (min-width: 1120px) {
  .u-display--spNone {
    display: block !important;
  }
}
.u-display--inlineBlock {
  display: inline-block;
}