@charset "utf-8";

/* -------------------------------------------------
	font
------------------------------------------------- */

/*@font-face {
	font-family: 'Noto Sans Japanese';
	font-weight: 100;
	font-style: normal;
	src: url('../font/NotoSansCJKjp-hinted_subset_woff/NotoSansCJKjp-Thin_sub.woff') format('woff');
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-weight: 200;
	font-style: normal;
	src: url('../font/NotoSansCJKjp-hinted_subset_woff/NotoSansCJKjp-Light_sub.woff') format('woff');
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-weight: 300;
	font-style: normal;
	src: url('../font/NotoSansCJKjp-hinted_subset_woff/NotoSansCJKjp-DemiLight_sub.woff') format('woff');
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-weight: 400;
	font-style: normal;
	src: url('../font/NotoSansCJKjp-hinted_subset_woff/NotoSansCJKjp-Regular_sub.woff') format('woff');
}*/
@font-face {
	font-family: 'Noto Sans Japanese';
	font-weight: 500;
	font-style: normal;
	src: url('../font/NotoSansCJKjp-hinted_subset_woff/NotoSansCJKjp-Medium_sub.woff') format('woff');
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-weight: 700;
	font-style: normal;
	src: url('../font/NotoSansCJKjp-hinted_subset_woff/NotoSansCJKjp-Bold_sub.woff') format('woff');
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-weight: 900;
	font-style: normal;
	src: url('../font/NotoSansCJKjp-hinted_subset_woff/NotoSansCJKjp-Black_sub.woff') format('woff');
}


/* google fonts */

@font-face {
	font-family: 'Anton';
	font-style: normal;
	src: url('../font/Anton/Anton-Regular.ttf') format('truetype');
}

/* -------------------------------------------------
	reset
------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
	vertical-align: top;
	box-sizing: border-box;
}

html {
}

body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	color: #231815;
}

p, h1, h2, h3, h4, th, td, li, dt, dd, figcaption, input, select, textarea {
	font-weight: normal;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
}

iframe {
	border: none;
}

a {
	text-decoration: none;
	color: #231815;
}
a:hover {
	
}

ul, ol {
	list-style-type: none;
}

main {
	width: 100%;
	display: block;
	overflow: hidden;
}

@media print, screen and (min-width:768px) {
	a[href^="tel:"] {
		cursor: default;
	}
}

@media screen and (max-width:767px) {
	
}

/* -------------------------------------------------
	box
------------------------------------------------- */

.box1180 {
	width: 96%;
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
}

@media screen and (max-width:767px) {
	.box1180 {
		width: auto;
	}
	.box-sp {
		width: calc(650 / 750 * 100%);
		margin: 0 auto;
		position: relative;
	}
}

/* -------------------------------------------------
	h
------------------------------------------------- */

.h-type1 img {
	height: 31px;
}

@media screen and (max-width:767px) {
	.h-type1 img {
		height: calc(33.82 / 750 * 100vw);
	}
}

/* -------------------------------------------------
	header
------------------------------------------------- */

header {
	height: 60px;
}
header .fixed {
	width: 100%;
	height: 60px;
	position: fixed;
	z-index: 100;
	background: #fff;
}
header .fixed h1 {
	width: 144px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
header .fixed h1 img {
	width: 144px;
}

#menu-btn {
	width: 52px;
	position: absolute;
	left: 47px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

#cont-nav {
	width: 150px;
	position: absolute;
	left: 0;
	top: 60px;
	background: #fff;
	display: none;
}
#cont-nav li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	font-size: 14px;
	font-family: Arial;
	font-weight: bold;
	transition: background 0.2s ease-out;
}

#contact-nav {
	width: 250px;
	position: absolute;
	right: 0;
	top: 0;
}
#contact-nav .title {
	padding-left: 47px;
	background: #000;
	height: 60px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
#contact-nav .title img {
	width: 109px;
}
#contact-nav ul {
	background: #fff;
	display: none;
}
#contact-nav ul li a {
	height: 50px;
	padding-left: 20px;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	transition: background 0.2s ease-out;
}

@media print, screen and (min-width:768px) {
	#cont-nav li a:hover {
		background: #F6CB59;
	}
	#contact-nav li a:hover {
		background: #C9CACA;
	}
}

@media screen and (max-width:767px) {
	header {
		height: calc(100 / 750 * 100vw);
	}
	header .fixed {
		height: calc(100 / 750 * 100vw);
	}
	header .fixed h1 {
		width: calc(196 / 750 * 100vw);
	}
	header .fixed h1 img {
		width: calc(196 / 750 * 100vw);
	}

	#menu-btn {
		width: calc(45 / 750 * 100vw);
		left: calc(47 / 750 * 100vw);
	}

	#cont-nav {
		width: calc(250 / 750 * 100vw);
		top: calc(100 / 750 * 100vw);
	}
	#cont-nav li a {
		height: calc(97 / 750 * 100vw);
		font-size: calc(30 / 750 * 100vw);
		background: #000;
		color: #fff;
	}
	#cont-nav li + li {
		border-top: solid 1px #fff;
	}

	#contact-nav {
		width: calc(220 / 750 * 100vw);
	}
	#contact-nav .title {
		padding-left: 0;
		height: calc(100 / 750 * 100vw);
		justify-content: center;
	}
	#contact-nav .title img {
		width: auto;
		height: calc(17 / 750 * 100vw);
	}
	#contact-nav li + li {
		border-top: solid 1px #000;
	}
	#contact-nav ul li a {
		height: calc(97 / 750 * 100vw);
		padding-left: 0;
		justify-content: center;
		font-size: calc(21 / 750 * 100vw);
	}
}

/* -------------------------------------------------
	#first-view
------------------------------------------------- */

#first-view {
	position: relative;
}
#first-view .main {
	width: 100%;
}
#first-view .group1 {
	width: 638px;
	position: absolute;
	right: 0;
	bottom: 30px;
	z-index: 2;
}
#first-view .group1 .copy {
	width: 100%;
}
#first-view .group1 p {
	margin: 1em 0 0 16px;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.64;
}
#first-view .price {
	width: 125px;
	display: block;
	position: absolute;
	z-index: 2;
	right: 50px;
	bottom: 30px;
}

