@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

/* 共通クラス */
.punctuation {
	margin-right: -30px;
}

.btn-more {
	width: 158px;
	height: 52px;
}

/* メイン */
body {
	background: #F4F5F7;
	color: #000;
	font-family:
		"Noto Serif JP",
		'Noto Sans JP',
		"Hiragino Mincho ProN",
		-apple-system,
		BlinkMacSystemFont,
		"Yu Gothic",
		"Helvetica Neue",
		"Helvetica",
		"Hiragino Sans",
		"Arial",
		"Meiryo",
		sans-serif;
	width: 100%;
	position: relative;
}

/* ヘッダー */
header {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	background: #000;
	width: 100%;
	height: 54px;
	justify-content: flex-start;
	align-items: center;
	z-index: 9999;
	padding-left: 60px;
}

header .menu-bars {
	position: absolute;
	right: 108px;
	cursor: pointer;
}

header .menu-bars .line1,
header .menu-bars .line2 {
	display: block;
	position: absolute;
	width: 17px;
	height: 3px;
	background-color: #fff;
	transition: all .3s;
}

header .menu-bars .line1 {
	top: -6px;
}

header .menu-bars .line2 {
	bottom: -6px;
}

header .menu-bars.open .line1 {
	transform: rotate(45deg);
	width: 22px;
	top: -1px;
}

header .menu-bars.open .line2 {
	transform: rotate(-45deg);
	width: 22px;
	top: -1px;
}

header .menu {
	font-family: Montserrat;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	position: absolute;
	right: 24px;
	cursor: pointer;
}

@media screen and (max-width: 767px) {
	header {
		padding-left: 8px;
	}

	header .header-title {
		width: 292px;
		height: auto;
	}

	header .menu-bars {
		right: 30px;
	}

	header .menu {
		display: none;
	}
}

/* ナビゲーション */
nav {
	display: none;
	position: fixed;
	padding: 32px 64px;
	top: 54px;
	right: 0;
	width: 30%;
	height: 100vh;
	background-color: #000;
	z-index: 1000;
}

nav ul li {
	color: #fff;
	font-size: 12px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 2.5;
}

nav ul li:not(:first-child) {
	margin-top: 16px;
}

nav .btn-nav-entry {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30%;
	height: 46px;
	position: fixed;
	bottom: 0;
	right: 0;
	background-color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
}

nav .btn-nav-entry img {
	margin-right: 8px;
}

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

	nav {
		padding: 16px 32px;
		width: 100%;
		height: 100vh;
	}

	nav ul li:not(:first-child) {
		margin-top: 4px;
	}

	nav .btn-nav-entry {
		width: 100%;
	}

}

/* ローディング */
#loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0px;
	left: 0px;
	background-color: #000;
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

#loader video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
	#loader video {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		min-width: 100%;
		min-height: 100%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

/* ヒーローセクション */
#hero {
	width: 100%;
	height: 100vh;
	background: #000;
}

#hero .mainv {
	width: 100%;
	height: 100vh;
	object-fit: contain;
	background-color: #F4F5F7;
}

#hero .news-area {
	width: 100%;
	height: 60px;
	background-color: #000;
	color: #fff;
	padding-left: 60px;
	position: relative;
	display: flex;
	align-items: center;
}

#hero .news-area .news-text {
	font-family: Montserrat;
	font-size: 16px;
	letter-spacing: 2px;
	vertical-align: middle;
}

#hero .news-area .bar:before {
	content: '';
	width: 1px;
	height: 23px;
	background-color: #fff;
	margin: 0 16px;
	position: absolute;
}

#hero .news-area .news-title {
	font-size: 16px;
	margin-left: 36px;
	letter-spacing: 3px;
	vertical-align: middle;
}

#hero .news-area .news-more {
	font-family: Montserrat;
	font-size: 16px;
	letter-spacing: 2px;
	vertical-align: middle;
	position: absolute;
	right: 60px;
}

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

	#hero {
		width: 100%;
		height: auto;
	}

	#hero .mainv {
		width: 100%;
		height: auto;
		object-fit: unset;
	}

	#hero .news-area {
		display: none;
	}

}

/* バナーエリア */
#banner-area {
	width: 100%;
	margin: 160px auto 0;
}

#banner-area img {
	width: 80%;
	height: auto;
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	#banner-area {
		width: 100%;
		margin: 80px auto;
	}

	#banner-area img {
		width: 100%;
		height: auto;
	}
}

