@charset "UTF-8";

@font-face {
	font-family: "TsunagiGothic";
	font-weight: 400;
	src:
		url("https://www.bino.jp/wp-content/themes/bino-wp/fonts/lp/2026flat-or-skip/TsunagiGothic.woff2") format("woff2"),
		url("https://www.bino.jp/wp-content/themes/bino-wp/fonts/lp/2026flat-or-skip/TsunagiGothic.woff") format("woff");
}

/*--------------------------------------------------------------
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/2026flat-or-skip/pc_fixed_img_1.webp") center / cover no-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: "TsunagiGothic", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	overflow: hidden;
}

* {
	font-family: "TsunagiGothic", sans-serif !important;
}

main {
	padding-top: 0 !important;
}

.pc {
	display: none !important;
}

.sp {
	display: block !important;
}

:root {
	--wht-color: #fff;
	--blk-color: #000;
	--gy-color: #d3d3d1;
	--drk-gy-color: #7a7873;
	--be-color: #e9e6dc;
	--red-color: #b91c24;
}

/* ------------------------------------------------------------ */
/* Font */
.zen-kaku-gothic-new {
	font-family: "Zen Kaku Gothic New", sans-serif!important;
	font-weight: 500;
	font-style: normal;
}

.oswald {
	font-family: "Oswald", sans-serif!important;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.tsunagi-gothic {
	font-family: "TsunagiGothic", sans-serif!important;
	font-weight: 400;
}

.center {
	text-align: center;
}

.bold,
.bold h1,
.bold h2,
.bold h3,
.bold h4,
.bold h5,
.bold h6 {
	font-weight: 700;
}

.common-ttl h2 {
	font-size: 30px;
	line-height: 33px;
	margin-bottom: 15px;
}

.common-ttl h3 {
	font-size: 22px;
	line-height: 32px;
}

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;
}

/* ------------------------------------------------------------ */
/* Img */
img {
	width: 100%;
}

/* ------------------------------------------------------------ */
/* 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(--red-color);
	color: var(--wht-color);
	border-radius: 8px;
	padding: 14px 40px;
	font-size: 15px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

.arrow-btn {
	background: var(--blk-color);
	width: 28px;
	height: 28px;
	aspect-ratio: 1 / 1;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.arrow-btn.wht {
	background: var(--wht-color);
}

.arrow-btn.wht .arrow-btm::before,
.arrow-btn.wht .arrow-btm::after,
.arrow-btn.wht .arrow-btm {
	background-color: var(--red-color);
}

@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;
}

.flex-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

/* 矢印下 */
.arrow-btm {
	position: relative;
	display: inline-block;
	width: 2px;
	height: 13px;
	margin: 0 5.7px;
	border-radius: 9999px;
	background-color: var(--wht-color);
}

.arrow-btm::before,
.arrow-btm::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc(50% - 1px);
	width: 2px;
	height: 10px;
	border-radius: 9999px;
	background-color: var(--wht-color);
	transform-origin: 50% calc(100% - 1px);
}

.arrow-btm::before {
	transform: rotate(45deg);
}

.arrow-btm::after {
	transform: rotate(-45deg);
}

/* 矢印右 */
.arrow-rgt {
	position: relative;
	display: inline-block;
	width: 13px;
	height: 2px;
	margin: 5.7px 0;
	border-radius: 9999px;
	background-color: var(--wht-color);
}

.arrow-rgt::before,
.arrow-rgt::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	width: 10px;
	height: 2px;
	border-radius: 9999px;
	background-color: var(--wht-color);
	transform-origin: calc(100% - 1px) 50%;
}

.arrow-rgt::before {
	transform: rotate(45deg);
}

.arrow-rgt::after {
	transform: rotate(-45deg);
}

/* 矢印左 */
.arrow-lft {
	position: relative;
	display: inline-block;
	width: 13px;
	height: 2px;
	margin: 5.7px 0;
	border-radius: 9999px;
	background-color: var(--wht-color);
}

.arrow-lft::before,
.arrow-lft::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 10px;
	height: 2px;
	border-radius: 9999px;
	background-color: var(--wht-color);
	transform-origin: 1px 50%;
}

.arrow-lft::before {
	transform: rotate(45deg);
}

.arrow-lft::after {
	transform: rotate(-45deg);
}

/* ------------------------------------------------------------ */
/* 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/2026flat-or-skip/mask_img_1.svg");
	background: var(--wht-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/2026flat-or-skip/image.jpg")center / cover no-repeat;*/
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
}

