@charset "UTF-8";
/*
Theme Name: レスポンシブテンプレート
Theme URI: 
Description: サインズ
Version: 1.0
Author: sains
Author URI: 
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Shippori+Mincho&display=swap');



/******************
オールクリア[共通]
******************/

body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object{
	margin: 0;
	padding: 0;
}

body {
	font-family: "Shippori Mincho","游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho",serif;
	font-size: 100%;
	font-weight: 500;
	color: #323232;
	line-height: 1.8em;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
}

img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

li {
	list-style-type: none;	
}

a {
	color: #323232;
	text-decoration: none;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	backface-visibility: hidden;
}

a:hover {
	color: #3379d7;
	backface-visibility: hidden;
}

a img {
    -webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	outline: none;
	box-shadow: #000 0 0 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

a:hover img {
	opacity: 0.7;
	-moz-opacity: 0.7;
	-webkit-opacity: 0.7;
}
button {
	border: 0;
	font-size: 100%;
	cursor: pointer;
	padding: 0;
	background-color: transparent;
	font-family: "Shippori Mincho","游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho",serif;
	font-size: 100%;
	font-weight: 500;
	line-height: 1.8em;
}

table {
	border-collapse: collapse;
	border-color: #333333;
}

th {
	font-weight: 500;
}

#wrapper-top, #wrapper {
	position: relative;
}

@media screen and (max-width: 960px) {
	body {
		font-size: 95%;
	}
}


.number {
	font-family: "Manrope", sans-serif;
}

/******************
ヘッダー
******************/
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	z-index: 9999;
	display: flex;
	align-items: center;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 95%;
	margin: 0 auto;
}
.header-logo {
	max-width: 150px;
	width: 100%;
}
.header-logo a {
	display: block;
}
.cart-btn {
	width: 40px;
	margin-right: 90px;
}
.menu-btn {
	position: fixed;
	top: 25px;
	right: 2.5%;
	width: 70px;
	height: 70px;
	transition: .3s all ease;
	z-index: 999999;
	overflow: hidden;
}
.menu-btn:before,
.menu-btn:after,
.menu-btn .inner:before,
.menu-btn .inner:after {
	content: '';
	display: block;
	background: #fff;
	position: absolute;
	z-index: 10;
	transition: all .3s ease;
}
.menu-btn:before,
.menu-btn:after {
	width: 0;
	height: 1px;
}
.menu-btn:before {
	left: 0;
	top: 0;
}
.menu-btn:after {
	right: 0;
	bottom: 0;
}
.menu-btn .inner:before,
.menu-btn .inner:after {
	width: 1px;
	height: 0;
}
.menu-btn .inner:before {
	bottom: 0;
	left: 0;
}
.menu-btn .inner:after {
	top: 0;
	right: 0;
}
.menu-btn.scrolled {
	background: #000;
}
.menu-btn.scrolled:before {
	left: 0;
}
.menu-btn.scrolled:before,
.menu-btn.scrolled:after {
	width: 100%;
}
.menu-btn.scrolled .inner:before,
.menu-btn.scrolled .inner:after {
	height: 100%;
}

.menu-btn span:nth-child(1),
.menu-btn span:nth-child(2),
.menu-btn span:nth-child(3) {
	position: absolute;
	left: 24%;
	width: 50%;
	height: 1px;
	background: #fff;
	transition: .3s all ease;
}
.menu-btn span:nth-child(1) {
	top: 17px;
}
.menu-btn span:nth-child(2) {
	top: 26px;
}
.menu-btn span:nth-child(3) {
	top: 35px;
}
.menu-btn span:nth-child(4) {
	
}
.menu-btn span:nth-child(4):before {
	content: "MENU";
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
	font-family: "Manrope", sans-serif;
	color: #fff;
	font-size: 70%;
	line-height: 150%;
	letter-spacing: .1rem;
}

.global-nav {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: .3s all ease;
}
.global-nav nav {
	position: absolute;
	top: 0;
	right: -570px;
	max-width: 570px;
	width: 100%;
	height: 100%;
	background: #000;
	overflow: auto;
	transition-timing-function: cubic-bezier(0,0,0,1);
	transition-duration: .35s;
}
.global-nav .main-nav {
	width: 80%;
	margin: 100px auto 60px;
	display: flex;
	gap: 0 60px;
}
.global-nav ul li a {
	color: #fff;
}

