@charset "UTF-8";

html {
	width: 100%;
	height: 100%;
	color: #333;
	margin: 0;
	padding: 0;
	font-feature-settings: "palt" 1;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,figure {
	margin: 0;
	padding: 0;
}

body{
	font-size: 14px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック","Yu Gothic","メイリオ",Meiryo,"Verdana",sans-serif;
	line-height: 1.43;
	counter-reset:number;
	height: 100%;
	-webkit-text-size-adjust: none;
}

table {
	font: 100%;
	font-size: inherit;
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th { text-align:left; }

fieldset,img { border: 0;}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}
address,caption,cite,code,dfn,em,th,var {
	font-style: normal;
	font-weight: normal;
}
ol,ul { list-style: none;}

q:before,q:after { content:'';}
abbr,acronym {
	border: 0;
	font-variant: normal;
}
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom;}
input,textarea,select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	outline: 0;
}
legend{ color:#555;}

select,input,button,textarea{ font-family: "游ゴシック体", YuGothic, "游ゴシック","Yu Gothic","メイリオ",Meiryo,"ＭＳ Ｐゴシック","Verdana",sans-serif; }

pre,code,kbd,samp,tt{
	font-family: monospace;
	line-height: 100%;
}

main { display: block; }

a {
	color: inherit;
	outline: none;
	text-decoration: none;
}
a:hover { text-decoration: none; }
a:focus { text-decoration: none; }
a:active { text-decoration: none; }

img {
	max-width: 100%;
	vertical-align: middle;
}

a img { border: none; }

li img,
dt img,
dd img{ vertical-align: top; }

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

html, body {
	height: 100%;
	text-align: justify;
	text-justify: inter-ideograph;
}
body { -webkit-text-size-adjust: 100%; }

/* common */
#wrapper {
	display: flex;
	overflow: hidden;
	min-height: 100vh;
	flex-direction: column;
}
#contents { flex-grow: 1; }
[data-fade] {
	opacity: 0;
	transform: translateY(20px);
	transition-duration: 1s;
	transition-property: opacity, transform;
}
[data-fade].show {
	opacity: 1;
	transform: translateY(0);
}
.deco-b, .deco-a { position: relative; }
.deco-b::before,
.deco-a::after {
	content: "";
	display: block;
	position: absolute;
	background: no-repeat center center;
	background-size: cover;
	pointer-events: none;
	z-index: 400;
}
@media screen and (min-width:769px), print{
	.sp { display: none !important; }
	a[href^="tel:"] { pointer-events: none; }
}
@media screen and (max-width:768px){
	.pc { display: none !important; }
}

