@charset "UTF-8";
@-webkit-keyframes daruma {
	0% {
		-webkit-transform: rotate(-20deg);
		transform: rotate(-20deg);
	}
	10% {
		-webkit-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	20% {
		-webkit-transform: rotate(-20deg);
		transform: rotate(-20deg);
	}
	30% {
		-webkit-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	40% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	90% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(-20deg);
		transform: rotate(-20deg);
	}
}
@keyframes daruma {
	0% {
		-webkit-transform: rotate(-20deg);
		transform: rotate(-20deg);
	}
	10% {
		-webkit-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	20% {
		-webkit-transform: rotate(-20deg);
		transform: rotate(-20deg);
	}
	30% {
		-webkit-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	40% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	90% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(-20deg);
		transform: rotate(-20deg);
	}
}

#map-grayscale {
    height: 300px;
    width: 100%;
    filter: grayscale(100%);//白黒に変換
}

.gFooter {
	padding-bottom: 100px;
	line-height: 1.8;
}
.gFooter_inner {}
.gFooter_title {
	max-width: 169px;
	margin: 0 auto 0;
}
.gFooter_title > a {
	display: block;
	color: inherit;
	color: #BABAB7;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gFooter_title_img {
	display: block;
	fill: currentColor;
	width: 75px;
	height: 75px;
	margin: 0 auto;
}
.gFooter_snsList {
	list-style: none;
	border-top: 1px solid #707070;
	max-width: 262px;
	display: flex;
	justify-content: center;
	margin: 31px auto 0;
	padding-top: 21px;
}
.gFooter_haedline + .gFooter_snsList {
	border-top: none;
	padding-top: 0;
}
.gFooter_snsList > li {}
.gFooter_snsList > li:first-child {}
.gFooter_snsList > li:last-child {}
.gFooter_snsList > li:nth-child(2n+1) {}
.gFooter_snsList > li:nth-child(n+3) {}
.gFooter_snsList > li > a {
	display: flex;
	text-decoration: none;
	color: inherit;
	font-size: 29px;
	color: #BABAB7;
	height: 60px;
	align-items: center;
	padding: 0 9px;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gFooter_snsList > li > a::before {
	content: "";
}
.gFooter_snsList > li > a::after {
	content: "";
}
.gFooter_snsList > li > a > .icon {
	display: block;
}
.gFooter_snsList > li > a > .icon-daruma {
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-name: daruma;
	animation-name: daruma;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-fill-mode: backwards;
	animation-fill-mode: backwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps(3);
	animation-timing-function: steps(3);
}
.gFooter_copyright {
	color: #BABAB7;
	text-align: center;
	letter-spacing: 0.05em;
}
.gFooter_copyright > small {
	display: block;
	font-size: 14px;
}
.gMenuBtn {
	display: block;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	border: 1px solid currentColor;
	border-radius: 50%;
	position: fixed;
	z-index: 1002;
	top: 55px;
	right: 55px;
	color: #fff;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gMenuBtn::before {
	content: "";
}
.gMenuBtn::after {
	content: "";
}
.gMenuBtn_bar {
	display: block;
	width: 16px;
	height: 2px;
	background-color: currentColor;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	top: 0;
	transition-duration: .3s;
	transition-property: top, -webkit-transform;
	transition-property: transform, top;
	transition-property: transform, top, -webkit-transform;
}
.gMenuBtn_bar-no1 {}
.gMenuBtn_bar-no2 {
	margin: 3px auto 0;
}
.gFixLink {
	position: fixed;
	z-index: 1002;
	width: 40px;
	top: 55px;
	right: 107px;
}
.gFixLink > a {
	display: flex;
	text-decoration: none;
	color: inherit;
	height: 40px;
	border-radius: 50%;
	background-color: #A0994A;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	font-size: 18px;
	color: #fff;
	border: 1px solid #A0994A;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gFixLink > a::before {
	content: "";
}
.gFixLink > a::after {
	content: "";
}
.gFixLink > a > .icon {
	display: block;
}
.gHeader {
	position: fixed;
	z-index: 1002;
	top: 38px;
	left: 0;
	transition-duration: .3s;
	transition-property: top;
}
.gHeader.isFixed {
	top: 48px;
}
.gHeader_inner {
	max-width: none;
	padding-left: 57px;
	padding-right: 0;
}
.gHeader_title {
	width: 169px;
}
.gHeader_title-home {
	opacity: 0;
	pointer-events: none;
	transition-delay: .2s;
	transition-duration: .3s;
	transition-property: opacity;
}
.isFixed .gHeader_title-home {
	opacity: 1;
	pointer-events: auto;
}
.gHeader_title > a {
	display: block;
	text-decoration: none;
	color: #BABAB7;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.isFixed .gHeader_title > a {}
.gHeader_title > a::before {
	content: "";
}
.gHeader_title > a::after {
	content: "";
}
.gHeader_title_img {
	display: block;
	width: 75px;
	fill: currentColor;
	height: 75px;
	margin: 0 auto;
	transition-duration: 0.5s;
	transition-property: width, height, left, -webkit-transform;
	transition-property: transform, width, height, left;
	transition-property: transform, width, height, left, -webkit-transform;
	left: 0;
	position: relative;
	z-index: 1;
}
.gHeader_title_img-home {
	width: 55px;
	height: 55px;
}
.isFixed .gHeader_title_img {
	width: 55px;
	height: 55px;
}
.gLangNav {
	position: fixed;
	z-index: 1000;
	top: 55px;
	right: 183px;
}
.gLangNav_btn {
	display: block;
	color: #FFFFFF;
	font-size: 17px;
	height: 40px;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gLangNav_btn::before {
	content: "";
}
.gLangNav_btn::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border: 1px solid currentColor;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-left: none;
	border-top: none;
	margin-left: 8px;
	position: relative;
	z-index: 1;
	top: -1px;
}
.gLangNav_list {
	list-style: none;
	background-color: rgba(0, 0, 0, 0.70);
	width: 133px;
	padding: 8px 0;
	position: absolute;
	z-index: 1;
	top: 100%;
	left: 50%;
	margin-top: 0;
	font-size: 14px;
	-webkit-transform: translateX(-50%) scale(1, 0);
	transform: translateX(-50%) scale(1, 0);
	-webkit-transform-origin: center top;
	transform-origin: center top;
	opacity: 0;
	transition-property: opacity, transform, -webkit-transform;
	transition-duration: .5s, 0s, 0s;
	transition-delay: 0s, .5s, .5s;
	pointer-events: none;
}
.gLangNav_list.isShow {
	-webkit-transform: translateX(-50%) scale(1);
	transform: translateX(-50%) scale(1);
	opacity: 1;
	transition-delay: 0s, 0s, 0s;
	pointer-events: auto;
}
.gLangNav_list > li {}
.gLangNav_list > li:first-child {}
.gLangNav_list > li:last-child {}
.gLangNav_list > li:nth-child(2n+1) {}
.gLangNav_list > li:nth-child(n+3) {}
.gLangNav_list > li > a {
	display: flex;
	text-decoration: none;
	color: #FFFFFF;
	justify-content: center;
	line-height: 1;
	height: 40px;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gLangNav_list > li > a::before {
	content: "";
}
.gLangNav_list > li > a::after {
	content: "";
}
.gBody {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding-bottom: 90px;
}
.gBody-home {
	padding-bottom: 142px;
}
.gBody-noVis {
	padding-top: 238px;
}
.gBody-noVisPtL {
	padding-top: 300px;
}
.gVisual {
	background-image: url(../img/common/pt-main-looking.jpg);
	padding: 20px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #949494;
	margin-bottom: 90px;
}
.gVisual-about {
	background-image: url(../img/common/pt-main-about.jpg);
	background-color: #623e30;
	margin-bottom: 175px;
}
.gVisual-service {
	background-image: url(../img/common/pt-main-service.jpg);
	background-color: #39363b;
}
.gVisual-make {
	background-image: url(../img/common/pt-main-make.jpg);
	background-color: #6e5645;
	margin-bottom: 136px;
}
.gVisual-trivia {
	background-image: url(../img/common/pt-main-trivia.jpg);
	background-color: #3f3a36;
}
.gVisual_inner {
	display: flex;
	align-items: center;
	justify-content: center;
}
.gVisual_inner::before {
	content: "";
	display: block;
	width: 1px;
	height: 830px;
}
.gVisual_title {
	margin-bottom: 0;
	letter-spacing: 0.2em;
	text-indent: 0.2em;
}
.gBody_inner {}
.gFixContact {
	position: fixed;
	z-index: 999;
	top: 50%;
	right: 36px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.gFixContact > a {
	display: flex;
	text-decoration: none;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
	transition-duration: .3s;
	transition-property: background-color, color;
	color: #A0994A;
}
.gFixContact > a > b {
	display: block;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	margin: 18px 0;
	font-size: 16px;
	font-weight: normal;
	letter-spacing: 0.35em;
	line-height: 1;
}
[lang="en"] .gFixContact > a > b {
	letter-spacing: 0.15em;
}
.gFixContact > a::before {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	background-color: currentColor;
}
.gFixContact > a::after {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	background-color: currentColor;
}
.gNav {
	position: fixed;
	z-index: 1001;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #141414;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transform-origin: center top;
	transform-origin: center top;
	opacity: 0;
	transition-property: opacity, transform, -webkit-transform;
	transition-duration: .5s, 0s, 0s;
	transition-delay: 0s, .5s, .5s;
	pointer-events: none;
	box-sizing: border-box;
	padding-top: 0px;
}
.gNav.isShow {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	transition-delay: 0s, 0s, 0s;
	pointer-events: auto;
}
.gNav_inner {
	max-height: 100vh;
	overflow: auto;
	box-sizing: border-box;
	padding-top: 50px;
	padding-bottom: 50px;
	width: 100%;
	display: flex;
	justify-content: center;
}
.gNav_cols {
	display: flex;
}
.gNav_col {}
.gNav_col-no1 {
	margin-right: 110px;
}
.gNav_list {
	list-style: none;
}
.gNav_list > li {}
.gNav_list > li:first-child {}
.gNav_list > li:last-child {}
.gNav_list > li:nth-child(2n+1) {}
.gNav_list > li:nth-child(n+3) {}
.gNav_list > li > a {
	display: flex;
	text-decoration: none;
	color: #EAE4DC;
	height: 60px;
	align-items: center;
	line-height: 1.2;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gNav_list > li > a > .icon {
	display: block;
	margin-left: 0.5em;
	font-size: 13px;
}
.gNav_list > li > a::before {
	content: "";
}
.gNav_list > li > a::after {
	content: "";
}
.gNav_col-no2 {}
.gHeader_title_text {
	display: block;
	fill: currentColor;
	width: 169px;
	height: 61px;
	margin-top: 17px;
	transition-duration: .3s;
	transition-property: opacity;
}
.gHeader_title_text-home {
	display: none;
}
.isFixed .gHeader_title_text {
	opacity: 0;
}
.gFooter_title_text {
	display: block;
	fill: currentColor;
	width: 169px;
	height: 61px;
	margin-top: 17px;
}
.isShow .gMenuBtn_bar-no1 {
	top: 2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.isShow .gMenuBtn_bar-no2 {
	top: -3px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.gCursor {
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	color: #A0994A;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	transition-duration: 0.1s, 0.1s, 1s;
	transition-delay: 0s, 0s, 0.2s;
	transition-property: left, top, opacity;
	pointer-events: none;
	opacity: 0;
}
.isIE11 .gCursor {
	transition: none;
}
.gCursor.isShow {
	opacity: 1;
}
.gCursor::before {
	content: "";
	width: 136px;
	height: 136px;
	background-color: rgba(160, 153, 74, 0.21);
	display: block;
	position: absolute;
	z-index: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity, -webkit-transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;
}
.gCursor[data-status]::before {
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}
.gCursor_dot {
	position: relative;
	z-index: 1;
	width: 14px;
	height: 14px;
	background-color: currentColor;
	border-radius: 50%;
}
.gCursor_dot > svg {
	display: block;
	width: 19px;
	height: 19px;
	fill: currentColor;
}
.gFooter_haedline {
	font-size: inherit;
	text-align: center;
	margin-top: 51px;
	line-height: 2;
	margin-bottom: 100px;
}
.gLoading {
	position: fixed;
	z-index: 20000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #202020;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transform-origin: center top;
	transform-origin: center top;
	opacity: 0;
	transition-property: opacity, transform, -webkit-transform;
	transition-duration: 1s, 0s, 0s;
	transition-delay: 0s, 1s, 1s;
	pointer-events: none;
}
.gLoading.isShow {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	transition-delay: 0s, 0s, 0s;
	pointer-events: auto;
}
.gLoading_svg {
	display: block;
	stroke: #fff;
	fill: none;
	fill-rule: evenodd;
	stroke-width: 2;
	width: 44px;
	height: 44px;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.gFooter_link {
	max-width: 500px;
	margin: 0 auto 60px;
}
.gFooter_link > a {}
.gFooter_link > a::before {
	content: "";
}
.gFooter_link > a::after {
	content: "";
}
.gFixLink-tel {
	right: 159px;
}
.gFixLink-tel > a {
	background-color: #C4C2BD;
	color: #202020;
	border-color: #C4C2BD;
	pointer-events: auto;
}
.gFixLink-tel > a > .icon {}
.gLangNav-hasTel {
	right: 223px;
}
.gFixSide {
	position: fixed;
	z-index: 1000;
	top: 50%;
	right: 0;
	background-color: #666666;
	color: #ffff;
	padding-left: 11px;
	padding-right: 15px;
	padding-bottom: 15px;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 6px;
	padding-top: 46px;
	transform: translateY(-50%);
}
.gFixSide_catch {
	width: 54px;
	height: 54px;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	font-size: 12px;
	color: #000000;
	line-height: 1.33;
	font-weight: 600;
	align-items: center;
	justify-content: center;
	display: flex;
	border-radius: 50%;
}
.gFixSide_cols {
	display: flex;
	flex-direction: row-reverse;
}
.gFixSide_col {}
.gFixSide_col-no1 {
	margin-left: 9px;
}
.gFixSide_text {
	font-size: 10px;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	line-height: 1;
}
.gFixSide_col-no2 {}
.gFixSide_telLink {
	width: 39px;
	margin-bottom: 6px;
}
.gFixSide_telLink > a {
	text-decoration: none;
	color: inherit;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	line-height: 1;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #fff;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	height: 127px;
	box-sizing: border-box;
	pointer-events: auto;
}
.gFixSide_telLink > a::before {
	content: "";
}
.gFixSide_telLink > a::after {
	content: "";
}
.gFixSide_telLink_thanks {
	display: none;
}
.gFixSide_telLink_text {
	display: flex;
	align-items: center;
}
.gFixSide_telLink_text > .icon {
	display: block;
	margin-bottom: 4px;
}
.gFixSide_link {
	width: 39px;
}
.gFixSide_link > a {
	text-decoration: none;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	background-color: #AC4F36;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	height: 122px;
	border-radius: 2px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #AC4F36;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	white-space: nowrap;
}
.gFixSide_link > a::before {
	content: "";
}
.gFixSide_link > a::after {
	content: "";
}
@media (hover: none) {
	.gCursor {
		display: none;
	}
}
@media screen and (max-width:1399px) {
	.gFixContact {
		right: 0;
	}
	.gFixContact > a {
		padding: 0 15px;
	}
}
@media screen and (min-width:1000px) {
	.gFixSide_telLink > a:hover {}
	.gFixSide_link > a:hover {
		color: #fff;
		background-color: rgba(255, 255, 255, 0);
		border-color: #fff;
	}
	.gFooter_link > a:hover {}
	.gNav_list > li > a:hover {
		color: #fff;
	}
	.gFooter_title > a:hover {
		color: #EEE8E2;
	}
	.gFooter_snsList > li > a:hover {
		color: #EEE8E2;
	}
	.gMenuBtn:hover {
		color: #BABAB7;
	}
	.gFixLink > a:hover {
		background-color: rgba(255, 255, 255, 0);
		color: #A0994A;
	}
	.gHeader_title > a:hover {
		color: #EEE8E2;
	}
	.gLangNav_btn:hover {
		color: #BABAB7;
	}
	.gLangNav_list > li > a:hover {
		color: #BABAB7;
	}
	.gFixContact > a:hover {
		color: #EEE8E2;
	}
}
@media screen and (max-width: 999px) {
	.gFooter {}
	.gFooter_inner {}
	.gFooter_title {}
	.gFooter_title > a {}
	.gFooter_title_img {}
	.gFooter_snsList {}
	.gFooter_snsList > li {}
	.gFooter_snsList > li:first-child {}
	.gFooter_snsList > li:last-child {}
	.gFooter_snsList > li:nth-child(2n+1) {}
	.gFooter_snsList > li:nth-child(n+3) {}
	.gFooter_snsList > li > a {}
	.gFooter_snsList > li > a::before {}
	.gFooter_snsList > li > a::after {}
	.gFooter_snsList > li > a > .icon {}
	.gFooter_copyright {}
	.gFooter_copyright > small {}
	.gMenuBtn {
		top: 25px;
		right: 25px;
	}
	.gMenuBtn::before {}
	.gMenuBtn::after {}
	.gMenuBtn_bar {}
	.gMenuBtn_bar-no1 {}
	.gMenuBtn_bar-no2 {}
	.gFixLink {
		top: 25px;
		right: 79px;
	}
	.gFixLink-tel {
		right: 133px;
	}
	.gFixLink > a {}
	.gFixLink > a::before {}
	.gFixLink > a::after {}
	.gFixLink > a > .icon {}
	.gHeader {
		top: 25px;
	}
	.gHeader.isFixed {
		top: 25px;
	}
	.gHeader_inner {
		padding: 0 25px;
	}
	.gHeader_title {
		width: 124px;
	}
	.gHeader_title-home {
		width: 55px;
	}
	.gHeader_title > a {}
	.gHeader_title > a::before {}
	.gHeader_title > a::after {}
	.gHeader_title_img {
		width: 55px;
		height: 55px;
	}
	.gLangNav {
		top: 25px;
		right: 165px;
	}
	.gLangNav-hasTel {
		right: 200px;
	}
	.gLangNav_btn {}
	.gLangNav_btn::before {}
	.gLangNav_btn::after {}
	.gLangNav_list {}
	.gLangNav_list > li {}
	.gLangNav_list > li:first-child {}
	.gLangNav_list > li:last-child {}
	.gLangNav_list > li:nth-child(2n+1) {}
	.gLangNav_list > li:nth-child(n+3) {}
	.gLangNav_list > li > a {}
	.gLangNav_list > li > a::before {}
	.gLangNav_list > li > a::after {}
	.gBody {}
	.gBody-noVis {
		padding-top: 180px;
	}
	.gBody-noVisPtL {
		padding-top: 210px;
	}
	.gVisual {
		margin-bottom: 70px;
	}
	.gVisual-about {
		margin-bottom: 90px;
	}
	.gVisual-service {}
	.gVisual-make {}
	.gVisual-trivia {}
	.gVisual_inner {}
	.gVisual_inner::before {
		height: 664px;
	}
	.gVisual_title {}
	.gBody_inner {}
	.gFixContact {
		display: none;
	}
	.gFixContact > a {}
	.gFixContact > a > b {}
	.gFixContact > a::before {}
	.gFixContact > a::after {}
	.gNav {}
	.gNav.isShow {}
	.gNav_inner {}
	.gNav_cols {}
	.gNav_col {}
	.gNav_col-no1 {
		margin-right: 80px;
	}
	.gNav_list {}
	.gNav_list > li {}
	.gNav_list > li:first-child {}
	.gNav_list > li:last-child {}
	.gNav_list > li:nth-child(2n+1) {}
	.gNav_list > li:nth-child(n+3) {}
	.gNav_list > li > a {
		height: 50px;
	}
	.gNav_list > li > a::before {}
	.gNav_list > li > a::after {}
	.gNav_col-no2 {}
	.gHeader_title_text {
		width: 124px;
		height: 45px;
		margin-top: 12px;
	}
	.isFixed .gHeader_title_text {}
	.gFooter_title_text {}
	.isShow .gMenuBtn_bar-no1 {}
	.isShow .gMenuBtn_bar-no2 {}
	.gCursor {
		display: none;
	}
	.gCursor::before {}
	.gCursor[data-status]::before {}
	.gCursor_dot {}
	.gCursor_dot > svg {}
	.gFooter_haedline {
		margin-top: 35px;
		margin-bottom: 60px;
	}
	.gFooter_link {}
	.gFooter_link > a {}
	.gFooter_link > a::before {}
	.gFooter_link > a::after {}
	.gFixSide {}
	.gFixSide_catch {}
	.gFixSide_cols {}
	.gFixSide_col {}
	.gFixSide_col-no1 {}
	.gFixSide_text {}
	.gFixSide_col-no2 {}
	.gFixSide_telLink {}
	.gFixSide_telLink > a {}
	.gFixSide_telLink > a::before {}
	.gFixSide_telLink > a::after {}
	.gFixSide_telLink_thanks {}
	.gFixSide_telLink_text {}
	.gFixSide_telLink_text > .icon {}
	.gFixSide_link {}
	.gFixSide_link > a {}
	.gFixSide_link > a::before {}
	.gFixSide_link > a::after {}
}
@media screen and (max-width: 767px) {
	.gFooter {}
	.gFooter_inner {}
	.gFooter_title {
		max-width: 142px;
	}
	.gFooter_title > a {}
	.gFooter_title_img {
		width: 62px;
		height: 62px;
	}
	.gFooter_snsList {}
	.gFooter_snsList > li {}
	.gFooter_snsList > li:first-child {}
	.gFooter_snsList > li:last-child {}
	.gFooter_snsList > li:nth-child(2n+1) {}
	.gFooter_snsList > li:nth-child(n+3) {}
	.gFooter_snsList > li > a {}
	.gFooter_snsList > li > a::before {}
	.gFooter_snsList > li > a::after {}
	.gFooter_snsList > li > a > .icon {}
	.gFooter_copyright {}
	.gFooter_copyright > small {}
	.gMenuBtn {
		right: 20px;
		width: 47px;
		height: 47px;
	}
	.gMenuBtn::before {}
	.gMenuBtn::after {}
	.gMenuBtn_bar {}
	.gMenuBtn_bar-no1 {}
	.gMenuBtn_bar-no2 {}
	.gFixLink {
		right: 76px;
		width: 47px;
	}
	.gFixLink-tel {
		display: none;
	}
	.gFixLink > a {
		height: 47px;
	}
	.gFixLink > a::before {}
	.gFixLink > a::after {}
	.gFixLink > a > .icon {}
	.gHeader {}
	.gHeader_inner {
		padding: 0 20px;
	}
	.gHeader_title {
		width: 247px;
	}
	.gHeader_title > a {}
	.gHeader_title > a::before {}
	.gHeader_title > a::after {}
	.gHeader_title_img {
		width: 247px;
		height: 47px;
	}
	.isFixed .gHeader_title_img {
		width: 247px;
	}
	.gLangNav {
		right: 136px;
	}
	.gLangNav_btn {
		font-size: 16px;
		height: 47px;
	}
	.gLangNav_btn::before {}
	.gLangNav_btn::after {}
	.gLangNav_list {
		font-size: 12px;
		margin-top: 0;
	}
	.gLangNav_list > li {}
	.gLangNav_list > li:first-child {}
	.gLangNav_list > li:last-child {}
	.gLangNav_list > li:nth-child(2n+1) {}
	.gLangNav_list > li:nth-child(n+3) {}
	.gLangNav_list > li > a {
		height: 35px;
	}
	.gLangNav_list > li > a::before {}
	.gLangNav_list > li > a::after {}
	.gBody {
		padding-bottom: 50px;
	}
	.gBody-noVis {
		padding-top: 130px;
	}
	.gBody-noVisPtL {}
	.gVisual {
		margin-bottom: 50px;
	}
	.gVisual-about {
		margin-bottom: 60px;
	}
	.gVisual-service {}
	.gVisual-make {}
	.gVisual-trivia {}
	.gVisual_inner {}
	.gVisual_inner::before {
		height: 415px;
	}
	.gVisual_title {}
	.gBody_inner {}
	.gFixContact {}
	.gFixContact > a {}
	.gFixContact > a > b {}
	.gFixContact > a::before {}
	.gFixContact > a::after {}
	.gNav {
		display: block;
		padding-top: 118px;
	}
	.gNav.isShow {}
	.gNav_inner {
		display: block;
		max-height: calc(100vh - 118px);
		padding: 0 0 50px;
		width: auto;
	}
	.gNav_cols {
		display: block;
	}
	.gNav_col {
		margin: 0;
	}
	.gNav_col-no1 {}
	.gNav_list {}
	.gNav_list > li {}
	.gNav_list > li:first-child {}
	.gNav_list > li:last-child {}
	.gNav_list > li:nth-child(2n+1) {}
	.gNav_list > li:nth-child(n+3) {}
	.gNav_list > li > a {
		font-size: 14px;
		justify-content: center;
		height: 45px;
	}
	.gNav_list > li > a::before {}
	.gNav_list > li > a::after {}
	.gNav_col-no2 {
		padding: 0;
	}
	.gHeader_title_text {
		width: 100px;
		height: 30px;
		margin-top: 8px;
		display: none;
	}
	.isFixed .gHeader_title_text {}
	.gFooter_title_text {
		width: 142px;
		height: 42px;
		margin-top: 10px;
	}
	.isShow .gMenuBtn_bar-no1 {}
	.isShow .gMenuBtn_bar-no2 {}
	.gCursor {}
	.gCursor::before {}
	.gCursor[data-status]::before {}
	.gCursor_dot {}
	.gCursor_dot > svg {}
	.gFooter_haedline {
		font-size: 13px;
		margin-top: 18px;
		line-height: 2.1;
		margin-bottom: 30px;
	}
	.gFooter_link {
		margin-bottom: 35px;
	}
	.gFooter_link > a {}
	.gFooter_link > a::before {}
	.gFooter_link > a::after {}
	.gFixSide {
		top: auto;
		bottom: 0;
		transform: none;
		width: 100%;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		border-radius: 0;
		padding: 15px 15px;
	}
	.gFixSide_catch {
		position: static;
		transform: none;
		width: 44px;
		height: 44px;
		min-width: 44px;
		margin-right: 10px;
		font-size: 11px;
		border-radius: 0;
	}
	.gFixSide_cols {
		display: block;
		flex-grow: 1;
	}
	.gFixSide_col {}
	.gFixSide_col-no1 {
		display: none;
	}
	.gFixSide_text {}
	.gFixSide_col-no2 {
		display: flex;
		flex-grow: 1;
	}
	.gFixSide_telLink {
		width: auto;
		margin-bottom: 0;
		width: 102px;
		flex-grow: 1;
	}
	.gFixSide_telLink > a {
		-ms-writing-mode: lr-tb;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		height: auto;
		height: 44px;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
		border: none;
		white-space: nowrap;
	}
	.gFixSide_telLink > a::before {}
	.gFixSide_telLink > a::after {}
	.gFixSide_telLink_thanks {
		display: block;
		font-size: 10px;
		transform-origin: center top;
		transform: scale(0.8);
		margin-top: 5px;
		white-space: nowrap;
		text-indent: 1em;
	}
	.gFixSide_telLink_text {
		font-size: 18px;
	}
	.gFixSide_telLink_text > .icon {
		margin-bottom: 0;
		margin-right: 6px;
	}
	.gFixSide_link {
		width: auto;
		margin-left: 8px;
		flex-grow: 1;
	}
	.gFixSide_link > a {
		height: auto;
		-ms-writing-mode: lr-tb;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		height: 44px;
		border-radius: 3px;
		padding: 0 10px;
		font-size: 13px;
	}
	.gFixSide_link > a::before {}
	.gFixSide_link > a::after {}
}
@media screen and (max-width:374px) {
	.gFixSide_link > a {
		font-size: 12px;
		padding: 0 5px;
	}
	.gFixSide {
		padding: 10px 10px;
	}
	.gFixSide_catch {
		margin-right: 6px;
		width: 40px;
		height: 40px;
		min-width: 40px;
	}
	.gFixSide_link {
		margin-left: 6px;
	}
	.gFixSide_telLink_text {
		font-size: 16px;
	}
}
