@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

.txtEx {
	text-indent: 120%;
	white-space: nowrap;
	overflow: hidden;
}
.PC {display: inherit;}
.SP {display: none;}

:root {
	--font-default: YuGothic, "Yu Gothic Medium", "Yu Gothic", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	--font-Mincho:  "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	--font-noto: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;

}

:where(html) {
	scroll-behavior: smooth; /*スムーススクロール*/
	scroll-padding-top: 0rem; /*スクロール位置の調整*/
	/*overflow: overlay;*/
	font-size: 62.5%; /*1rem = 10px*/
	font-size: 1.33vw; /*defaultFontsize / maxWidth * 100*/
	font-size: 0.925vw; /*defaultFontsize / maxWidth * 100*/
	/*max-width: 750px;*/ /*maxWidth*/
	margin: 0 auto;
	/*scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/
	/*-ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/
}
:where(html)::-webkit-scrollbar {
	/*width: 1.6rem;*/
  /*display: none; /*Google Chrome、Safari、Microsoft Edge対応のスクロールバー非表示コード*/
}
	:where(html)::-webkit-scrollbar-track {
	  background: transparent;
	}
	:where(html)::-webkit-scrollbar-thumb {
		background: rgba(0,0,0,0.3);
		border: 1px solid ccc;
		border-right: none;
	}
	:where(html)::-webkit-scrollbar-button {
		/*（上下の矢印）*/
	}
	:where(html)::-webkit-scrollbar-track-piece {
		/*thumbの上下にあるエリア。trackと両方background-colorが設定されていた場合はこちらが優先される。*/
	}
	:where(html)::-webkit-scrollbar-corner {
	  background: transparent;
		/*縦のスクロールバーと横のスクロールバーの間にある右下のエリア。縦横両方のスクロールバーが表示されていないと表示されない。*/
	}
  /*deviceWidth 750px 以上の時 全体のフォントサイズ 10px に固定*/
  @media screen and (min-width: 1080px) {
    :where(html) {
      font-size: 10px; /*defaultFontsize*/
    }
  }