/* メッセージセクション */
#message-area {
	width: 100%;
	margin: 160px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

#message-area .message-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#message-area .message-container .message-image {
	width: 270px;
	height: 270px;
	display: block;
	margin: 0 auto;
}

#message-area .message-container .message-title {
	font-size: 50px;
	text-align: center;
	margin-top: 60px;
	line-height: 1.5;
	letter-spacing: 8px;
}

#message-area .message-container .message-body {
	font-size: 18px;
	text-align: center;
	margin: 40px auto;
	line-height: 3;
	letter-spacing: 2px;
}

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

	#message-area {
		margin: 40px auto;
		overflow: hidden;
	}

	#message-area .message-container .message-image {
		width: 183px;
		height: 183px;
	}

	#message-area .message-container .message-title {
		font-size: 28px;
		margin-top: 40px;
		line-height: 2;
		letter-spacing: 6px;
	}

	#message-area .message-container .message-body {
		font-size: 15px;
		margin: 32px auto;
		line-height: 2.5;
		letter-spacing: 2px;
	}

}

/* トップインタビューセクション */
#top-banner {
	width: 100%;
	height: 540px;
	background: url('../images-recruit/kazuma-top-banner.jpg') no-repeat;
	background-position: center top;
	background-size: contain;
	position: relative;
}

#top-banner .top-banner-text {
	position: absolute;
	top: 110px;
	left: 13%;
}

#top-banner .btn-more {
	position: absolute;
	top: 400px;
	left: 13%;
}

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

	#top-banner {
		width: 100%;
		height: unset;
		margin: 48px auto;
	}

	#top-banner .top-banner-text {
		display: none;
	}

	#top-banner .btn-more {
		display: none;
	}

	#top-banner .top-banner-block {
		width: 100%;
	}

	#top-banner .top-banner-block img {
		width: 100%;
		height: auto;
	}

}

/* ブレイクスルーワークスセクション */
#works-banner {
	width: 100%;
	padding: 160px 0;
}

#works-banner .works-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

#works-banner .works-container .image-box {
	width: 50%;
}

#works-banner .works-container .image-box .works-image {
	display: block;
	margin: 0 auto;
	width: 552px;
	height: auto;
}

#works-banner .works-container .image-box .switcher {
	margin-top: 24px;
	text-align: center;
	font-size: 14px;
}

#works-banner .works-container .image-box .switcher .text-gray {
	color: rgba(26, 19, 17, 0.4);
}

#works-banner .works-container .image-box .switcher .left-arrow,
#works-banner .works-container .image-box .switcher .right-arrow {
	cursor: pointer;
}

#works-banner .works-container .text-box {
	width: 50%;
	position: relative;
}

#works-banner .works-container .text-box .text1 {
	margin-top: 24px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 4px;
}

#works-banner .works-container .text-box .text2 {
	margin-top: 60px;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 4px;
}

#works-banner .works-container .text-box .text3 {
	margin-top: 16px;
	font-size: 30px;
	line-height: 1.5;
	letter-spacing: 4px;
}

#works-banner .works-container .text-box .text4 {
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 16px;
	font-size: 16px;
	font-weight: 200;
	line-height: 2;
	letter-spacing: 3px;
}

#works-banner .works-container .text-box .btn-more {
	margin-top: 24px;
}

#works-banner .works-container .text-box .number {
	position: absolute;
	width: auto;
	height: 118px;
	bottom: 25%;
	right: 120px;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	#works-banner {
		padding: 40px 0;
	}

	#works-banner .works-container {
		display: flex;
		flex-direction: column;
	}

	#works-banner .works-container .image-box {
		width: 100%;
		position: relative;
	}

	#works-banner .works-container .image-box .works-image {
		display: block;
		margin: 32px auto;
		width: 311px;
		height: auto;
		transform: translateX(4px);
	}

	#works-banner .works-container .image-box .switcher {
		margin-top: unset;
		line-height: 0;
	}

	#works-banner .works-container .image-box .switcher .switcher-number {
		display: none;
	}

	#works-banner .works-container .image-box .switcher .text-gray {
		display: none;
	}

	#works-banner .works-container .image-box .switcher .left-arrow,
	#works-banner .works-container .image-box .switcher .right-arrow {
		position: absolute;
		top: 43%;
		transform: translateY(-50%);
	}

	#works-banner .works-container .image-box .switcher .left-arrow {
		left: 10px;
	}

	#works-banner .works-container .image-box .switcher .right-arrow {
		right: 10px;
	}

	#works-banner .works-container .text-box {
		width: 100%;
		position: relative;
	}

	#works-banner .works-container .text-box img {
		display: block;
		margin: 0 auto;
	}

	#works-banner .works-container .text-box .text1 {
		font-size: 14px;
		letter-spacing: 2px;
		text-align: center;
	}

	#works-banner .works-container .text-box .text3 {
		margin-top: 16px;
		font-size: 22px;
		line-height: 1.5;
		letter-spacing: 4px;
		text-align: center;
	}

	#works-banner .works-container .text-box .text4 {
		width: 85%;
		margin: 16px auto;
		font-size: 15px;
		line-height: 2;
		letter-spacing: 3px;
	}

	#works-banner .works-container .text-box .text4 br {
		display: none;
	}

	#works-banner .works-container .text-box .btn-more {
		margin-top: 24px;
	}

	#works-banner .works-container .text-box .number {
		width: auto;
		height: 76px;
		bottom: 80%;
		right: 30px;
		z-index: -1;
	}

}