/* ------------------------------------------------------------ */
/* 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 {
	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);
}

.StickerX-Lft {
	clip-path: inset(0 0 0 100%);
	transition: clip-path 0.8s cubic-bezier(0.37, 0, 0.63, 1);
	transition-property: clip-path;
}

/* シール縦 */
.StickerY {
	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);
}

.Sticker.is-show .StickerX,
.Sticker.is-show .StickerX-Lft {
	clip-path: inset(0);
	transition-delay: 1s;
}

.Sticker.is-show .StickerY {
	clip-path: inset(0);
	transition-delay: 1s;
}

/* マトリックス */
.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);
}

/* フォーカス */
.FocusIn {
	opacity: 0;
}

.FocusIn.is-show {
	-webkit-animation: FocusIn 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s both;
	animation: FocusIn 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 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;
	}
}

/* カタカタ */
.katakata {
	width: fit-content;
	animation: katakata 0.64s steps(1) infinite alternate;
}

@keyframes katakata {
	0% {
		transform: rotate(-4deg);
	}

	50% {
		transform: rotate(4deg);
	}

	100% {
		transform: rotate(-4deg);
	}
}

/* 線 */
.line-anim {
	display: inline-block;
	position: relative;
	z-index: 2;
}

.line-anim::after {
	position: absolute;
	content: "";
	width: 0;
	height: 1px;
	left: 0;
	bottom: -5px;
	-webkit-transition: 0.8s;
	transition: 0.8s;
	background: var(--wht-color);
}

a.is-highlight-active .line-anim::after,
a:hover .line-anim::after {
	width: 100%;
}

/* 発火タイミング調整 */
.in01 {
	animation-delay: 0.5s !important;
	transition-delay: 0.5s !important;
}

.in02 {
	animation-delay: 0.3s !important;
	transition-delay: 0.3s !important;
}

.in03 {
	animation-delay: 0.6s !important;
	transition-delay: 0.6s !important;
}

.in04 {
	animation-delay: 0.9s !important;
	transition-delay: 0.9s !important;
}

/* ------------------------------------------------------------ */
/* Accordion */
/* ヘッダー部分 */
.accordion-header {
	position: relative;
	padding: 25px 40px 25px 17px;
	cursor: pointer;
	background: var(--blk-color);
	color: var(--wht-color);
	font-size: 15px;
	line-height: 25px;
}

.accordion-title {
	font-weight: bold;
}

