@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Pacifico);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans);

/* デザイン設定 ----------------------------------------------------------*/
:root {
	/* 基本色 */
	--body-color       : #000000;	/* フォント色 */
	--body-bg          : #ffffff;	/* 背景色 */
	--border-gray      : #CECECE;	/* 基本ボーダー色 */
	--link-color       : #38beef;	/* リンク色 */
	--link-hover       : #4478a3;	/* リンクホバー色 */
	/* ヘッダー */
	--header-bg        : #FFFFFF;	/* ヘッダー背景色 */
	--header-width     : 1500px;	/* ヘッダー画像 幅 */
	--header-height    : 500px;		/* ヘッダー画像 高さ */
	--header-res       : 0.75;		/* ヘッダー画像 レスポンシブ縮小率 */
	/* メニュー */
	--menu-bg          : #ffffff;	/* メニュー背景色 */
	--menu-bg-fixed    : rgba(255,255,255,.9);		/* メニュー固定時背景色 */
	--submenu-bg       : rgba(56, 190, 239,.8);	/* サブメニュー固定時背景色 */
	--submenu-bg-hover : rgba(68, 120, 163,.8);	/* サブメニュー固定時ホバー色 */
	--menu-color       : #38BEEF;	/* メニューフォント色 */
	--menu-hover       : #4478A3;	/* メニューホバー色 */
	--menu-height      : 50px;	/* メニュー高さ */
	--submenu-height   : 40px;	/* サブメニュー高さ */
	/* 見出し */
	--h2-color         : #2b2b2b;	/* 見出しフォント色 */
	--h2-bar-color     : #eea3c4;	/* 見出し枠色 */
}

/* リセット ----------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,hr,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}
hr{border:none;}
body{
	font: 14px/1.9 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif;
	font-weight: 300;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
	color: #000;
	background: #fff;
}
a{
	color: #0066ff;
	text-decoration: none;
}
a:hover, .active{text-decoration: underline;}
a:active, a:focus,input:active, input:focus{outline:0;}
/* 共通 ----------------------------------------------------------*/
body {
	color: var(--body-color);
	background: var(--body-bg);
}
a {
	color: var(--link-color);
	text-decoration: none;
}
a:hover {
	color: var(--link-hover);
	text-decoration: none;
}
img {
	vertical-align: top;
}
.center {
	display: block;
	width: fit-content;
	margin: 0 auto;
}
.hidden {
	display: none!important;
}
/* セクション設定 ----------------------------------------------------------*/
/* ヘッダー */
#header {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: var(--header-height);
	background: var(--header-bg);
}
#header img {
	position: absolute;
	left: 50%;
	width: var(--header-width);
	height: var(--header-height);
	margin-left: calc((var(--header-width) / 2) * -1);
}
/* フッター */
#footer {
	clear: both;
	padding: 50px 10px 50px 0;
	text-align: center;
	font-size: 12px;
}
/* メニューパネル */
#mainnav {
	background: var(--menu-bg);
	width: 100%;
	z-index: 500;
	position: absolute;
	border: solid var(--border-gray);
	border-width: 1px 0 1px 0;
}
#mainnav .panel {
	display: block !important;
	margin: 0 auto;
	width: 80%;
	min-width: 750px;
}
#mainnav .panel > ul {
	border-left: 1px dotted var(--menu-color);
	display: flex;
}
#mainnav .panel > ul > li {
	border-right: 1px dotted var(--menu-color);
	flex: 1 1 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: var(--menu-height);
}
/* メニューリンク */
#mainnav .panel > ul > li > a {
	font-size: 14px;
	color: var(--menu-color);
	text-decoration: none;
	display: inline;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: var(--menu-height);
	padding-right: 10px;
	white-space: nowrap;
}
#mainnav .panel > ul > li > a:before {
	content: "";
	width: 0;
	height: 0;
	display: inline-block;
	overflow: hidden;
	border: 5px solid transparent;
	position: relative;
}
/* メニューリンク オンマウス */
#mainnav .panel > ul > li > a:hover {
	color: var(--menu-hover);
}
#mainnav .panel > ul > li > a:hover:before {
	content: "";
	width: 0;
	height: 0;
	display: inline-block;
	overflow: hidden;
	border: 5px solid transparent;
	border-left: 5px solid var(--menu-hover);
	position: relative;
}
/* サブメニュー */
#mainnav .panel > ul > li > ul {
	display: none;
	position: absolute;
	top: var(--menu-height);
	left: 0;
	width: 100%;
}
#mainnav .panel > ul > li > ul > li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--submenu-height);
	border-bottom: 1px solid white;
}
#mainnav .panel > ul > li > ul > li > a {
	font-size: 14px;
	color: white;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: var(--submenu-height);
	background: var(--submenu-bg);
	white-space: nowrap;
}
#mainnav .panel > ul > li > ul > li > a:hover {
	background: var(--submenu-bg-hover);
}
#mainnav .panel > ul > li:hover > ul {
	display: block;
}
/* メニュー 固定時 */
#mainnav.fixed {
	position: fixed;
	background: var(--menu-bg-fixed);
	top: 0;
	z-index: 9999;
}
/* メニュー 下部マージン */
.menuMargin {
	margin-bottom: 100px;
}
/* セクション設定 ----------------------------------------------------------*/
/* セクション共通 */
body {
	font-size: 16px;
	line-height: 1.6em;
}
section {
	width: 80%;
	min-width: 700px;
	margin: 0 auto;
	padding-top: 5px;
	margin-bottom: 80px;
}
/* タイトル */
section .title {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}
section .title img {
	width: 498px;
}
/* サブタイトル */
section .subtitle {
	margin-top: 15px;
	margin-bottom: 0px;
}
/* 見出し */
section h2 {
	display: block;
	padding-left: 10px;
	font-size: 2em;
	font-weight: normal;
	color: var(--h2-color);
	border-left: 5px solid var(--h2-bar-color);
}
section h3 {
	display: block;
	font-weight: normal;
	font-size: 18px;
}
section h4 {
	display: block;
	font-weight: bold;
	font-size: 16px;
}
section h5 {
	padding: 1rem 0rem;
	display: block;
	font-weight: normal;
	font-size: 1.6em;
}
section h6 {
  position: relative;
  display: inline-block;
  padding: 0 45px;
  font-size: 20px;
  font-weight: normal;
}

