@charset "utf-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	■ 共通
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
fieldset,
form,
label,
legend,
table,
caption,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

main,
article,
aside,
details,
summary,
blockquote,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block
}

h1,
h2,
h3,
h4,
h5,
dl,
dt,
dd,
ol,
ul,
li,
p,
figure {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none
}

img,
iframe,
select,
textarea {
	vertical-align: top
}

img {
	max-width: 100%;
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

html {
	height: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
}

sup {
	font-size: 50%;
	vertical-align: super
}

/*-------------------------------------------------------------------------
	body
-------------------------------------------------------------------------*/

body {
	height: 100%;
	font-size: 16px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-feature-settings: "palt";
	line-height: 1;
	letter-spacing: 0;
	-webkit-text-size-adjust: 100%;
	position: relative;
	color: #6F6F6E;
}


/*------------------------------------------------------------------------*/

@media screen and (max-width: 767px) {
	body {
		font-size: 14px;
	}
}

/*-------------------------------------------------------------------------
	menu
-------------------------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 100;
}

.logo img {
	height: 40px;
}

.pc_menu {
	margin: 0 auto;
	max-width: 900px;
}

.sp_menu {
	display: none;
}

.pc_menu ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
	column-gap: 1vw;
}

.pc_menu ul li ul {
	display: block;
}

nav ul li {
	position: relative;
}

nav ul li.has_child::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-top: 2px solid #6F6F6E;
	border-right: 2px solid #6F6F6E;
	transform: rotate(135deg) translateY(50%);
}

nav li.has_child ul {
	position: absolute;
	left: 0;
	top: 32px;
	z-index: 4;
	background: #6F6F6E;
	width: 180px;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
}

nav li.has_child ul li a {
	color: #fff;
	text-align: left;
}

.pc_menu ul li.has_child ul li:hover {
	background: #999;
}

nav li.has_child:hover>ul,
nav li.has-child:active>ul {
	visibility: visible;
	opacity: 1;
}

.pc_menu ul li {
	width: auto;
	margin: 0 auto;
	padding: 10px 5px;
}


.pc_menu a {
	color: #6F6F6E;
	text-decoration: none;
	text-align: center;
	padding: 0 10px;
}

.pc-menu a:hover {
	color: #999;
}

.humberger_menu {
	display: none;
}

.menubtn {
	position: relative;
	background: #6F6F6E;
	width: 50px;
	height: 50px;
	border-radius: 5px;
}

/*ボタン内側*/
.menubtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 5px;
	background: #fff;
	width: 45%;
}


.menubtn span:nth-of-type(1) {
	top: 13px;
}

.menubtn span:nth-of-type(2) {
	top: 19px;
}

.menubtn span:nth-of-type(3) {
	top: 25px;
}