/* アーティザンセクション */
#artisan {
	width: 100%;
	background-color: #E8E9EB;
	padding: 160px 0;
}

#artisan h2 img {
	display: block;
	margin: 0 auto;
}

#artisan .artisan-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 3px;
	line-height: 2;
	margin-top: 36px;
	text-align: center;
}

#artisan .artisan-box {
	width: 90%;
	max-width: 1400px;
	margin: 60px auto 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#artisan .artisan-box img {
	width: 264px;
	height: 264px;
}

#artisan .artisan-box a:nth-of-type(1),
#artisan .artisan-box a:nth-of-type(2),
#artisan .artisan-box a:nth-of-type(3),
#artisan .artisan-box a:nth-of-type(5),
#artisan .artisan-box a:nth-of-type(6) {
	margin-right: 36px;
}

#artisan .artisan-box a:nth-of-type(n+5) {
	margin-top: 30px;
}

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

	#artisan {
		width: 100%;
		background-color: #E8E9EB;
		padding: 48px 0;
	}

	#artisan h2 img {
		display: block;
		margin: 0 auto;
	}

	#artisan .artisan-text {
		font-size: 14px;
		letter-spacing: 2px;
		margin-top: 24px;
		text-align: center;
	}

	#artisan .artisan-box {
		width: 100%;
		max-width: 100%;
		margin: 60px auto 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	#artisan .artisan-box img {
		width: 158px;
		height: 158px;
	}

	@media screen and (max-width: 320px) {
		#artisan .artisan-box img {
			width: 120px;
			height: 120px;
		}
	}

	#artisan .artisan-box a:nth-of-type(1),
	#artisan .artisan-box a:nth-of-type(2),
	#artisan .artisan-box a:nth-of-type(3),
	#artisan .artisan-box a:nth-of-type(5),
	#artisan .artisan-box a:nth-of-type(6) {
		margin-right: unset;
	}

	#artisan .artisan-box a:nth-of-type(n+5) {
		margin-top: unset;
	}

	#artisan .artisan-box a:nth-of-type(odd) {
		margin-right: 8px;
	}

	#artisan .artisan-box a:nth-of-type(n+3) {
		margin-top: 12px;
	}

	#artisan .artisan-box .empty {
		margin-top: 12px;
	}

}

/* ポップアップセクション */
#popup {
	width: 100%;
	padding: 160px 0;
	position: relative;
}

#popup h2 img {
	display: block;
	margin: 0 auto;
}

#popup .popup-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 3px;
	line-height: 2;
	margin-top: 36px;
	text-align: center;
}

#popup .popup-box {
	width: 95%;
	max-width: 1300px;
	margin: 60px auto 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#popup .popup-box img {
	width: 238px;
	height: 238px;
	margin-right: 36px;
}

#popup .popup-box a {
	cursor: pointer;
}

#popup .popup-box a.no-popup {
	cursor: default;
}

#popup .popup-box a:nth-of-type(n+5) {
	margin-top: 36px;
}

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

	#popup {
		width: 100%;
		padding: 56px 0;
	}

	#popup .popup-text {
		font-size: 14px;
		letter-spacing: 2px;
		line-height: 2;
		margin-top: 24px;
		text-align: center;
	}

	#popup .popup-box {
		width: 100%;
		max-width: 100%;
		margin: 60px auto 0;
	}

	#popup .popup-box img {
		width: 160px;
		height: 160px;
		margin-right: unset;
	}

	@media screen and (max-width: 320px) {
		#popup .popup-box img {
			width: 120px;
			height: 120px;
		}
	}

	#popup .popup-box a:nth-of-type(odd) {
		margin-right: 8px;
	}

	#popup .popup-box a:nth-of-type(n+3) {
		margin-top: 12px;
	}

}

