@charset "UTF-8";
*:target {
    scroll-margin-top: 80px;
  }

.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
.tab {
  display: none !important;
}
@media (max-width: 600px) {
  .sp_none{
    display: none !important;
  }
}
/* タブレット用メディアクエリ */
@media (min-width: 600px) and (max-width: 767px) {
  .tab {
    display: block !important;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}

/* PC用メディアクエリ */
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}

/* 共通 */
body {
  overflow-x: hidden;
}

img {width: 100%;}
a {transition: 0.3s;}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}
/**** 汎用CSS ****/
.flex{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 20px;
}
@media (min-width: 768px) {
  .flex{
    gap: 30px;
  }
}
.fc_red{
  color: #f23;
}
.fc_acc{
  color: #b7171e;
}
.emp{
  font-weight: bold;
}
.txt_center{
  text-align: center;
}
.border{
  border: 1px solid #b7171e;
}
.badge_circle{
  width: 8vw;
  height: 8vw;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: bold;
}
.generic_btn{
  position: relative;
  width: fit-content;
  display: block;
  padding: 20px;
  background: #d2000f;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.wh_btn{
  position: relative;
  width: 100%;
  display: block;
  padding: 10px;
  background: #fff;
  border-radius: 50px;
  color: #41210f;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  .wh_btn{
    width: fit-content;
    margin: 0 auto;
    padding: 20px;
  }
}
.arrow--right:after{
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-radius: 1px;
  right: 16px;
  left: inherit;
  -webkit-transform: rotate(455deg);
  transform: rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
/* 見出しのフォントサイズ（レスポンシブ対応） */
h1.heading {
  font-size: clamp(2rem, 5vw, 3rem); /* 最小32px, 最大48px */
  line-height: 1.3;
  font-weight: bold;
}

h2.heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* 最小24px, 最大40px */
  line-height: 1.4;
  font-weight: bold;
}

h3.heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem); /* 最小24px, 最大32px */
  line-height: 1.5;
  font-weight: bold;
}

p.sub_heading {
  font-size: clamp(1rem, 2.5vw, 1.25rem); /* 最小16px, 最大20px */
  line-height: 1.4;
}
/********************  アニメーション ********************/
/* 点滅 */
.blinking{
	-webkit-animation:blink 1s ease-in-out infinite alternate;
    -moz-animation:blink 1s ease-in-out infinite alternate;
    animation:blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

  .slide-in {
    overflow: hidden;
    display: inline-block;
  }
  .slide-in_inner {
    display: inline-block;
  }
  .leftAnime {
    opacity: 0; /* 事前に透過0にして消しておく */
  }
  .slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 1;
  }
  .slideAnimeRightLeft {
    animation-name: slideTextX-100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 1;
  }
  .effect-fade {
    opacity: 0;
    transform: translate(0, 60px);
    transition: 1.3s;
  }
  .effect-fade-up {
    opacity: 0;
    transform: translate(0, -50px);
    transition: 1.3s;
  }
  .effect-fade-l {
    opacity: 0;
    transform: translate(-60px, 0);
    transition: 1.8s;
  }
  .effect-fade-r {
    opacity: 0;
    transform: translate(60px, 0);
    transition: 1.8s;
  }
  .effect-fade.on,
  .effect-fade-l.on,
  .effect-fade-r.on,
  .effect-fade-up.on {
    opacity: 1;
    transform: translate(0, 0);
  }
  .fade-in,
   .fade-in-normal {
    opacity: 0;
    transition: opacity 1s ease-in-out; /* 1秒かけてフェードイン */
  }
  .fade-in.fadeIn,
   .fade-in-normal.fadeIn {
    opacity: 1;
  }
  /* メインビジュアルフェードイン */
  .fadein{
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    will-change: opacity, transform;
    animation: fadein 2.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.25s;
  }

/* キーフレーム */
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(40px); /* ← もっと下から */
  }
  35% {
    opacity: 0; /* まだ透明 */
  }
  75% {
    opacity: 0.6;
    transform: translateY(15px); /* ← ふわっと感の中間点 */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /* 要素を右の枠外に移動 */
    opacity: 0;
  }
  to {
    transform: translateX(0); /* 要素を元の位置に移動 */
    opacity: 1;
  }
}

@keyframes poyo {
  from, to {
    transform: none;
  }
  10% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(.9);
  }
  60% {
    transform: scale(1.04);
  }
  80% {
    transform: scale(.98);
  }
}

 /************ 背景角丸画像 ************/
.kadomaru:before,
.kadomaru:after{
  content: "";
  background-image: url(../images/kadomaru.webp);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 2;
}
 /* 固定ヘッダー角丸 */
