@charset "UTF-8";

/*セクション共通の余白*/
#about, #works, #member, #benefits, #recruit{
	padding: 160px 0 160px 0;
}


/*横幅640px以上の時に表示する*/
.pc-only{
	display: block;
}

/*横幅639px以下の時は表示しない*/
.sp-only{
	display: none;
}

.sp-br{
	display: inline;
}


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

html{
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body{
	overflow-x: hidden;
}


/*テキスト*/



h1.large{
	font-weight: bold;
	font-size: 32px;
	letter-spacing: 0.1em;
}

h2.medium{
	font-weight: normal;
	font-size: 24px;
	letter-spacing: 0.2em;
	margin-top: 56px;
	margin-bottom: -24px;
	z-index: 10;
}

h3.small{
	font-weight: normal;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 2.5;
	margin-top: 56px;
	margin-bottom: 24px;
}

h3.lead{
	font-weight: normal;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 2.5;
	margin-top: 56px;
	margin-bottom: 24px;
	text-align: center;
}

p.large{
	font-weight: bold;
	font-size: 32px;
	letter-spacing: 0.1em;
}

p.medium{
	font-weight: normal;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 2.5;
	margin-top: 56px;
	z-index: 1;
}

p.small{
	font-weight: normal;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

p.mini{
	font-weight: normal;
	font-size: 12px;
	letter-spacing: 0.05em;
}

.title img{
	text-align: center;
	margin: 0 auto;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
	height: 100%;
}


#header {
	background-color: #f8efe7;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}



.header-logo{
	padding: 8px 0;
	margin-left: clamp(16px, 8vw ,100px);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 20%;
	color: #2f3a44;
}


.gnav-pc-wrap{
	margin-right: 118px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


ul.gnav-pc li{
	margin-right: 16px;
	display: inline;
	color: #2f3a44;
}

.gnav-pc a{
	color: #2f3a44;
	text-decoration: none;
}

.gnav-pc a:hover{
	color: #a3af8f;
	transition: 0.3s;
}

.button-small{
	position: relative;
	display: block;
	width: 141px;
	height: 40px;
	background-color: #A3AF8F;
	font-size: 16px;
	letter-spacing: 0.05em;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	border-radius: 20px;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
}

#mainvisual {
	position: relative;
	width: 100%;
	height: calc(100vh - 100px);
	background-image: url("../images/FV.png");
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

#mainvisual p.fv_maincopy{
	position: absolute;
	left: 200px;
	top: 50%;
	color: #ffffff;
	font-size: 64px;
	text-shadow: 3px 3px 3px rgba(47,58,68,0.3);
	
}

.more-button{
	padding-top: 48px;
}
.more-button a{
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 0.5em;
	background-color: none;
	transition: 0.3s;
	border: 1px solid #2f3a44;
	border-color: #2f3a44;
	border-radius: 50vh;
	width: 280px;
	height: 3em;
	align-items: center;
	color: #2f3a44;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: normal;
}

.more-button a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: -35px;
	transform: translateY(-80%);
	width: 70px;
	height: 1px;
	background-color: #2f3a44;
	transition: 0.3s;
}

.more-button a:hover{
	text-decoration: none;
	background-color: rgba(240,206,213,0.7);
}

.more-button a:hover::after{
	transform: translateX(5px);
}


#about{
	background-color: #ffffff;
	text-align: center;
	position: relative;
	overflow: visible;
}

.deco-left{
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	width: 689px;
	height: 798px;
	background-image: url("../images/left-circle-pc-only.png");
	bottom: -100px;
	left: -300px;
	z-index: 0;
}


#about::before{
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	width: 804px;
	height: 927px;
	background-image: url("../images/right-circle-pc-only.png");
	top: -200px;
	right: -300px;
	z-index: 0;
}

#about .section-inner,
#about .title,
#about p.medium,
#about h2.medium,
{
	position: relative;
	z-index: 10;
}