/* 開閉アイコン */
.accordion .arrow-btn {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

.accordion .arrow-btn.wht .arrow-btm::before,
.accordion .arrow-btn.wht .arrow-btm::after,
.accordion .arrow-btn.wht .arrow-btm {
	background: var(--blk-color);
}

.accordion .accordion-item.is-active .arrow-btm {
	transform: rotate(180deg) translateY(0%);
}

/* コンテンツ部分 */
.accordion-content {
	height: 0;
	overflow: hidden;
	transition: height 0.3s;
	background: var(--be-color);
	border-radius: 0 0 10px 10px;
}

.accordion-content-inner {
	padding: 25px 18px;
	font-size: 14px;
	line-height: 27px;
}

/* ------------------------------------------------------------ */
/* Slider */
.life-slider {
	width: min(93%, 298px);
	margin-inline: auto;
}

/* 額縁が外側にはみ出せるように、ここにはoverflow: hiddenを付けない */
.life-slider-stage {
	position: relative;
	padding: 14px;
}

/* 写真を切り抜く領域 */
.life-slider-swiper {
	position: relative;
	z-index: 2;
	width: 100%;
	overflow: hidden;
}

.cont3 .life-slider-swiper {
	aspect-ratio: 3 / 4;
}

.life-slide {
	position: relative;
	width: 100%;
	height: 100%;
}

.life-slide-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Swiperより上に表示するが、スワイプやクリックを邪魔しない */
.life-slider-frame {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: fill;
	pointer-events: none;
	user-select: none;
}

.life-slider-controls {
	display: grid;
	grid-template-columns: 44px 1fr 44px;
	align-items: center;
	gap: 20px;
	margin-top: 18px;
}

.life-slider-prev,
.life-slider-next {
	display: grid;
	width: 36px;
	height: 36px;
	min-height: auto;
	aspect-ratio: 1 / 1;
	padding: 0;
	place-items: center;
	color: var(--wht-color);
	background: var(--blk-color);
	border: 0;
	border-radius: 9999px;
	cursor: pointer;
}

.life-slider-next {
	justify-self: end;
}

.life-slider-pagination {
	position: static;
	font-variant-numeric: tabular-nums;
	text-align: center;
	letter-spacing: 0.12em;
}

/* 無限ループ：CSSのみ */
.loop-slider {
	display: flex;
	overflow: hidden;
}

.loop-slider .slider {
	animation: scroll-left 20s infinite linear 0.5s both;
	display: flex;
}

.loop-slider .slide {
	width: calc(320px / 3);
}

.loop-slider .slide img {
	display: block;
	width: 100%;
}

@keyframes scroll-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

/* ------------------------------------------------------------ */
/* 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(--red-color);
	flex-wrap: wrap;
	align-content: space-between;
	height: 100svh;
	width: 100%;
}

.cont1 .logo {
	position: absolute;
	top: 3%;
	left: 5%;
	width: 20%;
}

.cont1 .cont1-slider {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.cont1 .ttl-box {
	z-index: 2;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cont1 h2 {
	width: 45%;
	margin: -5% auto 0;
}

.cont1 .btm-box {
	position: absolute;
	bottom: 3%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
}

.cont1 h3 .ttl {
	width: 87%;
	margin-bottom: 15px;
}

.cont1 h3 .date {
	width: 52%;
	margin-bottom: 13px;
}

.cont1 .copy {
	width: 7%;
	position: absolute;
	right: 9%;
	top: -15%;
	bottom: 0;
	margin: auto 0;
}

.cont1 .swiper-slide img {
	height: 100%;
	object-fit: cover;
}

@media screen and (min-width: 768px) {
	.cont1 {
		height: 100%;
		aspect-ratio: 80 / 143;
	}
}

/* ------------------------------------------------------------ */
/* Cont2 */
.cont2 {
	background: var(--be-color);
	color: var(--blk-color);
	padding-bottom: 145px;
	margin-bottom: -1px;
}

.cont2 .copy-box {
	padding: 71px 0 68px;
}

.cont2 .copy-box h2 {
	width: 34%;
	/* max-width: 110px; */
	margin: 0 auto;
}

.cont2 .vs-box .vs {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	margin: auto;
	width: 27.5%;
}

.cont2 .vs-item h2 {
	position: absolute;
	width: 20%;
	max-width: 66px;
}

.cont2 .flat {
	margin-bottom: -6%;
}

.cont2 .flat h2 {
	top: 15px;
	left: 5%;
}

.cont2 .skip h2 {
	top: 35px;
	right: 5%;
}

.cont2 .common-ttl {
	padding: 27px 0 33px;
}

.cont2 .common-ttl h2 {
	width: 90%;
	margin: 0 auto;
}

.cont2 .common-ttl p {
	font-size: 17px;
	line-height: 33px;
	margin: 38px auto;
}

.cont2 .common-ttl p .bdr {
	display: inline-block;
	background: linear-gradient(180deg, #e9e6dc 0%, #e9e6dc 50%, #d3d3d1 50%, #d3d3d1 100%);
}

.cont2 .txt-box p {
	font-size: 15px;
	line-height: 27px;
	text-align: justify;
	width: 77%;
	margin: 0 auto 32px;
}

.cont2 .txt-box img {
	width: 87%;
	max-width: 277px;
	margin-bottom: 28px;
}

.cont2 .btn {
	display: flex;
	align-items: center;
}

.cont2 .arrow-btn {
	margin-left: 5px;
}

/* ------------------------------------------------------------ */
/* Cont3 */
.cont3 {
	background: var(--wht-color);
	color: var(--blk-color);
	padding: 60px 0 120px;
}

.cont3 .common-ttl {
	margin: 0 auto 72px;
}

.cont3 .common-ttl h2 {
	font-size: 30px;
	line-height: 33px;
	margin-bottom: 20px;
	color: var(--drk-gy-color);
}

.cont3 .common-ttl p {
	font-size: 16px;
	line-height: 28px;
}

.cont3 .loop-slider {
	border: 1px solid var(--blk-color);
	border-right: none;
	border-left: none;
	padding: 10px 0;
	margin-bottom: 28px;
}

.cont3 .case-box:not(:last-of-type) {
	margin-bottom: 119px;
}

.cont3 .case-box h3 {
	margin: 0 auto 15px;
}

.cont3 .case-1 h3 {
	width: 52%;
	max-width: 167px;
}

.cont3 .case-2 h3 {
	width: 67%;
	max-width: 213px;
}

.cont3 .case-box p {
	font-size: 14px;
	line-height: 26px;
	margin-bottom: 26px;
}

.cont3 .model-case {
	width: 89%;
	height: 100%;
	max-width: 285px;
	background: #EAEAEA;
	margin: 30px auto 60px;
	padding: 43px 0;
}

.cont3 .model-case h4 {
	font-size: 18px;
	margin-bottom: 30px;
}

.cont3 .model-case img {
	max-width: 210px;
    width: 75%;
}

/* ------------------------------------------------------------ */
/* Cont4 */
.cont4 {
	background: var(--blk-color);
	color: var(--wht-color);
	padding: 85px 0 110px;
	margin-bottom: -1px;
}

.cont4 .common-ttl {
	margin-bottom: 53px;
}

.cont4 .common-ttl h2 {
	font-size: 23px;
	color: var(--gy-color);
}

.cont4 .common-ttl h3 {
	font-size: 27px;
	line-height: 40px;
}

.cont4 .inner {
	width: 72%;
}

.cont4 .merit-item {
	background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2026flat-or-skip/cont4_img_4.webp") center / cover no-repeat;
	border-radius: 9999px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 15px;
	line-height: 28px;
	color: var(--blk-color);
}

.cont4 .merit-item:not(:last-of-type) {
	margin-bottom: 28px;
}

.cont4 .merit-item .num {
	display: block;
	margin: 0 auto 19px;
	border-bottom: 2px solid var(--red-color);
	padding-bottom: 5px;
	line-height: 0;
}

.cont4 .item-1 .num {
	width: 33px;
}

.cont4 .item-2 .num {
	width: 38px;
}

.cont4 .item-3 .num {
	width: 38px;
}

.cont4.clip-mask::before {
	mask-image: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2026flat-or-skip/mask_img_2.svg");
	background: var(--be-color);
}

/* ------------------------------------------------------------ */
/* Cont5 */
.cont5 {
	background: var(--be-color);
	padding: 110px 0 104px;
}

.cont5 .life-slider {
	width: min(78%, 250px);
}

.cont5 .life-slider-stage {
	padding: 0;
}

.cont5 .common-ttl {
	margin-bottom: 48px;
}

.cont5 .common-ttl h2 {
	color: var(--drk-gy-color);
	font-size: 18px;
}

.cont5 .common-ttl h3 .logo {
	width: 119px;
	vertical-align: bottom;
	margin-right: 10px;
}

.cont5 .common-ttl p {
	font-size: 14px;
	line-height: 27px;
	margin: 26px auto 43px;
}

.cont5 .common-ttl .point {
	width: 78%;
	margin: 0 auto;
}

.cont5 .life-slider {
	text-align: left;
}

.cont5 .life-slider h3 {
	font-size: 21px;
	font-weight: bold;
	margin: 15px 0 3px;
}

.cont5 .life-slider p {
	font-size: 13px;
	line-height: 23px;
}

/* ------------------------------------------------------------ */
/* Cont6 */
.cont6 {
	background: var(--wht-color);
	padding: 85px 0;
}

.cont6 .common-ttl {
	margin-bottom: 68px;
}

.cont6 .common-ttl h2 {
	color: var(--drk-gy-color);
}

.cont6 .common-ttl h3 {
	font-size: 17px;
	line-height: 28px;
}

.cont6 .accordion {
	width: 87.5%;
	margin: 0 auto;
}

.cont6 .accordion-item:not(:last-of-type) {
	margin-bottom: 41px;
}

.cont6 .accordion-header {
	border-radius: 10px;
}

.cont6 .is-active .accordion-header {
	border-radius: 10px 10px 0 0;
}

.cont6 .accordion-header .num {
	position: absolute;
	top: -20px;
	left: 5%;
	width: 34px;
	z-index: 2;
}

/* ------------------------------------------------------------ */
/* Cont7 */
.cont7 {
	color: var(--wht-color);
	padding: 40px 0 0;
	background: var(--blk-color);
}

.cont7 .clip-parallax-bg {
	background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2026flat-or-skip/cont7_img_2.webp") center / cover no-repeat;
}

.cont7 .cont-box {
	z-index: 3;
}

.cont7 .common-ttl {
	height: 100svh;
}

.cont7 .common-ttl h2 {
	width: 90%;
	margin: 0 auto;
}

.cont7 .btm-box h3 {
	font-size: 18px;
	line-height: 34px;
	margin: 0 auto 25px;
}

.cont7 .btm-box {
	padding-bottom: 81px;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.cont7 .btm-box .present  {
	width: 87%;
    max-width: 277px;
}

@media screen and (max-width: 767px) {
}

@media screen and (min-width: 768px) {
	.cont7 .common-ttl {
		height: 100%;
		aspect-ratio: 32 / 55;
	}

	.cont7 .clip-parallax-bg {
		width: 320px;
		height: 100%;
		aspect-ratio: 32 / 55;
		background-repeat: no-repeat;
		background-size: 320px;
		left: 48%;
		right: auto;
	}
}

/* ------------------------------------------------------------ */
/* 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(--blk-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 96px !important;
}

#lp-form form {
	padding: 34px 0 10px !important;
}

#lp-form,
#send-complete .lp-bg-color,
#send-error .lp-bg-color {
	background: var(--blk-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,
#lp-form form .check-btn {
	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 .js-confirm .confirm-btns .back-btn,
#lp-form .js-confirm .confirm-btns .submit-btn {
	color: var(--wht-color) !important;
	background: var(--red-color) !important;
	font-weight: 600;
}

#lp-form form .check-btn {
	background: var(--red-color) !important;
	font-weight: 600;
	margin-bottom: 35px !important;
}

#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 {
	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(--red-color) !important;
	background-color: var(--red-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 .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(--red-color) !important;
	border-bottom: 3px solid var(--red-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 40px 20px 10px !important;
	background-color: var(--red-color) !important;
}

#lp-form .contents-wrap .select-pref .select-wrap::before {
	display: none !important;
}

#lp-form .contents-wrap .select-pref .select-wrap::after {
	top: 25% !important;
	right: 40px !important;
	width: 30px !important;
	height: 30px !important;
	transform: rotate(0deg) !important;
	border: none !important;
	background: url("https://www.bino.jp/wp-content/themes/bino-wp/img/lp/2026flat-or-skip/icon_arrow_2.webp") 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(--red-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;
}

#lp-form form .form-container dl dt .item-name .required {
	position: initial!important;
}

@media screen and (min-width: 480px) {
	/* スマートフォン横 */
	/* ------------------------------------------------------------ */
	/* 共通 */
	.wrapper {
		max-width: 320px;
		margin: 0 auto;
	}
}

@media screen and (min-width: 768px) {
	/* タブレット縦 / スマートフォン横 */
}

@media screen and (min-width: 1025px) {
	/* デスクトップ/タブレット横 */
	/* ------------------------------------------------------------ */
	/* 共通 */
	.pc {
		display: block !important;
	}

	.sp {
		display: none !important;
	}

	.wrapper {
		/* max-width: 400px; */
		margin: 0;
	}

	/* ------------------------------------------------------------ */
	/* Pc */
	body {
		background-attachment: fixed;
		display: grid;
		grid-template-columns: 48% minmax(0, 1fr);
	}

	main {
		padding-top: 0 !important;
	}

	.pc_lft-cont {
		color: var(--wht-color);
		z-index: 3;
	}

	.pc_lft-cont .inner {
		width: 48%;
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		display: flex !important;
		align-items: center;
		align-content: space-between;
		justify-content: space-between;
		padding: 0;
	}

	.pc_lft-cont .ttl-box {
		max-width: 420px;
		width: 71%;
		margin: 0 auto;
	}

	.pc_rgt-cont {
		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(52% - 320px);
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		color: var(--wht-color);
		padding: 45px 0;
		height: max-content;
	}

	.pc_menu-cont .menu_area {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		position: relative;
		max-width: 208px;
		width: 100%;
		margin: 0 auto;
	}

	.pc_menu-cont .menu_list {
		width: 100%;
	}

	.pc_menu-cont .menu_list .list_ttl {
		background: var(--wht-color);
		color: var(--blk-color);
		font-size: 1.9rem;
		padding: 6px 10px;
		width: max-content;
		margin-bottom: 31px;
	}

	.pc_menu-cont .menu_list .list_item {
		margin-bottom: 20px;
		font-size: 18px;
		line-height: 25px;
		letter-spacing: 0;
		width: 100%;
		padding-bottom: 10px;
	}

	.pc_menu-cont .menu_list .list_item:nth-last-of-type(2) {
		margin-bottom: 35px;
	}

	.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);
		border: 1px solid var(--wht-color);
		padding: 10px 20px;
		transition: 0.3s;
	}

	.pc_menu-cont .menu_list .list_item.resv_btn:hover {
		background: var(--blk-color);
	}

	/* .op-animation-comp {
    opacity: 0;
  }

  .op-animation-comp.is-show {
    opacity: 1;
    transition-duration: 0.5s;
  } */

	/* ------------------------------------------------------------ */
	/* Fixed */
	#fixed {
		display: none;
	}
}
