@charset "UTF-8";
/** -----------------------------------------------
  BASE（共通）
------------------------------------------------**/
/* 基本設定 */
body {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	font-style: normal;
	color: #342815;
	background-color:#fff;
}

/* セクション共通余白 */
#about,
#business,
#member,
#workstyle,
#recruit,
#faq{
	padding: 144px 80px;
}

@media screen and (max-width:640px){
	#about,
	#business,
	#member,
	#workstyle,
	#recruit,
	#faq{
		padding: 48px 20px;
	}
}

/* セクション共通背景 */
#about,
#member,
#faq{
	background-color: rgba(247, 244, 238, 0.3);
}

#business,
#recruit{
	background-color: #f7f4ee;
}

/* セクション共通レイアウト */
.section-inner{
	width: 100%;
	max-width: 1096px;
	margin: 0 auto;
}

/* セクション見出し（共通） */
.section-heading{
	text-align: center;
	margin-bottom: 40px;
}

.title-en{
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #A8B0A0;
	margin: 0;
}

.section-title{
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin: 0;
}

.section-heading img{
	width: 100px;
	height: auto;
}

/* スマホ */
@media screen and (max-width:640px){
	.section-heading{
		margin-bottom: 24px;
	}

	.title-en{
		font-size: 12px;
	}

	.section-title{
		font-size: 18px;
	}
}

/* セクション説明文（共通） */
.section-description{
	text-align: center;
	margin-bottom: 56px;
}

.catch{
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 8px;
}

/* スマホ */
@media screen and (max-width:640px){
	.section-description{
		margin-bottom: 24px;
	}

	.catch{
		font-size: 20px;
	}

	.description{
		width: fit-content;
		margin: 0 auto;
        font-size: 14px;
		text-align: left;
    }
}

/* テキスト共通 */
.copy{
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.subcopy{
	font-size: 24px;
}

.sp-br{
    display: none;
}

/* スマホ */
@media screen and (max-width:640px){
	.copy{
		font-size: 28px;
	}

	.subcopy{
		font-size: 14px;
	}

	.sp-br {
        display: inline;
    }
}

/** -----------------------------------------------
MARK:ボタン（共通）
------------------------------------------------**/
/* セクションボタン */
.section-button-wrap{
	text-align: center;
	margin-top: 80px;
}

.section-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
	gap: 8px;
    height: 48px;
    padding: 0 16px 0 24px;
    border: 1px solid #342815;
    border-radius: 24px;
    color: #342815;
    font-weight: 700;
    text-decoration: none;
}

.section-button img{
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.section-button:hover{
	background-color: #342815;
	color: #ffffff;
}

.section-button:hover img{
	content: url(../../images/button_arrow_br_hover.svg);
	transform: translateX(4px);
}

/* スマホ */
@media screen and (max-width:640px){
	.section-button-wrap{
		margin-top: 40px;
	}

	.section-button {
		font-size: 14px;
	}
}

/* ボタン_募集要項とエントリー_共通項目 */
.button-info,
.button-entry{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
	gap: 8px;
	width: 262px;
	height: 96px;
	white-space: nowrap;
	color: #ffffff;
	font-size: 24px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.button-info::after,
.button-entry::after{
	content: "";
	position: absolute;
	inset: 4px -4px -4px 4px;
	border-radius: 8px;
	transition: opacity 0.3s ease;
}

.button-info:hover,
.button-entry:hover{
	transform: translate(4px, 4px);
    background-color: #ffffff;
}

.button-info:hover::after,
.button-entry:hover::after{
	opacity: 0;
}

/* ボタン_募集要項_個別設定項目 */
.button-info{
	background-color: #A8B0A0;
}

.button-info::after{
	border: 1px solid #A8B0A0;
}

.button-info > img{
	width: 40px;
	height: auto;
}

.button-info:hover{
    color: #A8B0A0;
	border: 2px solid #A8B0A0;
}

.button-info:hover > img{
	content: url(../../images/button_jobinfo_icon_hover.svg);
}

/* スマホ */
@media screen and (max-width:640px){
	#recruit .button-info{
		display: none;
	}
}

/* ボタン_エントリー_個別設定項目 */
.button-entry{
	background-color: #b86f5b;
}

.button-entry::after{
	border: 1px solid #b86f5b;
}

.button-entry > img{
	width: 32px;
	height: auto;
}

.button-entry:hover{
    color: #b86f5b;
	border: 2px solid #b86f5b;
}

.button-entry:hover > img{
	content: url(../../images/button_entry_icon_hover.svg);
}

/** -----------------------------------------------
MARK:ヘッダー
------------------------------------------------**/
#header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: #f7f4ee;
	width: 100%;
	height: 72px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 80px;
}

