@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto+Condensed:ital,wght@0,800;1,800&display=swap');
/* reset
-------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,
p,blockquote,table,th,td, figure, section, article {margin: 0; padding: 0;}
body {font:13px/1 "Meiryo UI", "ヒラギノ角ゴ Pro W3", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;}
* html body {font-size: small;}
*:first-child+html body {font-size: small;}
img {border: 0; vertical-align: top;}
h1,h2,h3,h4,h5,h6 {font-size: 100%; font-weight: normal;}
ul,dl,ol {text-indent: 0;}
li {list-style: none;}
address,caption,cite,code,dfn,em,strong,th,var {font-style: normal; font-weight: normal;}
sup {vertical-align: text-top;}
sub {vertical-align: text-bottom;}
input,textarea,select {font-family: inherit; font-size: inherit; font-weight:inherit;}
* html input,* html textarea,* html select {font-size: 100%;}
*:first-child+html+input,*:first-child html+textarea,*:first-child+html select {font-size: 100%;}
table {border-collapse: collapse; border-spacing: 0; font-size: inherit;}
th,td {text-align: left; vertical-align: top;}
caption {text-align: left;}
pre,code,kbd,samp,tt {font-family: monospace;}
* html pre,* html code,* html kbd,* html samp,* html tt {font-size: 100%; line-height: 100%;}
*:first-child+html pre,*:first-child html+code,*:first-child html+kbd,*:first-child+html+samp,*:first-child+html tt {font-size: 108%; line-height: 100%;}
input,select,textarea {font-size: 100%; font-family: Verdana, Helvetica, sans-serif;}
*:focus {outline: none;}
/*--------------------------------------
 base
--------------------------------------*/
html{
  font-size: 62.5%; /* 1rem = 10px */
}
*{
	box-sizing:border-box;
}
html,body{
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.4rem;
	background: #F8F2F2;
	color: #202020;
}
strong {
	font-weight:bold;
}
a {
	color: #202020;
	text-decoration:none;
	transition: opacity 0.2s linear;
}
a:hover {
	opacity: 0.7 !important;
}
img{
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1260px) {
	html{
		font-size: 47%;
	}
}
/*--------------------------------------
 layout
--------------------------------------*/
#site-header{
	position: fixed;
	top: 0;
	left: calc((100% - 780px) / 2);
	width: calc(100% - ((100% - 780px) / 2));
	height: 100px;
}
#site-main{
	background: #fff;
	max-width: 780px;
	margin: 100px auto 0 auto;
}
#aside-left{
	position: fixed;
	left: 20px;
	top: 0px;
	width: calc((100% - 780px - 80px) / 2);
	height: 100%;
}
#aside-right{
	position: fixed;
	right: 20px;
	top: 100px;
	width: calc((100% - 780px - 80px) / 2);
	height: calc(100% - 100px);
}
#site-footer{
	background: #fff;
	max-width: 780px;
	margin: auto;
}
@media only screen and (max-width: 1260px) {
	#aside-left,
	#aside-right{
		display: none;
	}
	#site-header{
		width: 780px;
	}
}
@media only screen and (max-width: 780px) {
	#site-header{
		width: 100%;
		left: 0;
	}
}
@media only screen and (min-width: 1690px) {
	#aside-left{
		max-width: 400px;
		left: auto;
		right: calc((100% - 780px) + 353px);
	}
	#aside-right{
		max-width: 400px;
		right: auto;
		left: calc((100% - 780px) + 353px);
	}
}
/*--------------------------------------
 header
--------------------------------------*/
#site-header{
	display: flex;
	align-items: center;
	background: #EFEFEF;
	z-index: 10;
	padding: 0 100px 0 25px;
}
#site-header .site-title{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 2.4rem;
	line-height: 1.2;
}
#site-header .pc-header{
	display: flex;
	align-items: center;
}
#site-header .furisode-nav{
	margin-left: 45px;
}
.furisode-nav > ul{
	display: flex;
	gap: 10px;
}
.furisode-nav > ul > li{
	position: relative;
	background: #201613;
	&.active{
		background: #C34545;
	}
}
.furisode-nav > ul > li > a{
	display: flex;
	padding: 10px 25px 10px 14px;
	color: #fff;
	font-size: 1.4rem;
	position: relative;
	white-space: nowrap;
}
.furisode-nav > ul > li > a::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-top: 7px solid #fff;
	border-bottom: 0;
	position: absolute;
	top: calc(50% - 2px);
	right: 8px;
}
.furisode-nav li .dropdown{
	background: #C34545;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 20px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s linear;
	z-index: 1;
}
.furisode-nav li.active .dropdown{
	visibility: visible;
	opacity: 1;
}
.furisode-nav .color-dropdown{
	width: 360px;
}
.furisode-nav .color-checkbox{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	& a{
		display: block;
		cursor: pointer;
		padding: 7px 10px;	
		background: #fff;
	}
	& input{
		display: none;
	}
}
.furisode-nav .color-checkbox li a::before{
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	margin-right: 10px;
	vertical-align: -5px;
}
.furisode-nav .color-checkbox li.red a::before{
	background: #ea5e5e;
}
.furisode-nav .color-checkbox li.blue a::before{
	background: #5e82ea;
}
.furisode-nav .color-checkbox li.yellow a::before{
	background: #eae55e;
}
.furisode-nav .color-checkbox li.green a::before{
	background: #78ea5e;
}
.furisode-nav .color-checkbox li.orange a::before{
	background: #eac15e;
}
.furisode-nav .color-checkbox li.skyblue a::before{
	background: #bcd4ff;
}
.furisode-nav .color-checkbox li.yellowgreen a::before{
	background: #D7E288;
}
.furisode-nav .color-checkbox li.purple a::before{
	background: #c288fd;
}
.furisode-nav .color-checkbox li.pink a::before{
	background: #ffb9ea;
}
.furisode-nav .color-checkbox li.black a::before{
	background: #4e4e4e;
}
.furisode-nav .color-checkbox li.white a::before{
	background: #fff;
	border: 1px solid #666;
	box-sizing: border-box;
}
.furisode-nav .color-checkbox li.beige a::before{
	background: #e2d7c3;
}
.furisode-nav .color-checkbox li.grey a::before{
	background: #b6b6b6;
}
.furisode-nav .price-dropdown{
	width: 330px;
	& h3{
		color: #fff;
		font-size: 1.6rem;
		margin-bottom: 10px;
		font-weight: 500;
	}
}
.furisode-nav .list{
	margin-bottom: 15px;
	li + li{
		margin-top: 8px;
	}
	& a{
	display: block;
	background: #fff;
	padding: 10px 15px;
	}
	&:last-child{
		margin-bottom: 0;
	}
}
#site-header .furisode-nav li .model-dropdown,
#site-header .furisode-nav li .image-dropdown{
	position: fixed;
	left: calc((100% - 780px) / 2);
	width: calc((100% - 100px) - ((100% - 780px) / 2));
	top: 67px;
}
.furisode-nav .model-dropdown-list{
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 25px 10px;
	& li{
		text-align: center;
	}
	& a{
		color: #fff;
		line-height: 1.2;
	}
	& img{
		margin-bottom: 10px;
	}
}
.furisode-nav .image-dropdown-list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	& img{
		margin-bottom: 10px;
	}
	& li{
		text-align: center;
	}
	& a{
		color: #fff;
		line-height: 1.2;
	}
}
.header-fav{
	margin-left: 20px;
	margin-right: 20px;
	white-space: nowrap;
	.heart{
		color: #CB0000;
	}
}
/*menu*/
.menubtn{
  display: block;
  width: 100px;
  height: 100px;
  position: fixed;
	top: 0;
	right: 0;
	z-index: 20;
  margin-left: auto;
  background: #201613;
}
.menubtn .txt{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.6rem;
	color: #fff;
	display: block;
	width: 100px;
	position: absolute;
	left: 0;
	bottom: 16px;
	text-align: center;
}
.hamburger{
  display: inline-block;
  cursor: pointer;
  width: 60px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.bar1, .bar2, .bar3 {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ffffff;
	border-radius: 100px;
  transition: 0.4s;
}
.hamburger:hover .bar1,
.hamburger:hover .bar2,
.hamburger:hover .bar3{
  background-color: #ffffff;
}
.bar1,
.bar2{
  margin-bottom: 10px;
}
.active .bar1 {
  transform: rotate(-45deg) translate(-9px, 9px);
}
.active .bar2 {
  opacity: 0;
}
.active .bar3 {
  transform: rotate(45deg) translate(-9px, -9px);
}
#site-header .sp-header{
	display: none;
}
@media only screen and (max-width: 1260px) {
	#site-header{
		height: 70px;
		padding-right: 70px;
		padding-left: 10px;
		background: #fff;
	}
	#site-header .site-title{
		padding-right: 10px;
		flex-shrink: 1;
		flex-basis: 0;
	}
	#site-header .furisode-nav{
		margin-left: auto;
		margin-right: 15px;
	}
	#site-header .furisode-nav > ul > li > a{
		padding: 5px 18px 5px 5px;
		font-size: 1.1rem;
	}
	#site-header .furisode-nav > ul{
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4px;
	}
	#site-header .furisode-nav > ul > li > a::after{
		border-right: 3px solid transparent;
		border-left: 3px solid transparent;
		border-top: 5px solid #fff;
		top: calc(50% - 2px);
		right: 6px;
	}
	.header-fav{
		margin-right: 15px;
		margin-left: 0;
	}
	.header-fav .heart{
		font-size: 2.6rem;
	}
	.header-fav .txt{
		display: none;
	}
	.menubtn{
		width: 70px;
		height: 70px;
	}
	.hamburger{
		width: 36px;
		top: 15px;
		left: 17px;
	}
	.bar1, .bar2, .bar3 {
		width: 36px;
	}
	.bar1,
	.bar2{
		margin-bottom: 7px;
	}
	.active .bar1 {
		transform: rotate(-45deg) translate(-7px, 7px);
	}
	.active .bar3 {
		transform: rotate(45deg) translate(-7px, -7px);
	}
	.menubtn .txt{
		width: 70px;
		bottom: 10px;
	}
	#site-main{
		margin-top: 70px;
	}
	#site-header .pc-header{
		display: none;
	}
	#site-header .sp-header{
		display: block;
	}
	#site-header .sp-header .logo{
		.tachibana img{
			width: 132px;
			height: auto;
			margin-right: 20px;
		}
		.shaleny img{
			width: 95px;
			height: auto;
		}
	}
}
@media only screen and (max-width: 350px) {
	#site-header .sp-header .logo{
		.tachibana img{
			width: 120px;
			height: auto;
			margin-right: 15px;
		}
		.shaleny img{
			width: 84px;
			height: auto;
		}
	}
}
#global-nav{
	opacity: 0;
	visibility: hidden;
	transform: scale(0.96);
	transition: all 0.3s ease;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #C34545;
	overflow: scroll;
}
#global-nav.open{
	opacity: 1;
	transform: scale(1);
	visibility: visible;
}
#global-nav .global-nav-menu{
	background: none;
	margin-top: 0;
	padding: 70px 20px;
}
#global-nav .global-nav-menu .parent-nav > li > a{
	color: #fff;
}
#global-nav .global-nav-menu .parent-nav > li{
	border-bottom-color: rgba(255, 255, 255, 0.2);
}
#global-nav .global-nav-menu .parent-nav > li.has-child > a span::before, 
#global-nav .global-nav-menu .parent-nav > li.has-child > a span::after{
	background: #C34545;
}
#global-nav .global-nav-menu .parent-nav > li > a::before{
	display: none;
}
#global-nav .global-nav-menu .child-nav{
	background: rgba(0, 0, 0, 0.07);
}
#global-nav .global-nav-menu .child-nav a{
	color: #fff;
}
#global-nav .global-nav-menu .child-nav{
	margin-bottom: 0;
}
#global-nav .global-nav-menu .child-nav li + li{
	border-top-color: rgba(255, 255, 255, 0.2);
}

