@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300&display=swap');
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes anime {
	0% {
	  visibility: visible;
	  opacity: 0;
	}
	15% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
    }
    48.3% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
a {
    text-decoration: none;
	color: #646464;
}

a:hover {
	color: #646464;
	opacity: 0.75 !important;
}

body {
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	color: #646464;
}

.txt_min {
	font-size: 0.75em;
}
@media screen and (min-width: 1140px) {
.sp {
	display: none;
}
.tab {
	display: none;
}
.top-wrapper {
    background-image: url(https://www.lilyarchitects.com/images/top.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    text-align: center; 
    height: 100vh;
    position: relative;
    margin-bottom: 80px;
}

.container {
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    height: 100%;
    position: relative;
    display: flex;
}

.container img {
	width: 40vw;
    max-width: 100%;
    height: auto;
    animation: fadeIn 3s ease 0s 1 normal;
}
	
content {
	
}

.about {
    width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 24px;
    line-height: 2em;
    margin-bottom: 40px;
    letter-spacing: 0.25em;
}

.about p {
    font-size: 15px;
    line-height: 2em;
    margin: 0 0 60px 0;
    letter-spacing: 0.25em;
}

.btn a {
    width:280px;
    background-color:#c8c8c8;
    padding: 15px 0;
    font-size: 22px;
    color: white;
    border-radius: 50px;
    display: inline-block;
    font-family: circe,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.25em;
	text-align: center;
}

.btn a:hover {
    background-color:#d7d7dc;
}

.adress {
    text-align: center;
    margin: 100px auto;
}

.adress h5 {
    font-size: 14px;
    margin-bottom: 5px;
    letter-spacing: 0.25em;
}

.adress h3 {
    font-size: 20px;
    margin-bottom: 5px;
    letter-spacing: 0.25em;
}

.adress h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-family: circe,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.25em;
}

.adress p {
    font-size: 15px;
    line-height: 2em;
    letter-spacing: 0.25em;
}

.map {
    margin-bottom: 80px;
}

.contact {
    text-align: center;
}

.contact a {
    width:280px;
    background-color:#c8c8c8;
    padding: 15px 0;
    font-size: 22px;
    color: white;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 80px;
    font-family: circe,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.25em;
}

.contact a:hover {
    background-color:#d7d7dc;
}

footer {
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
    background-color: #232328;
    color: white;
}

footer img {
    width: 200px;
    height: auto;
    margin-bottom: 35px;
}

footer p {
    font-size: 12px;
    letter-spacing: 0.25em;
}

.adress p a {
    color: black;
    text-decoration: none;
}

.works {
	width: 1000px;
	margin: 100px auto 0 auto;
}

.works_cnt {
	display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.works_box {
	width: 30%;
}

.works_box_l {
	width: 45%;
}

.works_box img {
	width: 100%;
}

.works_box_l img {
	width: 100%;
}


.ttl {
	font-family: 'Work Sans', sans-serif;
	font-size: 40px;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

.works h4 {
	font-weight: lighter;
    letter-spacing: 0.1em;
}

.works .btn {
	text-align: center;
}

.sns {
	background-color: #f5f5fa;
    padding: 100px 0;
    margin: 100px auto 0 auto;
}

.sns_cnt {
	width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

/*　ハンバーガーボタン　*/
#nav-toggle {
	position: fixed;
	top: 3.75%;
	right: 3.75%;
	height: 32px;
	cursor: pointer;
}
#nav-toggle > div {
	position: relative;
	width: 40px;
}
#nav-toggle span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: white;
	position: absolute;
	transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 14px;
}
#nav-toggle span:nth-child(3) {
	top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
	top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
	top: 23px;
}
.open #nav-toggle span {
	background: #c8c8c8;
}
.open #nav-toggle span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
	top: 15px;
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}
/* z-index */
#nav-toggle {
	z-index: 1000;
}

