@charset "utf-8";
/*------------------------------------------------------------
 全体設定
------------------------------------------------------------*/
html {
	background: #060303;
}
body {
	margin: 0;
	padding: 0;
	background: transparent;
	color: #fff;
	font-family: "a-otf-ryumin-pr6n", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Sawarabi Mincho", serif;
	font-size: 16px;
	line-height: 1.4;
	text-align: left;
}

.contents {
	background: #060303 url(../img/common/contents-bg.png) center bottom repeat-x;
	padding: 0 0 50px;
	margin-top: 100px;
}

.wrapper {
	width: 1000px;
	margin: 0 auto;
}

a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #fff;
}

img {
	width: 100%;
}

h2 {
	color: #b49a00;
	font-size: 20px;
	clear: both;
}

h2::before {
	content: "\025a0";
}

.price {
	float: right;
	margin-top: -22px;
}

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
}

.pc {
	display: block;
	text-align: left;
}

.sp {
	display: none;
	text-align: left;
}

.copyright {
	display: none;
}

/*---------- スマホ用レイアウト ----------*/
@media (max-width: 1000px) {
	.contents {
		width: 1000px;
	}
}

@media (max-width: 768px) {
	.contents {
		padding: 0 0 20px;
		margin-top: 80px;
		width: 100%;
		font-size: 14px;
	}
	.wrapper {
		width: 90%;
	}
	h2 {
		font-size: 18px;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}



/*------------------------------------------------------------
 ヘッダー
------------------------------------------------------------*/
/*---------- ヘッダー背景画像 ----------*/
.header {
	background: url(../img/common/bg.jpg) repeat center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
}

/*---------- ロゴ ----------*/
.header h1 {
	width: 10%;
	float: left;
	text-indent: -9999px;
	background: url(../img/common/logo.jpg) no-repeat;
	background-size: 100% auto;
	margin: 0;
}

.header h1 a {
	height: 100px;
	border: none;
	display: block;
	cursor: pointer;
}

.header h1:hover {
	opacity: 0.9;
}


/*---------- メニュー ----------*/
.header .header-menu {
	box-sizing: border-box;
	float: right;
	width: 880px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.header .header-menu li {
	float: left;
}

.header .header-menu li:nth-child(1) {
	display: none;
}

.header .header-menu a {
	color: #333;
	display: block;
	margin: 0 auto;
	padding: 10px 9px;
	line-height: 20px;
	height: 20px;
	text-align: center;
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	border: none;
}

.header .header-menu a:hover {
	color: #b49a00;
	text-decoration:none;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

/*---------- メニューボタン ----------*/
.header-btn {
	box-sizing: border-box;
	display: none;
	background: #85547f;
	position: absolute;
	top: 15px;
	right: 15px;
	width: 60px;
	height: 50px;
	z-index: 1000;
	padding: 13px;
}

.header-btn .trigger {
	border: none;
	background: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	position: relative;
}

.header-btn .trigger:active {
	outline: 0;
}

.header-btn .trigger span {
	display: block;
	content: " ";
	background: #fff;
	height: 2px;
	width: 100%;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: all .3s;
	position: absolute;
	left: 0;
	z-index: 3;
}

.header-btn .trigger div {
	color: #fff;
	font-size: 10px;
	position: absolute;
	top: 22px;
	left: -15px;
	width: 60px;
	text-align: center;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: all .3s;
}

.header-btn .trigger span:nth-of-type(1) {
	top: 0;
}

.header-btn .trigger span:nth-of-type(2) {
	top: 8px;
}

.header-btn .trigger span:nth-of-type(3) {
	top: 16px;
}

/* 最初のspanをマイナス45度に */
.header-btn.active span:nth-of-type(1) {
	top: 13px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header-btn.active span:nth-of-type(2) {
	opacity: 0;
}

/* 3番目のspanを45度に */
.header-btn.active span:nth-of-type(3) {
	top: 13px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*---------- スマホ用レイアウト ----------*/
@media (max-width: 1000px) {
	.header {
		width: 1000px;
	}
}

@media (max-width: 768px) {
	.header {
		width: 100%;
	}
	.header h1 {
		width: 80px;
	}
	.header h1 a {
		display: block;
		height: 80px;
	}
	.header-btn {
		display: block;
	}
	.header .header-menu {
		box-sizing: border-box;
		display: none;
		opacity: 0;
		background: rgba(0, 0, 0, 0.95);
		float: none;
		padding: 50px 15% 0;
		margin: 0;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 900;
	}
	.header .header-menu.active {
		display: block;
		opacity: 1;
		animation-duration: 0.5s;
		animation-name: fade-in;
		-moz-animation-duration: 0.5s;
		-moz-animation-name: fade-in;
		-webkit-animation-duration: 0.5s;
		-webkit-animation-name: fade-in;
	}
	.header .header-menu li {
		float: none;
		width: 100%;
		border-bottom: 1px solid #ccc;
	}
	.header .header-menu li:nth-child(1) {
		display: block;
	}
	.header .header-menu a {
		background: none;
		color: #fff;
		padding: 10px 0;
		font-size: 16px;
	}
}
@keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@-moz-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@-webkit-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}



/*------------------------------------------------------------
 フッター
------------------------------------------------------------*/
/*---------- フッター店舗情報 ----------*/
#footer-info {
	padding: 30px 0 0;
	clear: both;
}

#footer-info img {
	float: left;
	width: 40%;
	margin-top: 25px;
}

#footer-info table {
	width: 50%;
	float: right;
}

#footer-info td {
	padding: 2px;
	vertical-align: top;
	text-align: left;
}

