@charset "UTF-8";
:root {
  --color-megumi: #9cb550;
  --color-raku: #3d9aa0;
  --color-ken: #c13655;
  --color-sou: #8a609c;
  --color-sachi: #e0a93a;
  --color-primary: #004da0;
  --color-primary-dark: #003d80;
  --color-secondary: #00a0e9;
  --color-link: #009aa2;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-100: #f8f8f8;
  --color-gray-200: #e8e8e8;
  --color-gray-300: #cccccc;
  --color-gray-600: #666666;
  --font-family-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-family-en: "Montserrat", sans-serif;
  --font-size-xs: clamp(0.625rem, 0.563rem + 0.25vw, 0.75rem);
  --font-size-sm: clamp(0.75rem, 0.688rem + 0.25vw, 0.875rem);
  --font-size-base: clamp(0.875rem, 0.813rem + 0.25vw, 1rem);
  --font-size-md: clamp(1rem, 0.938rem + 0.25vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1.063rem + 0.25vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 1.313rem + 0.75vw, 1.875rem);
  --font-size-3xl: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --font-size-4xl: clamp(2rem, 1.75rem + 1.25vw, 2.5rem);
  --line-height-tight: 1.4;
  --line-height-base: 1.8;
  --line-height-loose: 2;
  --space-xs: 0.5em;
  --space-sm: 0.875em;
  --space-base: 1em;
  --space-md: 1.5em;
  --space-lg: 2em;
  --space-xl: 3em;
  --space-2xl: 4em;
  --space-3xl: 6em;
  --space-4xl: 8em;
  --container-width: 1200px;
  --header-height: 80px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --z-header: 1000;
  --z-gnav: 999;
  --z-modal: 1100;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

body {
  font-family: var(--font-family-ja);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity var(--transition-fast);
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-container {
  width: 100%;
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-md);
  padding-left: var(--space-md);
}
@media (max-width: 768px) {
.l-container {
  padding-right: 15px;
  padding-left: 15px;
}    
}

.l-container-full {
  width: 100%;
  padding-right: var(--space-md);
  padding-left: var(--space-md);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  width: 100%;
  background-color: transparent;
  -webkit-transition: background-color var(--transition-base);
  transition: background-color var(--transition-base);
}

.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.l-header__inner {
  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: var(--header-height);
  padding-right: var(--space-md);
  padding-left: var(--space-md);
    transition: all 0.3s ease;
}
.l-header.is-scrolled .l-header__inner{
    height:60px;
    transition: all 0.3s ease;
}

.l-header__logo a {
  display: block;
}

.l-header__logo img {
  height: clamp(3.75rem, 3.281rem + 1.88vw, 4.688rem);
  width: clamp(3.75rem, 3.281rem + 1.88vw, 4.688rem);
    transition: all 0.3s ease;
}

.l-header.is-scrolled .l-header__inner .l-header__logo img{
    width: 50px;
    transition: all 0.3s ease;
}

.l-header__menu-btn {
  position: relative;
  z-index: calc(var(--z-header) + 1);
  width: 2.5em;
  height: 2.5em;
  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;
}

.l-header__menu-icon {
  width: 2.5em;
  height: 1.25em;
  -webkit-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}

.l-header__menu-icon--open {
  opacity: 1;
}

.l-header__menu-icon--close {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.l-header__menu-btn[aria-expanded=true] .l-header__menu-icon--open {
  opacity: 0;
}

.l-header__menu-btn[aria-expanded=true] .l-header__menu-icon--close {
  opacity: 1;
}

.l-gnav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-gnav);
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--transition-base), visibility var(--transition-base);
  transition: opacity var(--transition-base), visibility var(--transition-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-gnav[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.l-gnav__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: var(--header-height);
  padding-right: var(--space-md);
  padding-left: var(--space-md);
}

.l-gnav__logo img {
  width: auto;
  height: 40px;
}

.l-gnav__inner {
  -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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: var(--space-2xl) var(--space-md);
}

.l-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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-sm);
}

.l-gnav__item {
  max-width: 24em;
  width: 100%;
}
.l-gnav__item a {
  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: var(--space-sm);
  padding: var(--space-xs) var(--space-base);
  font-size: var(--font-size-md);
  font-weight: 500;
  color: var(--color-black);
  text-decoration: none;
  -webkit-transition: opacity var(--transition-fast);
  transition: opacity var(--transition-fast);
}
.l-gnav__item aa:hover {
  opacity: 0.7;
}

