@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Utility
------------------------------------------------------*/
:root {
	--font-sans: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "Zen Old Mincho", "Noto Serif JP", "BIZ UDPMincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  --text-color: #333333;
  --main-color: #68ACCA;
	--dark-color: #DADADA;
	--sub-color: #645A50;
}
/* --------------------------------
   Base Typography
-------------------------------- */
html {
  font-family: var(--font-serif);
  font-size: 62.5%;
  font-weight: 400;
}
body {
	background: #F6F3E8;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
  color: var(--text-color);
	overflow-wrap: break-word;
  word-wrap: break-word;
}
.garamond {
  font-family: "Cormorant Garamond", serif;
}

/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
ul li {
	list-style-type: none;
}
ol li {
	list-style-type: decimal;
}
address {
	font-style: normal;
}
img {
	vertical-align: bottom;
}
iframe {
	width: 100%;
}
/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
	text-decoration: none;
	color: var(--text-color);
  transition: all .25s;
}
a > img {
  transition: all .25s;
}
a:hover > img, a:hover{
	opacity: 0.65;
}
a[href^="tel:"] {
  pointer-events: none;
}
.no_link {
  pointer-events: none;
}
/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.wrap {
  width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1360px) {
  .wrap {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    width: calc(100% - 40px);
  }
}
.left {
  text-align: left !important;
}
.center {
  text-align: center !important;
}
.right {
  text-align: right !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 76px;
}
.header_inner {
  position: relative;
}
.header_logo a {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 2;
  display: block;
  width: 281px;
  height: 36px;
  background-image: url("../img/common/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.header_nav {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 1;
  width: 100%;
	padding-right: 40px;
}
.header_nav ul.flex {
  align-items: center;
  justify-content: flex-end;
	gap: 0;
}
.header_nav ul.flex li a {
  position: relative;
  display: block;
	background: var(--main-color);
	border-radius: 9999px;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
  color: #fff;
}
#sp-fixed-menu {
  display: none;
}
@media screen and (max-width: 1200px) {
	.header_logo a {
		top: 24px;
		left: 20px;
		width: 230px;
		height: 29px;
	}
	.header_nav {
		padding-right: 20px;
	}
	.header_nav ul.flex li a {
		font-size: 16px;
	}
}
@media screen and (max-width: 950px) {
  header {
    height: 46px;
  }
  .header_logo a {
    top: 5px;
		width: 281px;
		height: 36px;
  }
	.header_nav {
		top: 4px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 500px) {
	.header_logo a {
    top: 10px;
		width: 200px;
		height: 26px;
  }
	.header_nav {
		top: 6px;
		padding-right: 10px;
	}
	.header_nav ul.flex li a {
		padding: 10px 10px;
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	haeder.fixed
------------------------------------------------------*/
header.fixed {
  background: #F6F3E8;
  transition: .5s;
}
header.fixed .header_logo a {
  background-image: url("../img/common/b_logo.svg");
}
/*-----------------------------------------------------
	aside
------------------------------------------------------*/
.fixed_nav {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 1;
}
.fixed_nav ul {
	width: 122px;
}
.fixed_nav ul li {
	width: 122px;
	margin-bottom: 2px;
}
.fixed_nav ul li:last-child {
	margin-bottom: 0;
}
.fixed_nav ul li a {
	display: block;
	width: 100%;
	padding: 22px 10px;
	background: var(--sub-color);
	border-radius: 10px 0 0 10px;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.fixed_nav ul li a span {
	position: relative;
	padding-left: 23px;
}
.fixed_nav ul li a span::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.fixed_nav ul li.reserv a span::before {
	width: 16px;
	height: 17px;
	background-image: url("../img/common/calendar.svg")
}
.fixed_nav ul li.line a span::before {
	background-image: url("../img/common/line.svg")
}
.fixed_nav ul li.tel a span::before {
	background-image: url("../img/common/tel.svg")
}
@media screen and (max-width: 750px) {
	 .fixed_nav {
    opacity: 1;
    pointer-events: auto;
		position: fixed;
		top: auto;
		right: 0;
		bottom: 0;
		transform: none;
		z-index: 20;
		width: 100%;
  }
	.fixed_nav ul {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
	}
	.fixed_nav ul li {
		width: 33.333%;
		margin-bottom: 0;
	}
	.fixed_nav ul li a {
		padding: 17px 10px;
		border-top: 1px solid #F6F3E8;
		border-radius: 10px 10px 0 0;
	}
	.fixed_nav ul li.reserv a {
		background: var(--main-color);
	}
	.fixed_nav ul li.line a {
		background: #00B900;
	}
}

/*-----------------------------------------------------
	footer
------------------------------------------------------*/
.footer_top_l {
  width: 50%;
	padding-top: 100px;
	padding-right: 86px;
	padding-bottom: 100px;
	padding-left: calc((100vw - min(100vw, 1280px)) / 2 + 24px);
	background: #E9F3F8;
}
.footer_top_l h2 {
  margin-bottom: 40px;
	text-align: center;
}
.footer_top_l dl {
	justify-content: space-between;
  font-size: 16px;
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.1em;
}
.footer_top_l dl dt {
  width: 90px;
  padding: 20px 0 20px 10px;
  border-top: 1px solid #DADADA;
}
.footer_top_l dl dd {
  width: calc(100% - 99px);
  padding: 20px 0 20px 10px;
  border-top: 1px solid #DADADA;
}
.footer_top_l dl dd ul li {
	margin-left: 20px;
	list-style-type: disc;
  font-size: 16px;
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.1em;
}
.footer_top_r {
  width: 50%;
}
.footer_top_r iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1360px) {
	.footer_top_l {
		padding-right: 40px;
		padding-left: 40px;
	}
}
@media screen and (max-width: 950px) {
	.footer_top_l {
		width: 100%;
		padding-top: 50px;
		padding-bottom: 20px;
	}
	.footer_top_r {
		width: 100%;
		height: 400px;
	}
}
@media screen and (max-width: 750px) {
	.footer_top_l dl {
		font-size: 13px;
	}
	.footer_top_l dl dt {
		width: 70px;
	}
	.footer_top_l dl dd {
		width: calc(100% - 79px);
	}
	.footer_top_l dl dd ul li {
		font-size: 13px;
	}
	.footer_top_r {
		height: 100.533vw;
	}
}

.footer_bottom {
  padding-top: 30px;
	padding-bottom: 30px;
  background: #474747;
	font-family: var(--font-sans);
	color: #fff;
  text-align: center;
}
.footer_bottom .wrap .flex {
	justify-content: space-between;
  margin-top: 56px;
  margin-bottom: 56px;
}
.footer_child {
  width: 32%;
	padding-top: 30px;
	border-top: 1px solid #DADADA;
  text-align: left;
}
.footer_child h3 {
	margin-bottom: 20px;
  font-size: 18px;
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.1em;
}
.footer_child ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px 40px;
	font-size: 14px;
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.1em;
}
.footer_child ul li a {
	position: relative;
	padding-left: 15px;
	font-size: 14px;
	font-weight: 400;
	line-height: 2.3;
	letter-spacing: 0.1em;
	color: #fff;
}
.footer_child ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: translateY(-50%) rotate(-45deg);
}
.footer_child:first-of-type ul {
	gap: 10px 40px;
}
.footer_child:first-of-type ul li a {
	padding-left: 0;
	font-size: 18px;
}
.footer_child:first-of-type ul li a::before {
	display: none;
}
.footer_bottom small {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 750px) {
	.footer_bottom {
		padding-top: 40px;
		padding-bottom: 90px;
	}
	.footer_bottom img {
		width: 80px;
		height: auto;
	}
	.footer_bottom .wrap .flex {
		margin-bottom: 16px;
	}
	.footer_child {
		width: 100%;
		margin-bottom: 40px;
	}
}

/*-----------------------------------------------------
	others
------------------------------------------------------*/
.ani {
  visibility: hidden;
}
.tb {
	display: none !important;
}
.sp {
	display: none !important;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	~750px SP
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 750px) {
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/	
  img {
    max-width: 100%;
    height: auto;
  }
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
	body {
		word-wrap: break-word;
	}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.tb {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}

@media screen and (max-width: 414px) {
  .tb {
		display: none !important;
	}
  .sp {
		display: block !important;
	}
}

@media screen and (max-width: 750px) {
  .scr table.has-fixed-layout {
    width: 700px!important;
  }
  .scr .has-fixed-layout tr th, .scr .has-fixed-layout tr td {
     display: table-cell!important;
   }
}