@charset "UTF-8";
/** -----------------------------------------------
  共通
------------------------------------------------**/
body { 
	font-family: "Zen Maru Gothic", serif;
	/* font-family:  YuGothic,'Yu Gothic', Osaka, sans-serif, Verdana, "ヒラギノ角ゴ Pro W3", 
	"Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif; */
} 

a{
	text-decoration: none;
	color: inherit;
}

.section-inner{
	max-width: 1200px;
	margin: 0 auto;
}

.PC-only{
	/* PCの時は（横幅769px以上の時は）表示する */
	display: block;

}
.sp-only{
	/* SPの時は（横幅768px以下の時は）表示する */
	display: block;
}

/* ーーーーーーースマホーーーーーーー */
@media screen and (max-width: 768px){
	.section-inner{
		padding: 0 20px;
		/* max-width: 550px; */
	}
	.pc-only{
		/* PCの時は（横幅769px以上の時は）表示しない */
		display: none;
	}
	.sp-only{
		/* SPの時は（横幅768px以下の時は）表示する */
		display: block;
	}	
	
}


/*-----------
	 header
------------- */

#header{
	background-color: rgba(254, 247, 237, 0.7);
	/* background-color: #FEF7EDB2; */
	/* height: 85px; */
	width: 100%;
	position: fixed;
	z-index: 99;
	top: 0;
}

.section-inner.header-inner{
	max-width: 1440px;
	height: 85px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
}

.header-logo{
	display: flex;
	flex-direction: column;	
	align-items: center;
}
.logo {
	height: 28px;
}
.logo a{
	display: block;
	line-height: 1;
	height: 100%;
}

.logo img{
	height: 100%;
	object-fit: contain;
}

.gnav-pc-wrap{
	display: flex;
	align-items: center;
	gap: 23px;
	margin-left: auto;

}

.gnav-pc{
	display: flex;
	align-items: center;
	list-style: none;
}

.gnav-pc li + li{
	margin-left: 13px;
}

.gnav-pc li a{
	display: block;
	padding: 10px;
	color: #694B33;
	font-size: 20px;
	font-weight: 500;
	text-decoration:none;
  	transition: color .3s,transform .3s;
}

.gnav-pc a:hover{
  	color: #EB9E62;
	transform: translateY(-5px);
}


.sitename{
	color: #694B33;
	font-size: 20px;
	margin-top: 7px;
	line-height: 33px;
	font-weight: 500;
}

.button-header{
	display: block;
	width: 170px;
	height: 50px;
	background-color: #F2B17E;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: bold;
	border-radius: 50px;
	text-align: center;
	line-height: 50px;
	overflow: hidden;
	position: relative;
	transition-duration: .4s;
	z-index: 2;
}

.button-header::after {
	background: #F58A36;
	border-radius: 50%;
	content: "";
	display: block;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .5s, transform 0s;
	transition-delay: 0s, .4s;
}

.button-header:hover {
	color: #FFFFFF;
	transform: translateY(-5px);
}

.button-header:hover::after {
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
	transition-delay: 0s;
	transition: opacity .8s, transform .6s ease-in-out;
}

.menu-button{
	display: none;
}

.gnav-sp-wrap{
	display: none;
}

#hamburger{
	display: none;
}