@media screen and (max-width:767px) {
	#first-view .group1 {
		width: calc(600 / 750 * 100%);
		bottom: calc(20 / 750 * 100vw);
	}
	#first-view .group1 p {
		margin-left: 1.6vw;
		font-size: 2.8vw;
	}
	#first-view .price {
		width: 16vw;
		display: block;
		position: absolute;
		z-index: 2;
		right: 4vw;
		bottom: 13.6vw;
	}
}

/* -------------------------------------------------
	#location
------------------------------------------------- */

#location {
	padding: 60px 0;
	position: relative;
	z-index: 4;
}
#location::before {
	content: "";
	display: block;
	width: 100%;
	height: 60px;
	background: #C9BC9C;
	position: absolute;
	left: 0;
	top: 0;
}
#location .texts p {
	margin-top: 35px;
	font-size: 14px;
	line-height: 2.67;
	color: #000;
}

@media print, screen and (min-width:768px) {
	#location .texts {
		width: 423px;
		height: 100%;
		padding: 195px 45px 0;
		background: rgba(255,255,255,0.8);
		position: absolute;
		z-index: 4;
		left: 0;
		top: 0;
	}
}

@media print, screen and (min-width:768px) and (max-width:1170px) {
	#location .texts {
		padding: 10vw 2vw 0;
	}
}

@media screen and (max-width:767px) {
	#location {
		padding: calc(100 / 750 *100vw) 0 0;
	}
	#location::before {
		height: calc(100 / 750 *100vw);
	}
	#location .texts {
		padding: calc(38 / 750 *100vw) 0 calc(30 / 750 *100vw);
		background: #fff;
	}
	#location .texts p {
		margin-top: 0.3em;
		font-size: calc(23 / 750 *100vw);
		line-height: 1.89;
	}
}

/* -------------------------------------------------
	#floor
------------------------------------------------- */

#floor {
	margin-top: -60px;
	background: #C9BC9C;
	position: relative;
	z-index: 2;
}
#floor .map-area .map {
	position: relative;
}
#floor .map-area .map p {
	position: absolute;
	cursor: pointer;
}
#floor .map-area .map p.office { left: 80px; top: 100px; }
#floor .map-area .map p.meeting { left: 345px; top: 52px;}
#floor .map-area .map p.meetingb { left: 290px; top: 5px; }
#floor .map-area .map p.free { left: 185px; top: 243px; }
#floor .map-area .map p.kitchen { left: 215px; top: 395px; }

#floor .map-area .map p.office span{background: #dae7b7;}
#floor .map-area .map p.meeting span{background: #a4cbd3;}
#floor .map-area .map p.meetingb span{background: #a4cbd3;}
#floor .map-area .map p.free span{background: #d0bedc;}
#floor .map-area .map p.kitchen span{background: #f5b88e;}

#floor .map-area .map p span {
	padding: 0.2em 0.3em 0.3em;
	font-size: 16px;
	font-weight: 700;
	background: #fff;
	border: solid 1px #000;
	display: inline-block;
}
#floor .map-area .map p::after {
	content: "";
	width: 24px;
	height: 24px;
	display: block;
	background: url(../img/ico_01.svg) no-repeat 0 0 / 100% auto;
	position: absolute;
	left: 0;
	top: 32px;
}
#floor .map-area .map p.icon-right::after {
	left: auto;
	right: 0;
}

#floor .map-area .parking {
	padding-left: 55px;
	font-size: 12px;
	line-height: 1.58;
	position: relative;
	margin: -15px 0 0 25%;
}
#floor .map-area .parking::before {
	width: 40px;
	height: 35px;
	border: solid 1px #000;
	content: "P";
	font-size: 34px;
	font-family: 'Anton';
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
}

#floor .map-area .biwapiku {
	margin: 35px 0 0;
	padding-right: 100px;
	display: block;
	position: relative;
}
#floor .map-area .biwapiku::after {
	content: "";
	width: 80px;
	height: 95px;
	background: url(../img/logo_03_black.svg) no-repeat 0 0 / 100% auto;
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
#floor .map-area .biwapiku .title {
	font-size: 16px;
	font-weight: 700;
}
#floor .map-area .biwapiku .desc {
	margin: 1em 0 0 2.5em;
	font-size: 14px;
	line-height: 1.3;
}
#floor .map-area .biwapiku .detail {
	margin-top: 1em;
	font-size: 14px;
	text-align: right;
	color: #EA5514;
}
#floor .pics {
	display: none;
}

@media print, screen and (min-width:768px) {
	#floor {
		padding-bottom: 70px;
	}
	#floor::before {
		width: calc(580 / 1280 * 100%);
		height: 100%;
		content: "";
		display: block;
		background: #fff;
		opacity: 0.8;
		position: absolute;
		right: 0;
		top: 0;
	}
	#floor .col2 {
		display: flex;
		justify-content: space-between;
	}
	#floor .map-area {
		width: calc(628 / 1180 * 100%);
		padding-top: 235px;
	}

	#floor .texts {
		width: calc(495 / 1180 * 100%);
		padding-top: 190px;
	}
}

@media print, screen and (min-width:768px) and (max-width:1230px) {
	
	#floor .map-area .map p.office { left: calc(80 / 1230 * 100vw); top: calc(100 / 1230 * 100vw); }
	#floor .map-area .map p.meeting { left: calc(345 / 1230 * 100vw); top: calc(52 / 1230 * 100vw); }
	#floor .map-area .map p.meetingb { left: calc(290 / 1230 * 100vw); top: calc(5 / 1230 * 100vw); }
	#floor .map-area .map p.free { left: calc(185 / 1230 * 100vw); top: calc(243 / 1230 * 100vw); }
	#floor .map-area .map p.kitchen { left: calc(215 / 1230 * 100vw); top: calc(395 / 1230 * 100vw); }

	#floor .map-area .map p span {
		font-size: calc(16 / 1230 * 100vw);
	}
	#floor .map-area .map p::after {
		width: calc(24 / 1230 * 100vw);
		height: calc(24 / 1230 * 100vw);
		top: calc(32 / 1230 * 100vw);
	}
	
	#floor .map-area .parking {
		padding-left: calc(55 / 1230 * 100vw);
		font-size: calc(12 / 1230 * 100vw);
		margin: calc(-15 / 1230 * 100vw) 0 0 25%;
	}
	#floor .map-area .parking::before {
		width: calc(40 / 1230 * 100vw);
		height: calc(35 / 1230 * 100vw);
		font-size: calc(34 / 1230 * 100vw);
	}
}

