@charset "UTF-8";

*,
*::before,
*::after {
	box-sizing: border-box;
	}

* {
	margin: 0;
	padding: 0;
	}

body {
	font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
	
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0.01em;
	color: #111;
	background-color: #fff;
    }

html:lang(ja) {
	font-family: "Noto Sans JP", sans-serif;
    }

@media screen and (max-width: 767px) {
body {
	font-size: 15px;
	}
}
	

/*
ヘッダー
--------------------------*/
h1 {
	padding: 0.5em 0;
	font-size: 0.7em;
	font-weight: normal;
	text-align: center;
	}

header {
	margin: 0;
	padding: 1.2em 0;
	background-color: #000;
	text-align: center;
	}

header a.site-logo {
	color: #fff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	line-height: 1; 
	}

header a.site-logo:hover {
	color: #CCC;
	text-decoration: none;
	}

header a.site-logo span.main {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 2.4em;
	}

header a.site-logo span.sub {
	padding-left: 1em;
	font-size: 1.1em;
	font-weight: 400;
	position: relative;
	top: -0.1em;
	}

@media screen and (max-width: 767px) {
h1 span {
	display: none;
	}
	
header {
	padding: 1em 0;
	}
	
header a.site-logo {
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	}
	
header a.site-logo span.main {
	font-size: 1.55em;
	line-height: 1.4;
	}

header a.site-logo span.sub {
	padding: 0;
	font-size: 0.85em;
	}
}


/*
共通
--------------------------*/
.inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 7em 3em;
	}

.title {
	font-size: 1.8em;
	line-height: 1;
	text-decoration: underline;
	}

@media screen and (max-width: 767px) {
.inner {
	margin: 0;
	padding: 4em 1.5em;
	}
	
.title {
	font-size: 1.4em;
	}
}


/*
メッセージ
--------------------------*/
.message {
	margin: 0;
	padding: 0;
	color: #ffffff;
	background-color: #2F4F3A;
	text-align: center;
	}

.message .inner {
	padding: 5em 3em!important;
	}

.message h2 {
	font-size: 8em;
	font-family: "Bebas Neue", serif;
	font-weight: 400;
	line-height: 1;
	}

.message h2 .sp-br {
	display: none;
	}

.message h2 span {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.35em;
	font-weight: bold;
	}

.message p {
	margin: 0;
	padding: 2em 0 0;
	text-align: left;
	}

.message p:first-of-type {
	padding: 3em 0 0;
	}

@media screen and (max-width: 1023px) {
.message h2 {
	font-size:min(11.5vw,120px);
	display: block;
	}
}

@media screen and (max-width: 767px) {
.message h2 {
	padding-left: 0.1em;
	font-size: 25vw;
	line-height: 0.8;
	text-align: left;
	white-space: nowrap;
	}
	
.message .inner {
	padding: 3em 1.5em!important;
	}

.message h2 .sp-br {
	display: block;
	}

.message h2 span {
	font-size: 0.2em;
	}

.message p {
	padding: 1em 0 0;
	}

.message p:first-of-type {
	padding: 2em 0 0;
	}
}


/*
会社概要
--------------------------*/
.company {
	margin: 0;
	padding: 0;
	text-align: center;
	}

.company .table {
	margin-top: 3em;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #d2d2d2;
    }

.company .table a {
	color: #111;
	text-decoration: underline;
	}

.company .table a:hover {
	color: #888;
	text-decoration: underline;
	}

.company .table ul {
	display: flex;
	flex-wrap: wrap;
    }
	
.company .table ul li:first-child {
    width: 30%;
	list-style: none;
	box-sizing: border-box;
	border-top: 1px solid #d2d2d2;
	border-left: 1px solid #d2d2d2;
	padding: 2em 0 2em 2em;
	text-align: left;
	}

.company .table ul li:last-child {
    width: 70%;
	list-style: none;
	box-sizing: border-box;
	border-top: 1px solid #d2d2d2;
	border-left: 1px solid #d2d2d2;
	border-right: 1px solid #d2d2d2;
	padding: 2em;
	text-align: left;
	}

.brand-name {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0.5em;
    }

.brand-name a,
.brand-name div {
	display: inline-block;
	padding: 0.5em 1em 0.6em;
	line-height: 1;
	border: 1px solid #CCC;
	border-radius: 9999px;
	text-decoration: none!important;
	}

.brand-name a:hover {
	background-color: #2F4F3A;
	color: #fff!important;
	border-color: #2F4F3A;
	}

.brand-name div.etc {
	border: none!important;
    }

.company p.note {
	padding: 1em 0 0;
	color: #FF0000;
    }

@media screen and (max-width: 767px) {
.company .table {
	margin-top: 2em;
	padding: 0;
	list-style: none;
	border: none;
	}
		
.company .table ul {
	display: block;
	margin-top: 2em;
	}
	
.company .table ul:first-child {
	margin-top: 0!important;
	}
	
.company .table ul li:first-child {
	width: 100%;
    list-style: none;
	background-color: #000;
	color: #fff;
	border: none;
	padding: 0.5em 0;
	text-align: center;
	}

.company .table ul li:last-child {
	width: 100%;
    border: none;
	margin-top: 0.5em;
	padding: 0 0.2em;
	}
	
.brand-name {
	padding-top: 0.5em;
	}
}