.global-nav .main-nav .has-sub-menu {
	margin-bottom: 10px;
}
.global-nav .main-nav li {
	margin-bottom: 30px;
}
.global-nav .main-nav li:last-child {
	margin-bottom: 0;
}
.global-nav .main-nav li a {
	letter-spacing: .1rem;
	transition: .3s all ease;
}
.global-nav .main-nav li a:hover {
	opacity: .8;
}
.global-nav .main-nav ul ul {
	margin-left: 10px;
}
.global-nav .main-nav ul ul li {
	line-height: 150%;
	margin-bottom: 10px;
}
.global-nav .main-nav ul ul li a {
	font-size: 90%;
	letter-spacing: 0;
	padding-left: 20px;
	position: relative;
}
.global-nav .main-nav ul ul li a:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 6px;
	height: 1px;
	background: #fff;
}

.global-nav .sub-nav {
	width: 80%;
	margin: 0 auto 60px;
}
.global-nav .sub-nav .contacts {
	display: flex;
	border: 1px solid #fff;
	margin-bottom: 40px;
}
.global-nav .sub-nav .contacts li {
	width: 50%;
}
.global-nav .sub-nav .contacts li:first-child {
	border-right: 1px solid #fff;
}
.global-nav .sub-nav .contacts li a {
	display: block;
	text-align: center;
	font-size: 90%;
	letter-spacing: .1rem;
	padding: 10px 0;
	transition: .3s all ease;
}
.global-nav .sub-nav .contacts li a:hover {
	opacity: .8;
}
.global-nav .sub-nav .other {
	display: flex;
	justify-content: flex-end;
	gap: 0 20px;
}
.global-nav .sub-nav .other li a {
	font-size: 75%;
	transition: .3s all ease;
}
.global-nav .sub-nav .other li a:hover {
	opacity: .8;
}

/*メニューオープン*/
body.no-scroll {
	overflow: hidden;
}
.menu-btn.open span {
	left: 29%;
	width: 40%;
}
.menu-btn.open span:nth-child(1) {
	transform: rotate(45deg);
	top: 25px;
}
.menu-btn.open span:nth-child(2) {
	width: 0;
}
.menu-btn.open span:nth-child(3) {
	transform: rotate(-45deg);
	top: 25px;
}
.menu-btn.open span:nth-child(4):before {
	content: "CLOSE";
}
.global-nav.open {
	opacity: 1;
	visibility: visible;
}
.global-nav.open nav {
	right: 0;
}

@media screen and (max-width: 960px) {
	.header {
		height: 90px;
	}
	.header-logo {
		max-width: 120px;
	}
	.menu-btn {
		top: 10px;
	}
}
@media screen and (max-width: 640px) {
	.header {
		height: 70px;
	}
	.header-logo {
		max-width: 100px;
	}
	.cart-btn {
		width: 35px;
		margin-right: 70px;
	}
	.menu-btn {
		width: 50px;
		height: 50px;
	}
	.menu-btn span:nth-child(1),
	.menu-btn span:nth-child(2),
	.menu-btn span:nth-child(3) {
		left: 20%;
		width: 60%;
	}
	.menu-btn span:nth-child(1) {
		top: 10px;
	}
	.menu-btn span:nth-child(2) {
		top: 18px;
	}
	.menu-btn span:nth-child(3) {
		top: 26px;
	}
	.menu-btn span:nth-child(4):before {
		bottom: 6px;
		font-size: 65%;
		letter-spacing: 0;
	}
	.menu-btn.open span:nth-child(1),
	.menu-btn.open span:nth-child(3) {
		top: 18px;
		left: 25%;
		width: 50%;
	}
	
	.global-nav nav {
		max-width: 100%;
		right: 0 !important;
		opacity: 0;
		visibility: hidden;
	}
	.global-nav.open nav {
		opacity: 1;
		visibility: visible;
	}
}
@media screen and (max-width: 480px) {
	.global-nav .main-nav {
		width: 70%;
		flex-direction: column;
		gap: 20px;
		margin: 70px auto 30px;
	}
	.global-nav .main-nav li {
		margin-bottom: 20px;
	}
	.global-nav .sub-nav {
		width: 70%;
		margin: 0 auto 40px;
	}
	.global-nav .sub-nav .contacts {
		border: 0;
		flex-direction: column;
		gap: 10px;
		margin-bottom: 20px;
	}
	.global-nav .sub-nav .contacts li {
		width: 100%;
		border: 1px solid #fff;
	}
	.global-nav .sub-nav .contacts li:first-child {
		border: 1px solid #fff;
	}
	.global-nav .sub-nav .other {
		flex-direction: column;
	}
}