.header-left{
	display: flex;
	align-items: center;
	gap: 24px;
}

#header-logo img{
	width: 240px;
	height: auto;
	display: block;
}

#header-logo a{
	display: block;
}

.header-label{
	border: 1px solid #342815;
	padding: 2px 8px;
	margin: 0;
}

.gnav-pc-wrap{
	display: flex;
	align-items: center;
	gap: 24px;
}

.gnav-pc{
	list-style: none;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0;
	margin: 0;
}

.gnav-pc a{
	position: relative;
	text-decoration: none;
	color: #342815;
	font-weight: 700;
	transition: color 0.3s ease;
}

.gnav-pc a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background-color: #b86f5b;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.gnav-pc a:hover {
    color: #b86f5b;
}

.gnav-pc a:hover::after {
    transform: scaleX(1);
}

/* ヘッダー内エントリーボタン*/
.button-small-entry{
	position: relative;
	width: 172px;
	height: 44px;
	text-decoration: none;
}

.button-small-entry img{
	width: 24px;
	height: 24px;
}

.button-small-entry::after{
	content: "";
	position: absolute;
	inset: 4px -4px -4px 4px;
	border: 1px solid #b86f5b;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.button-small-entry-inner{
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 100%;
	background-color: #b86f5b;
	color: #ffffff;
	font-weight: 700;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.button-small-entry:hover .button-small-entry-inner{
	transform: translate(4px, 4px);
}

.button-small-entry:hover::after{
	transform: translate(-4px, -4px);
}

.hamburger{
	display: none;
}

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

/* スマホ */
@media screen and (max-width:640px){
	#header{
		height: 56px;
		padding: 0 20px;
	}
	
	.header-left{
		gap: 16px;
	}

	#header-logo img{
		width: 140px;
    }

	.header-label{
		padding: 0 4px;
		font-size: 12px;
	}

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

	html:has(body.is-menu-open),
    body.is-menu-open{
        overflow: hidden;
    }

	.hamburger{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		width: 24px;
		height: 24px;
		padding: 0;
		border: none;
		background: transparent;
		cursor: pointer;
	}

	.hamburger span {
		display: block;
		width: 24px;
		height: 2px;
		background: #342815;
		transition: transform 0.3s, opacity 0.3s;
		transform-origin: center;
	}

	.hamburger.is-open span:nth-child(1){
		transform: translateY(7px) rotate(45deg);
	}

	.hamburger.is-open span:nth-child(2){
		opacity: 0;
		transform: scaleX(0);
	}

	.hamburger.is-open span:nth-child(3){
		transform: translateY(-7px) rotate(-45deg);
	}

	.gnav-sp-wrap{
		position: fixed;
		top: 56px;
		left: 0;
		width: 100%;
		height: calc(100vh - 56px);
		background-color: rgba(247, 244, 238, 0.95);
	}

	.gnav-sp{
		list-style: none;
		margin: 0;
		padding: 24px 0 0;
	}

	.gnav-sp a{
		display: block;
		padding: 18px 20px;
		color: #342815;
		font-size: 14px;
		font-weight: 700;
		text-decoration: none;
		text-align: center;
	}
}

/** -----------------------------------------------
MARK:メインビジュアル
------------------------------------------------**/
#mainvisual{
	position: relative;
	width: 100vw;
	height: min(59vw, 850px);
	background-image: url("../../images/mv_workstyle_bg_pc.webp");
	background-size: 100% auto;
	background-position: center top;
	background-repeat: no-repeat;
	margin-top: 72px;
	overflow: hidden;
}

.mv-img1-wrap{
	position: absolute;
    left: -20px;
    top: 0;
    width: min(27.8vw, 400px);
    display: block;
}