.fixed-header .kadomaru_top:before{
  left: 0;
}
.fixed-header .kadomaru_top:after{
  right: 0;
  transform: scaleX(-1);
}
.fixed-header .kadomaru_bottom:before{
  left: 0;
  bottom: 0;
  transform: scaleY(-1);
}
.fixed-header .kadomaru_bottom:after{
  right: 0;
  bottom: 0;
  transform: scaleX(-1) scaleY(-1);
}
@media (min-width: 768px) {
  .fixed-header .kadomaru_top:before{
    left: 0;
  }
  .fixed-header .kadomaru_top:after{
    right: 0;
    transform: scaleX(-1);
  }
  .fixed-header .kadomaru_bottom:before{
    left: 0;
    bottom: 0;
    transform: scaleY(-1);
  }
  .fixed-header .kadomaru_bottom:after{
    right: 0;
    bottom: 0;
    transform: scaleX(-1) scaleY(-1);
  }
}
/* メインビジュアル角丸 */
  .main-visual .kadomaru_top:before{
    left: 0;
  }
  .main-visual .kadomaru_top:after{
    right: 0;
    transform: scaleX(-1);
  }
  .main-visual .kadomaru_bottom:before{
    left: 0;
    bottom: 0;
    transform: scaleY(-1);
  }
  .main-visual .kadomaru_bottom:after{
    right: 0;
    bottom: 0;
    transform: scaleX(-1) scaleY(-1);
  }
/* メインキャッチ角丸 */
  .main_catch .kadomaru_top:before{
    left: 0;
  }
  .main_catch .kadomaru_top:after{
    right: 0;
    transform: scaleX(-1);
  }
  .main_catch .kadomaru_bottom:before{
    left: 0;
    bottom: 20px;
    transform: scaleY(-1);
  }
  .main_catch .kadomaru_bottom:after{
    right: 0;
    bottom: 20px;
    transform: scaleX(-1) scaleY(-1);
  }
@media (min-width: 768px) {
    .main_catch .kadomaru_bottom:before{
      left: 0;
      bottom: 40px;
      transform: scaleY(-1);
    }
    .main_catch .kadomaru_bottom:after{
      right: 0;
      bottom: 40px;
      transform: scaleX(-1) scaleY(-1);
    }
}
 /* メインカラム角丸 */
  .kadomaru_main_bottom:before{
    left: 0;
    bottom: 0;
    transform: scaleY(-1);
  }
  .kadomaru_main_bottom:after{
    right: 0;
    bottom: 0;
    transform: scaleX(-1) scaleY(-1);
  }
  .kadomaru_main_top:before{
    left: 0;
    top: 0;
  }
  .kadomaru_main_top:after{
    top: 0;
    right: 0;
    transform: scaleX(-1);
  }

.main_wrap.header-active .kadomaru_main_top::before,
.main_wrap.header-active .kadomaru_main_top::after {

  top: var(--fixed-header-height, 0px);
}

/**** 追従header ****/
.fixed-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999999999999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  background: #fff;
  padding: 0 20px 12px 20px;
  transform: translateY(-100%);
  will-change: transform;
}
/* 読み込み後のアニメーション有効化用 */
.fixed-header.is-ready {
  transition: transform 0.5s ease;
}
.fixed-header.is_active {
  transform: translateY(0);
}
.fixed-header__layout{
  position: relative;
  overflow: hidden;
}
.fixed-header__layout {
  width: 100%;
}

@media (min-width: 768px) {
  .fixed-header {
    min-width: 1056px;
    padding: 0 40px 12px 40px;
  }
  .fixed-header__layout:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 176px;
    min-width: 1800px;
    transform: translate(-50%, -50%);
    width: 100%;
    background: url(../images/fixed-header_bg.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }
  .fixed-header__image {
    width: 100%;
    margin: 0 auto;
    max-width: 1056px;
  }
}

.fixed-header__heading {
  background: #fff;
}