/* scrollbar */
.jspTrack, .jspHorizontalBar { background: #c3e6f3 }
.jspDrag { background: #50aacd; }
.jspHorizontalBar { height: 5px; }
.jspTrack, .jspDrag {
	border-radius: 3px;
}

/* header */
#headCont {
	top: 0;
	left: 0;
	width: 100vw;
	position: fixed;
	z-index: 9999;
}
#headCont #gMenu #gMenuList {
	font-weight: bold;
}
#gContact {
	color: #fff;
	text-align: center;
	background: #ff79a8;
}
#gContact .cLinks {
	display: flex;
	justify-content: center;
}
#gContact .cLinks a { display: block; }
#gContact .title { font-weight: bold; }
@media screen and (min-width:769px), print{
	#headCont {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	#headCont::before {
		content: "";
		z-index: -1;
		top: 0;
		left: 0;
		opacity: 0;
		width: 100%;
		height: 200px;
		display: block;
		position: absolute;
		pointer-events: none;
		transition-duration: .3s;
		transition-property: opacity;
		background-image: linear-gradient(0deg,rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 70%);
	}
	#headCont.scroll::before { opacity: 1; }
	#headCont #headLogo { margin: 30px; }
	#headCont #headLogo img {
		height: 196px;
		transition-duration: .3s;
		transition-property: height;
	}
	#headCont.scroll #headLogo img {
		height: 126px;
	}
	#headCont #gMenu {
		flex-grow: 1;
		display: flex;
		justify-content: flex-end;
	}
	#headCont #gMenu #gMenuList {
		display: flex;
		font-size: 16px;
		margin-top: 49px;
	}
	#headCont #gMenu #gMenuList li {
		margin: 0 10px;
	}
	#headCont #gMenu #gMenuList a {
		display: block;
		padding: 13px 10px;
		position: relative;
	}
	#headCont #gMenu #gMenuList a::after {
		content: "";
		width: 0%;
		height: 6px;
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		background: #ff79a8;
		transition-duration: .3s;
		transition-property: width;
	}
	#headCont #gMenu #gMenuList a:hover::after {
		width: 100%;
	}
	#headCont .link_inst {
		margin: 44px 25px 0 5px;
	}
	#headCont .link_inst a {
		width: 64px;
		height: 64px;
		display: flex;
		background: #fff;
		border-radius: 50%;
		align-items: center;
		justify-content: center;
		transition-duration: .3s;
		transition-property: transform;
	}
	#headCont .link_inst a:hover {
		transform: scale(1.2);
	}
	#headCont .link_inst a .icon {
		width: 33px;
	}
	#gContact {
		width: 166px;
		padding: 15px 0 24px;
		border-radius: 0 0 0 20px;
	}
	#gContact .title {
		font-size: 16px;
		margin-bottom: 14px;
	}
	#gContact .cLinks li {
		width: 48px;
		margin: 0 4px;
	}
	#gContact .cLinks a {
		transition-duration: .3s;
		transition-property: transform;
	}
	#gContact .cLinks a:hover {
		transform: scale(1.2);
	}
}
@media screen and (max-width:768px){
	#headLogo {
		top: 10px;
		left: 10px;
		width: 107px;
		z-index: 9999;
		position: absolute;
		transition-duration: .3s;
		transition-property: width;
	}
	#headLogo.scroll,
	.open #headLogo {
		width: 82px;
	}
	#headLogo img {
		padding: 8px;
		border-radius: 50%;
		box-sizing: border-box;
		transition-duration: .3s;
		transition-property: background-color;
	}
	.open #headLogo img {
		background: #fff;
	}
	#gMenuIcon {
		top: 10px;
		right: 10px;
		cursor: pointer;
		position: fixed;
		z-index: 9999;
	}
	#gMenuIcon span {
		width: 60px;
		height: 0;
		padding-top: 60px;
		display: block;
		overflow: hidden;
	}
	#gMenuIcon::before,
	#gMenuIcon::after,
	#gMenuIcon span::before {
		content: "";
		width: 30px;
		height: 2.5px;
		display: block;
		background: #000;
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		transition-duration: .3s;
		transition-property: transform, background-color, top, bottom;
	}
	#gMenuIcon::before { top: 20px; }
	#gMenuIcon::after { bottom: 20px; }
	#gMenuIcon span::before {
		top: 0;
		bottom: 0;
	}
	.open #gMenuIcon::before {
		top: 28px;
		background: #fff;
		transform: rotate(45deg);
	}
	.open #gMenuIcon::after {
		bottom: 30px;
		background: #fff;
		transform: rotate(-45deg);
	}
	.open #gMenuIcon span::before { width: 0; }
	#gMenu {
		top: 0;
		left: 100%;
		position: fixed;
		z-index: 9998;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		padding: 105px 50px 50px;
		overflow-y: auto;
		background: #50aacd;
		transition-duration: .3s;
		transition-property: left;
	}
	.open #gMenu {
		left: 0;
	}
	.open #gMenu #gMenuList li + li {
		margin-top: 2px;
	}
	.open #gMenu #gMenuList a,
	.open #gMenu .link_inst a {
		display: block;
		font-size: 15px;
		background: #fff;
		border-radius: 10px;
		padding: 13px 13px 13px 40px;
	}
	.open #gMenu #gMenuList a::before {
		content: "";
		width: 1em;
		height: 1em;
		border-radius: 50%;
		background: #e1ef2a;
		display: inline-block;
		vertical-align: middle;
		margin-top: -0.2em;
		margin-right: 0.3em;
	}
	.open #gMenu .link_inst a {
		margin: 27px 0;
		font-weight: bold;
	}
	.open #gMenu .link_inst .icon img {
		width: 30px;
		margin-right: 20px;
	}
	.open #gMenu .cLinks li + li {
		margin-top: 12px;
	}
	.open #gMenu .cLinks li a {
		display: flex;
		font-size: 18px;
		font-weight: bold;
		align-items: center;
		border-radius: 999px;
		border: 1px solid #ff79a8;
		padding: 12px;
	}
	.open #gMenu .cLinks .cLink_tel a {
		color: #fff;
		background: #ff79a8;
	}
	.open #gMenu .cLinks .cLink_line a {
		color: #4cc764;
		background: #fff;
	}
	.open #gMenu .cLinks .icon img {
		width: 33px;
		border-radius: 50%;
	}
	.open #gMenu .cLinks .cLink_tel .icon {
		margin-left: 10px;
		margin-right: 12px;
	}
	.open #gMenu .cLinks .cLink_line .icon {
		margin-right: 28px;
	}
	.open #gMenu .cLinks li a small {
		font-size: 9.5px;
		margin-left: 0.5em;
	}
	#gContact {
		top: 10px;
		right: 80px;
		border-radius: 8px;
		padding: 4px 4.5px 6px;
		position: absolute;
		z-index: 9997;
	}
	#gContact .title {
		font-size: 8px;
		margin-bottom: 2px;
	}
	#gContact .cLinks li {
		width: 36px;
		margin: 0 2.5px;
	}
}