.mv-img2-wrap{
	position: absolute;
    right: -20px;
    top: -20px;
    width: min(66.7vw, 960px);
    display: block;
}

.mv-img1,
.mv-img2{
	width: 100%;
    height: auto;
	display: block;
}

#mainvisual .copy-wrap{
	position: absolute;
    left: 10%;
    bottom: min(4vw, 86px);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* スマホ */
@media screen and (max-width:640px){
	#mainvisual{
		height: clamp(628px, 167.47vw, 850px);
		background-image: url("../../images/mv_workstyle_bg_sp.webp");
		margin-top: 56px;
	}

	.mv-img1-wrap{
		left: 50%;
		top: clamp(-16px, -2.67vw, -10px);
        width: clamp(430px, 114.67vw, 600px);
		transform: translateX(-50%);
	}

	.mv-img2-wrap{
		right: clamp(-32px, -5.33vw, -20px);
        top: clamp(400px, 106.67vw, 560px);
        width: clamp(250px, 66.67vw, 350px);
	}

	#mainvisual .copy-wrap{
		left: clamp(20px, 5.33vw, 32px);
        top: clamp(300px, 80vw, 420px);
		gap: 8px;
	}
}

/** -----------------------------------------------
MARK:私たちについて
------------------------------------------------**/
#about .section-heading{
	margin-bottom: 80px;
}

.wrap{
	display: flex;
	align-items: center;
	gap: 40px;
}

.wrap img{
	width: 660px;
	height: auto;
	border-radius: 24px;
}

.wrap p{
	flex: 1;
}

.wrap strong{
	font-weight: 700;
}

/* スマホ */
@media screen and (max-width:640px){

	#about .section-heading{
		margin-bottom: 24px;
	}

	.wrap{
		flex-direction: column;
		gap: 24px;
	}

	.wrap img{
		width: 335px;
	}
	.wrap p{
		font-size: 14px;
	}
}

/** -----------------------------------------------
MARK:事業について
------------------------------------------------**/
#business .card-wrap{
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}

#business .card-item{
	padding: 24px;
	background-color: #ffffff;
	border: 1px solid #342815;
	border-radius: 24px;
	box-shadow: 4px 4px 12px rgba(52, 40, 21, 0.1);
}

#business .card-item img{
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
	margin-bottom: 16px;
}

#business .card-title{
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px;
	text-align: center;
}

#business .card-item p{
	margin: 0;
}

/* スマホ */
@media screen and (max-width:640px){
	#business .card-wrap{
		grid-template-columns: 1fr;
		gap: 24px;
	}

	#business .card-title{
		font-size: 16px;
	}

	#business .card-item p{
		font-size: 14px;
	}
}

/** -----------------------------------------------
MARK:メンバー紹介
------------------------------------------------**/
#member .card-wrap{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

#member .card-item{
	display: flex;
	align-items: stretch;
	gap: 24px;
	padding: 24px;
	background-color: #ffffff;
	border: 1px solid #342815;
	border-radius: 24px;
	box-shadow: 4px 4px 12px rgba(52, 40, 21, 0.1);
}

.card-image{
	position: relative;
	width: 200px;
	flex-shrink: 0;
}