#container {
	z-index: 900;
}
#gloval-nav {
	background: white;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    letter-spacing: 0.25em;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    width: 50%;
    font-size: 1.75em;
    line-height: 0.5em;
    padding-left: 10%;
    justify-content: center;
}
#gloval-nav a {
	display: block;
	text-decoration: none;
	padding: 20px 0;
	color: #c8c8c8;
}
#gloval-nav a:hover {
	color: #c8c8c8;
}
#gloval-nav ul {
	list-style: none;
}
#gloval-nav ul li {
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav ul li:nth-child(2) {
	transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
	transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
	transition-delay: 0.45s;
}
#gloval-nav ul li:nth-child(5) {
	transition-delay: 0.6s;
}
/* open */
.open {
	overflow: hidden;
}
.open #gloval-nav {
	visibility: visible;
	opacity: 1;
}
.open #gloval-nav li {
	opacity: 1;
	transform: translateX(0);
	transition: transform 1s ease, opacity 0.9s ease;
}
/*　下層ハンバーガーボタン　*/
#nav-toggle_lp {
	position: fixed;
	top: 3.75%;
	right: 3.75%;
	height: 32px;
	cursor: pointer;
}
#nav-toggle_lp > div {
	position: relative;
	width: 40px;
}
#nav-toggle_lp span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: #c8c8c8;
	position: absolute;
	transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle_lp span:nth-child(1) {
	top: 0;
}
#nav-toggle_lp span:nth-child(2) {
	top: 14px;
}
#nav-toggle_lp span:nth-child(3) {
	top: 28px;
}
#nav-toggle_lp:hover span:nth-child(1) {
	top: 4px;
}
#nav-toggle_lp:hover span:nth-child(3) {
	top: 23px;
}
.open #nav-toggle_lp span {
	background: white;
}
.open #nav-toggle_lp span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}
.open #nav-toggle_lp span:nth-child(2) {
	top: 15px;
	width: 0;
	left: 50%;
}
.open #nav-toggle_lp span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}
/* z-index */
#nav-toggle_lp {
	z-index: 1000;
}

#container_lp {
	z-index: 900;
}
#gloval-nav_lp {
	background: #c8c8c8;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    letter-spacing: 0.25em;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    width: 100%;
    font-size: 1.75em;
    line-height: 0.75em;
    justify-content: center;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
}
#gloval-nav_lp a {
	display: block;
	text-decoration: none;
	padding: 20px 0;
	color: white;
}
#gloval-nav_lp a:hover {
	color: white;
}
#gloval-nav_lp ul {
	list-style: none;
}
#gloval-nav_lp ul li {
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav_lp ul li:nth-child(2) {
	transition-delay: 0.15s;
}
#gloval-nav_lp ul li:nth-child(3) {
	transition-delay: 0.3s;
}
#gloval-nav_lp ul li:nth-child(4) {
	transition-delay: 0.45s;
}
#gloval-nav_lp ul li:nth-child(5) {
	transition-delay: 0.6s;
}
/* open */
.open {
	overflow: hidden;
}
.open #gloval-nav_lp {
	visibility: visible;
	opacity: 1;
}
.open #gloval-nav_lp li {
	opacity: 1;
	transform: translateX(0);
	transition: transform 1s ease, opacity 0.9s ease;
}

.effect-fade {
	opacity: 0;
    transform: translate(0, 15px);
    transition: all 1500ms;
}

.effect-fade.effect-scroll {
	opacity: 1;
	transform: translate(0, 0);
}

.logo {
	width: 200px;
    margin: 2.5% 0 0 2.5%;
}

.works_slider { 
	position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 5%;
    margin-bottom: 10%;
    border-bottom: 1px solid #c8c8c8;
    padding-bottom: 10%;
}
.slider{
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100% !important;
  background-color: white;
}
.slider .image{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: anime 15s 0s infinite;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.swiper-button-prev, .swiper-button-next {
    color: white !important;
	outline:none;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2.5em !important;
	outline:none;
}
.swiper-slide img {
	width: 100%;
}
.swiper-container {
    width: 100%;
	margin-bottom: 2.5%;
}
.thumbnail .swiper-slide-active {
	opacity: 0.5;
}
a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}

.works_caption {
	padding-bottom: 75px;
    margin-bottom: 100px;
    border-bottom: 1px solid #c8c8c8;
}

.works_caption h3 {
	font-size: 16px;
}

.works_caption p {
	font-size: 14px;
    line-height: 1.75em;
}

.works h2 {
	font-weight: 100;
    letter-spacing: 0.1em;
    margin-bottom: -30px;
    font-size: 22px;
}

