/* IMPORT RESET ================================================== */
@import url("sanitize.css");

/* WEB FONT ====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=M+PLUS+1p:wght@400;500;700;800&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css");

/* LAYOUT ======================================================== */
/*実際に適用するレイアウトパターンを直下のcssディレクトリにコピーして読むこむ*/
@import url("event_a.css");
@import url("event_a2.css");
@import url("product_c.css");
@import url("linkbtn.css");

/* 変数設定 ======================================================== */

/*共通のサイズや色を変数で設定
　変数を使う時は数値で入れる箇所を var(--red) のように記載*/
:root {
	/*文字サイズ*/
	--x-small: 0.8rem;
	/*50%*/
	--small: 1.2rem;
	/*75%*/
	--medium: 1.6rem;
	/*100%*/
	--large: 2rem;
	/*125%*/
	--x-large: 2.4rem;
	/*150%*/
	/*色*/
	--red: #c00;
	--blue: #039;
	--mallcolor: #b60081;
}

/* STYLES ======================================================== */

/* ルートのフォントサイズを10pxに設定（1rem=10px）*/
html {
	font-size: 62.5%;
}

/* bodyのフォントサイズを16pxに設定 */
body {
	font-size: 1.6rem;
}

/* MEMO ++++++++++++++++++++++++++++++++
  フォントサイズはremで指定すること
  例）10pxは1rem、12pxは1.2rem
+++++++++++++++++++++++++++++++++++++ */

.font-xs {
	font-size: var(--x-small);
}

.font-s {
	font-size: var(--small);
}

.font-m {
	font-size: var(--medium);
}

.font-l {
	font-size: var(--large);
}

.font-xl {
	font-size: var(--x-large);
}

/*文字色*/
.font-red {
	color: var(--red);
}

.font-blue {
	color: var(--blue);
}

.font-mcolor {
	color: var(--mallcolor);
}


* {
	box-sizing: border-box;
}

body {
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	margin: 0;
	padding: 0;
	background: linear-gradient(
		180deg,
		#9BE2F8 0%,
		#7CCFED 45%,
		#56B6E3 100%
	);
}

/*下記marginやpadding、widthはサイトデザインに合わせて調整*/

header {
	margin: 0;
	padding: 0;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
}

main {
	margin: 0;
	padding: 10px 0 0;
}

footer {
	margin: 0;
	padding: 10px 0;
	background: #1D82C8;
	color: #fff;
	text-align: center;
}

header h1 {
	position: relative;
	margin: 0;
	width: 100%;
	max-width: none;
}

main section{
	margin: 5em auto;
	max-width: 980px;
}

footer section{
	margin: 0 auto;
	max-width: 980px;
	padding: 8px 0;
}

header h1 {
	position: relative;

	.title {
		position: absolute;
		top: 22%;
		left: 0;
	}
}

@media (max-width: 767px) {

	/*SPのみ適用*/
	header h1 {
		margin: 0;
	}
}

@media (max-width: 1000px) {

	/*mainのmax-widthよりウィンドウ幅が狭くなった時にコンテンツとウィンドウが接しないように設定
  @mediaのmax-widthと下記paddingはサイトコンテンツのmax-widthに合わせて調整*/
	main section {
		margin: 0 10px;
	}
}

main nav {
	width: 100%;
	margin: 2em auto 3em;
	padding: 0 1em 0 2em;
	max-width: 980px;

	p {
		width: 50%;
		text-align: center;

		img {
			max-width: 300px;
		}
	}
}

/*画像は基本的に横幅100%表示、高さは横幅に合わせて自動調整
  小さい画像を使用する際は個別にmax-widthを設定する*/
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
	/*Chromeで画像がぼやけるのを防止*/
}

header h1 img {
	display: block;
	width: 100%;
	height: auto;
}

h2 {
	text-align: center;

	img {
		width: 90%;
		max-width: 750px;

		@media (min-width: 768px) {
			/*PCのみ適用*/
			width: 70%;
		}
	}
}

