@charset "UTF-8";
/* ==========================================================
[ Base CSS ]

* サイト全体に共通する設定を記述する
*
*
*

base setting

========================================================== */
/* ---------------------------------------------
*   base setting
--------------------------------------------- */
html {
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	html {
		font-size: 5vw;
	}
}

body {
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	line-height: 1.8;
	color: #251814;
	-webkit-text-size-adjust: 100%;
	font-size: 0.9375rem;
}

@media screen and (max-width: 768px) {
	body {
		min-width: 0;
		font-size: 0.9375rem;
	}
}

/*  hr with anchor
--------------------------------------------- */
hr[id^="anchor"] {
	display: block;
	width: auto;
	height: 0;
	padding: 0;
	border: 0;
	margin: 0;
	padding-top: 110px;
	margin-top: -110px;
}

@media screen and (max-width: 768px) {
	hr[id^="anchor"] {
		padding-top: 88px;
		margin-top: -88px;
	}
}

/*  link
--------------------------------------------- */
a {
	color: inherit;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a.js-tel-disabled,
a.js-tel-disabled:hover {
	cursor: default;
	text-decoration: none;
}

/*  img
--------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*  responsive
--------------------------------------------- */
/* -- general -- */
.pc-only {
	display: block;
}

@media screen and (max-width: 768px) {
	.pc-only {
		display: none;
	}
}

.sp-only {
	display: none;
}

@media screen and (max-width: 768px) {
	.sp-only {
		display: block;
	}
}

/* -- inline -- */
br.pc-only,
a.pc-only,
span.pc-only {
	display: inline;
}

@media screen and (max-width: 768px) {
	br.pc-only,
	a.pc-only,
	span.pc-only {
		display: none;
	}
}

br.sp-only,
a.sp-only,
span.sp-only {
	display: none;
}

@media screen and (max-width: 768px) {
	br.sp-only,
	a.sp-only,
	span.sp-only {
		display: inline;
	}
}

/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 40px;
	background-color: #251814;
}

@media screen and (max-width: 768px) {
	.header {
		height: 44px;
	}
}

/*  header-container
--------------------------------------------- */
.header-container {
	box-sizing: border-box;
	padding: 5px 35px;
	max-width: 1240px;
	margin-right: auto;
	margin-left: auto;
}

.header-container:after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (max-width: 768px) {
	.header-container {
		width: auto;
		max-width: none;
	}
}

@media screen and (max-width: 1240px) {
	.header-container {
		padding: 5px 2.82258vw;
	}
}

@media screen and (max-width: 768px) {
	.header-container {
		padding: 8px 4.6875vw 8px 6.25vw;
	}
}

/*  header-logo
--------------------------------------------- */
.header-logo {
	float: left;
}

.header-logo__text {
	display: block;
	width: 55px;
	background-image: url(../img/pc/common/header_logo.png);
	background-size: auto 100%;
	transition: all .3s;
	height: 0;
	padding-top: 30px;
	background-position: 0 0;
	background-repeat: no-repeat;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.header-logo__text {
		width: 46px;
		padding-top: 28px;
		background-position: 50% 50%;
		background-size: 100% auto;
	}
}

/*  header-link
--------------------------------------------- */
.header-link {
	float: right;
	width: 250px;
}

.header-link__button {
	display: block;
	box-sizing: border-box;
	height: 30px;
	border: 1px solid #fff;
	text-align: center;
	line-height: 30px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	font-size: 0.75rem;
}

@media screen and (max-width: 768px) {
	.header-link {
		width: 155px;
	}
	.header-link__button {
		height: 28px;
		line-height: 28px;
		font-size: 8px;
	}
}

/*  header-sp-trigger
--------------------------------------------- */
.header-sp-trigger {
	position: absolute;
	top: 25px;
	right: 2.82258vw;
	z-index: 11;
	display: none;
	width: 60px;
	height: 0;
	padding-top: 60px;
	background-color: #251814;
	overflow: hidden;
	cursor: pointer;
}

.header-sp-trigger--current .header-sp-trigger__text {
	-webkit-animation: menu-center--active .5s forwards;
	animation: menu-center--active .5s forwards;
}

.header-sp-trigger--current .header-sp-trigger__text:before {
	-webkit-animation: menu-top--active .5s forwards;
	animation: menu-top--active .5s forwards;
}

