     
@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');html{
	font-size: 62.5%;
	overflow-x: hidden;
}
body{
	color: #312409;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.8rem;
	font-feature-settings: "palt";
	line-height: 1.8;
	box-sizing: border-box;
	overflow: hidden;
}
a{
	color: #312409;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	opacity: 0.7;
	cursor: pointer;
}
img{
	width: 100%;
}
.txtlink a:hover{
	opacity: 0.7;
}
.nosp{
	display: block;
}
.nopc{
	display: none;
}
@media screen and (max-width:500px) {
	.nosp{
		display: none;
	}
	.nopc{
		display: block;
	}
}
.mb40{
	margin-bottom: 4rem;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.wrapper{
	width:100%;
	margin: 0 auto;
	background: #fff;
}
.inner{
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.inner{
		max-width: 100%;
		padding: 0 4rem;
		margin: 0 auto;
	}
}
@media screen and (max-width: 820px) {
	.inner{
		padding: 0 2rem;
	}
}




/*--------------
  共通パーツ
----------------*/
section{
	padding-bottom: 10rem;
}
.overview{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 7rem;
}
.overview .img_area{
	width: 40%;
}
.overview .img_area img{
	width: 100%;
}
.overview .txt_area{
	width: 55%;
	text-align: justify;
}
.reverse{
	flex-direction: row-reverse;
}
.big_img{
	margin: 0 auto 5rem;
	width: 100%;
}
.big_img img{
	margin: 0 auto;
	width: 100%;
}

@media screen and (max-width:500px) {
	.overview{
		display: block;
	}
	.overview .img_area{
		width: 100%;
		margin: 0 auto 1rem;
	}
	.overview .img_area img{
		width: 100%;
	}
	.overview .txt_area{
		width: 100%;
		margin: 0 auto 2rem;
	}
	.big_img{
		margin: 4rem auto;
	}

}


/*--------------
   テキスト関係
----------------*/
.txt_s{
	font-size: 1.6rem;
	font-weight: 400;
	margin-bottom: 1rem;
	text-align: center;
}
.txt_m{
	font-size: 2.2rem;
}
.txt_center{
	text-align: center;
}
.pinkTxt{
	color:#F1A2BE;
	font-weight: 500;
}
.yTxt, .yTxt_big{
	color: #FFF000;
}
.yTxt_big{
	font-size: 3.4rem;
	-webkit-text-emphasis: dot #FFF000;
	text-emphasis: dot #FFF000;
}
.line{
	position: relative;
	padding-bottom: 2rem;
}
.line::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	border: 1px solid #fff;
}
ul {
	margin: 0;
	padding-left: 10px;
}

ul li{
	margin-bottom: 5px;
}
	
ul li::before{
	content: "⚫︎";
	color: #FF6CA0;
	font-size: 0.6em; 
	margin-right: 1em; 
}
.head3_1 {
	font-size: 2.4rem;
	margin-bottom: 4rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
  	font-style: normal;
	text-align: center;
	font-weight: bold;
	color: #312409;
	position: relative;
}
.head3_1::after {
	content: '';
	display: block;
	width: 50px;
	height: 4px;
	background: #59C2E1;
	margin: .5rem auto 0;
}