:where(body) {
	font-family: var(--font-default);
	width: 100%;
	margin: 0 auto;
	/*overflow-x: hidden;*/
	height: 200vh;
}
:where(img) {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
:where(picture) {
	display: inline-block;
	vertical-align: bottom;
}

a:where([class]) {
	display: inline-block;
	transition: opacity 0.12s;
}
	a:where([class]):hover {
		opacity: 0.8;
	}
	/* style.css の a:hover img { opacity:.8 } で画像だけ薄くなり、
	   上に重ねた span の背景（黒/白ベタ）が枠状に浮き出るのを防ぐ。
	   ホバー時はリンク全体の opacity で統一する */
	.header-btn:hover img,
	.fv-btn:hover img {
		opacity: 1;
	}

*[class] > mark {
	color: inherit;
	background: none;
}

/*--------------------
No1*/

/*--No2*/

/*No3*/







/*--------------------
pg-studio 共通*/

body {
	height: auto;
}

.pg-studio {
	overflow-x: hidden;
}
	.pg-studio img {
		max-width: 100%;
		height: auto;
	}
	.pg-studio picture {
		display: block;
	}
	.pg-studio section {
		line-height: 1.6;
	}





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

.header {
	position: relative;
	width: 100%;
	background: #fff;
}
	.header-inner {
		display: flex;
			justify-content: space-between;
			align-items: center;
		max-width: 1080px;
		height: 9rem;
		margin-inline: auto;
	}
	.header-logo {
	}
		.header-logo a {
			display: block;
		}
		.header-logo .__img {
			width: 13.4rem;
			height: auto;
		}
	.header-right {
		display: flex;
			align-items: center;
			gap: 2.5rem;
	}
	.header-tel {
		position: relative;
		width: 21.6rem;
		text-decoration: none;
	}
		.header-tel .__img {
			width: 100%;
		}
		.header-tel span {
			position: absolute;
				z-index: 10;
				top: 50%;
				translate: 0 -50%;
				left: 2.8rem;
			color: #000;
			font-size: 2.3rem;
			font-weight: 700;
			letter-spacing: 0.06em;
			white-space: nowrap;
			border: 1rem solid #fff;
			background: #fff;
		}
	.header-btn {
		cursor: pointer;
		position: relative;
		width: 16rem;
		height: 3.6rem;
		text-decoration: none;
	}
		.header-btn picture {
			display: block;
			height: 100%;
		}
		.header-btn img {
			width: auto;
			height: 100%;
		}
		.header-btn span {
			position: absolute;
				z-index: 10;
				top: 50%;
				translate: 0 -50%;
				left: 5.6rem;
			color: #fff;
			font-size: 1.4rem;
			font-weight: 700;
			white-space: nowrap;
			border: 1rem solid #000;
			border-top: 0;
			border-bottom: 0;
			background: #000;
		}




/*--------------------
sect-fv-firstview*/

.sect-fv-firstview {
	position: relative;
	display: flex;
		justify-content: center;
	overflow: hidden;
}
	.sect-fv-firstview picture {
		display: flex;
			justify-content: center;
		width: 100%;
		margin: 0 auto;
	}
	.sect-fv-firstview .__img {
		width: 188rem;
		height: auto;
		max-width: none;
		margin: 0 auto;
	}
/*  @media screen and (min-width: 1880px) {
		.sect-fv-firstview .__img {
			width: 100%;
		}
  }*/

.fv-txt {
	position: absolute;
		z-index: 10;
		top: 6rem;
		left: 50%;
		translate: -50% 0;
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	color: #2a323c;
}
	.fv-txt .t01 {
		font-family: var(--font-noto);
		font-size: 4.3rem;
		font-weight: 900;
		line-height: 1;
	}
		.fv-txt .t01 strong {
			font-size: 130%;
		}
	.fv-txt .t02 {
		margin-bottom: 3.8rem;
		font-family: var(--font-noto);
		font-size: 7.6rem;
		font-weight: 900;
		line-height: 1.131;
	}
		.fv-txt .t02 strong {
			font-size: 130%;
		}
	.fv-txt .t03 {
		margin-bottom: 3rem;
		margin-left: 4rem;
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 1;
	}
	.fv-txt .t04 {
		margin-left: 0.6rem;
		color: #fff;
		font-size: 2rem;
		font-weight: 700;
		line-height: 1.75;
	}
		.fv-txt .t04 ul {
			display: flex;
				gap: 0 2rem;
			margin: 0;
			padding: 0;
		}
			.fv-txt .t04 li {
				display: flex;
					justify-content: center;
					align-items: center;
				width: 15rem;
				height: 15rem;
				font-size: 2rem;
				text-align: center;
				line-height: 1.25;
				letter-spacing: 0.06em;
				border-radius: 50%;
				background: #a0b482;
			}
			.fv-txt .t04 strong {
				font-size: 150%;
			}
			.fv-txt .t04 img {
				width: 3.5rem;
				margin: 0 auto;
				margin-bottom: 1rem;
			}

.fv-btns {
	position: absolute;
		z-index: 10;
		bottom: 7.8rem;
		left: 50%;
		translate: -50% 0;
	display: flex;
		justify-content: center;
		align-items: center;
		gap: 2rem;
	margin-left: -27rem;
}
	.fv-btn {
		position: relative;
		display: block;
		text-decoration: none;
	}
		.fv-btna .__img {
			width: 23rem;
		}
		.fv-btnb .__img {
			width: 28rem;
		}
		.fv-btn span {
			position: absolute;
				z-index: 10;
				top: 50%;
				translate: 0 -50%;
			/*padding: 0 1rem;*/
			font-size: 2rem;
			font-weight: 700;
			letter-spacing: 0.06em;
		}
			.fv-btna span {
					left: 1.4rem;
				color: #000;
				border: 1rem solid #fff;
				background: #fff;
			}
			.fv-btnb span {
					left: 7rem;
				color: #fff;
				border: 1rem solid #000;
				background: #000;
			}



/*--------------------
sect-std-studio*/

.sect-std-studio {
	padding: 11rem 0 9rem;
	background: #f0eee6;
}
	.sect-std-studio .container {
		width: 100%;
		margin: 0 auto;
		max-width: 1080px;
	}

.section-header {
	margin-bottom: 6rem;
	color: #2e323c;
	font-weight: 700;
	text-align: center;
}
	.section-eyebrow {
		font-size: 4rem;
		letter-spacing: 0.06em;
		line-height: 1;
	}
	.section-title {
		margin-top: 0.6rem;
		font-size: 2.3rem;
		line-height: 1.3;
	}



.std-card {
	margin-bottom: 4rem;
	background: #fff;
}
	.std-card:last-of-type {
		border-bottom: none;
		margin-bottom: 3rem;
	}

.std-card-body {
	display: flex;
		justify-content: space-between;
}
	.std-card-photo {
		width: 33.3%;
	}
		.std-card-photo .__img {
			width: 100%;
			height: auto;
		}
	.std-card-right {
		display: flex;
			flex-direction: column;
		width: 62.9%;
		margin-right: 1.85%;
	}

.std-card-head {
	display: flex;
		align-items: flex-end;
		gap: 1.2rem;
	height: 7rem;
	margin-bottom: 2.5rem;
	padding: 0 1rem;
	padding-bottom: 0.8rem;
	color: #333;
	font-weight: 700;
	border-bottom: 1px solid #333;
}
	.std-card-letter {
		font-size: 4rem;
		line-height: 1;
	}
	.std-card-info {
		flex: 1;
		padding-top: 0.3rem;
	}
		.std-card-name {
			font-size: 2.3rem;
			font-weight: 700;
			line-height: 1.3;
		}
	.std-card-capacity {
		display: flex;
			flex-shrink: 0;
			align-items: center;
			gap: 1.5rem;
		padding-top: 0.5rem;
	}
		.std-card-capacity .__img {
			width: 2rem;
			height: auto;
		}
		.std-card-capacity p {
			font-size: 2rem;
			white-space: nowrap;
		}

.std-card-detail-wrap {
	display: flex;
		justify-content: space-between;
}
	.std-card-detail {
		padding-left: 1rem;
	}
	.std-card-desc {
		margin-bottom: 2.5rem;
		color: #666;
		font-size: 1.7rem;
		font-weight: 500;
		line-height: 1.4;
		white-space: nowrap;
	}
	.std-card-spec {
		margin-bottom: 2.5rem;
		color: #333;
		font-size: 1.7rem;
		font-weight: 700;
		line-height: 1.6;
		white-space: nowrap;
	}
	.std-card-btn {
		display: flex;
			justify-content: space-between;
			align-items: center;
		width: 16rem;
		height: 4rem;
		padding: 0 1rem 0 2.5rem;
		color: #fff;
		font-size: 1.7rem;
		font-weight: 500;
		text-decoration: none;
		background: #9aa58f;
		transition: opacity 0.2s;
	}
				.std-card-btn:after {
					content: "";
					display: block;
					width: 2.1rem;
					height: 2.1rem;
					background: url("../img/marugoto/arr.png") no-repeat center center;
					background-size: 100%;
				}
					.std-card-btn:hover {
						opacity: 0.6;
					}

.std-card-plan {
	width: 34rem;
	margin-right: -2rem;
}
	.std-card-plan .__img {
		width: 100%;
		height: auto;
	}

.std-capacity-total {
	color: #333;
	font-size: 2.7rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
	letter-spacing: 0.06em;
}
	.std-capacity-total strong {
		font-size: 150%;
	}
.std-note {
	margin-top: 1rem;
	color: #333;
	font-size: 1.4rem;
	text-align: center;
}



/*--------------------
sect-prc-price*/

.sect-prc-price {
	padding: 11rem 0 3rem 0;
	background: #fff;
}
	.sect-prc-price .container {
		max-width: 1080px;
		margin: 0 auto;
	}

.prc-icons {
	position: relative;
	display: flex;
		justify-content: center;
		gap: 3rem;
	width: 84rem;
	min-height: 8rem;
	margin: 0 auto;
	margin-bottom: 5rem;
	border: 1px solid #ddd;
}
			.prc-icons:before,
			.prc-icons:after {
				content: "";
			}
				.prc-icons:before {
					position: absolute;
						z-index: 10;
						top: -1px;
						bottom: -1px;
						right: 1rem;
						left: 1rem;
					display: block;
					background: #fff;
				}
				.prc-icons:after {
					position: absolute;
						z-index: 10;
						top: 50%;
						left: 50%;
						translate: 0 -50%;
					width: 1px;
					height: 6rem;
					background: #ddd;
				}
	.prc-icon-box {
		position: relative;
			z-index: 11;
		display: flex;
			align-items: center;
			gap: 2rem;
		padding: 0 3rem;
	}
		.prc-icon-box .__img {
			width: 8rem;
			height: auto;
		}
		.prc-icon-box p {
			color: #333;
			font-size: 2rem;
			font-weight: 700;
			line-height: 1.6;
		}

.prc-tables {
	display: flex;
		justify-content: space-between;
		gap: 4rem;
	margin-bottom: 3rem;
}
	.prc-table-block {
		flex: 1;
	}
	.prc-table-heading {
		margin-bottom: 2.5rem;
		color: #1a1a1a;
		font-size: 2rem;
		font-weight: 500;
	}
		.prc-table-heading strong {
			font-size: 2.2rem;
			font-weight: 700;
		}

.prc-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1.6rem;
	text-align: center;
}
	.prc-table th {
		padding: 1.2rem 1rem;
		color: #fff;
		font-weight: 700;
		font-size: 1.6rem;
		line-height: 1.25;
		border-left: 1px solid #fff;
		background: #2e323c;
	}
				.prc-table-block--holiday .prc-table th {
					background: #9aa58f;
				}
	.prc-table td {
		padding: 1.1rem 1rem;
		color: #333;
		font-size: 1.8rem;
		line-height: 1.5;
		vertical-align: middle;
		border: 1px solid #808080;
		border-right: 0;
		border-left: 0;
	}
				.prc-table-block--holiday .prc-table td {
					padding-top: 2.7rem;
					padding-bottom: 2.7rem;
				}
		.prc-table tbody tr:nth-child(even) {
		}
		.prc-table .prc-strike {
			color: #666;
			font-size: 2rem;
			text-decoration: line-through;
			border: 1px solid #808080;
		}
		.prc-table .prc-bold {
			font-size: 2rem;
			font-weight: 700;
		}
		.prc-table .prc-sub {
			display: block;
			margin-top: 0.6rem;
			color: #333;
			font-size: 1.1rem;
			letter-spacing: -0.02em;
			line-height: 1.4;
		}