@media screen and (max-width:767px) {
	#floor {
		margin-top: 0;
	}
	#floor .map-area {
		padding: calc(145 / 750 * 100vw) 0 calc(45 / 750 * 100vw);
	}
	#floor .map-area .map p.office { left: calc(85 / 750 * 100vw); top: calc(106 / 750 * 100vw); }
	#floor .map-area .map p.meeting { left: calc(345 / 750 * 100vw); top: calc(52 / 750 * 100vw); }
	#floor .map-area .map p.meetingb { left: calc(295 / 750 * 100vw); top: calc(6 / 750 * 100vw); }
	#floor .map-area .map p.free { left: calc(195 / 750 * 100vw); top: calc(250 / 750 * 100vw); }
	#floor .map-area .map p.kitchen { left: calc(225 / 750 * 100vw); top: calc(410 / 750 * 100vw); }

	#floor .map-area .map p span {
		font-size: calc(18 / 750 * 100vw);
	}
	#floor .map-area .map p::after {
		width: calc(24 / 750 * 100vw);
		height: calc(24 / 750 * 100vw);
		top: calc(36 / 750 * 100vw)
	}

	#floor .map-area .parking {
		padding-left: calc(75 / 750 * 100vw);
		font-size: calc(20 / 750 * 100vw);
		margin: calc(-10 / 750 * 100vw) 0 0 calc(100 / 750 * 100vw);
	}
	#floor .map-area .parking::before {
		width: calc(55 / 750 * 100vw);
		height: calc(50 / 750 * 100vw);
		font-size: calc(48 / 750 * 100vw);
	}

	#floor .map-area .biwapiku {
		margin: calc(28 / 750 * 100vw) 0 0 calc(40 / 750 * 100vw);
		padding-right: calc(105 / 750 * 100vw);
	}
	#floor .map-area .biwapiku::after {
		width: calc(73 / 750 * 100vw);
		height: calc(90 / 750 * 100vw);
	}
	#floor .map-area .biwapiku .title {
		font-size: calc(22 / 750 * 100vw);
	}
	#floor .map-area .biwapiku .desc {
		font-size: calc(20 / 750 * 100vw);
	}
	#floor .map-area .biwapiku .detail {
		margin-top: 0.5em;
		font-size: calc(20 / 750 * 100vw);
	}
	
	#floor .pics div:not(.current) {
		display: none;
	}
	#floor .pics div p {
		padding: 0.5em;
		font-size: calc(19 / 750 * 100vw);
		line-height: 1.3;
	}
}

/* -------------------------------------------------
	floor modal
------------------------------------------------- */

#floor-modal-base {
	background: #000;
	opacity: 0.85;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 200;
	display: none;
}
#floor-modal-cont {
	background: #fff;
	width: 90%;
	padding: 85px 3.8% 50px;
	max-width: 1000px;
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 210;
	transform: translate(-50%,-50%);
	display: none;
}
#floor-modal-cont .close {
	width: 35px;
	position: absolute;
	right: 5%;
	top: 25px;
	cursor: pointer;
}
#floor-modal-cont p {
	margin-top: 0.8em;
	font-size: 14px;
	line-height: 1.3;
}

@media screen and (max-width:767px) {
	#floor-modal-cont {
		padding: 11vw 3.8% 4vw;
	}
	#floor-modal-cont .close {
		width: 5vw;
		right: 3vw;
		top: 3vw;
	}
	#floor-modal-cont p {
		font-size: calc(19 / 750 * 100vw);
	}
}

/* -------------------------------------------------
	#floor > .texts
------------------------------------------------- */

#floor .texts .h-type1 {
	margin: 0 0 47px 20px;
}
#floor .texts .floors ul{
	border-bottom: solid 1px #000;
	}
#floor .texts .floors ul li{
	padding: 20px;
	border-top: solid 1px #000;
    font-weight: 700;
	}

#floor .texts .floors .floor {
	padding-left: 20px;
}
#floor .texts .floors .floor + .floor {
	margin-top: 23px;
	padding-top: 23px;
	border-top: solid 1px #000;
}
#floor .texts .floors .floor .name {
	padding: 0.3em;
	font-size: 18px;
	display: inline-block;
}
#floor .texts .floors .floor.office .name { background: #DAE7B7; }
#floor .texts .floors .floor.meeting .name { background: #A4CBD3; }
#floor .texts .floors .floor.free .name { background: #D0BEDC; }
#floor .texts .floors .floor.kitchen .name { background: #F5B88E; }
#floor .texts .floors .floor.option .name { background: #000; color: #fff; }

#floor .texts .floors .floor .desc {
	margin-top: 0.6em;
	font-size: 14px;
	line-height: 1.64;
}
#floor .texts .floors .floor .option dt {
	padding: 0.3em;
	margin-top: 0.8em;
	background: #000;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
}
#floor .texts .floors .floor .option dd {
	margin-top: 0.2em;
	font-size: 14px;
	line-height: 1.58;
}

@media screen and (max-width:767px) {
	#floor .texts {
		padding: calc(40 / 750 * 100vw) 0 calc(40 / 750 * 100vw);
		background: #fff;
		font-size: calc(23 / 750 * 100vw);
	    line-height: 1.89;
	}
	#floor .texts .box-sp {
		position: static;
	}
	#floor .texts .h-type1 {
		margin: 0;
		position: absolute;
		left: calc(42 / 750 * 100vw);
		top: calc(154 / 750 * 100vw);
	}
	#floor .texts .floors ul li{
	    padding: 10px;
		}
	#floor .texts .floors .floor {
		padding-left: calc(15 / 750 * 100vw);
	}
	#floor .texts .floors .floor + .floor {
		margin-top: calc(16 / 750 * 100vw);
		padding-top: calc(16 / 750 * 100vw);
	}
	#floor .texts .floors .floor .name {
		font-size: calc(22 / 750 * 100vw);
		margin-left: calc(-15 / 750 * 100vw);
	}

	#floor .texts .floors .floor .desc {
		margin-top: 0.2em;
		font-size: calc(23 / 750 * 100vw);
	}
	#floor .texts .floors .floor .option dt {
		font-size: calc(20 / 750 * 100vw);
	}
	#floor .texts .floors .floor .option dd {
		font-size: calc(23 / 750 * 100vw);
	}
}

