@charset "UTF-8";

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */


/*General Elements
---------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	font-family: "Zen Kaku Gothic New",'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	color: #2A2A2A;
	background: #F9F7F3;
	font-weight: 500;
}

:lang(en) {
	font-family: "proxima-nova", sans-serif;
	font-weight: 500;
	font-style: normal;
}


a {
	text-decoration: none;
	outline: none;
	color: #2A2A2A;
}

a:hover,
a:active,
a:visited,
a:focus {
	text-decoration: none;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

strong {
	font-weight: bold;
}
/*l-header
---------------------------------------------------------------------------- */
.l-header {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 1000;
}

.l-menu {
  width: 40px;
  height: 40px;
  background-color: #C9B79D;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-menu span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}

.l-menu span:first-child {
  top: 15px;
}

.l-menu span:last-child {
  top: 24px; /* 20 + 9px間隔 */
}

/* クリック時 */
.l-menu.active span:first-child,
.l-menu.active span:last-child {
  top: 19px; /* 2本を中央で重ねる */
}


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


/* l-gNav
---------------------------------------------------------------------------- */
.l-gNav {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	background: #C9B79D;
	color: #fff;
}

.l-gNav-pic {
	position: absolute;
	width: 186px;
	left: 70px;
	top: 50%;
	transform: translateY(-50%);
}

.l-gNav-content {
	max-width: 430px;
	margin: 0 auto;
}

.l-gNav-button {
	max-width: 430px;
	margin: 60px auto 0;
}

.l-gNav-button a {
	display: block;
	background:url("../../images/common/ico_menu_arrow.svg")no-repeat, #F9F7F3;
	background-size: 14px;
	background-position: right 30px center;
	border: solid 1px #2A2A2A;
	min-height: 80px;
	font-size: 1.4rem;
	color: #2A2A2A;
	font-weight: 700;
	padding: 27px 0;
	text-align: center;
	transition: .3s;
}

.l-gNav-button a span {
	display: inline-block;
	padding: 0 40px;
	position: relative;
}

.l-gNav-button a span::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	left: 0;
	top: -3px;
	background: url("../../images/common/ico_menu_line.svg")no-repeat;
	background-size: 30px;
	background-position: center;
}

.l-gNav-list li {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
}

.l-gNav-list li + li {
	margin-top: 40px;
}

.l-gNav-list li span {
	font-size: 1.8rem;
	display: inline-block;
	padding: 0 20px 0 0;
	vertical-align: sub;
}

.l-gNav-list li span.insta {
	padding: 0 0 0 30px;
	font-size: 1.2rem;
	position: relative;
}

.l-gNav-list li span.insta::before {
	position: absolute;
	content: "";
	width: 18px;
	height: 18px;
	background: url("../../images/common/ico_menu_ig.svg")no-repeat;
	background-size: 18px;
	background-position: left;
	left: 0;
	top: -2px;
}



.l-gNav-list li a {
	display: block;
	color: #fff;
}

@media screen and (min-width: 768px){

	.l-gNav-inner {
		width: 50%;
		margin: 0 0 0 auto;
		position: relative;
		height: 100%;
	}

	.l-gNav-wrp {
		position: absolute;
		width: 100%;
		left: 0;
		bottom: 120px;
	}

	.l-gNav-content {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.l-gNav-list {
		width: 45%;
	}


	.l-gNav-button a:hover {
		background:url("../../images/common/ico_arrow.svg")no-repeat, #2A2A2A;
		background-size: 14px;
		background-position: right 20px center;
		color: #fff;
	}

}


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

	.l-gNav-wrp {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 30px;
	}

	.l-gNav-inner {
	    position: relative;
	    height: 100%;
	}

	.l-gNav-button a {
	    font-size: 1.2rem;
	    min-height: 65px;
	    padding: 21px 0;
	    background-size: 12px;
	    background-position: right 20px center;
	}

.l-gNav-button a span::before {
    background-size: 25px;
}

	.l-gNav-pic {
		display: none;
	}

	.l-gNav-button {
		max-width: 335px;
		margin: 40px auto 0;
	}

	.l-gNav-content {
		max-width: 200px;
	}

	.l-gNav-list +  .l-gNav-list {
		margin: 40px 0 0;
	}

}



/* l-pageBody
---------------------------------------------------------------------------- */
.l-pageBody {
    width: 100%;
}

@media screen and (max-width: 767px){
    .l-pageBody {
        min-width: 0;
    }
}


/* l-contact
---------------------------------------------------------------------------- */
.l-contact {
    background: #DBD5CD;
    text-align: center;
		padding: 60px 30px 80px;
		position: relative;
		z-index: 5;
}

.l-contact-head {
    display: inline-block;
    font-size: 1.2rem;
    border-bottom: solid 1px #2A2A2A;
    line-height: 1;
    padding: 0 0 10px;
    margin: 0 0 30px;
}

.l-contact p {
	font-size: 1.4rem;
	font-weight: 500;
}

.l-contact-button {
    max-width: 500px;
    margin: 40px auto 0;
}

.l-contact-button a {
    display: block;
    color: #fff;
    min-height: 80px;
    padding: 29px 0;
    font-size: 1.4rem;
    font-weight: 700;
		background: url("../../images/common/ico_arrow.svg")no-repeat,#454545;
		background-size: 14px;
		background-position: right 30px center;
		border: solid 1px #454545;
		transition: .3s;
}

.l-contact-button a span {
	display: inline-block;
	padding: 0 60px;
	position: relative;
}

.l-contact-button a span::before {
	position: absolute;
	content: "";
	background: url("../../images/common/ico_line.svg")no-repeat;
	background-size: 30px;
	background-position: center;
	width: 30px;
	height: 30px;
	left: 0;
	top: -5px;
	pointer-events: none;
}

@media screen and (min-width: 768px){

	.l-contact-button a:hover {
			background: url("../../images/common/ico_menu_arrow.svg")no-repeat,#fff;
			background-size: 14px;
			background-position: right 20px center;
			color: #454545;
			border: solid 1px #454545;
	}
}

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

		.l-contact p {
	    font-size: 1.3rem;
	    line-height: 2.3;
	}

	.l-contact {
	    padding: 60px 20px 100px;
	}

	.l-contact-button {
	    max-width: 335px;
	}

	.l-contact-button a {
	    font-size: 1.2rem;
	}

	.l-contact-button a span {
	    padding: 0 40px;
	}

	.l-contact-button a span::before {
	    background-size: 25px;
	}

	.l-contact-button a {
	    background-size: 12px;
	}

}


/* l-pageTop
---------------------------------------------------------------------------- */
.l-pageTop {
}

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


/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
	background: #DBD5CD;
	padding: 0 10px;
	position: relative;
	z-index: 5;
}

.l-footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: solid 1px #2A2A2A;
	padding: 20px 10px;
}

.l-footer p {
	font-size: 1.2rem;
}

.l-footer .ig a {
	display: block;
	padding: 0 0 0 28px;
	background: url("../../images/common/ico_footer_ig.svg")no-repeat;
	background-size: 18px;
	background-position: left center;
}

@media screen and (min-width: 768px){

	.l-footer .ig a:hover {
		text-decoration: underline;
	}
}

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

	.l-footer-content {
    padding: 20px 0;
	}

	.l-footer p {
	    font-size: 1rem;
	}

	.l-footer .ig a {
	    background-size: 12px;
	    padding: 0 0 0 20px;
	}
}