.lp_container{
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .lp_container{
    padding: 0 40px;
  }
}
.lp_inner {
  background: #fff;
}
.lp_inner .mod-wrap,
.lp_inner .mod-wrap-sp{
  padding: 25px 15px;
}
@media (min-width: 768px) {
  .lp_inner .mod-wrap,
  .lp_inner .mod-wrap-sp{
    padding: 25px 0;
  }
}
.lp_inner .mod-heading{
  border-left: none;
  position: relative;
  margin: 0;
  line-height: 1.2;
  padding: 2px 0 2px 21px;
}
.lp_inner .mod-heading:before{
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 100%;
  background: #d2000f;
}
/**** 背景雪 ****/
.main_wrap {
  width: 100%;
  height: 100%;
  background: url(../images/body_bg--sp.webp);
  background-position: top center;
  background-repeat: repeat;
  background-size: contain;
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .main_wrap {
    background: none;
  }
  .main_wrap:before{
    content: "";
    position: fixed;
    left: 40px;
    top: 0;
    min-width: calc(1056px - 80px);
    width: calc(100% - 80px);
    height: 100vh;
    background: url(../images/main-visual_bg.webp);
    background-position: top center;
    background-repeat: repeat;
    background-size: cover;
    z-index: -1;
  }
}
/**** 雪のアニメーション用 ****/
.snow-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100%;
  background: transparent;
  z-index: 1;
}

/* main_wrap 内の通常コンテンツは雪より前面に */
.snow_wrap {
  position: relative;
}
.snow_wrap *:not(.snow-canvas) {
  position: relative;
  z-index: 1;
}
/**** メインビジュアル ****/
.main-visual{
  position: relative;
}
.main-visual:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;

  background-position: top center;
  background-repeat: repeat;
  background-size: contain;
}