ul.prc-notes {
	margin-top: 2.5rem;
	margin-bottom: 3rem;
	padding: 0;
	list-style: none;
}
	.prc-notes li {
		color: #333;
		font-size: 1.4rem;
		letter-spacing: -0.02em;
		line-height: 1.8;
	}
		.prc-notes li a {
			color: currentColor;
		}

.prc-includes {
	padding: 1rem 3rem;
	background: #e6e6e6;
}
	.prc-includes p {
		width: 68rem;
		margin: 0 auto;
		color: #333;
		font-size: 1.6rem;
		font-weight: 700;
		letter-spacing: -0.02em;
		line-height: 1.6;
	}
		.prc-includes strong {
		}



/*--------------------
sect-cal-calendar*/

.sect-cal-calendar {
	padding: 11rem 0 0;
	display: flex;
		flex-direction: column;
		align-items: center;
	overflow: hidden;
}
	.sect-cal-calendar .container {
		max-width: 1080px;
		margin: 0 auto;
	}
	.sect-cal-calendar picture {
		display: flex;
			justify-content: center;
		width: 100%;
	}
	.sect-cal-calendar .__img {
		width: 188rem;
		height: auto;
		max-width: none;
	}

.cal-lead {
	margin-top: -2rem;
	margin-bottom: 3.5rem;
	color: #333;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
}