.works p {
	font-size: 14px;
    margin-top: 50px;
    line-height: 1.75em;
}}
@media screen and (max-width: 1139px) and (min-width: 481px) {
.sp {
	display: none;
}
.pc {
	display: none;
}
.top-wrapper {
    background-image: url(https://www.lilyarchitects.com/images/top.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    text-align: center; 
    height: 70vh;
    position: relative;
    margin-bottom: 80px;
}

.container {
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    height: 100%;
    position: relative;
    display: flex;
}

.container img {
	width: 40vw;
    max-width: 100%;
    height: auto;
    animation: fadeIn 3s ease 0s 1 normal;
}

content {
	
}

.about {
	width: 85%;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 1.8em;
    line-height: 2em;
    margin-bottom: 40px;
    letter-spacing: 0.25em;
}

.about p {
    font-size: 1em;
    line-height: 2em;
    margin: 0 0 60px 0;
    letter-spacing: 0.25em;
	text-align: justify;
}

.btn a {
    width:280px;
    background-color:#c8c8c8;
    padding: 15px 0;
    font-size: 22px;
    color: white;
    border-radius: 50px;
    display: inline-block;
    font-family: circe,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.25em;
	text-align: center;
}

.btn a:hover {
    background-color:#d7d7dc;
}

.adress {
    text-align: center;
    margin: 100px auto;
}

.adress h5 {
    font-size: 14px;
    margin-bottom: 5px;
    letter-spacing: 0.25em;
}

.adress h3 {
    font-size: 20px;
    margin-bottom: 5px;
    letter-spacing: 0.25em;
}

.adress h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-family: circe,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.25em;
}

.adress p {
    font-size: 15px;
    line-height: 2em;
    letter-spacing: 0.25em;
}

.map {
    margin-bottom: 80px;
}

.contact {
    text-align: center;
}

.contact a {
    width:280px;
    background-color:#c8c8c8;
    padding: 15px 0;
    font-size: 22px;
    color: white;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 80px;
    font-family: circe,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.25em;
}

.contact a:hover {
    background-color:#d7d7dc;
}

footer {
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
    background-color: #232328;
    color: white;
}

footer img {
    width: 200px;
    height: auto;
    margin-bottom: 35px;
}

footer p {
    font-size: 12px;
    letter-spacing: 0.25em;
}

.adress p a {
    color: black;
    text-decoration: none;
}

.works {
	width: 85%;
	margin: 100px auto 0 auto;
}

.works_cnt {
	display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.works_box {
	width: 30%;
}

.works_box_l {
	width: 45%;
}

.works_box img {
	width: 100%;
}

.works_box_l img {
	width: 100%;
}


.ttl {
	font-family: 'Work Sans', sans-serif;
	font-size: 2.5em;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

.works h4 {
	font-size: 1em;
	font-weight: normal;
    letter-spacing: 0.1em;
}

.works .btn {
	text-align: center;
}

.sns {
	background-color: #f5f5fa;
    padding: 100px 0 75px 0;
    margin: 100px auto 0 auto;
}

.sns_cnt {
	width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/*　ハンバーガーボタン　*/
#nav-toggle {
	position: fixed;
	top: 3.75%;
	right: 3.75%;
	height: 32px;
	cursor: pointer;
}
#nav-toggle > div {
	position: relative;
	width: 40px;
}
#nav-toggle span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: white;
	position: absolute;
	transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 14px;
}
#nav-toggle span:nth-child(3) {
	top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
	top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
	top: 23px;
}
.open #nav-toggle span {
	background: #c8c8c8;
}
.open #nav-toggle span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
	top: 15px;
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}
/* z-index */
#nav-toggle {
	z-index: 1000;
}