.header-sp-trigger--current .header-sp-trigger__text:after {
	-webkit-animation: menu-bottom--active .5s forwards;
	animation: menu-bottom--active .5s forwards;
}

.header-sp-trigger__text {
	color: #251814;
}

.header-sp-trigger__text {
	position: absolute;
	display: inline-block;
	top: 30px;
	left: 50%;
	width: 40px;
	border-bottom: 1px solid #fff;
	line-height: 1;
	font-size: 0;
	margin-left: -20px;
	-webkit-animation: menu-center .5s forwards;
	animation: menu-center .5s forwards;
}

.header-sp-trigger__text:before, .header-sp-trigger__text:after {
	content: "";
	position: absolute;
	left: 50%;
	display: inline-block;
	width: 40px;
	border-top: 1px solid #fff;
	margin-left: -20px;
}

.header-sp-trigger__text:before {
	top: -12px;
	-webkit-animation: menu-top .5s forwards;
	animation: menu-top .5s forwards;
}

.header-sp-trigger__text:after {
	top: 12px;
	-webkit-animation: menu-bottom .5s forwards;
	animation: menu-bottom .5s forwards;
}

/* -- js_trigger animation -- */
@keyframes menu-top {
	100% {
		top: -12px;
		width: 40px;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	75% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	0% {
		top: 0;
		width: 36px;
		-webkit-transform: rotate(45deg);
		        transform: rotate(45deg);
	}
}

@keyframes menu-center {
	100% {
		border-bottom: 1px solid #fff;
	}
	75% {
		border-bottom: 1px solid #fff;
	}
	0% {
		border: 0;
	}
}

@keyframes menu-bottom {
	100% {
		top: 12px;
		width: 40px;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	75% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	0% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(-45deg);
		        transform: rotate(-45deg);
	}
}

@-webkit-keyframes menu-top {
	100% {
		top: -12px;
		width: 40px;
		-webkit-transform: rotate(0deg);
	}
	75% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(0deg);
	}
	0% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(45deg);
	}
}

@-webkit-keyframes menu-center {
	100% {
		border-bottom: 1px solid #fff;
	}
	75% {
		border-bottom: 1px solid #fff;
	}
	0% {
		border: 0;
	}
}

@-webkit-keyframes menu-bottom {
	100% {
		top: 12px;
		width: 40px;
		-webkit-transform: rotate(0deg);
	}
	75% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(0deg);
	}
	0% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(-45deg);
	}
}

@keyframes menu-top--active {
	0% {
		top: -12px;
		width: 40px;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	75% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(45deg);
		        transform: rotate(45deg);
	}
}

@keyframes menu-center--active {
	0% {
		border-bottom: 1px solid #fff;
	}
	75% {
		border-bottom: 1px solid #fff;
	}
	100% {
		border: 0;
	}
}

@keyframes menu-bottom--active {
	0% {
		top: 12px;
		width: 40px;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	75% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(-45deg);
		        transform: rotate(-45deg);
	}
}

@-webkit-keyframes menu-top--active {
	0% {
		top: -12px;
		width: 40px;
		-webkit-transform: rotate(0deg);
	}
	75% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(0deg);
	}
	100% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(45deg);
	}
}

@-webkit-keyframes menu-center--active {
	0% {
		border-bottom: 1px solid #fff;
	}
	75% {
		border-bottom: 1px solid #fff;
	}
	100% {
		border: 0;
	}
}

@-webkit-keyframes menu-bottom--active {
	0% {
		top: 12px;
		width: 40px;
		-webkit-transform: rotate(0deg);
	}
	75% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(0deg);
	}
	100% {
		top: 0;
		width: 40px;
		-webkit-transform: rotate(-45deg);
	}
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
	position: relative;
	padding-top: 40px;
}

@media screen and (max-width: 1240px) {
	.wrapper {
		width: 100%;
		overflow: hidden;
	}
}

@media screen and (max-width: 768px) {
	.wrapper {
		padding-top: 44px;
	}
}

/* ---------------------------------------------
*   global-nav
--------------------------------------------- */
.global-nav {
	height: 69px;
	border-bottom: 1px solid #fff;
	background-color: #B71B30;
	transition: background-color .5s;
}

.global-nav--fixed {
	position: fixed;
	width: 100%;
	z-index: 9;
	background-color: rgba(183, 27, 48, 0.9);
}