#about::after{
	content: "";
	display: block;
	width: 100%;
	height: 60px;
	background-image: url("../images/leaf.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	bottom: -30px;
	left: 0;
}




#works{
	background-color: #ffffff;	
}

#works div.title{
	text-align: center;
}
#works h1.large{
text-align: center;
}

#works h3.small{
text-align: center;
}

#works p.large{
	text-align: left;
}

#works p.medium{
	text-align: left;
}


.works-card{
	display: flex;
	margin-bottom: 100px;
}

.photo-left{
	display: block;
	width: 50%;
	height: auto;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 16px;
	color: #2F3A44;
	overflow: hidden;
	border-color: rgba(48,58,68,0.2);
	box-shadow: 10px 10px 0px rgba(163,175,143,0.6);
	z-index:20;
}

.text-left{
	margin-top: 50px;
	margin-bottom: -50px;
	margin-left: -50px;
	display: block;
	width: 70%;
	padding-top: 56px;
	padding-bottom: 56px;
	padding-left: 5em;
	padding-right: 1.5em;
	background-color: rgba(248,239,231,0.5);
	border-color: rgba(47,58,68,1);
	border-radius: 16px;
	box-shadow: 10px 10px 0px rgba(163,175,143,0.6);
	z-index:10;
}

.photo-right{
	display: block;
	width: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 16px;
	color: #2F3A44;
	overflow: hidden;
	border-color: rgba(48,58,68,1);
	box-shadow: -10px 10px 0px rgba(163,175,143,0.6);
	z-index:20;
}



.text-right{
	margin-top: 50px;
	margin-bottom: -50px;
	margin-right: -50px;
	display: block;
	width: 70%;
	padding-top: 56px;
	padding-left: 3em;
	padding-right: 5em;
	padding-bottom: 56px;
	background-color: rgba(248,239,231,0.5);
	border: rgba(47,58,68,0.2);
	border-radius: 16px;
	box-shadow: -10px 10px 0px rgba(163,175,143,0.6);
	z-index:10;
}




/* ここから世界観セクション*/
#mood {
	background: linear-gradient(
	90deg,
	#F8EFE7 0%,
	#F0CED2 100%
	);
	padding: 80px 0;
	overflow: hidden;
}

#mood .section-title {
  margin-bottom: 32px;
}

#mood p.medium {
  max-width: 600px;
  margin: 0 auto;
  line-height: 2.2;
}

.mood-slider {
  width: 100%;
}

.mood-slider .swiper-slide {
	width: 280px;
	border-radius: 16px;
	overflow: hidden;
}

.mood-slider .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}

.wave-divider{
	margin-bottom: -1px;
	overflow: hidden;
}

.wave-divider.bottom{
	margin-top: -1px;
	background-color: rgba(248,239,231,0.5);
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100px;
	transform: rotateY(0deg);
}



















#member{
	background-color: rgba(248,239,231,0.5);
	text-align: center;
	position: relative;
}

#member div.title{
	text-align: center;
}

#member .section-inner{
	position: relative;
	z-index: 2;
}

#member p.medium{
	font-weight: normal;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 2.5;
	margin-top: 0.5em;
	margin-bottom: 1em;
}

/*メンバーカード*/
.member-card{
	display: block;
	text-align: center;
	width: 25%;
	height: auto;
	background-color: #fffffF;
	border-radius: 8px;
	color: #2F3A44;
	border: 1px solid rgba(47,58,68,0.2);
	border-style: solid;
	
	box-shadow: 3px 3px 8px rgba(48,58,68,0.3);
	margin: 0 auto;
}

.member-card img{
	width:100%;
	height:auto;
	display:block;
}


.photo01,
.photo02,
.photo03,
.photo04{
	border-radius: 8px 8px 0 0;
	overflow: hidden;
}

.small{
	margin-top: 16px;
	margin-bottom: 8px;
	text-align: center;
}

#member::after{
	content: "";
	position: absolute;
	bottom: -160px;
	left: 0;
	width: 100%;
	height: 160px;
	background-color: rgba(248,239,231,0.5);
	border-radius: 0 0 100% 100%;
	
}