.menubtn span:nth-of-type(3)::after {
	content: "Menu";
	/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top: 5px;
	left: -2px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.menubtn.active span:nth-of-type(1) {
	top: 14px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.menubtn.active span:nth-of-type(2) {
	opacity: 0;
}

.menubtn.active span:nth-of-type(3) {
	top: 26px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

.menubtn.active span:nth-of-type(3)::after {
	content: "Close";
	/*3つ目の要素のafterにClose表示を指定*/
	transform: translateY(0) rotate(-45deg);
	top: 5px;
	left: 4px;
}

/*------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
	header {
		height: 80px;
	}

	.pc_menu {
		display: none;
	}

	.logo {
		margin: 20px auto;
	}

	.menu_container {
		padding: 10px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.humberger_menu {
		display: block;
	}

	.menubtn.active {
		display: block;
	}

	nav ul li.has_child ul {
		width: 100%;
		position: relative;
		left: 0;
		top: 10px;
		visibility: hidden;
		opacity: 0;
		display: none;
		transition: visibility 0s, opacity 0.5s linear;
		background-color: #6F6F6E;
		margin: 0;
		padding: 0;
	}

	nav ul li {
		position: relative;
	}

	nav ul li.has_child::before {
		content: '';
		position: absolute;
		border-top: 2px solid #6F6F6E;
		border-right: 2px solid #6F6F6E;
		top: 20px;
		right: 20px;
		transform: rotate(135deg);
	}

	nav ul li.has_child.active::before {
		transform: rotate(-45deg);
	}

	nav ul li.has_child.active ul {
		display: block;
		visibility: visible;
		opacity: 1;
	}

	nav ul li.has_child ul li {
		padding: 15px 0;
	}

	nav ul li.has_child ul li:hover {
		background-color: #999;
	}

	nav ul li.has_child ul li a {
		text-align: center;
		color: #fff;
		padding-top: 0;
	}

	.sp_menu {
		display: none;
		background-color: #fff;
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		z-index: 10;
		padding-bottom: 60px;
	}

	.sp_menu.active {
		display: block;
		text-align: center;
	}

	.sp_menu ul {
		list-style: none;
		margin: 0;
		padding: 10px 0;
	}

	.sp_menu a {
		color: #6F6F6E;
		text-decoration: none;
	}

	.sp_menu.active ul li {
		padding: 15px 0;
	}
}

/*-------------------------------------------------------------------------
	main
-------------------------------------------------------------------------*/

main {}


/*------------------------------------------------------------------------*/

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


/*-------------------------------------------------------------------------
	article
-------------------------------------------------------------------------*/

article {
	overflow: hidden;
}


/*------------------------------------------------------------------------*/

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


/*-------------------------------------------------------------------------
	section
-------------------------------------------------------------------------*/

section {
	margin: 160px 0;
}

.bg {
	color: #fff;
}

.bg section:first-of-type {
	margin-top: 0;
	padding-top: 160px;
}

.bg section:last-of-type {
	margin-bottom: 0;
	padding-bottom: 160px;
}

section p,
section dt,
section summary {
	line-height: 1.75;
}

section p+p {
	margin-top: 16px;
}

section u {
	text-decoration: none;
	background: linear-gradient(transparent 75%, rgba(var(--accent-color), 0.25) 0%);
}

section a {
	font-weight: bold;
}

section a:hover {
	text-decoration: underline;
}

/*------------------------------------------------------------------------*/

@media screen and (max-width:767px) {
	section {
		margin: 64px 0;
	}

	.bg section:first-of-type {
		padding-top: 64px;
	}

	.bg section:last-of-type {
		padding-bottom: 64px;
	}
}


/*-------------------------------------------------------------------------
	inner
-------------------------------------------------------------------------*/

.inner {}


/*------------------------------------------------------------------------*/

@media screen and (min-width:768px) {
	.inner {
		width: calc(100% - 64px);
		max-width: 960px;
		margin: 0 auto;
	}

	.inner.max {
		width: 100%;
		max-width: 100%;
	}

	.inner.wide {
		max-width: 1200px;
	}

	.inner.thin {
		max-width: 880px;
	}

	.inner+.inner {
		margin-top: 120px;
	}
}


/*------------------------------------------------------------------------*/

@media screen and (max-width:767px) {
	.inner {
		width: calc(100% - 48px);
		margin: 0 24px;
	}

	.inner.max {
		width: 100%;
		max-width: 100%;
		margin: 0;
	}

	.inner+.inner {
		margin-top: 48px;
	}
}


/*-------------------------------------------------------------------------
	anchor
-------------------------------------------------------------------------*/

a {
	color: #6F6F6E;
	font-size: 100%;
	vertical-align: baseline;
	text-decoration: none;
	margin: 0;
	padding: 0;
}


/*------------------------------------------------------------------------*/

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


/*-------------------------------------------------------------------------
	hr
-------------------------------------------------------------------------*/

hr {
	display: block;
	height: 1px;
	border: 0;
	margin: 96px 0;
	padding: 0;
	background: #eee;
}


/*------------------------------------------------------------------------*/

@media screen and (max-width:767px) {
	hr {
		margin: 48px 0;
	}
}


/*-------------------------------------------------------------------------
	video
-------------------------------------------------------------------------*/

.iframe {
	position: relative;
	width: 100%;
}

.video_placeholder {
	width: 100%;
	padding-top: 56.25%;
	background: gray;
	position: relative;
	cursor: pointer;
}

.video_placeholder::before {
	content: '▶';
	font-size: 3em;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video_wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.video_wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*-------------------------------------------------------------------------
	figure
-------------------------------------------------------------------------*/

.figure {
	text-align: center;
}

.figure>img {
	width: 100%;
}

.figure *+figcaption {
	margin-top: 48px;
}

.figure figcaption+* {
	margin-top: 48px;
}

.figure figcaption p {
	font-size: 20px;
	text-align: left;
}

/*------------------------------------------------------------------------*/

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


	.figure *+figcaption {
		margin-top: 24px;
	}

	.figure figcaption+* {
		margin-top: 24px;
	}

	.figure figcaption p {
		font-size: 16px;
	}

	.figure.max {
		margin: 0 -24px;
	}


}

/*-------------------------------------------------------------------------
	box
-------------------------------------------------------------------------*/

.box {
	background: #fff;
	border: 1px solid #5F4541;
	padding: 80px 64px;
}

.box h3 {
	font-size: 24px;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 80px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.box h3 span {
	position: relative;
	text-align: left;
}

.box h3 span:after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background: #5F4541;
	margin: 0 auto;
	margin-top: 16px;
}

/*------------------------------------------------------------------------*/

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


	.box {
		padding: 40px 24px;
	}

	.box h3 {
		font-size: 20px;
		margin-bottom: 40px;
	}

	.box h3:after {
		width: 240px;
		margin-top: 8px;
	}


}

/*-------------------------------------------------------------------------
	function
-------------------------------------------------------------------------*/

.function {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -16px 32px -16px;
}

.function:last-of-type {
	margin-bottom: -64px;
}

.function li {
	flex: none;
	width: calc(100% / 2 - 32px);
	margin: 0 16px 64px 16px;
}

.function dl {
	display: flex;
}

.function dt {
	flex: none;
	width: 144px;
	margin-right: 16px;
	text-align: center;
}

.function dt img {
	width: 100%;
	height: auto;
}

.function dd {
	flex: 1;
}

.function dd h4 {
	font-size: 20px;
	line-height: 1.5;
}

.function dd p {
	font-size: 16px;
	margin-top: 8px;
}

.function dd small {
	font-size: 14px;
	line-height: 1.75;
	/* padding-left: .75em;
    text-indent: -.75em; */
	margin-top: 14px;
	display: block;
}

/*------------------------------------------------------------------------*/

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


	.function {}

	.function:last-of-type {
		margin-bottom: -32px;
	}

	.function li {
		width: calc(100% - 32px);
		margin-bottom: 32px;
	}

	.function dt {
		width: 96px;
		margin-right: 16px;
	}

	.function dd h4 {
		font-size: 18px;
	}

	.function dd p {
		font-size: 14px;
	}


}



/*-------------------------------------------------------------------------
	indent
-------------------------------------------------------------------------*/

.indent {
	margin-top: 24px;
}

.indent li {
	font-size: 14px;
	line-height: 1.75;
	padding-left: .75em;
	text-indent: -.75em;
}

/*------------------------------------------------------------------------*/

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

	.indent {
		margin-top: 16px;
	}

	.indent li {
		font-size: 12px;
	}
}