.cal-notes {
	width: 89rem;
	margin: 0 auto;
	padding: 2rem 0 4rem;
}
	.cal-notes p {
		color: #333;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.57;
	}



/*--------------------
sect-rsv-reserve*/

.sect-rsv-reserve {
	padding: 11rem 0 4rem 0;
	display: flex;
		flex-direction: column;
		align-items: center;
	overflow: hidden;
}
	.sect-rsv-reserve .container {
		max-width: 1080px;
		margin: 0 auto;
	}
	.sect-rsv-reserve picture {
		display: flex;
			justify-content: center;
		width: 100%;
	}
	.sect-rsv-reserve .__img {
		width: 188rem;
		height: auto;
		max-width: none;
	}

.rsv-customer {
	width: 85.4rem;
	margin: 0 auto;
}
	.rsv-customer-wrap {
		display: flex;
			gap: 1.5rem;
		width: 55rem;
		margin: 0 auto 0 1rem;
		padding-top: 1.6rem;
		border-top: 2px solid #333;
	}
	.rsv-customer-head {
		display: flex;
			flex-shrink: 0;
			align-items: flex-start;
			gap: 1.5rem;
	}
		.rsv-customer-title {
			color: #333;
			font-size: 1.5rem;
			font-weight: 700;
		}
		.rsv-required {
			display: inline-block;
			padding: 0.2rem 0.4rem;
			color: #c1272d;
			font-size: 1.2rem;
			font-weight: 700;
			background: #fff;
			border: 1px solid #c1272d;
			border-radius: 3px;
		}