#container {
	z-index: 900;
}
#gloval-nav {
	background: white;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    letter-spacing: 0.25em;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    width: 50%;
    font-size: 1.75em;
    line-height: 0.5em;
    padding-left: 10%;
    justify-content: center;
}
#gloval-nav a {
	display: block;
	text-decoration: none;
	padding: 20px 0;
	color: #c8c8c8;
}
#gloval-nav a:hover {
	color: #c8c8c8;
}
#gloval-nav ul {
	list-style: none;
}
#gloval-nav ul li {
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav ul li:nth-child(2) {
	transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
	transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
	transition-delay: 0.45s;
}
#gloval-nav ul li:nth-child(5) {
	transition-delay: 0.6s;
}
/* open */
.open {
	overflow: hidden;
}
.open #gloval-nav {
	visibility: visible;
	opacity: 1;
}
.open #gloval-nav li {
	opacity: 1;
	transform: translateX(0);
	transition: transform 1s ease, opacity 0.9s ease;
}
/*　下層ハンバーガーボタン　*/
#nav-toggle_lp {
	position: fixed;
	top: 3.75%;
	right: 3.75%;
	height: 32px;
	cursor: pointer;
}
#nav-toggle_lp > div {
	position: relative;
	width: 40px;
}
#nav-toggle_lp span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: #c8c8c8;
	position: absolute;
	transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle_lp span:nth-child(1) {
	top: 0;
}
#nav-toggle_lp span:nth-child(2) {
	top: 14px;
}
#nav-toggle_lp span:nth-child(3) {
	top: 28px;
}
#nav-toggle_lp:hover span:nth-child(1) {
	top: 4px;
}
#nav-toggle_lp:hover span:nth-child(3) {
	top: 23px;
}
.open #nav-toggle_lp span {
	background: white;
}
.open #nav-toggle_lp span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}
.open #nav-toggle_lp span:nth-child(2) {
	top: 15px;
	width: 0;
	left: 50%;
}
.open #nav-toggle_lp span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}
/* z-index */
#nav-toggle_lp {
	z-index: 1000;
}

#container_lp {
	z-index: 900;
}
#gloval-nav_lp {
	background: #c8c8c8;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    letter-spacing: 0.25em;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    width: 100%;
    font-size: 1.75em;
    line-height: 0.75em;
    justify-content: center;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
	margin-top: -35%;
}
#gloval-nav_lp a {
	display: block;
	text-decoration: none;
	padding: 20px 0;
	color: white;
}
#gloval-nav_lp a:hover {
	color: white;
}
#gloval-nav_lp ul {
	list-style: none;
}
#gloval-nav_lp ul li {
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav_lp ul li:nth-child(2) {
	transition-delay: 0.15s;
}
#gloval-nav_lp ul li:nth-child(3) {
	transition-delay: 0.3s;
}
#gloval-nav_lp ul li:nth-child(4) {
	transition-delay: 0.45s;
}
#gloval-nav_lp ul li:nth-child(5) {
	transition-delay: 0.6s;
}
/* open */
.open {
	overflow: hidden;
}
.open #gloval-nav_lp {
	visibility: visible;
	opacity: 1;
}
.open #gloval-nav_lp li {
	opacity: 1;
	transform: translateX(0);
	transition: transform 1s ease, opacity 0.9s ease;
}

.effect-fade {
	opacity: 0;
    transform: translate(0, 15px);
    transition: all 1500ms;
}

.effect-fade.effect-scroll {
	opacity: 1;
	transform: translate(0, 0);
}

.logo {
	width: 17.5%;
    margin: 5% 0 0 2.5%;
}

.works_slider { 
	position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 5%;
    padding-bottom: 10%;
    margin-bottom: 10%;
    border-bottom: 1px solid #c8c8c8;
}
.slider{
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100% !important;
  background-color: white;
}
.slider .image{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: anime 15s 0s infinite;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.swiper-button-prev, .swiper-button-next {
    color: white !important;
	outline:none;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2.5em !important;
	outline:none;
}
.swiper-slide img {
	width: 100%;
}
.swiper-container {
    width: 100%;
	margin-bottom: 2.5%;
}
.thumbnail .swiper-slide-active {
	opacity: 0.5;
}
a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}

.works_caption {
	padding-bottom: 75px;
    margin-bottom: 100px;
    border-bottom: 1px solid #c8c8c8;
}

.works_caption h3 {
	font-size: 1.25em;
    font-weight: normal;
    margin-bottom: -40px;
    letter-spacing: 0.1em;
}

.works_caption p {
	font-size: 14px;
    line-height: 1.75em;
}

.works h2 {
	font-weight: 100;
    letter-spacing: 0.1em;
    margin-bottom: -30px;
    font-size: 1.5em;
}

