@charset "UTF-8";

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)){
	all: unset;
	display: revert;
}
*,*::before,*::after{
	box-sizing: border-box;
}
a, button{
	cursor: revert;
}
ol, ul, menu{
	list-style: none;
}
img{
	vertical-align: top;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
input, textarea{
	-webkit-user-select: auto;
	user-select: auto;
}
textarea{
	white-space: revert;
}
meter{
	-webkit-appearance: revert;
	appearance: revert;
}
::placeholder{
	color: unset;
}
:where([hidden]){
	display: none;
}
:where([contenteditable]:not([contenteditable="false"])){
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	line-break: after-white-space;
	-webkit-user-select: auto;
	user-select: auto;
}
:where([draggable="true"]){
	-webkit-user-drag: element;
}

/*
	Setting CSS
-----------------------------------------------------------------------------------------------*/
html{
	font-size: 62.5%;
}
body{
	font-family: YakuHanJP, 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Hiragino Kaku Gothic ProN', sans-serif;
	font-size: 1.5em;
	font-weight: 400;
	font-feature-settings: 'palt';
	overflow-wrap: break-word;
}
p{
	line-height: 1.7;
}
a{
	color: #000;
	text-decoration: none;
	transition: all 0.3s;
}
a:link{
	color: #000;
}
a:visited{
	color: #000;
}
@media (any-hover: hover){
	a:hover {
		text-decoration: none;
		opacity: 0.7;
	}	
}

/* button初期化 */
button{
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	font-family: inherit;
	background: none;
	border: none;
	outline: none;
}
@media (any-hover: hover){
	button:hover{
		cursor: pointer;
	}
}

@media print, screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events: none;
	}
}

/* 表示切替 */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}


/*
	common
-----------------------------------------------------------------------------------------------*/
/* 変数
============================== */
:root{
	/* color */
	--colorBlue:#0553ae;
	--colorNavy:#253974;
	--colorYellow:#fff11c;
	--colorCream:#f6efe6;
	--colorRed:#ee4344;

	/* linear-gradient */
	--gradationBlue: linear-gradient(to right, #80afde, #0a67bf);
	--gradationRed: linear-gradient(to right, #fa8c99, #f64458);

	/* width */
	--widthBase: 1200px;

	/* font-family */
	--ffZenMaru: "Zen Maru Gothic", sans-serif;
	--ffRubik: "Rubik", sans-serif;
	--ffAptly: "Aptly", sans-serif;
}

/* wrapper
============================== */
#wrapper{
	background-color: var(--colorCream);
	position:relative;
}

/* ボタン
============================== */
.btnArea{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}
a[class^="btnBase"],
[class^="btnBase"]{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 330px;
	min-height: 80px;
	padding: 15px 30px;
	padding-right: 45px;
	font-family: var(--ffZenMaru);
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	background-color: var(--colorBlue);
	border: 5px solid #fff;
	border-radius: 40px;
	position: relative;
}
a[class^="btnBase"]::before,
a[class^="btnBase"]::after{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
a[class^="btnBase"]::before{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	right: 20px;
}
a[class^="btnBase"]::after{
	width: 6px;
	height: 8px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: var(--colorBlue);
	right: 26px;
}
/* アンカーリンク */
a.btnBaseAnkerLink::after{
	width: 8px;
	height: 6px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	right: 26px;
}
/* 別窓リンク */
a.btnBaseWindow::before{
	background: url("../images/ico_window.svg") #fff no-repeat center center / 58% !important;
}
a.btnBaseWindow::after{
	display: none;
}
/* リンクなし */
.btnBaseNone{
	padding: 15px;
}


/*
	header
-----------------------------------------------------------------------------------------------*/
#headerWrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-width: var(--widthBase);
	height: 75px;
	padding-inline: 20px;
	background-color: #fff;
	z-index: 100;
}

/* テキストリンク
============================== */
a.txtLink{
	font-weight: 600;
	color:var(--colorBlue);
	text-decoration:underline;
	transition:color 0.2s;
}
@media (any-hover: hover){
    .txtLink:hover{
        text-decoration:none;
		opacity: 1.0;
    }
}

/* 注釈
==================================== */
[class^="listBase"]{
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 1.5rem;
}
[class^="listBase"] > li{
	padding-left: 13px;
	position: relative;
}
[class^="listBase"] > li::before{
	content: " ";
	width: 8px;
	aspect-ratio: 1 / 1;
	background-color: var(--colorBlue);
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: 0;
}


/*
	コンテンツ
-----------------------------------------------------------------------------------------------*/
/* ctsWrapper
============================== */
#ctsWrapper{
	position: relative;
	overflow: hidden;
}
#ctsWrapper::before{
	content: "";
	width: 100%;
	height: 100%;
	background: url("../images/bg_noise.png") repeat top center;
	position: absolute;
	top: 0;
	opacity: 0.5;
	mix-blend-mode: color-burn;
	pointer-events: none;
	z-index: 90;
}

