/*!
	Theme Name: 
	Theme URI: 
	Author: 
	Author URI: 
	Description: 

	Version: 0.0.1
*/
/************************/ :root {
	--bland: #806565;
	--att: #76A7C5;
	--sub: #7C7473;
	--bg-br: #F2FAFF;
	--zenmaru: "Zen Maru Gothic", serif;
	--robot: "Roboto", sans-serif;
	--fbold: 500;
}
/*snslink
	-----------------------------------*/
#snslink {
	padding-bottom: 5em;
	padding-top: 4em;
}
#snslink ul {
	display: flex;
	column-gap: 2em;
	justify-content: center;
}
#snslink ul li img {
	width: 40px;
}
.roboto-medium {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.zen-maru-gothic-regular {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
	font-style: normal;
}
.zen-maru-gothic-medium {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
	font-style: normal;
}
.reserve {
	position: fixed;
	bottom: 20px;
	right: 50px;
	background-color: #fff;
	padding: 20px 20px 20px;
/*	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);*/
	z-index: 1000;
	background: #84cce5;
	font-family: 'Roboto';
	text-align: center;
	border-radius: 3px;
	opacity: 0; /* 初期状態で透明 */
	visibility: hidden; /* 初期状態で非表示 */
	transition: opacity 0.5s ease, visibility 0.5s ease; /* フェードアニメーション */
	
}
.reserve .inner:hover::before {
	transform: rotate(325deg);
}
.reserve:hover {
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0.3);
}
.reserve.show {
	opacity: 1; /* 表示 */
	visibility: visible; /* 表示 */
}
.reserve a {
	color: #fff;
    min-width: 300px;
    display: block;
    max-width: 100%;
}
.reserve a:hover {}
.reserve .inner {
	position: relative;
}
.reserve .inner::before {
	content: none;
	background: url(/common/img/lineicon.png) no-repeat 0 0;
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	left: -30px;
	background-size: 100%;
	transform: rotate(-25deg);
	top: -20px;
	transition: ease .3s;
}
.reserve .inner h4 {
	margin: 0;
	line-height: 1.4;
}
html {
	font-size: 62.5%;
}
body {
	color: var(--bland);
	font-size: clamp(1.4rem, 1.5vw, 1.6rem);
	line-height: 1.7;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-optical-sizing: auto;
	font-style: normal;
}
section {
	overflow: hidden;
}
@media (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}
/* font  
-----------------------------------*/
main p {
	text-align: justify;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}