/*--------------------------------------
 footer
--------------------------------------*/
#site-footer{
	padding-bottom: 60px;
	padding-top: 1px;
}
@media only screen and (max-width: 768px) {
#site-footer{
	padding-bottom: 100px;
}
}
.shop-list-nav li{
	border-bottom: 1px solid #fff;
}
.shop-list-nav li > a{
	display: block;
	background: #201613;
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	height: 60px;
	font-size: 1.6rem;
	&::after{
		content: '';
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 10px solid transparent;
		border-left: 10px solid transparent;
		border-top: 17px solid #fff;
		border-bottom: 0;
		position: absolute;
		top: calc(50% - 8px);
		right: 25px;
		transition: transform 0.3s linear;
	}
	&.active::after{
		transform: rotate(-180deg);
	}
	& .pref-ico{
		margin-left: 20px;
		margin-right: 20px;
	}
}
.shop-list-nav dt{
	background: #8D8D8D;
	color: #fff;
	padding: 15px 0 15px 20px;
}
.shop-list-nav .shop-list-content{
	background: #F5F5F5;
	display: flex;
	align-items: center;
	padding: 5px 20px 5px 20px;
	border-bottom: 1px solid #fff;
	.shop-name{
		display: flex;
		align-items: center;
		line-height: 1.5;
	}
	.ico-store{
		margin-right: 20px;
		& img{
			width: 34px;
			height: auto;
		}
	}
	.tel{
		margin-left: auto;
		margin-right: 12px;
		flex-shrink: 0;
	}
	.ico-tel img{
		width: 41px;
		height: auto;
		margin-left: 10px;
		@media only screen and (max-width: 500px) {
			width: 26px;
		}
	}
}
.ico-tachibana::before,
.ico-shaleny::before{
	content: "";
	display: inline-block;
	width: 34px;
	height: 34px;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 15px;
}
.ico-tachibana::before{
	background-image: url("/furisode/common/img/shoplist/ico-tachibana.png");
}
.ico-shaleny::before{
	background-image: url("/furisode/common/img/shoplist/ico-shaleny.png");
}
.shop-list{
	display: none;
}
.btn-store{
	background: #C34545;
	color: #fff;
	padding: 7px 10px 7px 10px;
	flex-shrink: 0;
	&::after{
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		transform: rotate(-45deg);
		margin-left: 5px;
	}
}
.global-nav-menu{
	background: #F5F5F5;
	margin-top: 50px;
	padding: 0 20px 30px 20px;
}
.global-nav-menu .parent-nav{
	max-width: 640px;
	margin: auto;
}
.global-nav-menu .parent-nav > li{
	border-bottom: 1px solid #201613;
}
.global-nav-menu .parent-nav > li > a{
	display: block;
	padding: 20px 10px 20px 10px;
	font-size: 1.8rem;
	font-weight: 400;
	position: relative;
	&::before{
		content: "";
		display: inline-block;
		width: 17px;
		height: 11px;
		background: url("/furisode/common/img/shoplist/ico-link.svg") no-repeat;
		margin-right: 10px;
	}
}
.global-nav-menu .parent-nav > li.has-child > a span{
	background: #fff;
	display: block;
	width: 37px;
	height: 37px;
	border-radius: 50px;
	position: absolute;
	top: 10px;
	right: 10px;
}
.global-nav-menu .parent-nav > li.has-child > a span::before,
.global-nav-menu .parent-nav > li.has-child > a span::after{
	content: "";
	display: block;
	width: 10px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 17px;
	left: 13px;
	transition: transform 0.2s linear;
}
.global-nav-menu .parent-nav > li.has-child > a span::before{
	transform: rotate(-90deg);
}
.global-nav-menu .parent-nav > li.has-child > a.active span::before {
	transform: rotate(0);
}
.global-nav-menu .child-nav{
	background: #fff;
	margin-bottom: 20px;
	display: none;
	& li + li{
		border-top: 1px dashed #D5D5D5;
	}
	& a{
		display: block;
		padding: 15px 10px 15px 36px;
		font-size: 1.8rem;
		font-weight: 400;
	}
}
#site-footer .logo{
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 50px 0 25px;
}
#site-footer .logo .tachibana img{
	width: 240px;
	height: auto;
}
#site-footer .logo .shaleny img{
	width: 170px;
	height: auto;
}
#site-footer .sns{
	display: flex;
	justify-content: center;
	gap: 25px;
}
#site-footer .sns img{
	width: 20px;
	height: auto;
}
#site-footer .copyright{
	text-align: center;
	margin-top: 40px;
}
.tel-popup{
	display: none;
	text-align: center;
	.ico-shaleny::before,
	.ico-tachibana::before{
		width: 46px;
		height: 46px;
	}
	h3{
		font-size: 1.8em;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 30px;
	}
	.ico-store img{
		width: 46px;
		height: auto;
	}
	.btn-tel{
		border: 1px solid #C34545;
		color: #C34545;
		font-size: 2.2rem;
		display: inline-block;
		width: 100%;
		max-width: 322px;
		padding: 5px 20px;
		letter-spacing: 0.1em;
		&::before{
			content: "";
			display: inline-block;
			width: 41px;
			height: 36px;
			background: url("/furisode/common/img/shoplist/ico-tel.png") no-repeat;
			background-size: contain;
			vertical-align: -8px;
			margin-right: 10px;
		}
	}
	.btn-tel + p{
		font-size: 1.4rem;
		line-height: 1.5;
		margin-top: 15px;
		margin-bottom: 30px;
	}
	.btn-line{
		background: #06C755;
		color: #fff;
		display: inline-block;
		width: 100%;
		max-width: 322px;
		padding: 10px 20px;
		font-size: 1.4rem;
		font-weight: 500;
		&::before{
			content: "";
			display: inline-block;
			width: 27px;
			height: 25px;
			background: url("/furisode/common/img/sns/line.svg") no-repeat;
			background-size: contain;
			vertical-align: -8px;
			margin-right: 10px;			
		}
	}
}
#spnav-fixedbottom{
  display: block;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #201613;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
	display: none;
}
@media only screen and (max-width: 768px) {
	#spnav-fixedbottom{
		display: block;
	}
}
#spnav-fixedbottom.active{
  z-index: 20;
}
#spnav-fixedbottom.hide{
  opacity: 0;
  visibility: hidden;
}
#spnav-fixedbottom ul{
  display: flex;
}
#spnav-fixedbottom ul li{
  flex: 1 1 0;
}
#spnav-fixedbottom ul li + li{
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
#spnav-fixedbottom ul li a{
  display: block;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  padding: 12px 0 0 0;
  height: 70px;
  box-sizing: border-box;
}
#spnav-fixedbottom ul li a.active{
  background: #FFE7EA;
}
#spnav-fixedbottom ul li img{
  width: 34px;
  height: auto;
  margin-bottom: 10px;
	opacity: 0.8;
}
#spnav-fixedbottom ul li.bg-red{
	background: #C34545;
}
#spnav-fixedbottom #fitting{
  position: relative;
}
#spnav-fixedbottom #fitting span{
  position: absolute;
  top: -8px;
  right: 3px;
  background: #CD0003;
  color: #fff;
  font-size: 12px;
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 100px;
  font-weight: normal;
}

