/* CSS Document */

/*
	base
-----------------------------------------------------------------------------------------------*/
/* 変数 */
:root{
	/* color */
	--c-white:#ffffff;
	--c-yello:#FFC800;
	--c-lightBlue:#66cef1;
	--c-grey:#f2f2f2;
	--c-Hkd:#00bbad;
	--c-lightHkd:#e5f8f7;
	--c-Knt:#ff8561;
	--c-lightKnt:#fff3ef;
	--c-Cub:#7dc019;
	--c-lightCub:#f2f9e8;
	--c-Knk:#ffab00;
	--c-lightKnk:#fff7e5;
	--c-Cgk:#af80b9;
	--c-lightCgk:#f7f2f8;
	--c-Kys:#e57d99;
	--c-lightKys:#fcf2f5;
}

/* ボタン */
.btnArea {
	display: flex;
	justify-content: center;
}
a.btnBase {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	border-radius: 25px;
	padding:11px 33px 11px 13px;
	color: var(--c-white);
	background-color: var(--c-yello);
	margin-bottom: 15px;
}
a.btnBase::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    right: 11px;
}
a.btnBase::after {
	position: absolute;
    content: "";
    width: 8px;
	height: 8px;
	background: url(../images/img_triangleBtn.svg)no-repeat center center / cover;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

/*
	ご当地ソフトをたずねて
-----------------------------------------------------------------------------------------------*/

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

#contents {
	width: 100%;
}

#gotochi {
	margin: 2% 0 0 0;
	font-size: 15px;
	font-family:
		"Yu Gothic",
		"YuGothic",
		"Hiragino Kaku Gothic ProN",
		"MS PGothic",
		sans-serif;
	font-weight: 500;
	overflow: hidden;
}

/* h1 */
.goytochiTit {
	position: relative;
	text-align: center;
	font-family: "Montserrat","Yu Gothic","YuGothic","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--c-lightBlue);
	margin-block: 15px 5px;
	font-optical-sizing: auto;
	font-style: normal;
}

.goytochiTit::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 3px;
	bottom: 14px;
    left: 286px;
	transform: rotate(70deg);
	box-sizing: border-box;
	background: var(--c-lightBlue);
}
.goytochiTit::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 3px;
	bottom: 14px;
    right: 286px;
	transform: rotate(-70deg);
	box-sizing: border-box;
	background: var(--c-lightBlue);
}
@media screen\0 {
	#gotochi {
		font-family: 'Segoe UI', Meiryo, sans-serif;
	}
}
#gotochi img{
	width: 100%;
}



/*
	kv
-----------------------------------------------------------------------------------------------*/
#kv{
	position: relative;
	padding: 38px 40px;
	background-color: var(--c-lightBlue);
	border-radius: 30px;
}
#kv::after {
	position: absolute;
	content: "";
	width: 167px;
	height: 135px;
	background: url(../images/img_top_boat.png)no-repeat center center / cover;
    bottom: -50px;
    left: 60%;
	transform: translateX(-50%);
	transform-origin: center center;
    animation: sway 1.6s ease-in-out infinite alternate;
}


/* タイトルとテキスト
============================== */
.mainTxtBox {
	position: absolute;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
}
.kvTit {
	width: 500px;
	margin-bottom: 23px;
}
.kvMainTxt {
	margin-left: 20px;
}
.kvMainTxt .txt {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1;
	color: var(--c-lightBlue);
	background-color: #fff;
	margin-bottom: 10px;
	padding: 7px 7px;
	border-radius: 5px;
	width: fit-content;
}