/*-------------------------------------------------------------------------
	other
-------------------------------------------------------------------------*/

.center {
	text-align: center;
}

.left {
	text-align: left;
}


/*------------------------------------------------------------------------*/

@media screen and (min-width:768px) {
	.sp {
		display: none !important
	}
}


/*------------------------------------------------------------------------*/

@media screen and (max-width:767px) {
	.pc {
		display: none !important
	}
}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	■ pagetop
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pagetop {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	position: fixed;
	right: 0;
	bottom: 40px;
	margin-left: auto;
	margin-right: 40px;
	z-index: 1;
}

.pagetop a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagetop span {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
}

.logo {
	text-align: center;
	margin-bottom: 20px;
	margin-top: 20px;
}


/*------------------------------------------------------------------------*/

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


	.pagetop {
		width: 80px;
		height: 80px;
		bottom: 24px;
		margin-right: 24px;
	}

	.pagetop span {
		font-size: 14px;
	}


}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	■ フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

footer {
	padding: 24px 0;
	background: #707070;
	color: #fff;
}

footer dl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

footer dt {
	margin-right: auto;
}

footer dd {
	text-align: center;
}


/*------------------------------------------------------------------------*/

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

	footer dl {
		flex-direction: column;
	}

	footer dt {
		margin-left: auto;
	}

	footer dt img {
		zoom: .75;
	}

	footer dd {
		margin-top: 16px;
	}
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	■ フェードイン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fade-in {
	opacity: 0;
	transition-duration: 1000ms;
	transition-property: opacity, transform;
}

.fade-in-up {
	transform: translate(0, 48px);
}

.fade-in-down {
	transform: translate(0, -48px);
}

.fade-in-left {
	transform: translate(-48px, 0);
}

.fade-in-right {
	transform: translate(48px, 0);
}

.scroll-in {
	opacity: 1;
	transform: translate(0, 0);
}


/*------------------------------------------------------------------------*/

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


	.fade-in-up {
		transform: translate(0, 0);
	}

	.fade-in-down {
		transform: translate(0, 0);
	}

	.fade-in-left {
		transform: translate(0, 0);
	}

	.fade-in-right {
		transform: translate(0, 0);
	}


}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	■ 他モデルへのリンク
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


.models {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -16px -32px -16px;
	margin-top: 48px;
}

.recommend-items {
	display: flex;
	margin: 50px auto;
}
h2.recommend{
	margin-top: 100px;
	font-size: 32px;
}

.models li {
	flex: none;
	width: calc(100% / 4 - 32px);
	margin: 0 16px 32px 16px;
}

.recommend-items li {
	width: calc(100% / 3);
}

.recommend-items h4,
.recommend-items p {
	text-align: center;
}

.models li a {
	display: block;
}

.models dl {}

.models dt {
	margin-bottom: 16px;
}

.models dd {
	text-align: center;
}

.models dd p {
	margin-bottom: 8px;
}

.models dd h4 {
	font-size: 18px;
}


/*------------------------------------------------------------------------*/

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

	.models {
		margin: 0 -12px -24px -12px;
		margin-top: 24px;
	}

	.models li {
		width: calc(100% / 2 - 24px);
		margin: 0 12px 24px 12px;
	}

	h2.recommend {
		font-size: 20px;
	}

}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	■ 店舗概要
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.store {
	border: 1px solid;
	padding: 36px;
}


.store dl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.store dt {
	flex: 1;
}

.store dt img {
	width: 100%;
}

.store dd {
	flex: 1;
	margin-left: 32px;

}

.store dd h3 {
	text-align: left;
	margin-bottom: 8px;
}



/*------------------------------------------------------------------------*/

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

	.store {
		padding: 24px;
	}

	.store dl {
		display: block;
	}

	.store dd {
		margin-top: 24px;
		margin-left: 0;

	}



}