@charset "UTF-8";
/* CSS Document */



html {
	font-size: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: scroll;
	/* All browsers without overlaying scrollbars */
	-webkit-text-size-adjust: 100%;
	/* iOS 8+ */
	scroll-behavior: smooth;
	scroll-padding-top: 135px;
}

html {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

body {
	font-size: 1.8rem;
	line-height: 2.2;
	color: #666;
	background-color: #fff;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, 'MS PGothic', arial, helvetica, sans-serif;
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	/* text-align: justify; */
	letter-spacing: 0.05em;
}

@media only screen and (max-width: 799px) {
	body {
		font-size: 4.2vw;
		line-height: 1.8;
	}
}

body,
h1,
h2,
h3,
h4,
h5,
p {
	margin: 0;
}


ol,
ul {
	list-style: none;

}

/* dl,
dt,
dd {
	all: unset;
	display: block;
} */
button {
	all: unset;
	display: block;
}

table {
	border-collapse: collapse;
}

/* .sp_obj {
	display: none !important;
} */

*,
::before,
::after {
	background-repeat: no-repeat;
	/* Set `background-repeat: no-repeat` to all elements and pseudo elements */
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

::before,
::after {
	text-decoration: inherit;
	/* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
	vertical-align: inherit;
}

* {
	padding: 0;
	/* Reset `padding` and `margin` of all elements */
	margin: 0;
	background: transparent;
	border: 0;
	outline: 0;
}

div,
section {
	position: relative;
}

:root {

	--font-sans: "Noto Sans JP", sans-serif;
}



/* # =================================================================
   # General elements
   # ================================================================= */
h1,
h2,
h3,
h4,
h5 {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 600;
	line-height: 1.5;
}

.-color_blue {
	color: #5f8dde;
}

p {
	margin-bottom: 1.5em;
}

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

a {
	background-color: transparent;
	/* Remove the gray background on active links in IE 10 */
	-webkit-text-decoration-skip: objects;
	/* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
	outline-width: 0;
	/* Remove the outline when hovering in all browsers */
}

b,
strong {
	font-weight: bolder;
	/* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	width: 100%;
	line-height: 1;
	vertical-align: top;
	border-style: none;
	/* Remove border when inside `a` element in IE 8/9/10 */
}

/* ===== Link Color ===== */
a {
	cursor: pointer;
	-webkit-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}


a:link {
	color: #333;
	text-decoration: none;
}

a:visited {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #333;
	text-decoration: none;
}

a:active {
	color: #333;
	text-decoration: none;
}

/* p a {
	text-decoration: underline;
} */

a,
img,
input,
svg,
*::before,
*::after {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

a:hover img,
a:hover input {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}


/* ===== Link ===== */
.link {
	position: relative;
	word-break: break-word;
	line-height: 1.7;
	padding-left: 2rem;
}

.link::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 1rem;
	height: 1rem;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
	background: #5f8dde;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ===== button ===== */
/* .button_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
  } */

.button {
	position: relative;
	background-color: #5f8dde;
	-webkit-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;

	display: inline-block;
	border-radius: 999px;

	font-size: 2rem;
	line-height: 1;
}

@media only screen and (max-width: 799px) {
	.button {
		display: block;
		margin: 0 auto;
		font-size: 5vw;
	}
}

.button a {
	width: 100%;
	height: 100%;
	padding: 0.8em 2em;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.button::after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 1rem;
	height: 1rem;
	top: 0;
	bottom: 0;
	right: 1em;
	margin: auto 0;
	background: #FFF;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.button:hover {
	opacity: 0.8;
}

a::hover .button {
	opacity: 0.8;
}

.button.-center {
	margin: 0 auto;
	text-align: center;
}

.button_inner,
a.button_inner {
	display: block;
	width: 100%;
	padding: 1rem 2rem 1rem 2rem;
	text-decoration: none;
}

/* @media only screen and (min-width: 560px) and (max-width: 959px){
		.button_inner,
		a.button_inner {
		  padding: 0.8rem 3rem 0.8rem 2rem;
		  text-decoration: none;
		}
	}
	@media only screen and (max-width: 559px) {
		.button_inner,
		a.button_inner {
		  padding: 0.7rem 2.5rem 0.7rem 2rem;
		  text-decoration: none;
		}
	} */



/* ===== elements ===== */
.pc_obj {
	display: none;
}

@media only screen and (min-width: 799px) and (max-width: 959px) {
	.pc_obj {
		display: none;
	}

	.sptb_obj,
	.pctb_obj {
		display: block;
	}
}

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

	.sp_obj,
	.sptb_obj {
		display: block;
	}

	.pc_obj,
	.pctb_obj {
		display: none;
	}
}

.sp_obj,
.sptb_obj {
	display: none;
}

@media only screen and (min-width: 799px) and (max-width: 959px) {
	.pc_obj {
		display: none;
	}

	.sptb_obj,
	.pctb_obj {
		display: block;
	}
}

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

	.sp_obj,
	.sptb_obj {
		display: block;
	}

	.pc_obj,
	.pctb_obj {
		display: none;
	}
}


.notice_block {
	margin: 0
}

.notice,
.notice_block li {
	font-size: 1.6rem;
	line-height: 1.5;
	margin: 0;
	text-indent: -1em;
	padding-left: 1em;
}

.-small {
	font-size: 80%;
}

.-exsmall {
	font-size: 70%;
}

.text.-large {
	font-size: 110%;
}

.text.-small {
	font-size: 70%;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Text.-small {
		font-size: 1.3rem;
	}
}

@media only screen and (max-width: 559px) {
	.Text.-small {
		font-size: 1.2rem;
	}
}

.text.-right {
	text-align: right;
}

.text.-alert {
	color: #ff6600;
}

.text.-note {
	font-size: 1.4rem;
}

.text.-center {
	text-align: center;
}

.text.-bold {
	font-weight: bolder;
}


#SiteWrap {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 100vh;
	margin: 0 auto;

	display: flex;
	flex-direction: column;
	overflow: hidden;
}