.l-gnav__item--primary a {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.l-gnav__item--primary .l-gnav__arrow {
  border-color: var(--color-white);
}

.l-gnav__arrow {
  display: block;
  width: 32px;
  height: 48px;
}
.l-gnav__arrow.l-gnav__arrow--1 {
  background: url(../images/icon/icon-arrow-1.svg) no-repeat 0 0;
  background-size: contain;
}
.l-gnav__arrow.l-gnav__arrow--2 {
  background: url(../images/icon/icon-arrow-2.svg) no-repeat 0 0;
  background-size: contain;
}
.l-gnav__arrow.l-gnav__arrow--3 {
  background: url(../images/icon/icon-arrow-3.svg) no-repeat 0 0;
  background-size: contain;
}
.l-gnav__arrow.l-gnav__arrow--4 {
  background: url(../images/icon/icon-arrow-4.svg) no-repeat 0 0;
  background-size: contain;
}
.l-gnav__arrow.l-gnav__arrow--5 {
  background: url(../images/icon/icon-arrow-5.svg) no-repeat 0 0;
  background-size: contain;
}

.l-gnav::before,
main::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-image: url("../images/mv/mv-bg.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.l-footer {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0 var(--space-lg);
  text-align: center;
  background-color: var(--color-white);
}

.l-footer__logo {
  margin-bottom: var(--space-lg);
}

.l-footer__logo img {
  width: auto;
  height: 50px;
}

.l-footer__copyright {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
}

.c-section-title {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

.c-section-title--white {
  color: var(--color-white);
}

@media (min-width: 769px) {
  .c-section-title {
    font-size: var(--font-size-3xl);
  }
}
.c-hover-lift {
  display: block;
  -webkit-transition: -webkit-transform var(--transition-fast);
  transition: -webkit-transform var(--transition-fast);
  transition: transform var(--transition-fast);
  transition: transform var(--transition-fast), -webkit-transform var(--transition-fast);
}

.c-hover-lift:hover {
  opacity: 1;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.p-mv {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding-bottom: 20vh;
}

@media (min-width: 769px) {
  .p-mv {
    padding-bottom: 10vh;
  }
}
.p-mv__bg {
  position: absolute;
  top: -10vh;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../images/mv/main-bg-sp.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: mv-bg-fade 2.8s cubic-bezier(0.55, 0.06, 0.68, 0.19) 1.2s both;
          animation: mv-bg-fade 2.8s cubic-bezier(0.55, 0.06, 0.68, 0.19) 1.2s both;
}
@media (min-width: 769px) {
  .p-mv__bg {
    top: -5vh;
    background-image: url(../images/mv/main-bg.webp);
  }
}

@-webkit-keyframes mv-bg-fade {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes mv-bg-fade {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
.p-mv__content {
  position: relative;
  z-index: 2;
  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;
  height: 100%;
}

.p-mv__content picture {
  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%;
  height: 100%;
}

.p-mv__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv {padding-bottom: 0 !important;}
.p-mv__content {z-index: 3;}
.p-mv__content img {max-width: 60vw;}
@media (min-width: 1600px) {
.p-mv__content img {max-width: 800px !important;}  
}
@media (min-width:1024px) and (min-height:800px) {
.p-mv__content img {max-width: 70%;}  
}
@media (max-width: 1024px) {
.p-mv__content img {max-width: 80%;}    
}
@media (max-width: 768px) {
.p-mv__content img {max-width: 50vh;}    
}
.p-mv__bg {
  display: none;
}
.p-mv__zoom-wrapper {
  position: absolute;
  top: 5px;
  left: -10%;
  z-index: 1;
  width: 120%;
  height: 100%;
  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;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: mv-zoom-out 1s ease-out 3.1s both;
          animation: mv-zoom-out 1s ease-out 3.1s both;
}

@media (min-width:1300px){
.p-mv__zoom-wrapper {
    animation: mv-zoom-out 1s ease-out 3.1s both;
    margin-top: 1%;}    
}
@media (min-width:1024px) and (min-height:800px) {
.p-mv__zoom-wrapper {animation: mv-zoom-out-wide 1s ease-out 3.1s both;}    
}
@media (max-width: 960px) {
.p-mv__zoom-wrapper {
  left: -20%;
  width: 140%;}    
}
.p-mv__segments {
  position: relative;
  top: 0;
  width: 100%;
  aspect-ratio: 1921/1081;
  /*max-height: 100%;*/
  pointer-events: none;
}
@media (min-width:1600px){
.p-mv__segments {
    max-width: 1600px;
    margin-top: -2%
}
}
.p-mv__segment {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: mv-segment-fade-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
}
.p-mv__segment--1,
.p-mv__segment--2,
.p-mv__segment--3,
.p-mv__segment--4,
.p-mv__segment--5 {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.p-mv__segment--1 {
  background-image: url(../images/mv/main-bg-01.webp);
  animation-delay: 0s;
}
.p-mv__segment--2 {
  background-image: url(../images/mv/main-bg-02.webp);
  animation-delay: 0.6s;
}
.p-mv__segment--3 {
  background-image: url(../images/mv/main-bg-03.webp);
  animation-delay: 1.2s;
}
.p-mv__segment--4 {
  background-image: url(../images/mv/main-bg-04.webp);
  animation-delay: 1.8s;
}
.p-mv__segment--5 {
  background-image: url(../images/mv/main-bg-05.webp);
  animation-delay: 2.4s;
}
@media (max-width: 768px) {
  .p-mv__segments {
    width: auto;
    height: min(200vw, 70dvh);
    aspect-ratio: 841/982;
    margin: 0 auto;
  }
  .p-mv__segment--1 {
    background-image: url(../images/mv/main-bg-sp-01.webp);
  }
  .p-mv__segment--2 {
    background-image: url(../images/mv/main-bg-sp-02.webp);
  }
  .p-mv__segment--3 {
    background-image: url(../images/mv/main-bg-sp-03.webp);
  }
  .p-mv__segment--4 {
    background-image: url(../images/mv/main-bg-sp-04.webp);
  }
  .p-mv__segment--5 {
    background-image: url(../images/mv/main-bg-sp-05.webp);
  }
}

@keyframes mv-zoom-out {
  0% {transform: scale(1.2);}
  100% {ransform: scale(0.9);}
}
@keyframes mv-zoom-out-wide {
  0% {transform: scale(1.6);}
  100% {transform: scale(1.2);}
}
@keyframes mv-segment-fade-in {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}
.p-brand-message {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0 var(--space-4xl);
  text-align: center;
}

.p-brand-message__logo {
  margin-bottom: var(--space-xl);
}

.p-brand-message__logo img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.p-brand-message__catch {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-lg);
}

.p-brand-message__star {
  width: 2em;
  height: 2em;
  vertical-align: middle;
  margin-inline: 0.1em;
}

.p-brand-message__text {
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-loose);
}

.p-brand-message__text p {
  margin-bottom: var(--space-md);
}

.p-brand-message__text p:last-child {
  margin-bottom: 0;
}

.p-about-message {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0 var(--space-4xl);
  color: var(--color-white);
  background-color: #fff;
  /*min-height: 820px;*/
    height: calc(100vh - 60px);
}

.p-about-message__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.p-about-message__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-about-message__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
#about-message .l-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.p-about-message__content {
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-loose);
  text-align: center;
}

.p-about-message__content p {
  margin-bottom: var(--space-md);
}

.p-about-message__content p:last-child {
  margin-bottom: 0;
}

.p-about-logo {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0;
}

.p-about-logo__content {
  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: var(--space-xl);
}
@media (min-width: 769px) {
  .p-about-logo__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-about-logo__image img {
  width: 150px;
  height: auto;
}
@media (min-width: 769px) {
  .p-about-logo__image img {
    width: 200px;
  }
}

.p-about-logo__text {
  line-height: var(--line-height-loose);
  text-align: center;
}
@media (min-width: 769px) {
  .p-about-logo__text {
    text-align: left;
  }
}

.p-five-appeals {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0;
  background-color: #fff;
}

.p-five-appeals__note {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  text-align: center;
}

.p-five-appeals__accordion {
  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;
  height: auto;
  min-height: 80vh;
  width: 100%;
}
@media (min-width: 769px) {
  .p-five-appeals__accordion {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 700px;
    min-height: 40em;
  }
}

.p-five-appeals__item {
  border: 1px solid #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  -webkit-transition: -webkit-box-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), -ms-flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
@media (min-width: 769px) {
  .p-five-appeals__item {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    border-width: 2px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 72px;
            flex: 0 0 72px;
  }
  .p-five-appeals__item:not([aria-expanded=true]) {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
  }
  .p-five-appeals__item:not([aria-expanded=true]) .p-five-appeals__trigger {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
  .p-five-appeals__item:last-child:not([aria-expanded=true]) {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
}
.p-five-appeals__item:nth-child(1) {
  z-index: 1;
}
.p-five-appeals__item:nth-child(2) {
  z-index: 2;
}
.p-five-appeals__item:nth-child(3) {
  z-index: 3;
}
.p-five-appeals__item:nth-child(4) {
  z-index: 4;
}
.p-five-appeals__item:nth-child(5) {
  z-index: 5;
}

.p-five-appeals__item[aria-expanded=true] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 40em;
}
@media (min-width: 540px) and (max-width: 768px) {
  .p-five-appeals__item[aria-expanded=true] {
    min-height: 38em;
  }
}
@media (min-width: 769px) {
  .p-five-appeals__item[aria-expanded=true] {
    min-height: auto;
  }
}

.p-five-appeals__trigger {
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 1em 0.75em;
  text-align: center;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--item-color);
}

.p-five-appeals__trigger::after {
  content: "";
  display: none;
  font-size: 0.75em;
  opacity: 0.7;
  line-height: 1;
}

.p-five-appeals__item:not([aria-expanded=true]) .p-five-appeals__trigger::after {
  display: block;
}

.p-five-appeals__item.is-before-active .p-five-appeals__trigger::after {
  content: "▼";
}
@media (min-width: 769px) {
  .p-five-appeals__item.is-before-active .p-five-appeals__trigger::after {
    content: "▶";
  }
}

.p-five-appeals__item.is-after-active .p-five-appeals__trigger::after {
  content: "▲";
}
@media (min-width: 769px) {
  .p-five-appeals__item.is-after-active .p-five-appeals__trigger::after {
    content: "◀";
  }
}

.p-five-appeals__item + .p-five-appeals__item {
  margin-top: -6px;
}
@media (min-width: 769px) {
  .p-five-appeals__item + .p-five-appeals__item {
    margin-left: -8px;
    margin-top: 0;
  }
}

.p-five-appeals__item[data-charm=megumi] {
  --item-color: var(--color-megumi);
}

.p-five-appeals__item[data-charm=raku] {
  --item-color: var(--color-raku);
}

.p-five-appeals__item[data-charm=ken] {
  --item-color: var(--color-ken);
}

.p-five-appeals__item[data-charm=sou] {
  --item-color: var(--color-sou);
}

.p-five-appeals__item[data-charm=sachi] {
  --item-color: var(--color-sachi);
}

.p-five-appeals__item:not([aria-expanded=true]) .p-five-appeals__trigger {
  color: #000;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

.p-five-appeals__label {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  display: block;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  position: absolute;
  left: 1rem;
}
@media (min-width: 769px) {
  .p-five-appeals__label {
    top: 1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-five-appeals__subtitle {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-five-appeals__item[aria-expanded=true] .p-five-appeals__subtitle {
  opacity: 1;
}

.p-five-appeals__item:not([aria-expanded=true]) .p-five-appeals__subtitle {
  display: none;
}

.p-five-appeals__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease 0.2s, visibility 0s 0.5s;
  transition: opacity 0.3s ease 0.2s, visibility 0s 0.5s;
  background-color: var(--item-color);
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.p-five-appeals__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--item-color);
  z-index: 0;
  pointer-events: none;
}

.p-five-appeals__panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.p-five-appeals__panel-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: blur(8px) brightness(0.7);
          filter: blur(8px) brightness(0.7);
  opacity: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  will-change: opacity;
}

.p-five-appeals__panel-bg img.is-active {
  opacity: 1;
}

.p-five-appeals__item[aria-expanded=true] .p-five-appeals__panel {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease 0.2s, visibility 0s 0s;
  transition: opacity 0.3s ease 0.2s, visibility 0s 0s;
  pointer-events: auto;
}

.p-five-appeals__panel[hidden] {
  display: block;
}

.p-five-appeals__panel-sidebar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: var(--item-color);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media (min-width: 769px) {
  .p-five-appeals__panel-sidebar {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    width: 64px;
    height: 100%;
    position: absolute;
  }
}

.p-five-appeals__panel-sidebar-label {
  color: #fff;
  font-size: var(--font-size-3xl);
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1rem;
}
@media (min-width: 769px) {
  .p-five-appeals__panel-sidebar-label {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-five-appeals__panel-header {
  font-family: "Noto Serif JP", serif;
  position: relative;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  padding: 1.25em 0.5em 2em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75em;
  pointer-events: none;
  width: 100%;
}
@media (min-width: 769px) {
  .p-five-appeals__panel-header {
    position: absolute;
    padding: 15px 0.5em 28px;
    gap: 1em;
  }
}

.p-five-appeals__panel-charm {
    flex-shrink: 0;
    position: relative;
    max-width: 85px
}
.p-five-appeals__panel-charm img{width: 100%}

.p-five-appeals__panel-icon {
  width: 0.5115em;
  height: 0.63646em;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -35%);
          transform: translate(-50%, -35%);
}

.p-five-appeals__slider {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5em;
  overflow: hidden;
}
@media (min-width: 769px) {
.p-five-appeals__panel-charm {max-width: 100px}    
  .p-five-appeals__slider {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8.5em 0 0;
  }
}

.p-five-appeals__slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 0 0 12px;
  z-index: 10;
}
@media (min-width: 769px) {
  .p-five-appeals__slider-nav {
    padding: 0 0 16px;
    position: absolute;
    top: 17vh;
    left: 8vw;
  }
}

.p-five-appeals__slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  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;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.3s ease, transform 0.15s ease;
  transition: opacity 0.3s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 769px) {
  .p-five-appeals__slider-btn {
    width: 48px;
    height: 48px;
  }
}
.p-five-appeals__slider-btn:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-five-appeals__slider-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.p-five-appeals__slider-btn svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}
@media (min-width: 769px) {
  .p-five-appeals__slider-btn svg {
    width: 24px;
    height: 24px;
  }
}

.p-five-appeals__slider-btn--prev {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}

.p-five-appeals__slider-btn--next {
  background-color: var(--item-color, #8b7355);
  color: #fff;
  -webkit-filter: brightness(1.15);
          filter: brightness(1.15);
}

.js-appeal-swiper {
  --appeal-slide-width: 50vw;
  width: 100%;
  overflow: visible;
}
@media (min-width: 769px) {
  .js-appeal-swiper {
    --appeal-slide-width: clamp(300px, 34vw, 550px);
  }
}

.js-appeal-swiper .swiper-wrapper {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.js-appeal-swiper .swiper-slide {
  width: var(--appeal-slide-width);
  height: auto;
  aspect-ratio: 11/10;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (min-width: 769px) {
  .js-appeal-swiper .swiper-slide {
    width: clamp(340px, 38vw, 550px);
  }
}

.js-appeal-swiper .swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.js-appeal-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-brandbook {
  background-color: #fff;
  background-image: url("../images/mv/mv-bg.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0 20em;
}

.p-brandbook__content {
  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: var(--space-xl);
}
@media (min-width: 1200px) {
.p-brandbook {background-position: center bottom -100px;}    
}
@media (min-width: 769px) {
  .p-brandbook__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-brandbook__image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: var(--radius-md);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.p-brandbook__text {
  line-height: var(--line-height-loose);
  text-align: center;
}
@media (min-width: 769px) {
  .p-brandbook__text {
    text-align: left;
  }
}

.p-brandbook__text p {
  margin-bottom: var(--space-md);
}

.p-brandbook__text p:last-child {
  margin-bottom: 0;
}

.p-brandbook__links {
  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: var(--space-sm);
  margin: var(--space-xl) auto 0;
  max-width: 480px;
}

.p-brandbook__link-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  color: var(--color-link);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: var(--space-xs) 0;
}
.p-brandbook__link-btn::before {
  content: "";
  display: inline-block;
  width: 1.27em;
  height: 1.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 29.55'%3E%3Cpath fill='%23009aa2' d='M6.12 16.81v2.46H4.71v-7h2.38c.69 0 1.24.21 1.66.64.41.43.62.99.62 1.67s-.2 1.23-.61 1.62c-.41.4-.97.6-1.69.6h-.94zm0-1.17h.97c.27 0 .48-.09.62-.26.15-.18.22-.43.22-.77s-.08-.63-.23-.83a.703.703 0 00-.61-.31h-.98v2.18zm4.72 3.63v-7h1.85c.82 0 1.47.26 1.95.78.49.52.73 1.23.74 2.13v1.13c0 .92-.24 1.64-.73 2.16-.49.52-1.15.79-2.01.79h-1.81zm1.41-5.82v4.65h.42c.47 0 .8-.12.99-.37s.29-.68.3-1.29v-1.22c0-.65-.09-1.11-.27-1.37-.18-.26-.49-.39-.93-.41h-.51zm8.3 2.97h-2.2v2.85h-1.41v-7h3.87v1.18h-2.46v1.79h2.2v1.17z'/%3E%3Cpath fill='%23009aa2' d='M17.1 2L23 7.84v19.71H2V2h15.1m.83-2H0v29.55h25V7l-7.07-7z'/%3E%3Cpath fill='none' stroke='%23009aa2' stroke-miterlimit='10' stroke-width='2' d='M17.72.78v6.49h6.1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-brandbook__accordion-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.p-brandbook__accordion-trigger {
  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.75em 1em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family-ja);
  font-weight: 500;
  color: var(--color-link);
  text-align: left;
  gap: 0.75em;
  -webkit-transition: background-color var(--transition-fast);
  transition: background-color var(--transition-fast);
}
.p-brandbook__accordion-trigger:hover {
  background-color: rgba(0, 77, 160, 0.05);
}

.p-brandbook__accordion-icon {
  background-color: var(--color-link);
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  border-radius: 50%;
}
.p-brandbook__accordion-icon::before, .p-brandbook__accordion-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-brandbook__accordion-icon::before {
  width: 10px;
  height: 3px;
}
.p-brandbook__accordion-icon::after {
  width: 3px;
  height: 10px;
  -webkit-transition: opacity var(--transition-base), -webkit-transform var(--transition-base);
  transition: opacity var(--transition-base), -webkit-transform var(--transition-base);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transition: transform var(--transition-base), opacity var(--transition-base), -webkit-transform var(--transition-base);
}

.p-brandbook__accordion-trigger[aria-expanded=true] .p-brandbook__accordion-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-brandbook__accordion-panel[hidden] {
  display: none;
}

.p-brandbook__accordion-list {
  list-style: none;
  padding: 0.5em 1em 0.75em;
  border-top: 1px solid rgba(0, 77, 160, 0.2);
}
.p-brandbook__accordion-list li {
  margin-bottom: 0.5em;
}
.p-brandbook__accordion-list li:last-child {
  margin-bottom: 0;
}
.p-brandbook__accordion-list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-brandbook__accordion-list a::before {
  content: "";
  display: inline-block;
  width: 1.27em;
  height: 1.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 29.55'%3E%3Cpath fill='%23009aa2' d='M6.12 16.81v2.46H4.71v-7h2.38c.69 0 1.24.21 1.66.64.41.43.62.99.62 1.67s-.2 1.23-.61 1.62c-.41.4-.97.6-1.69.6h-.94zm0-1.17h.97c.27 0 .48-.09.62-.26.15-.18.22-.43.22-.77s-.08-.63-.23-.83a.703.703 0 00-.61-.31h-.98v2.18zm4.72 3.63v-7h1.85c.82 0 1.47.26 1.95.78.49.52.73 1.23.74 2.13v1.13c0 .92-.24 1.64-.73 2.16-.49.52-1.15.79-2.01.79h-1.81zm1.41-5.82v4.65h.42c.47 0 .8-.12.99-.37s.29-.68.3-1.29v-1.22c0-.65-.09-1.11-.27-1.37-.18-.26-.49-.39-.93-.41h-.51zm8.3 2.97h-2.2v2.85h-1.41v-7h3.87v1.18h-2.46v1.79h2.2v1.17z'/%3E%3Cpath fill='%23009aa2' d='M17.1 2L23 7.84v19.71H2V2h15.1m.83-2H0v29.55h25V7l-7.07-7z'/%3E%3Cpath fill='none' stroke='%23009aa2' stroke-miterlimit='10' stroke-width='2' d='M17.72.78v6.49h6.1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.p-footer-links__item img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--radius-md);
}

@media (min-width: 769px) {
  .p-footer-links {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.js-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(var(--z-gnav) - 1);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--transition-base), visibility var(--transition-base);
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.js-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

body.is-menu-open {
  overflow: hidden;
}

.icon-triangle::after {
  background: url(../images/icon/icon-triangle.svg);
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sp-br {
  display: block;
}
@media (min-width: 769px) {
  .sp-br {
    display: none;
  }
}/*# sourceMappingURL=style-2.css.map */