/* footer */
#footCont { background: #efefef; }
#footInner { position: relative; }
#footInner::before {
	content: "";
	display: block;
	position: absolute;
	background: url(../images/logo.png) no-repeat center center;
	background-size: 100% 100%;
}
#footInfo .title { font-weight: bold; }
#footMenu {
	display: flex;
	flex-wrap: wrap;
	font-weight: bold;
}
#footMenu li a::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
}
#footMenu li:not(.instagram) a::before {
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background: #50aacd;
	margin-right: 0.3em;
	margin-top: -0.2em;
}
#footMenu li.instagram a::before {
	background: url(../images/icon_instagram.png) no-repeat center center;
	background-size: 100% 100%;
}
#footLastBlock { font-weight: bold; }
#pageTopLink {
	opacity: 0;
	pointer-events: none;
	transition-duration: .3s;
	transition-property: opacity;
	position: fixed;
	z-index: 500;
}
#pageTopLink.scroll {
	opacity: 1;
	pointer-events: auto;
}
#pageTopLink a {
	color: #fff;
	display: block;
	font-weight: bold;
	text-align: center;
	background: #50aacd;
	box-sizing: border-box;
}
#pageTopLink a::before {
	content: "";
	left: 0;
	right: 0;
	margin: 0 auto;
	display: block;
	position: absolute;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
}
@media screen and (min-width:769px), print{
	#footInner {
		margin: 0 auto;
		max-width: 1283px;
		padding: 40px 25px 215px;
	}
	#footInner::before {
		width: 130px;
		height: 136px;
	}
	#footInfo,
	#footMenu {
		float: left;
		width: 700px;
		padding-left: 177px;
		box-sizing: border-box;
	}
	#footMap {
		float: right;
		width: calc(100% - 700px);
	}
	#footInfo .title {
		font-size: 30px;
	}
	#footInfo .address,
	#footInfo .tel {
		font-size: 17px;
		line-height: 36px;
	}
	#footInfo .tel small {
		font-size: 14px;
	}
	#footInfo .text {
		font-size: 14px;
		line-height: 20px;
		margin-top: 8px;
	}
	#footMenu {
		font-size: 14px;
		padding-top: 10px;
	}
	#footMenu li {
		margin-top: 32px;
		margin-right: 45px;
	}
	#footMenu li.instagram a::before {
		width: 30px;
		height: 30px;
		margin: -1em 1em -1em 0;
	}
	#footMenu a:hover { color: #50aacd; }
	#footMap iframe {
		width: 100%;
		height: 413px;
	}
	#footLastBlock { clear: both; }
	#footLastBlock {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	#footLastBlock .logo { margin-bottom: 17px; }
	#footLastBlock .text { font-size: 12px; }
	#footLastBlock .copyright { font-size: 13px; }
	#pageTopLink {
		right: 60px;
		bottom: 60px;
	}
	#pageTopLink a {
		width: 80px;
		height: 80px;
		font-size: 10px;
		border-radius: 20px;
		padding-top: 55px;
		transition-duration: .3s;
		transition-property: background-color;
	}
	#pageTopLink a:hover { background-color: #ff79a8; }
	#pageTopLink a::before {
		top: 25px;
		width: 26px;
		height: 26px;
	}
}
@media screen and (max-width:768px){
	#footCont {
		padding: 42px 25px 30px;
	}
	#footInfo {
		font-weight: bold;
		padding-left: 106px;
		background: url(../images/logo.png) no-repeat left top;
		background-size: 88px auto;
	}
	#footInfo .title {
		font-size: 20px;
	}
	#footInfo .address,
	#footInfo .tel {
		font-size: 13px;
		line-height: 25px;
	}
	#footInfo .tel small {
		font-size: 12px;
	}
	#footInfo .text {
		font-size: 12px;
		line-height: 17px;
	}
	#footMap iframe {
		width: 100%;
		height: 253px;
		margin-top: 40px;
	}
	#footMenu {
		font-size: 12px;
		margin-top: 22px;
	}
	#footMenu li:not(.instagram) {
		margin-top: 14px;
		margin-right: 39px;
	}
	#footMenu li:not(.instagram) a::before {
		margin-top: -0.1em;
	}
	#footMenu li.instagram {
		width: 100%;
		margin-top: 30px;
	}
	#footMenu li.instagram a::before {
		width: 32px;
		height: 32px;
		margin-right: 15px;
	}
	#footLastBlock .logo {
		width: 261px;
		margin-top: 48px;
	}
	#footLastBlock .text {
		font-size: 10px;
		line-height: 15px;
		margin-top: 10px;
	}
	#footLastBlock .copyright {
		font-size: 8px;
		margin-top: 35px;
	}
	#pageTopLink {
		right: 10px;
		bottom: 30px;
	}
	#pageTopLink a {
		width: 50px;
		height: 50px;
		font-size: 7px;
		padding-top: 29px;
		border-radius: 10px;
	}
	#pageTopLink a::before {
		top: 14px;
		width: 15px;
		height: 15px;
	}
}