#SiteWrap.toppage {
	background: #f2f2f2;
}

#SiteWrap__header,
#SiteWrap__footer {
	flex-grow: 0;
}

#SiteWrap__body {
	position: relative;
	flex-grow: 1;

}

.Section__block {
	margin-top: 10rem;
	display: flex;
	flex-direction: column;
	gap: 6rem;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Section__block {
		margin-top: 8rem;
		gap: 5rem;
	}
}

@media only screen and (max-width: 559px) {
	.Section__block {
		margin-top: 5rem;
		gap: 4rem;
	}
}

.sitecontent_sectioninner {
	width: 100%;
	margin: 0 auto;
	max-width: 1280px;
}

@media print,
screen and (min-width: 960px) {
	.sitecontent_sectioninner {
		padding: 0 40px;
	}
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.sitecontent_sectioninner {
		padding: 0 40px;
	}
}

@media only screen and (max-width: 559px) {
	.sitecontent_sectioninner {
		padding: 0 20px;
	}
}

#Main__Content {
	margin: 0 auto;
	padding: 0;
}



.gridbox {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
}

@media only screen and (max-width: 799px) {
	.gridbox {
		flex-direction: column;
		gap: 30px;
	}
}


/* -----SiteWrap__header----- */
#SiteWrap__header {
	width: 100%;
	padding: 20px 0;
	background: #5f8dde;
	z-index: 2;
}

.header_container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

@media only screen and (min-width: 800px) and (max-width: 1029px) {
	.header_container {}
}

@media only screen and (max-width: 799px) {
	.header_container {
		flex-direction: column;
		justify-content: space-between;
		gap: 20px;
	}
}

.logo_area {
	margin: 0;
}

.logo_inner {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}

@media only screen and (max-width: 799px) {
	.logo_inner {
		gap: 10px;
		margin-right: 50px;
	}

	#SiteWrap__footer .logo_inner {
		margin-right: 0;
	}
}

.mark {
	max-width: 140px;
}

.logo img {
	max-width: 540px;
	margin-bottom: 0.8rem;
	/* border-bottom: 1px solid #FFF; */
}

/* .logo span{
	display: block;
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1;
	color: #FFF;
} */
.header_container .hd_info {
	width: 205px;
}

@media only screen and (min-width: 800px) and (max-width: 999px) {
	.header_container .hd_info {
		margin-right: 30px;
	}
}

@media only screen and (max-width: 799px) {
	.header_container .hd_info {
		margin: 0 auto;
	}
}

