@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	position: relative;
	overflow: hidden;
	font-size: 100%;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
.sp, .nobr {
	display: none!important;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
    width: 100%;
	height: 100px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
    z-index: 10000;
}
header .header_bg {
	position: absolute;
	width: 100%;
	height: 100px;
    top: -100px;
    left: 0;
	display: block;
    background: rgba(56,51,53,0.9);
    transition: all 0.2s ease;
    opacity: 1;
}
header .header_bg.appear {
    width: 100%;
    height: 100px;
    top: 0!important;
    transition: all 0.4s ease;
    opacity: 1;
}
header a.headerLogo {
	position: absolute;
    width: 25%;
    max-width: 360px;
    height: 60px;
    left: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    z-index: 20000;
    background: url("../../images/short/logo.webp") no-repeat left center;
    background-size: contain;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【ヘッダー】グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.openMenu {
	position: absolute;
    width: calc(100% - 240px);
    max-width: 600px;
    height: 50px;
    right: 20px;
    display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
}
.btn_nav {
	display: none;
}
.open_nav,
.close_nav {
	display: none;
}
.sp_nav_wrap {
	width: 100%;
	display: block;
}
.sp_nav {
	width: 100%;
	height: 50px;
	display: block;
}
.sp_nav ul.sp_nav_menu {
	width: 100%;
	height: 50px;
    display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li {
	position: relative;
    width: auto;
    height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin: 0 20px;
}
.sp_nav ul.sp_nav_menu li.nopc {
	display: none;
}
.sp_nav ul.sp_nav_menu li a,
.sp_nav ul.sp_nav_menu li p {
	width: 100%;
    height: 50px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    font-size: 1.4em;
	font-weight: bold;
    line-height: 1.2em;
	letter-spacing: 0.05em;
	color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li a:hover {
	color: #298087;
	transition: all 200ms;
	opacity: 1;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
}
.wrap {
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
.block {
    position: relative;
    width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
}
.reverse {
	flex-direction: row-reverse;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .mainVisual {
	position: relative;
	width: 100%;
	height: 480px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
}
#home .mainVisual img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
YouTube
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .movie {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 100px 0;
}
#home .movie h1 {
	width: 100%;
    display: block;
    margin-bottom: 40px;
	font-size: 2.8em;
    line-height: 1.6em;
    text-align: center;
}
#home .movie iframe {
	position: relative;
	width: 90%;
	max-width: 960px;
	aspect-ratio: 16/9;
    display: block;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
特長
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .feature {
	position: relative;
	width: 100%;
	min-height: 400px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
#home .feature:nth-of-type(odd) {
	justify-content: flex-start;
	background: #f4f1ef;
}
#home .feature:nth-of-type(even) {
	justify-content: flex-end;
	background: #eaedef;
}
#home .feature .imgBox {
	width: 50%;
	height: 400px;
    display: flex;
		align-content: center;
}
#home .feature .imgBox img {
	width: 100%;
	max-width: 800px;
	max-height: 400px;
    display: block;
	object-fit: cover;
}
#home .feature:nth-of-type(odd) .imgBox {
	right: 50%;
}
#home .feature:nth-of-type(even) .imgBox {
	left: 50%;
	justify-content: flex-start;
}

#home .feature:nth-of-type(1) .imgBox {
	justify-content: flex-end;
	align-items: flex-start;
}
#home .feature:nth-of-type(2) .imgBox {
	justify-content: flex-start;
	align-items: flex-end;
}
#home .feature:nth-of-type(2) .imgBox img {
	width: 95%;
}
#home .feature:nth-of-type(3) .imgBox {
	justify-content: flex-start;
	align-items: center;
}
#home .feature:nth-of-type(3) .imgBox img {
	width: 95%;
}
#home .feature:nth-of-type(4) .imgBox {
	justify-content: flex-start;
	align-items: center;
}
#home .feature:nth-of-type(4) .imgBox img {
	height: 100%;
	justify-content: flex-start;
	align-items: stretch;
}
#home .feature:nth-of-type(5) .imgBox {
	justify-content: flex-end;
	align-items: center;
}
#home .feature .textBox {
	position: absolute;
	width: 45%;
	max-width: 800px;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
