
@charset "utf-8";

/*------------------------------------------------------------------
	IDENTIFICATION DIVISION.
	Version.												1.4.1.2;
	PROGRAM-ID.									"ABOUT"
-------------------------------------------------------------------*/

/*****************************************************
	DATA DIVISION.
	WORKING-STRAGE SECTION.
*****************************************************/



/*****************************************************
	PROCEDURE DIVISION.
*****************************************************/
#wrap h2{
	margin-bottom:0.5em;
}


main{
	font-size:2rem;
}
main h3{
	margin-bottom:0.5em;
	padding:0.5em 1em;
	font-size:2.4rem;
	color:#fff;
	background:#69a45b;
	font-family: "Kiwi Maru", serif;
}


main .note{
	padding:0.3em 0.8em;
	background:#d7e7b9;
	box-sizing:border-box;	
}
main .division:not(last-child){
	margin-bottom:2em;
}
main .division h4{
	margin-bottom:0.8em;
	padding:0.5em 1em;
	color:var(--secondary-color);
	background:#e5ebe0;
	font-family: "Kiwi Maru", serif;
}

main section em{
	color:var(--bold-color);
}

main p.image{
	max-width:100%;
	overflow:hidden;
}
main p.image img{
	max-width:100%;
}

main ul.list{

}
main ul.list li{
	padding-left:1em;
	text-indent:-1em;
}
main ul.list li::before{
	content:"";
	width: 0.5em;
	height:0.5em;
	margin-right:0.5em;
	border-radius:50%;
	display:inline-block;
	background:#69a45b
}

main ul.list li:not(:nth-last-child){
	margin-bottom:0.5em;
}

main p.accent img{
	width:100%;
	height:400px;
	object-fit:cover;
	border-radius:40px;
}



/*-------------------------------------------------------------------
	come
-------------------------------------------------------------------*/
.come .image{
	margin-bottom:1em;
	display:flex;
	justify-content:space-between;
	gap:10px;
}

.come .image li:nth-child(1),
.come .image li:nth-child(3){
	width:30%;
	max-width:320px;
}

.come .image img{
	width:100%;
	height:400px;
	object-fit:cover;
}

/* profile
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/

.profile dl{
	margin-bottom:1em;
	padding:1em;
	border:1px solid #ccc;
	border-radius:20px;
	display:flex;
	flex-direction:column;
	gap:1em;
}

.profile dl dd.note{
	padding:1em;
	border-radius:24px;
}

.profile dt{
	text-align:center;
	font-size:120%;
	color:var(--secondary-color);
	font-family: "Kiwi Maru", serif;
	font-weight:500;
}
.profile dt span{
	display:inline-block;
}


.profile dd.image{
	margin:0 auto;
	width:50%;
	border-radius:20px;
	overflow:hidden;
}


.profile .gallery{
	display:flex;
	width:100%;
	gap:10px;
}

.profile .gallery li{
	overflow:hidden;
}

.profile .gallery li img{
	width:100%;
	height:360px;
	object-fit:cover;
}


/*-------------------------------------------------------------------
	marche
-------------------------------------------------------------------*/
.marche ul.image{
	display:flex;
	overflow:hidden;
	gap:10px;
}
.marche ul.image li{
	overflow:hidden;
}
.marche ul.image li:nth-child(1){
}

.marche ul.image img{
	width:auto;
	height:360px;
	object-fit:cover;
}


.marche .sns{
	margin-top:2em;
	border:2px solid #679f5a;
	padding:1.2em;
	border-radius:24px;
}
.marche .sns h4{
	padding:0;
	background:none;
	color:var(--secondary-color);
	font-family: "Kiwi Maru", serif;
	font-size:130%;
	text-align:center;
	font-weight:500;
}
.marche .sns h4 span,
.marche .sns h4 small{
	display:inline-block;
}