section h6:before, section h6:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
section h6:before {
  left:0;
}
section h6:after {
  right: 0;
}



section h7 {
  padding: 1rem 1rem;
  border-top: 3px dashed #000;
  border-bottom: 3px dashed #000;
  font-size: 20px;
  font-weight: normal;
}



/* 強調 */
section strong {
	font-size: 20px;
	font-weight: bold;
}
/* テキスト囲み */
section .textWrap {
	padding: 15px;
}
/* 画像囲み */
section .imageWrap {
	display: flex;
	flex-flow: row;
	gap: 20px;
	margin-bottom: 20px;
}
section .imageWrap div {
	padding: 0;
}
section .imageWrap img {
	width: 100%;
}
section .imageWrap .text {
	padding: 0 20px;
}
/* 区切り線 */
section hr {
	width: 90%;
	border-top: 1px dotted #9F9F9F;
	margin: 30px auto;
}
/* キャラクター ------------------------- */
.character_image {
	display: flex;
	flex-flow: row;
	gap: 0px;
	margin-bottom: 0px;
}
.character_image div {
	flex: 1 1 auto;
}
.character_image img {
	width: 100%;
}
/* WEBCM ------------------------- */
.youtube {
	width: 560px;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
 padding-bottom:50px;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}
/* ショップ ------------------------- */
/* 限定版 */
.limited ul {
	display: flex;
	flex-flow: column;
	padding-bottom: 20px;
}
.limited li {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
}
.limited .shop_title {
	flex: 0 0 100%;
}
.limited .shop_title h3 {
	display: block;
	width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.limited .shop_image {
	flex: 0 1 300px;
}
.limited img {
	padding: 0 25px;
	width: 250px;
}
.limited .shop_text {
	flex: 1 1 calc(100% - 300px);
}
/* 通常版 */
.normal {
	display: flex;
}
.normal ul {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 20px;
}
.normal li {
	flex: 0 1 auto;
	display: flex;
	flex-flow: column;
	width: 300px;
}
.normal .shop_title {
	flex: 0 1 auto;
	width: 300px;
}
.normal .shop_title h3 {
	display: block;
	width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.normal .shop_image {
	flex: 0 1 auto;
	width: 300px;
	padding-bottom: 20px;
}
.normal img {
	padding: 0 25px;
	width: 250px;
}
.normal .shop_text {
	flex: 0 1 auto;
	width: 300px;
}
/* プロダクト ------------------------- */
.productList {
	display: flex;
	flex-flow: row;
	gap: 20px;
	padding: 20px;
}
/* 商品画像 */
.product_image {
	flex: 0 1 auto;
	margin-right: min(5% - 10px, 50px);
}
.product_image div {
	flex: 1 1 auto;
}
.product_image img {
	width: 100%;
	max-width: 400px;
}
.product_info {
	flex: 0 1 auto;
}
/* 商品説明 */
.description {
	display: flex;
	flex-flow: row;
	border-bottom: 1px #998675 dotted;
}
.description .dt {
	flex: 0 0 auto;
	width: 100px;
	font-size: 16px;
	font-weight: normal;
	padding: 18px;
}
.description .dd {
	margin: auto 0;
}
	
/* スマホ width: 750px以下 --------------------*/
@media only screen and (max-width: 750px) {
	#header {
		height: calc(var(--header-height) * var(--header-res));
	}
	#header img {
		width: calc(var(--header-width) * var(--header-res));
		height: calc(var(--header-height) * var(--header-res));
		margin-left: calc((var(--header-width) * var(--header-res) / 2) * -1);
	}
	/* メニューパネル */
	#mainnav .panel {
		width: 100%;
		min-width: auto;
	}
	/* メニューリンク */
	#mainnav .panel > ul > li > a {
		font-size: min(3vw, 14px);
		padding: 0 2px;
	}
	#mainnav .panel > ul > li > a:before {
		border: none;
	}
	/* メニューリンク オンマウス */
	#mainnav .panel > ul > li > a:hover:before {
		border: none;
	}
	/* サブメニュー */
	#mainnav .panel > ul > li:hover > ul {
		display: none;
	}
	/* セクション */
	section {
		width: 90%;
		min-width: auto;
	}
	/* タイトル */
	section .title {
		width: 100%;
		margin-bottom: 30px;
	}
	section .title img {
		width: 80%;
		max-width: 400px;
	}
	/* 見出し */
	section h2 {
		font-size: 18px;
	}
	section h3 {
		font-size: 15px;
	}
	/* 画像囲み */
	section .imageWrap {
		flex-flow: column;
	}
	section .imageWrap div {
		padding: 0 20px;
	}
			/* キャラクター ------------------------- */
	.character_image {
		flex-flow: column;
	}
	/* WEBCM ------------------------- */
	.youtube {
		width: 95%;
		max-width: 560px;
		aspect-ratio: 16 / 9;
		margin: 0 auto;
	}
	/* ショップ ------------------------- */
	/* 限定版 */
	.limited {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.limited li {
		flex-flow: column;
		flex: 0 1 auto;
		width: 300px;
	}
	.limited .shop_title {
		flex: 0 1 auto;
		width: 300px;
	}
	.limited .shop_image {
		flex: 0 1 auto;
		width: 300px;
		padding-bottom: 20px;
	}
	.limited .shop_text {
		flex: 0 1 auto;
		width: 300px;
	}
	/* 通常版 */
	.normal {
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.normal ul {
		display: flex;
		flex-flow: column;
		flex-wrap: wrap;
		gap: 20px;
		padding-bottom: 20px;
	}
	/* プロダクト ------------------------- */
	.productList {
		flex-flow: column;
	}
	.product_image {
		flex: 0 1 auto;
		margin-right: 0;
	}
	.product_image div {
		flex: 1 1 auto;
	}
	.product_image img {
		width: 100%;
		max-width: none;
	}
	.description .dt {
		width: 80px;
	}
}
