@charset "utf-8";

html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	background: #fafafa;
}


/* ヘッダー */
.full-header {
	position: sticky;
	width: 100%;
	background: #fff;
	padding: 0;
	border-bottom: 1px solid #e5e7eb;
	z-index: 1000;
	top: 0;
	left: 0;
}

.header-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	white-space: nowrap;
}

h1 {
	color: inherit;
	margin: 0;
	padding: 4px;
	font-size: 14px;
}

a {
	color: inherit;
	text-decoration: none;
}
/* 	ヘッダー内 記事,ショップ,カート,お問い合わせ */
.top li a {
	text-decoration: none;
	color: inherit;
	padding: 8px 8px;
}
.top li a:hover{
	color:#2163f3;
	background: #dbe3f2;
	border-radius: 6px;
	padding: 8px 8px;
}

ul {
	padding: 8px;
	display: flex;
	font-size: 14px;
	list-style: none;
	gap: 8px;
}

/* メイン */
main {
	max-width: 1080px;
	width: 100%;
	flex: 1;
	margin: 0 auto;
}
/* お問い合わせ,確認,送信完了 */
h2 {
	color: #2c2c2c;
	margin: 24px;
	font-size: clamp(22px, 3vw, 36px);
}

/* フォームエリア */
.inner {
	margin: 0 auto;
    width: 100%;
    max-width: 1080px;
    box-sizing: border-box;
    padding:0 24px;
}
#formArea {
	width: 90%;
	padding: 16px;
	border: 1px solid #979595;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 4px 6px #e9e7e7;
	box-sizing: border-box;
	margin: 0 24px;
}
#contactForm {
	padding-top: 16px;

}
.contactForm {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	margin-bottom: 16px;
}
label {
	display: block;
	font-weight: 600;
	padding: 16px;
	box-sizing: border-box;
	white-space: nowrap;
}
.label {
	font-weight: 600;
}
.value {
	padding-bottom: 8px;
}

.contactForm label {
	flex: 0 160px;
}

.description {
	vertical-align: top;
}

input,
textarea {
	margin-top: 20px;
	padding: 14px;
	border: 1px solid #ccc;
	border-radius: 12px;
	box-sizing: border-box;
}
textarea {
	resize: none;	
	width: 80%
}


.button {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
	margin-bottom: 16px;
}
.btn {
	background-color: transparent;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 8px 16px;
	cursor: pointer;
}

.btn01 {
	background-color: #2163f3;
	color: #fff;
	border: none;
}

.btnBox {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
	margin: 16px;
}

@media (max-width:680px) {
	.contactForm {
		display: block;
		box-sizing: border-box;
		margin: 0;
        padding-left: 8px;
	}
	input,textarea {
	margin: 0;
	}
	#Name {
	width: 70%;
	}
	#Email,#Subject {
	width: 80%;
	}
	textarea {
	width: 90%;
	}
	.button {
		margin-top: 16px;
	}
}

/* contact_complete.phpの問い合わせ画面 */
.completeBtn {
	background-color: transparent;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 8px 16px;
	cursor: pointer;
	color: inherit;
	text-align: center;
}


.inner.completeMsg {
	display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}


/* フッター */
.full-footer {
	width: 100%;
	background: #ffffff;
	padding: 16px 0;
	border-top: 1px solid #e5e7eb;
	margin-top: 48px;
}
.footer-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 4px 24px;
	font-size: 14px;
	color: #666666;
}

/* 幅
---------------------------------------- */
.widthxxxs	{width:20px;}
.widthxxs	{width:40px;}
.widthxs	{width:60px;}
.widths		{width:80px;}
.widthsm	{width:100px;}
.widthm		{width:120px;}
.widthml	{width:180px;}
.widthl		{width:240px;}
.widthxl	{width:480px;}
.widthmin	{width:1px;}
.widthmax	{width:100%;}
.widthauto	{width:auto;}

.widthxxs-min	{min-width:40px;}
.widthxs-min	{min-width:60px;}
.widths-min		{min-width:80px;}
.widthsm-min	{min-width:100px;}
.widthm-min		{min-width:120px;}
.widthml-min	{min-width:180px;}
.widthl-min		{min-width:240px;}
.widthxl-min	{min-width:480px;}
.widthmin-min	{min-width:1px;}