@media screen and (max-width: 1024px){
	.head3_1{
		font-size: 3.2rem;
		margin: 0 auto 2.5rem;
	}
	.head4_1{
		font-size: 2.8rem;
		margin-bottom: 2rem;
	}
	.yTxt_big{
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 820px) {
	.txt_s{
		font-size: 1.5rem
	}
	.head3_1{
		font-size: 2.8rem;
		margin: 0 auto 2.5rem;
	}
	.head4_1{
		font-size: 2.6rem;
		margin-bottom: 2rem;
	}
}
@media screen and (max-width:500px) {
	.head3_1{
		font-size: 2.4rem;
		margin-bottom: 2rem;
	}
	.head4_1{
		font-size: 2.2rem;
	}
	.line{
		padding-bottom: 1rem;
	}
	.line::after{
		content: '';
		position: absolute;
		bottom: 0;
		right: 0;
		width: 100%;
		border: 1px solid #fff;
	}
}

/*--------------
   ボタン
----------------*/
.btn_01{
	max-width: 600px;
	margin: 0 auto;
}
.btn_01 a{
	margin: 0 auto;
	height: auto;
	background: #F1A2BE;
	padding:  2.5rem 4rem ;
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	text-align: center;
	color: #fff;
	font-weight: 500;
	border-radius: 100px;
	display: block;
	position: relative;
}
.btn_01 a::after{
	right: 30px;
	top: 32px;
	width: 24px;
	height: 25px;
	position: absolute;
	content: '';
	background: url(../images/arrow.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.btn_01 a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 1024px){
	.btn_01{
		max-width: 400px;
	}
	.btn_01 a{
		padding:  2.5rem 0 ;
		font-size: 1.8rem;
		margin: 0 auto;
	}
	.btn_01 a::after{
		right: 10px;
		top: 33px;
		width: 18px;
		height: 18px;
	}
}
@media screen and (max-width:500px) {
	.btn_01{
		max-width: 100%;
	}
	.btn_01 a{
		margin: 3rem auto 0;
		padding:  2rem ;
		font-size: 1.8rem;
	}
	.btn_01 a::after{
		right: 10px;
		top: 28px;
		width: 17px;
		height: 17px;
	}
}

#mainVisual{
	background: url(../images/bg_pc.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0;
	width: 100%;
	min-height: 950px;
	max-height: 1200px;
	height: 110vh;
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-style: normal;
	font-weight: 600;
	color: #fff;
}

#mainVisual h1{
	font-size: 5.4rem;
	padding-top: 5rem;
	font-weight: bold;
	text-align: center;
	display: block;
}

#mainVisual h1 img{
	max-width: 800px;
	margin: 4rem auto 2rem;
	display: block;
}
.mv_ttl{
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 2rem;
	line-height: 1.5;
}
.mv_txt{
	text-align: center;
	font-size: 2.2rem;
	position: relative;
}
.mv_txt::after{
	position: absolute;
	content: '';
	background: url(../images/img_02.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 220px;
	height: 220px;
	bottom: -200px;
	right: 0;
}
.date{
	max-width: 700px;
	margin: 1rem auto 8rem;
}
@media screen and (max-width: 1500px){
	.mv_txt::after{
		bottom: -180px;
		right: 0;
	}
}

@media screen and (max-width: 1024px){
	#mainVisual{
		background: url(../images/bg_pc.png);
		background-size: contain;
		background-repeat: no-repeat;
		padding: 0;
		width: 100%;
		min-height: 200px;
		max-height: 800px;
		height: 50vh;
	}
	#mainVisual h1{
		font-size: 3.4rem;
		padding-top: 2rem;
	}
	#mainVisual h1 img{
		max-width: 350px;
		margin: 1rem auto 1rem;
	}
	.mv_ttl{
		font-size: 2.2rem;
		margin-bottom: 1.5rem;
	}
	.mv_txt{
		text-align: center;
		font-size: 2rem;
	}
	.mv_txt::after{
		width: 180px;
		height: 180px;
		bottom: -120px;
		right: 30px;
	}
	.date{
		max-width: 700px;
		margin: -9rem auto 8rem;
	}
}
@media screen and (max-width: 820px){
	#mainVisual h1{
		font-size: 3rem;
		padding-top: 2rem;
		line-height: 1.3;
	}
	#mainVisual h1 img{
		max-width: 350px;
		margin: 1rem auto 1rem;
	}
	.mv_ttl{
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}
	.mv_txt{
		font-size: 1.6rem;
	}
	.mv_txt::after{
		width: 130px;
		height: 130px;
		bottom: -70px;
	}
	.date{
		max-width: 600px;
		margin: -12rem auto 8rem;
	}
}
@media screen and (max-width: 800px){
	#mainVisual{
		background-size: cover;
		background-position: top center;
	}
	.mv_txt::after{
		width: 150px;
		height: 150px;
		bottom: -110px;
		right: -10px;
	}
	.date{
		max-width: 700px;
		margin: 2rem auto 8rem;
	}
}
@media screen and (max-width: 500px){
	#mainVisual{
		background: url(../images/bg_sp.png);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center top;
		padding: 0;
		width: 100%;
		height: 80vh;
		max-height: 2000px;
		margin-top: -2rem;
	}
	#mainVisual .inner{
		padding-top: 2rem;
	}

	#mainVisual h1 img{
		max-width: 100%;
		margin: 3rem auto;
	}
	.mv_ttl,.mv_txt{
		text-align: left;
	}
	.mv_txt::after{
		width: 150px;
		height: 150px;
		bottom: -150px;
		right: -10px;
	}
	.date{
		max-width: 100%;
        padding: 0 2rem;
        margin: 5rem auto 8rem;
	}
}
@media screen and (max-width: 380px){
	#mainVisual{
		height: 100vh;
		margin-top: -2rem;
	}
	#mainVisual h1 img{
		margin: 1rem auto;
	}
	.mv_ttl,.mv_txt{
		text-align: left;
	}
	.mv_txt::after{
		width: 130px;
		height: 130px;
		bottom: -140px;
	}
	.date{
        margin: 1rem auto 8rem;
	}
}
.headArea h2 img{
	width: 100%;
	height: 105px;
	margin: 0 auto 3rem;
}
.headArea p{
	font-size: 1.6rem;
	margin-bottom: 5rem;
	font-weight: bold;
	text-align: center;
}
.prizeList {
	width: 100%;
	margin: 0 auto 5rem;
	font-size: 1.8rem;
	font-weight: bold;
}
.prizeItem {
	border-radius: 5px;
	margin-bottom: 2rem;
	display: flex;
	border: 1px solid #59C2E1;
}
.prizeItem_label {
	padding: .5rem 2rem;
	min-width: 220px;
	border-radius: 4px 0 0 4px;
	background-color: #59C2E1;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
}
.prizeItem_txt {
	padding: .5rem 2rem;
	box-sizing: border-box;
}
.prizeItem_txt .txt_s{
	margin-left: 1rem;
}

