@charset "utf-8";





/* オーバーレイメニュー */


div#olmenu{
    z-index: 1500;
    position: fixed;
    display: flex;
    width: 100%;
	margin-top: 80px;
    height: calc(100vh - 80px);
    background-color: #fff;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    left: -120vw;
    transition: all .4s ease;
    color: #333;
}
div#olmenu a{
    display: block;
    text-decoration: none;
    color: inherit;
    margin-top: 1em;
}
div#olmenu a>span:first-child{
		background: linear-gradient(to left, #e44389, #c78cfb);
		width: fit-content;
		-webkit-background-clip:text;
		background-clip:text;
		-webkit-text-fill-color: transparent;
		font-weight: 600;
		font-size: 1.2em;
    font-size: 1.6em;
    font-weight: 700;
}

div#olmenu a>span:last-child{
    font-size: .92em;
    font-weight: 400;
    position: relative;
    top: -3px;
}









div#hbg{
	display: none;
}

html {
	/* scroll-behavior: smooth; */
	font-family: sans-serif;
	font-family: "Zen Kaku Gothic New";
	font-feature-settings: "palt";
  text-align: justify;
}
input, select {
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #000;
	border-radius: 0px;
  }
h1,h2,h3,menu{
	margin: 0;
	padding: 0;
	font-weight: normal;
}
menu,ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
*{
	position: relative;
}
body {
	padding:0 0 0 20px;
	margin: 0;
	background-color: #f2e1e9;
	overflow-x: hidden;

}

div#gradation{
	position: fixed;
	top: 0;
	left: 0;
	width: 20px;
	height: 100%;
	background: linear-gradient(to top, #c78cfb, #e44389);
	z-index: 100;
}
main{
	overflow: hidden;
}

header{
	height: 80px;
	width: 100%;
	position: fixed;
	padding-left: 20px;
	box-sizing: border-box;
	top: 0;
	left: 0;
	z-index: 99;

	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	font-size: .9em;
	transition: all .3s ease;

}

header.headerbg{
	background-color: #ffffff;
}





header>#logo{
	width: 180px;
	height: 100%;
	background-image: url(../img/logo.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 150px;
	color: inherit;
	text-decoration: none;
}
header>#logo>span{
	display: none;
}
header>menu{
	margin: 0;
	padding: 0;
	flex-grow: 1;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	height: 100%;
	justify-content: flex-end;
}
header>menu>div{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-around;
	gap: 24px;
	height: 100%;
	margin-right: 24px;
	font-weight: 600;
}
header>menu>div>a{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	line-height: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
}
header>menu>div>a:hover{
	color: #e44389;
}


header>menu>div>a::after{
	content: "";
	display: block;
	position: absolute;
	background-color: #e44389;
	bottom: 0;
	left: 0;
	height: 4px;
	width: 100%;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s ease;
}

header>menu>div>a:hover::after{
	transform-origin: left top;
	transform: scale(1, 1);
}





header>nav{
	margin: 0;
	padding: 0;
	width: 200px;
	height: 100%;
	display: flex;
	flex-flow: row nowrap;
}
header>nav>a{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100%;
	background-color: #c78cfb;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
}
header>nav>a:nth-child(2){
	background-color: #e44389;
}


main{
	font-size: 1..5em;
}






