@charset "UTF-8";
/* ------------------------
    ヘッダー
------------------------ */
.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background-color: transparent;
	transition: .3s;
}
.header__inner {
	width: 100%;
	margin: 0 auto;
	transition: .3s;
	position: relative;
}
.header__logo {
	position: absolute;
	top: 35px;
	left: 50px;
	display: block;
	width: 160px;
	height: 78px;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
	background: url(./img/logo.svg) no-repeat center/contain;
	z-index: 1000;
	transition: .2s;
}
.header__logo.white {
	background: url(./img/logo-w.svg) no-repeat center/contain;
	transition: .2s;
}
.header__btn {
	position: fixed;	
	top: 0;
	right: 0;
	display: flex;
	z-index: 1000;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	color: #fff;
	letter-spacing: .5px;
}
.header__contact {
	position: relative;
	display: block;
	width: 130px;
	height: 130px;
	background-color: #333;
	color: #fff;
}
.header__contact:hover {
	background-color: #111;
}
.header__contact .inner {
	position: absolute;
	top: calc(50% + 5px);
	left: 50%;
	transform: translate(-50%, -50%);
}
.header__contact .ico {
	display: block;
	width: 36px;
	height: 23px;
	background: url(./img/mail.svg) no-repeat center/contain;
	margin: 0 auto;
}
.header__contact .text {
	display: block;
	text-align: center;
	padding-top: 10px;
}
.header .global-nav {
	width: 600px;
	height: 100vh;
	border-left: 0 none;
	position: fixed;
	top: 0;
	right: 0;
	pointer-events: none;
	transition: .3s;
	opacity: 0;
	/* background-color: #BD0E0E; */
	background-color: rgba(189, 14, 14, .95);
    backdrop-filter: blur(3px);
}
.header.js-open .global-nav {
	transition: .3s;
	pointer-events: unset;
	opacity: 1;
}
.header .global-nav__list {
	display: block;
	padding: 0 100px;
	height: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.header .global-nav__item {
	position: relative;
	margin-right: 35px;
	padding: 10px 0;
}
.header .global-nav__link {
	font-family: "Zen Old Mincho", serif;
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	padding: 10px 0;
	line-height: 1;
}
.header .global-nav__link::before {
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #fff;
	transition: .2s;
}
.header .global-nav__link:hover:before {
	width: 100%;
	transition: .2s;
}

.header .global-nav__link.instagram {
	position: relative;
	letter-spacing: 1px;
	padding-left: 40px;
}
.header .global-nav__link.instagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: url(./img/instagram.svg) no-repeat center / cover;
    transition: .3s;
}