@media screen and (max-width: 820px){
	.headArea h2 img{
		height: 85px;
	}
	.headArea p{
		margin-bottom: 3rem;
	}
	.prizeItem {
		border-radius: 5px;
		margin-bottom: 2rem;
		display: flex;
		border: 1px solid #59C2E1;
	}
	.prizeItem_label {
		padding: .5rem 1rem;
		min-width: 170px;
	}
}
@media screen and (max-width:500px){
	.headArea h2 img{
		height: 70px;
	}
	.prizeItem {
		font-size: 1.6rem;
	}
	.prizeItem_label {
		padding: .5rem 0;
		min-width: 120px;
	}
	.prizeItem_txt {
		padding: .5rem 1rem;
	}

}
.regionCont{
	margin-bottom: 6rem;
}
.regionCont:last-of-type{
	margin-bottom: 0;
}
.city_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 40px;
}
.cityItem {
	background-size: 7px 1px;
	background-image: linear-gradient(to right, #D4D1CA 3px, transparent 3px);
	background-repeat: repeat-x;
	background-position: left bottom;
	padding-bottom: 5px;
	line-height: 1;
}
.city_grid .cityItem:first-of-type,.city_grid .cityItem:nth-of-type(2)  {
	background-size: 7px 1px;
	background-image:  linear-gradient(to right, #D4D1CA 3px, transparent 3px),
    linear-gradient(to right, #D4D1CA 3px, transparent 3px);
	background-repeat: repeat-x;
	background-position: top left, bottom left;
	padding-bottom: 5px;
	line-height: 1;
}
.cityItem dl {
	margin: 0;
	padding: 2rem .8rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.city_link {
	text-decoration: none;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.city_info {
	display: flex;
	align-items: center;
	flex: 1;
}

.cityItem dt {
	font-weight: bold;
	margin-right: 1rem;
	min-width: 70px;
	font-size: 1.5rem;
}

.cityItem dd {
	font-size: 1.5rem;
	position: relative;
}
.cityItem dd::after{
	position: absolute;
	content: '';
	background: url(../images/link.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 13px;
	height: 14px;
	bottom: 0;
	right: -20px;
}

.link_icon {
	width: 12px;
	height: 12px;
	background: url('images/link_svg.svg') no-repeat center;
	background-size: contain;
	flex-shrink: 0;
	margin-left: 5px;
}
@media (max-width: 820px) {
	.city_grid {
		gap:0 20px;
	}
}
@media (max-width:500px) {
	.city_grid {
		grid-template-columns: 1fr;
	}
}

.movieCont{
	position: relative;
	padding-top: 56.25%; /* 16:9 アスペクト比 */
	height: 0;
}
.movieCont iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.cancerCont{
	padding: 5rem;
	padding-bottom: 0;
	background: #fff;
	margin: 8rem auto 0;
	border-radius: 20px;
	border: 1px solid #F1A2BE;
	color: #333;
}
.cancerCont{
	position: relative;
}

.cancerCont::before{
	content: '';
	position: absolute;
	top: -33px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 82px;
	background: url(../images/img_04.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.cancerCont .txtArea{
	margin-bottom: 7rem;
}

.subTtl{
	font-size: 2.2rem;
	padding: .8rem 1.5rem;
	margin: 5rem auto 4rem;
	background:#F4F4F4 ;
	border-radius: 10px;
	text-align: left;
	font-weight: 700;
}
.subTtl .pinkTxt{
	color: #FF6CA0;
	font-weight: 700;
}
.cancerCont .pinkTxt{
	font-size: 2rem;
}
.txtArea p {
	margin-bottom: 2rem;
}
.source {
	font-size: 1.5rem;	
}
.source a{
	color: #AAAAAA;
}
.txtArea .pointTtl {
	margin-bottom: .5rem;
	font-size: 2rem;
	font-weight: 700;
}
.pointTtl .num{
	font-size: 2.4rem;
	padding-right: 1rem;
	color: #59C2E1;
}
.pointItem{
	margin-bottom: 4rem;
}

#contact ul{
	margin-bottom: 4rem;
}
@media screen and (max-width: 820px){
	.cancerCont{
		padding: 5rem 2rem;
		padding-bottom: 0;
	}
	.subTtl,.cancerCont .subTtl .pinkTxt{
		font-size: 2.2rem;
	}
	.cancerCont .pinkTxt{
		font-size: 2rem;
	}
	.txtArea .pointTtl{
		margin-bottom: 1rem;
	}
}
@media screen and (max-width: 500px){
	.cancerCont{
		padding: 5rem 1.5rem;
		padding-bottom: 0;
	}
	.pointTtl{
		display: flex;
		align-items: center;
	}
	.pointTtl .num{
		line-height: 1;
		padding-right: 1.4rem;
	}
}
footer{
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-style: normal;
	font-weight: 600;
	letter-spacing: .1em;
	text-align: center;
	line-height: 1.5;
}
footer .footerCont{
	width: 100%;
	padding: 3rem;
	background: linear-gradient(#f1a2be 0%, #e092ac 100%);
	color: #fff;
}
footer .source{
	padding: 2rem;
	color: #fff;
	background: #F482AA;
	opacity: 0.6;
	line-height: 1;
	width: 100%;
}
footer .source a{
	font-size: 1.6rem;
	color: #fff;
}
.footer_txt{
	font-size: 2.2rem;
}
.footer_ttl{
	font-size: 3rem;
}
@media screen and (max-width: 500px){
	.footer_txt{
		font-size: 1.8rem;
	}
	.footer_ttl{
		font-size: 2.4rem;
	}
}