.global-nav--fixed .global-nav__list-item--logo .global-nav__link {
	text-indent: 0;
	background-image: url(../img/pc/common/nav_logo.png);
	background-size: auto 100%;
	height: 0;
	padding-top: 60px;
	background-position: 0 0;
	background-repeat: no-repeat;
	overflow: hidden;
	background-color: #fff;
	background-position: 50% 50%;
}

.global-nav--fixed .global-nav__list-item--logo .global-nav__link:before {
	display: none;
}

.global-nav--fixed .global-nav__list-item--logo .global-nav__link:after {
	opacity: 0;
}

.global-nav__list {
	box-sizing: border-box;
	width: 1120px;
	padding: 5px 0 5px 35px;
	margin-right: auto;
	margin-left: auto;
}

.global-nav__list-item {
	position: relative;
	float: left;
	width: 200px;
	text-align: center;
	margin-right: 15px;
}

.global-nav__list-item--headerlink {
	display: none;
}

.global-nav__list-item:nth-last-child(2) {
	margin-right: 0;
}

.global-nav__list-item:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc((100% - 35px) / 2);
	height: 4px;
	background-color: #fff;
}

.global-nav__list-item:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc((100% - 35px) / 2);
	height: 4px;
	background-color: #fff;
}

.global-nav__list-item--logo {
	position: relative;
	width: calc(1120px - 35px - 15px*4 - 200px*4);
	text-indent: -9999px;
}

.global-nav__list-item--logo:before, .global-nav__list-item--logo:after {
	display: none;
}

.global-nav__list-item--logo .global-nav__link {
	display: block;
	border: 0;
}

.global-nav__list-item--logo .global-nav__link:before {
	display: none;
}

.global-nav__list-item--logo .global-nav__link:after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	z-index: 1;
	display: block;
	width: 300px;
	border: 0;
	height: 0;
	padding-top: 280px;
	background-position: 0 0;
	background-repeat: no-repeat;
	overflow: hidden;
	background: url(../img/pc/common/nav_item.png) 50% 100% no-repeat;
	background-size: auto 100%;
	pointer-events: none;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	transition: all .5s;
}

.global-nav__link {
	position: relative;
	box-sizing: border-box;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-flow: column wrap;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	height: 45px;
	border: 4px solid #fff;
	border-bottom-color: transparent;
	line-height: 1.2;
	color: #fff;
	text-decoration: none;
}

.global-nav__link-text {
	font-size: 0.8125rem;
}

.global-nav__link-text-small {
	font-size: 0.75rem;
}

.global-nav__link-text-large {
	font-size: 0.875rem;
}

.global-nav__link:before {
	content: "";
	position: absolute;
	top: calc(100% - 2px);
	left: 50%;
	display: block;
	width: 35px;
	height: 21px;
	background: url(../img/pc/common/nav_arrow.png) 50% 100% no-repeat;
	background-size: 100% auto;
	transition: background-color .5s;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}