.marche .sns p{
	color:var(--secondary-color);
	font-family: "Kiwi Maru", serif;
	font-size:130%;
	text-align:center;
}
.marche .sns p span{
	display:inline-block;
}

.marche .sns ul{
	margin:0 auto 1em auto;
	text-align:center;
	display:flex;
	justify-content:space-between;
}

.marche .sns ul li{
	position:relative;

	width:49%;
}

.marche .sns ul li::before{
	content:"";
	display:block;
	margin:0 auto 1em auto;
	width:25%;
	aspect-ratio:1 / 1;
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center center;
	z-index:40;
}
.marche .sns ul li.instagram::before{
	background-image:url(../../images/common/icon/instagram-4c.png);
}
.marche .sns ul li.facebook::before{
	background-image:url(../../images/common/icon/facebook-4c.png);
}

.marche .sns ul a{
	position:relative;
	display:block;
	border-radius:2em;
	overflow:hidden;
	padding:0.8em 3em 0.8em 0.5em;
	background:#e4ecd6;
	text-decoration:none;
	box-sizing:border-box;
	transition: ease .2s;
}
.marche .sns ul a span{
	position:relative;
	z-index:10;
}
.marche .sns ul a:hover span{
	color:#fff;
}
.marche .sns ul a::after{
	content:"";
	position:absolute;
	top:0;
	right:0;
	display:block;
	background-color:#679f5a;
	color:#fff;
	width:3em;
	height:100%;
	background-image:url(../../images/common/icon/search.svg);
	background-repeat:no-repeat;
	background-size:50% 50%;
	background-position:40% 50%;
	z-index:10;
}
.marche .sns ul a::before{
	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:  #679f5a;
 	width: 100%;
	height: 100%;
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: left top;
}
.marche .sns ul a:hover::before{
	transform-origin:right top;
	transform:scale(1, 1);
}


/*-------------------------------------------------------------------
	experience
-------------------------------------------------------------------*/

.experience .image{
	margin-bottom:2em;
	display:flex;
	justify-content:space-between;
}

.experience .image li{
	width:24%;
	overflow:hidden;
	height:250px;
}

.experience .image img{
	width:100%;
	min-height:100%;
	object-fit:cover;
}


.experience .membership{
	border:1px solid #ccc;
	border-radius:36px;
	padding:1em;
	box-sizing:border-box;
	display:flex;
	align-items:center;
	gap:1em;
}
.experience .membership p{
	margin:0;
}



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

main p.accent img{
	height:250px;
}

/*-------------------------------------------------------------------
	come
-------------------------------------------------------------------*/

.come .image li:nth-child(1),
.come .image li:nth-child(3){
	flex:1;
}
.come .image li:nth-child(2){
	flex:1.3;
}

.come .image img{
	height:180px;
}

/* profile
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.profile dt{
	line-height:1.3;
}
.profile dt span small{
	display:block;
}

.profile .gallery{
	flex-wrap:wrap;
	justify-content:space-between;
}

.profile .gallery li{
	width:48.5%;
}

.profile .gallery li img{
	height:300px;
}

/*-------------------------------------------------------------------
	marche
-------------------------------------------------------------------*/
.marche ul.image{
	flex-wrap:wrap;
	justify-content: space-between;
}
.marche ul.image li{
	width:48.5%;
}
.marche ul.image li:nth-child(1){
	width:100%;
}

.marche ul.image img{
	height:320px;
}

.marche .sns ul{
	margin:0 auto 1em auto;
	text-align:center;
	display:flex;
	flex-direction:column;
	gap:2em;
}

.marche .sns ul li{
	width:100%;
	font-size:85%;
}

.marche .sns ul a::after{
	width:2.6em;
	height:100%;
	background-size:40% 40%;
}


/*-------------------------------------------------------------------
	experience
-------------------------------------------------------------------*/

.experience .image{
	flex-wrap:wrap;
	gap:10px;
}

.experience .image li{
	width:48.5%;
	overflow:hidden;
	height:auto;
}





}