@charset "UTF-8";
@import url(sanitize.css);
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
/*============================
Base
============================*/
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-rendering: auto;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
	position: relative;
	letter-spacing: 0.025em;
	margin: 0;
	padding: 0;
	z-index: 0;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.47059;
	background-color: #fff;
	color: #333;
	font-style: normal;
}
a {
	font-family: "Lato", sans-serif;
	text-decoration: none;
	color: #111;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
a:hover {
	color: #333;
	cursor: pointer;
}
::placeholder {
	color: #999;
	font-size: 1.2em;
}
img {
	width: 100%;
	height: auto;
	-webkit-align-self: flex-start;
	align-self: flex-start;
}
a img {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a:hover img {
}
figure,
ul,
ol,
li,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
}
figure {
	width: 100%;
	box-shadow: 1px 6px 10px rgb(0 0 0 / 15%);
}
li {
	list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	letter-spacing: 0.025em;
	font-family: "Lato", sans-serif;
	font-weight: normal;
}
p {
	font-size: 0.9rem;
	margin: 0;
	padding: 0;
	line-height: 2;
	letter-spacing: 0;
}
small {
	font-size: 70%;
}
@media screen and (min-width: 981px) {
	/* pc */
	.sp {
		display: none !important;
	}
	.inner {
		width: 100%;
	}
}
@media only screen and (min-width: 481px) and (max-width: 1024px) {
	/* tablet */
	body {
		font-size: 16px;
		letter-spacing: 0.1em;
	}
	::placeholder {
		font-size: 1rem;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	p {
		word-break: break-word;
		font-weight: normal;
	}
	.sp {
		display: none;
	}
}
@media screen and (max-width: 980px) {
	body {
		font-size: calc(16 * (100vw / 480));
	}
	.pc {
		display: none !important;
	}
}

/*============================
#header
============================*/
#header .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 80px;
	margin: 0 auto;
	background: #f8f8f8;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
	position: fixed;
	top: 0;
	z-index: 3;
}
#header .inner .logo {
	width: 100%;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}
#header .inner .logo figure {
	margin-bottom: 0;
	box-shadow: none;
}
/* ボタン共通設定 */
.btn03 {
	/*影の基点とするためrelativeを指定*/
	position: relative;
	/*ボタンの形状*/
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	background: transparent;
	border-radius: 50px;
	/* border: solid 1px #333; */
	outline: none;
	/*アニメーションの指定*/
	transition: all 0.2s ease;
}

/*hoverをした後のボタンの形状*/
.btn03:hover {
	border-color: transparent;
}

/*ボタンの中のテキスト*/
.btn03 span {
	width: 100%;
	position: relative;
	z-index: 2; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
	/*テキストの形状*/
	display: block;
	padding: 15px 0px;
	background: #4e4854;
	border-radius: 50px;
	color: #f8f8f8;
	/*アニメーションの指定*/
	transition: all 0.3s ease;
	font-weight: bold;
	font-size: 16px;
}

/*== 下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushdown:before {
	content: "";
	/*絶対配置で影の位置を決める*/
	position: absolute;
	z-index: -1;
	top: 4px;
	left: 0;
	/*影の形状*/
	width: 100%;
	height: 100%;
	border-radius: 25px;
	/* background-color: #333; */
}

/*hoverの際にY軸に4pxずらす*/
.pushdown:hover span {
	background-color: #f8f8f8;
	color: #4e4854;
	transform: translateY(4px);
}

#header .inner .navi-box {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 50%;
	height: 100px;
	position: absolute;
	right: 50px;
}
#header .inner .navi-box .navi-button {
	margin: 0 0 0 20px;
}
#header .inner .navi-box .navi-button a {
}
#header .inner .navi-box .navi-button a span {
	padding: 15px 20px;
	font-size: 14px;
}
#header .inner .navi-box .tel {
	font-size: 26px;
	font-weight: bold;
}
#header .inner .navi-box .tel small {
}