@media screen and (max-width: 1120px) {
	.global-nav {
		overflow: hidden;
	}
	.global-nav__inner {
		height: 100%;
		padding-bottom: 17px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}
	.global-nav__list {
		height: 100%;
	}
	.global-nav__list-item--logo .global-nav__link {
		text-indent: 0;
		background-image: url(../img/pc/common/nav_logo.png);
		background-size: auto 100%;
		height: 0;
		padding-top: 60px;
		background-position: 0 0;
		background-repeat: no-repeat;
		overflow: hidden;
		background-color: #fff;
		background-position: 50% 50%;
	}
	.global-nav__list-item--logo .global-nav__link:after {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.global-nav {
		height: 44px;
		border-bottom: 0;
	}
	.global-nav__list {
		width: calc(65.0rem + 20px);
		padding: 5px 10px 15px;
	}
	.global-nav__list-item {
		width: 15.0rem;
		margin-right: 1.0rem;
	}
	.global-nav__list-item--logo {
		display: none;
	}
	.global-nav__list-item:nth-of-type(4) {
		width: 18.0em;
	}
	.global-nav__list-item:before {
		width: calc((100% - 52px) / 2);
		height: 2px;
	}
	.global-nav__list-item:after {
		width: calc((100% - 52px) / 2);
		height: 2px;
	}
	.global-nav__link {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		        flex-flow: row nowrap;
		height: 28px;
		border-width: 2px;
	}
	.global-nav__link:before {
		top: calc(100% - 10px);
		width: 52px;
		height: 26px;
		background-image: url(../img/sp/common/nav_arrow.png);
		background-position: 50% 50%;
		background-size: 32px auto;
	}
	.global-nav__link-text {
		font-size: 14px;
	}
	.global-nav__link-text-small {
		font-size: 14px;
	}
	.global-nav__link-text-large {
		font-size: 14px;
	}
}

/*  isPC
--------------------------------------------- */
@media screen and (min-width: 1121px) {
	.isPC .global-nav--fixed {
		top: 40px !important;
		display: block !important;
	}
}

@media screen and (max-width: 1120px) {
	.isPC.body--gnavfixed .header {
		height: 110px;
	}
	.isPC.body--gnavfixed .header-container {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.isPC.body--gnavfixed .header-logo__text {
		width: 75px;
		padding-top: 60px;
		background-position: 50% 50%;
		background-size: 100% auto;
	}
	.isPC.body--gnavfixed .header-link {
		opacity: 0;
		visibility: hidden;
	}
	.isPC.body--gnavfixed .header-sp-trigger {
		display: block;
	}
	.isPC .global-nav:not(.global-nav--fixed) {
		display: block !important;
	}
	.isPC .global-nav--fixed {
		top: 110px !important;
		display: none;
		height: calc(100% - 110px);
		background-color: rgba(0, 0, 0, 0.9);
		overflow: hidden;
		transition: background-color 0s;
	}
	.isPC .global-nav--fixed .global-nav__inner {
		padding-bottom: 0;
	}
	.isPC .global-nav--fixed .global-nav__list {
		width: auto;
		height: 100%;
		padding: 3.22581vw 1.6129vw;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.isPC .global-nav--fixed .global-nav__list-item {
		float: none;
		width: auto;
		border-bottom: 1px solid #fff;
		margin-right: 0;
	}
	.isPC .global-nav--fixed .global-nav__list-item--headerlink {
		display: block;
		border-bottom: 0;
	}
	.isPC .global-nav--fixed .global-nav__list-item:nth-last-child(2) {
		border-bottom: 0;
	}
	.isPC .global-nav--fixed .global-nav__list-item:before {
		display: none;
	}
	.isPC .global-nav--fixed .global-nav__list-item:after {
		display: none;
	}
	.isPC .global-nav--fixed .global-nav__list-item--logo {
		display: none;
	}
	.isPC .global-nav--fixed .global-nav__list-item--logo:before, .isPC .global-nav--fixed .global-nav__list-item--logo:after {
		display: none;
	}
	.isPC .global-nav--fixed .global-nav__list-item--logo .global-nav__link {
		display: block;
		border: 0;
	}
	.isPC .global-nav--fixed .global-nav__list-item--logo .global-nav__link:before {
		display: none;
	}
	.isPC .global-nav--fixed .global-nav__list-item--logo .global-nav__link:after {
		display: none;
	}
	.isPC .global-nav--fixed .global-nav__link {
		display: block;
		height: 60px;
		border: 0;
		line-height: 60px;
	}
	.isPC .global-nav--fixed .global-nav__link-text {
		font-size: 1rem;
	}
	.isPC .global-nav--fixed .global-nav__link-text-small {
		font-size: 1rem;
	}
	.isPC .global-nav--fixed .global-nav__link-text-large {
		font-size: 1rem;
	}
	.isPC .global-nav--fixed .global-nav__link:before {
		display: none;
	}
	.isPC .global-nav--fixed .global-nav__link br.pc-only {
		display: none;
	}
	.isPC .global-nav--fixed .header-link {
		float: none;
		width: auto;
		opacity: 1;
		visibility: visible;
		margin-top: 1.6129vw;
	}
	.isPC .global-nav--fixed .header-link__button {
		height: 58px;
		line-height: 58px;
		border-width: 2px;
	}
}

@media screen and (max-width: 768px) {
	.isPC.body--gnavfixed .header {
		height: 88px;
	}
	.isPC.body--gnavfixed .header-container {
		padding-top: 19px;
		padding-bottom: 19px;
	}
	.isPC.body--gnavfixed .header-logo__text {
		width: 65px;
		padding-top: 50px;
	}
	.isPC.body--gnavfixed .header-link {
		opacity: 0;
		visibility: hidden;
	}
	.isPC.body--gnavfixed .header-sp-trigger {
		display: block;
		top: 14px;
	}
	.isPC .global-nav--fixed {
		top: 88px !important;
		height: calc(100% - 88px);
	}
	.isPC .global-nav--fixed .global-nav__list {
		padding: 3.125vw 3.125vw;
	}
	.isPC .global-nav--fixed .global-nav__link {
		display: block;
		height: 60px;
		border: 0;
		line-height: 60px;
	}
	.isPC .global-nav--fixed .global-nav__link-text {
		font-size: 0.8125rem;
	}
	.isPC .global-nav--fixed .global-nav__link-text-small {
		font-size: 0.8125rem;
	}
	.isPC .global-nav--fixed .global-nav__link-text-large {
		font-size: 0.8125rem;
	}
	.isPC .global-nav--fixed .global-nav__link:before {
		display: none;
	}
	.isPC .global-nav--fixed .global-nav__link br.pc-only {
		display: none;
	}
	.isPC .global-nav--fixed .header-link {
		opacity: 1;
		visibility: visible;
		margin-top: 3.125vw;
	}
	.isPC .global-nav--fixed .header-link__button {
		font-size: 0.625rem;
	}
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
.main {
	position: relative;
}

.main--gnavfixed {
	padding-top: 70px;
}

@media screen and (max-width: 768px) {
	.main--gnavfixed {
		padding-top: 44px;
	}
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
	text-align: center;
	line-height: 1.5;
	color: #fff;
	background-color: #251814;
}

@media screen and (max-width: 768px) {
	.footer {
		line-height: 1.8;
	}
}

/*  footer-container
--------------------------------------------- */
.footer-container {
	padding: 50px 0 40px;
	max-width: 1240px;
	margin-right: auto;
	margin-left: auto;
}

.footer-container:after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (max-width: 768px) {
	.footer-container {
		width: auto;
		max-width: none;
	}
}

@media screen and (max-width: 1240px) {
	.footer-container {
		padding: 4.03226vw 1.6129vw 3.22581vw;
	}
}

@media screen and (max-width: 768px) {
	.footer-container {
		padding: 9.375vw 9.375vw 3.125vw;
	}
}

/*  footer-caption
--------------------------------------------- */
.footer-caption {
	font-size: 0.75rem;
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
	display: inline-block;
	width: 286px;
	padding-top: 40px;
	border-top: 2px solid #666;
	margin-top: 40px;
}

.footer-logo__link {
	display: block;
	background-image: url(../img/pc/common/footer_logo.png);
	height: 0;
	padding-top: 70px;
	background-position: 0 0;
	background-repeat: no-repeat;
	overflow: hidden;
}

@media screen and (max-width: 1240px) {
	.footer-logo {
		width: 23.06452vw;
		padding-top: 3.22581vw;
		margin-top: 3.22581vw;
	}
	.footer-logo__link {
		padding-top: 5.64516vw;
		background-size: 100% auto;
	}
}

@media screen and (max-width: 768px) {
	.footer-logo {
		width: 60.625vw;
		padding-top: 12.5vw;
		border-width: 1px;
		margin-top: 12.5vw;
	}
	.footer-logo__link {
		padding-top: 15vw;
		background-image: url(../img/sp/common/footer_logo.png);
	}
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
	margin-top: 45px;
}

.footer-nav__list {
	letter-spacing: -.4em;
}

.footer-nav__list-item {
	display: inline-block;
	letter-spacing: normal;
	margin: 0 30px;
}

.footer-nav__link {
	display: block;
}

.footer-nav__link img {
	width: auto;
	height: 35px;
}

@media screen and (max-width: 1240px) {
	.footer-nav {
		margin-top: 3.62903vw;
	}
	.footer-nav__list-item {
		margin: 0 2.41935vw;
	}
	.footer-nav__link img {
		height: 2.82258vw;
	}
}

@media screen and (max-width: 768px) {
	.footer-nav {
		margin-top: 12.5vw;
	}
	.footer-nav__list {
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		        justify-content: space-between;
		letter-spacing: normal;
	}
	.footer-nav__list-item {
		margin: 0 3.125vw;
	}
	.footer-nav__link img {
		height: 8.4375vw;
	}
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
	margin-top: 50px;
}

.footer-copyright__text {
	color: inherit;
	font-size: 0.6875rem;
}

@media screen and (max-width: 1240px) {
	.footer-copyright {
		margin-top: 4.03226vw;
	}
}

@media screen and (max-width: 768px) {
	.footer-copyright {
		margin-top: 7.8125vw;
	}
	.footer-copyright__text {
		font-size: 0.5rem;
	}
}