/* ctsArea
============================== */
.ctsArea{
	width: var(--widthBase);
	margin: 0 auto;
	padding-inline: 30px;
}

/* 赤枠
============================== */
.redFrameWrapper{
	width: var(--widthBase);
	margin: 0 auto;
	margin-block: 50px;
	padding-inline: 30px;
	position: relative;
	overflow: hidden;
}
.redFrame{
	background: url("../images/bg_redFrame_pc.png") repeat-y top -1px center / 100%;
	position: relative;
}
.redFrameTop{
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: -1px;
}
.redFrameBtm{
	display: block;
	width: 100%;
	height: auto;
	margin-top: -1px;
	transform: rotate(180deg);
}
.ctsFootLogo{
	position: absolute;
	left: 50%;
	bottom: 80px;
	transform: translateX(-50%);
	z-index: 1;
}

/* ドット背景
============================== */
.dotsArea{
	margin-top: -190px;
	margin-inline: 25px;
	padding: 80px 15px;
	background-color: var(--colorCream);
	position: relative;
	z-index: 0;
}
.dotsArea::before{
	content: "";
	width: 100%;
	height: 100%;
	background: url("../images/bg_dots.png") repeat center center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.5;
	z-index: -1;
}


/*
	kv
-----------------------------------------------------------------------------------------------*/
#kvWrapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	position: relative;
	top: -150px;
	z-index: 1;
}

/* カウントダウン
============================== */
.kvTimer{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 182px;
	height: 180px;
	padding: 12px 0 0 5px;
	font-family: var(--ffZenMaru);
	font-size: 1.8rem;
	font-weight: 700;
	background: url("../images/bg_timer.svg") no-repeat center center / cover;
	position: absolute;
	top: 150px;
	right: 110px;
}
.kvTimerTxt{
	letter-spacing: -0.1rem;
}
.kvTimerData{
	display: inline-block;
	margin-block: -20px -10px;
	font-size: 2.2rem;
	line-height: 1.0;
}
#timerDate{
	display: inline-block;
	font-size: 8.0rem;
	font-weight: 900;
	color: var(--colorBlue);
	line-height: 1.0;
}
#timerTime{
	font-size: 2.4rem;
}

/* ループテキスト */
.loopTxt {
	display: flex;
	overflow: hidden;
	position: absolute;
	bottom: 80px;
	left: 0;
}
.loopTxtItem {
	flex-shrink: 0;
	white-space: nowrap;
	font-family: var(--ffAptly);
	font-size: 16.0rem;
	font-weight: 400;
	color: var(--colorCream);
	line-height: 1.0;
	letter-spacing: -0.5rem;
	z-index: -1;
}
.loopTxtItem:nth-of-type(odd){
	animation: loopTxt 24s -12s infinite linear; /* 24秒かけて-12秒後に無限ループさせる */
}
.loopTxtItem:nth-of-type(even){
	animation: loopTxt2 24s infinite linear; /* 24秒かけて無限ループさせる */
}
@keyframes loopTxt {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loopTxt2 {
	from {
	transform: translateX(0);
	}
	to {
	transform: translateX(-200%);
	}
}

/* バナー
============================== */
.kvBanner{
	width: 250px;
	position: absolute;
	right: 50px;
	bottom: -30px;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	animation: upDown 5s ease 0s infinite;
	z-index: 100;
}
.kvBanner a{
	display: inline-block;
}
.kvBannerImg{
	width: 100%;
}
@keyframes upDown{
	0%  {transform: translateY(0);}
	50% {transform: translateY(-15px);}
	100%{transform: translateY(0);}
}


/*
	概要
-----------------------------------------------------------------------------------------------*/
#aboutWrapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin-bottom: 60px;
	font-family: var(--ffZenMaru);
	font-weight: 700;
	position: relative;
}
.aboutTxt{
	font-size: 1.7rem;
	line-height: 2.2;
	text-align: center;
}
[class^="aboutItem"]{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.aboutItem01{
	left: 10px;
}
.aboutItem02{
	right: 10px;
}


/*
	企画一覧
-----------------------------------------------------------------------------------------------*/
.projectTit{
	margin-bottom: 30px;
	text-align: center;
}

/* リスト
============================== */
.listProject{
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 20px;
}
.listProject > li{
	width: 340px;
	border-radius: 20px;
	overflow: hidden;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
.listProjectBox{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	height: calc(100% - 230px);
	padding: 20px;
	background-color: #fff;
}
.listProjectTit{
	margin-bottom: 15px;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--colorBlue);
}
.listProjectTxt{
	text-align: justify;
}
.listProjectTxt span{
	color: var(--colorRed);
}


/*
	SNS企画
-----------------------------------------------------------------------------------------------*/
#campaignWrapper{
	margin-inline: 25px;
	padding: 80px 15px;
	background: url("../images/bg_campaign.png") #d2f0ff repeat center center;
}