.card-image > img{
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.member-position{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	color: #342815;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	padding: 20px 12px 8px;
	border-radius: 0 0 8px 8px;
}

.member-name{
	position: absolute;
	left: 0;
	bottom: 50px;
	z-index: 2;
	display: inline-block;
	background-color: #A8B0A0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	padding: 4px 8px;
	margin: 0;
	border-radius: 0 8px 8px 0;
}

.card-text{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 4px;
}

.card-heading{
	font-weight: 700;
	border-left: 4px solid #A8B0A0;
	border-bottom: 1px solid #A8B0A0;
	padding: 0 8px 2px;
	margin: 0;
}

.card-description{
	margin: 0;
}

.card-heading + .card-description{
	margin-top: 8px;
}

.card-description + .card-heading{
	margin-top: 16px;
}

.readmore{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #A8B0A0;
}

.readmore img{
	width: 20px;
	height: auto;
}

.readmore:hover img{
	animation: arrow-show 0.5s ease;
}

@keyframes arrow-show {
	0% {
        opacity: 0;
        transform: translateX(-8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MEMBER スライダー */
.member-slider{
    position: relative;
}

.slider-button-prev,
.slider-button-next,
.slider-dots{
    display: none;
}

/* スマホ */
@media screen and (max-width:640px){
	#member .card-wrap{
		width: calc(100% + 40px);
		margin: 0 -20px;
		display: block;
	}

	#member .card-item{
		width: 240px;
		flex-direction: column;
		gap: 16px;
		padding: 16px;
		margin: 0 12px;
	}

	.card-image{
		width: 100%;
	}

	.card-text{
		margin-top: 0;
	}

	.card-heading{
		font-size: 14px;
	}

	.card-description{
		font-size: 14px;
	}

	.card-heading + .card-description{
		margin-top: 4px;
	}

	.card-description + .card-heading{
		margin-top: 8px;
	}

	.slider-button-prev,
	.slider-button-next{
		display: flex;
		position: absolute;
		top: 309px;
		transform: translateY(-50%);
    }

	.slider-button-prev{
		left: 20px;
	}

	.slider-button-next{
		right: 20px;
	}

	#member .section-button-wrap{
		margin-top: 24px;
	}

	#member .slick-dots{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 4px;
		margin-top: 24px;
		padding: 0;
		list-style: none;
	}

	#member .slick-dots li{
		width: 8px;
		height: 8px;
	}

	#member .slick-dots li button{
		display: block;
		width: 8px;
		height: 8px;
		padding: 0;
		border: none;
		border-radius: 50%;
		background-color: #d9d9d9;
		font-size: 0;
		line-height: 0;
	}

	#member .slick-dots li.slick-active button{
		background-color: #A8B0A0;
	}

}

/** -----------------------------------------------
MARK:働く環境
------------------------------------------------**/
#workstyle{
	background-image: url("../../images/mv_workstyle_bg_pc.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.workstyle-wrap{
	width: fit-content;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 204px);
	gap: 40px;
}

