@charset "utf-8";

/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	border: none;
	background: initial;
	box-sizing: border-box;
}

img,
svg{
	max-width: 100%;
	height: auto;
	transition: 0.5s;
}
a {
	outline: none;
	color: #343434;
}
a:hover {
	text-decoration: none;
}
a, a:hover, a:hover img {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	text-decoration: none;
}
/*
a:hover {
	filter: alpha(opacity=80);
	-moz-opacity: 0.80;
	opacity: 0.80;
}
*/
.en {
	font-family: var(--text-shippori);
}

.-wb {
	display: inline-block;
}

.-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .-pc {
    display: none;
  }
}

.-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .-sp {
    display: block;
  }
}


/* common
--------------------------------------------------------------------------------------------- */

:root {
	--text-serif: "Noto serif JP", serif;
	--text-shippori: "Shippori Mincho B1", serif;
}

body {
	margin: 0;
	padding: 0;
	line-height: 1.7em;
	font-family: var(--text-serif);
	font-weight: 400;
	color: #343434;
	font-feature-settings: "palt";
	letter-spacing: 0.12em;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	height: 100%;
	text-align: justify;
	background-image: url("../../images/bgimg.jpg");
	background-repeat: repeat-y;
	background-size: 100% auto;
}
@media only screen and (max-width : 768px) {
	body {
		font-size: 15px;
	}
}


@media print, screen and (min-width : 769px) {
.pcno {
	display: none;
}
}
@media(max-width:768px) {
.spno {
	display: none;
}
}

/* スクロールアニメーション */
.fadeinUp {
	opacity : 0;
	/* transform : translate(0, 100px); */
	transition : ease-in-out all 800ms;
}
.fadeinLeft {
	opacity : 0;
	/* transform : translate(100px, 0); */
	transition : all 800ms;
}
.fadeinRight {
	opacity : 0;
	/* transform : translate(-100px, 0); */
	transition : all 800ms;
}
.fadeinUp.scrollin,
.fadeinLeft.scrollin,
.fadeinRight.scrollin{
	opacity : 1;
	/* transform : translate(0, 0); */
}
/* 遅延PC */
.delaypc1 {transition-delay: 200ms;}
.delaypc2 {transition-delay: 400ms;}
.delaypc3 {transition-delay: 600ms;}
.delaypc4 {transition-delay: 800ms;}
.delaypc5 {transition-delay: 1000ms;}
@media screen and (max-width: 768px) {
	.delaypc1,
	.delaypc2,
	.delaypc3,
	.delaypc4,
	.delaypc5{
		transition-delay: 0ms;
	}
}