/* モーダル表示部分 */
.overlay {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	z-index: 10000;
}

.modal {
	position: relative;
	display: block;
	/* display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; */
	background-color: #fff;
	color: #1A1311;
	width: 730px;
	height: 680px;
	z-index: 20;
}

.modal .btn-close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 12px;
	letter-spacing: 2px;
	cursor: pointer;
}

.modal .btn-close img {
	margin-bottom: 1px;
}

.modal .popup-image {
	width: 238px;
	height: 238px;
	display: block;
	margin: 56px auto 0;
}

.modal .popup-content-text {
	font-family: "Noto Sans JP", sans-serif;
	text-align: justify;
	width: 80%;
	margin: 16px auto 0;
	font-size: 15px;
	line-height: 2.4;
	letter-spacing: 3px;
}

.modal .popup-switcher {
	text-align: center;
	font-size: 14px;
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
}

.modal .popup-switcher .popup-text-gray {
	color: rgba(26, 19, 17, 0.4);
}

.modal .popup-switcher .popup-left-arrow,
.modal .popup-switcher .popup-right-arrow {
	cursor: pointer;
}

.popup-content1,
.popup-content2,
.popup-content3,
.popup-content4,
.popup-content5,
.popup-content6,
.popup-content7,
.popup-content8,
.popup-content9,
.popup-content10,
.popup-content11,
.popup-content12 {
	display: none;
}

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

	.modal {
		margin-top: 54px;
		padding: 24px 0 48px;
		width: 90%;
		height: 90%;
		overflow-y: scroll;
	}

	.modal .btn-close {
		top: 16px;
		right: 16px;
	}

	.modal .popup-image {
		width: 220px;
		height: 220px;
		margin: 44px auto 0;
	}

	.modal .popup-content-text {
		width: 85%;
		margin: 8px auto 0;
		font-size: 14px;
		line-height: 1.8;
		letter-spacing: 5px;
	}

	.modal .popup-switcher {
		display: none;
	}

}

/* ニュースセクション */
#news {
	width: 100%;
	background-color: #E8E9EB;
	padding: 160px 0;
}

#news .news-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
}

#news .news-container .news-title {
	width: 50%;
	padding: 0 128px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#news .news-container .news-title .news-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 3px;
	line-height: 2;
	margin-top: 36px;
	text-align: left;
}

#news .news-container .news-list {
	width: 50%;
	padding-right: 32px;
}

#news .news-container .news-list ul {
	width: 90%;
}

#news .news-container .news-list ul li {
	border-bottom: dashed 1px #B1B1B1;
	padding-bottom: 12px;
	margin-bottom: 8px;
	font-size: 16px;
	color: #1A1311;
	letter-spacing: 3px;
	line-height: 1.6;
}

#news .news-container .news-list li:last-child {
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

#news .news-container .news-list li .date {
	color: #BFBFBF;
	font-size: 14px;
}

#news .news-container .btn-more {
	position: absolute;
	bottom: 0;
	left: 128px;
}

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

	#news {
		padding: 56px 0;
	}

	#news .news-container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	#news .news-container .news-title {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	#news .news-container .news-title img {
		display: block;
		margin: 0 auto;
	}

	#news .news-container .news-title .news-text {
		font-size: 14px;
		letter-spacing: 2px;
		margin-top: 24px;
		text-align: center;
	}

	#news .news-container .news-list {
		width: 95%;
		padding: 0 16px;
		margin-top: 24px;
	}

	#news .news-container .news-list ul {
		width: 100%;
	}

	#news .news-container .news-list ul li {
		padding-bottom: 14px;
		margin-bottom: 14px;
		font-size: 16px;
		letter-spacing: 2px;
		line-height: 1.5;
	}

	#news .news-container .news-list li:last-child {
		border: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	#news .news-container .btn-more {
		display: block;
		margin-top: 36px;
		position: relative;
		bottom: unset;
		left: unset;
	}

}

/* 採用情報セクション */
#recruit {
	width: 100%;
	height: 686px;
	padding: 100px 0;
	background: url('../images-recruit/recruit-background.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

#recruit h2 img {
	display: block;
	margin: 0 auto;
}

#recruit .recruit-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 3px;
	line-height: 2;
	margin-top: 36px;
	text-align: center;
}