.rsv-customer-body {
	width: 41rem;
}

.rsv-box-heading {
	padding: 1rem 2rem;
	color: #333;
	font-size: 1.5rem;
	font-weight: 700;
	background: #f0eee6;
}
.rsv-box-inner {
	padding: 1.3rem 2rem 1.7rem 2rem;
}

.rsv-login-box {
	margin-bottom: 2rem;
	border: 1px solid #333;
	border-radius: 0.5rem;
	overflow: hidden;
}
.rsv-register-box {
	border: 1px solid #333;
	border-radius: 0.5rem;
	overflow: hidden;
}

.rsv-field {
	position: relative;
	margin-bottom: 1rem;
	background: #f5f5f5;
}
	input.rsv-input,
	input.rsv-input[type="text"],
	input.rsv-input[type="email"],
	input.rsv-input[type="tel"],
	input.rsv-input[type="password"] {
		width: 100%;
		padding: 1rem 1.2rem;
		font-size: 1.5rem;
		border: none;
		border-radius: 0;
		background: transparent;
		background: #f5f5f5;
		outline: none;
	}
		.rsv-input::placeholder {
			color: #999;
		}
	.rsv-field--pw {
	}
		.rsv-pw-toggle {
			position: absolute;
				right: 1rem;
				top: 50%;
				translate: 0 -50%;
			cursor: pointer;
			border: none;
			background: none;
			color: #999;
			font-size: 1.4rem;
		}

.rsv-login-actions {
	display: flex;
		align-items: center;
		gap: 2rem;
	margin-top: 1.5rem;
}
	.rsv-login-btn {
		cursor: pointer;
		padding: 1rem 3.5rem;
		color: #fff;
		font-size: 1.3rem;
		font-weight: 700;
		border: none;
		background: #2e323c;
		transition: opacity 0.2s;
	}
		.rsv-login-btn:hover {
			opacity: 0.7;
		}
	.rsv-forgot {
		color: #333;
		font-size: 1.1rem;
	}
				.rsv-forgot:hover {
					text-decoration: none;
				}

