@layer reset, base, vendor, layout, base-element, component, component-block, project, utility; /*!
 * @acab/reset.css
 */
@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  :where([hidden]:not([hidden="until-found"])) {
    display: none !important;
  }
  :where(html) {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
  }
  @supports not (min-block-size: 100dvb) {
    :where(html) {
      block-size: 100%;
    }
  }
  :where(body) {
    font-family: system-ui, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  :where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
  }
  :where(textarea) {
    resize: vertical;
    resize: block;
  }
  :where(button, label, select, summary, [role="button"], [role="option"]) {
    cursor: pointer;
  }
  :where(:disabled) {
    cursor: not-allowed;
  }
  :where(label:has(> input:disabled), label:has(+ input:disabled)) {
    cursor: not-allowed;
  }
  :where(button) {
    border-style: solid;
  }
  :where(a) {
    text-underline-offset: 0.2ex;
  }
  :where(ul, ol) {
    list-style: none;
  }
  :where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: block;
  }
  :where(img, picture, svg) {
    max-width: 100%;
  }
  :where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word;
  }
  :where(h1, h2, h3) {
    line-height: calc(1em + 0.5rem);
  }
  :where(hr) {
    block-size: 0;
    overflow: visible;
    color: inherit;
    border: none;
    border-block-start: 1px solid;
  }
  :where(:focus-visible) {
    outline: 2px solid var(--focus-color, Highlight);
    outline-offset: 2px;
  }
  :where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    border: 0 !important;
    clip-path: inset(50%) !important;
  }
}
:root {
  --header-height-sp: calc(17.6vw);
  --header-height-pc: 100px;
  --header-height-pc-scrolled: 80px;
  --black: #2a2a2a;
  --white: #fff;
  --color-01-brand: #245c30;
  --color-02-sub-green: #c2d3bf;
  --color-03-sub-green: #edf4ee;
  --color-04-sub-green: #f1f6f3;
  --color-05-black: #000;
  --color-06-white: #fff;
  --color-07-accent: #ce422c;
  --color-08-gray: #e8e8e8;
  --color-09-link: #00e;
  --color-10-red: #cb4445;
  --font-family-primary: "Shippori Mincho", serif;
  --line-height-xxs: 1;
  --line-height-xs: 1.2;
  --line-height-s: 1.4;
  --line-height-m: 1.5;
  --line-height-l: 1.6;
  --line-height-xl: 1.8;
  --letter-spacing-xxxl: -0.08em;
  --letter-spacing-xxl: -0.06em;
  --letter-spacing-xl: -0.04em;
  --letter-spacing-l: -0.02em;
  --letter-spacing-m: 0em;
  --letter-spacing-wide: 0.02em;
  --leading-trim: calc((1em - 1lh) / 2);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-out-expo: cubic-bezier(0.01, 0.35, 0.03, 0.95);
  --scrollbar-width: calc(100vw - 100%);
}
@layer base {
  html {
    height: -webkit-fill-available;
    font-size: 62.5%;
    scroll-padding-top: var(--header-height-sp);
    scroll-behavior: smooth;
  }
  html:has(dialog[open]) {
    overflow: hidden;
  }
  body {
    padding-top: var(--header-height-sp);
    font-family: var(--font-family-primary);
    font-size: 1.6rem;
    font-style: normal;
    font-optical-sizing: auto;
    font-feature-settings:
      "palt" on,
      "pkna" on;
    font-variant-east-asian: proportional-width;
    line-height: var(--line-height-xl);
    color: var(--black);
    letter-spacing: var(--letter-spacing-m);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    overflow-x: hidden;
  }
  :where(a) {
    color: inherit;
    text-decoration: none;
  }
  :where(ol),
  :where(ul),
  :where(li),
  :where(dl),
  :where(dt),
  :where(dd) {
    list-style: "";
  }
  :where(em),
  :where(i) {
    font-style: normal;
  }
  :where(h1),
  :where(h2),
  :where(h3),
  :where(h4),
  :where(h5),
  :where(h6) {
    font-weight: normal;
  }
  :where(p) {
    font-weight: normal;
  }
  :where(em),
  :where(strong) {
    font-style: normal;
    font-weight: normal;
  }
  :where(span) {
    font-weight: inherit;
  }
  :where(img) {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  :where(button) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    border-radius: 0;
  }
  :where(input),
  :where(select) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(0, 0, 0, 0);
    border: none;
  }
  :where(textarea) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(0, 0, 0, 0);
    border: none;
  }
  ::-moz-placeholder {
    color: #b1b1b1;
  }
  ::placeholder {
    color: #b1b1b1;
  }
  .c-icon-svg {
    display: none;
  }
}
@layer vendor {
  .splide__container {
    box-sizing: border-box;
    position: relative;
  }
  .splide__list {
    backface-visibility: hidden;
    display: flex;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }
  .splide.is-initialized:not(.is-active) .splide__list {
    display: block;
  }
  .splide__pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    pointer-events: none;
  }
  .splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto;
  }
  .splide:not(.is-overflow) .splide__pagination {
    display: none;
  }
  .splide__progress__bar {
    width: 0;
  }
  .splide {
    position: relative;
    visibility: hidden;
  }
  .splide.is-initialized,
  .splide.is-rendered {
    visibility: visible;
  }
  .splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative;
  }
  .splide__slide img {
    vertical-align: bottom;
  }
  .splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
  }
  .splide__sr {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .splide__toggle.is-active .splide__toggle__play,
  .splide__toggle__pause {
    display: none;
  }
  .splide__toggle.is-active .splide__toggle__pause {
    display: inline;
  }
  .splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
  }
  @keyframes splide-loading {
    0% {
      transform: rotate(0);
    }
    to {
      transform: rotate(1turn);
    }
  }
  .splide__track--draggable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  .splide__track--fade > .splide__list > .splide__slide {
    margin: 0 !important;
    opacity: 0;
    z-index: 0;
  }
  .splide__track--fade > .splide__list > .splide__slide.is-active {
    opacity: 1;
    z-index: 1;
  }
  .splide--rtl {
    direction: rtl;
  }
  .splide__track--ttb > .splide__list {
    display: block;
  }
  .splide__arrow {
    align-items: center;
    background: #ccc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 2em;
    justify-content: center;
    opacity: 0.7;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1;
  }
  .splide__arrow svg {
    fill: #000;
    height: 1.2em;
    width: 1.2em;
  }
  .splide__arrow:hover:not(:disabled) {
    opacity: 0.9;
  }
  .splide__arrow:disabled {
    opacity: 0.3;
  }
  .splide__arrow:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px;
  }
  .splide__arrow--prev {
    left: 1em;
  }
  .splide__arrow--prev svg {
    transform: scaleX(-1);
  }
  .splide__arrow--next {
    right: 1em;
  }
  .splide.is-focus-in .splide__arrow:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px;
  }
  .splide__pagination {
    bottom: 0.5em;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .splide__pagination__page {
    background: #ccc;
    border: 0;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    margin: 3px;
    opacity: 0.7;
    padding: 0;
    position: relative;
    transition: transform 0.2s linear;
    width: 8px;
  }
  .splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.4);
    z-index: 1;
  }
  .splide__pagination__page:hover {
    cursor: pointer;
    opacity: 0.9;
  }
  .splide__pagination__page:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px;
  }
  .splide.is-focus-in .splide__pagination__page:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px;
  }
  .splide__progress__bar {
    background: #ccc;
    height: 3px;
  }
  .splide__slide {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .splide__slide:focus {
    outline: 0;
  }
  @supports (outline-offset: -3px) {
    .splide__slide:focus-visible {
      outline: 3px solid #0bf;
      outline-offset: -3px;
    }
  }
  @supports (outline-offset: -3px) {
    .splide.is-focus-in .splide__slide:focus {
      outline: 3px solid #0bf;
      outline-offset: -3px;
    }
  }
  .splide__toggle {
    cursor: pointer;
  }
  .splide__toggle:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px;
  }
  .splide.is-focus-in .splide__toggle:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px;
  }
  .splide__track--nav > .splide__list > .splide__slide {
    border: 3px solid transparent;
    cursor: pointer;
  }
  .splide__track--nav > .splide__list > .splide__slide.is-active {
    border: 3px solid #000;
  }
  .splide__arrows--rtl .splide__arrow--prev {
    left: auto;
    right: 1em;
  }
  .splide__arrows--rtl .splide__arrow--prev svg {
    transform: scaleX(1);
  }
  .splide__arrows--rtl .splide__arrow--next {
    left: 1em;
    right: auto;
  }
  .splide__arrows--rtl .splide__arrow--next svg {
    transform: scaleX(-1);
  }
  .splide__arrows--ttb .splide__arrow {
    left: 50%;
    transform: translate(-50%);
  }
  .splide__arrows--ttb .splide__arrow--prev {
    top: 1em;
  }
  .splide__arrows--ttb .splide__arrow--prev svg {
    transform: rotate(-90deg);
  }
  .splide__arrows--ttb .splide__arrow--next {
    bottom: 1em;
    top: auto;
  }
  .splide__arrows--ttb .splide__arrow--next svg {
    transform: rotate(90deg);
  }
  .splide__pagination--ttb {
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: auto;
    padding: 1em 0;
    right: 0.5em;
    top: 0;
  }
}
@layer layout {
  .l-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-top: calc(2.6667vw) solid var(--color-01-brand);
    background: url("../images/common/bg_header.png") no-repeat 0 0;
    background-size: 100% auto;
    filter: drop-shadow(0 calc(1.6vw) calc(1.0667vw) rgba(177, 177, 177, 0.1));
    height: calc(30.9333vw);
    z-index: 20;
  }
  .l-header--fix {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    height: calc(17.6vw);
    background: url("../images/common/bg_header_fix.png") no-repeat 0 0;
    background-size: 100% auto;
    transition: transform 0.3s;
  }
  .l-header--fix.is-active {
    transform: translateY(0);
  }
  .l-header__inner {
    padding: calc(1.6vw) calc(5.6vw) 0 calc(5.0667vw);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .l-header__logo a {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: calc(1.8667vw);
    column-gap: calc(1.8667vw);
  }
  .l-header__logo a img {
    width: calc(16.8vw);
  }
  .l-header__logo-text {
    color: var(--color-01-brand);
    font-weight: 500;
    font-size: calc(4vw);
    line-height: 1.3333333333;
  }
  .l-header__logo-text span {
    color: var(--color-07-accent);
  }
  .l-header__tab {
    display: none;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__nav > li {
    font-size: 16px;
    color: var(--color-01-brand);
    font-weight: 700;
    display: flex;
    position: relative;
    height: 100%;
  }
  .l-header__nav > li:not(:last-child)::after {
    content: "/";
    margin: 0 16px;
  }
  .l-header__nav > li:has(ul):hover ul {
    opacity: 1;
    display: block;
  }
  @starting-style {
    .l-header__nav > li:has(ul):hover ul {
      opacity: 0;
    }
  }
  .l-header__nav > li > a {
    display: block;
    position: relative;
    padding: 0 0 30px;
  }
  .l-header__nav > li > a span {
    position: relative;
  }
  .l-header__nav > li > a.current span::after {
    content: "";
    display: block;
    width: 24px;
    position: absolute;
    height: 1px;
    background: var(--color-07-accent);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
  }
  .l-header__nav > li ul {
    position: absolute;
    top: 100%;
    opacity: 0;
    display: none;
    left: calc(50% - 20px);
    transform: translateX(-50%);
    width: 144px;
    background: #fffff8;
    border-radius: 0 0 4px 4px;
    padding: 10px 16px 16px;
    transition:
      opacity 400ms,
      display 400ms;
    transition-behavior: allow-discrete;
  }
  .l-header__nav > li ul li a {
    border-bottom: 1px solid #bdbdb9;
    display: block;
    padding: 10px 0;
    color: var(--black);
    font-size: 13px;
    line-height: 1.5384615385;
    transition:
      400ms color,
      400ms border-color;
  }
  .l-header__nav > li ul li a:hover {
    border-color: #ce422c;
    color: #ce422c;
  }
  .l-header__menu {
    width: calc(9.0667vw);
    height: calc(9.0667vw);
    display: block;
    position: relative;
  }
  .l-header__menu.is-active > span:nth-child(1) {
    transform: rotate(45deg);
    top: calc(4.2667vw);
  }
  .l-header__menu.is-active > span:nth-child(2) {
    opacity: 0;
  }
  .l-header__menu.is-active > span:nth-child(3) {
    transform: rotate(135deg);
    top: calc(4.2667vw);
  }
  .l-header__menu > span {
    position: absolute;
    left: 0;
    top: calc(4.2667vw);
    width: 100%;
    transition:
      transform 0.3s,
      opacity 0.3s,
      top 0.3s;
  }
  .l-header__menu > span span {
    display: block;
    width: 100%;
    height: calc(0.5333vw);
    background: var(--color-01-brand);
    border-radius: calc(1.3333vw);
  }
  .l-header__menu > span:nth-child(1) {
    transform: translateY(calc(-2.6667vw));
    display: flex;
    justify-content: space-between;
  }
  .l-header__menu > span:nth-child(1) span {
    width: calc(2.1333vw);
  }
  .l-header__menu > span:nth-child(1)::after {
    display: block;
    content: "";
    height: calc(0.5333vw);
    width: calc(6.1333vw);
    background: var(--color-01-brand);
    border-radius: calc(1.3333vw);
  }
  .l-header__menu > span:nth-child(3) {
    transform: translateY(calc(2.6667vw));
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .l-header__menu > span:nth-child(3) span {
    width: calc(2.1333vw);
  }
  .l-header__menu > span:nth-child(3)::after {
    display: block;
    content: "";
    height: calc(0.5333vw);
    width: calc(6.1333vw);
    background: var(--color-01-brand);
    border-radius: calc(1.3333vw);
  }
}
@layer layout {
  .l-footer {
    background: url("../images/common/bg_footer.png") no-repeat 0 0;
    background-size: 100% 100%;
    padding-top: calc(19.2vw);
  }
  .l-footer__inner {
    padding-bottom: calc(6.4vw);
    position: relative;
  }
  .l-footer__pagetop {
    position: absolute;
    top: calc(-15.7333vw);
    right: calc(7.2vw);
  }
  .l-footer__pagetop a {
    width: calc(10.6667vw);
    height: calc(10.6667vw);
    border: 1px solid var(--color-01-brand);
    border-radius: calc(1.0667vw);
    display: flex;
    justify-content: center;
    background: #fff;
    align-items: center;
    transition: background 0.4s;
  }
  .l-footer__pagetop a svg {
    color: var(--color-01-brand);
    width: calc(2.6667vw);
    height: calc(4.2667vw);
    transform: rotate(-90deg);
    transition: color 0.4s;
  }
  .l-footer__logo a {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    align-items: flex-start;
    -moz-column-gap: calc(1.8667vw);
    column-gap: calc(1.8667vw);
  }
  .l-footer__logo a img {
    width: calc(16.8vw);
  }
  .l-footer__logo-text {
    color: var(--color-01-brand);
    font-weight: 500;
    font-size: calc(4vw);
    line-height: 1.3333333333;
  }
  .l-footer__logo-text span {
    color: var(--color-07-accent);
  }
  .l-footer__nav {
    display: none;
  }
  .l-footer__copy {
    text-align: center;
    color: var(--color-01-brand);
    font-size: calc(2.6667vw);
  }
}
@layer layout {
  .l-page__inner {
    padding: 0 calc(5.3333vw);
  }
  .l-page__bg {
    background: url("../images/common/bg.png");
    padding: calc(21.3333vw) 0;
  }
  .l-page__bg2 {
    background: #f5fcff;
    padding: calc(21.3333vw) 0;
  }
}
@layer component {
  .c-hamberger {
    background: url("../images/common/bg_hamberger.png") no-repeat 0 100%;
    background-size: 100% auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: transform 0.3s;
    z-index: 3;
  }
  .c-hamberger.is-active {
    transform: translateY(0);
  }
  .c-hamberger__inner {
    padding: calc(32vw) calc(10.6667vw) calc(39.7333vw);
  }
  .c-hamberger__inner ul {
    margin-bottom: calc(14.1333vw);
  }
  .c-hamberger__inner ul li a {
    color: var(--color-01-brand);
  }
  .c-hamberger__logo {
    width: calc(44.8vw);
    margin: 0 auto;
  }
}
@layer component {
  .c-title {
    background: #f7f6e4 url("../images/common/bg_title.png") no-repeat 100% 0;
    background-size: auto 100%;
    height: calc(53.3333vw);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-title h1 {
    color: var(--color-01-brand);
    font-size: calc(8vw);
    font-weight: 500;
    text-align: center;
  }
}
@layer component {
  .c-title2 {
    color: var(--color-01-brand);
    text-align: center;
    font-size: calc(8vw);
    font-weight: 500;
    margin-bottom: calc(6.4vw);
    line-height: 1.4;
  }
}
@layer component {
  .c-breadcrumb {
    margin: calc(4vw) calc(5.3333vw) calc(8.5333vw);
  }
  .c-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
  }
  .c-breadcrumb ol li {
    font-weight: 500;
    font-size: calc(3.2vw);
    color: var(--color-07-accent);
  }
  .c-breadcrumb ol li:not(:first-child)::before {
    content: "/";
    color: var(--black);
    margin: 0 calc(2.1333vw);
  }
  .c-breadcrumb ol li a {
    color: var(--black);
  }
}
@layer component {
  .c-block__text p {
    font-size: calc(3.7333vw);
    font-weight: 500;
    line-height: 2.0714285714;
  }
  .c-block__text p.note {
    font-size: calc(3.4667vw);
  }
  .c-block__text p + p {
    margin-top: calc(8vw);
  }
}
@layer component {
  .c-nav {
    padding: calc(14.9333vw) 0 calc(10.6667vw);
  }
  .c-nav ul li:not(:first-child) {
    margin-top: calc(4.2667vw);
  }
}
@layer component {
  .c-link {
    display: flex;
    padding: calc(2.6667vw) 0;
    border-bottom: 1px solid var(--color-01-brand);
    font-weight: 500;
    color: #1a1a1a;
    font-size: calc(4vw);
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.4s;
  }
  .c-link:hover {
    border-color: var(--color-07-accent);
  }
  .c-link:hover svg {
    color: var(--color-07-accent);
  }
  .c-link svg {
    width: calc(2.6667vw);
    height: calc(4.2667vw);
    color: var(--color-01-brand);
    transition: color 0.4s;
  }
}
@layer component {
  .c-shop {
    background: #f6fef7;
    padding: calc(18.6667vw) calc(5.3333vw) calc(16vw);
  }
  .c-shop h3 {
    text-align: center;
    color: var(--color-01-brand);
    font-weight: 500;
    font-size: calc(8vw);
  }
  .c-shop > p {
    margin-top: calc(6.4vw);
    font-weight: 500;
    font-size: calc(3.7333vw);
    line-height: 2.0714285714;
  }
  .c-shop__banner {
    margin-top: calc(8.5333vw);
  }
  .c-shop__list {
    margin-top: calc(6.4vw);
  }
  .c-shop__list li:not(:first-child) {
    margin-top: calc(12.8vw);
  }
  .c-shop__list li dl {
    border: 2px solid #1a9567;
    border-radius: calc(1.0667vw);
    overflow: hidden;
  }
  .c-shop__list li dl dt {
    background: #f7f6e4;
    text-align: center;
    font-size: calc(4.8vw);
    font-weight: 500;
    border-bottom: 2px solid #1a9567;
  }
  .c-shop__list li dl dd iframe {
    display: block;
    aspect-ratio: 331 / 202;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .c-shop__list li p {
    margin-top: calc(5.3333vw);
    font-weight: 500;
    font-size: calc(3.7333vw);
    display: flex;
    align-content: center;
    -moz-column-gap: calc(1.0667vw);
    column-gap: calc(1.0667vw);
    line-height: 1;
  }
  .c-shop__list li p::before {
    content: "";
    display: block;
    width: calc(3.2vw);
    height: calc(3.7333vw);
    background: url("../images/shintokusanhin/icon_map.svg") no-repeat;
  }
}
@layer project {
  .p-about__intro {
    padding-bottom: 80px;
  }
  .p-about__intro .c-block__fig {
    width: calc(72vw);
    margin: calc(8.5333vw) auto 0;
  }
  .p-about__01 .c-title2 {
    font-size: calc(7.7333vw);
  }
  .p-about__01 .c-block__fig {
    margin-top: calc(8.5333vw);
  }
  .p-about__01-fig li {
    font-size: 0;
    width: calc(53.3333vw);
  }
  .p-about__01-fig li:not(:first-child) {
    margin-top: calc(4.2667vw);
  }
  .p-about__01-fig li:nth-child(2) {
    margin-left: auto;
  }
  .p-about__02 {
    padding: 80px 0;
  }
  .p-about__02 .c-block__fig {
    margin-top: calc(8.5333vw);
  }
  .p-about__02-fig {
    margin-top: calc(4.2667vw);
  }
  .p-about__02-fig li {
    width: calc(53.3333vw);
    font-size: 0;
  }
  .p-about__02-fig li:not(:first-child) {
    margin-top: calc(4.2667vw);
  }
  .p-about__02-fig li:first-child {
    margin-left: auto;
  }
  .p-about__03 .c-block__fig {
    margin-top: calc(8.5333vw);
  }
  .p-about__03 .c-block + .c-block {
    margin-top: calc(8.5333vw);
  }
}
@layer project {
  .p-tokusanhin {
    background: #fbfbf6;
  }
  .p-tokusanhin__bg:nth-child(2)::after {
    right: auto !important;
    left: 0;
    border-radius: 0 286px 286px 0 !important;
  }
  .p-tokusanhin__bg + .p-tokusanhin__bg {
    margin-top: calc(15.4667vw);
  }
  .p-tokusanhin .c-block {
    background: var(--white);
    border-radius: calc(50.1333vw) calc(50.1333vw) 0 0;
    padding: calc(26.6667vw) calc(5.3333vw) calc(14.6667vw);
  }
  .p-tokusanhin .c-block__text {
    position: relative;
    z-index: 2;
  }
  .p-tokusanhin .c-block__fig {
    margin-top: calc(6.4vw);
    position: relative;
    z-index: 2;
  }
  .p-tokusanhin__btn {
    margin-top: calc(8.5333vw);
  }
  .p-tokusanhin__float {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
    transition:
      opacity 200ms,
      display 200ms;
    transition-behavior: allow-discrete;
  }
  @starting-style {
    .p-tokusanhin__float {
      opacity: 0;
    }
  }
  .p-tokusanhin__float.is-fade {
    opacity: 0;
    display: none;
  }
}
@layer project {
  .p-shintokusanhin {
    overflow: hidden;
  }
  .p-shintokusanhin__mv {
    margin: 0 calc(-5.3333vw);
  }
  .p-shintokusanhin__bg {
    padding: calc(21.3333vw) 0;
    background: #fbfbf6;
  }
  .p-shintokusanhin__list01 li:not(:first-child) {
    margin-top: calc(8.5333vw);
  }
  .p-shintokusanhin__list01 li h2 {
    color: var(--color-01-brand);
    font-size: calc(4.2667vw);
    font-weight: 500;
    margin-top: calc(4vw);
    text-align: center;
    line-height: 1.625;
  }
  .p-shintokusanhin__list01 li p {
    font-size: calc(3.4667vw);
    margin-top: calc(2.1333vw);
    font-weight: 500;
    line-height: 1.8461538462;
  }
  .p-shintokusanhin__list02 {
    margin-top: calc(8.5333vw);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(8.5333vw) calc(2.6667vw);
  }
  .p-shintokusanhin__list02 li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
  }
  .p-shintokusanhin__list02 li h2 {
    color: var(--color-01-brand);
    font-size: calc(4.2667vw);
    font-weight: 500;
    margin-top: calc(4vw);
    text-align: center;
    line-height: 1.625;
  }
  .p-shintokusanhin__list02 li p {
    font-size: calc(3.4667vw);
    margin-top: calc(2.1333vw);
    font-weight: 500;
    line-height: 1.8461538462;
  }
  .p-shintokusanhin__list02 li p + p {
    margin-top: calc(8vw);
  }
}
@layer project {
  .p-teiban__mv {
    margin: 0 calc(-5.3333vw) calc(10.6667vw);
  }
  .p-teiban__intro {
    margin-bottom: calc(16vw);
  }
  .p-teiban__intro h2 {
    text-align: center;
    color: var(--color-01-brand);
    font-weight: 500;
    font-size: calc(8vw);
    padding-bottom: calc(4vw);
    background: url("../images/teiban/bg_ttl.svg") no-repeat 0 100%;
    background-size: contain;
    margin-bottom: calc(6.4vw);
  }
  .p-teiban__intro p {
    font-weight: 500;
  }
  .p-teiban .c-block {
    margin-top: calc(14.9333vw);
  }
  .p-teiban .c-block__fig {
    margin-top: calc(6.4vw);
  }
  .p-teiban__block {
    margin-top: calc(14.9333vw);
    background: url("../images/teiban/bg03.png") no-repeat;
    background-size: calc(61.8667vw) calc(44vw);
  }
  .p-teiban__block p {
    font-size: calc(3.7333vw);
    font-weight: 500;
    line-height: 2.0714285714;
  }
  .p-teiban__block p.note {
    font-size: calc(3.4667vw);
  }
  .p-teiban__block p + p {
    margin-top: calc(8vw);
  }
  .p-teiban__block figure {
    margin-top: calc(6.4vw);
  }
  .p-teiban__footer {
    margin-top: calc(14.6667vw);
  }
  .p-teiban__bg01 {
    background: url("../images/teiban/bg01.svg") no-repeat right 0 top 44px;
    background-size: calc(44vw) calc(44vw);
  }
  .p-teiban__bg02 {
    background: url("../images/teiban/bg02.png") no-repeat top 0 right 0;
    background-size: calc(44vw) calc(69.3333vw);
  }
  .p-teiban__bg03 {
    background: url("../images/teiban/bg02.png") no-repeat top 0 right 0;
    background-size: calc(44vw) calc(69.3333vw);
  }
  .p-teiban__bg04 {
    background: url("../images/teiban/bg04.png") no-repeat top calc(14.4vw) left 0;
    background-size: calc(44vw) calc(69.3333vw);
  }
}
@layer project {
  .p-shurijo__intro h2 {
    font-weight: 500;
    color: var(--color-01-brand);
    font-size: calc(5.3333vw);
    line-height: 1.6;
  }
  .p-shurijo__intro p {
    margin-top: calc(4.2667vw);
    font-weight: 500;
    font-size: calc(3.7333vw);
    line-height: 2.0714285714;
  }
  .p-shurijo__intro2 {
    padding: 0 calc(5.3333vw);
  }
  .p-shurijo__digest {
    margin-top: calc(14.9333vw);
    margin-bottom: calc(15.7333vw);
  }
  .p-shurijo__digest h3 {
    display: flex;
    font-weight: 500;
    font-size: calc(5.3333vw);
    color: var(--color-01-brand);
    line-height: 1.6;
    -moz-column-gap: calc(2.6667vw);
    column-gap: calc(2.6667vw);
    align-items: center;
  }
  .p-shurijo__digest h3::before {
    content: "";
    display: block;
    background: url("../images/shurijo/icon_ttl.svg") no-repeat;
    background-size: contain;
    width: calc(7.4667vw);
    height: calc(4.8vw);
  }
  .p-shurijo__digest-block {
    margin-top: calc(6.4vw);
  }
  .p-shurijo__digest-movie {
    border: calc(2.1333vw) solid #f7f6e4;
    border-radius: calc(4.2667vw);
    overflow: hidden;
    aspect-ratio: 335/207;
  }
  .p-shurijo__digest-movie iframe {
    width: 100%;
    height: 100%;
  }
  .p-shurijo__digest-text {
    margin-top: calc(8.5333vw);
    border-bottom: 1px solid #ece8bf;
    border-right: 1px solid #ece8bf;
    padding: 0 calc(5.3333vw) calc(5.3333vw) 0;
  }
  .p-shurijo__digest-profile {
    display: flex;
    align-items: center;
    -moz-column-gap: calc(6.4vw);
    column-gap: calc(6.4vw);
  }
  .p-shurijo__digest-profile figure {
    width: calc(23.4667vw);
  }
  .p-shurijo__digest-profile dl {
    font-weight: 500;
  }
  .p-shurijo__digest-profile dl dt {
    font-size: calc(4vw);
  }
  .p-shurijo__digest-profile dl dd {
    font-size: calc(5.3333vw);
  }
  .p-shurijo__digest p {
    font-weight: 500;
    font-size: calc(3.7333vw);
    margin-top: calc(4.2667vw);
    line-height: 2.0714285714;
  }
  .p-shurijo__links {
    background: #fbfbf6;
    padding: 56px 0;
  }
  .p-shurijo__links h2 {
    text-align: center;
    color: var(--color-01-brand);
    font-weight: 500;
    font-size: calc(8vw);
    padding-bottom: calc(4vw);
    background: url("../images/teiban/bg_ttl.svg") no-repeat 0 100%;
    background-size: contain;
    margin-bottom: calc(6.4vw);
  }
  .p-shurijo__list li {
    background: #fff;
    padding: calc(10.6667vw) calc(5.3333vw);
  }
  .p-shurijo__list li + li {
    margin-top: calc(8.5333vw);
  }
  .p-shurijo__list li-text {
    width: 49.1803278689%;
  }
  .p-shurijo__list li h3 {
    color: var(--color-01-brand);
    text-align: center;
    font-size: calc(4.8vw);
    line-height: 1.5555555556;
    font-weight: 500;
  }
  .p-shurijo__list li p {
    font-weight: 500;
    font-size: calc(3.4667vw);
    line-height: 1.8461538462;
    margin-top: calc(4.2667vw);
  }
  .p-shurijo__list li figure {
    margin-top: calc(6.4vw);
  }
  .p-shurijo__list li .c-link {
    margin-top: calc(8vw);
  }
  .p-shurijo__interview {
    margin-top: calc(8.5333vw);
  }
  .p-shurijo__interview h2 {
    display: flex;
    font-weight: 500;
    font-size: calc(5.3333vw);
    color: var(--color-01-brand);
    line-height: 1.6;
    -moz-column-gap: calc(2.6667vw);
    column-gap: calc(2.6667vw);
    align-items: flex-start;
  }
  .p-shurijo__interview h2::before {
    content: "";
    flex-shrink: 0;
    display: block;
    background: url("../images/shurijo/icon_ttl.svg") no-repeat;
    background-size: contain;
    width: calc(7.4667vw);
    position: relative;
    top: calc(2.6667vw);
    height: calc(4.8vw);
  }
  .p-shurijo__interview figure {
    margin-top: calc(6.4vw);
  }
  .p-shurijo__interview p {
    margin-top: calc(6.4vw);
    letter-spacing: 0;
    font-size: calc(3.7333vw);
    line-height: 2.0714285714;
  }
  .p-shurijo__interview-block:not(:first-child) {
    margin-top: calc(14.9333vw);
  }
  .p-shurijo__arrow {
    text-align: center;
    margin-top: calc(14.9333vw);
    margin-bottom: calc(8vw);
  }
  .p-shurijo__arrow dt {
    color: var(--color-07-accent);
    font-size: calc(5.3333vw);
    font-weight: 500;
  }
  .p-shurijo__arrow dd svg {
    transform: rotate(90deg);
    width: calc(4vw);
    height: calc(6.6667vw);
    margin: 0 auto;
    color: var(--color-01-brand);
  }
}
@layer project {
  .p-concept__intro h2 {
    font-size: calc(8vw);
    line-height: 1.4;
  }
  .p-concept__intro p {
    font-weight: 500;
    font-size: calc(3.7333vw);
    line-height: 2.0714285714;
  }
  .p-concept__intro figure {
    margin: calc(9.3333vw) calc(5.3333vw) calc(10.6667vw);
  }
  .p-concept__block {
    background: #f6f6f1;
    padding: 80px 0;
    text-align: center;
    position: relative;
  }
  .p-concept__block h2 {
    color: var(--color-01-brand);
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    font-size: calc(8vw);
    line-height: 1.4;
    position: relative;
    z-index: 3;
  }
  .p-concept__block p {
    margin-top: calc(10.6667vw);
    font-weight: 500;
    font-size: calc(3.7333vw);
    line-height: 2.0714285714;
    position: relative;
    z-index: 3;
  }
  .p-concept__block figure {
    margin-top: calc(15.2vw);
  }
}
@layer project {
  .p-kikijio__intro {
    text-align: center;
    padding: 0 calc(5.3333vw);
  }
  .p-kikijio__intro dl dd {
    margin-top: calc(6.4vw);
    font-weight: 500;
    font-size: calc(3.7333vw);
    line-height: 2.0714285714;
  }
  .p-kikijio__bg {
    background: #faf8f4;
    padding: calc(13.8667vw) 0 calc(10.6667vw);
    margin-bottom: calc(21.3333vw);
  }
  .p-kikijio__bg h2 {
    background: #fff;
    text-align: center;
    padding: calc(3.2vw);
    color: var(--color-01-brand);
    position: relative;
    font-weight: 500;
    font-size: calc(7.4667vw);
    margin-bottom: calc(4vw);
  }
  .p-kikijio__bg h2 span {
    display: block;
    font-size: calc(5.3333vw);
  }
  .p-kikijio__bg h2::before {
    content: "";
    display: block;
    left: 0;
    width: 100%;
    height: calc(1.6vw);
    background: url("../images/kikijio/bg_ttl.svg") repeat-x;
    background-size: calc(4.8vw) calc(1.6vw);
    position: absolute;
    top: calc(-0.8vw);
    transform: rotate(180deg);
  }
  .p-kikijio__bg h2::after {
    content: "";
    display: block;
    left: 0;
    width: 100%;
    height: calc(1.6vw);
    background: url("../images/kikijio/bg_ttl.svg") repeat-x;
    background-size: calc(4.8vw) calc(1.6vw);
    position: absolute;
    bottom: calc(-0.8vw);
  }
  .p-kikijio__bg figure {
    margin: 0 calc(5.3333vw);
  }
  .p-kikijio__blocks {
    margin-top: calc(10.6667vw);
  }
  .p-kikijio__block + .p-kikijio__block {
    margin-top: calc(10.6667vw);
  }
  .p-kikijio__block-label {
    text-align: center;
    color: #026c9f;
    font-size: calc(5.3333vw);
    font-weight: 500;
    margin-bottom: calc(2.6667vw);
  }
  .p-kikijio__block-inner {
    padding: 0 calc(5.3333vw) calc(10.6667vw);
    border: 1px solid #026ea3;
  }
  .p-kikijio__block-inner h2 {
    text-align: center;
    color: #fff;
    background: #026ea3 url("../images/kikijio/01_ttl_bg.svg") no-repeat 50%;
    background-size: 100% auto;
    margin: 0 calc(-5.3333vw) calc(7.2vw);
    font-weight: 500;
    font-size: calc(8.5333vw);
    padding: calc(4vw) 0;
  }
  .p-kikijio__block-lead {
    text-align: center;
    font-size: calc(3.7333vw);
    font-weight: 500;
    line-height: 2.0714285714;
    margin-bottom: calc(6.4vw);
  }
  .p-kikijio__block-first {
    margin-bottom: calc(10.6667vw);
  }
  .p-kikijio__block-first-text {
    margin-top: calc(8.5333vw);
  }
  .p-kikijio__block-first-text dl {
    font-weight: 500;
  }
  .p-kikijio__block-first-text dl dt {
    font-size: calc(4.2667vw);
    color: #026ea3;
  }
  .p-kikijio__block-first-text dl dd {
    font-size: calc(8vw);
    display: inline-block;
  }
  .p-kikijio__block-first-text dl dd span {
    margin-left: calc(2.6667vw);
    font-size: calc(3.7333vw);
  }
  .p-kikijio__block-first-text p {
    font-size: calc(3.4667vw);
    line-height: 1.8461538462;
    margin-top: calc(8vw);
  }
  .p-kikijio__block-ttl {
    text-align: center;
    position: relative;
    color: #fff;
    background: #026ea3 url("../images/kikijio/01_ttl_bg.svg") no-repeat 50%;
    background-size: 100% auto;
    margin: calc(10.4vw) 0 calc(7.2vw);
    font-weight: 500;
    font-size: calc(5.0667vw);
    padding: calc(4vw) 0;
  }
  .p-kikijio__block-ttl--kodawari::before {
    content: "";
    display: block;
    width: calc(25.6vw);
    height: calc(6.4vw);
    background: url("../images/kikijio/kodawari.svg") no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: calc(-3.2vw);
  }
  .p-kikijio__block-block-text {
    margin-top: calc(6.4vw);
  }
  .p-kikijio__block-block-text h4 {
    color: #026ea3;
    font-size: calc(4.2667vw);
    font-weight: 500;
  }
  .p-kikijio__block-block-text p {
    margin-top: calc(2.1333vw);
    font-weight: 500;
    font-size: calc(3.4667vw);
    line-height: 1.8461538462;
  }
  .p-kikijio__block-block-text p + h4 {
    margin-top: calc(6.4vw);
  }
  .p-kikijio__block-block figure {
    margin-top: 33px;
  }
  .p-kikijio__block--02 .p-kikijio__block-label {
    color: #ce422c;
  }
  .p-kikijio__block--02 .p-kikijio__block-inner {
    border-color: #ce422c;
  }
  .p-kikijio__block--02 .p-kikijio__block-inner h2 {
    background: #ce422c url("../images/kikijio/02_ttl_bg.svg") no-repeat 50%;
    background-size: 100% auto;
    padding: calc(5.3333vw) 0 calc(2.6667vw);
  }
  .p-kikijio__block--02 .p-kikijio__block-first-text dl dt {
    color: #ce422c;
  }
  .p-kikijio__block--02 .p-kikijio__block-first-layout {
    flex-direction: row-reverse;
  }
  .p-kikijio__block--02 .p-kikijio__block-ttl {
    background: #ce422c url("../images/kikijio/02_ttl_bg.svg") no-repeat 50%;
    background-size: 100% auto;
  }
  .p-kikijio__block--02 .p-kikijio__block-ttl--kodawari::before {
    background: url("../images/kikijio/kodawari2.svg") no-repeat;
    background-size: contain;
  }
  .p-kikijio__block--02 .p-kikijio__block-block h4 {
    color: #ce422c;
  }
  .p-kikijio__block--03 .p-kikijio__block-label {
    color: #966610;
  }
  .p-kikijio__block--03 .p-kikijio__block-inner {
    border-color: #966610;
  }
  .p-kikijio__block--03 .p-kikijio__block-inner h2 {
    background: #c08927 url("../images/kikijio/03_ttl_bg.svg") no-repeat 50%;
    background-size: 100% auto;
  }
  .p-kikijio__block--03 .p-kikijio__block-first-text dl dt {
    color: #966610;
  }
  .p-kikijio__block--03 .p-kikijio__block-ttl {
    background: #c08927 url("../images/kikijio/03_ttl_bg.svg") no-repeat 50%;
    background-size: 100% auto;
  }
  .p-kikijio__block--03 .p-kikijio__block-ttl--kodawari::before {
    background: url("../images/kikijio/kodawari3.svg") no-repeat;
    background-size: contain;
  }
  .p-kikijio__block--03 .p-kikijio__block-block h4 {
    color: #966610;
  }
  .p-kikijio__bg {
    margin-top: calc(17.0667vw);
    background: #fbfbf6;
    padding: calc(17.0667vw) 0 calc(0.2667vw);
  }
  .p-kikijio__bg h2 {
    margin-bottom: calc(6.4vw);
  }
  .p-kikijio__bg p {
    text-align: center;
    font-size: calc(3.7333vw);
    letter-spacing: 2.0714285714;
    margin-bottom: calc(6.4vw);
  }
  .p-kikijio__bg figure {
    margin-bottom: calc(14.6667vw);
  }
}
@layer project {
  .p-home__mv {
    background: url("../images/home/bg_mv.png") no-repeat 50% 100%;
    background-size: cover;
    padding: calc(21.0667vw) calc(5.3333vw) calc(16.8vw);
  }
  .p-home__mv-text {
    padding: 0 calc(4.2667vw);
    margin-bottom: calc(5.3333vw);
  }
  .p-home__mv-text h1 {
    filter: drop-shadow(0 calc(1.3333vw) calc(0.8vw) rgba(0, 0, 0, 0.25));
  }
  .p-home__mv-text p {
    margin-top: calc(2.6667vw);
    background: #fff;
    text-align: center;
    font-size: calc(4.2667vw);
    font-weight: 500;
    padding: calc(1.6vw);
    position: relative;
    line-height: 1.375;
  }
  .p-home__mv-text p::before {
    content: "";
    display: block;
    width: calc(1.6vw);
    height: calc(1.6vw);
    background: var(--color-01-brand);
    position: absolute;
    top: calc(0.5333vw);
    left: calc(0.5333vw);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
  .p-home__mv-text p::after {
    content: "";
    display: block;
    width: calc(1.6vw);
    height: calc(1.6vw);
    background: var(--color-01-brand);
    position: absolute;
    bottom: calc(0.5333vw);
    right: calc(0.5333vw);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  .p-home__mv-slide .splide__track {
    box-shadow: calc(2.1333vw) calc(2.1333vw) calc(1.0667vw) 0 rgba(0, 0, 0, 0.25);
  }
  .p-home__mv-slide .splide__track img {
    border-radius: calc(4.2667vw);
    border: calc(2.1333vw) solid #fff;
  }
  .p-home__mv-slide .splide__pagination {
    position: static;
    margin-top: calc(4.5333vw);
  }
  .p-home__mv-slide .splide__pagination .splide__pagination__page {
    width: calc(3.2vw);
    opacity: 1;
    background: #fff;
    border: calc(0.2667vw) solid #bdbdb9;
    height: calc(3.2vw);
  }
  .p-home__mv-slide .splide__pagination .splide__pagination__page.is-active {
    border-color: #fff;
    background-color: var(--color-07-accent);
  }
  .p-home__mv-slide-controls {
    display: flex;
    -moz-column-gap: calc(2.9333vw);
    column-gap: calc(2.9333vw);
    justify-content: center;
    margin-top: calc(4.2667vw);
  }
  .p-home__mv-slide-controls .splide__arrows {
    display: contents;
  }
  .p-home__mv-slide-controls .splide__arrow {
    position: static;
    opacity: 1;
    transform: unset;
    background: #fff url("../images/home/icon_play.svg") no-repeat 50% 50%;
    height: calc(7.4667vw);
    border-radius: unset;
    border: 1px solid #bdbdb9;
    box-shadow: calc(2.1333vw) calc(2.1333vw) calc(1.0667vw) 0 rgba(0, 0, 0, 0.25);
    transition: background 0.4s;
  }
  .p-home__mv-slide-controls .splide__arrow svg {
    display: none;
  }
  .p-home__mv-slide-controls .splide__arrow.splide__arrow--prev {
    order: 1;
    border-radius: calc(4.2667vw) 0 0 calc(4.2667vw);
    background-image: url("../images/home/icon_prev.svg");
    transition: background 0.4s;
  }
  .p-home__mv-slide-controls .splide__arrow.splide__arrow--next {
    order: 3;
    border-radius: 0 calc(4.2667vw) calc(4.2667vw) 0;
  }
  .p-home__mv-slide-controls .splide__toggle {
    order: 2;
    height: calc(7.4667vw);
    width: calc(7.4667vw);
    overflow: hidden;
    text-indent: -9999px;
    border: 1px solid #bdbdb9;
    background: #fff url("../images/home/icon_play.svg") no-repeat 50% 50%;
    box-shadow: calc(2.1333vw) calc(2.1333vw) calc(1.0667vw) 0 rgba(0, 0, 0, 0.25);
    transition: background 0.4s;
  }
  .p-home__mv-slide-controls .splide__toggle.is-active {
    background: #fff url("../images/home/icon_pause.svg") no-repeat 50% 50%;
  }
  .p-home__mv-slide-controls .splide__toggle span {
    display: none !important;
  }
  .p-home__mv-btn {
    margin-top: calc(6.4vw);
  }
  .p-home__mv-btn a {
    display: flex;
    font-weight: 500;
    color: var(--color-01-brand);
    background: #fff;
    border: 1px solid var(--color-01-brand);
    border-radius: calc(1.0667vw);
    font-size: calc(4.8vw);
    align-items: center;
    padding: calc(5.3333vw) calc(8vw);
    justify-content: space-between;
    transition:
      color 0.4s,
      background-color 0.4s;
  }
  .p-home__mv-btn a:hover {
    background-color: var(--color-01-brand);
    color: var(--white);
  }
  .p-home__mv-btn a:hover svg {
    color: var(--white);
  }
  .p-home__mv-btn a svg {
    width: calc(2.6667vw);
    height: calc(4.2667vw);
    color: var(--color-01-brand);
    transition: color 0.4s;
  }
  .p-home__intro {
    padding: 0 calc(5.3333vw);
    margin-bottom: calc(10.6667vw);
  }
  .p-home__intro figure.u-sp-only {
    width: 100%;
    position: relative;
    margin-bottom: calc(5.3333vw);
  }
  .p-home__intro-title h2 {
    font-weight: 500;
    font-size: calc(8vw);
    line-height: 1.4;
    color: var(--color-01-brand);
  }
  .p-home__intro-text {
    margin-top: calc(6.4vw);
  }
  .p-home__intro-text p {
    font-size: calc(3.7333vw);
    line-height: 2.0714285714;
    font-weight: 500;
  }
  .p-home__intro-text .c-link {
    margin-top: calc(6.4vw);
    width: calc(53.3333vw);
  }
  .p-home__visual {
    position: relative;
    z-index: 2;
  }
  .p-home__visual .splide__slide {
    width: calc(58.6667vw);
  }
  .p-home__visual-controls {
    margin-top: calc(4.2667vw);
    padding: 0 calc(5.3333vw);
  }
  .p-home__visual-controls .splide__toggle {
    border: 1px solid #bdbdb9;
    background: #fff url("../images/home/icon_play.svg") no-repeat 50% 50%;
    display: block;
    margin-left: auto;
    width: calc(7.4667vw);
    height: calc(7.4667vw);
    overflow: hidden;
    text-indent: -999px;
    transition: background 0.4s;
  }
  .p-home__visual-controls .splide__toggle.is-active {
    background: #fff url("../images/home/icon_pause.svg") no-repeat 50% 50%;
  }
  .p-home__shurijo {
    background: #fbfbf6;
    padding: calc(21.3333vw) calc(5.3333vw) calc(21.3333vw);
    position: relative;
    margin-top: calc(-10.6667vw);
    z-index: 1;
  }
  .p-home__shurijo-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .p-home__shurijo-inner a {
    display: block;
    transition: 0.4s filter;
  }
  .p-home__banner {
    background: #fff;
    padding: calc(21.3333vw) 0;
  }
  .p-home__banner ul li + li {
    margin-top: calc(10.6667vw);
  }
  .p-home__banner ul li a {
    display: block;
    transition: 0.4s filter;
  }
  .p-home__banner-banner {
    margin-top: calc(10.6667vw);
  }
  .p-home__banner-banner a {
    display: block;
    transition: 0.4s filter;
  }
  .p-home__download-text h2 {
    font-size: calc(8vw);
    color: var(--color-01-brand);
    font-weight: 500;
    line-height: 1.4;
  }
  .p-home__download-text p {
    margin-top: calc(6.4vw);
    font-weight: 500;
    font-size: calc(3.7333vw);
    line-height: 2.0714285714;
  }
  .p-home__download-text .c-link {
    margin-top: calc(6.4vw);
    width: calc(53.3333vw);
  }
  .p-home__download-text .c-link svg {
    width: calc(4.8vw);
    height: calc(6.1333vw);
  }
  .p-home__download figure {
    margin-top: calc(10.6667vw);
  }
  .p-home__link {
    padding: calc(21.3333vw) 0 calc(10.6667vw);
  }
  .p-home__link ul {
    display: flex;
    flex-wrap: wrap;
    gap: calc(2.6667vw);
  }
  .p-home__link ul li {
    width: calc((100% - 2.6667vw) / 2);
    aspect-ratio: 163/56;
    line-height: 1;
    font-size: 0;
  }
  .p-home__link ul li:last-child {
    width: 100%;
    aspect-ratio: unset;
  }
  .p-home__link ul li a {
    display: block;
    transition: 0.4s filter;
    overflow: hidden;
  }
  .p-home__link ul li a img {
    line-height: 1;
    display: block;
  }
}
@layer utility {
  .u-no-underline {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
  .u-fade-in {
    opacity: 0;
    display: none;
    transition:
      opacity 0.3s ease-out,
      display 0.3s ease-out;
    transition-behavior: allow-discrete;
  }
  .u-fade-in.is-active {
    opacity: 1;
    display: block;
  }
  @starting-style {
    .u-fade-in.is-active {
      opacity: 0;
    }
  }
  .u-underline {
    position: relative;
  }
  .u-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s var(--ease-out-expo);
  }
  .u-underline:hover::after {
    transform: scale(1, 1);
  }
  .u-no-margin {
    margin: 0 !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
@media print, screen and (max-width: 767.98px) {
  .u-pc-only {
    display: none !important;
  }
  .u-sp-margin {
    margin: 0 !important;
  }
}
@media print, screen and (min-width: 1050px) {
  .l-header__logo-text {
    display: block !important;
  }
}
@media print, screen and (min-width: 768px) {
  html {
    scroll-padding-top: var(--header-height-pc);
  }
  body.is-scrolled html {
    scroll-padding-top: var(--header-height-pc-scrolled);
  }
  body {
    padding-top: var(--header-height-pc);
  }
  body.home {
    padding-top: 0;
  }
  .l-header {
    border-width: 10px;
    height: 182px;
    background: url("../images/common/bg_header_pc.webp") no-repeat 0 100%;
    background-size: auto 182px;
    filter: drop-shadow(0 6px 4px rgba(177, 177, 177, 0.1));
  }
  .l-header--fix {
    background: url("../images/common/bg_header_pc_fix.webp") no-repeat 0 0;
    background-size: 100% 100%;
    height: 100px;
  }
  .l-header--fix .l-header__logo img {
    width: 84px;
  }
  .l-header__inner {
    max-width: 1220px;
    padding: 18px 10px 0;
    margin: 0 auto;
    align-items: flex-start;
  }
  .l-header__logo a {
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
  .l-header__logo a img {
    width: 84px;
  }
  .l-header__logo-text {
    display: none;
    font-size: 20px;
    line-height: 1.4;
  }
  .l-header__nav {
    display: flex;
    align-items: center;
    margin-top: 13px;
  }
  .l-header__menu {
    display: none;
  }
  .l-footer {
    border-bottom: #1d4c27 10px solid;
    background: url("../images/common/bg_footer_pc.webp") no-repeat 100% 0;
    background-size: auto 477px;
    padding-top: 147px;
  }
  .l-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 22px;
  }
  .l-footer__pagetop {
    right: 0;
    top: -129px;
  }
  .l-footer__pagetop a {
    width: 60px;
    height: 60px;
    border-radius: 4px;
  }
  .l-footer__pagetop a:hover {
    background-color: var(--color-01-brand);
  }
  .l-footer__pagetop a:hover svg {
    color: var(--white);
  }
  .l-footer__pagetop a svg {
    width: 16px;
    height: 25px;
  }
  .l-footer__logo a {
    -moz-column-gap: 40px;
    column-gap: 40px;
    align-items: center;
  }
  .l-footer__logo a img {
    width: 228px;
  }
  .l-footer__logo-text {
    font-size: 22px;
    line-height: 1.2727272727;
  }
  .l-footer__nav {
    display: flex;
    margin-top: 57px;
    justify-content: center;
  }
  .l-footer__nav li {
    display: flex;
    color: var(--color-01-brand);
    font-weight: 600;
  }
  .l-footer__nav li:not(:first-child)::before {
    content: "/";
    margin: 0 16px;
  }
  .l-footer__copy {
    text-align: right;
    margin-top: 30px;
    font-size: 12px;
  }
  .l-page__inner {
    padding: 0 20px;
    max-width: 1140px;
    margin: 0 auto;
  }
  .l-page__inner--wide {
    max-width: 1240px;
  }
  .l-page__bg {
    padding: 120px 0;
  }
  .l-page__bg2 {
    padding: 120px 0;
  }
  .c-title {
    height: 250px;
    background-position: right 170px top 0;
  }
  .c-title h1 {
    font-size: 40px;
  }
  .c-title2 {
    text-align: left;
    font-size: 28px;
    line-height: 1.6071428571;
    margin-bottom: 32px;
  }
  .c-breadcrumb {
    max-width: 1240px;
    margin: 16px auto 40px;
    padding: 0 20px;
  }
  .c-breadcrumb ol {
    max-width: 1200px;
    margin: 0 auto;
  }
  .c-breadcrumb ol li {
    font-size: 12px;
  }
  .c-breadcrumb ol li:not(:first-child)::before {
    margin: 0 8px;
  }
  .c-block {
    display: flex;
    -moz-column-gap: 64px;
    column-gap: 64px;
  }
  .c-block--reverse {
    flex-direction: row-reverse;
  }
  .c-block__text {
    width: 45.0909090909%;
  }
  .c-block__text p {
    font-size: 15px;
    line-height: 2.2;
  }
  .c-block__text p.note {
    font-size: 14px;
  }
  .c-block__text p + p {
    margin-top: 30px;
  }
  .c-block__fig {
    width: 49.0909090909%;
  }
  .c-nav ul {
    display: flex;
    justify-content: center;
    -moz-column-gap: 48px;
    column-gap: 48px;
  }
  .c-nav ul li {
    width: 25%;
  }
  .c-nav ul li:not(:first-child) {
    margin-top: 0;
  }
  .c-link {
    font-size: 15px;
    padding: 18px 0;
  }
  .c-link svg {
    width: 10px;
    height: 16px;
  }
  .c-shop {
    margin: 80px auto 0;
    max-width: 1100px;
    padding: 78px 40px;
  }
  .c-shop h3 {
    font-size: 28px;
  }
  .c-shop > p {
    text-align: center;
    font-size: 15px;
    margin-top: 32px;
  }
  .c-shop__banner {
    margin: 40px auto 0;
    max-width: 638px;
    transition: filter 400ms;
  }
  .c-shop__banner:hover {
    filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.25));
  }
  .c-shop__list {
    margin: 35px auto 0;
    display: flex;
    justify-content: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    max-width: 828px;
  }
  .c-shop__list li:not(:first-child) {
    margin-top: 0;
  }
  .c-shop__list li {
    width: 50%;
  }
  .c-shop__list li dl {
    border-radius: 4px;
  }
  .c-shop__list li dl dt {
    font-size: 18px;
  }
  .c-shop__list li p {
    font-size: 14px;
    margin-top: 10px;
    margin-left: 5px;
    -moz-column-gap: 4px;
    column-gap: 4px;
  }
  .c-shop__list li p::before {
    width: 12px;
    height: 14px;
  }
  .p-about__intro .c-block {
    justify-content: center;
  }
  .p-about__intro .c-block__text {
    width: 448px;
  }
  .p-about__intro .c-block__fig {
    width: 270px;
    margin: 0;
  }
  .p-about__01 .c-block__fig {
    margin-top: 0;
  }
  .p-about__01-fig {
    display: flex;
    -moz-column-gap: 8px;
    column-gap: 8px;
    margin-top: 37px;
  }
  .p-about__01-fig li {
    width: calc((100% - 16px) / 3);
  }
  .p-about__01-fig li:not(:first-child) {
    margin-top: 0;
  }
  .p-about__02 {
    padding: 113px 0 157px;
  }
  .p-about__02 .c-block__fig {
    margin-top: 0;
  }
  .p-about__02-fig {
    display: flex;
    justify-content: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
    margin-top: 56px;
  }
  .p-about__02-fig li {
    width: 440px;
  }
  .p-about__02-fig li:not(:first-child) {
    margin-top: 0;
  }
  .p-about__02-fig li:first-child {
    margin-left: 0;
  }
  .p-about__03 .c-block__fig {
    margin-top: 0;
  }
  .p-about__03 .c-block + .c-block {
    margin-top: 40px;
  }
  .p-tokusanhin {
    background: unset;
  }
  .p-tokusanhin__bg {
    position: relative;
  }
  .p-tokusanhin__bg::after {
    content: "";
    display: block;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    width: 83.3333333333vw;
    z-index: 1;
    border-radius: 286px 0 0 286px;
  }
  .p-tokusanhin__bg + .p-tokusanhin__bg {
    margin-top: 80px;
  }
  .p-tokusanhin__bg-wrap {
    background: #fbfbf6 url("../images/tokusanhin/bg.png") no-repeat;
    background-size: 100% auto;
    margin-bottom: 56px;
    padding: 137px 0 120px;
  }
  .p-tokusanhin .c-block {
    position: relative;
    background: unset;
    border-radius: unset;
    padding: 80px 0;
    z-index: 2;
  }
  .p-tokusanhin .c-block__fig {
    margin-top: 0;
  }
  .p-tokusanhin__btn {
    margin-top: 32px;
    width: 240px;
  }
  .p-tokusanhin__float {
    left: auto;
    width: 147px;
    right: 11px;
    bottom: 20px;
  }
  .p-shintokusanhin__mv {
    margin: 0;
  }
  .p-shintokusanhin__bg {
    background: #fbfbf6 url("../images/tokusanhin/bg.png") no-repeat;
    background-size: 100% auto;
    margin-top: 97px;
    padding: 86px 0 76px;
  }
  .p-shintokusanhin__list01 {
    display: flex;
    -moz-column-gap: 18px;
    column-gap: 18px;
  }
  .p-shintokusanhin__list01 li {
    width: 50%;
  }
  .p-shintokusanhin__list01 li:not(:first-child) {
    margin-top: 0;
  }
  .p-shintokusanhin__list01 li h2 {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.5555555556;
  }
  .p-shintokusanhin__list01 li p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 2.0714285714;
  }
  .p-shintokusanhin__list02 {
    margin-top: 56px;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px 18px;
  }
  .p-shintokusanhin__list02 li h2 {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.5555555556;
  }
  .p-shintokusanhin__list02 li p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 2.0714285714;
  }
  .p-shintokusanhin__list02 li p + p {
    margin-top: 30px;
  }
  .p-shintokusanhin .c-nav {
    padding-top: 120px;
    padding-bottom: 56px;
  }
  .p-teiban__mv {
    margin: 0 -50px 70px;
  }
  .p-teiban__intro {
    margin-bottom: 50px;
  }
  .p-teiban__intro h2 {
    width: 530px;
    font-size: 36px;
    padding-bottom: 30px;
    margin-inline: auto;
    margin-bottom: 30px;
  }
  .p-teiban__intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
  }
  .p-teiban .c-block {
    margin-top: 80px;
    align-items: center;
  }
  .p-teiban .c-block__fig {
    margin-top: 0;
  }
  .p-teiban__block {
    margin-top: 30px;
    padding-top: 50px;
    background-position: right 0 top 0;
    background-size: 300px 213px;
  }
  .p-teiban__block .c-title2 {
    text-align: center;
  }
  .p-teiban__block p {
    font-size: 15px;
    line-height: 2.2;
    max-width: 630px;
    margin-inline: auto;
  }
  .p-teiban__block p.note {
    font-size: 14px;
  }
  .p-teiban__block p + p {
    margin-top: 30px;
  }
  .p-teiban__block figure {
    margin-top: 40px;
  }
  .p-teiban__footer {
    margin: 120px -50px 0;
  }
  .p-teiban__bg01 {
    background-size: 280px 208px;
    background-position: right 119px top 93px;
  }
  .p-teiban__bg02 {
    background-size: 202px 316px;
    background-position: left 277px top 0;
  }
  .p-teiban__bg03 {
    background-size: 202px 316px;
  }
  .p-teiban__bg04 {
    background-size: 202px 316px;
    background-position: left 0 top 0;
  }
  .p-shurijo__intro {
    max-width: 704px;
    margin: 0 auto;
    text-align: center;
  }
  .p-shurijo__intro h2 {
    font-size: 20px;
  }
  .p-shurijo__intro p {
    font-size: 15px;
    margin-top: 16px;
  }
  .p-shurijo__intro2 {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .p-shurijo__digest {
    margin: 59px auto 115px;
    max-width: 987px;
  }
  .p-shurijo__digest h3 {
    font-size: 24px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .p-shurijo__digest h3::before {
    width: 24px;
    height: 18px;
  }
  .p-shurijo__digest-block {
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
  .p-shurijo__digest-movie {
    width: 54.103343465%;
    border-radius: 16px;
    border-width: 8px;
  }
  .p-shurijo__digest-text {
    padding: 0 24px 20px 0;
    width: 43.4650455927%;
    margin-top: 10px;
  }
  .p-shurijo__digest-profile {
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
  .p-shurijo__digest-profile figure {
    width: 110px;
  }
  .p-shurijo__digest-profile dl dt {
    font-size: 15px;
  }
  .p-shurijo__digest-profile dl dd {
    font-size: 20px;
  }
  .p-shurijo__digest p {
    margin-top: 16px;
    font-size: 14px;
  }
  .p-shurijo__links {
    background: #fbfbf6 url("../images/tokusanhin/bg.png") no-repeat;
    background-size: 100% auto;
    margin-bottom: 56px;
    padding: 80px 0;
  }
  .p-shurijo__links h2 {
    width: 530px;
    font-size: 36px;
    padding-bottom: 30px;
    margin-inline: auto;
    margin-bottom: 30px;
  }
  .p-shurijo__list li {
    padding: 50px 56px;
    display: flex;
    flex-direction: row-reverse;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .p-shurijo__list li + li {
    margin-top: 40px;
  }
  .p-shurijo__list li h3 {
    text-align: left;
    font-size: 20px;
  }
  .p-shurijo__list li p {
    margin-top: 20px;
    font-size: 14px;
  }
  .p-shurijo__list li figure {
    margin-top: 0;
    width: 47.1766848816%;
  }
  .p-shurijo__list li .c-link {
    margin-top: 30px;
    width: 240px;
  }
  .p-shurijo__interview {
    margin: 56px auto 0;
    max-width: 825px;
  }
  .p-shurijo__interview h2 {
    font-size: 24px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .p-shurijo__interview h2::before {
    width: 24px;
    height: 18px;
    top: 10px;
  }
  .p-shurijo__interview figure {
    margin-top: 30px;
  }
  .p-shurijo__interview p {
    margin-top: 30px;
    font-weight: 500;
    font-size: 15px;
    line-height: 2.2;
  }
  .p-shurijo__interview-block:not(:first-child) {
    margin-top: 80px;
  }
  .p-shurijo .c-nav {
    padding: 80px 0;
  }
  .p-shurijo .c-nav li {
    width: 495px;
  }
  .p-shurijo .c-nav li.-part2 {
    width: 240px;
  }
  .p-shurijo__arrow {
    margin-top: 66px;
    margin-bottom: 54px;
  }
  .p-shurijo__arrow dt {
    font-size: 20px;
  }
  .p-shurijo__arrow dd svg {
    width: 15px;
    height: 25px;
  }
  .p-concept__intro {
    max-width: 880px;
    margin: 0 auto;
  }
  .p-concept__intro h2 {
    text-align: center;
    font-size: 28px;
  }
  .p-concept__intro p {
    font-size: 15px;
    text-align: center;
    line-height: 2.2;
  }
  .p-concept__intro figure {
    width: 300px;
    margin: 40px auto 82px;
  }
  .p-concept__block .l-page__inner {
    position: relative;
  }
  .p-concept__block .l-page__inner::before {
    content: "";
    display: block;
    width: 288px;
    height: 663px;
    background: url("../images/concept/fig02.png") no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
  }
  .p-concept__block .l-page__inner::after {
    content: "";
    display: block;
    width: 285px;
    height: 638px;
    background: url("../images/concept/fig03.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50px;
    right: 0;
  }
  .p-concept__block h2 {
    font-size: 28px;
    line-height: 1.6071428571;
  }
  .p-concept__block p {
    margin-top: 50px;
    font-size: 15px;
    line-height: 2.6666666667;
  }
  .p-concept__block figure {
    display: none;
  }
  .p-kikijio__intro {
    padding: 0 20px 64px;
  }
  .p-kikijio__intro dl dt {
    width: 300px;
    margin: 0 auto;
  }
  .p-kikijio__intro dl dd {
    margin-top: 40px;
    font-size: 15px;
    line-height: 2.2;
  }
  .p-kikijio__bg {
    padding: 80px 0 60px;
  }
  .p-kikijio__bg .l-page__inner {
    max-width: 720px;
  }
  .p-kikijio__bg h2 {
    padding: 12px;
    font-size: 28px;
    margin-bottom: 28px;
  }
  .p-kikijio__bg h2 span {
    font-size: 20px;
  }
  .p-kikijio__bg h2::before {
    height: 7px;
    background-size: 22px 7px;
    top: -3px;
  }
  .p-kikijio__bg h2::after {
    height: 7px;
    background-size: 22px 7px;
    bottom: -3px;
  }
  .p-kikijio__bg figure {
    margin: 0 27px;
  }
  .p-kikijio__blocks {
    margin-top: 124px;
    max-width: 1240px;
  }
  .p-kikijio__block + .p-kikijio__block {
    margin-top: 80px;
  }
  .p-kikijio__block-label {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .p-kikijio__block-inner {
    padding: 0 50px 56px;
  }
  .p-kikijio__block-inner h2 {
    margin: 0 -50px 32px;
    background: #026ea3 url("../images/kikijio/01_ttl_bg_pc.svg") no-repeat 50%;
    background-size: 100% auto;
    font-size: 32px;
    padding: 15px 0;
  }
  .p-kikijio__block-lead {
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 2.2;
  }
  .p-kikijio__block-first {
    margin-bottom: 40px;
  }
  .p-kikijio__block-first-layout {
    display: flex;
    -moz-column-gap: 64px;
    column-gap: 64px;
  }
  .p-kikijio__block-first-img {
    width: 49.0909090909%;
  }
  .p-kikijio__block-first-text {
    margin-top: 0;
    width: 44.9090909091%;
  }
  .p-kikijio__block-first-text dl dt {
    font-size: 18px;
  }
  .p-kikijio__block-first-text dl dd {
    font-size: 28px;
  }
  .p-kikijio__block-first-text dl dd span {
    margin-left: 10px;
    font-size: 15px;
  }
  .p-kikijio__block-first-text p {
    font-size: 14px;
    margin-top: 30px;
  }
  .p-kikijio__block-first-text figure {
    margin-top: 15px;
  }
  .p-kikijio__block-ttl {
    margin: 56px 0 32px;
    background: #026ea3 url("../images/kikijio/01_ttl_bg_pc.svg") no-repeat 50%;
    background-size: 100% auto;
    font-size: 28px;
    padding: 15px 0;
  }
  .p-kikijio__block-ttl--kodawari {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .p-kikijio__block-ttl--kodawari::before {
    position: static;
    width: 157px;
    height: 40px;
  }
  .p-kikijio__block-block {
    margin-top: 56px;
    display: flex;
    -moz-column-gap: 64px;
    column-gap: 64px;
    align-items: center;
  }
  .p-kikijio__block-block--reverse {
    flex-direction: row-reverse;
  }
  .p-kikijio__block-block-text {
    margin-top: 0;
    width: 45.0909090909%;
  }
  .p-kikijio__block-block-text h4 {
    font-size: 18px;
  }
  .p-kikijio__block-block-text p {
    margin-top: 8px;
    font-size: 14px;
  }
  .p-kikijio__block-block-text p + h4 {
    margin-top: 32px;
  }
  .p-kikijio__block-block figure {
    margin-top: 0;
    width: 49.0909090909%;
  }
  .p-kikijio__block--02 .p-kikijio__block-inner h2 {
    background: #ce422c url("../images/kikijio/02_ttl_bg_pc.svg") no-repeat 50%;
    background-size: 100% auto;
    padding: 20px 0 10px;
  }
  .p-kikijio__block--02 .p-kikijio__block-ttl {
    background: #ce422c url("../images/kikijio/02_ttl_bg_pc.svg") no-repeat 50%;
    background-size: 100% auto;
  }
  .p-kikijio__block--02 .p-kikijio__block-block {
    flex-direction: row-reverse;
  }
  .p-kikijio__block--02 .p-kikijio__block-block--reverse {
    flex-direction: row;
  }
  .p-kikijio__block--03 .p-kikijio__block-inner h2 {
    background: #c08927 url("../images/kikijio/03_ttl_bg_pc.svg") no-repeat 50%;
    background-size: 100% auto;
  }
  .p-kikijio__block--03 .p-kikijio__block-ttl {
    background: #c08927 url("../images/kikijio/03_ttl_bg_pc.svg") no-repeat 50%;
    background-size: 100% auto;
  }
  .p-kikijio__block--03 .p-kikijio__block-block {
    flex-direction: row-reverse;
  }
  .p-kikijio__block--03 .p-kikijio__block-block--reverse {
    flex-direction: row;
  }
  .p-kikijio__bg {
    background: #fbfbf6 url("../images/tokusanhin/bg.png") no-repeat;
    background-size: 100% auto;
    margin-top: 80px;
    margin-bottom: 120px;
    padding: 120px 0 4px;
  }
  .p-kikijio__bg .l-page__inner {
    max-width: 827px;
  }
  .p-kikijio__bg h2 {
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 40px;
  }
  .p-kikijio__bg p {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .p-kikijio__bg figure {
    margin-bottom: 116px;
  }
  .p-kikijio__bg figure.-sec {
    width: 440px;
    margin-inline: auto;
  }
  .p-home__mv {
    background: url("../images/home/bg_mv_pc.png") 100% 100%;
    background-size: 100% 100%;
    padding: 0 20px;
  }
  .p-home__mv-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 240px 0 120px;
    display: grid;
    grid-template-columns: 42.5% 50.8333333333%;
    gap: 0 7.5%;
  }
  .p-home__mv-text {
    padding: 53px 0 0;
    margin-bottom: 27px;
  }
  .p-home__mv-text h1 {
    filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.25));
  }
  .p-home__mv-text p {
    font-size: 15px;
    padding: 10px;
  }
  .p-home__mv-text p br {
    display: none;
  }
  .p-home__mv-text p::before {
    width: 7px;
    height: 7px;
  }
  .p-home__mv-text p::after {
    width: 7px;
    height: 7px;
  }
  .p-home__mv-slide {
    grid-column: 2;
    grid-row: 1/3;
  }
  .p-home__mv-slide .splide__track {
    box-shadow: 8px 8px 4px 0 rgba(0, 0, 0, 0.25);
  }
  .p-home__mv-slide .splide__track img {
    border-radius: 16px;
    border-width: 8px;
  }
  .p-home__mv-slide .splide__pagination {
    margin-top: 20px;
    padding: 0;
    -moz-column-gap: 10px;
    column-gap: 10px;
    justify-content: flex-start;
  }
  .p-home__mv-slide .splide__pagination .splide__pagination__page {
    border-width: 1px;
    width: 12px;
    height: 12px;
  }
  .p-home__mv-slide-controls {
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: -25px;
    justify-content: flex-end;
  }
  .p-home__mv-slide-controls .splide__arrow {
    height: 24px;
    box-shadow: 8px 8px 4px 0 rgba(0, 0, 0, 0.25);
  }
  .p-home__mv-slide-controls .splide__arrow:hover {
    background: var(--color-01-brand) url("../images/home/icon_play_ov.svg") no-repeat 50% 50%;
  }
  .p-home__mv-slide-controls .splide__arrow.splide__arrow--prev:hover {
    background: var(--color-01-brand) url("../images/home/icon_prev_ov.svg") no-repeat 50% 50%;
  }
  .p-home__mv-slide-controls .splide__toggle {
    height: 24px;
    width: 24px;
    box-shadow: 8px 8px 4px 0 rgba(0, 0, 0, 0.25);
  }
  .p-home__mv-slide-controls .splide__toggle:hover {
    background: var(--color-01-brand) url("../images/home/icon_play_ov.svg") no-repeat 50% 50%;
  }
  .p-home__mv-slide-controls .splide__toggle.is-active:hover {
    background: var(--color-01-brand) url("../images/home/icon_pause_ov.svg") no-repeat 50% 50%;
  }
  .p-home__mv-btn {
    margin-top: 27px;
    width: 295px;
  }
  .p-home__mv-btn a {
    font-size: 18px;
    padding: 18px 0;
    padding: 15px 20px;
    border-radius: 4px;
  }
  .p-home__mv-btn a svg {
    width: 10px;
    height: 16px;
  }
  .p-home__intro {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .p-home__intro-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
  .p-home__intro-title {
    padding-top: 120px;
    width: 46.6666666667%;
    background: url("../images/home/bg_intro_pc.svg") no-repeat;
    min-height: 426px;
  }
  .p-home__intro-title h2 {
    font-size: 28px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .p-home__intro-text {
    margin-top: 0;
    padding-top: 120px;
    width: 37.3333333333%;
  }
  .p-home__intro-text p {
    font-size: 15px;
  }
  .p-home__intro-text .c-link {
    margin-top: 32px;
    width: 240px;
  }
  .p-home__visual .splide__slide {
    width: 434px;
  }
  .p-home__visual-controls {
    max-width: 1240px;
    padding: 0 20px;
    margin-top: 16px;
  }
  .p-home__visual-controls .splide__toggle {
    width: 24px;
    height: 24px;
  }
  .p-home__visual-controls .splide__toggle:hover {
    background: var(--color-01-brand) url("../images/home/icon_play_ov.svg") no-repeat 50% 50%;
  }
  .p-home__visual-controls .splide__toggle.is-active:hover {
    background: var(--color-01-brand) url("../images/home/icon_pause_ov.svg") no-repeat 50% 50%;
  }
  .p-home__shurijo {
    padding: 155px 20px 120px;
    margin-top: -35px;
  }
  .p-home__shurijo-inner a:hover {
    filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.25));
  }
  .p-home__banner {
    background: #fff url("../images/home/bg_banner.png") no-repeat;
    background-size: 100% auto;
    margin-bottom: 56px;
    padding: 137px 0 120px;
  }
  .p-home__banner ul {
    display: flex;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .p-home__banner ul li + li {
    margin-top: 0;
  }
  .p-home__banner ul li a:hover {
    filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.25));
  }
  .p-home__banner-banner {
    margin-top: 60px;
  }
  .p-home__banner-banner a:hover {
    filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.25));
  }
  .p-home__download .l-page__inner {
    max-width: 887px;
  }
  .p-home__download-block {
    display: flex;
    -moz-column-gap: 64px;
    column-gap: 64px;
  }
  .p-home__download-text {
    width: 50.5073280722%;
  }
  .p-home__download-text h2 {
    font-size: 28px;
  }
  .p-home__download-text p {
    margin-top: 30px;
    font-size: 15px;
  }
  .p-home__download-text .c-link {
    width: 240px;
    margin-top: 30px;
  }
  .p-home__download-text .c-link:hover svg path {
    fill: var(--color-07-accent);
  }
  .p-home__download-text .c-link svg {
    width: 18px;
    height: 23px;
  }
  .p-home__download figure {
    margin-top: 0;
    width: 42.2773393461%;
  }
  .p-home__link {
    padding: 120px 0 56px;
  }
  .p-home__link ul {
    gap: 16px;
    justify-content: center;
  }
  .p-home__link ul li {
    aspect-ratio: unset;
    width: calc((100% - 48px) / 4);
  }
  .p-home__link ul li:last-child {
    width: 677px;
  }
  .p-home__link ul li a:hover {
    filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.25));
  }
  .u-sp-only {
    display: none !important;
  }
  .u-pc-note {
    font-size: calc-pc(16) !important;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1000px) {
  .p-concept__block .l-page__inner::before {
    display: none;
  }
  .p-concept__block .l-page__inner::after {
    display: none;
  }
  .p-concept__block figure {
    display: block;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1049.98px) {
  .l-header__tab {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-01-brand);
  }
  .l-header__tab span {
    color: var(--color-07-accent);
  }
  .l-header__nav > li > a {
    padding: 0 0 10px;
  }
}

/*# sourceMappingURL=style.css.map*/