/* ---------------Gnav--------------- */
#Gnav {
	width: 100%;
	padding-top: 10px;
	background: #5f8dde;
	letter-spacing: 0;
	font-family: "M PLUS Rounded 1c", sans-serif;
		font-weight: 500;
}

@media only screen and (max-width: 999px) {
	#Gnav {
		display: none;
	}
}

#Gnav .sitecontent_sectioninner {
	display: flex;
	justify-content: space-between;
}

#Gnav .hd_nav {
	display: flex;
	justify-content: flex-start;
}

#Gnav .hd_nav li.-space {
	max-width: 140px;
	margin-right: 20px;
}

/* @media screen and (max-width: 1129px) {
	#Gnav .hd_nav li.-space {
			display: none;
		}
} */
#Gnav .hd_nav li.menu_item {
	margin-right: 0.5em;
	height: 4.2rem;
	font-size: 2rem;
	color: #FFF;
	border: 1px solid #FFF;
	border-radius: 999px;
}

@media screen and (max-width: 1129px) {
	#Gnav .hd_nav li.menu_item {
		font-size: 1.769vw;
	}
}

#Gnav .hd_nav li.menu_item.-current {
	background-color: #4db6f7;
	border: none;
	border-radius: 999px;
}

#Gnav .hd_nav li.menu_item a {
	padding: 0 0.8em;
	display: flex;
	justify-content: center;
	align-items: center;
}

#Gnav .hd_nav li.menu_item a,
#Gnav .rsrv li.menu_item a {
	color: #FFF;
	width: 100%;
	height: 100%;
}

#Gnav .rsrv {
	display: flex;
	justify-content: flex-end;
}

#Gnav .rsrv li.menu_item {
	display: flex;
	margin-left: 0.5em;
	font-size: 2.2rem;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 4.2rem;
	color: #FFF;
	padding: 0;
	border: 1px solid #FFF;
	border-radius: 999px;
	position: relative;
}

@media screen and (max-width: 1129px) {
	#Gnav .rsrv li.menu_item {
		font-size: 1.946vw;
	}
}

#Gnav .rsrv li.menu_item.-web {
	background: #f498d9;
	padding: 0 3.5rem 0 0.5em;
}

#Gnav .rsrv li.menu_item.-line {
	background: #03b900;
	padding: 0 3.5rem 0 0.5em;
}

#Gnav .rsrv li.menu_item.-web a,
#Gnav .rsrv li.menu_item.-line a {
	width: 100%;
	height: 100%;
}

#Gnav .rsrv li.menu_item.-web::before,
#Gnav .rsrv li.menu_item.-line::before {
	content: '';
	display: block;
	position: absolute;
	right: 1rem;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 2rem;
	height: 2rem;
	background: #FFF;
	border-radius: 50%;
	box-sizing: content-box;
}

#Gnav .rsrv li.menu_item.-web::after,
#Gnav .rsrv li.menu_item.-line::after {
	content: '';
	position: absolute;
	width: 0.8rem;
	height: 0.8rem;
	top: 0;
	bottom: 0;
	right: 1.5rem;
	margin: auto 0;
	background: #5f8dde;
	clip-path: polygon(0 0, 100% 50%, 0 100%);

}

#Gnav .rsrv li.menu_item.-tel {
	width: auto;
	height: 4.2rem;
	border: none;
	display: flex;
	flex-direction: column-reverse;
}

#Gnav .rsrv li.menu_item.-tel .num_wrap {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

#Gnav .rsrv li.menu_item.-tel .num_wrap img {
	width: 20px;
	padding-bottom: 0.2rem;
	display: block;
	margin: 0;
}

#Gnav .rsrv li.menu_item.-tel .num {
	font-size: 3rem;
	line-height: 1;
	font-family: "Zen Maru Gothic";
	font-weight: 700;
	margin-left: 0;
	padding-left: 0.3rem;
	letter-spacing: 0;
	white-space: nowrap;

}

@media screen and (max-width: 1129px) {
	#Gnav .rsrv li.menu_item.-tel .num {
		font-size: 2vw;
	}
}

#Gnav .rsrv li.menu_item.-tel .ruby {
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.05em;
	text-align: right;
}