.rsv-mailmag {
	display: flex;
		align-items: center;
		gap: 1rem;
	margin: 1.5rem 0;
	font-size: 1.4rem;
	color: #333;
}
	.rsv-mailmag-label {
		font-weight: 500;
	}
	.rsv-radio {
		display: inline-flex;
			align-items: center;
			gap: 0.3rem;
		cursor: pointer;
	}
		.rsv-radio input[type="radio"] {
			-webkit-appearance: none;
			-moz-appearance: none;
			appearance: none;
			width: 1.4rem;
			height: 1.4rem;
			margin: 0;
			border: 1px solid #333;
			border-radius: 50%;
			background: transparent;
			cursor: pointer;
		}
			.rsv-radio input[type="radio"]:checked {
				border-color: #333;
				background: radial-gradient(circle, #333 40%, transparent 45%);
			}

.rsv-sns-row {
	display: flex;
		align-items: center;
		gap: 1rem;
	margin-bottom: 0.8rem;
}
	.rsv-sns-name {
		width: 8rem;
		color: #333;
		font-size: 1.4rem;
		font-weight: 500;
	}
	.rsv-sns-optional {
		display: inline-block;
		padding: 0.1rem 0.6rem;
		color: #666;
		font-size: 1.1rem;
		border: 1px solid #999;
		border-radius: 3px;
	}
	/* 会員登録：メールアドレス認証(認証コード方式) */
	.rsv-field--mailauth,
	.rsv-field--code {
		display: flex;
			align-items: stretch;
	}
		.rsv-field--mailauth input.rsv-input,
		.rsv-field--code input.rsv-input {
			flex: 1;
			min-width: 0;
		}
		input.rsv-input[readonly] {
			color: #666;
		}
		.rsv-mailauth-btn {
			flex-shrink: 0;
			cursor: pointer;
			padding: 0 1.6rem;
			color: #fff;
			font-size: 1.3rem;
			font-weight: 700;
			white-space: nowrap;
			border: none;
			background: #2e323c;
			transition: opacity 0.2s;
		}
			.rsv-mailauth-btn:hover {
				opacity: 0.7;
			}
			.rsv-mailauth-btn:disabled {
				cursor: default;
				opacity: 0.5;
			}
	.rsv-mailauth-code {
		margin-bottom: 1rem;
		padding: 1.2rem;
		border: 1px dashed #999;
	}
		.rsv-mailauth-code .rsv-field {
			margin-bottom: 0.8rem;
		}
		.rsv-mailauth-lead {
			margin-bottom: 0.8rem;
			font-size: 1.3rem;
			font-weight: 700;
		}
		.rsv-mailauth-note {
			color: #666;
			font-size: 1.1rem;
			line-height: 1.6;
		}
			.rsv-mailauth-note a {
				text-decoration: underline;
			}
	.rsv-mailauth-done {
		margin-bottom: 1rem;
		color: #2a7d2e;
		font-size: 1.3rem;
		font-weight: 700;
	}
		.rsv-mailauth-check {
			margin-right: 0.4rem;
		}
		.rsv-mailauth-done a {
			margin-left: 1rem;
			color: #333;
			font-size: 1.1rem;
			font-weight: 400;
			text-decoration: underline;
		}
	.mg-login-error.is-ok {
		color: #2a7d2e;
	}

	.rsv-input--sns {
		flex: 1;
	}

.rsv-customer-note {
	width: 37rem;
	margin: 0 auto;
	padding-bottom: 3rem;
	color: #333;
	font-size: 1.1rem;
	line-height: 2;
}



/*--------------------
sect-acs-access*/

.sect-acs-access {
	padding: 11rem 0 4rem 0;
	display: flex;
		flex-direction: column;
		align-items: center;
	overflow: hidden;
}
	.sect-acs-access .container {
		max-width: 1080px;
		margin: 0 auto;
	}
	.sect-acs-access picture {
		display: flex;
			justify-content: center;
		width: 100%;
	}
	.sect-acs-access .__img {
		width: 188rem;
		height: auto;
		max-width: none;
	}



/*--------------------
sect-faq-faq*/

.sect-faq-faq {
	padding: 11rem 0 0;
	display: flex;
		flex-direction: column;
		align-items: center;
	overflow: hidden;
}
	.sect-faq-faq .container {
		max-width: 1080px;
		margin: 0 auto;
	}
	.sect-faq-faq picture {
		display: flex;
			justify-content: center;
		width: 100%;
	}
	.sect-faq-faq .__img {
		width: 188rem;
		height: auto;
		max-width: none;
	}



/*--------------------
footer*/
/* フッターはサイト共通(footer.php+style.css)を使用するため、仮フッター用スタイルは削除 */



/*--------------------
float-nav*/

.float-nav {
	position: fixed;
		z-index: 99;
		bottom: 0;
		left: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
	.float-nav-inner {
		position: relative;
	}
		.float-nav-inner > .__img {
			width: 100%;
			height: auto;
			display: block;
		}
	.float-nav-links {
		position: absolute;
			top: 0;
			left: 0;
		width: 100%;
		height: 100%;
		display: flex;
	}
		.float-nav-item {
			flex: 1;
			display: block;
		}