#footer-info .tel {
	color: #b49a00;
	font-size: 40px;
	line-height: 1.2;
	margin: 0;
}

#footer-info .tel a {
	color: #b49a00;
	text-decoration: none;
	border: none;
}

#footer-info span {
	background: #fff;
	color: #0d0000;
	font-size: 14px;
	font-weight: 500;
	padding: 5px;
}

#footer-info .pdg {
	padding: 4px 2px;
}

/*---------- フッターメニュー背景指定 ----------*/
.footer {
	background: url(../img/common/bg.jpg) repeat;
	padding: 10px 0;
}

/*---------- ロゴ ----------*/
.footer .logo {
	box-sizing: border-box;
	width: 8%;
	float: left;
	text-indent: -9999px;
	background: url(../img/common/logo.jpg) no-repeat;
	background-size: 100% auto;
	margin: 0;
}

.footer .logo a {
	height: 80px;
	border: none;
	display: block;
	cursor: pointer;
}

.footer .logo:hover {
	opacity: 0.9;
}

/*---------- フッターメニュー ----------*/
.footer-menu {
	box-sizing: border-box;
	padding: 10px 0 0 0;
	margin: 0 0 20px 0;
	list-style: none;
	float: right;
	width: 90%;
}

.footer-menu li {
	float: left;
}

.footer-menu a {
	box-sizing: border-box;
	color: #333;
	font-size: 16px;
	font-weight: 500;
	display: block;
	text-align: center;
	text-decoration: none;
	border: none;
	padding: 0 12px;
}

.footer-menu a:hover {
	text-decoration: underline;
}

/*---------- コピーライト ----------*/
.footer p {
	color: #333;
	text-align: center;
	padding: 0;
	margin: 0;
	font-size: 14px;
	width: 90%;
	float: right;
}