.workstyle-item{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.workstyle-item img{
	display: block;
	margin-bottom: 24px;
}

.item-heading{
	position: relative;
	z-index: 1;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	background-color: #A8B0A0;
	color: #ffffff;
	width: 184px;
	padding: 4px 20px;
	border-radius: 80px;
	margin-bottom: 0;
	transform: translateY(12px);
}

.style-name{
	font-weight: 700;
	text-align: center;
	width: 204px;
	padding: 16px 28px;
	border-radius: 8px;
	border: 2px solid #A8B0A0;
	color: #342815;
	margin: 0;
}

/* スマホ */
@media screen and (max-width:640px){
	#workstyle{
		background-image: url("../../images/mv_workstyle_bg_sp.webp");
	}

	.workstyle-wrap{
		margin: 0 auto;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.workstyle-item{
		display: grid;
		grid-template-columns: 244px;
		width: 244px;
	}

	.item-heading{
		grid-column: 1;
		grid-row: 1;
		justify-self: center;
	}

	.workstyle-item img{
		grid-column: 1;
		grid-row: 2;
		width: 32px;
		height: 32px;
		margin-bottom: 0;
		margin-left: 28px;
		align-self: center;
	}

	.style-name{
		grid-column: 1;
		grid-row: 2;
		width: 244px;
		padding-top: 20px;
		padding-left: 68px;
		text-align: left;
	}
}

/** -----------------------------------------------
MARK:募集職種
------------------------------------------------**/
.recruit-wrap{
	display: flex;
	align-items: center;
	gap: 40px;
}

.recruit-wrap > img{
	width: 660px;
	height: auto;
	border-radius: 24px;
}
.recruit-content{
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.joblist{
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(52, 40, 21, 0.3);
}

.joblist li{
	border-bottom: 1px solid rgba(52, 40, 21, 0.3);
}

.joblist-name{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 40px;
	text-decoration: none;
	color: #342815;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.joblist-name img{
	width: 20px;
	height: auto;
	transition: transform 0.3s ease;
}

.joblist-name:hover{
	background-color: #A8B0A0;
    color: #ffffff;
}

.joblist-name:hover img{
	content: url(../../images/button_arrow_gr_hover.svg);
	transform: translateX(4px);
}

/* スマホ */
@media screen and (max-width:640px){
	.recruit-wrap{
		flex-direction: column;
		gap: 24px;
	}

	.recruit-wrap > img{
		width: 100%;
	}

	.joblist{
		width: 335px;
	}

	.joblist-name{
		padding: 16px 32px;
		font-size: 18px;
	}
}

/** -----------------------------------------------
MARK:よくある質問
------------------------------------------------**/
.faq-wrap{
	width: 100%;
	border-top: 1px solid rgba(52, 40, 21, 0.3);
}

.faq-item{
	border-bottom: 1px solid rgba(52, 40, 21, 0.3);
}

.faq-item summary{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 16px 40px;
	cursor: pointer;
	list-style: none;
	font-weight: 700;
}

.faq-item summary > img{
	transition: transform 0.3s ease;
}

.faq-item[open] summary > img{
	transform: rotate(180deg);
}

.faq-question{
	display: flex;
	align-items: center;
	gap: 20px;
}

.faq-answer{
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 16px 64px 16px 40px;
}

.faq-answer p{
	flex: 1;
	margin: 0;
}

.faq-label{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	font-weight: 500;
}

.faq-label-q{
	background-color: #A8B0A0;
	color: #ffffff;
}

.faq-label-a{
	background-color: #ffffff;
	color: #A8B0A0;
	border: 1px solid #A8B0A0;
}

/* スマホ */
@media screen and (max-width:640px){
	.faq-wrap{
		width: 335px;
		margin: 0 auto;
	}

	.faq-item summary{
		gap: 8px;
		padding: 8px;
		font-size: 14px;
	}

	.faq-item[open] summary{
		padding-bottom: 0;
	}

	.faq-item summary > img{
		width: 14px;
		height: 8px;
	}

	.faq-question{
		gap: 8px;
	}

	.faq-answer{
		gap: 8px;
		padding: 8px 24px 8px 8px;
		font-size: 14px;
	}

	.faq-label{
		width: 24px;
		height: 24px;
		font-size: 18px;
	}
}

/** -----------------------------------------------
MARK:CTA
------------------------------------------------**/
#cta{
	overflow: hidden;
}

.cta-image{
	width: 100%;
	height: 700px;
}

.cta-image img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cta-content{
	position: relative;
	padding: 24px 0 80px;
	background-color: #f7f4ee;
	text-align: center;
}

.cta-content::before{
	content: "";
	position: absolute;
	top: -50px;
	left: -20%;
	width: 150%;
	height: 120px;
	background-color: #f7f4ee;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

#cta .copy-wrap{
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cta-buttons{
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 56px;
}

/* スマホ */
@media screen and (max-width:640px){
	.cta-image{
        height: 246px;
    }

	.cta-image img{
        object-position: 38% center;
    }

	.cta-content{
		padding: 0 0 48px;
	}

	.cta-content::before{
		top: -30px;
		left: -25%;
		height: 80px;
	}

	.cta-buttons{
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 100;
		width: 100%;
		padding: 16px;
		box-sizing: border-box;
		gap: 16px;
		margin-top: 0;
	}

	.cta-buttons .button-info,
	.cta-buttons .button-entry{
		width: 168px;
		height: 70px;
		gap: 8px;
		font-size: 16px;
	}

	.cta-buttons .button-info > img{
		width: 32px;
	}

	.cta-buttons .button-entry > img{
		width: 24px;
	}

	.cta-buttons-wrap{
		width: 100%;
	}

	.cta-buttons.is-stop{
		position: static;
	}

	.cta-buttons.is-hide{
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

}


/** -----------------------------------------------
MARK:フッター
------------------------------------------------**/
#footer{
	background-color: #342815;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 0;
	gap: 24px;
}

.footer-link{
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	padding: 0;
}

.footer-link a{
	position: relative;
	text-decoration: none;
	color: #ffffff;
}

.footer-link a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.footer-link a:hover::after {
    transform: scaleX(1);
}

.copyright{
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}

/* スマホ */
@media screen and (max-width:640px){
	#footer{
        padding: 24px 0;
        gap: 32px;
    }

	.footer-link{
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.footer-link a{
		font-size: 14px;
	}

	.copyright{
	font-size: 12px;
}
}