.col-4{
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
}
/*メンバーカードここまで*/




#benefits{
	background-color: #ffffff;
	margin-top: 160px;
	position: relative;
	overflow: visible;
}


#benefits .title{
	text-align: center;
}

#benefits h1.large{
text-align: center;
}

#benefits h3.small{
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.05em;
	line-height: 1em;
	margin-top: 24px;
	margin-bottom: 24px;
}

#benefits div.col-3{
	text-align: center;	
	display: flex;
}

.num{
	font-size: 48px;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #e1547c;
}

.mark{
	font-weight: bold;
	color: #e1547c;
}

#benefits p.mini{
text-align: center;
}

#benefits p.medium{
	text-align: left;
}



#benefits::after{
	content: "";
	display: block;
	width: 100%;
	height: 60px;
	background-image: url("../images/leaf.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	bottom: 0;
	transform: translateY(30px);
	left: 0;
	position: absolute;
	z-index: 9999;
}


.benefits-card{
	display: block;
	width: 33%;
	height: auto;
	background-color: #fffffF;
	border-radius: 8px;
	color: #2F3A44;
	overflow: hidden;
	border-color: rgba(48,58,68,0.2);
	box-shadow: 3px 3px 8px rgba(48,58,68,0.3);
	padding: 24px;
	flex: 1;
	box-sizing: border-box;
}

.flex-icon{
	margin: 0 auto;
	text-align: center;
}

#benefits p.small{
	max-width: calc(100% -(48 * 2))/3 - 48px;
	text-align: left;
}

.benefits-row{
	display: block;
	align-items: center;
	gap: 16px;
}


.col-3{
	margin: 0 auto;
	display: flex;
	gap: 36px;
	padding: 0 15%;
}


#recruit{
	background-color: #ffffff;
	text-align: center;
	position: relative;
}

#recruit div.title{
	text-align: center;
}

#recruit::before{
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;	
	width: 804px;
	height: 927px;
	background-image: url("../images/right-circle-pc-only.png");
	top: -200px;
	right: -300px;
	z-index: 0;
}
.job-list{
	list-style: none;
	margin: 0;
	padding: 0;
	
}
.job-list-area{
	text-align: center;
	
}

.job-item::before{
	content: "";
	width: 0.75em;
	height: 0.75em;
	background-color: #ffffff;
	border-radius: 50%;
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.job-item{
	background-color: rgba(163,175,143,0.8);
	display: inline-block;
	min-width: 262px;
	line-height: 2em;
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
	text-decoration: none;
	margin-bottom: 1.5em;
	color: #ffffff;
	box-shadow: 3px 3px 3px rgba(47,58,68,0.3);
	position: relative;
}

#cta{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 52vw;
	text-decoration: none;
	transition: 0.3s;
	background-image: url("../images/CTA.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	lay: flex;
	flex-direction: column;
	align-items: center;
	column-gap: 48px;
}

.cta-area{
	display: flex;
	flex-direction: column;
	align-items: center;
	column-gap: 48px;
}
p.cta_copy{
	text-align: center;
	color: #ffffff;
	font-size: clamp(24px, 4vw, 48px);
	text-shadow: 3px 3px 3px rgba(47,58,68,0.3);
	white-space: nowrap;
	padding-bottom: 1em;
}

/*spanはPCでは改行しない*/
.sp-break{
	display: inline;
}

.entry{
	top: calc(50% + 2em);
	left: 50%;
	
}
.button-large{
	display: block;
	width: 8em;
	padding: 0.3em;
	background-color: #A3AF8F;
	font-size: clamp(24px, 4vw, 64px);
	letter-spacing: 0.1em;
	font-weight: bold;
	text-align: center;
	border-radius: 999px;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 3px 3px 3px rgba(47,58,68,0.3)
}



#footer{
	background-color: #F0CED5;
	text-align: center;
	padding: 80px 0;
}