@media screen and (max-width: 1300px){
	#header{
		background-color: rgba(254, 247, 237, 0.5);
		position: static;
	}
	
	.gnav-pc{
		/* PCのナビゲーションをスマホでは非表示にする */
		display: none;
	}

	.gnav-pc-wrap{
		margin-left: auto;
	}

	#hamburger{
		display: block;
		width: 50px;
		height: 36px;
		margin-left: 20px;
		/* padding: 25px 15px; */
	}
	#hamburger.open span{
		transition: transform 0.5s ease;
		transform-origin: 0%;
	}
	#hamburger.open span:nth-child(1){
		transform: rotate(45deg);
	}
	#hamburger.open span:nth-child(2){
		display: none;
	}
	#hamburger.open span:nth-child(3){
		transform: rotate(-45deg);
	}
	.hamburger-inner{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}
	
	.hamburger-inner span{
		display: block;
		height: 2px;
		width: 100%;
		background-color: #694B33;
		position: absolute;
	}
	
	.hamburger-inner span:nth-child(1){
		top: 0;
	}
	.hamburger-inner span:nth-child(2){
		top: 18px;
	}
	
	.hamburger-inner span:nth-child(3){
		top: 36px;
	}

	.gnav-sp-wrap{
		display: none;
		width: 100vw;
		height: 100vh;
		background-color: rgba(254, 247, 237, 0.9);
		position: fixed;
		z-index: 100;
		padding-top: 100px;
	}

	ul.gnav-sp li{
		text-align: center;
		margin-bottom: 30px;
	}

	ul.gnav-sp a{
		font-family: ;
		font-size: 20px;
		letter-spacing: ;
		color: #694B33;
		font-weight: bold;
	}

}


@media screen and (max-width: 768px){
	#header{
		height: 85px;
		padding: 0;
	}
	.section-inner.header-inner{
		padding: 0 17px;
	}
	.logo {
		height: 24px;
	}	
	.sitename{
		font-size: 18px;
	}
	.hamburger{
		margin-left: 5px;
	}
}

@media screen and (max-width: 480px){
	.logo{
		height: 16px;
	}
	.sitename{
		font-size: 16px;
	}
	.button-header{
		width: 110px;
		height: 50px;
		font-size: 20px;
		}

}	


/*-----------
	 mainvisual
------------- */

#mainvisual{
	width: 100%;
	aspect-ratio: 1440/955;
	background-image: url(../images/mainvisual-pc.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 160px;  
}

h1.mv-text{
	color: #FFFFFF;
	font-size: 56px;
	font-weight: 700;
	/* left: 145px; */
	line-height: 100px;
	margin-left: 30px;
}

.mv-text-orenge {
	color: #F2B17E;
}

h1.mv-text span:last-child{
	display: block;
}

@media screen and (max-width: 960px){
	h1.mv-text span{
		display: block;
	}
	#mainvisual{
		padding-top: 30px;
	}
	h1.mv-text{
		font-size: 48px;
		line-height: 70px;

	}
}
@media screen and (max-width: 768px){
	#mainvisual{
		width: 100vw;
		aspect-ratio: 375/485;
		background-image: url(../images/mainvisual-sp.png);
		background-color: #FEF7ED;
		padding-top: 50px;
		/* margin-top: 85px; */
	}
	h1.mv-text{
		font-size: 48px;
		line-height: 70px;
		letter-spacing: 0;
		margin-left: 0;
	}
}
@media screen and (max-width: 500px){
	h1.mv-text{
		font-size: 24px;
		line-height: 46px;
		letter-spacing: 0;
		/* left: 35px; */
	}
}



/*-----------
	 about
------------- */

#about{
	background-color: #FEF7ED;
	/* height: 1700px; */
	/* text-align: center; */
}

.about-inner{
	padding-top: 90px;
	position: relative;
}

.about-description span:last-child{
	margin-top: 40px;
}

.about-item2{
	position: absolute;
	top: 0;
	left: 0;
	width: 33%;

}

.about-item2 img{
	width: 100%;
	aspect-ratio: 400/300;
}


.about-item3{
	position: absolute;
	bottom: -58px;
	right: 0;
	width: 25%;
}

.about-item3 img{
	/* width: 305px;
	height: 265px; */
	width: 100%;
	aspect-ratio: 300/265;

}

.swiper-area{
	width: 100%;
	margin-top: 100px;
	padding-bottom: 25px;
}

/* .swiper-slide{
	width: 320px;
	aspect-ratio: 320/210;
} */

.swiper-slide img{
	width: 100%;
	object-fit: cover;
}

/* .swiper-slide{
	margin-left: 40px;
} */

.swiper-wrapper{
    transition-timing-function: linear;
}

@media screen and (min-width: 768px){
	.spbr{
		display: none;
	}
}