div.hero{
	height: 100vh;
	background-color: #f7e7ed;
	background-color: #f7e7ed;
	background-image: url(../img/hero.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
div.hero>div{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	max-width: 1200px;
	height: 100%;
	margin: auto;
}
div.hero>div>div{
	display: flex;
	width: 60%;
	height: 360px;
	background-image: url(../img/mvlogo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
}




section>div.main{
	max-width: 1024px;
	margin: auto;
	display: flex;
	flex-flow: row;
	padding: 0 1em;
}

section.news{
	padding: 100px 0 120px;
	background-color: #fff;
}

section.news>div.main>h2.heading{
	 width: 200px;
	 box-sizing: border-box;
}
section>div.main>h2.heading>div.en>span{
	background: linear-gradient(to left, #e44389, #c78cfb);
	width: fit-content;
	-webkit-background-clip:text;
	background-clip:text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
	font-size: 1.2em;
}
section>div.main>h2.heading>div.ja{
	font-weight: 700;
	color: #3f020d;
  font-size: 22px!important;
}
section>div.main>h2.heading>p{
	font-size: .92rem;
	font-weight: 600;
}
section>div.main>div>p{
	font-weight: 500;
}
section.news>div.main>div.item_list{
	width: calc(100% - 200px);
	box-sizing: border-box;
}

section.news>div.main>div.item_list ul{


}
section.news>div.main>div.item_list ul>li{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 20px;
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid #00000022;
}
section.news>div.main>div.item_list ul>li>div.date{
	color: #999;
	font-weight: 400;
}
section.news>div.main>div.item_list ul>li>div.title{
	color: #222;
	font-weight: 400;
}




section.service{
	padding: 100px 0;
	z-index: 5;
}

section.service>div.main{
	max-width: 1024px;
	margin: auto;
	display: flex;
	flex-flow: column;
}
section.service>div.main>div{
	width: 50%;
}





section.service>div.main>div.cut{
	display: block;
	position: absolute;
	right: -5%;
	top: -25%;
	background-color: #c78cfb;
	width: calc(100vw * 0.4 );
	height: calc(100vw * 0.4 );
	max-width: 500px;
	max-height: 500px;
	border-radius: 9999px;
	z-index: -1;
	background-image: url(../img/ladie.jpg);
	background-position: center;
	background-size: cover;
}















section.about{
	padding: 100px 0;
	background-color: #fff;
	overflow-x: hidden;
}
section.about>div.main{
	flex-flow: column;
}
section.about>div.main>div.items{
	padding: 80px 0;
	counter-reset: number 0;
}
section.about>div.main>div.items>div.item{
	flex-flow: row nowrap;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 40px;
}
section.about>div.main>div.items>div.item::after{
	counter-increment: number;
    content: counter(number);
    position: absolute;
    right: 0;
    margin-top: -5rem;
    font-size: 15rem;
	color: #f7e7ed;
	font-weight: 800;
	z-index: 0;
	transform: translateX(100%);
	opacity: 0;
	transition: all .5s ease;
}
section.about>div.main>div.items>div.item.open::after{
	transform: translateX(0%);
	opacity: 1;
}

section.about>div.main>div.items>div.item div.img{
	width: 48%;
	min-height: 160px;
	aspect-ratio: 16/9;
	background-color: #000;
	background-repeat: no-repeat;
	background-size: cover;
}
#cut1{
	background-image: url(../img/cut1.jpg);
}
#cut2{
	background-image: url(../img/cut2.jpg);
}
#cut3{
	background-image: url(../img/cut3.jpg);
}

section.about>div.main>div.items>div.item div.txt{
	box-sizing: border-box;
	width: 48%;
	padding-left: 50px;
	z-index: 1;
}
section.about>div.main>div.items>div.item div.txt h3{
	font-weight: 600;
}
section.about>div.main>div.items>div.item div.txt p{
	font-weight: 500;
}

section.about>div.main>div.items>div.item:nth-child(even){
	flex-flow: row-reverse nowrap;
}
section.about>div.main>div.items>div.item:nth-child(even) div.txt{
	padding-left: 100px;
}
section.about>div.main>div.items>div.item:nth-child(even)::after{
    right: auto;
    left: 0;
	transform: translateX(-100%);
}
section.about>div.main>div.items>div.item.open:nth-child(even)::after{
	transform: translateX(0%);
}
section.about>div.main>div.items>div.item>div.txt>h3{
	color: #e44389;
	font-size: 1.3em;
}
section.about>div.main>div.items>div.item>div.txt>ul>li{
	color: #000;
	font-weight: 400;
	padding-left: 10px;
	position: relative;
}
section.about>div.main>div.items>div.item>div.txt>ul>li::before{
	content: "";
	position: relative;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 5px;
	border-radius: 10px;
	background-color: #c78cfb;
}




section.links{
	padding: 100px 0;
}
section.links>div.main h2.heading{
	width: 40%;
}
section.links>div.main div.link_box{
	width: 60%;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
section.links>div.main div.link_box>a{
	display: flex;
	width: 48%;
	box-sizing: border-box;
	flex-flow: column nowrap;
	align-items: center;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	text-decoration: none;
	color: inherit;
	font-weight: 400;
}

section.contact{
	background:linear-gradient(60deg, #e44389, #c78cfb);
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	padding:80px;
}
section.contact>div{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	border: solid 4px #fff;
	color: #fff;
	line-height: 100%;
	padding: 1em 2em;
	gap: 16px;
}
section.contact>div>div.num{
	font-size: 3em;
	font-weight: 600;
}
section.contact>div>div.txt{
	font-size: 1.2em;
	font-weight: 400;
	margin: 8px 0;
}
section.contact>div>div.txt2{
	padding-top: 8px;
}









footer{
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 100px 0;
	background-color: #fff;
}
footer>div.logo{
	width: 180px;
	height: 80px;
	background-image: url(../img/logo.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
footer>h3{
	font-weight: bold;
}
footer>p{
	font-weight: 500;
}

footer div.footer_link{
	display: flex;
	flex-flow: row ;
	gap: 20px;
	font-size: .86em;
	padding: 20px 0 0;
}
footer div.footer_link a{
	text-decoration: underline;
	color: #000;
	font-weight: 400;
}
footer div.footer_link a:hover{
	color:#e44389;
}


address{
	background-color: #333;
	text-align: center;
	font-style: normal;
	color: #e6e8e7;
	font-size: 14px;
	line-height: 100%;
	padding: 1em 0;
}


/* second division */

h1.head{
	display: flex;
	flex-flow: row nowrap;
	height: 350px;
	align-items: center;
	justify-content: center;
	background:linear-gradient(60deg, #e44389, #c78cfb);
	background:linear-gradient(60deg, #ffd7e8, #b6a8c2);
	color: #fff;
	font-size: inherit;
}
h1.head>div{

}
h1.head>div>span{
	display: block;
	text-align: center;
}
h1.head>div>span.en{
	font-size: 	3em;
}
h1.head>div>span.ja{
	font-size: 	1.4em;
}





section.content{
	padding: 100px 0 120px;
	background-color: #fff;
}
section.content:nth-child(even){
	background-color: #f1e4ea;
}


section.content>div.main>h2.heading{
	 width: 200px;
	 box-sizing: border-box;
}

section.content>div.main>div{
	width: calc(100% - 200px);
	box-sizing: border-box;
	padding: 1em;
	font-size: .92em;
}

section.content>div.main>div h5{
	font-size: 1em;
	font-weight: 400;
}

section.content>div.main>div ul>li{
	text-indent: -3em;
	padding-left: 3em;
}
















@media screen and (max-width: 1023px) {


	header{
		font-size: .76em;
	}
	header>#logo{
		width: 140px;
		height: 100%;
		background-size: 130px;
	}
	header>menu>div {
		gap: 16px;
		margin-right: 16px;
	}
}

@media screen and (max-width:767px) {


	div.hero{
		height: 450px;
	}

	header>menu,header>nav{
		display: none;
	}
	div#hbg{
		display: flex;
	}
	header>#logo{
		width: 110px;
		height: 100%;
		background-size: 100px;
	}



    div#hbg{
        z-index: 99999999;
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 12px;
        right: 12px;
        background-color: #ffffff;
        width: 50px;
        height: 50px;
        box-shadow: 0 0 10px -5px #00000099;
        border-radius: 60px;
    }
    div#hbg>div{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: column nowrap;
        gap: 6px;
    }
    div#hbg>div>span{
    
        background-color: #e44389;
        width: 10px;
        height: 10px;
        border-radius: 60px;
        display: block;
        transition: all .4s ease;
        bottom: 0;
        transition: all .4s ease;
    }
    div#hbg.open>div>span:first-child{
        position: relative;
        bottom: -16px;
        transition: all .4s ease;
    }
    div#hbg.open>div>span:last-child{
        position: relative;
        bottom: 16px;
        transition: all .4s ease;
    }