/*
事業内容
--------------------------*/
.business {
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: #e2e2e2;
	color: #000;
	}

.business .table {
	margin-top: 3em;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #222;
    }

.business .table ul {
	display: flex;
	flex-wrap: wrap;
    }
	
.business .table ul li:first-child {
    width: 30%;
	list-style: none;
	box-sizing: border-box;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	padding: 2em;
	text-align: left;
	font-size: 1.1em;
	font-weight: 500;
	}

.business .table ul li:last-child {
    width: 70%;
	list-style: none;
	box-sizing: border-box;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	border-right: 1px solid #222;
	padding: 2em;
	}

.business p {
	text-align: left;
}

.business .btn {
	display: inline-block;
	width: 90%;
	max-width: 500px;
	margin-top: 1em;
	padding: 0.5em 0;
	border: 3px solid #6F8F78;
	border-radius: 9999px;
	background-color: #2F4F3A;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.business .btn:hover {
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
.business .table {
	margin-top: 2em;
	list-style: none;
	border: none;
	}
	
.business .table ul {
	display: block;
	margin-top: 3em;
	}
	
.business .table ul:first-child {
	margin-top: 0!important;
	}
	
.business .table ul li:first-child {
	width: 100%;
    border: 1px solid #222;
	padding: 0.5em 0;
	text-align: center;
	}

.business .table ul li:last-child {
	width: 100%;
    border: none;
	margin-top: 0.5em;
	padding: 0 0.2em;
	}
}


/*
インスタグラム
--------------------------*/
.instagram {
	margin: 0;
	padding: 0 0 1em;
	text-align: center;
	}

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


/*
コンタクト
--------------------------*/
.contact {
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: #e2e2e2;
	color: #000;
	}

.contact h3.contact-title {
	font-size: 1.8em;
	line-height: 1;
	text-decoration: underline;
    }

.contact label {
	text-align: left;
	padding-left: 0.5em;
    }

.contact form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    }

.form-group {
	display: flex;
	flex-direction: column;
	margin-top: 2em;
    }

.half {
	width: 48%;
    }

.full {
	width: 100%;
    }

.contact input,
.contact textarea {
	padding: 1em;
	border: 1px solid #999;
	width: 100%;
	font-size: 1.1em;
	font-family: "Inter", "Noto Sans JP", sans-serif;
    }

.contact .h-captcha {
	margin: 0 auto;
	margin-top: 3em;
	width: 100%;
    }

.contact button {
	width: 75%;
	max-width: 400px;
	margin: 2em auto 0;
	padding: 1em 0;
	border: 3px solid #6F8F78;
	border-radius: 9999px;
	background-color: #2F4F3A;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 1.05em;
    }

.contact button:hover {
	text-decoration: underline;
    }

@media screen and (max-width: 767px) {
.contact h3.contact-title {
	font-size: 1.65em;
    }
	
.contact form {
	flex-direction: column;
	}

.half,
.full {
	width: 100%;
	}
}


/*
言語変換
--------------------------*/
.lang-switch {
	margin: 0;
	padding: 0;
	background-color: #2F4F3A;
	text-align: center;
    }

.lang-switch .btn a {
	display: inline-block;
	width: 90%;
	max-width: 500px;
	padding: 1em 0;
	border-radius: 9999px;
	background-color: #fff;
	color: #111;
	font-size: 1.1em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.2s ease;
    }

.lang-switch .btn a:hover {
	opacity: 0.85;
    }

@media screen and (max-width: 767px) {
.lang-switch {
	}
}


/*
フッター
--------------------------*/
footer {
	margin: 0;
	padding: 1em 0;
	background-color: #000;
	color: #fff;
	font-size: 0.9em;
	text-align: center;
	}


/*
ページトップへ戻る
--------------------------*/
#pagetop{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #333;
	border-radius: 50%;
	opacity: 0.6;
	z-index: 999;
	}

#pagetop a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-decoration: none;
	}

#pagetop a::before{
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: '\f106';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 45px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	}


/*
続きを読む
--------------------------*/
.fade-wrapper {
	position: relative;
    }

@media (min-width: 768px) {
.fade-text {
    max-height: none;
    -webkit-mask-image: none;
    mask-image: none;
	}

.readmore-btn {
    display: none;
	}
}

@media screen and (max-width: 767px) {
.fade-text {
	max-height: 160px;
	overflow: hidden;
	transition: max-height 0.6s ease;
	-webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
	-webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: left top;
	}

.fade-wrapper.open .fade-text {
	max-height: 2000px;
	-webkit-mask-image: none;
	mask-image: none;
	}

.readmore-btn {
	margin: 2em auto 0;
	display: inline-flex;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	}
	
.btn-white {
	color: #fff;
	}
	
.btn-black {
	color: #111;
	}

.readmore-btn .close {
	display: none;
	}
	
.fade-wrapper.open .readmore-btn .open {
	display: none;
	}
	
.fade-wrapper.open .readmore-btn .close {
	display: inline;
	}

.readmore-btn .icon-up {
	display: none;
	}

.fade-wrapper.open .readmore-btn .icon-down {
	display: none;
	}

.fade-wrapper.open .readmore-btn .icon-up {
	display: inline-block;
	}

.readmore-btn i {
	font-size: 36px;
	line-height: 1;
	}
}