@media screen and (max-width: 768px){
	.swiper-slide{
		width: 100%;
	}

	.section-inner.about-inner{
		padding-top: 50px;
	}

	
}


.about-bgwave{
	/* height: 113px; */
	background-image: url(../images/about-bgwave.svg);
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 1440/113;
	transform: translateY(-1px);
	display: flex;
	justify-content: center;
	align-items: center;
}


.dot{
	background-image: url(../images/dot.svg);
	background-position: center;
	height: 90px;	
	background-size: cover;
	background-repeat: no-repeat;
	aspect-ratio: 30/90;
}

h2.section-title{
	color: #694B33;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}

h3.maincopy{
	color: #694B33;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-top: 65px;
	position: relative;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.maincopy::after{
	background: radial-gradient(circle closest-side, #C0D077, #C0D077 100%, transparent);
	background-size: 12px 4px;
	content: '';
	height: 4px;
	width: 100%;
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%);

}


p.section-description{
	color: #694B33;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 130px;
	line-height: 2;
}

p.section-description span{
	display: block;
}

.button{
	display: block;
	width: 380px;
	height: 70px;
	background-color: #C0D077;
	color: #FFFFFF;
	font-size: 24px;
	font-weight: bold;
	border-radius: 50px;
	text-align: center;
	line-height: 70px;
	margin: 0 auto;
	margin-top: 90px;	
}

@media screen and (max-width: 768px){
	h2.section-title{
		font-size: 24px;
		margin-bottom: 30px;
	}

	.button{
		/* display: block; */
		width: 280px;
		height: 50px;
		/* background-color: #C0D077;
		color: #FFFFFF; */
		font-size: 20px;
		/* font-weight: bold;
		border-radius: 50px;
		text-align: center; */
		line-height: 50px;
		/* margin: 0 auto; */
		margin-top: 60px;	
	}

	p.section-description{
		font-size: 18px;
		margin-top: 27px;
		margin-bottom: 70px;
	}

	.dot{
		background-image: url(../images/dot_sp.svg);
		background-position: center;
		height: 70px;	
		background-size: cover;
		background-repeat: no-repeat;
		aspect-ratio: 30/90;
	}
	
}


.button:hover {
	background: rgba(192, 208, 119, 0.7);
	color: #FFFFFF;
}

@media screen and (max-width: 768px){
	.section-description.about-description span:not(:last-child){
		display: inline;
	}
	.about-item2{
		position: static;
		width: 100%;
	}
	.about-item2 img{
		aspect-ratio: 337/253;
	}
	
	.about-bgwave{
		background-image: url(../images/about-bgwave-sp.svg);
		aspect-ratio: 375/57;
	}

	h3.maincopy{
		font-size: 20px;
		margin-top: 25px;
	}

	.section-description.about-description{
		font-size: 16px;
	}
	
}	



/*-----------
	 project
------------- */

#project{
	overflow: hidden;
}

.project-inner{
	position: relative;
}


.col-2-project{
	display: flex;
	margin-bottom: 160px;
}

.project-item{
	padding: 45px;
}

.project-item-title{
	display: flex;
	align-items: end;
	position: relative;
	padding-bottom: 15px;
}

.project-item-title::after{
	background: radial-gradient(circle closest-side, #C0D077, #C0D077 100%, transparent);
	background-size: 12px 4px;
	content: '';
	height: 4px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);

}

.project-description{
	color: #694B33;
	font-size: 20px;
	max-width: 415px;
	margin-top: 10px;
}

.project-no{
	color: #C0D077;
	font-size: 128px;
	font-weight: bold;
	line-height: 1;
}

.project-name{
	color: #694B33;
	font-size: 30px;
	font-weight: bold;
}

.project-image{
	width: 58%;
}

.project-image img{
	border-radius: 20px;
	width: 100%;
	aspect-ratio: 700/460;
}

.project-deco1{
	position: absolute;
	top: 95px;
	right: -150px;
	width: 532px;
	z-index: -1;
}

.project-deco1 img{
	width: 100%;
	aspect-ratio: 532/485;
}

.project-deco2{
	position: absolute;
	top: 685px;
	left: -178px;
	width: 487px;
	z-index: -1;

}

.project-deco2 img{
	width: 100%;
	aspect-ratio: 487/388;
}

.project-deco3{
	position: absolute;
	top: 1275px;
	right: -150px;
	width: 586px;
	z-index: -1;

}

.project-deco3 img{
	/* width: 305px;
	height: 265px; */
	width: 100%;
	aspect-ratio: 586/547;
}

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


	.project-inner{
		margin-top: 30px;
	}
	
	.project-deco1{
		top: 115px;
		right: -100px;
		width: 460px;
	}

	.project-deco2{
		top: 720px;
		left: -100px;
		width: 430px;
	}

	.project-deco3{
		top: 1315px;
		right: -50px;
		width: 500px;
	}
}


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

	.col-2-project{
		/* display: block;
		width: 100%; */
		flex-direction: column;
		align-items: center;
		m-bottom: 100px;

	}
	.project-inner .col-2-project:nth-of-type(2){
		flex-direction: column-reverse;
	}
	
	.project-image{
		width: 100%;
	}
	.project-item{
		padding: 0 25px;
		width: 100%;
	}
	.project-no{
		font-size: 80px;
	}
	
	.project-name{
		font-size: 20px;
	}
	
	.project-description{
		font-size: 16px;
		max-width: none;
	}
	.project-deco1{
		position: absolute;
		top: 700px;
		right: 0;
		width: 43%;
		z-index: -1;
	}
	
	.project-deco1 img{
		width: 100%;
		aspect-ratio: 160/146;
	}
	
	.project-deco2{
		position: absolute;
		top: 1220px;
		left: 0;
		width: 46%;
		z-index: -1;
	
	}
	
	.project-deco2 img{
		width: 100%;
		aspect-ratio: 175/150;
	}
	
	.project-deco3{
		position: absolute;
		top: 1700px;
		right: 0;
		width: 52%;
		z-index: -1;
	
	}
	
	.project-deco3 img{
		/* width: 305px;
		height: 265px; */
		width: 100%;
		aspect-ratio: 195/192;
	}
	
	
}


