@charset "utf-8";

@import "style.css";
@import "color.css";
@import "font.css";
@import "line-height.css";
@import "margin.css";
@import "padding.css?20250727#1755_0.0.1";

:root {
  --bs-font-sans-serif: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --bs-font-serif: "游明朝体", "Yu Mincho", YuMincho, serif;
  --bs-emphasis-color: #000;
  --bs-body-bg: #fff;
  --bs-body-width: 1366px;
  --bs-color-dark: #3a3a3a;
}

/*---------------------------------------------------
font-familyここから
----------------------------------------------------*/
main {
  /*font-family: var(--bs-font-sans-serif);*/
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

/*---------------------------------------------------
リセットCSSここから
----------------------------------------------------*/
html main section:first-of-type p,
html main section:first-of-type a,
html main section:first-of-type span,
html main section:first-of-type a p,
html main section:first-of-type h1 a p,
html main section:first-of-type h2,
html main section:nth-of-type(2) p,
html main section:nth-of-type(2) a,
html main section:nth-of-type(2) span,
html main section:nth-of-type(2) a p,
html main section:nth-of-type(2) h1 a p,
html main section:nth-of-type(2) h2 {
  opacity: 0;
  animation: textFadeIn 1s ease 500ms both;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

main a,
footer a {
  color: #333 !important;
}


ul {
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

input[type="text"]:focus {
  outline: 0;
}

button:focus {
  outline: 0;
}

*:focus {
  outline: none;
}

.width-fit-content {
  width: fit-content;
}

.scroll-control-none {
  -ms-overflow-style: none;
  scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/
}

.scroll-control-none::-webkit-scrollbar {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  background-color: #fff;
  -webkit-appearance: none !important;
  appearance: none !important;
}

input[type="text"]:focus {
  outline: 0;
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

.wpcf7-spinner {
  display: none !important;
}

/*---------------------------------------------------
 header
----------------------------------------------------*/

header{
  position: relative;
  z-index: 10000;
}

.header-position-fixed {
  position: fixed;
  top: 0;
  padding-top: 40px;
  padding-left: 22px;
  padding-right: 32px;
}

.header-link{
  height: 46px;
  z-index: 9999!important;
}

.ham-box {
  width: 46px;
  height: 46px;
  background-color: #FCFCFC;
}

.ham-bar,
.ham-bar::before,
.ham-bar::after {
  background-color: #222;
  position: absolute;
  width: 22px;
  height: 1px;
  border-radius: 0.5px;
  opacity: 1;
}

.ham-bar {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: 0.5s;
}

.ham-bar::before {
  content: "";
  top: -8px;
  transition: 0.5s;
}

.ham-bar::after {
  content: "";
  top: 8px;
  transition: 0.5s;
}

.is-active .ham-bar {
  background-color: transparent !important;
}

.is-active .ham-bar::before {
  transform: translateY(8px) rotate(45deg);
  transition: 0.5s;
}

.is-active .ham-bar::after {
  transform: translateY(-8px) rotate(-45deg);
  transition: 0.5s;
}

.ham-drawer {
  --waveH: calc(100vw * 240.27 / 1366);
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity .3s ease;
  overflow: hidden;
}
.ham-drawer.is-active,
.ham-drawer.is-closing {
  opacity: 1;
  pointer-events: auto;
}

.ham-clip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100svh;
  height: 100dvh;
  overflow: visible;
  transform: translateY(calc(100% + var(--waveH)));
  transition: transform .3s ease;
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.ham-drawer.is-active .ham-clip {
  transform: translateY(0);
  transition: transform .85s ease;
}

.ham-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
  background: transparent;
  line-height: 0;
}

.ham-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100svh;
  height: 100dvh;
  background: #f4f4f4;
  /*box-shadow: 0 -0.5px 0 #f4f4f4;*/
}

.ham-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100svh;
  bottom: 100dvh;
  width: 100vw;
  height: auto;
  display: block;
  vertical-align: bottom;
  transform: translateY(0.5px);
}

.ham-drawer-wrapper {
  background-color: transparent;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100svh;
  padding-top: 160px;
  padding-bottom: 20px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.ham-drawer.is-active  .ham-drawer-wrapper {
  opacity: 1;
  transition-delay: .3s;
}
.ham-drawer.is-closing .ham-drawer-wrapper {
  opacity: 0;
  transition-delay: .3s;
}

.drawer-link,
.drawer-shop-btn,
.drawer-policy a {
  opacity: 0;
  transition: opacity .3s ease;
}

.ham-drawer.is-active .drawer-link,
.ham-drawer.is-active .drawer-shop-btn,
.ham-drawer.is-active .drawer-policy a {
  opacity: 1;
}

.drawer-link::before{
  content: "";
  width: 4px;
  height: 4px;
  background-color: #302F30;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

.drawer-shop-btn{
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  height: 78px;
  border-radius: 10px;
}

.no-scrollbar {
  /* Firefox */
  scrollbar-width: none;
  /* IE / 旧 Edge */
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.is-fixed {
  overflow: hidden;
}

.ols-250 {
  letter-spacing: 0.25em !important;
}

@media screen and (min-width: 992px) {

  /* 全体枠 */
  .viewport-mask,
  .viewport-frame {
    position: fixed;
    inset: 10px;
    border-radius: 30px;
    pointer-events: none;
    z-index: 10005;
    transform-origin: 50% 50%;
    transform: scale(1.12) translateZ(0);
    opacity: 0;
    transition: transform 800ms cubic-bezier(.22,.61,.36,1),
    opacity 800ms ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
  }

  .viewport-mask {
    box-shadow: 0 0 0 9999px #fff;
  }

  .viewport-frame {
    border: 2px solid #fff;
    background: transparent;
  }

  body.is-frame-in .viewport-mask,
  body.is-frame-in .viewport-frame {
    transform: scale(1);
    opacity: 1;
  }


  .header-position-fixed{
    padding-top: 55px;
    padding-left: 78px;
    padding-right: 78px;
  }

  .ham-drawer-wrapper{
    padding-top: 220px;
  }

  .drawer-shop-btn{
    height: 102px;
  }
}

/*---------------------------------------------------
 footer
----------------------------------------------------*/

.footer-shop-bg{
  background-color: #F6F7F7;
}

.footer-nav-list li{
  list-style-type: disc;
}

.footer-info{
  padding-top: 70px;
  padding-bottom: 16.9vw;
}

.footer-info-breadcrumb{
  padding-top: 10px;
  padding-bottom: 16.9vw;
}

.footer-info::before, .footer-info-breadcrumb::before{
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1366 / 771;
  background-image: url(../image/general/footer-bg-path-new.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.breadcrumb{
  padding-bottom: 50px;
  margin-bottom: 0;
}

.breadcrumb ol{
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}

.breadcrumb ol li{
  display: flex;
  align-items: center;
}

.breadcrumb ol li:not(:last-child){
  padding-right: 8px!important;
}

.breadcrumb ol li:not(:first-child)::before{
  content: "›";
  font-size: 1.125rem;
  padding-right: 8px !important;
  line-height: 1;
  transform: translateY(-2px);
}

.footer-info-conts{
  max-width: 390px;
}

.pointer-auto{
  pointer-events: auto!important;
}

.footer-insta{
  width: 30px;
  height: 30px;
}

.footer-info-sub{
  /*margin-left: 20px;*/
}

@media screen and (min-width: 300px) {
  .footer-info-sub{
    /*margin-left: 80px;*/
  }
}

@media screen and (min-width: 576px) {
  .footer-info-sub{
    /*margin-left: 0;*/
  }
}

@media screen and (min-width: 992px) {

  .footer-info{
    padding-top: 8.7vw;
    padding-bottom: 15.5vw;
  }

  .footer-info-breadcrumb{
    padding-top: 20px;
    padding-bottom: 15.5vw;
  }

  .breadcrumb{
    padding-bottom: calc(8.7vw - 45px)!important;
  }

  .footer-policy{
    max-width: 270px;
  }

  .ome-lg-40{
    margin-right: 40px;
  }

  .footer-info-conts{
    max-width: unset;
  }

  .footer-insta{
    width: 25px;
    height: 25px;
  }

}

@media screen and (min-width: 1200px) {

  .ome-lg-100{
    margin-right: 100px;
  }

}

@media screen and (min-width: 1400px) {

  .footer-info{
    padding-top: 10.5vw;
    padding-bottom: 18vw;
  }

  .footer-info-breadcrumb{
    padding-top: 20px;
    padding-bottom: 18vw;
  }

  .breadcrumb{
    padding-bottom: calc(18vw - 45px)!important;
  }

}

/*---------------------------------------------------
 ローディングアニメ連動　ヘッダー出現
----------------------------------------------------*/

body.loading header,
body.loading main,
body.loading footer,
body.loading .viewport-mask,
body.loading .viewport-frame {
  opacity: 0;
  visibility: hidden;
}

body.loading {
  overflow: hidden;
}

/* ローダーを常に最前面 */
#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* フェードアウト時 */
body.loader-done #loader,
#loader.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

:root{
  --header-fade-ms: 600ms;
  --header-delay-ms: 800ms;
}

@media (min-width: 992px){
  :root{
    --header-fade-ms: 1000ms;
    --header-delay-ms: 2200ms;
  }
}

header,
.header-position-fixed{
  opacity: 1;
  transform: none;
  transition: opacity var(--header-fade-ms) ease;
  will-change: opacity;
}

body.home.will-frame-in:not(.frame-in-done) header,
body.home.will-frame-in:not(.frame-in-done) .header-position-fixed{
  opacity: 0;
  transform: none;
  pointer-events: none;
}

body.will-frame-in.frame-in-done header,
body.will-frame-in.frame-in-done .header-position-fixed{
  transition-delay: var(--header-delay-ms);
}

body:not(.will-frame-in) header,
body:not(.will-frame-in) .header-position-fixed{
  opacity: 1 !important;
  transition-delay: 0ms !important;
}

/* =========================================================
   非ホームページでローダー無効時の即時表示保証
   ========================================================= */
body:not(.home) header,
body:not(.home) main,
body:not(.home) footer,
body:not(.home) .viewport-mask,
body:not(.home) .viewport-frame {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
}

/* PC：Lottie表示、画像非表示 */
.img-only {
  display: none;
}

@media (max-width: 991.98px) {
  /* SP：画像表示、Lottie非表示 */
  .lottie-only {
    display: none !important;
  }
  .img-only {
    display: block !important;
  }
}