#recruit .recruit-btn-box {
	display: flex;
	width: calc(566px * 2 + 10px);
	margin: 60px auto 0;
}

#recruit .recruit-left,
#recruit .recruit-right {
	width: 566px;
	display: inline-block;
}

#recruit .recruit-left {
	margin-right: 10px;
}

#recruit .recruit-box {
	width: 566px;
	height: 310px;
	background-color: #fff;
	color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#recruit .recruit-box.box-half {
	height: 150px;
}

#recruit .recruit-right a:last-child .recruit-box {
	margin-top: 10px;
}

#recruit .recruit-box img {
	display: block;
}

#recruit .recruit-box p {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	margin-top: 18px;
	letter-spacing: 2px;
}

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

	#recruit {
		width: 100%;
		height: auto;
		padding: 56px 0;
	}

	#recruit h2 img {
		display: block;
		margin: 0 auto;
	}

	#recruit .recruit-text {
		font-size: 14px;
		letter-spacing: 2px;
		line-height: 1.5;
		margin-top: 24px;
	}

	#recruit .recruit-btn-box {
		display: flex;
		flex-direction: column;
		width: 90%;
		margin: 60px auto 0;
	}

	#recruit .recruit-left,
	#recruit .recruit-right {
		width: 100%;
		display: block;
	}

	#recruit .recruit-left {
		margin-right: 10px;
	}

	#recruit .recruit-box {
		width: 100%;
		height: 150px;
	}

	#recruit .recruit-box.box-half {
		height: 150px;
		margin-top: 10px;
	}

	#recruit .recruit-right a:last-child .recruit-box {
		margin-top: 10px;
	}

	#recruit .recruit-box img {
		display: block;
	}

	#recruit .recruit-box p {
		margin-top: 18px;
		letter-spacing: 2px;
	}

}

/* フッタ */
footer {
	width: 100%;
	background-color: #000;
	color: #fff;
	padding: 120px 0;
}

footer .footer-container .message {
	text-align: center;
	font-size: 25px;
	letter-spacing: 12px;
}

footer .footer-container .btn_entry {
	display: block;
	margin: 64px auto 0;
	width: 181px;
	height: 181px;
}

footer .footer-container .address {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	text-align: center;
	line-height: 3;
	letter-spacing: 2px;
	margin-top: 64px;
}

footer .footer-container .sns_icon {
	margin-top: 64px;
	display: flex;
	justify-content: center;
}

footer .footer-container .sns_icon img {
	width: 40px;
	height: 40px;
}

footer .footer-container .footer-imagebox {
	display: flex;
	justify-content: center;
	margin: 64px auto 0;
}

footer .footer-container .footer-imagebox img {
	width: 108px;
	height: 108px;
}

footer .footer-container .footer-imagebox img:first-child {
	margin-right: 32px;
}

footer .footer-container .footer-linkbox {
	display: flex;
	justify-content: center;
	margin: 64px auto 0;
}

footer .footer-container .footer-linkbox img {
	width: 206px;
	height: auto;
}

footer .footer-container .footer-linkbox>img {
	margin-right: 32px;
}

footer .footer-container .copyright {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 11px;
	text-align: center;
	margin: 64px auto 0;
	color: #535353;
	letter-spacing: 2px;
}

footer .foot_entry {
	display: none;
	position: fixed;
	bottom: 16px;
	right: 16px;
	width: 147px;
	height: 147px;
}

@media screen and (max-width: 767px) {
	footer {
		padding: 60px 0;
	}

	footer .footer-container .message {
		font-size: 20px;
		line-height: 2;
		letter-spacing: 7px;
	}

	footer .footer-container .btn_entry {
		width: 121px;
		height: 121px;
		margin: 48px auto 0;
	}

	footer .footer-container .address {
		margin-top: 48px;
	}

	footer .footer-container .footer-imagebox {
		margin: 48px auto 0;
	}

	footer .footer-container .copyright {
		margin: 48px auto 0;
	}

	footer .foot_entry {
		bottom: 12px;
		right: 12px;
		width: 91px;
		height: 91px;
	}

	footer .footer-container .footer-linkbox {
		flex-direction: column;
		align-items: center;
	}

	footer .footer-container .footer-linkbox>img {
		margin-right: unset;
		margin-bottom: 32px;
	}

}

/* PC/SP表示切り替え */
.sp_only {
	display: none !important;
}

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

	.pc_only {
		display: none !important;
	}
}