@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@100..900&family=Staatliches&display=swap');
/*--------------------------------------------------------------
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/2026flathouse-fair/pc_fixed_img_03.jpg) center / 350px 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: 500;
  font-style: normal;
  overflow: hidden;
}
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
:root {
  --wht-color: #fff;
  --blk-color: #000;
  --gy-color: #F1F1F1;
  --ylw-color: #EFDE75;
  --gr-color: #779C72;
  --bw-color: #726555;
}

main {
	padding-top: 0!important;
}

/* ------------------------------------------------------------ */
/* Font */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.akshar {
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  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;
}
@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;
}
section {
  overflow: hidden;
}
.clip_bg {
  position: relative;
  z-index: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  overflow: hidden;
  width: 100%;
  margin: 0;
}
.clip_bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  mask-image: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2026flathouse-fair/mask_img_01.svg");
  mask-repeat: no-repeat;
  mask-position: 0 100%;
  mask-size: 100%;
  background-color: var(--wht-color);
  background-size: cover;
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
}
/* ------------------------------------------------------------ */
/* 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);
}
/* 点滅 */
.Blink {
  animation: blink 1s step-end infinite;
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 中央からマスク */
/*.MaskCtr {
  -webkit-clip-path: circle(0);
  clip-path: circle(0);
  margin-left: -4.4%;
  margin-top: -10.1333333333%;
  width: 44.8113207547%;
  position: relative;
  z-index: 2; 
}
.MaskCtr.is-show {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: .5s ease;
  -webkit-clip-path: circle(50%);
  clip-path: circle(50%);
  transition: 1s ease;  
}*/
.MaskCtr {
  -webkit-clip-path: circle(0);
  clip-path: circle(0);
}
.MaskCtr.is-show {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: .5s ease;
  -webkit-clip-path: circle(50%);
  clip-path: circle(50%);
  transition: 1s ease;
}
/* 線 */
.line-anim {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.line-anim::after {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--wht-color);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
a.is-highlight-active .line-anim::after, a:hover .line-anim::after {
  width: 100%;
}
/* スクロールダウン */
.Bounce {
  animation-name: bounce;
  transform-origin: center bottom;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-fill-mode: both;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
  }
}
/* 発火タイミング調整 */
.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;
}
/* ------------------------------------------------------------ */
/* hero  */
.hero {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--wht-color);
}
.hero .inner {
  height: 100%;
  align-content: space-between;
  padding: 70px 0 40px;
}
.hero .scroll-down {
  position: absolute;
  right: 5%;
  bottom: 87px;
}
.hero .scroll-down a {
  display: block;
  width: 1px;
  height: 96px;
  background: var(--wht-color);
}
.hero .scroll-down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wht-color);
  animation:
    circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 96px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.hero .cont_area {
  height: 568px;
  background: url(https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2026flathouse-fair/hero_img_04.jpg)center / cover no-repeat;
}
.hero .logo {
  max-width: 63px;
  width: 100%;
  position: absolute;
  top: 17px;
  left: 14px;
}
.hero .ttl_area {
  margin: 0 auto;
}
.hero .ttl_area h2 {
  font-size: 16px;
  margin: 0 auto ;
  letter-spacing: 3px;
}
.hero .ttl_area h2 .small {
  font-size: 13px;
}
.hero .ttl_area h3 {
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
}
.hero .txt_area {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
}
.hero .news_area {
  width: 100%;
  background-color: #EFDE75;
  padding: 24px 15%;
}
.hero .news_area .txt {
  max-width: 281px;
}
/* ------------------------------------------------------------ */
/* Event */