/*============
nav
=============*/
#header nav {
	display: block;
	position: fixed;
	top: 0;
	left: -380px;
	bottom: 0;
	width: 100%;
	background: #ffffff;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all 0.5s;
	z-index: 5;
	opacity: 0;
}
#header .open nav {
	background: #f8f8f8;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
	left: 0;
	opacity: 1;
}
#header nav .inner {
	width: 100%;
	height: auto;
	padding: 60px 25px 25px;
	box-shadow: none;
}
#header nav .inner ul {
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
#header nav .inner ul li {
	position: relative;
	margin: 0;
}
#header nav .inner ul li.tel {
	text-align: center;
	margin: 0 0 15px;
}
#header nav .inner ul li.tel a {
	margin: 0;
	color: #4e4854;
	font-size: 1.5rem;
	font-weight: bold;
}
#header nav .inner ul li.instagram {
	text-align: center;
	margin: 0;
	display: flex;
	justify-content: center;
}
#header nav .inner ul li.instagram a {
	margin: 0;
}
#header nav .inner ul li.instagram a img {
	width: 50px;
}
#header nav .inner ul li small {
	font-size: 0.5rem;
}
#header nav .inner ul li a {
	display: block;
	color: #333;
	padding: 6px 0;
	text-decoration: none;
	transition-duration: 0.2s;
}
/*============
.toggle_btn
=============*/
#header .toggle_btn {
	display: block;
	position: fixed;
	top: 25px;
	left: 25px;
	width: 40px;
	height: 30px;
	transition: all 0.5s;
	cursor: pointer;
	z-index: 7;
}
#header .toggle_btn span {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000;
	border-radius: 4px;
	transition: all 0.5s;
}
#header .toggle_btn span:nth-child(1) {
	top: 4px;
}
#header .toggle_btn span:nth-child(2) {
	top: 14px;
}
#header .toggle_btn span:nth-child(3) {
	bottom: 3px;
}
#header .open .toggle_btn span {
	background-color: #000;
}
#header .open .toggle_btn span:nth-child(1) {
	-webkit-transform: translateY(10px) rotate(-315deg);
	transform: translateY(10px) rotate(-315deg);
}
#header .open .toggle_btn span:nth-child(2) {
	opacity: 0;
}
#header .open .toggle_btn span:nth-child(3) {
	-webkit-transform: translateY(-10px) rotate(315deg);
	transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
	display: none;
	transition: all 0.5s;
}
.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.8;
	z-index: 3;
	cursor: pointer;
}
.btn-gNav {
	display: none;
}
#gNav {
	position: fixed;
	top: 0;
	right: 0;
	height: 50px;
}
#gNav .gNav-menu {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	padding-left: 50px;
}
#gNav .gNav-menu li {
	padding-top: 5px;
}

@media screen and (min-width: 981px) {
	/* pc */
	#header .inner {
		padding: 0 50px;
	}
	#header .logo figure {
		max-width: 40px;
	}
	/* ボタン共通設定 */
	.btn03 {
		max-width: 300px;
	}
	/*ボタンの中のテキスト*/
	.btn03 span {
		max-width: 300px;
	}
	/*============
  nav
  =============*/
	#header nav,
	#header nav .inner,
	#header nav .inner ul {
		max-width: 320px;
	}

	/*============
  .toggle_btn
  =============*/
	#header .toggle_btn {
		max-width: 30px;
	}
	#header .toggle_btn span {
		max-width: 30px;
	}
}

@media only screen and (min-width: 481px) and (max-width: 1024px) {
	/* tablet */
}