/*---------- スマホ用レイアウト ----------*/
@media (max-width: 1000px) {
	.footer {
		width: 1000px;
	}
}
@media (max-width: 768px) {
	.footer {
		width: 100%;
		padding: 7px 0;
	}
	#footer-info {
		margin-bottom: 20px;
	}
	#footer-info img {
		float: left;
		width: 40%;
		margin-top: 50px;
	}

	#footer-info table {
		width: 60%;
	}
	#footer-info span {
		font-size: 12px;
	}
	.footer .logo,
	.footer-menu {
		display: none;
	}
	.footer p {
		padding: 0;
		font-size: 12px;
		float: none;
		width: 100%;
	}
}
@media (max-width: 750px) {
	#footer-info {
		padding: 0 0 10px;
	}
	#footer-info img,
	#footer-info table {
		float: none;
		width: 100%;
		margin: 0;
	}
	#footer-info td {
		font-size: 13px;
	}
	#footer-info .tel {
		font-size: 30px;
	}
	#footer-info span {
		display: block;
		font-size: 10.5px;
	}
}



/*------------------------------------------------------------
 トップページ
------------------------------------------------------------*/
/*---------- トップメインイメージ ----------*/
.top .main {
	position: relative;
	margin-bottom: 30px;
}

.top .main-img {
	position: absolute;
	top: 40px;
	left: 38%;
	display: block;
	width: 22%;
	z-index: 10;
}

.top .main .swiper-container {
	width: 1000px;
}

.top .main .swipe-slide img {
	width: 100%;
}

/*---------- 店舗情報へのリンク ----------*/
.top .info {
	width: 70%;
	margin: 20px auto;
	padding: 0;
	list-style: none;
}

.top .info li {
	box-sizing: border-box;
	float: left;
	width: 16.6%;
	padding: 0 2%;
}

.top .info a {
	border: none;
}