#home .feature:nth-of-type(odd) .textBox {
	left: 50%;
	justify-content: flex-start;
}
#home .feature:nth-of-type(even) .textBox {
	right: 50%;
	justify-content: flex-end;
}
#home .feature .textBox h2 {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font-size: 2.8em;
	font-weight: bold;
    line-height: 1.2em;
}
#home .feature .textBox p {
	width: 100%;
    display: block;
	font-size: 1.6em;
    line-height: 1.8em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
ラインナップ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .lineup {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 80px 0 40px;
	box-sizing: border-box;
}
#home .lineup h2 {
	width: 100%;
    display: block;
    margin-bottom: 20px;
	font-size: 2.8em;
    line-height: 1.6em;
    text-align: center;
}
#home .lineup ul {
	width: 90%;
	max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
}
#home .lineup ul li {
	width: 23%;
    display: block;
	margin: 20px 0;
}
#home .lineup ul li h3 {
	width: 100%;
    display: block;
    margin-top: 10px;
	font-size: 1.8em;
    line-height: 1.2em;
    text-align: center;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
商品リスト
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .list {
	width: 90%;
	max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 0 auto;
	padding: 80px 0 0;
	box-sizing: border-box;
}
#home .list h2 {
	width: 100%;
    display: block;
    margin-bottom: 40px;
	font-size: 2.8em;
    line-height: 1.6em;
    text-align: center;
}
#home .list h2 span {
	width: 100%;
	display: block;
	margin-top: -20px;
	font-size: 0.6em;
}
#home .list section {
	width: 48%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
	margin-bottom: 40px;
}
#home .list h3 {
	width: 100%;
    display: block;
    margin-bottom: 10px;
	font-size: 2em;
    line-height: 1.2em;
}
#home .list table {
    width: 100%;
    display: table;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
#home .list table thead {
    background: #f7f7f7;
}
#home .list table th,
#home .list table td {
    display: table-cell;
    padding: 25px 15px;
    font-size: 1.3em;
	line-height: 1.2em;
	text-align: center;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}
#home .list table th {
    height: 50px;
	padding: 0 5px;
	font-size: 1.2em;
	font-weight: bold;
}
#home .list table td {
    padding: 20px 10px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
バナーエリア
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.bnrBlock {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        /*flex-wrap: wrap;*/
	margin: 20px auto 60px;
	box-sizing: border-box;
}
.bnrBlock a {
	width: 90%;
	max-width: 820px;
    display: block;
}
.bnrBlock a:hover {
	transition: all 200ms;
	opacity: 0.5;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: space-between;
		align-items: center;
        flex-wrap: wrap;
	background: url("../../images/short/footer_bg.webp") no-repeat center center;
    background-size: cover;
    box-sizing: border-box;
}
footer #page-top {
	position: fixed;
	width: 60px;
	right: 20px;
	bottom: 0;
	z-index: 30000;
    border-radius: 30px;
	background: rgba(56,51,53,0.9);
}
footer .info {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 80px 0;
	box-sizing: border-box;
}
footer .info address {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font-size: 1.4em;
    line-height: 1.8em;
	text-align: center;
}
footer .info address strong {
	width: 100%;
    display: block;
	font-size: 1.4em;
    line-height: 1.6em;
}

/*【共通】ボタンデザイン*/
.btnBlock {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
a.btnContact {
	position: relative;
	width: 320px;
    height: 60px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	padding-left: 20px;
	font-size: 1.6em;
    line-height: 1em;
	text-align: center;
	color: #fff;
	border-radius: 10px;
	background: #298087;
	box-sizing: border-box;
}
a.btnContact::before {
	position: absolute;
	content: "";
	width: 24px;
	height: 24px;
	left: 20px;
	display: block;
	background: url("../../images/short/icon_mail.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
a.btnContact:hover {
	transition: all 200ms;
	opacity: 0.5;
}
footer .copyright {
	width: 100%;
	height: 60px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	font: 300 1.2em/1em "futura-pt", Arial, "sans-serif";
	color: #fff;
	background: #91c5cc;
}