/*-----------
	 benefit
------------- */

.section-inner-benefit{
	max-width: 1040px;
	margin: 0 auto;
	/* margin-top: 180px; */
	
}
#benefit{
	background-color: #FEF7ED;
	margin-top: 177px;
	margin-bottom: 177px;
	position: relative;
}

.benefit-bgwavetop{
	position: absolute;
	left: 0;
	bottom: 99%;
	width: 100%;
	aspect-ratio: 1440/177;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("../images/benefit-wavebg-top.svg");
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.benefit-bgwavetop .dot{
	margin-bottom: 35px;
}


.benefit-bgwavebottom{
	position: absolute;
	left: 0;
	top: 99%;
	width: 100%;
	aspect-ratio: 1440/177;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("../images/benefit-wavebg-bottom.svg");
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.benefit-bgwavebottom .dot{
	margin-top: 25px;
}

.benefit-col3{
	display: flex;
	gap: 70px;
}

.benefit-item:nth-child(1) ,
.benefit-item:nth-child(3){
	margin-top: 100px;
}


.benefit-name{
	color: #694B33;
	font-size: 32px;
	font-weight: bold;
	z-index: 1;
}

.benefit-image{
	background-color: #FFFFFF;
	width: 100%;
	max-width: 300px;
	aspect-ratio: 1/1;
	border-radius: 20px;
	/* padding: 30%; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -23px;
}

.benefit-item:nth-child(1) .benefit-image img{
	width: 46%;
	height: auto;
}
.benefit-item:nth-child(2) .benefit-image img{
	width: 57%;
	height: auto;
}
.benefit-item:nth-child(3) .benefit-image img{
	width: 70%;
	height: auto;
}
	
.benefit-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	/* width: 28%; */
	/* aspect-ratio: 1/1; */
}


@media screen and (max-width: 768px){
	.section-inner-benefit{
		padding: 0 20px;
	}	

	.benefit-bgwavetop{
		aspect-ratio: 375/72;
		background-image: url("../images/benefit-bgwave-top-sp.svg");
	}
	.benefit-col3{
		gap: 25px 36px;
		flex-wrap: wrap;
	}
	
	.benefit-item:nth-child(1) {
		order: 2;
		width: calc(50% - 18px);
		margin-top: 0;
	}
	.benefit-item:nth-child(2) {
		order: 1;
		width: 100%;
	}
	.benefit-item:nth-child(3){
		order: 3;
		width: calc(50% - 18px);
		margin-top: 0;
	}
	.benefit-item:nth-child(2) .benefit-image{
		width: 45%;
	}
	
	.benefit-name{
		font-size: 18px;
	}
	.benefit-image{
		margin-top: -10px;
	}

	.benefit-bgwavebottom{
		aspect-ratio: 375/72;
		background-image: url("../images/benefit-bgwave-bottom-sp.svg");
	}
}



/*-----------
	 member
------------- */
.member-section-inner{
	padding-bottom: 60px;
}

.member-list{
	display: grid;
	grid-template-columns: 1fr 1fr ;
	row-gap: 30px;
}

.member-item a{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:10px;
}

.member-image{
	width: 100%;
}

.member-image img{
	width: 100%;
	aspect-ratio: 600/440;
}

.member-body{
	display: flex;
	gap: 20px;
	align-items: flex-end;
	position: relative;
	padding-bottom: 15px;
}

.member-body::after{
	background: radial-gradient(circle closest-side, #C0D077, #C0D077 100%, transparent);
	background-size: 12px 4px;
	content: '';
	height: 4px;
	width: 424px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.member-name{
	color: #694B33;
	font-size: 24px;
}

.member-position{
	color: #694B33;
	font-size: 16px;
}


/* PC時のスタイル */
.swiper-button-prev,
.swiper-button-next {
	display: none;
}

@media screen and (max-width: 768px){
	.member-section-inner{
		padding: 0 20px;
		padding-bottom: 40px;
		}	
	
	.member-list{
		display: flex;
	}	
	.swiper-button-prev,
	.swiper-button-next {
		display: block;
	}

	.member-swiper [class^="swiper-button-"]::after{
		font-size: 30px;
	}

	.member-swiper [class^="swiper-button-"]{
		color: #694B33;
	 }
	
	 .member-body{
		flex-direction: column;
		align-items: flex-start;
		gap: 0px;
	}
	.member-body::after{
		width: 100%;
	}
	
}


/*-----------
	 recruit
------------- */

.recruit-bgwavetop{
	background-image: url(../images/募集職種背景-top.svg);
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 1440/153;
	transform: translateY(1px);
	display: flex;
	justify-content: center;
	align-items: center;
}

#recruit{
	background-color: #FEF7ED;
	/* height: 2500px; */
}

.recruit-section-inner{
	max-width: 1116px;
	margin: 0 auto;
	padding-bottom: 60px;
}

.recruit-card{
	background-color: #FFFFFF;
	border-radius: 20px;
	margin-bottom: 20px;
}

.recruit-content{
	display: flex;
	gap: 65px
}


.recruit-cardimage{
	flex-shrink: 0;
	width: 325px;
	height: 215px
}

.recruit-cardimage img{
	max-width: 100%;
	height: auto;
}


.recruit-head{
	color: #694B33;
	font-size: 32px;
	font-weight: bold;
	padding: 50px 70px;
	position: relative;
}


.recruit-body{
	color: #694B33;
	font-size: 20px;
	padding: 50px 70px;
	display: none;
}

.recruit-head::after{
	display: block;
	content: "";
	background-image: url(../images/arrow.svg);
	background-size: cover;
	width: 44px;
	height: 41px;
	position: absolute;
	top: 50px;
	bottom: 0;
	right: 70px;
	transition: transform 0.3s;
}

.recruit-head.active::after{
	transform: rotate(180deg);
}

.recruit-bgwavebottom{
	background-image: url(../images/募集職種背景-bottom.svg);
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 1440/153;
	transform: translateY(-1px);
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px){
	.recruit-section-inner{
		padding: 0 20px;
		padding-bottom: 40px;
	}

	.recruit-bgwavetop{
		background-image: url(../images/recruit-bgwave-top-sp.svg);
		width: 100%;
		aspect-ratio: 375/63;
	}
	.recruit-content{
		flex-direction: column-reverse;
		align-items: center;
		gap: 25px;
	}

	.recruit-head{
		font-size: 20px;
		font-weight: bold;
		padding: 20px 27px;
		position: relative;
	}

	.recruit-head::after{
		background-size: contain;
		width: 21px;
		height: 21px;
		position: absolute;
		top: 23px;		
		right: 25px;
	}
	

	.recruit-body {
		font-size: 16px;
		padding: 30px 18px;
	}
	
	.recruit-cardimage{
		max-width: 325px;
		width: 100%;
		height: 215px;
	}
	

	.recruit-bgwavebottom{
		background-image: url(../images/recruit-bgwave-bottom-sp.svg);
		width: 100%;
		aspect-ratio: 375/63;
	}


}



/*-----------
	 flow
------------- */

#flow{
	background-color: #FFFFFF;
	/* height: 800px; */
	margin-bottom: 150px;
}

.flow-section-inner{
	max-width: 1060px;
	margin: 0 auto;
}

.flow-col3{
	display: flex;
	gap: 77px;
}

.flow-image{
	background-color: rgba(235, 158, 98, 0.4);
	width: 100%;
	max-width: 300px;
	aspect-ratio: 1/1;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -23px;
	order: 2;
}

.flow-item:nth-child(1) .flow-image img{
	width: 47%;
	height: auto;
}
.flow-item:nth-child(2) .flow-image img{
	width: 73%;
	height: auto;
}
.flow-item:nth-child(3) .flow-image img{
	width: 70%;
	height: auto;
	padding-top: 40px;
}
	
.flow-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 28%;
}

.flow-itemtext{
	display: contents;
}


.flow-name{
	color: #694B33;
	font-size: 32px;
	font-weight: bold;
	z-index: 1;
	order: 1;
}

.flow-description{
	color: #694B33;
	font-size: 20px;
	/* font-family:  YuGothic,'Yu Gothic' */
	/* text-align: center; */
	order: 3;
}

.flow-arrow{
	color: #FFFFFF;
	font-size: 24px;
	font-weight: bold;
	margin-top: 60px;
	text-align: center;
	height: 64px;
	margin-right: 50px;
	background-color: #C0D077;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flow-arrow p{
	margin-left: 50px;
}

.flow-arrow::after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 32px solid transparent;
	border-bottom: 32px solid transparent;
	border-left: 50px solid #c0d077;
	border-right: 0;
	position: absolute;
	left: 100%;
	top: 0;
	}