.event-main {
  background: var(--gr-color);
  color: var(--wht-color);
  padding: 60px 0 70px!important;
  margin-bottom: -1px!important;
}
.event-main img {
  width: 100%;
}
.event-main .ttl_area {
  max-width: 230px;
  width: 100%;
  margin: 0 auto 60px;
}
.event-main .txt_area {
  width: 100%;
  margin: 67px auto 89px;
}
.event-main .txt_area .txt {
  max-width: 100%;
  margin: 0 auto 41px;
}
.event-main .event-slider .swiper:not(:first-of-type) {
  margin-top: 18px;
}
.event-main .event-slider-rgt, .event-main .event-slider-lft {
  height: auto;
}
.event-main .event-slider .swiper-slide img {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-main .event-slider .swiper-wrapper {
  transition-timing-function: linear; /*等速で流れ続ける*/
}
/* ------------------------------------------------------------ */
/* Thought */
.thought {
  background: var(--wht-color);
  padding-bottom: 42px;
}
.thought img {
  width: 100%;
}
.thought .ph {
  position: absolute;
}
.thought .ph01 {
  max-width: 188px;
  top: 0;
  right: -35px;
}
.thought .ph02 {
  max-width: 136px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: -40px;
}
.thought .ph03 {
  max-width: 98px;
  bottom: -55px;
  right: 17px;
}
.thought .ttl_area {
  margin: 0 auto 11px;
}
.thought .ttl_area .ttl {
  max-width: 186px;
  margin: 0 auto 20px;
}
.thought .ttl_area h2 {
  font-size: 52px;
  line-height: 49px;
  color: var(--ylw-color);
}
.thought .ph_area {
  padding-top: 195px;
}
.thought .ph_area .txt {
  max-width: 82px;
  margin: 0 auto;
  z-index: 2;
}
.thought .txt_area {
  margin: 83px auto 0;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.5px;
}
/* ------------------------------------------------------------ */
/* Point */
.point {
  background: var(--gy-color);
}
.point img {
  width: 100%;
}
.point .list_item.point01 {
  padding: 32px 0 25px;
}
.point .list_item.point02 {
  padding: 50px 0 0;
  background: var(--wht-color);
}
.point .list_item.point03 {
  padding: 77px 0 92px;
}
.point .list_item .ttl_area {
  width: 100%;
  margin: 0 auto;
}
.point .list_item.point01 .ttl_area {
  max-width: 278px;
  margin-bottom: 20px;
}
.point .list_item.point02 .ttl_area {
  max-width: 249px;
  margin-bottom: 47px;
}
.point .list_item.point03 .ttl_area {
  max-width: 242px;
  margin-bottom: 41px;
}
.point .list_item .cycle {
  position: absolute;
  max-width: 66px;
  aspect-ratio: 1 / 1;
  animation: 15s linear infinite cycle-anim;
}
@keyframes cycle-anim {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.point .list_item.point01 .cycle {
  left: 0;
  top: 0;
}
.point .list_item.point02 .cycle {
  right: 0;
  top: 4px;
}
.point .list_item.point03 .cycle {
  left: 0;
  top: 3px;
}
.point .list_item .swiper-thumbs {
  margin: 0 auto 16px;
  max-width: 280px;
  width: 100%;
}
.point .list_item .swiper-thumbs .swiper-slide-thumb-active::before {
  content: '';
  background: var(--gr-color);
  width: 6px;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 100px;
}
.point01 .slider-thumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: calc(100% / 3);
}
.point01 .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
/* レイアウトのためのスタイル */
.point01 .swiper {
  width: 100%;
}
.point01 .swiper-slide img {
  height: auto;
  width: 100%;
  padding-bottom: 15px;
}
.point01 .swiper-thumbs .swiper-slide img {
  width: 90%;
}
.point01 .slider_cont {
  max-width: 213px;
  margin: 0 auto;
}
.point01 .point01-slider {
  max-width: 213px;
  margin: 0 auto;
}
.point01 .swiper-button-next, .point01 .swiper-button-prev {
  width: 35px;
  height: 35px;
  background: url(https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2026flathouse-fair/icon_img_01.svg) center / cover no-repeat;
}
.point01 .swiper-button-next {
  right: -40px;
  transform: scale(-1, 1);
}
.point01 .swiper-button-prev {
  left: -40px;
}
.point01 .swiper-button-next::after {
  content: '';
}
.point01 .swiper-button-prev::after {
  content: '';
}
.point01 .point01-slider p {
  font-size: 14px;
  line-height: 23px;
}
.point02 .ph_contents {
  width: 100%;
  background: var(--wht-color);
}
.point02 .ph_contents img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point02 .ph_contents p {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  width: 130px;
  background: var(--wht-color);
  z-index: 2;
  font-size: 28px;
}
.point02 .ph_contents .col2 {
  width: 50%;
}
.point02 .ph_contents .col3 {
  width: calc(100% / 3);
}
.point02 .ph_contents .photo_box ul {
  flex-wrap: wrap;
}
.point02 .ph_contents .photo_box .photo_item {
  opacity: 0; /* 初期状態で非表示 */
  /*transform: translateY(20px);  初期位置を下にずらす */
  height: 130px;
  overflow: hidden;
  transition: 0.2s;
}
/* ------------------------------------------------------------ */
/* Event-Sub */
.event-sub {
  background: url(https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2026flathouse-fair/event_img_16.jpg) center bottom / cover no-repeat;
  height: 568px;
  padding-top: 58px;
}
.event-sub img {
  width: 100%;
}
.event-sub .ttl_area {
  max-width: 280px;
  width: 100%;
  margin: 0 auto 25px;
}
.event-sub .txt_area {
  max-width: 254px;
  width: 100%;
  margin: 0 auto;
}
/* ------------------------------------------------------------ */
/* Present */
.present {
  background: #779C72;
  padding: 66px 0 56px;
}
.present img {
  width: 100%;
}
.present .ttl_area {
  max-width: 220px;
  margin: 0 auto 40px;
}
.present .txt_area {
  max-width: 320px;
  margin: 0 auto;
}
/* ------------------------------------------------------------ */
/* Fixed */
#fixed {
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 997;
  transition: 0.5s;
  transform: translateX(100%);
  max-width: max-content;
  width: 70px;
  height: 54px;
  /*border-radius: 100px 0 0 100px;
  background: var(--ylw-color);
  color: var(--blk-color);
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
  padding: 0 10px 0 17px;*/
}
#fixed.is-btn-fixed {
  transform: translateX(0);
}
#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(--bw-color);
  padding-top: 0;
}
.contact .ttl_area h2 {
  max-width: 128px;
  width: 100%;
  margin: 0 auto;
}
/* ------------------------------------------------------------ */
/* 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, #lp-form .contents-wrap .select-pref .select-wrap::before {
  background: var(--bw-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(--bw-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(--bw-color) !important;
  border-bottom: 3px solid var(--bw-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: 1.8rem !important;
  border-radius: 5px;
  padding: 20px 10px !important;
  background-color: var(--wht-color) !important;
}
#lp-form .contents-wrap .select-pref .select-wrap::before {
  right: 20px !important;
}
#lp-form .contents-wrap .select-pref .select-wrap::after {
  top: 39% !important;
  right: 28px !important;
}
#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(--bw-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;
  }
}
@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;
  }
  /* ------------------------------------------------------------ */
  /* Pc */
  body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-attachment: fixed;
  }
  .pc_lft-cont {
    width: 50%;
    display: flex !important;
    align-items: flex-end;
    justify-content: flex-start;
    color: var(--wht-color);
    z-index: 3;
  }
  .pc_lft-cont .inner {
    width: 50%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    padding: 128px 25px 45px 40px;
    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/2026flathouse-fair/pc_fixed_img_02.jpg) center / cover no-repeat;
  }
  .pc_lft-cont h1 {
    max-width: 108px;
    width: 100%;
    position: fixed;
    left: 29px;
    top: 32px;
    z-index: 1;
  }
  .pc_lft-cont .cont_area {
    height: 100%;
  }
  .pc_lft-cont .ttl {
    width: 100%;
    max-width: 592px;
    aspect-ratio: 592 / 617;
    margin: 0;
  }
  .pc_lft-cont .ttl_area h2 {
    font-size: 23px;
    line-height: 31px;
    letter-spacing: 2px;
  }
  .pc_lft-cont .ttl_area .num {
    max-width: 186px;
    width: 100%;
    margin: 10px auto;
  }
  .pc_lft-cont .ttl_area h3.Matrix .bg-wrap, .pc_lft-cont .ttl_area h3.Matrix .bg-wrap .inn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc_lft-cont .ttl_area h3 .fuki {
    font-size: 12px;
    justify-content: center;
    border: 1px solid var(--wht-color);
    border-radius: 100px;
    width: 65px;
    aspect-ratio: 1 / 1;
  }
  .pc_lft-cont .ttl_area h3 .txt {
    font-size: 16px;
    line-height: 25px;
    text-align: left;
    flex: 1;
    margin-left: 7px;
  }
  .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: 1px;
    width: 100%;
  }
  .pc_menu-cont .menu_list .list_item:last-of-type {
    margin-bottom: 0;
  }
  .pc_menu-cont .menu_list .list_item::before {
    content: "";
    background: url(https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2026flathouse-fair/icon_img_03.svg) center / cover no-repeat;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
  }
  .pc_menu-cont .menu_list .list_item.resv_btn {
    background: var(--ylw-color);
    border-radius: 100px;
    color: var(--blk-color);
    padding: 10px 30px;
  }
  .op-animation-comp {
    opacity: 0;
  }
  .op-animation-comp.is-show {
    animation-duration: 0.5s;
    transition-duration: 0.5s;
    opacity: 1;
  }
  /* ------------------------------------------------------------ */
  /* Fixed */
  #fixed {
    width: 126px;
    height: 126px;
    transition: 1s;
  }
  #fixed.is-btn-fixed {
    right: 5%;
  }
}