@media (min-width: 769px) {
  .main-visual:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 1290px;
    width: 100%;
    height: 100%;
    background: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/**** メインコンテンツ ****/
.lp .main_inner{
  width: 100%;
  margin: 0 auto;
  padding: 0 14px;
  position: relative;
}
@media (min-width: 769px) {
  .lp .main_inner{
    width: 100%;
    max-width: 980px;
    padding: 30px 10px 0;
  }
}
.main_catch--bottom{
  position: absolute!important;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 95%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1025px) {
  .main_catch--bottom{
    width: 100%;
    bottom: 0;
    text-align: center;
  }
  .main_catch--bottom img{
    width: 80%;
  }
}
/**** メインキャッチ ****/
.main_catch{
  position: relative;
}
.main_catch_inner{
  width: 100%;
  max-width: 1056px;
  margin: 0 auto;
  padding: 10px;
}
.main_catch--top{
  position: absolute!important;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 95%;
  max-width: 1180px;
  margin: 0 auto;
}
.main_catch--btm{
  width: 100%;
  margin: 0 auto;
  margin-top: -1px;
  position: relative;
}
.main_catch--btm img{
  display: block;
  width: 85%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .main_catch {
    margin-bottom: 36px;
  }
  .main_catch_inner{
    padding: 10px 40px;
  }
  .main_catch--top{
    bottom: 36px;
    text-align: center;
  }
  .main_catch--top img{
    width: 100%;
    max-width: 1056px;
    margin: 0 auto;
    display: block;
  }
}

/**** コラボメニューリスト****/
.menu_heading_wrap{
  padding: 20px 20px 12px 20px;
}
.menu_heading_wrap .heading{
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
.menu_heading_wrap h2.heading{
  letter-spacing: 0.08em;
  font-size: clamp(1.375rem, 4vw, 2.25rem); /* 最小22px, 最大36px */
}
.menu_heading_wrap span{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.875rem, 5vw, 4.5rem); /* 最小30px, 最大72px */
}
.menu_heading_wrap strong{
  font-size: clamp(2.5rem, 5vw, 5.125rem); /* 最小40px, 最大82px */
}
@media (min-width: 768px) {
  .menu_heading_wrap{
    padding: 30px 30px 18px 30px;
  }
  .menu_heading_wrap h2.heading{
    font-size: 36px;
  }
  .menu_heading_wrap span{
    font-size: 72px;
  }
  .menu_heading_wrap strong{
    font-size: 82px;
  }
}
.collabo_menu .flex{
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0;
}
.two_columns.flex{
  gap: 0;
}
.menu_detail_wrap{
  flex: 1;
}
.menu_detail_wrap div{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.menu_detail_text{
  gap: 0!important;
}
@media (min-width: 768px) {
  .collabo_menu .flex{
    gap: 20px;
  }
  .two_columns.flex{
    gap: 40px;
  }
  .menu_detail_wrap div{
    gap: 30px;
  }
}
/* 各メニュー幅・位置 */
.menu02{
  margin-top: -8%;
}
.menu03{
  width: 48%;
  margin-top: 10%;
}
.menu04{
  margin-top: 2%;
}
.menu05{
  position: relative;
  margin-top: 14%;
}
@media (min-width: 768px) {
  .menu02{
    margin-top: -14%;
  }
  .menu03{
    width: 47%;
    margin-top: -3%;
  }
  .menu04{
    margin-top: 1%;
  }
  .menu05{
    position: relative;
    margin-top: 3%;
  }
}

/* メニュー写真 */

.menu01 .menu_pic{
  margin-left: -4%;
  width: 60%;
}
@media (min-width: 768px) {
  .menu01 .menu_pic{
    width: 54%;
  }
}
.menu02 .menu_pic{
  width: 54%;
}
.menu03 .menu_pic{
  width: 95%;
  margin-left: -5%;
}
.menu04 .menu_pic{
  width: 83%;
}
.menu05 .menu_pic{
  width: 99%;
}
@media (min-width: 768px) {
  .menu02 .menu_pic{
    width: 53%;
   margin-top: 0;
  }
  .menu03 .menu_pic{
    width: 92%;
    margin-left: 0;
  }
  .menu04 .menu_pic{
    width: 78%;
  }
  .menu05 .menu_pic{
    width: 96%;
    margin-left: auto;
  }
}
/* メニュー詳細 */

@media (min-width: 768px) {
  .menu01 .menu_detail_wrap {
    margin-top: -10%;
  }
}
.menu02 .menu_detail_wrap {
  width: 48%;
  margin-top: 8%;
}
.menu03 .menu_detail_wrap {
  margin-top: -8%;
}
.menu03 .menu_detail_heading{
  width: 78%;
}
.menu04 .menu_detail_wrap{
  position: absolute;
  bottom: -18%;
  right: 0;
  width: 50%;
}
.menu04 .menu_detail_heading{
  width: 90%;
}
.menu05 .menu_detail_wrap{
  width: 78%;
  flex:initial;
  margin-top: -12%;
}
.menu05 .menu_detail_heading{
  width: 100%;
}
@media (min-width: 768px) {
  .menu02 .menu_detail_heading{
    width: 100%;
  }
  .menu03 .menu_detail_heading{
    width: 100%;
  }
  .menu04 .menu_detail_wrap{
    position: absolute;
    bottom: 6%;
    right: 0;
    width: 50%;
  }
  .menu05 .menu_detail_wrap{
    width: 82%;
    margin-top: -18%;
  }
  .menu05 .menu_detail_heading{
    width: 100%;
  }
  .menu05 .menu_detail_text{
    width: 65%;
  }
}
/* 小さい注意書き用 */
.note_text {
  line-height: 1.4;
  padding-top: 8px;
  font-size: 8px!important;
  color: #fff;
  font-feature-settings: "palt";
  margin-left: auto;
}
@media (min-width: 768px) {
  .note_text {
    font-size: 12px!important;
    font-feature-settings:normal;
  }
}
/**** トッピング****/
.topping{
  margin: 20% 0 18% 0;
}
.topping_inner{
  background: #fff;
  border-radius: 7px;
  position: relative;
  padding: 6vw 4vw 4vw 4vw;
}
@media (min-width: 769px) {
  .topping{
    margin: 10% 0 16% 0;
  }
  .topping_inner{
    padding: 65px 55px;
  }
}
.topping_list{
  margin: 0 auto;
  display: grid;
  gap: 5px;
}
@media (min-width: 600px) {
  .topping_list{
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.topping h2{
  width: 96%;
  position: absolute!important;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (min-width: 600px) {
  .topping h2{
    width: 60%;
    top: -11%;
  }
}
.topping .to_box{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.area-footer ._btn-pagetop a{
  width: 50px;
  height: 50px;
  display: flex;
  padding-top: 4px;
  justify-content: center;
}
.js-pagetop._btn-pagetop.is-active {
  z-index: 9999;
}
.cp-tx{
display:block;
text-align:center;
word-break: normal !important;
padding:10px;
color:#fff;
}
/**** 下部注釈 ****/

.lp .area-contents{
  padding-bottom: 0;
  min-width: 100%;
}
@media (min-width: 768px) {
  .lp .area-contents{
    min-width: 1056px;
  }
}
.area-footer{
  background: #fff;
}
.lp .under_notes {
  background: #fff;
}
.lp .under_notes .area-contents{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}
.lp .mod-breadcrumb{
  background: #fff;
}
.lp .mod-wrap-sp.under_notes{
  padding: 0;
}
.lp .area-contents.under_notes{
  padding-bottom: 0;
}
.lp .area-contents.lp__inner{
  margin: 0 auto;
}
.lp .area-contents.mod-wrap{
  margin: 0 auto;
  padding: 0 4vw;
}
.lp .area-contents .under{
  padding: 20px;
  background: #fff;
}
@media (min-width: 768px) {
  .lp .area-contents .under{
    padding: 60px 40px;
  }
}
.lp .area-header-corporate img, .area-header-brand img, .area-contents img, .area-footer img{
  vertical-align: bottom;
}