@media screen and (max-width: 980px) {
	/* sp */
	.title-area {
		padding: calc(150 * (100vw / 480)) 0 calc(100 * (100vw / 480));
	}
	#header .logo figure {
		width: calc(40 * (100vw / 480));
	}

	/*============================
#header
============================*/
	#header {
		background-position: center;
	}
	#header .inner {
		height: calc(100 * (100vw / 480));
	}
	#header .inner .navi-button {
		width: 160px;
	}
	#header .inner .navi-button a {
		width: 160px;
	}
	#header .inner .navi-button a {
		height: calc(50 * (100vw / 480));
		padding: calc(14 * (100vw / 480)) 0;
	}
	#header .inner .navi-area .navi-button a::after {
		height: calc(10 * (100vw / 480));
	}
	#header .inner .navi-area .navi-button a:hover::after {
		height: calc(10 * (100vw / 480));
	}

	#header .inner .navi-box {
		height: calc(100 * (100vw / 480));
		margin: 0 calc(40 * (100vw / 480)) 0 auto;
	}
	#header .inner .navi-box .navi-button {
		margin: 0 calc(20 * (100vw / 480));
	}
	/*============
nav
=============*/
	#header nav {
		right: calc(1300 * (100vw / 480));
	}
	#header nav .inner {
		padding: 80px 40px 0;
	}
	#header nav .inner ul li a {
		margin: 0;
		font-size: 18px;
	}
	#header nav .inner ul li a small {
		font-size: 90%;
		margin: 0 0 0 10px;
	}
	/*==11==========
.toggle_btn
=============*/
	#header .toggle_btn {
		/* top: calc(30 * (100vw / 480)); */
		/* left: calc(30 * (100vw / 480)); */
		/* width: calc(40 * (100vw / 480)); */
		/* height: calc(40 * (100vw / 480)); */
	}
	#header .toggle_btn span {
		/* height: calc(4 * (100vw / 480)); */
	}
	#header .open .toggle_btn span {
		background: #000;
	}
	#header .open .toggle_btn span:nth-child(1) {
		/* top: calc(2 * (100vw / 480)); */
		transform: translateY(13px) rotate(-315deg) !important;
	}
	#header .toggle_btn span:nth-child(2) {
		/* top: calc(18 * (100vw / 480)); */
	}
	#header .open .toggle_btn span:nth-child(3) {
		/* bottom: calc(4 * (100vw / 480)); */
		transform: translateY(-9px) rotate(315deg) !important;
	}
	/*============
#mask
=============*/
	#gNav {
		height: calc(50 * (100vw / 480));
	}
	#gNav .gNav-menu {
		padding-left: calc(50 * (100vw / 480));
	}
	#gNav .gNav-menu li {
		padding-top: calc(5 * (100vw / 480));
	}
}

/*============================
page-top
============================*/
/*リンクの形状*/
#page-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #4d4c4d;
	border-radius: 5px;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
	width: 60px;
	height: 60px;
	color: #f8f8f8;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 0.6rem;
	transition: all 0.3s;
}
#page-top a:hover {
	background: #000;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 4;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*　下に下がる動き　*/
#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(100px);
	}
}

@media screen and (min-width: 981px) {
	/* pc */
}
@media only screen and (min-width: 481px) and (max-width: 1024px) {
	/* tablet */
	/*============================
page-top
============================*/
	/*リンクの形状*/
	#page-top a {
		width: calc(60 * (100vw / 1024));
		height: calc(60 * (100vw / 1024));
	}
	/*リンクを右下に固定*/
	#page-top {
		right: calc(10 * (100vw / 1024));
		bottom: calc(10 * (100vw / 1024));
	}
}
@media screen and (max-width: 980px) {
	/* sp */
	/*============================
page-top
============================*/
	/*リンクの形状*/
	#page-top a {
		width: calc(60 * (100vw / 480));
		height: calc(60 * (100vw / 480));
	}
	/*リンクを右下に固定*/
	#page-top {
		right: calc(10 * (100vw / 480));
		bottom: calc(10 * (100vw / 480));
	}
}

/*============================
#footer
============================*/
#footer {
	background-color: #f8f8f8;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}
#footer .copyright {
	padding: 30px;
	text-align: center;
	letter-spacing: 0;
}
@media screen and (min-width: 981px) {
	/* pc */
	#footer {
	}
	#footer .copyright {
	}
}
@media only screen and (min-width: 481px) and (max-width: 1024px) {
	/* tablet */
	#footer {
	}
	#footer .copyright {
		padding: calc(40 * (100vw / 1024)) 0;
	}
}
@media screen and (max-width: 980px) {
	#footer {
	}
	#footer .copyright {
		padding: calc(40 * (100vw / 480)) 0;
	}
}