/*--------------------------------------
 aside
--------------------------------------*/
#aside-left{
	overflow: auto;
	padding-bottom: 20px;
}
#aside-left .logo{
	margin-top: 35px;
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	.tachibana{
		width: 50%;
	}
	.shaleny{
		width: 35%;
	}
}
#aside-left .site-summary{
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.5;
	margin-top: 20px;
	margin-bottom: 40px;
}
#aside-left .service-nav{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 8px;
}
@media only screen and (max-width: 1420px) {
	#aside-left .service-nav{
		grid-template-columns: 1fr;
	}
}
#aside-left .service-nav a{
	display: flex;
	align-items: center;
	background: #E1AFAF;
	font-size: 1.4rem;
	line-height: 1.2;
	&::after{
		content: "";
		display: inline-block;
		width: 15px;
		height: 15px;
		background: url("/furisode/common/img/ico/arrow-circle-k.svg") no-repeat;
		background-size: contain;
		margin-left: auto;
		margin-right: 10px;
		flex-shrink: 0;
	}
	.thumb{
		width: 50px;
		margin-right: 12px;
		flex-shrink: 0;
	}
}
#aside-left .service-nav a:nth-child(2){
	background: #E5CCCC;
}
#aside-left .service-nav a:nth-child(3){
	background: #F5F5F5;
}
#aside-left .service-nav a:nth-child(4){
	background: #B2C7C8;
}
#aside-left .service-nav a:nth-child(5){
	background: #ECE5D3;
}
.aside-shop-list{
	display: flex;
	gap: 4px;
	.pref-ico{
		display: block;
		text-align: center;
		margin-bottom: 5px;
		& img{
			width: 40px;
			height: auto;	
		}
	}
	& a{
		flex-grow: 1;
		background: #202020;
		color: #fff;
		text-align: center;
		padding: 10px 0;
		position: relative;
		font-size: 1.2rem;
	}
	& a::after{
		content: "";
		display: block;
		width: 5px;
		height: 6px;
		position: absolute;
		right: 3px;
		bottom: 3px;
		background: url("/furisode/common/img/aside/ico-corner.svg");
	}
}
@media only screen and (max-width: 1420px) {
	#aside-left .aside-shop-list{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
}
#aside-left .en-title{
	margin-top: 40px;
}
#aside-left .btn-wrap{
	display: flex;
	gap: 20px;
	& a{
		flex-grow: 1;
		flex-shrink: 0;
		flex-basis: 0;
	}
}
#aside-left .btn-wrap + .btn-wrap{
	margin-top: 10px;
}
#aside-left .btn-wrap .btn{
	min-width: unset;
}
#aside-right .right-bnr{
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
#aside-right .right-bnr .gallery-cell:nth-child(3) ~ .gallery-cell{
	display: none;
}
/*--------------------------------------
 common
--------------------------------------*/
.roboto-condenced{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 800;
}
.noto-serif{
	font-family: "Noto Serif JP", serif;
}
.btn{
	display: inline-flex;
	min-width: 200px;
	align-items: center;
	justify-content: center;
	background: #C34544;
	color: #fff;
	font-weight: 500;
	padding: 10px 40px 12px 20px;
	text-align: center;
	position: relative;
	line-height: 1.2;
	border: 0;
	cursor: pointer;
}
@media only screen and (max-width: 768px) {
	.btn{
		min-width: 0;
	}
}
.btn::after{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 10px;
	top: calc(50% - 10px);
	background: url("/furisode/common/img/ico/arrow-circle-k.svg") no-repeat;
	background-size: contain;
}
.btn:disabled{
  background: #E4E4E4;
  color: #707070;
  cursor: not-allowed;
}
.btn.large{
	padding: 20px 40px 20px 20px;
	font-size: 2rem;
}
#site-main{
	padding-bottom: 140px;
}
#favnumlink{
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
	background: #C34545;
	width: calc((100% - 780px - 40px) / 2);
	z-index: 1;
	.favnumlink-btn{
		flex-grow: 1;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		padding: 0 10px;
		font-size: 2rem;
		color: #fff;
		& p{
			text-align: center;
			line-height: 1.2;
		}
		& p span{
			display: inline-block;
		}
		& p span + span{
			margin-left: 0.5em;
		}
	}
	.favtotalnum{
		font-size: 3.6rem;
	}
}
@media only screen and (max-width: 768px) {
	#favnumlink{
		display: none;
	}
}
#pagetop{
	background: #201613;
	transition: background 0.2s linear;
	width: 80px;
	height: 80px;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	.ico img{
		width: 14px;
		height: 30px;
		margin-left: 9px;
	}
	.txt{
		color: #fff;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.4rem;
	}
	&:hover{
		opacity: 1;
		background: #333;
	}
}
@media only screen and (max-width: 1260px) {
	#favnumlink{
		width: 230px;
	}
	#pagetop{
		width: 50px;
		height: 50px;
		.ico img{
			width: 8px;
			height: 21px;
		}
	}
}