#footer a{
	color: #2F3A44;
	text-decoration: none;
	font-size: 12px;
}

ul.footer-link {
	margin: 80px 0;
}

p.copyright{
	color: #2F3A44;
	font-size: 12px;
}

.footer-link li{
	display: inline;
	margin-right: 48px;
}

.footer-logo{
	margin: 0 auto;
	text-align: center;
}
/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
	/*下記のCSSはご自身のデザインに合わせて書き換えてください。*/
	font-size: 16px;
	line-height: 1.6;
	color: #2F3A44;
	background-color:#fff;
	font-family: "Zen Maru Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Osaka", "Verdana", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 500;
}

.maincopy{
	font-size: 64px;
	font-family:"Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.015em;
}

img{
	max-width: 100%;
	height: auto;
	display: block;
}

.title{
	text-align: center;
}

.section-title{
	position: relative;
	display: inline-block;
	text-align: center;
}

.section-title::after{
	content: "";
	position: absolute;
	left: -10px;
	bottom: -12px;
	width: calc(100% + 20px);
	height: 12px;
	background-image: url("../images/wave-line.png");
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.motif{
	margin-bottom: 16px;
}



/*レイアウト*/






.card{
	flex: 1;
	box-sizing: border-box;
}


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

.mainvisual {
	font-size: 100px;
	color: #99293D;
}




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

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

.sp-br{
	display: block;
	}
	
.pc-only{
	display: none;
}
	
.sp-only{
	display: block;
}
	
.section-inner{
		padding: 0 50px;
	}

	#benefits::after{
	display: none;
	}
.gnav-pc-wrap{
	display: none;
	}
	
	
	.header-logo p.large{
	font-size: 18px;
	letter-spacing: 0;
	margin: 0;
	padding: 8px 0 0 0;
	}

.header-logo{
	width: 100%;
	max-width: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: space-evenly;
	padding: 16px;
	line-height: 1.2;
	}
	
	.header-logo img{
		width: 100%;
	max-width: 100px;
	}
.gnav-sp-header{
	display: flex;
	align-items: center;
	gap: 12px;
	position: absolute;
	right: 16px;
	
	height: 40px;
	width: auto;
	margin: 0 auto;
	padding: 0 auto;
	}
	
.gnav-sp-wrap{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(248,239,231,0.6);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
	padding: 100px 24px;
	box-sizing: border-box;
	z-index: 1000;
}
	
.gnav-sp-wrap.open{
	opacity: 1;
	pointer-events: auto;

}

.gnav-sp{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	gap: 24px;
}
	
.gnav-sp a{
	font-size: 16px;
	color: #ffffff;
	text-decoration: none;
	background-color: rgba(163,175,143,0.8);
	display: inline-block;
	min-width: 262px;
	line-height: 2em;
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
	margin-bottom: 1.5em;
	color: #ffffff;
	box-shadow: 3px 3px 3px rgba(47,58,68,0.3);
	position: relative;
	text-align: center;
	}
	
.gnav-sp a::before{
	content: "";
	width: 0.75em;
	height: 0.75em;
	background-color: #ffffff;
	border-radius: 50%;
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
}

	
.sp-entry{order: 1;}
	
	
	#menu-button{
	width: 24px;
	height: 18px;
	position: relative;
	align-items: center;
	z-index: 10;
	order: 2;
	cursor: pointer;
	}

.menu-button-inner{
	display: flex;
	flex-direction: column;
	gap: 7px;
	width: 100%;
	position: relative;
	height: 100%;
	}
	
.menu-button-inner span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #2f3a44;
	transition: all 0.4s ease;
	}

.menu-button-inner span:nth-child(1){top: 0;}
	
.menu-button-inner span:nth-child(2){top: 8px;}
	
.menu-button-inner span:nth-child(3){bottom: 0;}
	
	
	
	#menu-button.open .menu-button-inner span:nth-child(1){
		top: 8px;
		transform: rotate(45deg);
	}
	
	#menu-button.open .menu-button-inner span:nth-child(2){
	opacity: 0;
}
	
	#menu-button.open .menu-button-inner span:nth-child(3){
	bottom: 8px;
	transform: rotate(-45deg);
	}
	
	