/* -------------------------------------------------
	#price
------------------------------------------------- */

#price {
	padding-top: 100px;
	position: relative;
}
#price h3{
	font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 30px;
    margin-bottom: 30px;
	}
#price .lead-text{
	font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
	}
#price .normal{
	font-size: 14px;
    line-height: 1.64;
	font-weight: normal;
	vertical-align: baseline;
	}
#price .price-table {
	width: 100%;
	border-left: solid 1px #000;
	border-top: solid 1px #000;
	border-collapse: collapse;
	background: #fff;
}
#price .price-table th,
#price .price-table td {
	border-right: solid 1px #000;
	border-bottom: solid 1px #000;
	}
#price .price-table-trial{
	width: 100%;
    border-left: solid 1px #000;
    border-top: solid 1px #000;
    border-collapse: collapse;
    background: #fff;
	margin-top: 20px;
	}
#price .price-table-trial th{
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
	background: #f6e068;
	padding: 10px;
	font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3em;
}

#price .price-table-trial td{
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
	padding: 10px;
	font-size: 14px;
    line-height: 1.58;
	text-align: center;
}

#price .price-table-trial td .num {
	font-size: 28px;
	font-family: 'Anton';
	letter-spacing: 0.06em;
	vertical-align: baseline;
	}

#price .desc{
	margin-top: 0.6em;
    font-size: 14px;
    line-height: 1.64;
	text-align: right;
	}

	
@media print, screen and (min-width:768px) {
	#price {
		background: #f4f1eb;
	}
	#price::before {
		content: "";
		display: block;
		width: calc(700 / 1280 * 100%);
		height: 450px;
		background: #C9BC9C;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 2;
	}
	#price .box1180 {
		z-index: 4;
	}
	#price .price-table {
		margin-top: 20px;
	}
	#price .price-table th {
		width: 50px;
		position: relative;
	}
	#price .price-table th .tate {
		display: inline-block;
		/*width: 1em;*/
		width: 100%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	
	#price .price-table td {
		padding:10px 5px;
	}
	#price .price-table tr:not(.other) td {
		text-align: center;
		vertical-align: middle;
	}
	#price .price-table td:nth-of-type(1) { background: #F0E1C8; width: 25%; }
	#price .price-table td:nth-of-type(2) { background: #F3E7D4; width: 25%; }
	#price .price-table td:nth-of-type(3) { background: #F7EDDF; width: 25%; }
	#price .price-table td:nth-of-type(4) { background: #FAF4EA; width: 210px; }
	
	#price .price-table td.bg1 { background: url(../img/bg_01.png) repeat center center / 10px auto; }
	#price .price-table td.bg2 { background: url(../img/bg_02.png) repeat center center / 10px auto; }
	#price .price-table td.bg3 { background: url(../img/bg_03.png) repeat center center / 10px auto; }
	#price .price-table td.bg4 { background: url(../img/bg_04.png) repeat center center / 10px auto; }
	
	#price .price-table tr.plan.p1 td {
		font-size: 17px;
		font-weight: 700;
		letter-spacing: 0.3em;
		white-space: nowrap;
	}
	#price .price-table tr.plan.p2 td {
		font-size: 14px;
    	line-height: 1.64;
	}
	#price .price-table tr.price td {
		font-size: 13px;
	}
	#price .price-table tr.price td * {
		vertical-align: baseline;
	}
	#price .price-table tr.price td .group {
		display: inline-block;
		margin: 7px 0;
	}
	#price .price-table tr.price td .group.g2 {
		margin-left: 7px;
	}
	#price .price-table tr.price td .num {
		font-size: 28px;
		font-family: 'Anton';
		letter-spacing: 0.06em;
	}
	#price .price-table tr.price td .s {
		font-size: 10px;
	}
	#price .price-table tr.price td .y {
		font-size: 14px;
		font-weight: 700;
	}
	#price .price-table tr.price td .free {
		font-size: 17px;
		font-weight: 700;
	}
	
	#price .price-table tr.other td {
		font-size: 14px;
    	line-height: 1.64;
		text-align: center;
		vertical-align: middle;
	}
	
	
	
	
}

@media all and (-ms-high-contrast:none) and (min-width:768px){ /* ie11 */
	*::-ms-backdrop, #price .price-table th .tate {
		padding-top: 1.5em;
		position: static;
		transform: translate(0,0);
	}
}

@media print, screen and (min-width:768px) and (max-width:1210px) {
	#price .price-table tr.price td .group.g2 {
		margin-left: 0;
	}
}