@media (min-width: 751px) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

/* --------------- hamburgermenu --------------- */
.hamburgermenu {
	position: fixed;
	top: 0;
	right: -100%;
	/* 初期状態では画面の外に隠れている */
	width: 300px;
	height: 100%;
	background-color: #5f8dde;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
	color: #333;
	transition: right 0.3s ease;
	padding: 20px;
	box-sizing: border-box;
	z-index: 10;
}

@media (min-width: 1000px) {
	.hamburgermenu {
		display: none;
	}
}

/* メニューが開いているとき */
.hamburgermenu.open {
	right: 0;
}

/* ボタンのスタイル */
.hamburger {
	position: fixed;
	top: 15px;
	right: 15px;
	width: 40px;
	cursor: pointer;
	z-index: 20;
	background: #5f8dde;
	border: 1px solid #FFF;
	padding: 4px 8px;
}

/* .hamburger small{
	display: block;
	font-size: 1rem;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	color:#FFF;
} */
.hamburger span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: #FFF;
	margin: 5px 0;
	transition: 0.4s;
}

/* .hamburger span:first-of-type {
	margin: 3px 0;
} */


/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューリストのスタイル */
.hamburgermenu ul.listmenu {
	list-style-type: none;
	padding: 0;
	margin-top: 50px;
}

.hamburgermenu ul.listmenu li {
	padding: 10px 0;
	border-bottom: 1px solid #FFF;
}

.hamburgermenu ul.listmenu li a {
	color: #FFF;
	text-decoration: none;
	display: block;
}

.hamburgermenu .rsrv {
	margin-top: 60px;
	text-align: center;
}

.hamburgermenu .rsrv li.menu_item {
	margin: 15px 0;
	font-size: 2.2rem;
	font-weight: 600;
	letter-spacing: 0;
	color: #FFF;
	padding: 0;
	border: 1px solid #FFF;
	border-radius: 999px;
	position: relative;
	text-align: center;
	display: block;
}

.hamburgermenu .rsrv li.menu_item.-web {
	background: #f498d9;
	padding: 0 3.5rem 0 0.5em;
}

.hamburgermenu .rsrv li.menu_item.-line {
	background: #03b900;
	padding: 0 3.5rem 0 0.5em;
}

.hamburgermenu .rsrv li.menu_item a {
	width: 100%;
	height: 100%;
	color: #FFF;
}

.hamburgermenu .rsrv li.menu_item.-web::before,
.hamburgermenu .rsrv li.menu_item.-line::before {
	content: '';
	display: block;
	position: absolute;
	right: 1rem;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 2rem;
	height: 2rem;
	background: #FFF;
	border-radius: 50%;
	box-sizing: content-box;
}

.hamburgermenu .rsrv li.menu_item.-web::after,
.hamburgermenu .rsrv li.menu_item.-line::after {
	content: '';
	position: absolute;
	width: 0.8rem;
	height: 0.8rem;
	top: 0;
	bottom: 0;
	right: 1.5rem;
	margin: auto 0;
	background: #5f8dde;
	clip-path: polygon(0 0, 100% 50%, 0 100%);

}

.hamburgermenu .rsrv li.menu_item.-tel {
	width: auto;
	border: none;
	display: inline-block;
}

.hamburgermenu .rsrv li.menu_item.-tel .inner {
	display: flex;
	flex-direction: column-reverse;
	color: #FFF;
}

.hamburgermenu .rsrv li.menu_item.-tel .num_wrap {
	width: auto;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.hamburgermenu .rsrv li.menu_item.-tel .num_wrap img {
	width: 20px;
	padding-bottom: 0.2rem;
	display: block;
	margin: 0;
}

.hamburgermenu .rsrv li.menu_item.-tel .num {
	font-size: 3.6rem;
	line-height: 1;
	font-family: "Zen Maru Gothic";
	font-weight: 700;
	margin-left: 0;
	padding-left: 0.3rem;
	letter-spacing: 0;
	white-space: nowrap;
}

.hamburgermenu .rsrv li.menu_item.-tel .ruby {
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.05em;
	text-align: right;
}


/* --------------- #SiteWrap__body --------------- */
#SiteWrap__body {
	background: #FFF;
	/* padding-top: 4.42vw; */
}

