@charset "UTF-8";
/*--------------------------------------------------------------
reset.min.css
リセット関係・clearfixなど

common.css
レイアウト、スタイルを記載したcss

additional.css
公開後レイアウトを記載したcss
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ
　　479：スマートフォン縦：基本・レイアウト指定 */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/pc_fixed_img2.jpg") center / 500px repeat;
  background-attachment: fixed;
  color: var(--blk-color);
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}
main{
  padding-top: 0!important;
}
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
:root {
  --wht-color: #fff;
  --blk-color: #000;
  --grn-color: #125756;
  --red-color: #B91D24;
  --ylw1-color: #F7DB6C;
  --ylw2-color: #CAAE20;
}
/* ------------------------------------------------------------ */
/* Font */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* ------------------------------------------------------------ */
/* Img */
img {
  width: 100%;
}
.deco {
  position: absolute;
}
/* ------------------------------------------------------------ */
/* Link */
a {
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}
a.btn {
  display: block;
  max-width: max-content;
  width: 100%;
  background: var(--grn-color);
  color: var(--wht-color);
  border-radius: 100px;
  padding: 14px 40px;
  font-size: 13px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
a.btn .arrow {
  position: absolute;
  display: inline-block;
  width: 6.8px;
  height: 5.4px;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
a.btn .arrow::before,
a.btn .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 6px;
  border-radius: 9999px;
  background-color: var(--wht-color);
  transform-origin: 50% calc(100% - 0.5px);
}
a.btn .arrow::before {
  transform: rotate(45deg);
}
a.btn .arrow::after {
  transform: rotate(-45deg);
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------------------------------ */
/* Common layouts */
.wrapper {
  width: 100%;
  height: auto;
  margin: 0 auto;
  z-index: 3;
}
.inner {
  width: 90%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.base {
  width: 100%;
  height: auto;
  position: relative;
}
.center {
  text-align: center;
}
.bold, .bold h1, .bold h2, .bold h3, .bold h4, .bold h5, .bold h6 {
  font-weight: 700;
}
/* ------------------------------------------------------------ */
/* background */
/* マスク */
.clip-mask {
  position: relative;
  z-index: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  width: 100%;
  margin: 0;
}
.clip-mask::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  mask-image: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/mask_img1.svg");
  background: var(--red-color);
  mask-repeat: no-repeat;
  mask-position: 0 100%;
  mask-size: 100%;
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
}
/* パララックス */
.clip-parallax {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}
.clip-parallax .clip-parallax-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  /*background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/image.jpg")center / cover no-repeat;*/
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
/* ------------------------------------------------------------ */
/* ttl  txt */
.vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /* 英字や数字も日本語のように正立
	-webkit-text-orientation: upright;
	-ms-text-orientation: upright;
	text-orientation: upright; */
  margin: 0;
  overflow: hidden;
}
.clr {
  color: var(--ylw-color);
}
/* ------------------------------------------------------------ */
/* flex-box */
.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
/* ------------------------------------------------------------ */
/* Animation */
/* フェードイン */
.FadeIn {
  opacity: 0;
  transition-duration: 0.8s;
}
.FadeIn.is-show {
  opacity: 1;
}
/* 上へ */
.InUp {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 1s;
}
.InUp.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* 左へ */
.InLft {
  opacity: 0;
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  transition: 1s;
}
.InLft.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* 右へ */
.InRgt {
  opacity: 0;
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
  transition: 1s;
}
.InRgt.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* シール横 */
.StickerX {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerX.is-show {
  clip-path: inset(0);
}
/* シール縦 */
.StickerY {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerY.is-show {
  clip-path: inset(0);
}
/* マトリックス */
.Matrix .bg-wrap, .Matrix .bg-wrap .inn {
  display: block
}
.Matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
.Matrix .bg-wrap .inn {
  opacity: 0;
  transform: Matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.Matrix.is-show .bg-wrap {
  opacity: 1;
}
.Matrix.is-show .bg-wrap .inn {
  opacity: 1;
  transform: Matrix(1, 0, 0, 1, 0, 0);
}
/* 中央からマスク */
.MaskCtr {
  -webkit-clip-path: circle(0);
  clip-path: circle(0);
  opacity: 0;
}
.MaskCtr.is-show {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  -webkit-clip-path: circle(100%);
  clip-path: circle(100%);
  transition: 2s ease;
}
/* フォーカス */
.FocusIn {
  opacity: 0;
}
.FocusIn.is-show {
  -webkit-animation: FocusIn 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0.2s both;
  animation: FocusIn 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0.2s both;
}
@-webkit-keyframes FocusIn {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes FocusIn {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
/* 線 */
.line-anim {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.line-anim::after {
  position: absolute;
  content: '';
  width: 0;
  height: 10px;
  left: 0;
  bottom: -15px;
  background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/deco_band1.svg") center / 300px repeat-x;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
a.is-highlight-active .line-anim::after, a:hover .line-anim::after {
  width: 100%;
}
/* 結晶 */
.deco.snow {
  opacity: 0;
  transition: all .5s ease;
}
.deco.snow.is-show {
  animation-name: snow-anim;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes snow-anim {
  0% {
    opacity: 0;
    transform: translateY(-100px) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(720deg);
  }
}
/* 発火タイミング調整 */
.in01 {
  animation-delay: .5s !important;
  transition-delay: .5s !important;
}
.in02 {
  animation-delay: .3s !important;
  transition-delay: .3s !important;
}
.in03 {
  animation-delay: .6s !important;
  transition-delay: .6s !important;
}
.in04 {
  animation-delay: .9s !important;
  transition-delay: .9s !important;
}
/* ------------------------------------------------------------ */
/* Loading */
.site_loading {
  width: 100%;
  height: 100vh;
  transition: all 1s;
  background: var(--wht-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.site_loading.is-active {
  opacity: 0;
  visibility: hidden;
}
.site_loading .site_loading_ttl .logo {
  max-width: 250px;
  width: 100%;
  margin: auto;
  text-align: center;
}
.site_loading .inner {
  width: 90%;
}
.site_loading-inview {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ------------------------------------------------------------ */
/* Cont1 */
.cont1 {
  background: var(--grn-color);
  flex-wrap: wrap;
  align-content: space-between;
}
.cont1 .top-box {
  padding-top: 46px;
  margin-bottom: -2%;
  background: var(--grn-color);
  z-index: 2;
}
.cont1 .top-box h2 {
  width: min(270px, 68%);
  margin-left: 7%;
  position: relative;
  z-index: 2;
  margin-bottom: -8px;
}
.cont1 .top-box .holly {
  width: min(130px, 33%);
  right: 0;
  top: 0;
}
.cont1 .top-box .snow1 {
  width: min(20px, 5%);
  top: 35%;
  right: 31%;
}
.cont1 .top-box .snow2 {
  width: min(38px, 9.5%);
  right: 6.5%;
  bottom: -11%;
}
.cont1 .btm-box {
  width: 100%;
  height: 100%;
  aspect-ratio: 400 / 487;
}
.cont1 .btm-box .swiper {
  width: 100%;
}
.cont1 .btm-box h3 {
  width: min(53px, 13%);
  position: absolute;
  left: 8%;
  bottom: 7%;
  z-index: 3;
}
/* ------------------------------------------------------------ */
/* Cont2 */
.cont2 {
  background: var(--wht-color);
  color: var(--blk-color);
  padding-bottom: 118px;
}
.cont2 .day-box {
  padding: 30px 0 38px;
  /* margin-bottom: 103px; */
  margin-bottom: 29%;
}
.cont2 .day-box::before {
  content: "";
  background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/deco_band1.svg") center / cover repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
}
.cont2 .day-box h2 {
  width: min(290px, 73%);
  margin: 0 auto;
}
.cont2 .ttl-box h3 {
  width: min(277px, 69%);
  margin: 0 auto;
}
.cont2 .ttl-box .snow1 {
  width: min(28px, 7%);
  top: -32%;
  right: 28%;
}
.cont2 .ttl-box .snow2 {
  width: min(45px, 11%);
  bottom: -17%;
  left: 4%;
}
.cont2 .ttl-box .stick1 {
  width: min(91px, 23%);
  top: -32%;
  left: 0;
}
.cont2 .ttl-box .girl1 {
  width: min(90px, 23%);
  top: -38%;
  right: 4%;
}
.cont2 .craft-img {
  width: min(331px, 81%);
  margin: 0 auto;
}
.cont2 p {
  text-align: justify;
  font-size: 14px;
  line-height: 25px;
  width: min(315px, 78%);
  margin: 13px auto 60px;
}
.cont2 .main-img {
  width: min(315px, 78%);
  margin-bottom: 33px;
}
.cont2 .sub-img-box {
  width: 100%;
}
.cont2 .sub-img {
  width: min(162px, 40%);
  margin: 0;
}
.cont2 .snow3 {
  width: min(50px, 13%);
  top: 0;
  right: -35%;
  left: 0;
  margin: 0 auto;
}
.cont2 .snow4 {
  width: min(28px, 7%);
  top: 0;
  right: -10%;
  left: 0;
  bottom: 0;
  margin: auto;
}
.cont2 .girl2 {
  width: min(67px, 17%);
  margin: 0 5% 0 0;
}
.cont2 .list-img {
  width: min(232px, 73%);
  margin: 39px auto 46px;
}
.cont2 .snow5 {
  width: min(36px, 9%);
  left: 9%;
  bottom: 4%;
}
/* ------------------------------------------------------------ */
/* Cont3 */
.cont3 {
  background: var(--red-color);
  color: var(--wht-color);
  padding: 63px 0 124px;
  margin-top: -1px;
}
.cont3 .inner {
  width: min(348px, 90%);
  margin: 0 auto;
}
.cont3 .img-box {
  width: min(276px, 80%);
  margin: 0 auto;
}
.cont3 .img-box .snow1 {
  width: min(28px, 10%);
  top: -14%;
  right: 2%;
}
.cont3 .img-box .snow2 {
  width: min(45px, 16%);
  right: -15%;
  top: -2%;
}
.cont3 .ttl-box h2 {
  width: min(313px, 90%);
  margin: 28px auto 16px;
}
.cont3 .ttl-box p {
  font-size: 15px;
  line-height: 26px;
}
.cont3 .ttl-box p .clr {
  font-weight: 500;
  color: var(--ylw1-color);
}
.cont3 .ttl-box p .att {
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
  text-align: justify;
  display: block;
  margin: 16px auto 0;
  width: 80%;
}
.cont3 .present-box {
  width: min(328px, 92%);
  background: var(--wht-color);
  padding: 37px 10% 45px;
  margin: 51px auto 0;
  border-radius: 6px;
}
.cont3 .present-box h3 {
  width: min(172px, 54%);
  margin: 0 auto;
  position: absolute;
  top: -6%;
  right: 0;
  left: 0;
}
.cont3 .present-box .txt-img {
  width: 90%;
  margin: 0 auto 20px;
}
.cont3 .present-box .btn {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -7%;
  margin: 0 auto;
}
.cont3 .snow3 {
  width: min(50px, 12%);
  left: 8%;
  bottom: 3.5%;
}
.cont3.sub {
  padding: 10px 0 144px;
}
.cont3.sub .inner {
  width: 100%;
}
.cont3.sub .ttl-box h2 {
  margin-top: 0;
}
.cont3.sub .img-box {
  width: 100%;
}
.cont3.sub .present-box {
  width: 84%;
}
.cont3.sub .present-box {
  margin-top: 62px;
}
.cont3.sub .present-box .txt-img {
  width: 100%;
}
.cont3.sub .snow1 {
  width: min(28px, 7%);
  top: 0;
  right: 25%;
}
.cont3.sub .snow2 {
  width: min(46px, 12%);
  top: 2%;
  right: 8%;
  margin-top: 2%;
}
.cont3.sub .snow3 {
  width: min(55px, 18%);
  left: 9%;
  bottom: 4%;
}
/* ------------------------------------------------------------ */
/* Cont4 */
.cont4 {
  color: var(--blk-color);
  padding: 150px 0 124px;
}
.cont4::before {
  content: "";
  background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/deco_band1.svg") center / cover no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
}
.cont4 .clip-parallax-bg {
  background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/cont4_img17.jpg") center / 400px repeat;
}
.cont4 .curtain1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.cont4 .ttl-box {
  width: min(282px, 70%);
  margin: 0 auto;
}
.cont4 .ttl-box h2 {
  width: 90%;
  margin: 0 auto;
}
.cont4 .ttl-box h3 {
  margin: 40px auto 25px;
}
.cont4 .mh-list {
  margin-top: 24px;
}
.cont4 .mh-list .list-item:nth-of-type(1) {
  padding-top: 30%;
  margin-bottom: 28px;
}
.cont4 .mh-list .list-item .txt-img {
  margin-left: 9%;
  margin-right: 0;
}
.cont4 .mh-list .list-item:nth-of-type(1) .txt-img {
  width: min(313px, 78%);
}
.cont4 .mh-list .list-item:nth-of-type(2) .txt-img {
  width: min(238px, 60%);
  margin-top: 8px;
}
.cont4 .mh-list .list-item:nth-of-type(3) .txt-img {
  width: min(306px, 77%);
  margin-top: -30px;
}
.cont4 .mh-list .list-item .main-img {
  width: 100%;
}
.cont4 .mh-list .list-item:nth-of-type(3) .sub-img {
  width: min(168px, 42%);
  margin: 0 4.5% 0 0;
}
.cont4 .mh-list .list-item .sub-img-box {
  align-items: flex-end;
}
.cont4 .mh-list .list-item .deco1 {
  width: min(138px, 34%);
  left: 0;
  top: 0;
}
.cont4 .mh-list .list-item .deco2 {
  width: min(78px, 20%);
  right: 7%;
  top: 0;
}
.cont4 .mh-list .list-item .deco3 {
  width: min(63px, 16%);
  right: 12.5%;
  top: 15%;
  bottom: 0;
  margin: auto 0;
}
.cont4 .mh-list .list-item .deco4 {
  width: min(115px, 36%);
  margin: 0 0 -6% 7%;
}
.cont4 .mh-list .list-item .deco5 {
  width: min(106px, 27%);
  right: 9.8%;
  bottom: -12%;
}
/* ------------------------------------------------------------ */
/* Cont5 */
.cont5 {
  background: var(--wht-color);
  padding-bottom: 98px;
}
.cont5 .ttl-box {
  padding: 48px 0 51px;
}
.cont5 .ttl-box::before, .cont5 .ttl-box::after {
  content: "";
  background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/deco_band1.svg") center / cover no-repeat;
  position: absolute;
  left: 0;
  width: 100%;
  height: 15px;
}
.cont5 .ttl-box::before {
  top: 0;
}
.cont5 .ttl-box::after {
  bottom: 0;
}
.cont5 .ttl-box h2 {
  width: min(252px, 63%);
  margin: 0 auto;
}
.cont5 .day-box h3 {
  width: min(290px, 73%);
  margin: 25px auto 130px;
}
.cont5 .txt-box {
  width: min(277px, 69%);
  margin: 0 auto;
}
.cont5 .txt-box .snow1 {
  width: min(28px,9%);
  top: -44%;
  right: 17%;
}
.cont5 .txt-box .snow2 {
  width: min(55px,18%);
  left: -7%;
  bottom: -21%;
}
.cont5 .txt-box .girl1 {
  width: min(78px,25%);
  right: -3%;
  top: -29%;
}
.cont5 .txt-box .girl2 {
  width: min(64px,21%);
  left: -6%;
  top: -33%;
}
.cont5 .craft-img {
  width: min(331px, 83%);
  margin-bottom: 20px;
}
/* ------------------------------------------------------------ */
/* Cont6 */
.cont6 {
  background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/cont6_img1.jpg") center / cover no-repeat;
  min-height: 710px;
  max-height: 710px;
  height: 100vh;
}
.cont6::before {
  content: "";
  background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/deco_band2.svg") center / cover no-repeat;
  width: 100%;
  height: 25px;
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
}
.cont6 h2 {
  position: absolute;
  left: 9.5%;
  bottom: 78px;
  width: min(173px, 43%);
}
.cont6 .snow1 {
  width: min(48px, 12%);
  left: 23%;
  top: 11%;
}
.cont6 .snow2 {
  width: min(33px, 8%);
  left: 9.5%;
  top: 18%;
}
.cont6 .snow3 {
  width: min(61px, 15%);
  right: 11%;
  bottom: 19%;
}
/* ------------------------------------------------------------ */
/* Cont7 */
.cont7 {
  background: var(--grn-color);
  color: var(--wht-color);
  padding: 85px 0 118px;
}
.cont7 .inner {
  width: min(334px, 84%);
}
.cont7 .txt-box h2 {
  width: max-content;
  font-size: 14px;
  margin: 0 auto 23px;
}
.cont7 .txt-box h2 .logo {
  width: 132px;
  vertical-align: middle;
  margin-right: 16px;
}
.cont7 .txt-box p {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.85px;
}
.cont7 .txt-box p .clr {
  color: var(--ylw1-color);
}
.cont7 .swiper {
  padding-bottom: 30px;
}
.cont7 .slide-box {
  margin-top: 68px;
}
.cont7 .swiper-pagination {
  bottom: 0;
}
.cont7 .swiper-pagination-bullet {
  opacity: 1;
  background: var(--grn-color);
  border: 1px solid var(--wht-color);
}
.cont7 .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--wht-color);
  border: 1px solid var(--wht-color);
}
.cont7 .snow1 {
  width: min(28px, 8%);
  left: 0;
  top: -18%;
}
.cont7 .snow2 {
  width: min(46px, 14%);
  right: -3%;
  top: 20%;
  bottom: 0;
  margin: auto 0;
}
.cont7 .snow3 {
  width: min(28px, 8%);
  left: 10%;
  bottom: 6%;
}
/* ------------------------------------------------------------ */
/* Fixed */
#fixed {
  position: fixed;
  right: 0;
  bottom: 3%;
  z-index: 997;
  transition: 0.5s;
  transform: translateX(100%);
  max-width: max-content;
  width: min(97px, 24%);
  aspect-ratio: 1 / 1;
}
#fixed.is-btn-fixed {
  transform: translateX(0);
  right: 4%;
}
#fixed.is-btn-hide {
  transform: translateX(100%);
}
#fixed a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
#fixed a:last-child {
  border-right: none;
}
/* ------------------------------------------------------------ */
/* Footer */
footer {
  padding: 23px 0 15px;
}
footer h5 {
  max-width: 154px;
  margin-bottom: 15px;
}
footer h6 {
  font-size: 13px;
}
footer p {
  font-size: 12px;
  line-height: normal;
  margin: 10px 0 30px;
}
footer small {
  font-size: 11px;
  display: block;
}
/* ------------------------------------------------------------ */
/* Contact */
.contact {
  background: var(--grn-color);
  padding-top: 25px;
}
.contact .ttl_area h2 {
  width: 100%;
  margin: 0 auto;
  font-size: 15px;
  color: var(--wht-color);
}
/* ------------------------------------------------------------ */
/* lp-form */
#lp-form {
  padding: 15px 0 35px !important;
}
#lp-form form {
  padding: 34px 0 10px !important;
}
#lp-form, #send-complete .lp-bg-color, #send-error .lp-bg-color {
  background: var(--grn-color) !important;
}
#lp-form * {
  font-family: 'Noto Sans JP', sans-serif !important;
}
#lp-form form .form-container dl dt, #lp-form form .form-container dl dd .emphasis-txt, #lp-form form .form-notes .notes-ttl, #lp-form form .form-notes li, #lp-form form .merchant-container .container-ttl, #lp-form form .merchant-container .merchant-list .item-name span, #lp-form form .merchant-container .merchant-list .item-name span:last-of-type, #lp-form form .merchant-container .merchant-list .merchant-item span:first-of-type, #lp-form form .merchant-container .merchant-list .merchant-item span, #lp-form form .form-container dl dd .choice-txt, #lp-form form .form-container dl dt .item-name, #lp-form form .form-container dl dt span, #lp-form form .form-container dl .select-wrap select, #lp-form form .form-container dl dd input, #lp-form form .form-container .txt dd textarea, #lp-form .js-confirm input, #lp-form .js-confirm select, #lp-form .js-confirm .select-wrap, #lp-form form .form-container dl dd input, #lp-form form .form-container dl .select-wrap, #lp-form form .form-container .txt dd, #lp-form form .form-container dl .select-wrap select, #lp-form .contents-wrap .select-pref .select-wrap .choices, #lp-form form .form-container dl dd .auto-btn, #lp-form .contents-wrap #empty-result, #send-complete .lp-bg-color, #send-error .lp-bg-color {
  color: var(--wht-color) !important;
}
#lp-form form .form-container dl dd input, #lp-form form .form-container dl .select-wrap select, #lp-form form .form-container .txt dd textarea, #lp-form form .form-container dl .select-wrap::after {
  color: var(--blk-color) !important;
}
#lp-form form .check-btn, #lp-form .contents-wrap .select-pref .select-wrap .choices, #lp-form .js-confirm .confirm-btns .back-btn, #lp-form .js-confirm .confirm-btns .submit-btn {
  color: var(--grn-color) !important;
}
#lp-form form .check-btn, #lp-form form .form-container dl dd .choice-txt::before, #lp-form .js-confirm input, #lp-form .js-confirm select, #lp-form .js-confirm .select-wrap, #lp-form .js-confirm .confirm-btns .back-btn, #lp-form .js-confirm .confirm-btns .submit-btn {
  background: var(--wht-color) !important;
}
#lp-form form .merchant-container, #lp-form form .form-container dl dt, #lp-form form .form-container dl dd, #lp-form form .form-container dl dd .p-postal-code, #lp-form form .form-container dl dd .auto-btn {
  width: 100% !important;
}
#lp-form form .form-container .input-block-text, #lp-form form .form-notes, #lp-form form .form-container dl {
  width: 95% !important;
}
#lp-form .contents-wrap, #lp-form form .merchant-container, #lp-form form .form-container, #lp-form form .form-container .txt {
  padding: 0 !important;
}
#lp-form form .form-container .input-block-text, #lp-form .contents-wrap #empty-result, #lp-form form .form-container dl dt {
  text-align: left !important;
}
#lp-form .contents-wrap {
  width: 85% !important;
}
#lp-form .contents-wrap .select-pref, #lp-form form .merchant-container {
  margin: 0 auto !important;
}
#lp-form form .merchant-container .container-ttl {
  font-size: 18px !important;
  margin: 0 auto 17px !important;
}
#lp-form form .form-container .input-block-text, #lp-form form .form-container dl dt, #lp-form form .form-container dl dd .auto-btn, #lp-form form .form-container dl dd input, #lp-form form .form-container dl .select-wrap select, #lp-form form .form-container .txt dd textarea, #lp-form form .merchant-container .merchant-list .item-name span, #lp-form form .merchant-container .merchant-list .merchant-item span, #lp-form .contents-wrap #empty-result {
  font-size: 13px !important;
}
#lp-form form .form-container .input-block-text {
  line-height: 28px !important;
  margin: 40px auto 20px !important;
}
#lp-form .contents-wrap .note, #lp-form .contents-wrap .select-pref .select-note, #lp-form .contents-wrap .form-ttl, #lp-form .contents-wrap .form-ttl::before, #lp-form .contents-wrap .form-ttl::after, #lp-form form .countermeasure, #lp-form form .form-container .input-block-ttl {
  display: none !important;
}
#lp-form form .form-notes {
  border: 1px solid var(--wht-color) !important;
  padding: 20px 15px !important;
  margin: 40px auto !important;
}
#lp-form form .form-container dl {
  display: block !important;
}
#lp-form form .form-container dl dt {
  margin: 0 0 5px !important;
}
#lp-form form .form-container dl dd .auto-btn {
  padding: 10px !important;
  border: 1px solid var(--blk-color) !important;
  background-color: var(--blk-color) !important;
  margin: 10px auto 0 !important;
}
#lp-form form .form-container dl .select-wrap::after {
  top: 20px !important;
  border-top: 9px solid var(--blk-color) !important;
}
#lp-form form .check-btn {
  margin-bottom: 35px !important;
}
#lp-form form .form-container dl dd input, #lp-form form .form-container dl .select-wrap, #lp-form form .form-container .txt dd {
  border: 1px solid var(--blk-color) !important;
}
#lp-form form .form-container .txt dd {
  line-height: normal;
}
#lp-form form .form-container dl dd .choice-txt::before {
  border: 1px solid var(--blk-color) !important;
}
#lp-form form .form-container dl dd .choice-txt::after {
  border-right: 3px solid var(--grn-color) !important;
  border-bottom: 3px solid var(--grn-color) !important;
}
#lp-form form .form-container dl dd input {
  padding: 13px 7px !important;
}
#lp-form form .merchant-container .merchant-list .merchant-item span:first-of-type {
  width: calc(100% - 30px) !important;
}
#lp-form .contents-wrap .select-pref .select-wrap .choices {
  font-size: 18px !important;
  border-radius: 5px;
  padding: 20px 10px !important;
  background-color: var(--wht-color) !important;
}
#lp-form .contents-wrap .select-pref .select-wrap::before {
  display: none !important;
}
#lp-form .contents-wrap .select-pref .select-wrap::after {
  top: 39% !important;
  right: 28px !important;
  width: 12px !important;
  height: 13px !important;
  transform: rotate(0deg) !important;
  border: none !important;
  background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/icon_arrow1.svg") center / cover no-repeat;
}
#lp-form form .merchant-container .merchant-list .item-name {
  border-top: 2px solid var(--wht-color) !important;
  border-bottom: 2px solid var(--wht-color) !important;
}
#lp-form form .merchant-container .merchant-list .merchant-item {
  border-bottom: 1px dashed var(--wht-color) !important;
}
#lp-form .js-confirm .confirm-btns .back-btn {
  border: 1px solid var(--grn-color) !important;
}
#lp-form .contents-wrap #empty-result {
  /* 取扱店がなかった場合 */
  margin: 15px 0 0 !important;
}
#lp-form form .merchant-container .error-text, #lp-form form .form-container dl dd .error-text {
  position: unset !important;
  color: var(--ylw-color) !important;
  font-size: 15px !important;
}
@media screen and (min-width: 375px) {}
@media screen and (min-width: 425px) {}
@media screen and (min-width: 480px) {
  /* スマートフォン横 */
  /* ------------------------------------------------------------ */
  /* 共通 */
  .wrapper {
    max-width: 320px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 680px) {}
@media screen and (min-width: 768px) {
  /* タブレット縦 / スマートフォン横 */
}
@media screen and (min-width: 1025px) {
  /* デスクトップ/タブレット横 */
  /* ------------------------------------------------------------ */
  /* 共通 */
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .wrapper {
    max-width: 320px;
    margin: 0;
  }
  /* ------------------------------------------------------------ */
  /* Pc */
  body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-attachment: fixed;
  }
  main{
    padding-top: 0!important;
  }
  .pc_lft-cont {
    width: 50%;
    color: var(--wht-color);
    z-index: 3;
  }
  .pc_lft-cont .inner {
    width: 50%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    display: flex !important;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
    background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2025xmas/pc_fixed_img_02.jpg") center / cover no-repeat;
    max-width: 790px;
    aspect-ratio: 790 / 891;
    padding: 0 2%;
  }
  .pc_lft-cont .deco.snow1 {
    width: min(44px, 5%);
    top: -7%;
    right: 9%;
  }
  .pc_lft-cont .deco.snow2 {
    width: min(32px, 4%);
    top: -4%;
    left: 7%;
    margin: auto;
  }
  .pc_lft-cont .deco.snow3 {
    width: min(50px, 6%);
    bottom: 29%;
    left: 0;
    right: -21%;
    margin: 0 auto;
  }
  .pc_lft-cont .deco.snow4 {
    width: min(23px, 3%);
    bottom: 25%;
    left: 4%;
    right: 0;
    margin: 0 auto;
  }
  .pc_rgt-cont {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .pc_menu-cont {
    flex: 1;
    display: flex !important;
    z-index: 2;
    align-items: center;
    justify-content: flex-start;
  }
  .pc_menu-cont .inner {
    width: calc(50% - 320px);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--wht-color);
    padding: 45px 43px;
    height: max-content;
  }
  .pc_menu-cont .menu_area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    max-width: 194px;
    width: 100%;
    margin: 0 auto;
  }
  .pc_menu-cont .menu_list {
    width: 100%;
  }
  .pc_menu-cont .menu_list .list_item {
    margin-bottom: 31px;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 3px;
    width: 100%;
    padding-bottom: 15px;
  }
  .pc_menu-cont .menu_list .list_item:last-of-type {
    margin-bottom: 0;
  }
  .pc_menu-cont .menu_list .list_item.resv_btn {
    background: var(--red-color);
    border-radius: 100px;
    color: var(--wht-color);
    padding: 13px 20px;
    transition: 0.3s;
  }
  .pc_menu-cont .menu_list .list_item.resv_btn:hover {
    background: var(--ylw2-color);
  }
  .op-animation-comp {
    opacity: 0;
  }
  .op-animation-comp.is-show {
    opacity: 1;
    transition-duration: 0.5s;
  }
  /* ------------------------------------------------------------ */
  /* Fixed */
  #fixed {
    display: none;
  }
}
@media screen and (max-width: 559px) {
  /* パララックス
  .cont1 {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .cont1 .btm-box .swiper {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
  } */
}