@media screen and (max-width:767px) {
	#price {
		padding-top: calc(145 / 750 * 100vw);
		background: #C9BC9C;
		}
	#price h3{
		font-size: calc(35 / 750 * 100vw);
    	line-height: 1.6;
   	 	margin-top: calc(10 / 750 * 100vw);
    	margin-bottom: calc(10 / 750 * 100vw);
		}
	#price .pics{
		padding-top: calc(100 / 750 * 100vw);
		}
	#price h4{
	    font-size: calc(28 / 750 * 100vw);
		font-weight: 700;
    	line-height: 1.6;
   		margin-top: calc(20 / 750 * 100vw);
    	margin-bottom: calc(10 / 750 * 100vw);
		}
	#price .lead-text{
		font-size: calc(23 / 750 * 100vw);
		margin-top: calc(10 / 750 * 100vw);
    	margin-bottom: calc(20 / 750 * 100vw);
    	line-height: 1.6;
		}
	#price .lead-text .normal{
		font-size: calc(18 / 750 * 100vw);
		display: block;
		}
	#price .normal{
		font-size: calc(18 / 750 * 100vw);
		}
	#price .num {
		font-size: calc(23 / 750 * 100vw);
		font-family: 'Anton';
    	display: inline-block;
	    letter-spacing: 0.06em;
		}
	#price .y {
		font-size: calc(17 / 750 * 100vw);
		}
	#price .table-wrap {
		position: relative;
	}
	/*#price .table-wrap::after {
		width: 118%;
		height: calc(100 / 750 * 100vw);
		content: "";
		display: block;
		background: #fff;
		position: absolute;
		left: -8%;
		bottom: 0;
		z-index: 2;
	}*/
	#price .desc{
		font-size: calc(18 / 750 * 100vw);
		margin-bottom: calc(40 / 750 * 100vw);
	}

	
	#price .price-table {
		position: relative;
		z-index: 4;
	}
	#price .price-table thead th {
		padding: 0.5em;
		font-size: calc(15 / 750 * 100vw);
		vertical-align: middle;
	}
	#price .price-table tbody th {
		padding: 0.5em;
		font-size: calc(21 / 750 * 100vw);
		font-weight: 700;
		vertical-align: middle;
	}
	
	#price .price-table tbody tr:nth-child(1) > * { background: #F0E1C8; width: 10%; }
	#price .price-table tbody tr:nth-child(2) > * { background: #F3E7D4; width: 10%; }
	#price .price-table tbody tr:nth-child(3) > * { background: #F7EDDF; width: 10%; }
	#price .price-table tbody tr:nth-child(4) > * { background: #FAF4EA; width: 10%; }
	
	#price .price-table tbody td.bg1 { background: url(../img/bg_01.png) repeat center center / 1.33vw auto; }
	#price .price-table tbody td.bg2 { background: url(../img/bg_02.png) repeat center center / 1.33vw auto; }
	#price .price-table tbody td.bg3 { background: url(../img/bg_03.png) repeat center center / 1.33vw auto; }
	#price .price-table tbody td.bg4 { background: url(../img/bg_04.png) repeat center center / 1.33vw auto; }
	
	#price .price-table tbody td:nth-of-type(1),
	#price .price-table tbody td:nth-of-type(2),
	#price .price-table tbody td:nth-of-type(3),
	#price .price-table tbody td:nth-of-type(4),
	#price .price-table tbody td:nth-of-type(5){
		padding: 2vw 0.6vw;
	}
	
	#price .price-table tbody td:nth-of-type(3),
	#price .price-table tbody td:nth-of-type(4),
	#price .price-table tbody td:nth-of-type(5){
		text-align: center;
	}
	
	#price .price-table tbody td:nth-of-type(1),
	#price .price-table tbody td:nth-of-type(2) {
		text-align: center;
		vertical-align: middle;
	}
	
	#price .price-table tbody td:nth-of-type(1) {
		width: 20%;
		font-size: calc(20 / 750 * 100vw);
		line-height: 1.47;
	}
	#price .price-table tbody td:nth-of-type(2) {
		width: 20%;
	}
	#price .price-table td:nth-of-type(2) * {
		vertical-align: baseline;
	}
	
	#price .price-table tr:nth-child(2) td:nth-of-type(2) {
		font-size: calc(17 / 750 * 100vw);
	}
	
	#price .price-table tbody td .group {
		display: block;
		margin: 7px 5px;
		white-space: nowrap;
	}
	#price .price-table tbody td .num {
		margin-top: 0.2em;
		font-size: calc(32 / 750 * 100vw);
		font-family: 'Anton';
		display: inline-block;
	}
	#price .price-table tbody td .s {
		font-size: calc(14 / 750 * 100vw);
	}
	#price .price-table tbody td .y {
		font-size: calc(18 / 750 * 100vw);
		font-weight: 700;
	}
	#price .price-table tbody td .free {
		font-size: calc(21 / 750 * 100vw);
		font-weight: 700;
	}
	#price .price-table tbody td:nth-of-type(3) {
		width: 16.6667%;
		font-size: calc(17 / 750 * 100vw);
		line-height: 1.41;
		vertical-align: middle;
	}
	#price .price-table tbody td:nth-of-type(4) {
		width: 16.6667%;
		font-size: calc(17 / 750 * 100vw);
		line-height: 1.41;
		vertical-align: middle;
	}
	#price .price-table tbody td:nth-of-type(5) {
		width: 16.6667%;
		font-size: calc(17 / 750 * 100vw);
		line-height: 1.41;
		vertical-align: middle;
	}
	
#price .price-table-trial{
	margin-bottom: 20px;
}

#price .price-table-trial th{
    text-align: left;
	font-size: calc(30 / 750 * 100vw);
    line-height: 1.6;
	letter-spacing: 0.1em;
}

#price .price-table-trial td{
	text-align: left;
    font-size: calc(25 / 750 * 100vw);
    line-height: 1.6;
}
	
#price .price-table-trial td .num {
	font-size: calc(31 / 750 * 100vw);
}
	
	
	
}

/* -------------------------------------------------
	#price .pc-col2
------------------------------------------------- */

#price .pc-col2 {
	margin-top: 30px;
}
#price .price-table2 {
	width: 100%;
	border-collapse: collapse;
	border-left: solid 1px #000;
	border-top: solid 1px #000;
}
#price .price-table2 th,
#price .price-table2 td {
	vertical-align: middle;
	text-align: center;
	border-right: solid 1px #000;
	border-bottom: solid 1px #000;
}
#price .price-table2 th *,
#price .price-table2 td * {
	vertical-align: baseline;
}
#price .price-table2 thead th {
	padding: 0.4em;
	background: #D0BEDC;
	font-size: 14px;
}
#price .price-table2 thead th .small {
	font-size: 11px;
	margin: 0 3px;
}
#price .price-table2 thead th .num {
	font-family: 'Anton';
	font-size: 19px;
	letter-spacing: 0.06em;
}
#price .price-table2 tbody th,
#price .price-table2 tbody td {
	padding: 8px 5px;
}
#price .price-table2 tbody th {
	font-size: 15px;
	letter-spacing: 0.4em;
}
#price .price-table2 tbody td {
	font-size: 13px;
}
#price .price-table2 tbody td .num {
	font-size: 27px;
	font-family: 'Anton';
	display: inline-block;
	letter-spacing: 0.06em;
}
#price .price-table2 tbody td .y {
	margin-left: 0.2em;
	font-size: 13px;
	display: inline-block;
}