.works p {
	font-size: 1em;
    margin-top: 50px;
    line-height: 1.75em;
}
.sns_cnt .btn {
	margin: 0 2.5% 5% 2.5%;
}
}
@media screen and (max-width: 480px) {
.pc {
	display: none;
}
.tab {
	display: none;
}
.top-wrapper {
    background-image: url(https://www.lilyarchitects.com/images/top.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    text-align: center; 
    height: 100vh;
    position: relative;
	margin-bottom: 12.5%;
}

.container {
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    height: 100%;
    position: relative;
    display: flex;
}

.container img {
	width: 40vh;
    max-width: 100%;
    height: auto;
    animation: fadeIn 3s ease 0s 1 normal;
}

.about {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 1.5em;
    line-height: 1.375em;
    margin-bottom: 10%;
    letter-spacing: 0.25em;
}

.about p {
	font-size: 1em;
    line-height: 2em;
    margin: 0 0 60px 0;
    letter-spacing: 0.15em;
    text-align: justify;
}

.btn a {
    width:280px;
    background-color:#c8c8c8;
    padding: 15px 0;
    font-size: 22px;
    color: white;
    border-radius: 50px;
    display: inline-block;
    font-family: circe,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.25em;
	text-align: center;
	margin-bottom: 10%;
}

.btn a:hover {
    background-color:#d7d7dc;
}

.adress {
	text-align: center;
    margin: 20% auto;
    width: 90%;
}

.adress h5 {
    font-size: 14px;
    margin-bottom: 5px;
    letter-spacing: 0.25em;
}

.adress h3 {
    font-size: 17px;
    letter-spacing: 0.25em;
}

.adress h4 {
    font-size: 18px;
    font-family: circe,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.25em;
    margin-top: 0;
}

.adress p {
    font-size: 15px;
    line-height: 2em;
    letter-spacing: 0.25em;
}

.map {
	margin-bottom: 20%;
}

.contact {
    text-align: center;
}

.contact a {
    width:280px;
    background-color:#c8c8c8;
    padding: 15px 0;
    font-size: 22px;
    color: white;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20%;
    font-family: circe,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.25em;
}

.contact a:hover {
    background-color:#d7d7dc;
}

footer {
    padding-top: 15%;
    padding-bottom: 10%;
    text-align: center;
    background-color: #232328;
    color: white;
}

footer img {
    width: 50%;
    height: auto;
    margin-bottom: 10%;
}

footer p {
    font-size: 10px;
    letter-spacing: 0.25em;
}

.adress p a {
    color: black;
    text-decoration: none;
}

.works {
	width: 90%;
    margin: 20% auto 0 auto;
}

.works_cnt {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.works_box {
	width: 100%;
}

.works_box_l {
	width: 100%;
}

.works_box img {
	width: 100%;
}

.works_box_l img {
	width: 100%;
}


.ttl {
	font-family: 'Work Sans', sans-serif;
    font-size: 2em;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 10%;
}

.works h4 {
	font-weight: normal;
    letter-spacing: 0.1em;
    margin: 5% 0 12.5% 0;
	font-size: 1.15em;
}

.works .btn {
	text-align: center;
}

.sns {
	background-color: #f5f5fa;
    padding: 15% 0;
    margin: 15% auto 0 auto;
	width: 100%;
}

.sns_cnt {
	width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
	flex-wrap: wrap;
}

/*　ハンバーガーボタン　*/
#nav-toggle {
	position: fixed;
	top: 3.75%;
	right: 3.75%;
	height: 32px;
	cursor: pointer;
}
#nav-toggle > div {
	position: relative;
	width: 40px;
}
#nav-toggle span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: white;
	position: absolute;
	transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 14px;
}
#nav-toggle span:nth-child(3) {
	top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
	top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
	top: 23px;
}
.open #nav-toggle span {
	background: #c8c8c8;
}
.open #nav-toggle span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
	top: 15px;
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}
/* z-index */
#nav-toggle {
	z-index: 1000;
}