/* 共通タイトル
============================== */
.campaignCmnTitWrapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}
.campaignCmnTit{
	text-align: center;
	position: relative;
}
.campaignCmnTit::before{
	content: "";
	display: block;
	width: 50px;
	height: 20px;
	margin: 0 auto;
	background: url("../images/ico_line.svg") no-repeat center center/100%;
}
.campaignCmnTit .en{
	font-family: var(--ffRubik);
	font-size: 7.0rem;
	font-weight: 600;
	color: transparent;
	background: var(--gradationBlue);
	background-clip: text;
}
.campaignCmnTit .jp{
	font-weight: 600;
}
.campaignCmnTxt{
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--colorNavy);
	text-align: center;
}
/* white */
.campaignCmnTit.white .en{
	color: #fff;
	background: none;
}
.campaignCmnTit.white .jp{
	color: #fff;
}

/* 企画タイトル
============================== */
.campaignTit{
	margin-bottom: 30px;
	text-align: center;
}

/* 概要
============================== */
.campaignAboutWrapper{
	margin-bottom: 80px;
}
/* 投票期間 */
.period{
	margin-bottom: 50px;
	text-align: center;
}
.periodTit{
	margin-bottom: 5px;
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--colorBlue);
	letter-spacing: 0.5rem;
}
.periodTxt{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 35px;
	height: 70px;
	background-color: var(--colorBlue);
	border-radius: 35px;
}
/* 概要文 */
.campaignAbout{
	text-align: center;
}
.campaignAboutTit{
	margin-bottom: 30px;
}
.campaignAboutTxt{
	font-size: 1.7rem;
	font-weight: 600;
	color: var(--colorNavy);
	line-height: 2.5;
}

/* プレゼント内容
============================== */
.campaignPresentWrapper{
	margin-bottom: 40px;
}
.campaignPresentArea{
	width: 1000px;
	margin: 0 auto;
	padding: 50px 60px;
	background: var(--gradationBlue);
	border-radius: 20px;
}
.campaignPresentCtsArea{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: -30px;
}
.campaignPresentTxtArea{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.campaignPresentTit{
	font-size: 2.3rem;
	font-weight: 600;
	color: var(--colorYellow);
}
.campaignPresentTxt{
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	color: #fff;
}
.campaignPresentTxt span{
	display: inline-block;
	margin-right: 5px;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--colorNavy);
	line-height: 1.0;
	background-color: var(--colorYellow);
}