@media print, screen and (min-width:768px) {
	#price .pc-col2 {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	#price .price-table2 {
		width: calc(670 / 1180 * 100%);
	}
	#price #meeting-studio {
		width: calc(460 / 1180 * 100%);
	}
}

@media screen and (max-width:767px) {
	#price .bg-white {
		background: #fff;
	}
	#price .pc-col2 {
		margin-top: 0;
		padding-top: calc(35 / 750 * 100vw);
	}
	#price .price-table2-title {
		padding: 0.3em;
		font-size: calc(22 / 750 * 100vw);
		font-weight: 700;
		background: #D0BEDC;
		display: inline-block;
	}
	#price .price-table2 {
		margin-top: 1.4vw;
	}
	#price .price-table2 thead th {
		font-size: calc(19 / 750 * 100vw);
	}
	#price .price-table2 thead th:first-child {
		letter-spacing: 0.4em;
	}
	#price .price-table2 thead th .small {
		font-size: calc(15 / 750 * 100vw);
		margin: 0 2px;
	}
	#price .price-table2 thead th .num {
		font-size: calc(23 / 750 * 100vw);
	}
	#price .price-table2 tbody th,
	#price .price-table2 tbody td {
		padding: 1vw;
	}
	#price .price-table2 tbody th {
		font-size: calc(19 / 750 * 100vw);
		white-space: nowrap;
	}
	#price .price-table2 tbody td {
		font-size: calc(17 / 750 * 100vw);
	}
	#price .price-table2 tbody td .num {
		font-size: calc(31 / 750 * 100vw);
	}
	#price .price-table2 tbody td .y {
		font-size: calc(17 / 750 * 100vw);
	}
}

/* -------------------------------------------------
	#price #meeting-studio
------------------------------------------------- */

#meeting-studio {
	display: flex;
	justify-content: space-between;
}
#meeting-studio .studio {
	width: calc(225 / 460 * 100%);
}
#meeting-studio .studio .title {
	padding: 0.3em;
	margin-bottom: 1em;
	background: #A4CBD3;
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
}
#meeting-studio .studio .price {
	font-size: 13px;
}
#meeting-studio .studio .price * {
	vertical-align: baseline;
}
#meeting-studio .studio .price .num {
	font-size: 27px;
	font-family: 'Anton';
	display: inline-block;
	letter-spacing: 0.06em;
}

@media print, screen and (min-width:768px) and (max-width:1245px) {
	#price .price-table2 {
		width: 69%;
	}
	#price #meeting-studio {
		width: 30%;
		flex-wrap: wrap;
	}
	#meeting-studio .studio {
		width: 100%;
	}
	#meeting-studio .studio + .studio {
		margin-top: 20px;
	}
}

@media screen and (max-width:767px) {
	#meeting-studio {
		margin-top: calc(25 / 750 * 100vw);
		justify-content: flex-start;
	}
	#meeting-studio .studio {
		width: auto;
	}
	#meeting-studio .studio + .studio {
		margin-left: 6vw;
	}
	#meeting-studio .studio .title {
		font-size: calc(22 / 750 * 100vw);
	}
	#meeting-studio .studio .price {
		font-size: calc(18 / 750 * 100vw);
	}
	#meeting-studio .studio .price .num {
		font-size: calc(31 / 750 * 100vw);
	}
}

/* -------------------------------------------------
	#plan_box
------------------------------------------------- */


@media print, screen and (min-width:768px) {
	#plan_box ul{
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: flex-start;
		padding-top: 60px;
		}

	#plan_box ul li.texts {
		width: calc(670 / 1180 * 100%);
		}
	#plan_box ul li.texts h4{
		font-size: 24px;
		font-weight: 700;
		line-height: 1.3;
		}
	#plan_box ul li.texts .lead-text{
		font-size: 18px;
    	font-weight: 700;
    	line-height: 1.3;
		}
	
	#plan_box ul li.texts ul{
		justify-content: flex-start;
	    flex-direction: unset;
		align-items: center;
		margin: 15px 0;
		padding-top: 0;
		}
	#plan_box ul li.texts ul li.room-name{
		font-size: 48px;
		font-family: 'Anton';
    	letter-spacing: 0.06em;
		margin-right: 15px;
		}
	#plan_box ul li.texts ul li.hours{
	    font-size: 14px;
	    line-height: 1.64;	
		}
	#plan_box ul li.pics {
	    width: calc(460 / 1180 * 100%);
		background: #000;
		}
	#plan_box .price{
		margin-top: 20px;
		}
	
	#plan_box .price * {
    vertical-align: baseline;
		}
	#plan_box .num {
		font-size: 28px;
		font-family: 'Anton';
		letter-spacing: 0.06em;
		}
	#plan_box .s {
		font-size: 10px;
		}
	#plan_box .y {
		font-size: 14px;
		font-weight: 700;
		}
}
@media screen and (max-width:767px) {
	#plan_box ul li.texts ul{
		display: flex;
		align-items: center;
	}
	#plan_box ul li.texts ul li.room-name{
		font-size: calc(65 / 750 * 100vw);
		font-family: 'Anton';
    	letter-spacing: 0.06em;
		margin-right: calc(15 / 750 * 100vw);
		}
	#plan_box ul li.texts ul li.hours{
	    font-size: calc(23 / 750 * 100vw);
		line-height: 1.6;
		}
	#plan_box .num {
		font-size: calc(32 / 750 * 100vw);
		}
	#plan_box .y {
		vertical-align: bottom;
		}
}
/* -------------------------------------------------
	#option
------------------------------------------------- */
#option{
	padding-top: 60px;
	}
#option h3{
	font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
	}

#option .square_box{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 30px); 
  	overflow: hidden;
	}

#option .square_box dl{
	width: calc(16.6666% - 30px);
	margin: 0 30px 30px 0;
	}

