@charset "UTF-8";
/* CSS Document */

/***************************** webフォントcss */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url('https://fonts.googleapis.com/css2?family=Material+Icons+Outlined');

/***************************** カラー設定 */
/*キーカラー
#FFD900
*/
/*ベースカラー

*/
/*差し色

*/
/* ===============================================================
GLOBAL
================================================================== */
html,
body {
	height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1em;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
	border: none;
	background-color: #0B121D;
	color: #fff;
	scroll-behavior: smooth;
}

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

.site-wrap {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}


/***************************** a */
a:link,
a:visited {
	color: #fff;
	text-decoration: none;
}

a:hover {
	color: #fff;
	text-decoration: none;
}

.fade {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.fade:hover {
	opacity: 0.65;
	filter: alpha(opacity=60);
}

/***************************** PC/SP切り替え */

.pc {
	display: block;
}

.sp {
	display: none;
}

img {
	width: 100%;
	height: auto;
}

/* スマホ表示（767px以下） */
@media (max-width: 767px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/* ===============================================================
モジュール
================================================================== */
/***************************** 注釈 */

.note {
	font-size: 12px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0.05em;
}

/***************************** ulリセット */
.ul-set {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: block;
}

/***************************** レイアウト */
/*FLEX*/
.column {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

/*テキスト画像置換*/
.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

/*共通*/

#site-wrap {
	overflow: hidden;
}

.content-wrap {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
}

/*===========
inview
===========*/

.fadeIn {
	opacity: 0;
	transition: opacity 2s ease;
}

.fadeIn.is-show {
	opacity: 1;
}

.fadeIn_up {
	opacity: 0;
	transform: translate(0, 20%);
	transition: 2s;
}

.fadeIn_up.is-show {
	transform: translate(0, 0);
	opacity: 1;
}

.fadeIn_left {
	opacity: 0;
	transform: translateX(-5%);
	transition: opacity 2s ease, transform 2s ease;
}

.fadeIn_left.is-show {
	opacity: 1;
	transform: translateX(0);
}

.fadeIn_right {
	opacity: 0;
	transform: translateX(5%);
	transition: opacity 2s ease, transform 2s ease;
}

.fadeIn_right.is-show {
	opacity: 1;
	transform: translateX(0);
}

/* アニメを軽減設定のユーザー配慮 */
@media (prefers-reduced-motion: reduce) {

	.fadeIn,
	.fadeIn_up,
	.fadeIn_left,
	.fadeIn_right {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ===============================================================
ヘッダー
================================================================== */
header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
}

header .wrap {
	display: flex;
	justify-content: space-between;
	padding: 40px;
}

header .wrap .site-logo {
	display: block;
	max-width: 400px;
}

header .wrap .corp-logo {
	display: block;
	max-width: 100px;
}

@media (max-width: 767px) {
	header .wrap {
		padding: 24px;
	}

	header .wrap .site-logo {
		max-width: 156px;
	}

	header .wrap .corp-logo {
		display: block;
		max-width: 64px;
	}
}

/* ===============================================================
フッター
================================================================== */
footer {
	background-color: #0C1A2F;
}

footer .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 56px;

}

footer .site-logo {
	max-width: 280px;
	width: 100%;
}

footer ul {
	list-style: none;
	display: flex;
}

footer ul li {
	margin-left: 56px;
	font-size: 12px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0.05em;
}

footer ul li.copyright span {
	color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 767px) {
	footer .wrap {
		display: block;
		padding: 30px 10px;
		text-align: center;

	}

	footer .site-logo {
		margin-bottom: 20px;
	}

	footer ul {
		display: block;
		text-align: center;
	}

	footer ul li {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 10px;
		font-size: 12px;
		font-weight: 700;
		line-height: 24px;
		letter-spacing: 0.05em;
	}

	li.copyright {
		margin-top: 30px;
	}

}


/* ===============================================================
セクション
================================================================== */
.sec01 {
	background-image: url(assets/images/bg_sec01.png);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 100% auto;
	padding-bottom: 128px;
}

.sec02 {
	background-image: url(assets/images/bg_sec02.webp);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

@media (max-width: 767px) {
	.sec01 {
		padding-bottom: 48px;
	}
}

/* ===============================================================
kv
================================================================== */

.kv {
	position: relative;
	background-image: url(assets/images/kv.webp);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 0 0 30px 0;
	overflow: hidden;
	margin-bottom: 125px;
}

@media (max-width: 767px) {
	.kv {
		background-image: url(assets/images/kv_s.webp);
		margin-bottom: 116px !important;
	}
}

.kv-content {
	position: relative;
	z-index: 2;
	margin-top: clamp(120px, 37.85vw, 600px);
	text-align: center;
}

@media (max-width: 767px) {
	.kv-content {
		margin-top: 100vw;
	}
}


/* 黒いオーバーレイ（1秒で透明へ） */
.kv .black {
	position: absolute;
	inset: 0;
	background-color: #0B121D;
	z-index: 1;
	opacity: 1;
	pointer-events: none;
	transition: opacity 3s ease;
}

/* フェードアウト発火用 */
.kv.is-loaded .black {
	opacity: 0;
}

.main-ttl {
	max-width: 830px;
	text-align: center;
	margin: auto;
	margin-bottom: 37px;
}

.campaign-period {
	max-width: 498px;
	text-align: center;
	margin: auto;
}

@media (max-width: 767px) {
	.main-ttl {
		max-width: 360px;
		margin-bottom: 17px;
	}

	.campaign-period {
		max-width: 363px;
	}
}

@media (max-width: 599px) {
	.main-ttl {
		max-width: 260px;
		margin-bottom: 17px;
	}

	.campaign-period {
		max-width: 263px;
	}
}

.main-ttl-wrap {
	padding: 0 40px;
	margin-bottom: 175px;
}

@media (max-width: 767px) {
	.kv-content {
		margin-top: 100vw;
	}

	.main-ttl-wrap {
		padding: 0 40px;
		margin-bottom: 95px;
	}
}

/* 初期状態：少しボケ＋薄く＋わずかに拡大（ピント前） */
.main-ttl img,
.campaign-period img {
	opacity: 0;
	filter: blur(8px) saturate(0.95) contrast(1.05);
	transform: scale(1.02);
	will-change: filter, opacity, transform;
}

/* 再生トリガー：.main-ttl-wrap に .is-ready が付いたら発火 */
.main-ttl-wrap.is-ready .main-ttl img {
	animation: focusIn .9s ease-out forwards;
}

.main-ttl-wrap.is-ready .campaign-period img {
	animation: focusIn .9s ease-out .18s forwards;
	/* タイムラグ再生 */
}

/* キーフレーム：ピントが合うようにボケ→シャープへ */
@keyframes focusIn {
	0% {
		opacity: 0;
		filter: blur(8px) saturate(0.95) contrast(1.05);
		transform: scale(1.02);
	}

	60% {
		opacity: 1;
		filter: blur(2px) saturate(1.03) contrast(1.02);
		transform: scale(1.005);
	}

	100% {
		opacity: 1;
		filter: blur(0) saturate(1) contrast(1);
		transform: none;
	}
}

/* 動きを苦手なユーザー設定を尊重 */
@media (prefers-reduced-motion: reduce) {

	.main-ttl img,
	.campaign-period img {
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		animation: none !important;
	}
}

/* ===============================================================
present
================================================================== */


.present {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 794px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}

.present .thumbnail-container {}

.present .ttl-container {
	text-align: left;
	padding: 20px 0 0 60px;
}

.present .thumbnail-container .stickers {
	width: 280px;
	box-shadow:
		0 0 30px rgba(255, 255, 255, .35),
		0 0 15px rgba(255, 255, 255, .25);
}

.present .ttl-container .fukidashi {
	max-width: 370px;
}

/*h2をリセット*/
.present .ttl-container h2 {
	margin: 14px 0 0 14px;
	padding: 0;
	font: inherit;
}

.present .ttl-container h2 .sub {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.05em;
	display: inline-block;
}

.present .ttl-container h2 .main-ttl {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 56px;
	font-weight: 700;
	line-height: 122px;
	letter-spacing: 0.05em;
	color: #FFD900;
	display: inline-block;
	white-space: nowrap;
	margin-top: -10px;
}

.present .ttl-container h2 .main-ttl i {
	font-style: normal;
	font-size: 66px;
	display: inline-block;
	margin: 0px 0 0 -20px;
	vertical-align: -6px;
	/* 下方向に6px下げる */
	line-height: 1;
	/* 行間の影響を受けない */
}

@media (max-width: 767px) {
	.present {
		flex-wrap: wrap;
	}

	.present .thumbnail-container {
		order: 2;
		text-align: center;
		width: 100%;
	}

	.present .ttl-container {
		order: 1;
		text-align: center;
		width: 100%;
		padding: 0;
	}

	.present .ttl-container .fukidashi {
		max-width: 290px;
	}

	.present .thumbnail-container .stickers {
		width: 215px;
		margin-top: 30px;
		box-shadow:
			0 0 20px rgba(255, 255, 255, .35),
			0 0 10px rgba(255, 255, 255, .25);
	}


	.present .ttl-container h2 {
		margin: 10px 0 0 0;
		padding: 0;
		font: inherit;
	}

	.present .ttl-container h2 .sub {
		font-size: 24px;
		font-weight: 700;
		line-height: 36px;
		letter-spacing: 0.05em;
		display: inline-block;
	}

	.present .ttl-container h2 .main-ttl {
		font-size: 36px;
		font-weight: 700;
		line-height: 80px;
		letter-spacing: 0.05em;
		color: #FFD900;
		display: inline-block;
		white-space: nowrap;
		margin: -6px 0 0 -6px;
	}

	.present .ttl-container h2 .main-ttl i {
		font-style: normal;
		font-size: 43px;
		display: inline-block;
		margin: 0px 0 0 -10px;
		vertical-align: -2px;
		/* 下方向に6px下げる */
		line-height: 1;
		/* 行間の影響を受けない */
	}

}

/* ===============================================================
products
================================================================== */

.products {
	margin-bottom: 128px;
}

.products .content-wrap {
	position: relative;
	z-index: 1;
}

.products .content-wrap .products-bg {
	background-image: url(assets/images/products_bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	overflow: visible;
	width: 700px;
	height: 700px;
	position: absolute;
	top: -230px;
	right: -100px;
	z-index: 1;
}

.products .content-wrap .content {
	max-width: 800px;
	width: 100%;
	border: solid thin #707070;
	margin: auto;
	position: relative;
	z-index: 10;
	overflow: visible;
}

.products .content-wrap .content h2 {
	width: 202px;
	margin-top: -22px;
	margin-left: 80px;
}

.products .content-wrap .content .products-list {
	list-style: none;
	margin: 58px 0 65px 80px;

}

.products .content-wrap .content .products-list li {
	font-size: 24px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.05em;
	display: grid;
	grid-template-columns: 10px 1fr;
	column-gap: 12px;
	align-items: start;
	text-align: left;
	margin-bottom: 10px;
}

.products .content-wrap .content .products-list li::before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	background-image: url(assets/images/products_icon.png);
	background-repeat: no-repeat;
	background-position: left center;
	margin: 14px 12px 0 0;
}

.products .content-wrap .content .products-list li span {
	grid-column: 2 / -1;
	display: block;
	margin-top: 0px;
}

.products .content-wrap .content .products-camera {
	width: 391px;
	height: auto;
	position: absolute;
	top: -45px;
	right: -45px;
}

.products .content-wrap .note {
	text-align: right;
	margin: 1em auto;
	width: 800px;
}

@media (max-width: 767px) {
	.products {
		margin-bottom: 80px;
	}

	.products .content-wrap .content {
		text-align: center;
		padding-bottom: 36px;
	}

	.products .content-wrap .content h2 {
		width: 175px;
		margin-top: -22px;
		margin-left: auto;
		margin-right: auto;
	}

	.products .content-wrap .content .products-list {
		margin: 36px auto 40px auto;
		width: fit-content;
	}

	.products .content-wrap .content .products-list li {
		display: grid;
		grid-template-columns: 10px 1fr;
		column-gap: 10px;
		align-items: start;
		text-align: left;
		font-size: 18px;
		margin-bottom: 2px;
	}

	.products .content-wrap .content .products-list li::before {
		margin: 14px 12px 0 0;
	}

	.products .content-wrap .content .products-list li span {
		margin-top: -10px;
	}

	.products .content-wrap .content .products-camera {
		max-width: 246px;
		width: 100%;
		height: auto;
		position: static;

	}

	.products .content-wrap .products-bg {
		position: absolute;
		top: auto;
		width: 500px;
		height: 500px;
		bottom: -30px;
		left: 50%;
		transform: translateX(-50%);
	}

	.products .content-wrap .note {
		text-align: left;
		margin: 1em auto;
		width: 100%;
	}
}

/* ===============================================================
price
================================================================== */
.price {
	margin-bottom: 0px;
	margin-top: 128px;
}

.price .content-wrap {}

.price .content-wrap .content {}

.price .content-wrap .content h2 {
	width: 388px;
	margin: auto;
}

.price .content-wrap .content .price-list {
	list-style: none;
	margin: 30px auto 0;
	width: 100%;
	max-width: 626px;
}

.price .content-wrap .content .price-list li.body,
.price .content-wrap .content .price-list li.lens {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto 10px auto;
	width: fit-content;
}

.price .content-wrap .content .price-list li.body {
	margin-bottom: 10px;
}

.price .content-wrap .content .price-list li.note {
	/*注釈*/
	display: block;
	text-align: right;
	margin-top: -20px;
}

.price .content-wrap .content .price-list li p img {
	/*アイコン*/
	width: 96px;
	height: 96px;
	margin-right: 20px;
}

.price .content-wrap .content .price-list li p small:first-child {
	/*台数*/
	font-size: 20px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.05em;
	margin-right: 36px;
	vertical-align: 10px;
}

.price .content-wrap .content .price-list li p small:nth-of-type(2),
.price .content-wrap .content .price-list li p small:last-child {
	/*円*/
	font-size: 24px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0;
	margin: 0 2px;
}

.price .content-wrap .content .price-list li p i {
	/*〜*/
	font-size: 40px;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: 0;
	margin: 0 8px 0 4px;
}

.price .content-wrap .content .price-list li p span {
	/*金額*/
	font-size: 48px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0;
}



@media (max-width: 767px) {
	.price {
		margin-bottom: 128px;
		margin-top: 0px;
	}

	.price .content-wrap .content h2 {
		width: 305px;
	}

	.price .content-wrap .content .price-list {
		margin: 40px auto 0;
	}

	.price .content-wrap .content .price-list li.body,
	.price .content-wrap .content .price-list li.lens {
		text-align: left;
		justify-content: flex-start;
	}

	.price .content-wrap .content .price-list li.body {
		margin-bottom: 24px;
	}


	.price .content-wrap .content .price-list li.note {
		/*注釈*/
		display: block;
		text-align: center;
		margin-top: 0px;
		padding-top: 20px;

	}

	.price .content-wrap .content .price-list li p small:first-child {
		/*台数*/
		font-size: 14px;
		font-weight: 700;
		line-height: 20px;
		letter-spacing: 0.05em;
		display: block;
	}

	.price .content-wrap .content .price-list li p small:nth-of-type(2),
	.price .content-wrap .content .price-list li p small:last-child {
		/*円*/
		font-size: 16px;
		font-weight: 700;
		line-height: 40px;
		letter-spacing: 0;
		margin: 0 2px;
	}

	.price .content-wrap .content .price-list li p i {
		/*〜*/
		font-size: 26px;
		font-weight: 400;
		line-height: 38px;
		letter-spacing: 0;
		margin: 0 8px 0 4px;
	}

	.price .content-wrap .content .price-list li p span {
		/*金額*/
		font-size: 30px;
		font-weight: 700;
		line-height: 0px;
		letter-spacing: 0;
	}

	.price .content-wrap .content .price-list li p span:nth-of-type(1) {
		/*金額*/
	}

	.price .content-wrap .content .price-list li p span:nth-of-type(2) {
		/*金額*/
		padding-left: 0.5em;
	}


}

/* ===============================================================
search
================================================================== */
.search {
	background-color: #FFD900;
	color: #0C1A2F;
	overflow: visible;
	height: 320px;
}

.search .content-wrap {
	text-align: center;
	position: relative;
	margin: auto;
	height: 320px;
	display: grid;
	place-items: center;
}

.search .content-wrap h2 {
	text-align: center;
	width: 100%;
	font-size: 28px;
	font-weight: 700;
	line-height: 44.8px;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
}

.search .content-wrap .btn-serch {
	background-color: #0C1A2F;
	text-align: center;
	border-radius: 100px;
	max-width: 400px;
	width: 100%;
	display: block;
	margin: auto;
	padding: 20px 0;
	opacity: 100;
}

.search .content-wrap .btn-serch:hover {
	background-color: #fff;
	color: #0B121D;
	box-shadow: inset 0 0 0 2px #0C1A2F;
	opacity: 100;
}

.search .content-wrap .btn-serch span {
	font-size: 20px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.05em;
}

.search .content-wrap .search-img {
	position: absolute;
	width: 150px;
	height: auto;
	top: -108px;
	right: 0;
}

@media (max-width: 767px) {
	.search .content-wrap h2 {
		text-align: center;
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
		font-size: 20px;
		font-weight: 700;
		letter-spacing: 0.05em;
		line-height: 32px;
	}

	.search .content-wrap .search-img {
		position: absolute;
		width: 100px;
		height: auto;
		top: -100px;
		right: 24px;
	}

	.search .content-wrap .btn-serch {
		background-color: #0C1A2F;
		text-align: center;
		border-radius: 100px;
		width: 320px;
		display: block;
		margin: auto;
		padding: 18px 0;
	}
}



/* ===============================================================
sec02
================================================================== */
.sec02 {
	padding: 128px 0;
}

.sec02 .content {
	max-width: 600px;
	width: 100%;
	border-radius: 8px;
	background-color: #F0F0F0;
	color: #0B1A2F;
	margin: 0 auto;
	text-align: center;
	padding: 40px 40px 64px 40px;
}

.sec02 .content .site-logo {
	width: 180px;
	margin-bottom: 26px;
}

.sec02 .content h2 {
	font-size: 28px;
	font-weight: 700;
	line-height: 44.8px;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.sec02 .content p {
	font-size: 18px;
	font-weight: 700;
	line-height: 28.8px;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
}


.sec02 .content .btn-detail {
	background-color: #0C1A2F;
	text-align: center;
	border-radius: 100px;
	max-width: 300px;
	width: 100%;
	display: block;
	margin: auto;
	padding: 15px 0;
}

.sec02 .content .btn-detail:hover {
	background-color: #fff;
	color: #0B121D;
	opacity: 100;
	box-shadow: inset 0 0 0 2px #0C1A2F;
}

.sec02 .content .btn-detail span {
	font-size: 18px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.05em;
}

@media (max-width: 767px) {
	.sec02 {
		padding: 98px 0;
	}

	.sec02 .content {
		padding: 30px 20px 40px 20px;
	}

	.sec02 .content .inner {
		max-width: 300px;
		width: 100%;
		margin: auto;
	}

	.sec02 .content .site-logo {
		width: 128px;
		margin-bottom: 18px;
	}

	.sec02 .content h2 {
		font-size: 18px;
		font-weight: 700;
		letter-spacing: 0.05em;
		line-height: 32px;
		text-align: center;
		margin-bottom: 20px;
		/*white-space: nowrap;*/
	}

	.sec02 .content p {
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 0.05em;
		line-height: 25.6px;
		text-align: left;
		margin-bottom: 20px;
		margin-left: auto;
		margin-right: auto;
		display: block;
		max-width: 260px;
		width: 100%;


	}

	.sec02 .content .btn-detail {
		background-color: #0C1A2F;
		text-align: center;
		border-radius: 100px;
		width: 263px;
		display: block;
		margin: auto;
		padding: 12px 0;
	}
}






/* [-] レスポンシブ対応（2025年最新基準）
=========================================================================================== */
/* スマートフォン（小）: iPhone SE / Galaxy Fold 縦向き */
@media (max-width: 359px) {
	/* スタイルを書く */
}

@media (max-width: 599px) {
	/* スタイルを書く */
}

@media (max-width: 767px) {
	/* スタイルを書く */
}

@media (max-width: 1023px) {
	/* スタイルを書く */
}

/* スマートフォン（標準）: iPhone 12〜15, Pixel 等 */
@media (min-width: 360px) and (max-width: 599px) {
	/* スタイルを書く */
}

/* スマートフォン（大）: iPhone Pro Max, Galaxy Ultra 等 */
@media (min-width: 600px) and (max-width: 767px) {
	/* スタイルを書く */
}

/* タブレット（縦）: iPad mini, iPad 縦向き */
@media (min-width: 768px) and (max-width: 1023px) {
	/* スタイルを書く */
}

/* タブレット（横）・小型ノートPC: iPad 横向き, 13インチ前後のノート */
@media (min-width: 1024px) and (max-width: 1279px) {
	/* スタイルを書く */
}

/* デスクトップ（標準）: フルHD（1920x1080）クラス */
@media (min-width: 1280px) and (max-width: 1599px) {
	/* スタイルを書く */
}

/* デスクトップ（大型）: WQHD〜4Kクラス（2560px〜） */
@media (min-width: 1600px) {
	/* スタイルを書く */
}