#SiteWrap__body.-toppage {
	background: #f2f2f2;

}

.sitewrap_body {
	width: 100%;
	z-index: 1;
}

.sitewrap_body::before {
	content: "";
	width: 100%;
	height: 4.42vw;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/wave_hd.png) no-repeat 0 0;
	background-size: contain;
	z-index: 2;
}



.maincontent_inner {
	width: 100%;
	margin: 0 auto;
	max-width: calc(1030px + 80px);
}

@media print,
screen and (min-width: 960px) {
	.maincontent_inner {
		padding: 0 40px;
	}
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.maincontent_inner {
		padding: 0 40px;
	}
}

@media only screen and (max-width: 559px) {
	.maincontent_inner {
		padding: 0 20px;
	}
}

/* --------------- #SiteWrap__footer --------------- */
#SiteWrap__footer {
	width: 100%;
	background: #5f8dde;
	margin-top: calc(6.99vw + 40px);
	padding-top: 60px;
	padding-bottom: 50px;
	color: #FFF;
	z-index: 2;
}

@media only screen and (max-width: 799px) {
	#SiteWrap__footer {
		padding-top: 10vw;
		padding-bottom: 5vw;
		color: #FFF;
	}
}

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

.footer_wrap::after {
	content: "";
	width: 100%;
	height: 6.99vw;
	position: absolute;
	left: 0;
	top: -6.99vw;
	background: url(../images/wave_footer.png) no-repeat left bottom;
	background-size: contain;
	z-index: 2;
}

.footer_container {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.footer_container .logo_area {
	width: auto;
	display: inline-block;
	margin: 0 auto;
}

.footer_container .footer_tel {
	width: auto;
	margin: 0 auto;
	margin-top: 3em
}

@media only screen and (max-width: 799px) {
	.footer_container .footer_tel {
		margin-top: 1em
	}
}

.footer_container .footer_add {
	margin-top: 1em;
	font-size: 1.6rem;
	text-align: center;
}


.footer_container p {
	margin-top: 5em;
	text-align: center;
}

@media only screen and (max-width: 799px) {
	.footer_container p {
		margin-top: 2em;
		letter-spacing: 0;
		line-height: 1.2;
	}
}


/*tel*/
.footer_tel,
.top_section03 .rsrv li.menu_item.-tel {
	height: 4.2rem;
	border: none;
	display: flex;
	align-items: flex-end;
	flex-direction: column-reverse;
}

@media only screen and (min-width: 800px) and (max-width: 1029px) {

	.footer_tel,
	.top_section03 .rsrv li.menu_item.-tel {
		height: 5rem;
	}
}

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

	.footer_tel,
	.top_section03 .rsrv li.menu_item.-tel {
		height: auto;
	}

	.top_section03 .rsrv li.menu_item.-tel {
		width: auto;
	}
}

.footer_tel,
.footer_tel a {
	color: #FFF;
}

.top_section03 .rsrv li.menu_item.-tel,
.top_section03 .rsrv li.menu_item.-tel a {
	color: #5f8dde;
}

.footer_tel .num_wrap,
.top_section03 .rsrv li.menu_item.-tel .num_wrap {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.footer_tel .num_wrap img,
.top_section03 .rsrv li.menu_item.-tel .num_wrap img {
	width: 32px;
	padding-bottom: 0.2rem;
	display: block;
	margin: 0;
}

.footer_tel .num,
.top_section03 .rsrv li.menu_item.-tel .num {
	font-size: 4.8rem;
	line-height: 1;
	font-family: "Zen Maru Gothic";
	font-weight: 700;
	margin-left: 0;
	padding-left: 0.3rem;
	letter-spacing: 0;
	white-space: nowrap;
}

@media only screen and (min-width: 800px) and (max-width: 1029px) {

	.footer_tel .num,
	.top_section03 .rsrv li.menu_item.-tel .num {
		font-size: 4.66vw;
		padding-left: 0.3rem;
	}
}

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

	.footer_tel .num,
	.top_section03 .rsrv li.menu_item.-tel .num {
		font-size: 9vw;
		padding-left: 0.2rem;
	}
}

.footer_tel .ruby,
.top_section03 .rsrv li.menu_item.-tel .ruby {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.05em;
	text-align: right;
}