#option .square_box dt{
	background: #fff;
	border:  solid 1px #000;
	text-align: center;
	width: 100%;position: relative;
	}
#option .square_box dt:before{
	content: "";
	display: block;
	padding-top: 100%;
	}
#option .square_box dt p {
	position: absolute;
	width: 80%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 13px;
    font-weight: 700;
	line-height: 1.41;
	}
#option .square_box dd{
	background: #000;
	color: #fff;
	margin-top: 10px;
	padding: 8px 5px;
	text-align: center;
    font-size: 13px;
	}
#option .square_box dd.member{
	background: #A4CBD3;
	color: #000;
	}
#option .square_box dd *{
	vertical-align: baseline;
	}

#option .square_box dd .num {
    font-family: 'Anton';
    display: inline-block;
    letter-spacing: 0.06em;
	}
#option .square_box dd .y {
    margin-left: 0.2em;
    display: inline-block;	
	}
@media print, screen and (min-width:990px) {
		#option .square_box dt p {
		font-size: 16px;
		}
	}

@media screen and (max-width:767px) {
	#option{
		padding-top: calc(130 / 750 * 100vw);
		}
	#option h3{
		font-size: calc(35 / 750 * 100vw);
    	line-height: 1.6;
    	margin-top: calc(10 / 750 * 100vw);
    	margin-bottom: calc(10 / 750 * 100vw);
		}
	#option .square_box{
		width: calc(100% + 5px); 
		}

	#option .square_box dl{
		width: calc(33.3333% - 5px);
		margin: 0 5px 5px 0;
		}
	#option .square_box  dt p {
		font-size: calc(23 / 750 * 100vw);
		}
	#option .square_box dd{
	    font-size: calc(23 / 750 * 100vw);
		margin-top: 5px;
		}
}
/* -------------------------------------------------
	#price .notes
------------------------------------------------- */

#price .notes-title{
	border: solid 1px #000; 
	border-radius: 100px;
	margin-top: 30px;
	padding: 15px;
	text-align: center;
	font-size: 20px;
    font-weight: 700;
	line-height: 1.3;
	}
#price .notes {
	margin: 30px 0 0 220px;
	list-style: disc;
}
#price .notes li {
	font-size: 20px;
	line-height: 1.58;
}

#price .notes li.large {
	font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}
#price .notes li.large span{
	background: linear-gradient(transparent 80%, #D0BEDC 80%);
}

@media screen and (max-width:767px) {
	#price .notes-title{
		    font-size: calc(23 / 750 * 100vw);
		    margin-top: calc(30 / 750 * 100vw);
		    padding: 8px;
	}
	#price .notes {
		margin: calc(25 / 750 * 100vw) 0 0 5vw;
	}
	#price .notes li {
		font-size: calc(23 / 750 * 100vw);
	}
	#price .notes li.large {
	    font-size: calc(28 / 750 * 100vw);
        line-height: 1.6;
	}
}

/* -------------------------------------------------
	#price #entry
------------------------------------------------- */

#entry {
	margin-top: 30px;
	padding: 30px 0 35px;
	border-top: solid 1px #000;
}
#entry .text1 {
	margin-top: 0.7em;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}
#entry .tel .large {
	font-size: 23px;
	font-weight: 700;
	line-height: 1.3;
	vertical-align: baseline;
	display: inline-block;
}
#entry .tel .normal {
	margin-left: 0.2em;
	font-size: 19px;
	vertical-align: baseline;
	display: inline-block;
	transform: translateY(-2px);
}

@media print, screen and (min-width:768px) {
	#entry {
		display: flex;
	}
	#entry .left {
		width: 195px;
		text-align: center;
	}
	#entry .left .title {
		width: 114px;
		height: 114px;
		line-height: 114px;
		font-size: 16px;
		border-radius: 50%;
		color: #fff;
		background: #000;
		text-align: center;
		display: inline-block;
		font-weight: 700;
	}
	#entry .right {
		width: calc(100% - 195px);
	}
	#entry .right .notes {
	margin: 10px 0 30px 20px;
	list-style: disc;
	}
}

@media screen and (max-width:767px) {
	#entry {
		margin-top: calc(30 / 750 * 100vw);
		padding: 0 0 calc(0 / 750 * 100vw);;
		border-top: none;
	}
	#entry .left .title {
		background: #000;
		color: #fff;
		padding: 0.3em;
		margin-bottom: 1em;
		display: inline-block;
		font-size: calc(22 / 750 * 100vw);
		font-weight: 700;
	}
	#entry .text1 {
		font-size: calc(25 / 750 * 100vw);
		line-height: 1.6;
	}
	#entry .tel .large {
		font-size: calc(28 / 750 * 100vw);
		line-height: 1.6;
	}
	#entry .tel .normal {
		font-size: calc(23 / 750 * 100vw);
		transform: translateY(-1px);
	}
	
}

/* -------------------------------------------------
	#calendar
------------------------------------------------- */

#calendar .googleCalendar iframe {
  width: 100%;
  height: 400px;
}

@media print, screen and (min-width:768px) {
	#calendar {
		background: #f4f1eb;
		padding-top: 65px;
		padding-bottom: 60px;
		}
	#calendar h3{
		font-size: 30px;
		font-weight: 700;
		line-height: 1.3;
		margin-bottom: 30px;
		}
	#calendar .lead-text {
		font-size: 20px;
		font-weight: 700;
		line-height: 1.3;
		margin-bottom: 20px;
		}
	
	#calendar .googleCalendar iframe {
	  	height: 600px;
		}
	
	}
	
@media screen and (max-width:767px) {
	#calendar{
		padding: calc(130 / 750 * 100vw) 0 calc(50 / 750 * 100vw);
		}
	#calendar h3{
	    font-size: calc(35 / 750 * 100vw);
		font-weight: 700;
    	line-height: 1.6;
	    margin-top: calc(10 / 750 * 100vw);
		margin-bottom: calc(10 / 750 * 100vw);
		}
	
	#calendar .lead-text {
		font-size: calc(23 / 750 * 100vw);
    	margin-bottom: calc(30 / 750 * 100vw);
    	line-height: 1.6;
		}
	}