/* ------------------------
    スマホナビ
------------------------ */
.header__hamburger {
	position: relative;
	width: 130px;
	height: 130px;
	background-color: #BD0E0E;
	transition: .3s;
}
.header__hamburger:hover {
	background-color: #930003;
	transition: .3s;
}
.header__hamburger .inner {
	position: absolute;
	top: calc(50% + 5px);
	left: 50%;
	transform: translate(-50%, -50%);
}
.header__hamburger .ico {
	display: block;
	background-color: #fff;
	width: 40px;
	height: 2px;
	position: relative;
	margin: 10px auto;
	transition: .3s;
}
.header__hamburger .ico::before,
.header__hamburger .ico::after {
	content: '';
	background-color: #fff;
	width: 40px;
	height: 2px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: .3s;
}
.header__hamburger .ico::before {
	top: -10px;
}
.header__hamburger .ico::after {
	bottom: -10px;
}
.header.js-open .header__hamburger .ico {
	background-color: transparent;
	transition: .3s;
}
.header.js-open .header__hamburger .ico::before {
	top: 1px;
	transition: .3s;
	transform: translateX(-50%) rotate(45deg);
}
.header.js-open .header__hamburger .ico::after {
	bottom: -1px;
	transition: .3s;
	transform: translateX(-50%) rotate(-45deg);
}
.header__hamburger .text {
	display: block;
	text-align: center;
	padding-top: 10px;
}
@media only screen and (max-width: 768px) {
	.header {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 99;
		background-color: #fff;
		transition: .3s;
		height: 70px;
	}
	.header.js-scroll {
		background-color: rgba(255,255,255,.9);
	}
	.header__inner {
		width: 100%;
		margin: 0 auto;
		transition: .3s;
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
		padding-left: 15px;
	}
	.header__logo {
		position: relative;
		top: 1px;
		left: unset;
		display: block;
		width: 85px;
		height: 41px;
		white-space: nowrap;
		text-indent: 100%;
		overflow: hidden;
		background: url(./img/logo.svg) no-repeat center/contain;
		z-index: 1000;
	}
	.header.js-open .header__logo {
		background: url(./img/logo-w.svg) no-repeat center/contain;
	}
	.header__btn {
		position: absolute;	
		top: 0;
		right: 0;
		display: flex;
		z-index: 1000;
		font-family: "Montserrat", sans-serif;
		font-weight: 500;
		font-size: 1.2rem;
		color: #fff;
		letter-spacing: unset;
	}
	.header__contact {
		position: relative;
		display: block;
		width: 70px;
		height: 70px;
		background-color: #333;
		color: #fff;
	}
	.header__contact:hover {
		background-color: #111;
	}
	.header__contact .inner {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.header__contact .ico {
		display: block;
		width: 28px;
		height: 17px;
		background: url(./img/mail.svg) no-repeat center/contain;
		margin: 0 auto;
	}
	.header__contact .text {
		display: none;
		text-align: center;
		padding-top: 5px;
	}
	.header .global-nav {
		width: 100vw;
		height: 100vh;
		border-left: 0 none;
		position: absolute;
		top: 0;
		right: 0;
		pointer-events: none;
		transition: .3s;
		opacity: 0;
		/* background-color: #BD0E0E; */
		background-color: rgba(189, 14, 14, .95);
		backdrop-filter: blur(3px);
	}
	.header.js-open .global-nav {
		transition: .3s;
		pointer-events: unset;
		opacity: 1;
	}
	.header .global-nav__list {
		display: block;
		padding: 100px 60px;
		height: auto;
		position: relative;
		top: unset;
        left: unset;
        transform: unset;
		overflow-y: scroll;
	}
	.header .global-nav__item {
		position: relative;
		margin-right: 35px;
		padding: 12.5px 0;
	}
	.header .global-nav__link {
		font-family: "Zen Old Mincho", serif;
		display: block;
		position: relative;
		text-decoration: none;
		color: #fff;
		font-size: 1.8rem;
		font-weight: 500;
		padding: 5px 0;
		line-height: 1;
		white-space: nowrap;
	}
	.header .global-nav__link::before {
		display: none;
	}

	.header .global-nav__link.instagram {
		position: relative;
		letter-spacing: 1px;
		padding-left: 40px;
	}
	.header .global-nav__link.instagram::before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		left: 1px;
		transform: translateY(-50%);
		width: 25px;
		height: 25px;
		background: url(./img/instagram.svg) no-repeat center / cover;
		transition: .3s;
	}

	/* ------------------------
		スマホナビ
	------------------------ */
	.header__hamburger {
		position: relative;
		width: 70px;
		height: 70px;
		background-color: #BD0E0E;
		transition: .3s;
	}
	.header__hamburger:hover {
		background-color: #930003;
		transition: .3s;
	}
	.header__hamburger .inner {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.header__hamburger .ico {
		display: block;
		background-color: #fff;
		width: 30px;
		height: 2px;
		position: relative;
		margin: 7px auto;
		transition: .3s;
	}
	.header__hamburger .ico::before,
	.header__hamburger .ico::after {
		content: '';
		background-color: #fff;
		width: 30px;
		height: 2px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: .3s;
	}
	.header__hamburger .ico::before {
		top: -7px;
	}
	.header__hamburger .ico::after {
		bottom: -7px;
	}
	.header.js-open .header__hamburger .ico {
		background-color: transparent;
		transition: .3s;
	}
	.header.js-open .header__hamburger .ico::before {
		top: 1px;
		transition: .3s;
		transform: translateX(-50%) rotate(45deg);
	}
	.header.js-open .header__hamburger .ico::after {
		bottom: -1px;
		transition: .3s;
		transform: translateX(-50%) rotate(-45deg);
	}
	.header__hamburger .text {
		display: none;
		text-align: center;
		padding-top: 5px;
	}
}

.shit-btn {
	position: fixed;
	right: 0;
	/* top: calc(50% - 15px);
	transform: translateY(-50%); */
	bottom: 0;
	font-size: 1.4rem;
	height: calc(100% - 130px);
}
.shit-inner {
	position: absolute;
	top: 30px;
	right: 0;
}
.shit-link {
	position: relative;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: #fff;
	letter-spacing: .5px;
	width: 65px;
	display: flex;
	align-items: center;
}
.shit-contact {
	background-color: #333;
	padding: 45px 0 20px;
}
.shit-contact::before {
	content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 15px;
    background: url(./img/mail.svg) no-repeat center / cover;
    transition: .5s;
}
.shit-contact:hover {
	background-color: #000;
}
.shit-concept {
	background-color: #BD0E0E;
	padding: 60px 0 30px;
	margin-top: 5px;
}
.shit-concept::before {
	content: '';
    position: absolute;
    top: 27px;
    left: 50%;
    transform: translateX(-50%);
    width: 23px;
    height: 23px;
    background: url(./img/hatena.svg) no-repeat center / cover;
    transition: .5s;
}
.shit-concept:hover {
	background-color: #930003;
}


/* ------------------------
    フッター
------------------------ */
.footer {
	position: relative;
	margin-top: 100px;
	background-color: #333;
	padding: 80px 15px 20px;
	color: #ffffff;
	z-index: 1;
}
.footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
}
.footer__logo {
	display: block;
	width: 100%;
	max-width: 150px;
}
.footer__info p {
	margin-top: 30px;
}
.footer__info p a {
	color: #fff;
}
.footer .instagram {
	display: block;
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 70px;
    line-height: 66px;
    color: #fff;
	border: 1px solid #fff;
    padding: 0 20px 0 70px;
    margin-top: 30px;
    font-size: 1.6rem;
}
.footer .instagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
    background: url(./img/instagram.svg) no-repeat center / cover;
    transition: .3s;
}
.footer .instagram:hover {
	background-color: #000;
}
.footer__sitemap {
	display: flex;
	flex-wrap: wrap;
}
.footer__sitemap .sitemap-list {
	margin-left: 80px;
}
.footer__sitemap li {
	margin-top: 20px;
}
.footer__sitemap li:first-child {
	margin-top: 0;
}
.footer__sitemap li a {
	color: #fff;
}
.footer__copy {
	margin-top: 100px;
	text-align: center;
	font-size: 1.5rem;
	color: #ccc;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
@media only screen and (max-width: 768px) {
	.footer {
		position: relative;
		margin-top: 80px;
		background-color: #333;
		padding: 60px 0 30px;
		color: #ffffff;
		z-index: 1;
	}
	.footer__inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		max-width: 1120px;
		margin: 0 auto;
	}
	.footer__info {
		padding: 0;
	}
	.footer__logo {
		display: block;
		width: 100%;
		max-width: 150px;
		margin: auto;
	}
	.footer__info p {
		margin-top: 30px;
	}
	.footer__info p a {
		color: #fff;
	}
	.footer .instagram {
		margin: 30px auto 0;
	}
	.footer__sitemap {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		border-top: 1px solid #ccc;
		margin-top: 40px;
	}
	.footer__sitemap .sitemap-list {
		width: 100%;
		margin-left: 0;
	}
	.footer__sitemap li {
		position: relative;
		margin-top: 0;
		padding: 0;
		border-bottom: 1px solid #ccc;
	}
	.footer__sitemap li:first-child {
		margin-top: 0;
	}
	.footer__sitemap li a {
		display: block;
		padding: 15px 20px;
	}
	.footer__copy {
		margin-top: 30px;
		text-align: center;
		font-size: 1.5rem;
		color: #ccc;
		font-family: "Montserrat", sans-serif;
		font-weight: 500;
	}
}