@media screen and (max-width: 768px){
	#flow{
		margin-bottom: 90px;
	}
	
	.flow-section-inner{
		padding: 0 20px;
		margin-top: 30px;
	}

	.flow-col3{
		flex-direction: column;
		gap: 70px;
	}
	.flow-item{
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		gap: 15px;
	}
	.flow-description{
		margin-top: 10px;
	}
	.flow-itemtext{
		display: block;
	}

	.flow-image{
		margin-top: 0;
	}
	

	.flow-name{
		font-size: 20px;
	}

	.flow-description{
		font-size: 16px;
	}

	.flow-arrow{
		font-size: 20px;
		height: 85px;
		margin-right: 0;
		position: relative;
		/* display: flex; */
		align-items: center;
		justify-content: center;
	}
	
	.flow-arrow p{
		margin-left: 0;
	}
	
	
	.flow-arrow::after{
		display: none;
	}
}


#cta{
	width: 100%;
	aspect-ratio: 1440/900;
	background-image: url(../images/cta-image.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	color: #FFFFFF;
	font-size: 48px;	
	font-weight: 500;
	padding-top: 105px;
}

.large span{
	display: block;
	text-align: center;
}

.button-cta{
	display: block;
	width: 432px;
	height: 130px;
	background-color: #EB9E62;
	color: #FFFFFF;
	font-size: 64px;
	font-weight: bold;
	border-radius: 80px;
	text-align: center;
	line-height: 130px;
	margin: 0 auto;
	margin-top: 60px;
	overflow: hidden;
	position: relative;
	transition-duration: .4s;
	z-index: 2;
	transition: .3s cubic-bezier(0.5, 1, 0.89, 1);
}