/* -------------------------------------------------
	#access
------------------------------------------------- */

#access {
	padding: 100px 0 60px;
	background: #C9BC9C;
}
#access * {
	vertical-align: baseline;
}
#access .address {
	margin-top: 30px;
	font-size: 13px;
}
#access .title {
	margin-bottom: 20px;
	padding: 0.4em 0.5em 0.5em;
	display: inline-block;
	background: #000;
	font-size: 14px;
	color: #fff;
}
#access .desc {
	font-size: 13px;
}
#access .desc .num {
	font-size: 33px;
	display: inline-block;
	padding: 0 0.1em 0 0.2em;
	font-family: 'Anton';
	letter-spacing: 0.06em;
}
#access .note {
	margin-top: 2em;
	font-size: 13px;
}
#access .arrow img {
	width: 100%;
	margin: 15px 0 0;
	display: block;
}

#access .group1 {
	margin: 35px 0 25px;
	padding-bottom: 20px;
	border-bottom: solid 1px #000;
}
#access .group3 {
	margin-top: 30px;
}

@media print, screen and (min-width:768px) {
	#access .texts {
		width: calc(456 / 1180 * 100%);
		margin-left: calc(724 / 1180 * 100%);
		padding-top: 60px;
	}
	#access iframe {
		width: calc(625 / 1180 * 100%);
		height: 640px;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	#access .arrow + .desc {
		text-align: center;
	}
}

@media screen and (max-width:767px) {
	#access {
		padding: calc(130 / 750 * 100vw) 0 calc(50 / 750 * 100vw);
	}
	#access .address {
		margin-top: calc(30 / 750 * 100vw);
		font-size: calc(18 / 750 * 100vw);
	}
	#access .title {
		margin-bottom: calc(15 / 750 * 100vw);
		font-size: calc(22 / 750 * 100vw);
	}
	#access .desc {
		font-size: calc(18 / 750 * 100vw);
	}
	#access .desc .num {
		font-size: calc(41 / 750 * 100vw);
	}
	#access .note {
		margin-top: 1.5em;
		font-size: calc(18 / 750 * 100vw);
	}
	
	#access .arrow {
		display: inline-block;
	}
	#access .arrow::before {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0.8vw 0 0.8vw 1.5vw;
		border-color: transparent transparent transparent #000;
	}

	#access .group1 {
		margin: calc(47 / 750 * 100vw) 0 calc(25 / 750 * 100vw);
		padding-bottom: calc(30 / 750 * 100vw);
	}
	#access .group3 {
		margin-top: calc(30 / 750 * 100vw);
	}
	#access .group3 .desc {
		display: inline-block;
	}
	
	#access iframe {
		width: 100%;
		height: 80vw;
		margin-top: calc(45 / 750 * 100vw);
	}
}

/* -------------------------------------------------
	footer
------------------------------------------------- */

footer {
	padding: 60px 0 50px;
	background: #000;
	color: #fff;
}
footer a {
	color: #fff;
}

footer .site-nav {
	display: flex;
	justify-content: flex-end;
}
footer .site-nav li {
	font-size: 20px;
	letter-spacing: 0.1em;
	font-family: Arial, sans-serif;
}
footer .site-nav li + li::before {
	content: "/";
	display: inline-block;
	margin: 0 1em;
}

footer .site-info .logo {
	width: 188px;
}
footer .site-info .info {
	margin-top: 33px;
	font-size: 14px;
    line-height: 1.64;
	letter-spacing: 0.1em;
}
footer .site-info .copyright {
	margin-top: 1.8em;
	font-size: 11px;
	letter-spacing: 0.1em;
}

footer .other-link {
	display: flex;
	align-items: center;
}
footer .other-link .group {
	display: flex;
	align-items: center;
}
footer .other-link .group.g1 img[alt="びわピク"] {
	width: 85px;
}
footer .other-link .group.g1 img[alt="どんどん"] {
	width: 146px;
}
footer .other-link .group.g2 img {
	height: 52px;
}

@media print, screen and (min-width:768px) {
	footer .site-nav li a:hover,
	footer .site-info .info a:not([href^="tel"]):hover {
		text-decoration: underline;
	}
	footer .pc-bottom {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	footer .other-link li {
		margin-left: 50px;
	}
	footer .other-link a {
		transition: opacity 0.2s ease-out;
	}
	footer .other-link a:hover {
		opacity: 0.5;
	}
}

@media screen and (max-width:767px) {
	footer {
		padding: calc(50 / 750 * 100vw) 0;
		position: relative;
	}

	footer .site-nav {
		justify-content: center;
	}
	footer .site-nav li {
		font-size: calc(20 / 750 * 100vw);
	}

	footer .site-info .logo {
		width: calc(136 / 750 * 100vw);
		margin: 7vw auto 0;
		display: block;
	}
	footer .site-info .info {
		margin-top: 1.8em;
		font-size: calc(19 / 750 * 100vw);
		line-height: 1.5;
		text-align: center;
	}
	footer .site-info .copyright {
		margin-top: 1.8em;
		font-size: calc(13 / 750 * 100vw);
		position: absolute;
		right: 0;
		bottom: -2vw;
	}

	footer .other-link {
		margin-top: calc(60 / 750 * 100vw);
		justify-content: space-between;
	}
	footer .other-link .group.g1 li + li {
		margin-left: calc(67 / 750 * 100vw);
	}
	footer .other-link .group.g1 img[alt="びわピク"] {
		width: calc(70 / 750 * 100vw);
	}
	footer .other-link .group.g1 img[alt="どんどん"] {
		width: calc(120 / 750 * 100vw);
	}
	footer .other-link .group.g2 li + li {
		margin-left: calc(43 / 750 * 100vw);
	}
	footer .other-link .group.g2 img {
		height: calc(43 / 750 * 100vw);
	}
}

/* -------------------------------------------------
	responsive
------------------------------------------------- */

@media print, screen and (min-width:768px) {
	.pc-none {
		display: none !important;
	}
}

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

/* -------------------------------------------------
	print
------------------------------------------------- */

@media print {
	body {
		width: 980px !important;
	}
}