.top .info a:hover {
	opacity: 0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.top .use {
	width: 40%;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.top .use li {
	float: right;
	width: 6.5%;
	margin: 0 3%;
}

/*---------- ごあいさつ ----------*/
.greeting {
	box-sizing: border-box;
	border-top: 2px solid #e60012;
	border-left: 2px solid #e60012;
	width: 70%;
	margin: 40px auto;
	padding: 30px 40px;
}

/*---------- こがねNEWS ----------*/
.news {
	box-sizing: border-box;
	border-top: 2px solid #e60012;
	border-left: 2px solid #e60012;
	width: 70%;
	margin: 40px auto;
	padding: 30px 40px;
}

.news iframe {
	height: 6.5em;
}

.news-list {
	width: 100%;
}

.news-list th {
	font-weight: normal;
	padding: 5px 30px 5px 0;
	width: 5em;
}

.news-list td {
	padding: 5px;
}

.news-list td a {
	text-decoration: none;
	border: none;
}

.news-list td a:hover {
	text-decoration: underline;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

/*---------- おすすめ ----------*/
.recommend {
	background: #f2eace;
	padding: 40px 0;
}

.recommend h2 {
	color: #0d0000;
}

.recommend ul {
	list-style: none;
	padding: 0;
}

.recommend li {
	float: left;
	width: 30%;
	margin-right: 5%;
	color: #0d0000;
}

.recommend li:last-child {
	margin: 0 auto;
}

.recommend li h3 {
	margin: 0 0 5px 0;
	color: #887400;
}

.recommend li p {
	border-top: 2px solid #887400;
	padding: 5px 0 0;
	margin: 10px 0 0;
}

.recommend li:nth-child(2) .price {
	margin-top: -27px;
}

.recommend li:last-child .price {
	margin: 0;
	float: none;
	text-align: right;
}

/*---------- スマホ用レイアウト ----------*/
@media (max-width: 768px) {
	.top .main {
		padding-top: 20px;
	}
	.top .main .swiper-container {
		width: 100%;
	}
	.top .main-img  {
		top: 7px;
		left: 36%;
		width: 26.5%;
	}
	.top .info,
	.top .use {
		width: 70%;
	}
	.greeting,
	.news {
		border-left: none;
		padding: 0;
		margin: 40px 0;
		width: 100%;
	}
	.news iframe {
		height: 20em;
	}
	.recommend li:nth-child(1) .price {
		float: none;
		margin: 0;
		text-align: right;
	}
}

@media (max-width: 750px) {
	.top .info,
	.top .use {
		width: 85%;
	}
	.recommend h2 {
		margin: 0 auto;
		width: 85%;
	}
	.recommend li {
		width: 85%;
		float: none;
		margin: 0 auto 30px;
	}
	.recommend li img {
		display: block;
		margin: 0 auto 5px;
	}
	.recommend li p {
		border-top: 1px solid #887400;
		margin-top: 5px;
	}
	.recommend li:nth-child(1) .price {
		float: right;
		margin-top: -22px;
	}
}

@media (max-width: 616px) {
	.news-list th,
	.news-list td {
		display: block;
		font-size: 14px;
	}
	.news-list th {
		padding: 10px 0 0;
	}
}



/*------------------------------------------------------------
 メニュー
------------------------------------------------------------*/
.menu .f-left {
	box-sizing: border-box;
	width: 50%;
	float: left;
	padding: 0 3em;
}

.menu .f-right {
	box-sizing: border-box;
	width: 50%;
	float: right;
	padding: 0 3em;
}

.menu h2 {
	margin-top: -100px;
	padding: 5em 0 0 2em;
	font-size: 24px;
}

.menu h2 span {
	font-size: 16px;
	padding-left: 2em;
}

.menu h2 span img {
	margin-bottom: -0.3em;
}

.menu h2 em {
	font-style: normal;
	font-size: 16px;
	display: block;
}

.menu h3 {
	color: #b49a00;
	font-size: 20px;
	margin-bottom: 0.2em;
}

.menu h3 em {
	font-style: normal;
	font-size: 14px;
	padding-left: 2em;
}

.menu img {
	margin-top: 1em;
}

.menu ul {
	list-style: none;
}

.menu li {
	float: left;
	width: 33.3%;
}

.menu ul:nth-of-type(1) li:nth-child(2) {
	width: 66.6%;
}

.course {
	border-top: 1px solid #fff;
	padding: 1em 0 2em;
}

.recommended-mark {
	width: 2.5em;
	margin: 0;
}

.menu table .recommended-mark {
	display: inline-block;
	margin-top: -0.5em;
}

.menu table {
	width: 112%;
	font-size: 18px;
	margin-left: -3em;
	border-collapse: collapse;
}

.menu th {
	background: url(../img/menu/bg_menu.jpg) repeat-x right center;
	font-weight: normal;
	padding-bottom: 0.5em;
}

.menu th span {
	background: #060303;
	padding: 0 0.5em 0 0;
	line-height: 1;
	margin-left: -0.1em;
}

.menu td {
	text-align: right;
	padding-bottom: 0.5em;
}

.menu tr td:nth-of-type(1) {
	width: 3em;
	text-align: center;
	padding: 0;
}

.menu tr td:nth-of-type(2) {
	width: 6em;
}

.menu tr td:nth-of-type(2) span {
	font-size: 12px;
}

.menu .point {
	text-align: left;
	color: #bbaad1;
	font-size: 14px;
	padding-bottom: 0;
}

.menu .detail {
	text-align: left!important;
	font-weight: normal;
	font-size: 14px;
	padding-bottom: 1em;
}

.menu #footer-info {
	margin-top: 100px;
}

/*---------- スマホ用レイアウト ----------*/
@media (max-width: 768px) {
	.menu .f-left {
		box-sizing: border-box;
		width: 50%;
		float: left;
		padding: 0 2em;
	}
	.menu .f-right {
		box-sizing: border-box;
		width: 50%;
		float: right;
		padding: 0 2em;
	}
	.menu table {
		font-size: 14px;
	}
	.menu .point,
	.menu .detail {
		font-size: 12px;
	}
}
@media (max-width: 750px) {
	.menu .f-left,
	.menu .f-right {
		float: none;
		width: 100%;
		padding: 0 1.8em;
	}
	.menu h2 {
		margin-top: -60px;
		padding: 4em 0 0 1.2em;
	}
	.menu h2 span {
		display: block;
		padding-left: 0;
	}
	.recommended-mark {
		width: 2em;
	}
	.menu table {
		width: 84vw;
		margin-left: -2.5em;
		font-size: 14px;
	}
	.menu th {
	}
	.menu tr td:nth-of-type(1) {
		width: 2.5em;
	}
	.menu tr td:nth-of-type(2) {
		width: 7em;
	}
	.menu .point,
	.menu .detail {
		font-size: 12px;
	}
}



/*------------------------------------------------------------
 こがねNEWS
------------------------------------------------------------*/
.topics {
	width: 700px;
	margin: 0 auto;
	padding: 30px 0;
}

.topics h2 {
	font-size: 24px;
	margin-bottom: -1em;
}

.topics-list {
	margin-top: -100px;
	padding-top: 8em;
}

.topics-detail {
	padding: 20px 0 0 50px;
	border-top: 2px solid #f2eace;
	border-left: 2px solid #f2eace;
}

.topics-detail h3 span {
	margin-left: 1em;
}

.topics-detail p {
	margin-left: 105px;
}

/*---------- スマホ用レイアウト ----------*/
@media (max-width: 768px) {
	.topics {
		width: 80%;
	}
	.topics-list {
		margin-top: -80px;
		padding-top: 8em;
	}
	.topics-detail {
		padding: 1em 3em;
	}
	.topics-detail h3 span {
		display: block;
		margin: 0;
	}
	.topics-detail p {
		margin-left: 0;
	}
}
@media (max-width: 750px) {
	.topics {
		width: 100%;
	}
}



/*------------------------------------------------------------
 店舗アクセス
------------------------------------------------------------*/
.access h2,
.access-info h2 {
	margin-left: 3em;
	padding-top: 30px;
	font-size: 24px;
}

/*---------- 店舗アクセス ----------*/
.access .info {
	box-sizing: border-box;
	float: left;
	width: 50%;
	padding: 0 2em 0 3.5em;
}

.access .info img {
	width: 90%;
	margin: 0 0 20px;
}

.access .info p {
	margin: 0.2em;
}

.access .info .tel {
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	color: #b49900;
}

.access .info .tel a {
	color: #b49900;
	border: none;
}

.access .info span {
	background: #fff;
	color: #333;
	padding: 5px 10px;
	margin: 5px 0;
	font-size: 13px;
	font-weight: bold;
	display: inline-block;
}

.access .info strong {
	font-size: 18px;
	font-weight: normal;
	margin: 5px 0;
	display: inline-block;
}

/*---------- GoogleMap ----------*/
.access .map {
	box-sizing: border-box;
	background: url(../img/common/bg-take.png) no-repeat top right;
	background-size: 20%;
	float: right;
	width: 50%;
	margin: 0;
	padding: 130px 15px 0;
}

.access .map iframe {
	box-sizing: border-box;
	width: 100%;
	border: 10px solid #fff;
}

/*---------- 店舗情報 ----------*/
.access-info {
	border-top: 4px solid #b49900;
	margin-top: 30px;
}

.access-info h2 {
	padding-top: 130px;
	margin-top: -100px;
}

.access-info .f-left {
	box-sizing: border-box;
	width: 50%;
	float: left;
	padding: 0 3.5em;
}

.access-info .f-right {
	box-sizing: border-box;
	width: 50%;
	float: right;
	padding: 0 3.5em;
}

.access-info h3 {
	color: #b49900;
	margin: 0.5em 0 0;
}

.access-info .number {
	float: right;
	margin-top: -1.5em;
}

.access-info p {
	border-top: 2px solid #b49900;
	padding-top: 5px;
	margin: 10px 0 20px;
}

#info1,
#info2,
#info3,
#info4,
#info5 {
	padding-top: 100px;
	margin-top: -100px;
}


/*---------- スマホ用レイアウト ----------*/
@media (max-width: 768px) {
	.access {
		padding-top: 20px;
	}
	.access h2,
	.access-info h2 {
		margin-left: 1.5em;
	}
	.access .info {
		padding: 0 2em 0 1em;
	}
	.access .info .tel {
		font-size: 30px;
	}
	.access .info strong {
		font-size: 14px;
	}
	.access .map {
		padding: 100px 15px 0;
	}
	.access-info .f-left {
		padding: 0 2.5em;
	}
	.access-info .f-right {
		padding: 0 2.5em;
	}
}
@media (max-width: 750px) {
	.access h2 {
		margin: 0;
		padding-top: 0;
	}
	.access-info h2 {
		margin-left: 1em;
	}
	.access .info,
	.access .map {
		background: none;
		float: none;
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}
	.access .info img {
		width: 100%;
		margin: 20px auto;
		display: block;
	}
	.access .info .tel {
		font-size: 30px;
	}
	.access .info strong {
		font-size: 14px;
	}
	.access .map {
		margin: 0 0 20px;
	}
	.access-info .f-left,
	.access-info .f-right {
		width: 80%;
		float: none;
		padding: 0;
		margin: 20px auto;
	}
}



/*------------------------------------------------------------
 別邸らいせ
------------------------------------------------------------*/
.raise {
	background: url(../img/raise/bg_top.png), url(../img/raise/bg_bottom.png), -moz-linear-gradient(to bottom, #d4d9dc, #f7f8f8, #d4d9dc);
	background: url(../img/raise/bg_top.png), url(../img/raise/bg_bottom.png), -webkit-linear-gradient(to bottom, #d4d9dc, #f7f8f8, #d4d9dc);
	background: url(../img/raise/bg_top.png), url(../img/raise/bg_bottom.png), linear-gradient(to bottom, #d4d9dc, #f7f8f8, #d4d9dc);
	background-position: top center, bottom center;
	background-repeat: repeat-x, repeat-x;
	color: #000;
	font-weight: bold;
	padding: 15px 0;
}

.raise .wrapper {
	box-sizing: border-box;
	width: 800px;
}

/*---------- らいせ店舗概要 ----------*/
.raise .summary {
	text-align: center;
}

.raise h2 {
	color: #000;
	font-size: 28px;
}

.raise h2::before {
	content: none;
}

.raise .reserve {
	background: -moz-linear-gradient(to right, #c28c00, #eec400 43%, #c8a500 87%);
	background: -webkit-linear-gradient(to right, #c28c00, #eec400 43%, #c8a500 87%);
	background: linear-gradient(to right, #c28c00, #eec400 43%, #c8a500 87%);
	font-size: 20px;
	padding: 5px 0;
}

.raise .access {
	padding: 20px 0 40px;
}

.raise .access img {
	float: left;
	width: 40%;
	margin: 20px 20px 0;
}

.raise .access div {
	box-sizing: border-box;
	float: right;
	width: 50%;
	padding: 0 0 0 27px;
}

.raise .access p {
	margin: 0.2em;
}

.raise .access .tel {
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
}

.raise .access .tel a {
	color: #000;
	border: none;
}

.raise .access span {
	background: #000;
	color: #fff;
	padding: 5px 10px;
	margin: 5px 0;
	font-size: 16px;
	display: block;
	text-align: center;
}

/*---------- らいせ写真情報 ----------*/
.raise .info .f-left {
	box-sizing: border-box;
	width: 50%;
	float: left;
	padding: 0 2em 0 0;
}

.raise .info .f-right {
	box-sizing: border-box;
	width: 50%;
	float: right;
	padding: 0 0 0 2em;
}

.raise .info h3 {
	font-size: 17px;
	margin: 0 0 30px;
}

.raise .info .f-right div:nth-of-type(1),
.raise .info .f-right div:nth-of-type(2) {
	box-sizing: border-box;
	float: left;
	width: 50%;
	margin-bottom: 145px;
}

.raise .info .f-right div:nth-of-type(1) {
	padding: 0 10px 0 0;
}

.raise .info .f-right div:nth-of-type(2) {
	padding: 0 0 0 10px;
}

.raise .flow {
	clear: both;
	border: 2px solid #433376;
	padding: 20px 10px 10px;
	position: relative;
}

.raise .flow h3 {
	background: #e0e4e7;
	font-size: 16px;
	display: inline-block;
	margin: 0;
	padding: 0 5px;
	position: absolute;
	top: -10px;
	left: 1em;
}

.raise .flow ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	float: left;
	width: 50%;
}

.raise .flow li {
	box-sizing: border-box;
	padding-left: 1em;
}

.raise .flow li::before {
	content: "\025bc";
}

.raise .charge {
	margin: 20px 0;
}

.raise .charge div,
.raise .charge ul {
	box-sizing: border-box;
	float: left;
	width: 50%;
}

.raise .charge h3:nth-of-type(1) {
	background: #fff;
	border: 2px solid #000;
	padding: 5px;
	margin-top: 0;
}

.raise .charge h3:nth-of-type(2) {
	padding-left: 7px;
}

.raise .charge ul {
	box-sizing: border-box;
	list-style-type: none;
	margin: 0;
	padding: 0 0 0 2em;
}

.raise .charge li {
	font-size: 14px;
	margin-left: 1em;
}

.raise .charge li::before {
	content: "※";
	display: inline-block;
	margin-left: -1em;
}

.raise .charge p {
	clear: both;
}

/*---------- スマホ用レイアウト ----------*/
@media (max-width: 768px) {
	.raise .wrapper {
		width: 90%;
	}
	.raise h2 {
		font-size: 20px;
	}
	.raise .access img {
		float: none;
		width: 50%;
		margin: 10px auto;
		display: block;
	}
	.raise .access div {
		float: none;
		width: 100%;
		padding: 0;
	}
	.raise .info {
		padding: 0 10px;
	}
	.raise .info .f-left {
		padding: 0 1em 0 0;
	}
	.raise .info .f-right {
		padding: 0 0 0 1em;
	}
	.raise .info h3 {
		font-size: 14px;
	}
	.raise .info .f-right div:nth-of-type(1),
	.raise .info .f-right div:nth-of-type(2) {
		margin-bottom: 60px;
	}
	.raise .info .f-right div:nth-of-type(1) {
		padding: 0 5px 0 0;
	}
	.raise .info .f-right div:nth-of-type(2) {
		padding: 0 0 0 5px;
	}
	.raise .charge {
		margin: 0;
		padding: 10px;
	}
	.raise .charge p {
		padding-top: 20px;
	}
}

@media (max-width: 690px) {
	.raise h2 br {
		display: none;
	}
	.raise .access img {
		width: 80%;
	}
	.raise .access .tel {
		font-size: 24px;
	}
	.raise .info .f-right div:nth-of-type(1),
	.raise .info .f-right div:nth-of-type(2) {
		margin-bottom: 30px;
	}
	.raise .info .f-left,
	.raise .info .f-right {
		float: none;
		width: 90%;
		padding: 0;
		margin: 0 auto;
	}
	.raise .info h3 {
		font-size: 13px;
		margin-bottom: 20px;
	}
	.raise .flow h3 {
		font-size: 14px;
	}
	.raise .charge {
		margin: 20px 0;
	}
	.raise .charge div,
	.raise .charge ul {
		float: none;
		width: 90%;
		margin: 0 auto;
		padding: 0;
	}
	.raise .charge p {
		width: 90%;
		margin: 0 auto;
	}
}