p.home {
	text-align: center;
	margin: 3em 0;

	img {
		width: 90%;
		max-width: 750px;

		@media (min-width: 768px) {
			/*PCのみ適用*/
			width: 50%;
		}
	}
}

/*Flexbox ────────────────────────────────────────────────────────────
　子要素の間隔はgapで指定。
*/
.flexbox {
	display: flex;
	flex-wrap: wrap;
}

/*PC・スマホ共に2分割　※flexboxと一緒に設定*/
.box2 {
	--spacing: 20px;
	/*子要素の間隔*/

	gap: var(--spacing);

	>div,
	>p {
		width: calc((100% - var(--spacing)) / 2);
	}
}

/*PC2列、スマホ1列　※flexboxと一緒に設定*/
.box2-1 {
	--spacing: 20px;
	/*子要素の間隔*/

	gap: var(--spacing);

	>div,
	>p {
		width: 100%;
	}

	@media (min-width: 768px) {

		/*PCのみ適用*/
		>div,
		>p {
			width: calc((100% - var(--spacing)) / 2);
		}
	}
}

.annotation {
	max-width: 780px;
	margin: 0 auto;
	padding: 3px 20px 0 30px;
	color: #333;
	font-size: 1.4rem;
	text-indent: -1em;
}


/*ページトップスクロール ──────────────────────────────────────────────────*/
#page-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10;
}

.topbtn {
	display: block;
	background: #000;
	color: #fff;
	width: 50px;
	height: 50px;
	text-align: center;
	box-shadow: 0 0 0 3px #000;
	/*ボタンの背景色に合わせる*/
	border: 1px solid #fff;
	text-decoration: none;

	/*マウスオーバーした時*/
	@media (hover: hover) {

		/* hover指定できるPCを想定したスタイル */
		&:hover {
			background: #666;
			box-shadow: 0 0 0 3px #666;
			/*ボタンの背景色に合わせる*/
		}
	}

	@media (hover: none) {

		/* hoverが使えないタッチ端末を想定した装飾 */
		&:active {
			background: #666;
			box-shadow: 0 0 0 3px #666;
			/*ボタンの背景色に合わせる*/
		}
	}

	i {
		padding-top: 5px;
		font-size: var(--large);
		display: block;
	}

	span {
		display: block;
		font-size: var(--small);
		margin-top: -2px;
	}
}

/* ▲ページトップスクロールここまで▲ */

/* スマホなど幅が足りなくなったらspanで囲った単位で強制改行
   spanで囲まれている文章は自動改行がされなくなるので要注意*/
.spBr span {
	display: inline-block;
	white-space: nowrap;
}


/*超ナツLP ──────────────────────────────────────────────────*/

/* リンクボタン*/

.news-nav {
	margin: 40px auto 60px;
	max-width: 980px;
}

.news-nav__item {
	margin: 0;
	display: flex;
}

.news-nav__link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 120px;
	padding: 20px 56px 20px 20px;
	border: 6px solid #fff;
	border-radius: 24px;
	background: linear-gradient(
		180deg,
		#D4437D 0%,
		#D84F75 45%,
		#D95C6C 100%
	);
	box-shadow:
		0 6px 0 #C95B83,
		0 10px 18px rgba(0,0,0,.12);
	color: #fff;
	font-family: "M PLUS 1p", sans-serif;
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: .03em;
	text-align: center;
	text-decoration: none;
	transition:
		transform .25s ease,
		box-shadow .25s ease,
		filter .25s ease;
}

.news-nav__link::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 14px;
	height: 14px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

.news-area {
	max-width: 980px;
	margin: 0 auto 60px;
	padding: 0 20px;
}

.news-area__title {
	margin: 48px 0;
	text-align: center;
	font-family: "M PLUS 1p", sans-serif;
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.02em;
	color: #fff;
	text-shadow:
		1px 1px 0 #D84A78,
		2px 2px 0 #D84A78,
		3px 3px 4px rgba(0,0,0,.08);
}

@media (hover: hover) {

	.news-nav__link:hover {
		transform: translateY(-4px);
		box-shadow:
			0 8px 0 #C95B83,
			0 14px 22px rgba(0,0,0,.16);
		filter: brightness(1.04);
	}
}