.button-cta::after {
	background: #F58A36;
	border-radius: 50%;
	content: "";
	display: block;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .5s, transform 0s;
	transition-duration: .4s;
}

.button-cta:hover {
	color: #FFFFFF;
	transform: scale(1.1);

}

.button-cta:hover::after {
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
	transition-delay: 0s;
	transition: opacity .8s, transform .6s ease-in-out;
}
@media screen and (min-width: 1200px){
	.spbr{
		display: none;
	}
}

@media screen and (max-width: 1200px){
	#cta{
		width: 100vw;
		aspect-ratio: 375/420;
		background-image: url(../images/cta-image-sp.png);
		/* background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		position: relative; */
		/* color: #FFFFFF; */
		font-size: 40px;	
		font-weight: 500;
		padding-top: 80px;
	}
}



@media screen and (max-width: 768px){
	#cta{
		width: 100vw;
		aspect-ratio: 375/420;
		background-image: url(../images/cta-image-sp.png);
		/* background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		position: relative; */
		/* color: #FFFFFF; */
		font-size: 18px;	
		font-weight: 500;
		padding-top: 30px;
	}
	.button-cta{
		display: block;
		width: 200px;
		height: 50px;
		font-size: 30px;
		line-height: 50px;
		/* margin: 0 auto; */
		margin-top: 20px;
		/* overflow: hidden;
		position: relative;
		transition-duration: .4s;
		z-index: 2;
		transition: .3s cubic-bezier(0.5, 1, 0.89, 1); */
	}
	
}