/******************
メイン
******************/
.main {
	background-color: #000;
	color: #fff;
}
.main a {
	color: #fff;
}
/*メインビジュアル*/
#main-visual {
	position: relative;
}
#main-visual img {
	width: 100%;
}
#main-visual .sp {
	display: none;
}
.mv-ttl-inner {
	
}
.mv-ttl-inner h1 {
	position: absolute;
	top: 43%;
	left: 5%;
	transform: translateY(-50%);
	width: 33%;
	max-width: 510px;
}


@media screen and (max-width: 960px) {
	.mv-ttl-inner h1 {
		top: 50%;
	}
}
@media screen and (max-width: 640px) {
	#main-visual .pc {
		display: none;
	}
	#main-visual .sp {
		display: block;
	}
	.mv-ttl-inner h1 {
		top: 28%;
		left: 10%;
		width: 65%;
	}
}

/******************
コンテンツ
******************/
#contents {
	max-width: 1300px;
	width: 90%;
	margin: 0 auto;
}
.top-section {
	padding: 120px 0;
}
.top-section.over-section {
	background: #000;
	color: #fff;
}
.over-section {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
.over-section-inner {
	max-width: 1300px;
	width: 90%;
	margin: 0 auto;
}

.top-h2 {
	color: #fff;
	font-size: 200%;
	font-weight: 400;
	letter-spacing: .2rem;
	margin-bottom: 60px;
}

.common-btn a {
	color: #323232;
	display: block;
	background: url(./images/common/btn_bkg.jpg) center/cover no-repeat;
	max-width: 300px;
	text-align: center;
	letter-spacing: .1rem;
	padding: 10px 0;
	box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
	position: relative;
	overflow: hidden;
}
.common-btn a:after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	transition: .5s all ease;
	box-sizing: border-box;
	background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
}
.common-btn a:hover:after {
	top: 0;
	left: 100%;
}
.common-btn.cart a span {
	position: relative;
	padding-left: 35px;
}
.common-btn.cart a span:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url(./images/common/cart_ico_blk.svg) center/100% no-repeat;
	width: 23px;
	height: 21px;
}
.common-btn.chevron a {
	position: relative;
}
.common-btn.chevron a:before {
	content: "";
	position: absolute;
	right: 25px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 10px solid #323232;
	border-right: 0;
}