/* 応募の流れ
============================== */
/* .campaignFlowWrapper{
	margin-bottom: 80px;
} */
.listCampaignFlow{
	display: flex;
	justify-content: center;
	gap: 100px;
	margin-bottom: 30px;
}
.listCampaignFlow > li{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 400px;
	position: relative;
}
.listCampaignFlow > li:nth-of-type(1)::after{
	content:"";
	display:block;
	width:25px;
	height:25px;
	border-top:6px solid var(--colorBlue);
	border-right:6px solid var(--colorBlue);
	position:absolute;
	top:50%;
	right:-60px;
	transform: translateY(calc(-50% - 35px)) rotate(45deg);
}
.listCampaignFlowNum{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin-bottom: -35px;
	font-family: var(--ffRubik);
	font-size: 3.2rem;
	font-weight: 600;
	color: var(--colorNavy);
	background-color: var(--colorYellow);
	border-radius: 50%;
	position: relative;
	z-index: 1;
}
.listCampaignFlowImg{
	width: 100%;
	padding-top: 50px;
	padding-inline: 50px;
	text-align: center;
	background-color: #fff;
	border-radius: 20px;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
.listCampaignFlowTxt{
	margin-top: 15px;
	font-weight: 600;
	text-align: center;
}
.listCampaignFlowTxt span{
	display: inline-block;
	margin-right: 5px;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--colorNavy);
	line-height: 1.0;
	background-color: var(--colorYellow);
}

/* 注釈 */
.campaignFlowNotes{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}
.campaignFlowNotes > li{
	display: inline-block;
	padding-left: 13px;
	font-weight: 700;
	color:#e50012;
	position: relative;
}
.campaignFlowNotes > li::before {
	content: " ";
	width: 8px;
	aspect-ratio: 1 / 1;
	background-color: #e50012;
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: 0;
}