/* オーバーレイメニュー */

	div#olmenu.open{
		z-index: 1500;
		left: 0vw;
		transition: all .4s ease;
	}




/*本編*/

	h1.head{
		height: 120px;
		padding-top: 80px;
	}
	h1.head>div>span.en{
		font-size: 	1.8em;
	}
	section.news>div.main{
		flex-flow: column;
		gap: 50px;
	}
	section.news>div.main>h2.heading{
		width: auto;
	}
	section.news>div.main>div.item_list{
		width: auto;
		font-size: .76em;
	}
	section.content>div.main{
		flex-flow: column;
		gap: 50px;
	}
	section.content>div.main>h2.heading{
		width: auto;
	}
	section.content>div.main>div{
		width: auto;
		font-size: .76em;
	}
	section.about>div.main>div.items>div.item:nth-child(even),
	section.about>div.main>div.items>div.item {
		flex-flow: column nowrap;
		gap: 10px;
	}
	section.about>div.main>div.items>div.item div.img {
		width: 100%;
	}
	section.about>div.main>div.items>div.item div.txt{
		width: 100%;
		padding-left: 0;
	}

	section.about>div.main>div.items>div.item:nth-child(even) div.txt{
		width: 100%;
		padding-left: 0;
	}

	section.contact {
		padding: 80px 0;
	}

	section.service>div.main>div{
		width: 100%;
	}

	section.links>div.main{
		flex-flow: column;
		gap: 50px;
	}
	section.links>div.main h2.heading{
		width: 100%;
	}
	section.links>div.main div.link_box{
		width: 100%;
	}

	br.pc{
		display: none;
	}


	section.service>div.main>div.cut{
		position: relative;
		top: auto;
		left: auto;
		margin: auto;
		width: 80%;
		height: auto;
		aspect-ratio: 1/1;
	}

	section.contact>div {
		margin: 0 .5em;
		font-size: .84em;
	}
	section.contact>div>div.num {
		font-size:2em;
	}

}




@media print {
	div.hero{
		height: 900px !important;
	}

	header{
		position: absolute;
	}
}