/* link  
-----------------------------------*/
a, a img, button {
	text-decoration: none;
	transition: ease 0.7s;
	color: #303030;
	backface-visibility: hidden;
}
main a:link, main a:visited {
	color: var(--blandatt);
}
main a:hover {
	text-decoration: underline;
	text-underline-offset: 0.2em;
	text-underline-offset: 6px;
}
.row {
	padding-right: 15px;
	padding-left: 15px;
}
.btn-pagelink {}
.btn-pagelink a {
	background: var(--bland);
	color: #fff;
	font-size: clamp(14px, 1.5vw, 2rem);
	display: block;
	padding: clamp(6px, 1vw, 17px) clamp(6px, 2vw, 30px);
	width: 70%;
	max-width: 260px;
	overflow: hidden;
	position: relative;
	border-radius: 50px;
}
.btn-pagelink a:link, .btn-pagelink a:visited {
	color: #fff;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.btn-pagelink a:hover {
	text-decoration: none;
}
.btn-pagelink a::after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	background-color: var(--att);
	width: 0;
	transition: .5s cubic-bezier(0, 0, 0, 0.95);
}
.btn-pagelink a:hover::after {
	width: 100%;
	left: 0;
	transition-duration: .3s;
}
.btn-pagelink a em {
	position: relative;
	z-index: 1;
	font-style: normal;
	font-weight: 100;
	letter-spacing: 0.03em;
}
.btn-pagelink a::before {
	content: '';
	clip-path: polygon(69% 58%, 57% 48%, 59% 48%, 72% 59%, 0 59%, 0 57%, 0 58%);
	z-index: 1;
	position: absolute;
	right: 5%;
	width: 20%;
	height: auto;
	background: #fff;
	transition: all .3s;
	top: -13%;
	bottom: 0;
	margin: auto;
}
/* container width
-----------------------------------*/
.container {
	margin: auto;
	max-width: 1230px;
	padding: 0px 15px;
	box-sizing: border-box;
	position: relative;
}
/* footer 
-----------------------------------*/
footer .footnav {
	display: flex;
	column-gap: 25px;
	justify-content: center;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	padding: 60px 3%;
}
.copy {
	background: var(--bland);
	color: #fff;
	padding: 55px 3%;
}
.copy ul {
	display: flex;
	justify-content: flex-start;
	column-gap: 10px;
	font-size: 1.3rem;
}
.copy a:link, .copy a:visited {
	color: #fff;
}
.copy ul li:first-child {
	/*	margin-right: auto;*/
}
/* pagetop 
-----------------------------------*/
.pagetop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 14px;
	z-index: 1;
}
.pagetop a {
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: cubic-bezier(0.02, 1.1, 0.98, 0.53) .3s;
}
.pagetop a span {
	font-size: 1rem;
	writing-mode: vertical-rl;
	margin-top: 1rem;
}
.pagetop a:hover {
	opacity: 0.6;
}
.pagetop a img {
	position: relative;
	right: 1px;
}
.pagetop a:hover img {
	transform: translateY(-10px);
}
.dli-arrow-up {
	display: inline-block;
	vertical-align: middle;
	color: #000;
	line-height: 1;
	position: relative;
	width: 0.1em;
	height: 3em;
	background: currentColor;
}
.dli-arrow-up::before {
	content: '';
	width: 0.65em;
	height: 0.65em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(-45deg);
	transform-origin: top right;
	position: absolute;
	top: -0.05em;
	right: 50%;
	box-sizing: border-box;
}
.sp_visible {
	display: none;
}
.sp_hidden {
	display: inherit;
}
/* googlemap
-----------------------------------*/
.gmap-wrap {
	max-width: 100%; /* ここに横幅を指定 */
}
.gmap {
	/*	filter: grayscale(100%);*/
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 40%; /* 比率を4:3に固定 */
}
.gmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* CONTACT
-----------------------------------*/
#contact {
	position: relative;
}
#contact .scrollwrap {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
#contact .scrolltext {
	display: flex;
}
#contact .scrolltext .text:first-child {
	-webkit-animation: 50s loop 0s linear infinite;
	animation: 50s loop 0s linear infinite
}
#contact .scrolltext .text:last-child {
	-webkit-animation: 50s loop 0s linear infinite;
	animation: 50s loop 0s linear infinite
}
#contact .scrolltext .text {
	flex: 0 0 auto;
	padding: 0 80px;
	color: #f8f8f8;
	font-size: 30rem;
	letter-spacing: -.01em;
	white-space: nowrap;
	font-family: var(--zenkaku-light);
	line-height: 1;
	font-weight: 100;
}
@-webkit-keyframes loop {
	to {
		-webkit-transform: translateX(-100%);
		transform: translate(-100%)
	}
}
@keyframes loop {
	to {
		-webkit-transform: translateX(-100%);
		transform: translate(-100%)
	}
}
#contact .contactbox {
	border-radius: 15px;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	background-color: #e5e5e51a;
	max-width: 1120px;
	margin: 0 auto;
}
#contact .contactinner {
	max-width: 660px;
	margin: auto;
	padding: 0em 0 2em;
}
#contact .contactinner h2 {
	border-bottom: 1px solid #e6e3e3;
	margin-bottom: 30px;
	padding-bottom: 30px;
	margin-top: 0;
	font-family: var(--zenkaku-light);
	font-size: clamp(4rem, 8vw, 10rem);
	font-weight: 300;
	letter-spacing: 0;
	text-align: center;
	color: #555050;
	padding-top: 0.3em;
}
#contact .contactinner h2 + p {
	text-align: center;
}
#contact .contactinner h2 span {
	display: block;
	font-size: clamp(1.3rem, 2vw, 3rem);
}
#contact .teltime {
	text-align: center;
	margin-bottom: 1em;
}
#contact .contactbox .tel a span {
	font-size: clamp(1rem, 1.5vw, 2rem);
}
#contact .contactinner .btn-pagelink {
	margin: auto;
	display: flex;
	justify-content: center;
}
#contact .contactinner .tel a {
	text-align: center;
	font-size: clamp(3rem, 4vw, 5rem);
	font-family: var(--zenkaku-light);
	font-weight: var(--fbold);
	display: block;
}
#suisen {
	padding: 4em 0 0;
}
#suisen h2 {
	font-size: clamp(2rem, calc(2rem + 1vw), 3rem);
	margin: 2em auto;
	font-weight: bold;
}
.gridcol {}
.gridcol ul {
	display: grid;
	grid-template-columns: 400px 1fr;
	column-gap: 2em;
}
.gridcol ul li:first-child span {
	text-align: center;
	display: flex;
	justify-content: center;
}
/* medhia query 
-----------------------------------*/
@media(min-width:769px) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: none;
	}
}
@media(max-width:1080px) {}
@media (max-width: 768px) {
	.gmap {
		height: 300px;
		padding-top: 0;
	}
	main {
		margin-top: 0px;
		padding-top: 0px;
	}
	/*sp visible hidden*/
	.sp_visible {
		display: inherit;
	}
	.sp_hidden {
		display: none;
	}
	/* container  
	-----------------------------------*/
	.container {
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.containerin {
		padding: 0;
	}
	.row {
		padding-right: 15px;
		padding-left: 15px;
	}
	/* main  
	-----------------------------------*/
	.pagelinklist li:nth-child(2) {
		display: none;
	}
	.btn-pagelink a::before {
		width: 60px;
		top: -13%;
	}
	.btn-pagelink a {
		padding: 13px 30px;
		max-width: 200px;
	}
	/* CONTACT
-----------------------------------*/
	#contact .contactbox {
		margin: 0 4%;
	}
	#contact .contactinner h2 {
		margin: 0 4%;
		padding: 3%;
	}
	/* footer  
	-----------------------------------*/
	footer .footnav {
		padding: 30px 3%;
		flex-direction: column;
	}
	.copy {
		background: var(--bland);
		color: #fff;
		padding: 1em;
	}
	.copy ul {
		flex-direction: column-reverse;
		font-size: 12px;
		line-height: 2;
	}
	.copy ul li:first-child {
		margin-top: 2em;
	}
	.reserve {
		position: fixed;
		bottom: 20px;
		right: 0px;
		left: 0;
		margin: auto 43px;
	}
	.gridcol ul {
		display: grid;
		grid-template-columns: 1fr;
		column-gap: 2em;
		margin: 0 3em;
	}
}
@media(max-width:480px){
	body{
	    padding-bottom: 8em;
}
}