#container {
	z-index: 900;
}
#gloval-nav {
	background: white;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    letter-spacing: 0.25em;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    width: 50%;
    font-size: 1.75em;
    line-height: 0.5em;
    padding-left: 10%;
    justify-content: center;
}
#gloval-nav a {
	display: block;
	text-decoration: none;
	padding: 20px 0;
	color: #c8c8c8;
}
#gloval-nav a:hover {
	color: #c8c8c8;
}
#gloval-nav ul {
	list-style: none;
}
#gloval-nav ul li {
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav ul li:nth-child(2) {
	transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
	transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
	transition-delay: 0.45s;
}
#gloval-nav ul li:nth-child(5) {
	transition-delay: 0.6s;
}
/* open */
.open {
	overflow: hidden;
}
.open #gloval-nav {
	visibility: visible;
	opacity: 1;
}
.open #gloval-nav li {
	opacity: 1;
	transform: translateX(0);
	transition: transform 1s ease, opacity 0.9s ease;
}
/*　下層ハンバーガーボタン　*/
#nav-toggle_lp {
	position: fixed;
	top: 3.75%;
	right: 3.75%;
	height: 32px;
	cursor: pointer;
}
#nav-toggle_lp > div {
	position: relative;
	width: 40px;
}
#nav-toggle_lp span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: #c8c8c8;
	position: absolute;
	transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle_lp span:nth-child(1) {
	top: 0;
}
#nav-toggle_lp span:nth-child(2) {
	top: 14px;
}
#nav-toggle_lp span:nth-child(3) {
	top: 28px;
}
#nav-toggle_lp:hover span:nth-child(1) {
	top: 4px;
}
#nav-toggle_lp:hover span:nth-child(3) {
	top: 23px;
}
.open #nav-toggle_lp span {
	background: white;
}
.open #nav-toggle_lp span:nth-child(1) {
	top: 15px;
	transform: rotate(45deg);
}
.open #nav-toggle_lp span:nth-child(2) {
	top: 15px;
	width: 0;
	left: 50%;
}
.open #nav-toggle_lp span:nth-child(3) {
	top: 15px;
	transform: rotate(-45deg);
}
/* z-index */
#nav-toggle_lp {
	z-index: 1000;
}

#container_lp {
	z-index: 900;
}
#gloval-nav_lp {
	background: #c8c8c8;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    letter-spacing: 0.25em;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    width: 100%;
	font-size: 1.375em;
    line-height: 0.75em;
    justify-content: center;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
}
#gloval-nav_lp a {
	display: block;
	text-decoration: none;
	padding: 20px 0;
	color: white;
}
#gloval-nav_lp a:hover {
	color: white;
}
#gloval-nav_lp ul {
	list-style: none;
}
#gloval-nav_lp ul li {
	opacity: 0;
	transform: translateX(200px);
	transition: transform 0.6s ease, opacity 0.2s ease;
}
#gloval-nav_lp ul li:nth-child(2) {
	transition-delay: 0.15s;
}
#gloval-nav_lp ul li:nth-child(3) {
	transition-delay: 0.3s;
}
#gloval-nav_lp ul li:nth-child(4) {
	transition-delay: 0.45s;
}
#gloval-nav_lp ul li:nth-child(5) {
	transition-delay: 0.6s;
}
/* open */
.open {
	overflow: hidden;
}
.open #gloval-nav_lp {
	visibility: visible;
	opacity: 1;
}
.open #gloval-nav_lp li {
	opacity: 1;
	transform: translateX(0);
	transition: transform 1s ease, opacity 0.9s ease;
}

.effect-fade {
	opacity: 0;
    transform: translate(0, 15px);
    transition: all 1500ms;
}

.effect-fade.effect-scroll {
	opacity: 1;
	transform: translate(0, 0);
}

.logo {
	width: 35%;
    margin: 7.5% 0 0 5%;
}

.works_slider { 
	position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 5%;
    padding-bottom: 10%;
    margin-bottom: 10%;
    border-bottom: 1px solid #c8c8c8;
}
.slider{
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100% !important;
  background-color: white;
}
.slider .image{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: anime 15s 0s infinite;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
	
.swiper-button-prev, .swiper-button-next {
    color: white !important;
	outline:none;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2em !important;
    outline: none;
    opacity: 65%;
}
.swiper-slide img {
	width: 100%;
}
.swiper-container {
    width: 100%;
	margin-bottom: 2.5%;
}
.thumbnail .swiper-slide-active {
	opacity: 0.5;
}
a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}

.works_caption {
	padding-bottom: 10%;
    margin-bottom: 15%;
    border-bottom: 1px solid #c8c8c8;
}

.works_caption h3 {
	font-size: 1em;
    letter-spacing: 0.1em;
}

.works_caption p {
	font-size: 14px;
    line-height: 1.75em;
}

.works h2 {
	font-weight: 100;
    letter-spacing: 0.1em;
    font-size: 1.25em;
}

.works p {
	font-size: 1em;
    line-height: 1.75em;
    text-align: justify;
}}