/* header
--------------------------------------------------------------------------------------------- */
header {
	width: 100%;
	padding-top: 15px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	animation-name: fadedown;
    animation-duration: 1s;
	animation-fill-mode:forwards;
	opacity: 0;
	animation-delay: 3.2s;
}
@keyframes fadedown {
from {
    opacity: 0;
    transform: translateY(-50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
/* header .inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-left: 40px;
} */
header .inner .mbox {
	position: absolute;
	top: 20px;
	left: 40px;
}
header .inner .mbox .logo {
	width: 200px;
	margin-bottom: 45px;
}
header .inner .mbox ul {
	padding-left: 36px;
}
header .inner .mbox li {
	margin-bottom: 3px;
}
header .inner .mbox li a {
	font-family: var(--text-shippori);
	font-size: 16px;
	font-weight: 300;
	padding: 0px 8px 1px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
header .inner .mbox li a::after {
	background: #343434;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
	border-radius: 4px;
}
header .inner .mbox li a:hover {
	color: #fff;
}
header .inner .mbox li a:hover::after {
	transform: scale(1, 1);
}
.on_link.is-active {
	color: #fff;
	background: #343434;
	border-radius: 4px;
}
header .inner .btn-wrap {
	/* position: relative; */
	position: absolute;
	top: 20px;
	right: 0;
	display: grid;
	justify-items: end;
}
header .inner .btn-wrap .contact,
header .inner .btn-wrap .shop-btn {
	width: 200px;
	height: 64px;
	font-family: var(--text-shippori);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	line-height: 0;
}

header .inner .btn-wrap .contact {
	background-color: #343434;
}

header .inner .btn-wrap .shop-btn {
	background-image: url(../../images/g-nav_shop-btn.jpg);
	background-size: cover;
	margin-top: 6px;
}

header .inner .btn-wrap .contact span {
	padding-left: 24px;
	position: relative;
}
header .inner .btn-wrap .contact span::before {
	content: url("../../images/icn_mail.png");
	transform: scale(0.3);
	position: absolute;
	top: -21px;
	left: -31px;
}

header .inner .btn-wrap .shop-btn span {
	padding-left: 24px;
	position: relative;
}
header .inner .btn-wrap .shop-btn span::before {
	content: '';
	width: 18px;
	height: 21px;
	position: absolute;
	top: -10px;
  left: -15px;
	background-image: url(../../images/shop.svg);
	background-repeat: no-repeat;

}

@media (min-width: 769px) {
	header .inner .btn-wrap .contact:hover,
	header .inner .btn-wrap .shop-btn:hover{
		padding-left: 20px;
	}
}
@media screen and (max-width: 768px) {
	header {
		padding-top: 0px;
	}
	/* header .inner {
		padding-left: 15px;
	} */
	header .inner .mbox {
		/* top: 20px;
		left: 10px; */
		top: 0;
    left: 0;
    height: 64px;
    background: rgba(255,255,255,0.5);
    border-radius: 0 0 4px 0;
	}
	header .inner .mbox .logo {
		width: 160px;
		margin-bottom: 0;
		padding: 17px 15px 0;
	}
	header .inner .mbox ul {
		display: none;
	}
	header .inner .btn-wrap {
		top: 0;
	}
	header .inner .btn-wrap .contact,
	header .inner .btn-wrap .shop-btn {
		width: 120px;
		height: 46px;
		justify-content: flex-start;
	}

	header .inner .btn-wrap .contact {
		border-top-left-radius: 0;
	}

	header .inner .btn-wrap .contact span,
	header .inner .btn-wrap .shop-btn span {
		padding-left: 40px;
	}
	header .inner .btn-wrap .contact span::before {
		top: -20px;
    left: -10px;
		transform: scale(0.265);
	}

	header .inner .btn-wrap .shop-btn span::before {
		width: 14px;
		height: 17px;
		top: -8px;
		left: 19px;
	}
}


/* contents
------------------------------------------------------------------------------ */


/* ページ内リンク位置調整
------------------------------------------------------------------------------ */
/* a.services_anchor {
    display: block;
    padding-top: 120px;
    margin-top: -120px;
} */
a.profile_anchor {
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}
a.works_anchor {
    display: block;
    padding-top: 10px;
    margin-top: -10px;
}
@media(max-width:768px) {
	a.services_anchor {
		padding-top: 80px;
		margin-top: -80px;
	}
}

/* footer
--------------------------------------------------------------------------------------------- */
footer .links {
    background-color: #000;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .links ul {
	display: flex;
	justify-content: center;
}
footer .links ul li:nth-of-type(2) {
	margin-left: 40px;
}
footer .links ul li a {
	color: #fff;
	padding-right: 24px;
	font-family: var(--text-shippori);
	font-size: 14px;
	position: relative;
}
footer .links ul li a:after {
	content: url("../../images/icn_y_w2.png");
	transform: scale(0.5);
	position: absolute;
	top: -4px;
	right: 0px;
}
footer .copy {
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--text-shippori);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .1em;
}

@media screen and (max-width: 768px) {
	footer .links ul li a {
		letter-spacing: .2em;
	}
	footer .links ul li:nth-of-type(2) {
    margin-left: 70px;
	}
}
/* ページ上部へ 
------------------------------------------------------------------------------ 
#scrollUp {
	bottom: 0px;
	right: 0px;
	width: 60px;
	height: 60px;
	background-image: url("../images/icn_up.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 60px;
	text-indent: -9999px;
	z-index: 10;
	position: relative;
}
#scrollUp:hover {
	
}
@media only screen and (max-width: 768px) {
	#scrollUp {
		bottom: 0px;
		right: 0px;
		width: 40px;
		height: 40px;
		background-size: auto 40px;
	}
}
*/