/* 都道府県箱とマップ
============================== */
.placeMapBox {
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* 都道府県箱
============================== */
[class^="placeBox"] {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 222px;
	gap: 25px;
	z-index: 1;
}
.placeBox01::before {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    background: url(../images/deco_top_dotCircle.svg) no-repeat center center / cover;
    top: -30px;
    left: -86px;
}
.placeBox01::after {
    position: absolute;
    content: "";
    width: 68px;
    height: 68px;
    background: url(../images/deco_top_NormalCircle.svg) no-repeat center center / cover;
    bottom: -25px;
    right: -37px;
	z-index: -1;
}
.placeBox02::before {
    position: absolute;
    content: "";
    width: 77px;
    height: 77px;
    background: url(../images/deco_top_dotCircleS.svg) no-repeat center center / cover;
    top: -29px;
    right: -17px;
}
.placeBox02 .Kinki .Wakayama .PrefTxt {
	letter-spacing: -.5px;
}
.placeBox02 .Kinki .Wakayama .deco {
	left: -12px;
}

/* 各都道府県箱
============================== */
.regionArea {
	display: flex;
	justify-content: center;
    padding-block: 60px 20px;
	background: var(--c-white);
	border-radius: 6px;
	max-width: 230px;
	gap: 8px;
}
.softpic {
	position: relative;
	z-index: 1;
}

/* 各地のソフトクリーム画像
============================== */
/* 共通 */
[class^="softpic"]::before {
	position: absolute;
	content: "";
	width: 85px;
	height: 100px;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
/* 各地 */
.regionArea .Sapporo .softpic::before {
	background: url(../images/pic_top_soft01Hkd.png)no-repeat center center / cover;
}
.regionArea .Akita .softpic::before {
	background: url(../images/pic_top_soft01Akt.png)no-repeat center center / cover;
	top: -12px;
}
.regionArea .Saitama .softpic::before {
	background: url(../images/pic_top_soft02Sitm.png)no-repeat center center / cover;
}
.regionArea .Ibaraki .softpic::before {
	background: url(../images/pic_top_soft02Ibrk.png)no-repeat center center / cover;
	top: -12px;
}
.regionArea .Yamanashi .softpic::before {
	background: url(../images/pic_top_soft03Ymns.png)no-repeat center center / cover;
}
.regionArea .Gihu .softpic::before {
	background: url(../images/pic_top_soft03Gf.png)no-repeat center center / cover;
}
.regionArea .Wakayama .softpic::before {
	background: url(../images/pic_top_soft04Wkym.png)no-repeat center center / cover;
	top: -13px;
}
.regionArea .Hyogo .softpic::before {
	background: url(../images/pic_top_soft04Hyg.png)no-repeat center center / cover;
}
.regionArea .Okayama .softpic::before {
	background: url(../images/pic_top_soft05Okym.png)no-repeat center center / cover;
}
.regionArea .Toxtutori .softpic::before {
	background: url(../images/pic_top_soft05Ttr.png)no-repeat center center / cover;
}
.regionArea .Hukuoka .softpic::before {
	background: url(../images/pic_top_soft06Fkok.png)no-repeat center center / cover;
}
.regionArea .Okinawa .softpic::before {
	background: url(../images/pic_top_soft06Oknw.png)no-repeat center center / cover;
}


/* 各地のソフトクリーム画像の背景正円
============================== */
/* 共通 */
.softpic .regionSoft {
	font-size: 92px;
	line-height: 1;
	color: var(--c-lightHkd);
}
/* 各地 */
.Kanto .softpic .regionSoft {
	color: var(--c-lightKnt);
}
.Chubu .softpic .regionSoft {
	color: var(--c-lightCub);
}
.Kinki .softpic .regionSoft {
	color: var(--c-lightKnk);
}
.ChugokuShikoku .softpic .regionSoft {
	color: var(--c-lightCgk);
}
.KyushuOkinawa .softpic .regionSoft {
	color: var(--c-lightKys);
}


/* 地方名
============================== */
.MainRegionArea {
	position: relative;
	top: 0px;
	left: 0px;
	cursor: pointer;
}

/* 地方名 共通 */
.regionTit {
	position: absolute;
	display: inline-block;
	padding: 7px 16px 6px 15px;
	color: var(--c-white);
	background: var(--c-Hkd);
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	top: 12px;
    left: -8px;
}
/* 地方名 各地 */
.Kanto .regionTit {
	background: var(--c-Knt);
}
.Chubu .regionTit {
	background: var(--c-Cub);
}
.Kinki .regionTit {
	background: var(--c-Knk);
}
.ChugokuShikoku .regionTit {
	background: var(--c-Cgk);
}
.KyushuOkinawa .regionTit {
	background: var(--c-Kys);
}


/* 各エリア箱 左側の折り返し 共通 */
.regionTit::before {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 8px solid var(--c-Hkd);
    content: "";
}
/*  各地 */
.Kanto .regionTit::before {
	border-right: 8px solid var(--c-Knt);
}
.Chubu .regionTit::before {
	border-right: 8px solid var(--c-Cub);
}
.Kinki .regionTit::before {
	border-right: 8px solid var(--c-Knk);
}
.ChugokuShikoku .regionTit::before {
	border-right: 8px solid var(--c-Cgk);
}
.KyushuOkinawa .regionTit::before {
	border-right: 8px solid var(--c-Kys);
}

/* 各エリア箱 右側の切込み三角形 */
.regionTit::after {
    position: absolute;
	content: "";
    width: 0;
    height: 0;
	border-top: 17px solid transparent;
	border-bottom: 17px solid transparent;
	border-right: 5px solid var(--c-white);
	top: 50%;
    right: -0.5px;
	transform: translateY(-50%);
}

.regionTit span {
	font-size: 11px;
	padding-left: 3px;
}

/* 各地
============================== */
.PrefTxt {
	font-size: 12px;
	font-weight: 600;
	color: var(--c-white);
}

.regionNameArea {
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

/* 各地デコレーション円 共通 */
.regionNameArea .deco {
	position: absolute;
    font-size: 28px;
    letter-spacing: -14px;
    color: var(--c-Hkd);
	top: 50%;
    left: -15px;
	transform: translateY(-50%);
    z-index: -1;
}
/* 各地デコレーション円 各地 */
.Kanto .regionNameArea .deco {
	color: var(--c-Knt);
}
.Chubu .regionNameArea .deco {
	color: var(--c-Cub);
}
.Kinki .regionNameArea .deco {
	color: var(--c-Knk);
}
.ChugokuShikoku .regionNameArea .deco {
	color: var(--c-Cgk);
}
.KyushuOkinawa .regionNameArea .deco {
	color: var(--c-Kys);
}

/* 地図
============================== */
.map {
	position: relative;
}
.map::before {
    position: absolute;
    content: "";
    width: 83px;
    height: 35px;
    background: url(../images/deco_top_Wave2.svg) no-repeat center center / cover;
    bottom: 227px;
    left: -73px;
}
.map::after {
    position: absolute;
    content: "";
    width: 91px;
    height: 75px;
    background: url(../images/deco_top_Wave4.svg) no-repeat center center / cover;
    bottom: -25px;
    right: -8px;
}

/* ピン
============================== */
/* ピン 共通 */
.marker{
	position: absolute;
	width: 23px;
	height: 28px;
	transition: 0.3s;
	z-index: 1;
}
/* ピン 各地 */
.mark_Sapporo {
	bottom: 250px;
    left: 329px;
}
.mark_Kanto {
	bottom: 126px;
    left: 321px;
}
.mark_Chubu {
    bottom: 119px;
    left: 256px;
}
.mark_Kinki {
    bottom: 70px;
    left: 204px;
}
.mark_Chugoku {
    bottom: 87px;
    left: 124px;
}
.mark_Kyushu {
    bottom: 84px;
    left: 33px;
}

/* ピン 共通 */
.map [class*="mark_"] span::before {
	content: "";
	position: absolute;
	width: 23px;
	height: 28px;
	background: url(../images/img_top_markerHkid.svg)no-repeat center center / contain;
}
.marker.is-active {
	transform: scale(1.4);
}
/* ピン 各地 */
.map .mark_Kanto span::before {
	background: url(../images/img_top_markerKnt.svg)no-repeat center center / contain;
}
.map .mark_Chubu span::before {
	background: url(../images/img_top_markerCub.svg)no-repeat center center / contain;
}
.map .mark_Kinki span::before {
	background: url(../images/img_top_markerKnk.svg)no-repeat center center / contain;
}
.map .mark_Chugoku span::before {
	background: url(../images/img_top_markerCugk.svg)no-repeat center center / contain;
}
.map .mark_Kyushu span::before {
	background: url(../images/img_top_markerKusu.svg)no-repeat center center / contain;
}

/* ホバー時ピン 共通 */
.map [class*="mark_"].is-active span::before {
	content: "";
	position: absolute;
	width: 23px;
	height: 28px;
	background: url(../images/img_top_markerHkid_Dark.svg)no-repeat center center / contain;
}
/* ホバー時ピン 各地 */
.map .mark_Kanto.is-active span::before {
	background: url(../images/img_top_markerKnt_Dark.svg)no-repeat center center / contain;
}
.map .mark_Chubu.is-active span::before {
	background: url(../images/img_top_markerCub_Dark.svg)no-repeat center center / contain;
}
.map .mark_Kinki.is-active span::before {
	background: url(../images/img_top_markerKnk_Dark.svg)no-repeat center center / contain;
}
.map .mark_Chugoku.is-active span::before {
	background: url(../images/img_top_markerCugk_Dark.svg)no-repeat center center / contain;
}
.map .mark_Kyushu.is-active span::before {
	background: url(../images/img_top_markerKusu_Dark.svg)no-repeat center center / contain;
}


/*
	about
-----------------------------------------------------------------------------------------------*/
.about {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
	margin-block: -23px 50px;
}

.aboutMainTxt {
	margin-top: 70px;
}

.aboutMainTxt .txt {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .8px;
    line-height: 1.8;
	margin-top: -10px;
}
#gotochi .about .aboutSlide img {
    width: 300px;
    height: auto;
}

/* 画像スライダー領域 */
.aboutSlide {
	position: relative;
	width: 300px;
	height: 215px;
	overflow: hidden;
	border-radius: 12px;
}

/* アニメーション画像の基本設定 */
.aboutSlide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: fade 16s infinite;
}

/* 各画像の切り替えタイミング */
.aboutSlide img:nth-child(1) { animation-delay: 0s; }
.aboutSlide img:nth-child(2) { animation-delay: 4s; }
.aboutSlide img:nth-child(3) { animation-delay: 8s; }
.aboutSlide img:nth-child(4) { animation-delay: 12s; }



/******************* BACKNUMBER **********************/
.backNumberOut{
	vertical-align: middle;
}
.bnTitArea {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.titBackNumber {
	font-family: "Montserrat","Yu Gothic","YuGothic","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 3px;
	margin-top: 5px;
}
.titBackNumber::before{
	content: '';
	display: inline-block;
	width: 33px;
	height: 33px;
	margin-right: 20px;
	background-image: url(../images/ico_top01.png) ;
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
}
.titBackNumberJ {
	font-size: 14px;
	font-family:
		"Yu Gothic",
		"YuGothic",
		"Hiragino Kaku Gothic ProN",
		"MS PGothic",
		sans-serif;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.5;
}
.titBackNumberJ::before {
    content: ' ';
	display: inline-block;
    width: 2px;
	height: 18px;
	margin: -5px 23px 0;
    background: #999;
	vertical-align: middle;
}
.yearBox{
	padding: 20px 20px 0 20px;
	margin-bottom: 20px;
}
.titYear{
	margin-bottom: 10px;
	padding: 8px;
	color: #FFF;
	font-size: 18px;
}
.titYear span {
    font-size: 15px;
    color: #fff;
    margin-left: 5px;
}

/*******::::::::::::Color:::::::::::::*******/
/* 共通  */
[class*="titcolorBl"] {
	background-color: var(--c-Hkd);
	font-weight: 600;
	border-radius: 6px;
}
/* 地方ごと  */
.titcolorBlKanto {
	background-color: var(--c-Knt);
}
.titcolorBlChubu {
	background-color: var(--c-Cub);
}
.titcolorBlKinki {
	background-color: var(--c-Knk);
}
.titcolorBlChugoku {
	background-color: var(--c-Cgk);
}
.titcolorBlKyushu {
	background-color: var(--c-Kys);
}

/* 共通  */
[class*="bgcolorBl"] {
	background-color: var(--c-lightHkd);
	border-radius: 12px;
}
/* 地方ごと  */
.bgcolorBlKanto {
	background-color: var(--c-lightKnt);
}
.bgcolorBlKanto {
	background-color: var(--c-lightKnt);
}
.bgcolorBlChubu {
	background-color: var(--c-lightCub);
}
.bgcolorBlKinki {
	background-color: var(--c-lightKnk);
}
.bgcolorBlChugoku {
	background-color: var(--c-lightCgk);
}
.bgcolorBlKyushu {
	background-color: var(--c-lightKys);
}

/*******::::::::::::Color:::::::::::::*******/
.backNumberList{
	display: flex;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -2.8%;
}
.backNumberList li{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 23.3%;
	margin-right: 14px;
	margin-bottom: 15px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.titNember{
	z-index: 100;
	position: absolute;
	top: 15px;
	left: -5px;
	padding: 6px;
	color: #fff;
	font-size: 14px;
	background: #F89301
}
.titNember::before{
	content: ' ';
	display: inline-block;
    position:absolute;
	top: -6px;
	left: -5px;
	width: 5px;
	border-top: 6px solid transparent;
	border-right: 7px solid #C46D05;
	vertical-align: middle;
	
}

/*バックナンバー 一覧*/
.backNumberList figure{
	overflow: hidden;
	width: 100%;
	-moz-border-radius: 6px 6px 0 0;
	-webkit-border-radius: 6px 6px 0 0;
	border-radius: 6px;
}
.backNumberList figure img {
	display: block;
	width: 100%;
	transition: transform 0.3s ease;
}
.backNumberList figure img:hover {
	transform: scale(1.1);
}


/* 共通  */
[class*="titBNarticle"] {
	padding: 5px 0;
	font-size: 17px;
	font-weight: bold;
	color: var(--c-Hkd);
	box-sizing: border-box;
}
/* 地方ごと  */
.titBNarticleKanto {
	color: var(--c-Knt);
}
.titBNarticleChubu {
	color: var(--c-Cub);
}
.titBNarticleKinki {
	color: var(--c-Knk);
}
.titBNarticleChugoku {
	color: var(--c-Cgk);
}
.titBNarticleKyushu {
	color: var(--c-Kys);
}

/* 共通  */
[class*="txtBNarticle"]{
	position: relative;
    padding: 0 0 5px 20px;
	font-size: 14px;
	box-sizing: border-box;
}
[class*="txtBNarticle"]::before {
	position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: url(../images/img_triangleHkd.svg) no-repeat center center / cover;
    top:37%;
    left: 5px;
    transform: translateY(-50%);
}
/* 地方ごと  */
.txtBNarticleKanto::before {
	background: url(../images/img_triangleKnt.svg) no-repeat center center / cover;
}
.txtBNarticleChubu::before {
	background: url(../images/img_triangleCub.svg) no-repeat center center / cover;
}
.txtBNarticleKinki::before {
	background: url(../images/img_triangleKnk.svg) no-repeat center center / cover;
}
.txtBNarticleChugoku::before {
	background: url(../images/img_triangleCugk.svg) no-repeat center center / cover;
}
.txtBNarticleKyushu::before {
	background: url(../images/img_triangleKusyu.svg) no-repeat center center / cover;
}

@media all and (-ms-high-contrast: none)  /* IE10以上 */
{
  .txtBNarticle{
	width: 92%;
		}
}

@media screen and (max-width: 640px)  {

	/*
	base
	-----------------------------------------------------------------------------------------------*/
	/* ボタン */
	a.btnBase {
		margin-bottom: 11px;
	}
	/* h1 */
	.goytochiTit {
		font-size: 16px;
		letter-spacing: 1.5px;
        margin: 20px auto 4px auto;
        max-width: 365px;
    }
	.goytochiTit::before {
		width: 16px;
        height: 3px;
        bottom: 11px;
        left: 15px;

	}
	.goytochiTit::after {
        width: 16px;
        height: 3px;
        bottom: 11px;
        right: 16px;
	}

	/*
	kv
	-----------------------------------------------------------------------------------------------*/
	#kv{
        padding: 25px 10px;
		border-radius: 15px;
	}
	#kv::after {
		position: static;
	}

	/* タイトルとテキスト
	============================== */
	.mainTxtBox {
		top: 13px;
	}
	.kvTit {
		width: 350px;
	}
	.kvMainTxt {
		margin-left: 20px;
	}
	.kvMainTxt .txt {
		font-size: 15px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 1;
		color: var(--c-lightBlue);
		background-color: #fff;
		margin-bottom: 10px;
		padding: 7px 7px;
		border-radius: 5px;
		width: fit-content;
	}
	.mainTxtBox .decoMap {
		position: absolute;
        top: 100px;
        right: 0px;
	}

	/* 都道府県箱とマップ
	============================== */
	.placeMapBox {
		justify-content: center;
		align-items: center;
		margin-top: 195px;
		gap: 10px;
	}

	/* 都道府県箱
	============================== */
	[class^="placeBox"] {
		width: 160px;
		gap: 10px;
	}
	.placeBox01::before {
        top: 240px;
        left: -82px;
	}
	.placeBox01::after {
		bottom: -45px;
        right: -217px;
	}
	.placeBox02::before {
		position: absolute;
		content: "";
		width: 77px;
		height: 77px;
		background: url(../images/deco_top_dotCircleS.svg) no-repeat center center / cover;
		top: -32px;
        right: -60px;
	}
	.placeBox02 .Kinki .Wakayama .PrefTxt {
		letter-spacing: -.9px;
	}
	.placeBox02 .Kinki .Wakayama .deco {
		left: -8px;
	}

	/* 各都道府県箱
	============================== */
	.regionArea {
        padding-block: 44px 17px;
		max-width: 160px;
		gap: 0px;
		background: rgba(255, 255, 255, 0.7);
	}
	.regionTit::after {
		position: static;
		border-top: 0px;
		border-bottom: 0px;
		border-right: 0px;
	}
	.softpic {
		position: relative;
		z-index: 1;
	}
	.regionNameArea .deco {
		top: 40%;
	}

	/* 各地のソフトクリーム画像
	============================== */
	/* 共通 */
	[class^="softpic"]::before {
        width: 50px;
        height: 80px;
        top: -16px;
	}

	/* 各地のソフトクリーム画像の背景正円
	============================== */
	/* 共通 */
	.softpic .regionSoft {
		font-size: 73px;
		line-height: 1;
		color: var(--c-lightHkd);
	}
	/* 各地 */
	.Kanto .softpic .regionSoft {
		color: var(--c-lightKnt);
	}
	.Chubu .softpic .regionSoft {
		color: var(--c-lightCub);
	}
	.Kinki .softpic .regionSoft {
		color: var(--c-lightKnk);
	}
	.ChugokuShikoku .softpic .regionSoft {
		color: var(--c-lightCgk);
	}
	.KyushuOkinawa .softpic .regionSoft {
		color: var(--c-lightKys);
	}

	/* 地方名
	============================== */
	.MainRegionArea {
		position: relative;
		top: 0px;
		left: 0px;
	}

	/* 地方名 共通 */
	.regionTit {
        padding: 4px 7px 3px 10px;
        font-size: 13px;
        left: -4px;
	}
	/* 地方名 各地 */
	.Kanto .regionTit {
		background: var(--c-Knt);
	}
	.Chubu .regionTit {
		background: var(--c-Cub);
	}
	.Kinki .regionTit {
		background: var(--c-Knk);
	}
	.ChugokuShikoku .regionTit {
		background: var(--c-Cgk);
	}
	.KyushuOkinawa .regionTit {
		background: var(--c-Kys);
	}


	/* 各エリア箱 左側の折り返し 共通 */
	.regionTit::before {
		position: absolute;
		bottom: 100%;
		left: 0;
		width: 0;
		height: 0;
		border-top: 4px solid transparent;
		border-right: 4px solid var(--c-Hkd);
		content: "";
	}
	/*  各地 */
	.Kanto .regionTit::before {
		border-right: 4px solid var(--c-Knt);
	}
	.Chubu .regionTit::before {
		border-right: 4px solid var(--c-Cub);
	}
	.Kinki .regionTit::before {
		border-right: 4px solid var(--c-Knk);
	}
	.ChugokuShikoku .regionTit::before {
		border-right: 4px solid var(--c-Cgk);
	}
	.KyushuOkinawa .regionTit::before {
		border-right: 4px solid var(--c-Kys);
	}

	/* 各地
	============================== */
	.PrefTxt {
		font-size: 10px;
	}

	.regionNameArea {
		position: absolute;
		bottom: -5px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 2;
	}

	/* 各地デコレーション円 共通 */
	.regionNameArea .deco {
        font-size: 24px;
        left: -11px;
	}

	/* 地図
	============================== */
	.map {
		display: none;
	}

	/*
		about
	-----------------------------------------------------------------------------------------------*/
	.about {
		margin-block: -30px 40px;
	}

	.aboutMainTxt {
		margin-top: 40px;
	}

	.aboutMainTxt .txt {
		font-size: 15px;
		letter-spacing: 0px;
		line-height: 1.6;
		text-align: justify;
	}

	/* 画像スライダー領域 */
	.aboutSlide {
		display: none;
	}

	/******************* BACKNUMBER **********************/
	.titBackNumber{
		font-size: 25px;
		letter-spacing: 2px;
		margin-top: 4px;
	}
	h3.titBackNumber.sp{
		white-space: nowrap;
	}
	.titBackNumber::before{
		margin-right: 2%;
	}
	.titBackNumberJ{
		font-size: 16px;
        margin-left: 6px;
	}
	.titBackNumber.sp span.titBackNumberJ {
		display: inline-block;
	}
	.titBackNumberJ::before{
		    display: none;
	}
	.yearBox{
		padding: 10px;
	}
	
	.titYear{
		margin: 2% auto 10px;
	}
	.backNumberList{
		display: block;
		margin-right: 0%;
	}
	.titNember{
		top: 10%;
		left: -7px;
		font-size: 20px;
	}
	.titNember:before{
		top: -4px;
		border-top: 4px solid transparent;
		border-right: 10px solid #C46D05;
	}
	.backNumberList li{
		display: flex;
		width: 100%;
		height: auto;
		margin-right: 0;
		margin-bottom: 3%;
		padding: 0;
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: row;
	}
	.backNumberList li a{
		width: 40%;
	}
	.backNumberList figure{
		width: fit-content;
		height: 100%;
		position: relative;
		overflow: hidden;
		-moz-border-radius: 10px 0 0 10px;
		-webkit-border-radius: 10px 0 0 10px;
		border-radius: 10px 0 0 10px;
	}
	.backNumberList figure img{
		height: 100%;
		 object-fit: cover;
	}
	.txtBnArea{
        width: 60%;
		padding: 3%;
		background: var(--c-white);
		border-radius: 0 10px 10px 0;
	}
	/* 共通  */
	[class*="titBNarticle"] {
        padding: 0 0 5px;
	}

}


	/*　

	-----------------------------------------------------------------------------------------------*/
	#sideWrap {
		display: none;
	}
	@media screen and (max-width: 768px)   {
		#sideWrap {
			display: block;
		}
	}