#mainvisual p.fv_maincopy{
	position: absolute;
	font-size: 64px;
	line-height: 1.5em;
	letter-spacing: 0.15em;
	left: 100px;
	top: 50%;
	}
	
	
#about::before{
	width: 476px;
	height: 600px;
	background-image: url("../images/right-circle-sp-only.png");
	top: -100px;
	right: -200px;
	z-index: 0;
}
	
.deco-left{
	width: 689px;
	height: 798px;
	background-image: url("../images/left-circle-sp-only.png");
	bottom: -200px;
	left: -300px;
	z-index: 0;
}

	#about::after{
		display: none;
	}
	
	

	
.more-button a{		
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 1.5em;
	width: 150px;
	height: 4.5em;		
	}
	
.more-button a::after{
	right: -18px;
	width: 36px;
}
	
.col-4{
	flex-wrap:wrap;
}

.member-card{
	width:48%;
}
	
	.col-3{
	flex-wrap: wrap;
	}
	
	.benefits-card{
	width: 33%;
	}
	
	
.works-card{
	display: flex!important;
	flex-direction: column;
	background: #fff !important;
	border-radius: 8px;
	margin-bottom: 36px;
	border: 1px solid rgba(47,58,68,0.1);
	box-shadow: 3px 3px 3px rgba(47,58,68,0.1);
	padding-bottom: 16px;
	}
	
.works-card:nth-child(3){
	margin-bottom: none !important;
	}

.works-card img{
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
	}
	
.photo-left,
.photo-right,
.text-left,	
.text-right{
	width: 100% !important;
	margin: 0 !important;
	position: static;
	transform: none;
	top: auto;
	left: auto;
	bottom: auto;
	right: auto;
	background: none !important;
	box-shadow: none !important;
	}

.text-left,
.text-right{
	padding: 0 16px !important;
	width: 100%;
	order: 2;
	}

.photo-left,
.photo-right{
	border-radius: 8px 8px 0 0;
	overflow: hidden;
	order: 1;
	}
	
.text-left p,
.text-right p{
	text-align: center !important;
	}
	
#works p.medium{
	margin-top: 8px;
	text-align: left !important;
	line-height: 1.75em;
	}

	
.col-3{
	margin: 0 auto;
	display: block !important;
	padding: 0 60px;
	column-gap: 24px;
}

	
  #mood {
    display: none;
  }
	
	.mood-wrap{
		display: none;
	}
	
.benefits-card{
	width: 100%;
	margin-bottom: 24px;
	}
	
.benefits-row{
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 8px;
}
	
	.flex-icon{
		margin: 0;
		padding: 0;
	}

.ratio{
	display: block;
	align-items: center;
	}
	
	.percent{
		display: block;
		line-height: 1;
		color: #E1547C;
		align-items: flex-end;
	}
	
	.percent .num{
		font-size: 48px;
		font-weight: bold;
	}
	
	.percent .mark{
		font-size: 16px
	}
	
	#recruit::before{
	width: 476px;
	height: 600px;
	background-image: url("../images/right-circle-sp-only.png");
	top: -100px;
	right: -200px;
	z-index: 0;
}


	#cta{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 80vw;
	text-decoration: none;
	transition: 0.3s;
	background-image: url("../images/CTA.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex-direction: column;
	align-items: center;
	column-gap: 48px;
}

.cta-area{
	display: block;
	column-gap: 1em;
}

p.cta_copy{
	top: 50%;
	text-align: center;
	color: #ffffff;
	
	line-height: 1.2em;
	text-shadow: 3px 3px 3px rgba(47,58,68,0.3);
	white-space: nowrap;
	padding: 2em 0 0.5em 0;
	letter-spacing: 0.1em;
}

