@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;500;600&display=swap');
/*=======================
        General 
=======================*/
html,
body {
	font-weight: 400;
	font-size: 18px;
	font-family: 'Manrope';
	padding: 0;
	margin: 0;
	color: #000;
}
h1, h2, h3, h4, h5, h6, p{
	margin-top: 0;
}
 a:hover{
	 text-decoration: none;
 }
 a {
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	text-decoration: none;
}
:focus{
	outline: none;
}
img{
	max-width: 100%;
}
ul{
	padding: 0;
	margin: 0;
}
/*=======================
       Page Layout
=======================*/
.flex{
	display: flex;
	flex-wrap: wrap;
}
.flex-center{
	justify-content: space-between;
}
.flex-middle{
	align-items: center;
}
.text-center{
	text-align: center;
}
.text-uppercase{
	text-transform: uppercase;
}
*{
	box-sizing: border-box;
}
.wapper{
	max-width: 750px;
	margin: 0 auto;
	position: relative;
}
.container{
	padding: 0 20px;
	max-width: 100%;
	width: 100%;
}
#header{
	    position: fixed;
    top: 0;
    left: auto;
    right: auto;
    z-index: 10;
    background: rgba(0,0,0,0.4);
    padding: 19px 0;
    max-width: 750px;
    width: 100%;
}
.toogle-menu {
	 border: 0 none;
	 height: 30px;
	 width: 30px;
	 z-index: 999;
	 cursor: pointer;
	 outline: 0;
	 background: none;
	 position: relative;
}
 .toogle-menu span {
	 font-size: 0;
	 height: 3px;
	 width: 100%;
	 background: #fff;
	 position: absolute;
	 top: 50%;
	 transform: translateY(-50%);
	 left: 0;
	 border-radius: 5px;
}
 .toogle-menu span::after, .toogle-menu span::before {
	 font-size: 0;
	 height: 3px;
	 width: 100%;
	 background: #fff;
	 position: absolute;
	 left: 0;
	 content: "";
	 border-radius: 5px;
}
 .toogle-menu span::after {
	 transform: translateY(10px);
}
 .toogle-menu span::before {
	 transform: translateY(-10px);
}
.toogle-menu.exit span::before {
    transform: translateY(0px) rotate(45deg);
}
.toogle-menu.exit span::after {
    transform: translateY(0px) rotate(-45deg);
}
.toogle-menu.exit span {
    background-color: transparent;
} 
.toogle-menu{
	margin-right: 25px;
	margin-left: 5px;
}
.instagram{
	font-size: 35px;
	color: #fff;
	display: inline-block;
	line-height: 1;
}
.btn-green{
	padding: 10px 20px;
	display: inline-block;
	background: #17CB13;
	border-radius: 5px;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.home-banner{
	padding: 263px 0 60px;
	position: relative;
}
.home-banner:before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.2);
	content: "";
}
.home-banner .container{
	padding: 0 20px;
	position: relative;
}
.home-banner .info img{
	margin-bottom: 39px;
}
.home-banner .info p{
	margin-bottom: 0;
	font-size: 20px;
	line-height: 35px;
	color: #fff;
	text-shadow: 1px 2px 8px rgba(0,0,0,0.7);
	padding: 0 10px;
	max-width: 220px;
	font-family: 'Noto Serif', serif;
	font-weight: 500;
}
.home-feature{
	padding: 48px 0 36px;
}
.menu-main{
	position: fixed;
    top: 78px;
    left: auto;
    width: 100%;
    bottom: 0;
    background: #000;
    z-index: 10;
    padding: 10px 25px;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
        max-width: 750px;
        opacity: 0;
        visibility: hidden;
}
#header.menu-open .menu-main{
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}
#header.menu-open{
	background: #000;
}
.menu-main li{
	display: block;
	margin: 30px 0;
}
.menu-main li a{
	color: #fff;
	font-size: 20px;
}
.bg-section{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.home-title-section{
	background-size: 100% 100%;
	padding: 77px 0 74px;
	margin-bottom: 85px;
}
.home-title-section h3{
	margin-bottom: 0;
	font-size: 14px;
	line-height: 28px;
	letter-spacing: 0.2px;
	font-weight: 600;
}
.home-title{
	margin-bottom: 40px;
}
.home-title h2{
	background-position: center center;
	font-size: 24px;
	letter-spacing: 0.15em;
	font-weight: 800;
	text-shadow: 0 0 10px rgba(0,0,0,0.4);
	padding: 5px 10px 9px;
	margin-bottom: 4px;
	background-repeat: no-repeat;
	background-size: contain;
	color: #fff;
}
.home-title p{
	font-size: 20px;
	color: #ADADAD;
	font-family: 'Julius Sans One', sans-serif;
	margin-bottom: 0;
	font-weight: 400;
}
.news-it{
	margin-bottom: 32px;
}
.news-it:last-child{
	margin-bottom: 0;
}
.image-fit{
	display: block;
	overflow-y: hidden;
}
.image-fit img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
}
.news-it .featured img{
	border-radius: 60px;
}
.news-it .info{
	padding-top: 20px;
}
.news-it .info h3{
	font-size: 20px;
	line-height: 28px;
	font-weight: 800;
	margin-bottom: 18px;
}
.news-it .info p{
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.2px;
	margin-bottom: 0;
	padding: 0 10px;
}
.news-it .info h3 a{
	color: #000;
}
.news-list{
	margin-bottom: 60px;
}
.home-section-2{
	background-size: 100% 100%;
	padding: 197px 0 184px;
	margin-bottom: 41px;
}
.home-section-2 img{
	display: inline-block;
}
.home-section-featured{
	background-size: 100% 100%;
	padding: 26px 0;
}
.home-service{
	margin: 82px 0 4px;
}
.home-service .home-title h2{
	padding: 15px 0 7px;
	margin-bottom: 0;
}
.service-it{
	margin-bottom: 40px;
	padding: 0 10px;
}
.service-it .title{
	margin-bottom: 33px;
}
.service-it .title h3{
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}
.service-it .title p{
	display: inline-block;
	padding: 0 10px;
	background: #F0D3E2;
	min-width: 200px;
	margin: 0 auto 20px;
	color: #000;
	font-size: 14px;
	line-height: 28px;
	letter-spacing: 0.2px;
	border-radius: 14px;
}
.service-it .title h2{
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0;
}
.service-it .des p, .service-it .des li{
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 24px;
}
.service-it .des li{
	margin-bottom: 0;
	display: flex;
}
.service-it .des li:before{
	display: inline-block;
	content: '・';
	margin-right: 0px;
}
.service-it .des ol li:before{
	content: '※';
}
.service-it .des ol{
	margin: 0;
	padding: 0;
}
.service-it .des ul{
	margin-bottom: 25px;
}
.service-it:nth-child(2){
	background: #EBEBEB;
	padding: 40px 20px;
}
.service-it:nth-child(2) .title p{
	background: #fff;
	color: #000;
}
.service-list{
	margin-bottom: 60px;
}
.home-flow{
	padding: 209px 0 221px;
	background-size: 100% 100%;
}
.home-flow h2{
	font-size: 24px;
	letter-spacing: 0.15em;
	font-weight: 800;
	margin-bottom: 8px;
	color: #fff;
}
.home-flow li{
	display: block;
	margin-bottom: 15.5px;
}
.home-flow li:last-child{
	margin-bottom: 0;
}
.home-flow li h3{
	font-size: 16px;
	margin-bottom: 2px;
	color: #fff;
	font-family: 'Tsunagi Gothic';
	font-weight: 900;
}
.home-flow li h3 span{
	font-size: 40px;
	display: inline-block;
	margin-left: 6px;
}
.home-flow li h4{
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 5px;
}
.home-flow li p{
	font-size: 14px;
	margin-bottom: 0;
	line-height: 24px;
	letter-spacing: 0.2px;
}
.home-flow .container{
	padding: 0 30px;
}
.home-passion{
	padding: 13px 0 79px;
}
.home-passion .home-title h2{
	padding: 16px 10px 2px;
}
.home-passion .des p{
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 28px;
	letter-spacing: 0.2px;
}
.home-passion .des p:last-child{
	margin-bottom: 0;
}
.home-passion .des{
	margin-bottom: 34px;
	padding: 0 10px;
}
.home-passion .home-section-featured{
	padding: 78px 0 41px;
}
.passion-bottom{
	padding: 22px 0 0;
}
.passion-bottom .container{
	padding: 0 30px ;
}
.passion-bottom h3{
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 5px;
}
.passion-bottom p{
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.2px;
	margin-bottom: 20px;
}
.passion-bottom p:last-child{
	margin-bottom: 0;
}
.home-passion{
	padding-bottom: 82px;
}
.home-atelier .des p{
	padding: 0 10px;
	margin-bottom: 28px;
	font-size: 14px;
	line-height: 28px;
	letter-spacing: 0.2px;
}
.home-atelier .des img{
	display: block;
	width: 100%;
	margin-bottom: 59px;
}
.home-atelier{
	margin-bottom: 57px;
}
.home-other .home-title h2{
	padding: 84px 20px 77px;
	background-size: 100% 100%;
}
.home-other .des{
	padding: 0 5px 47px 14px;
}
.home-other .des li{
	margin-bottom: 28px;
	font-size: 14px;
	line-height: 28px;
	letter-spacing: 0.2px;
	display: block;
}
.home-other .des ol{
	margin: 0;
	padding: 0;
}
.home-other .des li:before {
    display: inline-block;
    content: '・';
    margin-right: 0px;
}
.home-other .des li:last-child{
	margin-bottom: 0;
}
.home-other .des ol li:before {
    content: '※';
}
.home-other .des ol li{
	display: flex;
}
.block{
	display: block;
	width: 100%;
}
#footer{
	padding: 52px 0;
}
#footer .instagram{
	color: #000;
	margin-bottom: 22px;
}
#footer p{
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 0.2px;
	margin-bottom: 0;
}
.home-other .home-title{
	    margin-bottom: 37px;
}
.home-atelier .home-title h2{
	padding: 11px 10px 2px;
	margin-bottom: 6px;
}
.service-it:nth-child(2) .title{
	margin-bottom: 29px;
}