/* 応募規約 */
.termsWrapper{
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 50px;
}
.termsCtsArea{
	width: 1000px;
	margin: 0 auto;
	position: relative;
}
.termsTit{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 40px;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.5rem;
	color: #fff;
	background: var(--gradationRed);
	border-radius: 20px;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.termsBox{
	height: 450px;
	padding: 60px;
	border-radius: 20px;
	background-color: #fff;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
.termsTxt{
	margin-bottom: 30px;
}
/* list */
.termsList{
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.termsList > li{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.termsListTit{
	display: flex;
	align-items: center;
	min-height: 25px;
	padding-left: 10px;
	font-size: 1.6rem;
	font-weight: 600;
	border-left: 5px solid var(--colorBlue);
}
.termsListEm{
	font-weight: 600;
}
.termsListEm span{
	color: var(--colorRed);
}

/* みんなの投稿
============================== */
.postWrapper{
	margin-bottom: 100px;
}
.listPost{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 100;
}
.listPost > li{
	width: calc((100% - 60px)/4);
	aspect-ratio: 1 / 1;
	background-color: #fff;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.listPost > li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/*
	footer
-----------------------------------------------------------------------------------------------*/
#footerWrapper{
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 30px;
	font-size: 1.4rem;
	color: #fff;
	background-color: #44413c;
	position: relative;
}

/* コンテンツエリア
============================== */
[class^="footerCtsArea"]{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.footerCtsAreaBtm{
	flex-direction: row-reverse;
}

/* テキストリンク
============================== */
a.footerTxtLink{
	padding-left: 20px;
	color: #fff;
	position: relative;
}
a.footerTxtLink::before{
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
a.footerTxtLink::after{
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid #44413c;
	border-right: 1px solid #44413c;
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%) rotate(45deg);
}

/* リスト
============================== */
.listFooter{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}
.listFooter > li{
	position: relative;
}
.listFooter > li:has(+li)::after{
	content: "";
	width: 1px;
	height: 70%;
	background-color: #fff;
	position: absolute;
	top: 50%;
	right: -15px;
	transform: translateY(-50%);
}
.listFooter > li a{
	color: #fff;
	text-decoration: underline;
}
@media (any-hover: hover){
	.listFooter > li a:hover{
		text-decoration: none;
	}
}

/* コピーライト
============================== */
.copyright{
	font-size: 1.2rem;
}


@media screen and (max-width:812px){
	body{
		font-size: 1.4em;
		-webkit-text-size-adjust: 100%;
	}
	img{
		width:100%;
	}
	p{
		line-height: 1.5;
	}	
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}


	/*
		common
	-----------------------------------------------------------------------------------------------*/
	/* 変数
	============================== */
	:root{
		/* width */
		--widthBase: 100%;
	}

	/* ボタン
	============================== */
	.btnArea{
		align-self: stretch;
		gap: 10px;
	}
	a[class^="btnBase"],
	[class^="btnBase"]{
		width: 100%;
		max-width: 300px;
		min-height: 60px;
		padding: 10px 20px;
		padding-right: 30px;
		font-size: 1.4rem;
		border: 3px solid #fff;
	}
	a[class^="btnBase"]::before{
		width: 18px;
		height: 18px;
		right: 15px;
	}
	a[class^="btnBase"]::after{
		width: 5px;
		height: 7px;
		right: 21px;
	}
	/* アンカーリンク */
	a.btnBaseAnkerLink::after{
		width: 7px;
		height: 5px;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		right: 20px;
	}
	/* リンクなし */
	.btnBaseNone{
		padding: 10px 15px;
	}


	/*
		header
	-----------------------------------------------------------------------------------------------*/
	#headerWrapper{
		width: 100%;
		min-width: var(--widthBase);
		height: 60px;
	}
	.headerLogo{
		width: 110px;
	}
	.headerLogoLand{
		width: 150px;
	}


	/*
		コンテンツ
	-----------------------------------------------------------------------------------------------*/
	/* 赤枠
	============================== */
	.redFrameWrapper{
		max-width: 500px;
		margin-block: 20px;
		padding-inline: 10px;
	}
	.redFrame{
		background: url("../images/bg_redFrame_sp.png") repeat-y top center / 100%;
	}
	.ctsFootLogo{
		width: 65px;
		bottom: 6vw;
	}

	/* ドット背景
	============================== */
	.dotsArea{
		margin-top: -60px;
		margin-inline: 3.5%;
		padding: 50px 20px 30px;
	}


	/*
		kv
	-----------------------------------------------------------------------------------------------*/
	#kvWrapper{
		gap: 10px;
		top: -40px;
	}
	.kvPic{
		width: 65%;
		max-width: 250px;
	}

	/* カウントダウン
	============================== */
	.kvTimer{
		width: 86px;
		height: 85px;
		padding: 4px 0 0 5px;
		font-size: 1.0rem;
		top: auto;
		right: -5px;
		bottom: -55px;
	}
	.kvTimerData{
		margin-block: -5px -3px;
		font-size: 1.5rem;
	}
	#timerDate{
		font-size: 3.0rem;
	}
	#timerTime{
		font-size: 1.2rem;
	}

	/* ループテキスト */
	.loopTxt {
		bottom: 60px;
	}
	.loopTxtItem {
		font-size: 7.0rem;
		letter-spacing: -0.2rem;
	}

	/* バナー
	============================== */
	.kvBanner{
		width: 100px;
		right: 5px;
		bottom: -50px;
	}
	@keyframes upDown{
		0%  {transform: translateY(0);}
		50% {transform: translateY(-15px);}
		100%{transform: translateY(0);}
	}


	/*
		概要
	-----------------------------------------------------------------------------------------------*/
	#aboutWrapper{
		gap: 15px;
	}
	.aboutTit{
		max-width: 300px;
	}
	.aboutTxt{
		font-size: 1.4rem;
		line-height: 2.0;
		text-align: left;
	}
	[class^="aboutItem"]{
		display: none;
	}


	/*
		企画
	-----------------------------------------------------------------------------------------------*/
	.projectTit{
		max-width: 250px;
		margin: 0 auto 20px;
	}

	/* リスト
	============================== */
	.listProject{
		align-items: center;
		flex-direction: column;
		gap: 10px;
	}
	.listProject > li{
		width: 100%;
		max-width: 300px;
		border-radius: 15px;
	}
	.listProjectBox{
		height: auto;
	}
	.listProjectTit{
		margin-bottom: 10px;
		font-size: 1.6rem;
	}


	/*
		SNS企画
	-----------------------------------------------------------------------------------------------*/
	#campaignWrapper{
		margin-inline: 3.5%;
		padding: 30px 20px;
		background: url("../images/bg_campaign.png") #d2f0ff repeat center center / 100%;
	}

	/* 共通タイトル
	============================== */
	.campaignCmnTitWrapper{
		gap: 10px;
		margin-bottom: 20px;
	}
	.campaignCmnTit::before{
		width: 40px;
		height: 16px;
	}
	.campaignCmnTit .en{
		font-size: 4.5rem;
	}
	.campaignCmnTit .jp{
		font-size: 1.2rem;
	}
	.campaignCmnTxt{
		font-size: 1.4rem;
		text-align: left;
	}

	/* 企画タイトル
	============================== */
	.campaignTit{
		max-width: 250px;
		margin: 0 auto 20px;
	}

	/* 概要
	============================== */
	.campaignAboutWrapper{
		margin-bottom: 50px;
	}
	/* 投票期間 */
	.period{
		margin-bottom: 30px;
	}
	.periodTit{
		font-size: 1.5rem;
	}
	.periodTxt{
		max-width: 270px;
		padding: 10px 40px;
		height: auto;
		border-radius: 50px;
	}
	/* 概要文 */
	.campaignAbout{
		text-align: left;
	}
	.campaignAboutTit{
		max-width: 350px;
		margin: 0 auto 15px;
	}
	.campaignAboutTxt{
		font-size: 1.4rem;
		line-height: 2.0;
		text-align: justify;
	}

	/* プレゼント内容
	============================== */
	.campaignPresentWrapper{
		margin-bottom: 25px;
	}
	.campaignPresentArea{
		width: 100%;
		padding: 30px 20px;
	}
	.campaignPresentCtsArea{
		flex-direction: column;
		gap: 15px;
		margin-top: 0;
	}
	.campaignPresentTxtArea{
		gap: 10px;
	}
	.campaignPresentTit{
		font-size: 1.6rem;
	}
	.campaignPresentTxt{
		font-size: 1.4rem;
	}
	.campaignPresentTxt span{
		display: inline;
		margin-left: 5px;
		font-size: 1.4rem;
	}
	.campaignPresentImg{
		display: inline-block;
		width: 80%;
		max-width: 200px;
		margin: 0 auto;
	}

	/* 応募の流れ
	============================== */
	/* .campaignFlowWrapper{
		margin-bottom: 50px;
	} */
	.listCampaignFlow{
		flex-direction: column;
		align-items: center;
		gap: 60px;
		margin-bottom: 30px;
	}
	.listCampaignFlow > li{
		width: 100%;
		max-width: 300px;
	}
	.listCampaignFlow > li:nth-of-type(1)::after{
		width:20px;
		height:20px;
		border-top:5px solid var(--colorBlue);
		border-right:5px solid var(--colorBlue);
		top:auto;
		right:50%;
		bottom: -35px;
		transform: translateX(calc(-50% + 20px)) rotate(135deg);
	}
	.listCampaignFlowNum{
		width: 50px;
		height: 50px;
		margin-bottom: -25px;
		font-size: 2.5rem;
	}
	.listCampaignFlowImg{
		padding-top: 35px;
	}
	.listCampaignFlowTxt{
		margin-top: 10px;
	}
	.listCampaignFlowTxt span{
		display: inline;
		margin-left: 5px;
		font-size: 1.4rem;
	}

	/* 注釈 */
	.campaignFlowNotes{
		align-items: start;
	}

	/* 応募規約 */
	.termsWrapper{
		gap: 15px;
		margin-top: 40px;
	}
	.termsCtsArea{
		width: 100%;
	}
	.termsTit{
		width: 130px;
		height: 30px;
		font-size: 1.5rem;
		top: -15px;
	}
	.termsBox{
		height: 400px;
		padding: 30px;
	}
	.termsTxt{
		margin-bottom: 20px;
	}
	/* list */
	.termsList{
		gap: 30px;
	}
	.termsList > li{
		gap: 5px;
	}
	.termsListTit{
		display: flex;
		align-items: center;
		min-height: 20px;
		padding-left: 5px;
		font-size: 1.4rem;
		border-left: 4px solid var(--colorBlue);
	}

	/* みんなの投稿
	============================== */
	.postWrapper{
		margin-bottom: 50px;
	}
	.listPost{
		gap: 10px;
		width: 100%;
	}
	.listPost > li{
		width: calc((100% - 10px)/2);
		border-radius: 10px;
	}


	/*
		footer
	-----------------------------------------------------------------------------------------------*/
	#footerWrapper{
		gap: 15px;
		padding: 25px 20px;
		font-size: 1.3rem;
	}

	/* コンテンツエリア
	============================== */
	[class^="footerCtsArea"]{
		flex-direction: column;
		gap: 15px;
	}

	/* リスト
	============================== */
	.listFooter{
		justify-content: center;
		gap: 10px 30px;
	}

	/* コピーライト
	============================== */
	.copyright{
		font-size: 1.0rem;
	}
}