/* PDF画像 */

.pdf-image {
	max-width: 980px;
	margin: 60px auto 0;
	text-align: center;
}

.pdf-image a {
	display: block;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(0,0,0,.12);
	transition:
		transform .25s ease,
		box-shadow .25s ease,
		filter .25s ease;
}

.pdf-image img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .25s ease;
}

@media (hover: hover) {

	.pdf-image a:hover {
		transform: translateY(-4px);
		box-shadow: 0 16px 32px rgba(0,0,0,.18);
		filter: brightness(1.03);
	}

	.pdf-image a:hover img {
		transform: scale(1.015);
	}
}

/* モールリンク */

.mall-link {
	margin: 40px auto 0;
	max-width: 980px;
}

.mall-link a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 72px;
	padding: 0 56px 0 24px;
	font-family: "M PLUS 1p", sans-serif;
	font-size: 2.4rem;
	font-weight: 800;
	text-decoration: none;
	color: #fff;
	border: 6px solid #fff;
	border-radius: 999px;
	background:
		linear-gradient(
			135deg,
			rgba(255,255,255,.28) 0%,
			rgba(255,255,255,0) 30%
		),
		linear-gradient(
			180deg,
			#5FD9C7 0%,
			#2FC8AF 45%,
			#00B39A 100%
		);
	box-shadow:
		0 6px 0 #1FA48E,
		0 10px 18px rgba(0,0,0,.12);
	transition:
		transform .25s ease,
		box-shadow .25s ease,
		filter .25s ease;
}

.mall-link a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 14px;
	height: 14px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

@media (hover: hover) {

	.mall-link a:hover {
		transform: translateY(-2px);
		box-shadow:
			0 8px 0 #1FA48E,
			0 14px 22px rgba(0,0,0,.16);
		filter: brightness(1.04);
	}
}

/* SP */

@media (max-width: 767px) {

	.news-area {
		padding: 0 8px;
	}

	.news-area__title {
		margin: 32px 0 36px;
		font-size: 2.3rem;
		line-height: 1.3;
		letter-spacing: -.01em;
		text-shadow:
			1px 1px 0 #D84A78,
			2px 2px 0 #D84A78,
			2px 2px 3px rgba(0,0,0,.08);
	}

	.news-nav {
		margin: 32px auto 48px;
		padding: 0;
	}

	.box2 {
		--spacing: 12px;
	}

	.news-nav__item {
		display: flex;
	}

	.news-nav__link {
		width: 100%;
		height: 88px;
		padding: 12px 28px 12px 10px;
		font-size: 1.6rem;
		line-height: 1.3;
		border: 4px solid #fff;
		border-radius: 20px;
		box-shadow:
			0 5px 0 #C95B83,
			0 8px 14px rgba(0,0,0,.12);
	}

	.news-nav__link::after {
		right: 10px;
		width: 10px;
		height: 10px;
		border-top: 3px solid #fff;
		border-right: 3px solid #fff;
	}

	.news-nav__link:active {
		transform: translateY(3px);
		box-shadow:
			0 2px 0 #C95B83,
			0 4px 8px rgba(0,0,0,.12);
	}

	.pdf-image {
		margin-top: 40px;
	}

	.mall-link a {
		height: 60px;
		padding: 0 42px 0 18px;
		font-size: 1.8rem;
		border: 4px solid #fff;
		box-shadow:
			0 4px 0 #1FA48E,
			0 8px 14px rgba(0,0,0,.12);
	}

	.mall-link a::after {
		right: 10px;
		width: 10px;
		height: 10px;
		border-top: 3px solid #fff;
		border-right: 3px solid #fff;
	}

	.mall-link a:active {
		transform: translateY(2px);
		box-shadow:
			0 2px 0 #1FA48E,
			0 4px 8px rgba(0,0,0,.12);
	}
}

.news-nav__link,
.mall-link a {
	-webkit-tap-highlight-color: transparent;
	outline: none;
}

.news-nav__link:focus,
.mall-link a:focus {
	outline: none;
}