@charset "UTF-8";

/* --------------------------------------------------*/
/* common
/* --------------------------------------------------*/

html {
	font-size: 62.5%;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 500;
	color: #000000;
    -webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
    line-height: 1.667;
    font-size: 1.6rem;
    min-width: 1100px;
}

/*斜体*/
.-oblique {
	font-style: oblique;
}

/* --------------------------------------------------*/
/* z-index
/* --------------------------------------------------*/
.c-header,
.m-glnavi,
.m-glnavi-lang.-vertical {
	z-index: 50;
}
.m-sideShareBox {
	z-index: 40;
}

/* --------------------------------------------------*/
/* header
/* --------------------------------------------------*/
.c-header {
	position: absolute;
	top: 0;
	left: 0;
}
.m-header-logo {
	margin-top: 25px;
	margin-left: 40px;
}

/* --------------------------------------------------*/
/* glnavi
/* --------------------------------------------------*/
.m-glnavi,
.m-glmenu-btn {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
}
.m-glnavi {
	height: 100%;
	width: 520px;
	background-color: #fff;
	box-sizing: border-box;
	padding-left: 90px;
	display: flex;
	flex-direction: column;
	justify-content: center;
    transform: translateX(100%);
}
.m-glnavi-item {
	line-height: 1;
}
.m-glnavi-item:not(:first-child) {
	margin-top: 30px;
}
.m-glnavi-item a {
	text-decoration: none;
	font-size: 2.2rem;
	color: inherit;
	font-style: oblique;
}
.m-glnavi-sublist {
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.m-glnavi-langLink {
	text-decoration: none;
	font-size: 2rem;
	color: inherit;
}
.m-glnavi-lang.-horizontal,
.m-glnavi-sns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 86px;
}
.m-glnavi-lang.-horizontal {
	margin-left: 60px;
}
.m-glnavi-langLink:not(:first-child) {
	position: relative;
}
.m-glnavi-lang.-vertical .m-glnavi-langLink:not(:first-child)::before {
	content: " ";
	width: 6px;
	height: 1px;
	display: block;
	background-color: #000;
	position: absolute;
	top: -10px;
	left: calc(50% - 3px);
}
.m-glnavi-lang.-horizontal .m-glnavi-langLink:not(:first-child)::before {
	content: " ";
	width: 1px;
	height: 11px;
	display: block;
	background-color: #000;
	position: absolute;
	top: calc(50% - 5.5px);
	left: -18px;
}

.m-glnavi-closeBtn {
	position: absolute;
	top: 15px;
	right: 15px;
}

/*メニューの開閉*/
.m-glmenu::after {
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .4);
	opacity: 0;
	pointer-events: none;
	z-index: 50;
	transition: .2s ease-out opacity;
}
.m-glnavi {
	transition: .3s ease-out transform;
}
.m-glnavi-closeBtn {
	transition: .3s ease-out transform;
	transition-delay: .2s;
	transform: scale(0) rotate(180deg);
}
.m-glmenu-btn {
	transition: .3s ease-out transform;
	transition-delay: .2s;
}

/*実行*/
.m-glmenu.-open .m-glmenu-btn {
	transform: translateX(100%);
}
.m-glmenu.-open .m-glnavi {
	transform: translateX(0);
}
.m-glmenu.-open::after {
	opacity: 1;
	pointer-events: auto;
}
.m-glmenu.-open .m-glnavi-closeBtn {
	transform: scale(1) rotate(0);
}


/* --------------------------------------------------*/
/* other
/* --------------------------------------------------*/
.m-glnavi-lang.-vertical {
    position: fixed;
    bottom: 15px;
    right: 0;
    height: 60px;
    width: 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.m-glnavi-lang.-vertical a {
    line-height: 1;
    display: inline-block;
}

.m-sideShareBox {
    position: fixed;
    height: 100%;
    width: 60px;
    background: #fff;
    top: 0;
    left: 0;
}
.m-sideShareBox-inner {
    position: absolute;
    bottom: 15px;
    width: 100%;
    height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


/* --------------------------------------------------*/
/* footer
/* --------------------------------------------------*/
.m-footer {
    background-color: #fff;
    padding: 50px 0;
}
.m-footer-copyright {
    line-height: 1;
    text-align: center;
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
        font-style: italic;
}




/* --------------------------------------------------*/
/* hover
/* --------------------------------------------------*/

/*opacity*/
.m-glnavi-item a:hover,
.hvr-alpha:hover {
	opacity: .7;
}

.m-glmenu-btn {
	line-height: 0;
}
.m-glmenu-btn::after {
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: #fff;
	z-index: 2;
}
.m-glmenu-btn:hover::after {
	opacity: .5;
}

.m-glnavi-langLink[href] {
	opacity: .3;
}
.m-glnavi-langLink[href]:hover {
	opacity: 1;
}