/*-----------
	 footer
------------- */

#footer{
	background-color: #FEF7ED;
	height: 300px;
	color: #694B33;
	padding: 40px,0;
	font-size: 16px;
	/* font-weight: normal; */
	text-align: center;
	letter-spacing: 0.01em;
	padding: 80px 0;
}

.footer-logo{
	/* width: 305px; */
	height: 35px;
	width: 100%;
	text-align: center;
}

.footer-logo img{
	width: 305px;
	/* width: 100%; */
	height: auto;
}

.footer a {
	color: #694B33;
	margin: 0 20px;
}

.footer-link{
	margin: 60px 0 24px 0;
	display: flex;
	justify-content: center;
}

.footer-link li{
	list-style: none;
	margin-left: 10px;
	margin-right: 10px;
}

.footer-link a:hover{
	text-decoration: underline;
	color: #694B33;
}


@media screen and (max-width: 768px){
	.footer{
		height: 200px;
		color: #694B33;
		padding-top: 45px;
		font-size: 12px;
		/* font-weight: normal; */
		/* text-align: center;
		letter-spacing: 0.01em;
		/* padding: 80px 0; */ */
	}
	.footer-logo img {
		width: 200px;
	}

	.footer-link {
		flex-direction: column;
		margin-top: 15px;
	}
}
	


/** -----------------------------------------------
  PC :  画面の横幅が641px以上
------------------------------------------------**/

.example {
	font-size: 50px;
	color: #99293D;
}




/*ここからメディアクエリで各デバイスサイズに書き分けます。
今回の課題で考慮するのはPCとスマホのみでOKですが、タブレットサイズでのスタイルを書いてもOK！
また、CSSは上から下に継承されるので、変化させたいところだけ書けばOKです*/


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){
	.example {
		font-size: 20px;
		color: #AD8651;
	}
}