@media screen and (max-width: 960px) {
	.top-section {
		padding: 80px 0;
	}
	.top-h2 {
		font-size: 160%;
		letter-spacing: .1rem;
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 640px) {
	.top-h2 {
		font-size: 140%;
		letter-spacing: 0;
	}
}


/*メッセージ*/
.top-message .over-section-inner {
	max-width: 900px;
	position: relative;
}
.top-message h2 {
	font-size: 240%;
	font-weight: 400;
	line-height: 200%;
	letter-spacing: .1rem;
	margin-bottom: 40px;
}
.top-message h2 br:first-child {
	display: none;
}
.top-message .txt-box {
	max-width: 820px;
	margin-left: auto;
	position: relative;
	z-index: 1;
}
.top-message .txt-box p {
	line-height: 250%;
}

@media screen and (max-width: 960px) {
	.top-message h2 {
		font-size: 180%;
		text-align: center;
	}
	.top-message .txt-box p br {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.top-message h2 {
		font-size: 130%;
		letter-spacing: 0;
		margin-bottom: 20px;
	}
	.top-message .txt-box p {
		line-height: 200%;
		letter-spacing: .1rem;
	}
	.top-message .txt-box p br {
		display: block;
	}
}
@media screen and (max-width: 480px) {
	.top-message h2 br:first-child {
		display: block;
	}
}

/*製品*/
.top-products {
	background: #fff !important;
	color: #323232 !important;
	padding: 0;
}
.top-products .upper-container {
	padding: 120px 0;
	position: relative;
	background: url(./images/top/top_products_bkg.png) top/200px repeat;
}
.top-products .upper-items {
	max-width: 1100px;
	width: 90%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.top-products .upper-container .item {
	display: flex;
	align-items: center;
	gap: 0 40px;
}
.top-products .upper-container .item:first-child {
	margin-bottom: 120px;
}
.top-products .upper-container .item-img {
	width: calc(30% - 20px);
	text-align: center;
}
.top-products .upper-container .item-img img {
	width: 50%;
}
.top-products .upper-container .item-txt {
	width: calc(70% - 20px);
}
.top-products .upper-container .ttl-box {
	margin-bottom: 20px;
}
.top-products .upper-container .ttl-box h2 {
	color: #323232;
	font-size: 200%;
	letter-spacing: .2rem;
	font-weight: 500;
	margin-bottom: 20px;
}
.top-products .upper-container .ttl-box .price {
	color: #323232;
	font-size: 180%;
	font-weight: 500;
	margin-right: 5px;
}
.top-products .upper-container .ttl-box .tax {
	font-size: 80%;
}
.top-products .upper-container .txt-box {
	margin-bottom: 40px;
}
.top-products .upper-container .common-btn a {
	margin-left: auto;
	padding: 10px 0;
}

.top-products .lower-container {
	background: #000;
	color: #fff;
}
.top-products .lower-container .section-inner {
	display: flex;
	align-items: center;
	margin-left: 5%;
}
.top-products .lower-container .item-txt {
	margin-right: 5%;
	width: 480px;
}
.top-products .lower-container .item-txt h2 {
	font-size: 200%;
	letter-spacing: .2rem;
	font-weight: 500;
	margin-bottom: 20px;
}
.top-products .lower-container .item-txt p br {
	display: none;
}
.top-products .lower-container .item-txt p br.all-break {
	display: block;
}
.top-products .lower-container .item-txt .common-btn {
	margin-top: 40px;
}
.top-products .lower-container .item-img {
	height: 480px;
	width: calc(95% - 480px);
}
.top-products .lower-container .item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1280px) {
	.top-products .lower-container .item-img {
		height: 380px;
	}
}
@media screen and (max-width: 960px) {
	.top-products .upper-container {
		padding: 80px 0;
	}
	.top-products .upper-container .item {
		gap: 0 20px;
	}
	.top-products .upper-container .item:first-child {
		margin-bottom: 80px;
	}
	.top-products .upper-container .item-img {
		width: calc(40% - 10px);
	}
	.top-products .upper-container .item-txt {
		width: calc(60% - 10px);
	}
	.top-products .upper-container .ttl-box {
		margin-bottom: 15px;
	}
	.top-products .upper-container .ttl-box h2 {
		font-size: 160%;
		letter-spacing: .1rem;
		margin-bottom: 15px;
	}
	.top-products .upper-container .ttl-box .price {
		font-size: 160%;
	}
	.top-products .upper-container .txt-box {
		margin-bottom: 30px;
	}
	
	.top-products .lower-container .item-txt {
		width: 340px;
	}
	.top-products .lower-container .item-txt h2 {
		font-size: 160%;
		letter-spacing: .1rem;
		margin-bottom: 15px;
	}
	.top-products .lower-container .item-txt p br {
		display: block;
	}
	.top-products .lower-container .item-txt .common-btn {
		margin-top: 30px;
	}
	.top-products .lower-container .item-img {
		width: calc(95% - 340px);
	}
}
@media screen and (max-width: 640px) {
	.top-products .upper-container .item {
		flex-direction: column;
	}
	.top-products .upper-container .item-img {
		width: 100%;
		max-width: 220px;
		margin-bottom: 40px;
	}
	.top-products .upper-container .item-txt {
		width: 100%;
		order: 2;
	}
	.top-products .upper-container .ttl-box {
		margin-bottom: 5px;
	}
	.top-products .upper-container .ttl-box h2 {
		font-size: 140%;
		letter-spacing: 0;
		margin-bottom: 30px;
		text-align: center;
	}
	.top-products .upper-container .ttl-box p {
		text-align: right;
		border-bottom: 1px dashed#b9b9b9;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.top-products .upper-container .ttl-box .price {
		font-size: 150%;
	}
	.top-products .upper-container .common-btn a {
		margin: 0 auto;
	}
	
	.top-products .lower-container .section-inner {
		flex-direction: column;
		width: 90%;
		margin: 0 auto;
	}
	.top-products .lower-container .item-txt {
		width: 100%;
		order: 2;
		margin-right: 0;
	}
	.top-products .lower-container .item-txt h2 {
		font-size: 140%;
		letter-spacing: 0;
		margin-bottom: 20px;
		text-align: center;
	}
	.top-products .lower-container .item-txt p {
		text-align: center;
	}
	.top-products .lower-container .item-txt p br {
		display: none;
	}
	.top-products .lower-container .item-img {
		width: 100vw;
		margin: 0 calc(50% - 50vw) 30px;
		height: auto;
	}
	.top-products .lower-container .item-txt .common-btn a {
		margin: 0 auto;
	}
}
@media screen and (max-width: 520px) {
	.top-products .lower-container .item-txt p br {
		display: block;
	}
}


/*納品事例*/
.top-section.top-case {
	background-color: transparent;
	background: url(./images/top/top_case_bkg.jpg) center/cover no-repeat;
	position: relative;
}
.top-section.top-case:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.top-section.top-case .over-section-inner {
	position: relative;
	z-index: 1;
}
.top-section.top-case .top-h2 {
	text-align: center;
	border-top: 1px solid #fff;
	padding-top: 80px;
}
.top-case .case-container {
	width: 100vw;
	margin: 0 calc(50% - 50vw) 60px;
}
.case-swiper {
	padding: 0 80px !important;
}
.case-swiper .swiper-slide a {
	display: block;
	color: #fff;
}
.case-swiper .swiper-slide .img {
	aspect-ratio: 4/3;
	background: #000;
}
.case-swiper .swiper-slide .img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.case-swiper .swiper-slide .ttl {
	display: block;
	font-size: 110%;
	margin-top: 10px;
}
.swiper-button-prev, .swiper-button-next {
	background: #000;
	border: 2px solid #fff;
	width: 40px !important;
	height: 40px !important;
	box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
}
.swiper-button-prev {
	left: 5% !important;
}
.swiper-button-next {
	right: 5% !important;
}
.swiper-button-prev:after, .swiper-button-next:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.swiper-button-prev:after {
	border-right: 10px solid #fff;
	border-left: 0;
}
.swiper-button-next:after {
	border-left: 10px solid #fff;
	border-right: 0;
}

.top-section.top-case .common-btn a {
	margin: 0 auto;
}

@media screen and (max-width: 960px) {
	.case-swiper {
		padding: 0 200px !important;
	}
}
@media screen and (max-width: 640px) {
	.case-swiper {
		padding: 0 40px !important;
	}
}

/*お知らせ*/
.top-info .over-section-inner {
	display: flex;
	gap: 0 80px;
}
.top-info .ttl-box {
	width: 280px;
}
.top-info .ttl-box .common-btn a {
	padding: 10px 0;
	max-width: 250px;
}
.top-info .info-container {
	width: calc(100% - 360px);
}

.info-container ul li {
	border-bottom: 1px solid #fff;
	padding: 25px 10px;
	display: flex;
}
.info-container ul li:first-child {
	padding-top: 0;
}
.info-container ul li .info-date {
	display: inline-block;
	font-family: "Manrope", sans-serif;
	letter-spacing: .1rem;
	width: 110px;
	margin-right: 20px;
}
.info-container ul li .info-title {
	width: calc(100% - 130px);
}
.info-container ul li .info-title a {
	color: #fff;
}

@media screen and (max-width: 1280px) {
	.top-info .over-section-inner {
		gap: 0 20px;
	}
	.top-info .info-container {
		width: calc(100% - 300px);
	}
}
@media screen and (max-width: 960px) {
	.top-info .over-section-inner {
		flex-direction: column;
		position: relative;
		padding-bottom: 110px;
	}
	.top-info .ttl-box {
		width: 100%;
	}
	.top-info .ttl-box .top-h2 {
		text-align: center;
	}
	.top-info .ttl-box .common-btn {
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		width: 100%;
	}
	.top-info .ttl-box .common-btn a {
		max-width: 300px;
		margin: 0 auto;
	}
	.top-info .info-container {
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	.top-info .over-section-inner {
		padding-bottom: 95px;
	}
	.info-container ul li {
		padding: 15px 0;
		flex-direction: column;
	}
	.info-container ul li .info-date {
		width: 100%;
		margin-right: 0;
	}
	.info-container ul li .info-title {
		width: 95%;
		margin: 0 auto;
	}
}

/*よくあるご質問*/
.top-faq-wrapper {
	background: url(./images/top/top_faq_bkg.jpg) center top/cover no-repeat;
	position: relative;
}
.top-faq-wrapper:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.top-faq {
	position: relative;
	z-index: 1;
}
.top-faq .top-h2 {
	text-align: center;
	margin-bottom: 40px;
}
.top-faq .faq-container {
	margin-bottom: 60px;
}
.faq-container .faq-item {
	border-bottom: 1px solid #fff;
	margin-bottom: 20px;
}
.faq-container .faq-item:last-child {
	margin-bottom: 0;
}
.faq-container .faq-item button {
	display: block;
	width: 100%;
	text-align: left;
	padding: 20px 60px 20px 50px;
	color: #fff;
	position: relative;
}
.faq-container .faq-item button:before {
	content: "Q.";
	position: absolute;
	top: 19px;
	left: 20px;
	font-size: 120%;
}
.faq-container .faq-item button:after {
	content: "+";
	position: absolute;
	top: 19px;
	right: 20px;
	font-size: 160%;
	font-weight: 400;
	transition: .3s all ease;
}
.faq-container .faq-item button.open:after {
	transform: rotate(45deg);
}
.faq-container .faq-item .answer {
	display: none;
	color: #fff;
	padding: 0  25px 20px 50px;
	position: relative;
}
.faq-container .faq-item .answer:before {
	content: "A.";
	position: absolute;
	top: 0;
	left: 20px;
	font-size: 120%;
}
.top-faq .common-btn a {
	margin: 0 auto;
}
@media screen and (max-width: 960px) {
	.top-faq .top-h2 {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 640px) {
	.top-faq .faq-container {
		margin-bottom: 45px;
	}
	.faq-container .faq-item {
		margin-bottom: 0;
	}
	.faq-container .faq-item button {
		padding: 20px 40px 20px 35px;
	}
	.faq-container .faq-item button:before {
		left: 5px;
	}
	.faq-container .faq-item button:after {
		right: 5px;
	}
	.faq-container .faq-item .answer {
		padding: 0  5px 20px 35px;
	}
	.faq-container .faq-item .answer:before {
		left: 5px;
	}
}

/*SNSバナー*/
.top-insta-banner {
	
	display: none;
	
	background: url(./images/top/insta_banner_bkg.jpg) center/cover no-repeat;
	max-width: 800px;
	width: 90%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.top-insta-banner a {
	display: block;
}
.top-insta-banner .inner {
	display: flex;
	gap: 0 40px;
	align-items: center;
	padding: 20px 40px;
}
.top-insta-banner .qr {
	width: 30%;
	text-align: center;
}
.top-insta-banner .qr img {
	max-width: 150px;
}
.top-insta-banner .logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 40%;
}
.top-insta-banner .logo-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.top-insta-banner .logo .icon {
	width: 30px;
	margin-bottom: 10px;
}
.top-insta-banner .logo .txt {
	max-width: 180px;
	margin-bottom: 10px;
}
.top-insta-banner .logo p {
	color: #fff;
	white-space: nowrap;
}

.top-insta-banner .img {
	width: 30%;
	margin-bottom: -20px;
}

/*お問い合わせ*/
.top-contact .over-section-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 80px;
}
.top-contact .ttl-box {
	width: 320px;
}
.top-contact .ttl-box h2 {
	font-size: 140%;
	letter-spacing: .1rem;
	font-weight: 500;
	margin-bottom: 30px;
}
.top-contact .ttl-box .tel {
	text-align: center;
	margin-bottom: 10px;
}
.top-contact .ttl-box .tel a {
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: 160%;
	font-weight: 600;
}
.top-contact .ttl-box .tel a span {
	margin-left: 10px;
	font-size: 150%;
}
.top-contact .ttl-box .notes {
	font-size: 90%;
	text-align: center;
}
.top-contact .contact-container {
	width: calc(100% - 400px);
	max-width: 360px;
}
.top-contact .contact-container .common-btn:first-child {
	margin-bottom: 20px;
}
.top-contact .contact-container .common-btn a {
	max-width: 100%;
	padding: 20px 0;
	letter-spacing: 0;
}

@media screen and (max-width: 960px) {
	
	.top-contact .over-section-inner {
		gap: 0 40px;
	}
	.top-contact .contact-container {
		width: calc(100% - 360px);
	}
}

@media screen and (max-width: 770px) {
	.top-contact .over-section-inner {
		gap: 0 30px;
	}
	.top-contact .ttl-box {
		width: 260px;
	}
	.top-contact .ttl-box h2 {
		font-size: 120%;
		margin-bottom: 20px;
		text-align: center;
	}
	.top-contact .ttl-box .tel {
		text-align: center;
	}
	.top-contact .ttl-box .tel a {
		font-size: 120%;
	}
	.top-contact .ttl-box .tel a span {
		font-size: 130%;
	}
	.top-contact .contact-container {
		width: calc(100% - 290px);
	}
	.top-contact .contact-container .common-btn:first-child {
		margin-bottom: 10px;
	}
	.top-contact .contact-container .common-btn a {
		padding: 15px 0;
	}
}

@media screen and (max-width: 640px) {
	.top-contact .over-section-inner {
		flex-direction: column;
		gap: 0;
	}
	.top-contact .ttl-box {
		width: 100%;
		margin-bottom: 30px;
	}
	.top-contact .ttl-box .tel {
		margin-bottom: 5px;
	}
	.top-contact .ttl-box .tel a {
		font-size: 140%;
	}
	.top-contact .contact-container {
		width: 100%;
	}
}


/******************
フッター
******************/
.footer {
	background: #000;
	color: #fff;
}
.footer-inner {
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 40px 0;
}
.footer .overview {
	display: flex;
	align-items: center;
	gap: 0 40px;
}
.footer-logo {
	width: 120px;
}
.footer-logo a {
	display: block;
}
.footer-info {
	font-size: 80%;
}
.footer-info .tel {
	margin-top: 10px;
}

.footer-nav ul {
	display: flex;
	gap: 0 20px;
	margin-bottom: 20px;
}
.footer-nav ul li a {
	color: #fff;
	font-size: 80%;
}
.copyright {
	font-size: 80%;
	text-align: right;
}

@media screen and (max-width: 960px) {
	.footer .overview {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-logo {
		margin-bottom: 10px;
	}
	.footer-info .tel {
		margin-top: 0;
	}
	.footer-nav ul {
		gap: 0 15px;
	}
}
@media screen and (max-width: 640px) {
	.footer-inner {
		padding: 40px 0 20px;
	}
	.footer-nav ul {
		gap: 0;
		margin-bottom: 10px;
		flex-direction: column;
		align-items: flex-end;
	}
}
@media screen and (max-width: 480px) {
	.footer-inner {
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
	}
	.footer .overview {
		align-items: center;
		width: 100%;
		margin-bottom: 20px;
	}
	.footer-info {
		text-align: center;
	}
	.footer-nav {
		width: 100%;
	}
	.footer-nav ul {
		align-items: center;
	}
	.copyright {
		text-align: center;
	}
}


/******************
プリントレイアウト
******************/

@media print {
	body {
		width:1600px;
	}
	#wrapperTop,#wrapper{
		padding-top: 0;
		overflow:visible !important;
	}
	#wrapperTop #header, #wrapper #header{
		position: relative;
	}
}
@page {
	margin: 16mm 10mm;
}
@-moz-document url-prefix() {
	@page{
		margin: auto;
	}
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	@page {
		margin: auto;
	}
}


@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}