@charset "utf-8";
/* CSS Document */

/* 共通部分
-------------------- */
html{
	font-size: 100%;
	scroll-behavior: smooth;
}
body{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.7;
	color: #000;
}
a{
	color: #b89d62;
	text-decoration: none;
}
img{
	max-width: 100%;
}
ul{
	list-style: none;
}

/* ボタンアニメーション */
.c-btn.slide{
	background: #000;
	color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.c-btn.slide::after {
	background: #b89d62;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.c-btn.slide:hover::after {
  transform: scale(1, 1);
}

/* リンクアニメーション */
.linkanime {
	background-image: linear-gradient(#b89d62, #b89d62);
	background-repeat: no-repeat;
	background-position: bottom right; /* 下線の初期位置 */
	background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
	transition: background-size 0.3s;
}

.linkanime:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

/* コンテンツスライド */

/* アニメーション前 */
.u-fade-type-up{
    transform: translateX(50px);
    opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active{
    transition: .6s;
    transform: translateX(0);
    opacity: 1;
}

/* レイアウト */
.wraper{
	max-width: 1366px;
	margin: auto;
}
.align-center{
	text-align: center;
}
.page-header,
.catchcopy,
.business,
.profile,
.contact{
	margin: 0 1rem;
}
.catchcopy,
.business,
.profile{
	border-bottom: 1px solid #000;
}
.catchcopy,
.business,
.profile,
.contact{
	padding: 1.5rem 1rem;
}
.contact{
	margin-bottom: 3rem;
}
.cover{
	background-size: cover;
	background-position: bottom;
}
.left-space{
	margin-left: 1rem;
}

/* 見出し */
.logo{
	width: 240px;
}
.font-english{
	font-family: "Antonio", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
.main-title{
	margin-bottom: 1.5rem;
}
.e-title{
	font-size: 2.75rem;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}
.j-title{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.sub-title{
	margin-bottom: 0.5rem;
}
.sub-title-e{
	font-size: 1.8rem;
}

/* ヘッダー
-------------------- */
.page-header{
	padding: 1rem 0;
}
.cover-h{
	height: 400px;
}
.top-image{
	background-image: url("../images/cover-h-s.webp");
}

/* キャッチコピー
-------------------- */
.catchcopy{
	padding-left: 0;
	padding-right: 0;
}

/* 事業内容
-------------------- */
.business-list{
	font-size: 0.9rem;
}
.second-list,
.third-list{
	margin-left: 1rem;
	line-height: 1.4;
}
.store-link-list{
	margin-top: 0.3rem;
}
.store-link{
	width: fit-content;
	margin-bottom: 0.5rem;
	padding: 0.25rem 1.5rem;
}

/* 会社概要
-------------------- */
.profile table{
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}
.profile table td{
	vertical-align: top;
	border-bottom: 1px solid #ddd;
}

/* 沿革 */
.history-ymd{
	width: 125px;
}

/* 会社情報 */
.info-item{
	width: 120px;
}

/* お問い合わせ
-------------------- */
.contact-form{
	margin-bottom: 1.5rem;
}
.form-wrap{
	font-size: 0.9rem;
	border: 1px solid #dadada;
	padding: 0.25rem 0.5rem;
	outline : 1px solid #efeeee;/* 内側線　線の太さ・線状・色 */
	outline-offset : -1.5px;/* どれだけ内側に線を表示したいかを負の値で指定 */
}
.name-area{
	display: flex;
	gap: 1rem;
}
.wid-name{
	width: 20%;
}
.wid-long{
	width: 95%;
}
.wid-middle{
	width: 70%;
}
.wid-short{
	width: 50%;
}
.contact-content{
	width: 95%;
	height: 150px;
}
.form-right{
	margin-left: 0.5rem;
}
.preflist{
	margin-bottom: 1rem;
}
.checkb-text{
	font-size: 0.95rem;
}
.send-btn{
	width: 200px;
	padding: 0.5rem 2rem;
	margin: 0 auto;
}
.s-btn-text{
	color: #fff;
}

/* フッター
-------------------- */
.cover-f{
	height: 300px;
}
.bottom-image{
	background-image: url("../images/cover-f-s.webp");
}
.page-footer{
	padding: 1.5rem 1rem;
	background-color: #000;
}
.page-footer ul{
	color: #fff;
	font-size: 0.8rem;
	margin-top: 1rem;
}

@media (min-width: 450px){
	.left-space{
		margin-left: 0;
	}
}

/* デスクトップ版
-------------------- */
@media (min-width: 800px){
	/* レイアウト */
	.page-header,
	.catchcopy,
	.business,
	.profile,
	.contact{
		margin: 0 2rem;
	}
	.catchcopy,
	.business,
	.profile,
	.contact{
		padding: 3rem 2rem;
	}
	.contact{
		margin-bottom: 4rem;
	}
	
	/* 見出し */
	.logo{
		width: 300px;
	}
	.main-title{
		text-align: left;
		margin-bottom: 3rem;
	}
	.e-title{
		font-size: 3rem;
	}
	.main-title h3{
		font-size: 1.25rem;
	}	
	
	/* ヘッダー */
	.cover-h{
		height: 450px;
	}
	.top-image{
		background-image: url("../images/cover-h-l.webp");
	}
	
	/* キャッチコピー */
	.catchcopy{
		padding-left: 0;
		padding-right: 0;
	}
	.catchcopy img{
		width: 100%;
		max-width: 800px;
	}
	
	/* 事業内容 */
	.business-list{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 10px;
	}
	.tateline{
		display: flex;
		flex-flow: column;
	}
	.store-link{
		padding: 0.3rem 1rem;
	}
	.left-space{
		margin-left: 1rem;
	}
	
	/* 会社概要 */
	.history-info{
		margin: 2rem 0;
		display: flex;
		justify-content: space-between;
	}
	.history{
		max-width: 50%;
	}
	.info{
		max-width: 45%;
	}
	.profile table{
		font-size: 1rem;
		margin: 1.5rem 0 0;
	}
	.history-ymd{
		width: 140px;
	}
	.info-item{
		width: 135px;
	}
	
	/* お問い合わせ */
	.contact-form{
		display: flex;
	}
	.form-title{
		text-align: right;
		width: 200px;
	}
	.input-area{
		margin-left: 2rem;
		width: 100%;
		max-width: 650px;
	}
	.wid-long{
		width: 95%;
	}
	.wid-middle{
		width: 70%;
	}
	.wid-short{
		width: 50%;
	}
	.contact-content{
		width: 95%;
		height: 200px;
	}
	.send-btn{
		width: 250px;
		margin: 0 0 1rem 2rem;
	}
	
	/* フッター */
	.cover-f{
		height: 400px;
	}
	.bottom-image{
		background-image: url("../images/cover-f-l.webp");
	}
	.page-footer{
		padding: 2rem;
	}
	.footer-wrap{
		display: flex;
	}
	.page-footer ul{
		margin: 0 0 0 2rem;
	}
}

@media (min-width: 950px){
	.sub-title{
		display: flex;
		justify-content: flex-start;
		align-items: baseline;
		margin-bottom: 0;
	}
	.checkb-text{
		display: flex;
		gap: 1rem;
	}
}

@media (min-width: 1280px){
	/* 事業内容ショップリンク */
	.left-space{
		margin-left: 0;
	}
	.third-list{
		display: flex;
		gap: 0.75rem;
	}
}