a.button-large{
	display: block;
	margin: 0 auto;
	width: 8em;
	padding: 0.3em;
	background-color: #A3AF8F;
	
	letter-spacing: 0.1em;
	font-weight: bold;
	text-align: center;
	border-radius: 999px;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 3px 3px 3px rgba(47,58,68,0.3)
}

	.footer-link{
		margin: 48px auto
	}
	
	.footer-link li{
	display: block;
	margin: 0 auto;
	padding: 0.5em;
}



}


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){
	
	
	
/*	左右に50px余白*/
	.section-inner{
		padding: 0 50px;
}
	

	

	


h1.section-title{
	font-weight: bold;
	font-size: 24px;
	letter-spacing: 0.1em;
}

h2.medium{
	font-weight: normal;
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-top: 40px;
	
}

h3.small{
	font-weight: normal;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 2.5;
	margin-top: 40px;
	margin-bottom: 32px;
}

	#benefits h3.small{
	font-weight: normal;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 2.5;
	margin-top: 40px;
	margin-bottom: 32px;
}
h3.lead{
	font-size: 12px;
	}

p.large{
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-top: 16px;
}

p.medium{
	font-weight: normal;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 2.5;
	margin-top: 40px;
}
	
p.small{
	font-weight: normal;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 2em;
	margin-top: 24px;
}

p.mini{
	font-weight: normal;
	font-size: 12px;
	letter-spacing: 0;
}

/*もっと見るのボタンの話*/

.more-button a{		
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 1.5em;
	width: 150px;
	height: 4.5em;		
	}

.more-button{
	padding-top: 24px; 	
	}
	

	
	
#about, #works, #member, #benefits, #recruit{
	padding: 64px 0;
	}

#header{
	height: 50px;
	width: 100%;
	padding: 0;
	position: fixed;
	}

#header h1{
	margin: 0;
	padding-left: 24px;
	}
	
#header p{
	font-size: 12px;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
	}


#header h1 a{
	display: flex;
	}
	



#header .header-logo{
	width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: space-evenly;
	padding-left: 8px;
	line-height: 1.2;
	
	}

	.header-logo img{
		width: 100%;
		max-width: 80px;
		height: auto;
	}
	
	#header.header-logo p.large{
		font-size: 14px
	}
	
.button-small{
	width: 96px;
	height: 32px;
	font-size: 14px;
	line-height: 32px;
	border-radius: 16px;
	}
	
/*ここからmainvisual	*/
	
#mainvisual{
	width: 100vw;
	height: 600px;
	background-image: url("../images/FV-sp.png");
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	}


#mainvisual p.fv_maincopy{
	position: absolute;
	font-size: 32px;
	line-height: 1.5em;
	letter-spacing: 0.15em;
	left: 50px;
	top: 50%;
	}

/*ここから　私たちについて	*/
	
#about p medium{
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
	
	}
	
/*ここから事業について*/
	

	
/*ここから　メンバー紹介*/

	
.col-4{
	display: flex;
	flex-wrap:nowrap;
	overflow: auto;
	scroll-snap-type:x mandatory;
	width:100%;
}

.member-card{
	width:100%;
	flex: 0 0 100%;
	scroll-snap-align: start;
}
	
/* ドット */
.member-dots{
	text-align: center;
	margin-top: 16px;
}

.dot{
	display:inline-block;
	width:8px;
	height:8px;
	border-radius:50%;
	background:#ccc;
	margin:0 4px;
}

.dot.active{
	background:#A3AF8F;
}


/*ここから働く環境*/
	
.lead{
	font-weight: normal;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 2.5;
	margin-top: 8px;
	margin-bottom: 24px;
	text-align: center;
}
	
.small .sp-only{
	font-size: 16px !important;
	}
	
	
/*	ここからCTA*/



p.cta_copy{
	text-align: center;
	color: #ffffff;
	line-height: 1.2em;
	text-shadow: 3px 3px 3px rgba(47,58,68,0.3);
	white-space: nowrap;
	margin: 0 auto;
}

	
	
	
/*	ここからフッター*/

}
