body {
	background-color: #FFF;
}

/*=========================
ヘッダーロゴ
=========================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #FFF;
	padding: 0.20rem 0.30rem;
	width: 100%;
	min-width: 900px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

@media screen and (max-width: 599px) {
	header {
		min-width: 100%;
		padding: 0.16rem 0.30rem;
		background-color: rgba(255, 255, 255, 0.85);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}

/* ロゴ */
header h1 {
	width: 1.60rem;
}

@media screen and (max-width: 599px) {
	header h1 {
		width: 1.20rem;
		margin: auto;
	}
}

header h1 img {
	width: 100%;
}

/* ナビゲーション */
header .glo_nav .nav_list {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
	header .glo_nav .nav_list {
		padding: 0.40rem;
	}
}

header .glo_nav .nav_list .text {
	margin-left: 0.40rem;
}

@media screen and (max-width: 599px) {
	header .glo_nav .nav_list .text {
		margin-left: 0;
		width: 100%;
		text-align: center;
		margin: 0.15rem 0;
	}
}

header .glo_nav .nav_list .text a {
	color: #111;
	font-size: 0.16rem;
	letter-spacing: 0.10em;
	text-decoration: none;
	position: relative;
}

header .glo_nav .nav_list .text a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

header .glo_nav .nav_list .text a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/*=========================
main
=========================*/
main {
	margin-top: 1.00rem;
}

@media screen and (max-width: 599px) {
	main {
		margin-top: 0.78rem;
	}
}

/*=========================
MV
=========================*/
#mv {
	height: calc(100vh - 1.00rem);
	min-height: 6.00rem;
	max-height: 7.50rem;
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 599px) {
	#mv {
		height: 4.00rem;
		min-height: auto;
		overflow: hidden;
	}
}

#mv .mv_logo_wrap {
	position: absolute;
	width: 6.80rem;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#mv .mv_logo_wrap {
		width: 3.00rem;
	}
}

#mv .deco {
	padding: 0.40rem 0;
}


#mv .present_seal {
	position: absolute;
	width: 2.40rem;
	top: 2.20rem;
	right: 0.60rem;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#mv .present_seal {
		width: calc(100% - 0.40rem);
		top: inherit;
		bottom: -0.40rem;
		right: inherit;
		left: 0.20rem;
	}
}

#mv .scr_btn {
	position: absolute;
	width: 1.10rem;
	bottom: 0.30rem;
	left: 50%;
	transform: translateX(-50%);
}

#mv .scr_btn::before {
	content: "";
	position: absolute;
	left: -0.20rem;
	top: 0.04rem;
	width: 0.13rem;
	height: 0.13rem;
	background-image: url(../img/mv_scr_arrow.png);
	background-repeat: no-repeat;
	background-size: contain;
	animation-duration: 4s;
	animation-name: scr_arrow;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
}

@keyframes scr_arrow {
	0 {
		top: 0.04rem;
	}

	10% {
		top: 0.10rem;
	}

	20% {
		top: 0.04rem;
	}
}


/*==================================
MVのスライダー
==================================*/
#mv .swiper-container {
	position: relative;
	z-index: 0;
	height: 100%;
	overflow: hidden;
}

@media screen and (max-width: 599px) {
	#mv .swiper-container {
		height: 100%;
	}
}

#mv .swiper-container::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

/* アニメーション（徐々に大きく） */
@keyframes zoomUp_left {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.10);
	}
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
	animation: zoomUp_left 10s linear 0s 1 normal both;
}

@media screen and (max-width: 599px) {
	.swiper-slide-prev .slide-img {
		width: auto;
	}
}

/* imgタグだと下に隙間ができるのでblockに。*/
.slide-img,
.slide-img .pc_only,
.slide-img .sp_only {
	height: 100%;
}

.slide-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*=========================
About
=========================*/
#about {
	padding-top: 0.60rem;
	padding-bottom: 1.50rem;
}

@media screen and (max-width: 599px) {
	#about {
		padding-top: 0.40rem;
		padding-bottom: 0.50rem;
	}
}

/* イントロ */
#about .introduction {
	padding-bottom: 2.50rem;
	background-image: url(../img/intro_bg.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: auto 2.50rem;
}

@media screen and (max-width: 599px) {
	#about .introduction {
		padding-bottom: 1.80rem;
		background-size: auto 1.50rem;
	}
}

#about .introduction .sec_title {
	font-size: 0.28rem;
	font-weight: 700;
	line-height: 1.96;
	text-align: center;
	padding-bottom: 0.40rem;
	letter-spacing: 0.10em;
}

@media screen and (max-width: 599px) {
	#about .introduction .sec_title {
		font-size: 0.18rem;
		line-height: 1.76;
		padding-bottom: 0.30rem;
		letter-spacing: 0.05em;
	}
}

#about .introduction .text {
	font-size: 0.18rem;
	line-height: 2;
	letter-spacing: 0.14em;
	text-align: justify;
}

@media screen and (max-width: 599px) {
	#about .introduction .text {
		font-size: 0.15rem;
		line-height: 1.85;
		letter-spacing: 0.075em;
	}
}

#about .introduction .ph_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 0.50rem;
}

#about .introduction .ph_list .ph {
	width: 31.5%;
	overflow: hidden;
	border-radius: 4px;
}

#about .introduction .ph_list .ph img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* 様似町について */
#about .title {
	font-size: 0.28rem;
	text-align: center;
	letter-spacing: 0.12em;
	position: relative;
	padding-top: 1.00rem;
	margin-bottom: 0.50rem;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
	#about .title {
		font-size: 0.22rem;
		margin-bottom: 0.80rem;
	}
}

#about .title span {
	display: block;
	font-size: 0.14rem;
	padding-top: 0.14rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

@media screen and (max-width: 599px) {
	#about .title span {
		font-size: 0.12rem;
	}
}

#about .textbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

@media screen and (max-width: 599px) {
	#about .textbox {
		display: block;
	}
}

#about .textbox .ph_wrap {
	width: 2.80rem;
	height: 2.00rem;
	box-sizing: border-box;
	border: 4px solid #FFF;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	transform: rotate(3deg);
	position: relative;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#about .textbox .ph_wrap {
		width: 2.40rem;
		height: 1.50rem;
	}
}

#about .textbox .ph_wrap::before {
	content: "";
	width: 1.91rem;
	height: 1.69rem;
	background-image: url(../img/about_hokkaido_map.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -1.00rem;
	left: 50%;
	transform: translateX(-50%) rotate(7deg);
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#about .textbox .ph_wrap::before {
		width: 1.20rem;
		height: 1.39rem;
		top: -0.60rem;
	}
}

#about .textbox .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#about .in .lead_text {
	width: calc(100% - 3.10rem);
	font-size: 0.18rem;
	line-height: 2;
	letter-spacing: 0.12em;
	text-align: justify;
}


@media screen and (max-width: 599px) {
	#about .in .lead_text {
		width: 100%;
		font-size: 0.15rem;
		line-height: 1.85;
		letter-spacing: 0.075em;
		padding-top: 0.30rem;
	}
}


/*=========================
返礼品のご案内
=========================*/
#henrei {
	position: relative;
}

@media screen and (max-width: 599px) {
	#henrei {
		padding-bottom: 0.20rem;
	}
}

#henrei .title {
	font-size: 0.28rem;
	text-align: center;
	letter-spacing: 0.12em;
	position: relative;
	margin-bottom: 0.50rem;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
	#henrei .title {
		font-size: 0.22rem;
		margin-bottom: 0.30rem;
	}
}

#henrei .title span {
	display: block;
	font-size: 0.14rem;
	padding-top: 0.14rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}


/* 返礼品アンカーリンク */
.henrei_select_wrap {
	padding: 1.00rem 0;
	background-color: #eaeae2;
}

@media screen and (max-width: 599px) {
	.henrei_select_wrap {
		padding: 0.50rem 0;
	}
}

.henrei_select_wrap .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -0.15rem;
}

@media screen and (max-width: 599px) {
	.henrei_select_wrap .list {
		margin: 0 -0.10rem;
	}
}

.henrei_select_wrap .list .detail {
	width: 33.3%;
	text-align: center;
	margin-bottom: 0.40rem;
}

@media screen and (max-width: 599px) {
	.henrei_select_wrap .list .detail {
		width: 50%;
		margin-bottom: 0.20rem;
	}
}

.henrei_select_wrap .list .detail a {
	display: block;
	color: #111;
	position: relative;
	padding: 0 0.15rem;
}

@media screen and (max-width: 599px) {
	.henrei_select_wrap .list .detail a {
		padding: 0 0.10rem;
	}
}

.henrei_select_wrap .list .detail a:hover {
	text-decoration: none;
}

.henrei_select_wrap .list .detail a .ph_wrap {
	height: 2.00rem;
	overflow: hidden;
	margin: auto;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 599px) {
	.henrei_select_wrap .list .detail a .ph_wrap {
		height: 1.20rem;
	}
}

.henrei_select_wrap .list .detail a .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
	position: relative;
	overflow: hidden;
}

.henrei_select_wrap .list .detail a:hover .ph_wrap img {
	opacity: 0.7;
}

.henrei_select_wrap .list .detail .text {
	width: 2.30rem;
	margin: auto;
	line-height: 0;
	background-color: #000;
	color: #FFF;
	font-size: 0.16rem;
	padding: 0.20rem 0 0.22rem;
	text-align: center;
	position: relative;
	font-weight: 500;
	top: -0.10rem;
	z-index: 2;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
	.henrei_select_wrap .list .detail .text {
		width: 90%;
		font-size: 0.14rem;
		padding: 0.18rem 0 0.20rem;
	}
}

.henrei_select_wrap .list .detail .text::after {
	content: "";
	width: 0.10rem;
	height: 0.07rem;
	background-image: url(../img/henrei_arrow.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.20rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.henrei_select_wrap .list .detail a:hover .text::after {
	top: 60%;
}

/*============================
返礼品個別
============================*/
#henrei {
	padding-bottom: 1.00rem;
}

@media screen and (max-width: 599px) {
#henrei {
	padding-bottom: 0.50rem;
}
}

#henrei .wrap {
	padding-top: 1.00rem;
}

#henrei .wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* 返礼品ボックス */
#henrei .wrap .list .detail {
	margin-bottom: 1.00rem;
	position: relative;
	width: 100%;
}

#henrei .wrap .list .detail .henrei_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	max-width: 12.80rem;
	padding: 0 0.40rem;
	box-sizing: border-box;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .henrei_wrap {
		padding: 0 0.20rem;
	}
}

#henrei .wrap .list .detail:nth-child(even) .henrei_wrap {
	flex-direction: row-reverse;
}

#henrei .wrap .list .detail:nth-child(even) .henrei_wrap.small {
	flex-direction: row;
}

/* 返礼品ボックス（2カラム） */
#henrei .wrap .list .detail .henrei_wrap .col2Box {
	width: 46.66%;
	max-width: 5.60rem;
	padding: 0;
	margin: 0;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .henrei_wrap .col2Box {
		width: 100%;
		margin-bottom: 1.00rem;
	}
	#henrei .wrap .list .detail .henrei_wrap .col2Box:last-child {
		margin-bottom: 0;
	}
}

/* ぼかし背景 */
#henrei .wrap .list .detail::before {
	content: "";
	width: 100%;
	height: 5.00rem;
	position: absolute;
	left: 0;
	top: 0.25rem;
	z-index: -1;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail::before {
		height: 2.50rem;
	}
}

/* ぼかし背景（定期便） */
#henrei .wrap .list .detail.teiki::before {
	height: 3.30rem;
}

/* かに */
#henrei .wrap .list #henrei01.detail::before {
	background-image: url(../img/henrei01_bg.jpg);
}

/* いくら */
#henrei .wrap .list #henrei02.detail::before {
	background-image: url(../img/henrei02_bg.jpg);
}

/* 鮭 */
#henrei .wrap .list #henrei03.detail::before {
	background-image: url(../img/henrei03_bg.jpg);
}

/* 昆布とたこ */
#henrei .wrap .list #henrei04.detail::before {
	background-image: url(../img/henrei04_bg.jpg);
}

/* 定期便 */
#henrei .wrap .list #henrei06.detail::before {
	background-image: url(../img/henrei06_bg.jpg);
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail {
		width: 100%;
	}
}


/* 写真 */
#henrei .wrap .list .detail .ph_wrap {
	width: 100%;
	max-width: 7.00rem;
	box-sizing: border-box;
	margin-bottom: 0.10rem;
	position: relative;
}

/* 写真（定期便） */
#henrei .wrap .list .detail.teiki .ph_wrap {
	max-width: 4.60rem;
}

/* メイン写真 */
#henrei .wrap .list .detail .ph_wrap .main_ph {
	width: 100%;
	height: 4.66rem;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .ph_wrap .main_ph {
		width: calc(100% + 0.20rem);
		height: 59vw;
	}

	#henrei .wrap .list .detail:nth-child(even) .ph_wrap .main_ph {
		left: -0.20rem;
	}
}

/* サブ写真 */
#henrei .wrap .list .detail .ph_wrap .sub_ph {
	width: 2.59rem;
	height: 1.72rem;
	overflow: hidden;
	position: absolute;
	left: -0.40rem;
	bottom: -0.60rem;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .ph_wrap .sub_ph {
		width: 1.50rem;
		height: 27vw;
		left: -0.20rem;
		bottom: -0.50rem;
	}
}

/* メイン写真（2カラム用） */
#henrei .wrap .list .detail .small .col2Box .ph_wrap .main_ph {
	height: 3.73rem;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .small .col2Box .ph_wrap .main_ph {
		width: calc(100% + 0.20rem);
		height: 59vw;
		left: -0.20rem;
	}
	#henrei .wrap .list .detail .small .col2Box:nth-child(even) .ph_wrap .main_ph {
		left:0;
	}
}

/* サブ写真（2カラム用）  */
#henrei .wrap .list .detail .small .col2Box .ph_wrap .sub_ph {
	width: 2.00rem;
	height: 1.33rem;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .small .col2Box .ph_wrap .sub_ph {
		width: 1.50rem;
		height: 27vw;
		left: -0.20rem;
		right: auto;
		bottom: -0.50rem;
	}
}

/* メイン写真（定期便用） */
#henrei .wrap .list .detail.teiki .ph_wrap .main_ph {
	height: 3.07rem;
}

@media screen and (max-width: 599px) {
#henrei .wrap .list .detail.teiki .ph_wrap .main_ph {
	height: 63vw;
}
}

#henrei .wrap .list .detail:nth-child(even) .ph_wrap .sub_ph {
	left: auto;
	right: -0.40rem;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail:nth-child(even) .ph_wrap .sub_ph {
		right: -0.20rem;
	}
}

#henrei .wrap .list .detail .small .col2Box:first-child .ph_wrap .sub_ph {
	left: -0.40rem;
}

@media screen and (max-width: 599px) {
#henrei .wrap .list .detail .small .col2Box:first-child .ph_wrap .sub_ph {
	left: auto;
	right: -0.20rem;
}
}

#henrei .wrap .list .detail .ph_wrap img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
	z-index: 0;
}

/* テキスト全体 */
#henrei .wrap .list .detail .textbox {
	width: 100%;
	max-width: 4.40rem;
	padding-top: 0.80rem;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .textbox {
		padding-top: 0.60rem;
	}
}

/* テキスト全体（2カラム用） */
#henrei .wrap .list .detail .col2Box .textbox {
	max-width: 100%;
	padding-top: 0.30rem;
	height: 3.70rem;
}

@media screen and (max-width: 599px) {
#henrei .wrap .list .detail .col2Box .textbox {
	padding-top: 0.50rem;
	height: auto;
}
}

/* テキスト全体（定期用） */
#henrei .wrap .list .detail.teiki .textbox {
	max-width: 7.00rem;
	padding-top: 0.60rem;
}

@media screen and (max-width: 599px) {
#henrei .wrap .list .detail.teiki .textbox {
	padding-top: 0;
}
}

/* キャッチ */
#henrei .wrap .list .detail .textbox .catch {
	font-family: 'Noto Serif JP', serif;
	font-size: 0.24rem;
	font-weight: 700;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .textbox .catch {
		font-size: 0.16rem;
		letter-spacing: 0.05em;
		text-align: center;
	}
}

/* 筆文字 */
#henrei .wrap .list .detail .textbox .logo {
	padding: 0.25rem 0;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .textbox .logo {
		text-align: center;
		padding: 0.15rem 0;
	}
}

/* 筆文字（2カラム用） */
#henrei .wrap .list .detail .small .textbox .logo {
	text-align: center;
}

#henrei .wrap .list .detail .textbox .logo img {
	height: 0.58rem;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .textbox .logo img {
		height: 0.40rem;
	}
}

#henrei .wrap .list .detail .textbox .text {
	font-size: 0.16rem;
	line-height: 2;
	letter-spacing: 0.075em;
	text-align: justify;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .textbox .text {
		font-size: 0.14rem;
		line-height: 1.85;
		letter-spacing: 0.05em;
	}
}

/* ふるさと納税リンク */
#henrei .wrap .list .detail .link_wrap {
	width: 100%;
	padding-top: 0.70rem;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .link_wrap {
		padding-top: 0;
	}
}

/* ふるさと納税リンク（2カラム用） */
#henrei .wrap .list .detail .col2Box .link_wrap {
	padding-top: 0;
}

/* ふるさと納税リンク（定期便用） */
#henrei .wrap .list .detail.teiki .link_wrap {
	padding-top: 0.30rem;
}

@media screen and (max-width: 599px) {
#henrei .wrap .list .detail.teiki .link_wrap {
	padding-top: 0;
}
}

#henrei .wrap .list .detail .link_wrap .link_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-left: -0.05rem;
	margin-right: -0.05rem;
	padding-top: 0.15rem;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .link_wrap .link_list {
		margin-left: -0.05rem;
		margin-right: -0.05rem;
	}
}

#henrei .wrap .list .detail .link_wrap .link_list .link {
	width: 25%;
	box-sizing: border-box;
	padding: 0 0.10rem;
	margin-bottom: 0.10rem;
}

@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .link_wrap .link_list .link {
		width: 50%;
		box-sizing: border-box;
		padding: 0 0.05rem;
		margin-bottom: 0.10rem;
	}
}

/* ふるさと納税リンク（2カラム用） */
#henrei .wrap .list .detail .col2Box .link_wrap .link_list .link {
	width: 50%;
	margin-bottom: 0.15rem;
}

#henrei .wrap .list .detail .link_wrap .link_list .link a {
	display: block;
	text-align: center;
	background-color: #FFF;
	border: 2px solid #CCC;
	height: 0.75rem;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 75%;
	box-sizing: border-box;
}


@media screen and (max-width: 599px) {
	#henrei .wrap .list .detail .link_wrap .link_list .link a {
		height: 0.50rem;
	}
}

#henrei .wrap .list .detail .link_wrap .link_list .link a:hover {
	opacity: 0.7;
}

#henrei .wrap .list .detail .link_wrap .link_list .link a.disabled {
	opacity: 0.2;
	color: #666;
}

#henrei .wrap .list .detail .link_wrap .link_list .link.logo01 a {
	background-image: url(../img/henrei_logo01.png);
}

#henrei .wrap .list .detail .link_wrap .link_list .link.logo02 a {
	background-image: url(../img/henrei_logo02.png);
}

#henrei .wrap .list .detail .link_wrap .link_list .link.logo03 a {
	background-image: url(../img/henrei_logo03.png);
}

#henrei .wrap .list .detail .link_wrap .link_list .link.logo04 a {
	background-image: url(../img/henrei_logo04.png);
}

#henrei .wrap .list .detail .link_wrap .link_list .link.logo05 a {
	background-image: url(../img/henrei_logo05.png);
}

#henrei .wrap .list .detail .link_wrap .link_list .link.logo06 a {
	background-image: url(../img/henrei_logo06.png);
}

#henrei .wrap .list .detail .link_wrap .link_list .link.logo07 a {
	background-image: url(../img/henrei_logo07.png);
}

#henrei .wrap .list .detail .link_wrap .link_list .link.logo08 a {
	background-image: url(../img/henrei_logo08.png);
}


/* ふるさと納税サイト */
.portal_wrap {
	background-color: #efefe9;
	padding: 0.70rem 0;
	position: relative;
	top: -0.10rem;
}

@media screen and (max-width: 599px) {
.portal_wrap {
	padding: 0.40rem 0;
	top: 0;
}
}

.portal_wrap .in {
	max-width: 12.80rem;
	padding: 0 0.40rem;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
.portal_wrap .in {
	padding: 0 0.20rem;
}
}

.portal_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.portal_wrap .list .detail {
	width: 25%;
	box-sizing: border-box;
	padding: 0.08rem;
}

@media screen and (max-width: 599px) {
.portal_wrap .list .detail {
	width: 100%;
}
}

.portal_wrap .list .detail a {
	text-decoration: none;
	text-align: center;
	display: block;
	color: #111;
}

.portal_wrap .list .detail .logo_wrap {
	background-color: #FFF;
	box-sizing: border-box;
	border: 1px solid #DDD;
	padding: 0.40rem 0;
}

@media screen and (max-width: 599px) {
.portal_wrap .list .detail .logo_wrap {
	padding: 0.20rem 0.30rem;
}
}

.portal_wrap .list .detail a:hover {
	opacity: 0.5;
}

.portal_wrap .list .detail .text {
	font-size: 0.14rem;
	line-height: 1.55;
	padding: 0.06rem 0 0.08rem;
	letter-spacing: 0;
}

@media screen and (max-width: 599px) {
.portal_wrap .list .detail .text {
	font-size: 0.13rem;
}
}

.portal_wrap .list .detail .more_btn {
	background-color: #111;
	line-height: 0;
	font-size: 0.12rem;
	font-weight: 700;
	color: #FFF;
	padding: 0.20rem 0 0.22rem;
	margin: 0 0.10rem 0.15rem;
	position: relative;
}

@media screen and (max-width: 599px) {
.portal_wrap .list .detail .more_btn {
	font-size: 0.14rem;
	margin: 0 0 0.15rem;
}
}

.portal_wrap .list .detail .more_btn::after {
	content: "";
	width: 0.15rem;
	height: 0.10rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0.15rem;
	background-image: url(../img/icon_newwin_white.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
}


/*=========================
YouTube
=========================*/
#youtube {
	position: relative;
	padding-bottom: 0.80rem;
}

#youtube::before {
	content: "";
	background-image: url(../img/youtube_mov_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: calc(100% - 0.80rem);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

#youtube .main_mov_wrap {
	width: 100%;
	height: 6.00rem;
	margin-bottom: 0.40rem;
}

@media screen and (max-width: 599px) {
#youtube .main_mov_wrap {
	height: 50vw;
	margin-bottom: 0.30rem;
}
}

#youtube .main_mov_wrap iframe {
	width: 100%;
	height: 100%;
}

#youtube .sub_mov_wrap {
	padding-bottom: 0.40rem;
}

#youtube .sub_mov_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#youtube .sub_mov_wrap .list .detail {
	width: 22.22%;
}

@media screen and (max-width: 599px) {
#youtube .sub_mov_wrap .list .detail {
	width: 48%;
	padding-bottom: 0.20rem;
}
}

#youtube .sub_mov_wrap .list .detail a {
	text-decoration: none;
	color: #FFF;
	font-family: 'Noto Sans JP', sans-serif;
}

#youtube .sub_mov_wrap .list .detail a:hover {
	opacity: 0.7;
}

#youtube .sub_mov_wrap .list .detail a .text {
	text-align: center;
	padding-top: 0.10rem;
	font-size: 0.14rem;
	line-height: 1.50;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 599px) {
#youtube .sub_mov_wrap .list .detail a .text {
	padding-top: 0.06rem;
	font-size: 0.13rem;
	letter-spacing: 0;
}
}

#youtube .more_btn {
	text-align: center;
}

#youtube .more_btn a:hover {
	opacity: 0.7;
}


/*=========================
流れ
=========================*/
#flow {
	position: relative;
}

#flow .title {
	background-color: #111;
	text-align: center;
	padding: 0.30rem 0.20rem;
	font-size: 0.26rem;
	letter-spacing: 0.10em;
	color: #FFF;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
	#flow .title {
		font-size: 0.20rem;
		line-height: 1.65;
		letter-spacing: 0.05em;
	}
}

#flow .title span {
	font-size: 0.14rem;
	display: block;
	padding-top: 0.20rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

@media screen and (max-width: 599px) {
	#flow .title span {
		font-size: 0.12rem;
		padding-top: 0.10rem;
		letter-spacing: 0.20em;
	}
}

/* ふるさと納税とは */
.flow_about {
	padding: 0.50rem 0;
}

.flow_about .about_title {
	font-size: 0.24rem;
	text-align: center;
	padding-bottom: 0.40rem;
	margin-bottom: 0.20rem;
	letter-spacing: 0.10em;
	position: relative;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
.flow_about .about_title {
	font-size: 0.20rem;
}
}

.flow_about .about_title::after {
	content: "";
	width: 1px;
	height: 0.15rem;
	background-color: #111;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.flow_about .text {
	font-size: 0.15rem;
	line-height: 1.91;
	text-align: center;
	padding-bottom: 0.40rem;
}

@media screen and (max-width: 599px) {
.flow_about .text {
	font-size: 0.14rem;
	line-height: 1.85;
	text-align: left;
	text-align: justify;
	padding-bottom: 0.10rem;
}
}

/* 流れ */
#flow .flow_wrap {
	background-color: #9FA0A0;
	color: #FFF;
	font-family: 'Noto Serif JP', serif;
	padding: 0.40rem 0;
}

#flow .flow_wrap .sub_title {
	font-size: 0.22rem;
	letter-spacing: 0.10em;
	text-align: center;
	margin-bottom: 0.30rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .sub_title {
		font-size: 0.20rem;
	}
}

#flow .flow_wrap .sub_title span {
	display: inline-block;
	border-bottom: 2px solid #FFF;
	padding-bottom: 0.06rem;
}

#flow .flow_wrap .list {
	display: flex;
	justify-content: space-between;
	margin-left: -0.20rem;
	margin-right: -0.20rem;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .list {
		flex-wrap: wrap;
		margin: 0;
	}
}

#flow .flow_wrap .list .detail {
	padding-left: 0.20rem;
	padding-right: 0.20rem;
	min-width: 1.50rem;
	position: relative;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .list .detail {
		padding: 0;
		padding-bottom: 0.40rem;
		width: 100%;
	}
}

/* 矢印のタイプ */
#flow .flow_wrap .list .detail.arrow01::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 10px;
	border-color: transparent transparent transparent #ffffff;
	position: absolute;
	top: 50%;
	right: -4px;
	transform: translateY(-50%);
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .list .detail.arrow01::before {
		border-width: 10px 10px 0 10px;
		border-color: #ffffff transparent transparent transparent;
		top: auto;
		right: auto;
		bottom: 0.20rem;
		left: 50%;
		transform: translateY(0);
		transform: translateX(-50%);
	}
}

#flow .flow_wrap .list .detail.arrow02::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 10px;
	border-color: transparent transparent transparent #ffffff;
	position: absolute;
	top: 45%;
	right: -4px;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .list .detail.arrow02::before {
		border-width: 10px 10px 0 10px;
		border-color: #ffffff transparent transparent transparent;
		top: auto;
		right: auto;
		bottom: 0.20rem;
		left: 25%;
	}
}

#flow .flow_wrap .list .detail.arrow02::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 10px;
	border-color: transparent transparent transparent #ffffff;
	position: absolute;
	top: 73%;
	right: -4px;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .list .detail.arrow02::after {
		border-width: 10px 10px 0 10px;
		border-color: #ffffff transparent transparent transparent;
		top: auto;
		right: auto;
		bottom: 0.20rem;
		left: 75%;
	}
}

#flow .flow_wrap .list .detail.arrow03::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 10px;
	border-color: transparent transparent transparent #ffffff;
	position: absolute;
	top: 73%;
	right: -4px;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .list .detail.arrow03::after {
		border-width: 10px 10px 0 10px;
		border-color: #ffffff transparent transparent transparent;
		top: auto;
		right: auto;
		bottom: 0.20rem;
		left: 75%;
	}
}

#flow .flow_wrap .list .detail .step_title {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 0.14rem;
	line-height: 1.1;
	padding-bottom: 0.10rem;
}

#flow .flow_wrap .list .detail .step_title span {
	display: block;
	font-size: 0.60rem;
	text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
	color: #9FA0A0;
}

#flow .flow_wrap .list .detail .text {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.13rem;
	line-height: 1.85;
	letter-spacing: 0.05em;
}

#flow .flow_wrap .list .detail .text .small {
	font-size: 0.11rem;
}

#flow .flow_wrap .list .detail .list_text {
	list-style: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.13rem;
	line-height: 1.55;
	letter-spacing: 0.05em;
	text-indent: -0.13rem;
	margin-left: 0.13rem;
	padding: 0;
}

#flow .flow_wrap .list .detail .list_text li {
	padding-bottom: 0.05rem;
}

@media screen and (max-width: 599px) {
	#flow .flow_wrap .list .detail .col2_wrap {
		display: flex;
		justify-content: space-between;
	}

	#flow .flow_wrap .list .detail .col2_wrap .text {
		width: 48%;
		box-sizing: border-box;
	}

	#flow .flow_wrap .list .detail .col2_wrap .text.right,
	#flow .flow_wrap .list .detail .col2_wrap .list_text.right {
		border-left: 1px solid #FFF;
		padding-left: 0.20rem;
		width: 52%;
	}

	#flow .flow_wrap .list .detail .col2_wrap .list_text.right {
		padding-left: 0.40rem;
		margin: 0;
		box-sizing: border-box;
	}
}

/*================================
税金控除
================================*/
#tax .in {
	max-width: 9.00rem;
}

#tax .tax_wrap {
	background-color: #f7e5e5;
	padding: 0.60rem 0;
	margin-bottom: 0.50rem;
}

@media screen and (max-width: 599px) {
#tax .tax_wrap {
	padding: 0.30rem 0;
	margin-bottom: 0.30rem;
}
}

#tax .tax_wrap .tax_title {
	font-size: 0.26rem;
	text-align: center;
	padding-bottom: 0.50rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
#tax .tax_wrap .tax_title {
	font-size: 0.20rem;
line-height: 1.50;
}
}

#tax .tax_wrap .tax_title strong {
	font-weight: 700;
	border-bottom: 2px solid #ac0003;
}

#tax .tax_text_warp {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#tax .tax_text_warp .tax_textbox {
	width: 48.5%;
}

@media screen and (max-width: 599px) {
#tax .tax_text_warp .tax_textbox {
	width:100%;
}
	#tax .tax_text_warp .tax_textbox:first-child {
		margin-bottom: 0.30rem;
	}
}

#tax .tax_text_warp .tax_textbox .tax_textbox_title {
	text-align: center;
	font-size: 0.20rem;
	background-color: #ac0003;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	color: #FFF;
	padding: 0.12rem 0 0.14rem;
}

@media screen and (max-width: 599px) {
#tax .tax_text_warp .tax_textbox .tax_textbox_title {
	font-size: 0.18rem;
}
}

#tax .tax_text_warp .tax_textbox .deco_text {
	font-size: 0.14rem;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	line-height: 1.55;
	margin-bottom: 0.10rem;
	letter-spacing: 0.075em;
	position: relative;
}

#tax .tax_text_warp .tax_textbox .deco_text::before {
	content: "";
	width: 0.20rem;
	height: 0.40rem;
	background-image: url(../img/deco_left.svg);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0.70rem;
	transform: translateY(-50%);
}

@media screen and (max-width: 599px) {
	#tax .tax_text_warp .tax_textbox .deco_text::before {
	left: 0.20rem;
}
}

#tax .tax_text_warp .tax_textbox .deco_text::after {
	content: "";
	width: 0.20rem;
	height: 0.40rem;
	background-image: url(../img/deco_right.svg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0.70rem;
	transform: translateY(-50%);
}

@media screen and (max-width: 599px) {
#tax .tax_text_warp .tax_textbox .deco_text::after {
	right: 0.20rem;
}
}

/* テキストボックス */
#tax .tax_text_warp .tax_textbox .textbox {
	background-color: #FFF;
	padding: 0.30rem 0.40rem 0.20rem;
	font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 599px) {
#tax .tax_text_warp .tax_textbox .textbox {
	padding: 0.20rem;
}
}

#tax .tax_text_warp .tax_textbox .textbox .tax_point .tax_point_title {
	font-size: 0.16rem;
	font-weight: 700;
	padding-bottom: 0.08rem;
	border-bottom: 1px dotted #111;
	margin-bottom: 0.08rem;
}

#tax .tax_text_warp .tax_textbox .textbox .tax_point .list .check {
	font-size: 0.13rem;
	line-height: 2;
}

#tax .tax_text_warp .tax_textbox .textbox .tax_point .list .check::before {
	content: "";
	width: 0.20rem;
	height: 0.14rem;
	background-image: url(../img/icon_check.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	position: relative;
	top: 0.02rem;
}

#tax .tax_text_warp .tax_textbox .textbox .ph_wrap {
	max-width: 3.50rem;
	margin: 0.10rem auto;
}

#tax .tax_text_warp .tax_textbox .textbox .caption {
	background-color: #F2F2F2;
	padding: 0.20rem;
	font-size: 0.14rem;
	line-height: 1.75;
	border-radius: 5px;
}

#tax .tax_text_warp .tax_textbox .textbox .more_btn {
	max-width: 3.50rem;
	margin: 0.20rem auto 0;
	text-align: center;
}

#tax .tax_text_warp .tax_textbox .textbox .more_btn a {
	background-color: #111;
	line-height: 0;
	font-size: 0.13rem;
	font-weight: 700;
	color: #FFF;
	padding: 0.20rem 0 0.22rem;
	margin: 0 0.10rem 0.15rem;
	position: relative;
	text-decoration: none;
	display: block;
}

#tax .tax_text_warp .tax_textbox .textbox .more_btn a:hover {
	opacity: 0.7;
}

#tax .tax_text_warp .tax_textbox .textbox .more_btn a::after {
	content: "";
	width: 0.15rem;
	height: 0.10rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0.15rem;
	background-image: url(../img/icon_newwin_white.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
}

/*=========================
ふるさと納税の使い道
=========================*/
#how_to_use {
	position: relative;
	padding: 0.60rem 0;
}

@media screen and (max-width: 599px) {
#how_to_use {
	padding: 0.40rem 0;
}
}

#how_to_use .title {
	font-size: 0.22rem;
	letter-spacing: 0.20em;
	text-align: center;
	margin-bottom: 0.40rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
	#how_to_use .title {
		font-size: 0.20rem;
	}
}

#how_to_use .title span {
	display: inline-block;
	border-bottom: 2px solid #111;
	padding-bottom: 0.10rem;
}

#how_to_use .wrap .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 0.20rem;
}

#how_to_use .wrap .list .detail {
	width: 48%;
	padding-bottom: 0.40rem;
}

@media screen and (max-width: 599px) {
	#how_to_use .wrap .list .detail {
		width: 100%;
	}
}

#how_to_use .wrap .list .detail.full {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#how_to_use .wrap .list .detail .select_ph_wrap {
	width: 100%;
	height: 2.90rem;
	overflow: hidden;
	border-radius: 0.05rem;
}

@media screen and (max-width: 599px) {
#how_to_use .wrap .list .detail .select_ph_wrap {
	height: 59vw;
}
}

#how_to_use .wrap .list .detail.full .select_ph_wrap {
	width: 4.00rem;
	height: 100%;
	overflow: hidden;
	border-radius: 0.05rem;
}

@media screen and (max-width: 599px) {
#how_to_use .wrap .list .detail.full .select_ph_wrap {
	width: 100%;
	height: 59vw;
}
}

#how_to_use .wrap .list .detail.full .full_text_wrap {
	width: calc(100% - 4.20rem);
}

@media screen and (max-width: 599px) {
#how_to_use .wrap .list .detail.full .full_text_wrap {
	width:100%;
}
}
#how_to_use .wrap .list .detail .select_ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#how_to_use .wrap .list .detail .title_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0.15rem 0 0.10rem;
}

#how_to_use .wrap .list .detail.full .title_wrap {
	padding-top: 0;
}

@media screen and (max-width: 599px) {
#how_to_use .wrap .list .detail.full .title_wrap {
	padding-top: 0.15rem;
}
}

#how_to_use .wrap .list .detail .title_wrap .select_title {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 0.14rem;
	line-height: 1.1;
	width: 0.70rem;
	letter-spacing: 0.1em;
}

#how_to_use .wrap .list .detail .title_wrap .select_title span {
	display: block;
	font-size: 0.40rem;
	text-shadow: 1px 0 0 #111, 0 1px 0 #111, -1px 0 0 #111, 0 -1px 0 #111;
	color: #FFF;
	letter-spacing: 0;
}

#how_to_use .wrap .list .detail .title_wrap .how_title {
	font-size: 0.18rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	font-family: 'Noto Sans JP', sans-serif;
	width: calc(100% - 0.70rem);
}

#how_to_use .wrap .list .detail .textbox {
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 599px) {
	#how_to_use .wrap .list .detail .textbox {
		width: 100%;
	}
}

#how_to_use .wrap .list .detail .textbox .text {
	font-size: 0.13rem;
	line-height: 1.85;
	letter-spacing: 0.05em;
	text-align: justify;
	text-justify: inter-ideograph;
}

#how_to_use .wrap .list .detail .textbox .more_btn {
	padding-top: 0.10rem;
}

#how_to_use .wrap .list .detail .textbox .more_btn a {
	font-weight: 700;
	font-size: 0.13rem;
	color: #111;
}

/* 写真 */
#how_to_use .ph_wrap {
	display: flex;
	justify-content: space-between;
	padding: 0.20rem 0;
	border-top: 2px solid #111;
	border-bottom: 2px solid #111;
	margin-left: -0.10rem;
	margin-right: -0.10rem;
}

/*
@media screen and (max-width: 599px) {
	#how_to_use .ph_wrap {
		display: block;
		margin: auto;
		padding: 0.10rem 0;
	}
}
*/


#how_to_use .ph_wrap .ph {
	padding-left: 0.10rem;
	padding-right: 0.10rem;
	width: 32%;
}

@media screen and (max-width: 599px) {
	#how_to_use .ph_wrap .ph {
		width: 32.5%;
		padding: 0 0.05rem;
	}
}


.YouTube_link_wrap {
	text-align: center;
	padding: 0.60rem 0 0.40rem;
	width: 100%;
	max-width: 8.00rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	.YouTube_link_wrap {
		padding: 0.50rem 0 0;
	}
}

.YouTube_link_wrap a {
	display: block;
	margin: auto;
}

.YouTube_link_wrap a:hover {
	opacity: 0.7;
}

.YouTube_link_wrap a img {
	display: block;
}

/*================================
GoogleMap
================================*/


/*================================
フッター
================================*/
footer {
	background-image: url(../img/footer_bg.jpg);
	background-position: center center;
	background-size: cover;
	padding: 0.60rem 0 0.80rem;
	text-align: center;
	color: #FFF;
}

@media screen and (max-width: 599px) {
footer {
	padding: 0.30rem 0;
}
}

footer .in {
	max-width: 12.80rem;
	padding: 0.40rem;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
footer .in {
	padding: 0 0.20rem;
}
}

footer .catalog_wrap {
	text-align: center;
	font-size: 0.16rem;
	color: #FFF;
	line-height: 1.85;
	padding-bottom: 0.40rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}

@media screen and (max-width: 599px) {
	footer .catalog_wrap {
		font-size: 0.13rem;
	}
}

footer .wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

footer .logo {
	width: 50%;
	max-width: 2.83rem;
}

@media screen and (max-width: 599px) {
	footer .logo {
		width: 100%;
		max-width: 1.50rem;
		text-align: center;
		margin: 0 auto 0.30rem;
	}
}

footer .address_wrap {
	width: 100%;
	max-width: 4.00rem;
	text-align: center;
}

footer .link_url {
	text-align: center;
	padding: 0.50rem 0 0.20rem;
}

@media screen and (max-width: 599px) {
footer .link_url {
	padding: 0.30rem 0;
}
}

footer .link_url a {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.16rem;
	color: #111;
	background-color: #FFF;
	padding: 0.10rem 0.30rem 0.14rem;
	border-radius: 4px;
	line-height: 0;
	text-decoration: none;
	box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
	letter-spacing: 0.08em;
}

@media screen and (max-width: 599px) {
	footer .link_url a {
		font-size: 0.14rem;
		padding: 0.06rem 0.20rem 0.10rem;
	}
}

footer .link_url a:hover {
	background-color: #111;
	color: #FFF;
}

footer .address {
	color: #FFF;
	font-size: 0.15rem;
	line-height: 2;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.08em;
}

@media screen and (max-width: 599px) {
	footer .address {
		font-size: 0.13rem;
		line-height: 1.85;
		letter-spacing: 0;
	}

	footer .address a {
		color: #FFF;
	}
}

footer .gmap_wrap {
	width: 100%;
	max-width: 3.80rem;
	height: 2.00rem;
}

@media screen and (max-width: 599px) {
footer .gmap_wrap {
	max-width: 100%;
	height: 2.30rem;
	margin-top: 0.20rem;
}
}

footer .gmap_wrap iframe {
	width: 100%;
	height: 100%;
}

footer .copyright {
	color: #FFF;
	font-size: 0.14rem;
	line-height: 2;
	font-family: 'Noto Sans JP', sans-serif;
	padding-top: 0.50rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
	footer .copyright {
		font-size: 0.11rem;
		padding-top: 0.20rem;
	}
}

/*===============================
プレゼント応募フォーム
===============================*/
#present {
	background-color: #1C52A0;
	color: #FFF;
	position: relative;
	z-index: 10;
	font-family: 'Noto Sans JP', sans-serif;
}

#present .in {
	padding-top: 0.60rem;
	padding-bottom: 0.60rem;
}

@media screen and (max-width: 599px) {
	#present .in {
		padding-top: 0.30rem;
		padding-bottom: 0.30rem;
	}
}

#present .present_title_wrapper {
	text-align: center;
	position: relative;
}

#present .present_title_wrapper .text {
	font-size: 0.18rem;
	font-weight: 700;
	line-height: 2;
	padding-top: 0.30rem;
}

@media screen and (max-width: 599px) {
	#present .present_title_wrapper .text {
		font-size: 0.14rem;
		line-height: 1.8;
		text-align: left;
	}
}

#present .item_list_wrap {
	padding-top: 0.30rem;
	padding-bottom: 0.30rem;
}

#present .confirm_box .title {
	margin-top: 0.20rem;
}

#present .item_list_wrap .title,
#present .present_input_wrap .title {
	font-size: 0.26rem;
	font-weight: 700;
	text-align: center;
	padding-bottom: 0.20rem;
}

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

	#present .item_list_wrap .title,
	#present .present_input_wrap .title {
		font-size: 0.18rem;
	}
}

#present .item_list_wrap .title span::before,
#present .present_input_wrap .title span::before {
	content: "";
	display: inline-block;
	width: 0.08rem;
	height: 0.08rem;
	border-radius: 0.04rem;
	background-color: #FFF;
	margin-right: 0.10rem;
	position: relative;
	top: -0.04rem;
}

#present .item_list_wrap .title span::after,
#present .present_input_wrap .title span::after {
	content: "";
	display: inline-block;
	width: 0.08rem;
	height: 0.08rem;
	border-radius: 0.04rem;
	background-color: #FFF;
	margin-left: 0.10rem;
	position: relative;
	top: -0.04rem;
}

#present .item_list_wrap .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-left: -0.04rem;
	margin-right: -0.04rem;
}

@media screen and (max-width: 599px) {
	#present .item_list_wrap .list {
		margin-left: 0;
		margin-right: 0;
	}
}

#present .item_list_wrap .list .detail {
	width: 25%;
	box-sizing: border-box;
	padding: 0 0.04rem 0.20rem;
}

@media screen and (max-width: 599px) {
	#present .item_list_wrap .list .detail {
		width: 100%;
		box-sizing: border-box;
		padding: 0 0.04rem 0.20rem;
	}
}

#present .item_list_wrap .list .detail label {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 0.10rem;
	border-radius: 3px;
	display: block;
	height: 100%;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

#present .item_list_wrap .list .detail label.active {
	background-color: rgba(255, 255, 255, 0.3);
}

#present .item_list_wrap .list .detail .btn {
	text-align: center;
}

#present .item_list_wrap .list .detail .btn input {
	width: 0.20rem;
	height: 0.20rem;
	margin: auto;
	display: block;
}

#present .item_list_wrap .list .detail .town_name {
	font-size: 0.15rem;
	font-weight: 700;
	line-height: 2;
	text-align: center;
	display: block;
}

@media screen and (max-width: 599px) {
	#present .item_list_wrap .list .detail .town_name {
		font-size: 0.13rem;
	}
}

#present .item_list_wrap .list .detail .item_title {
	font-size: 0.16rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	padding: 0.10rem 0;
	letter-spacing: 0;
}

@media screen and (max-width: 599px) {
	#present .item_list_wrap .list .detail .item_title {
		font-size: 0.15rem;
		padding: 0.06rem 0;
		/*		text-align: left;*/
	}
}

#present .item_list_wrap .list .detail .item_title span {
	display: block;
	font-size: 0.14rem;
}

@media screen and (max-width: 599px) {
	#present .item_list_wrap .list .detail .item_title span {
		font-size: 0.13rem;
	}
}

#present .item_list_wrap .list .detail p {
	font-size: 0.14rem;
	line-height: 1.65;
}

@media screen and (max-width: 599px) {
	#present .item_list_wrap .list .detail p {
		font-size: 0.13rem;
		text-align: left;
	}
}

/* テーブル */
.present_input_wrap {
	font-size: 0.18rem;
	line-height: 1.8;
	position: relative;
	z-index: 10;
}

@media screen and (max-width: 599px) {
	.present_input_wrap {
		font-size: 0.14rem;
		line-height: 1.65;
	}
}

.present_input_wrap table {
	width: 100%;
}

.present_input_wrap tr {
	background-color: rgba(255, 255, 255, 0.2);
}

.present_input_wrap tr:nth-child(even) {
	background-color: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 599px) {
	.present_input_wrap tr {
		background-color: none;
	}
}

.present_input_wrap th {
	width: 30%;
	text-align: left;
	padding: 0.10rem;
	vertical-align: top;
	position: relative;
}

@media screen and (max-width: 599px) {
	.present_input_wrap th {
		width: 100%;
		box-sizing: border-box;
		display: block;
		border-bottom: 1px solid #1C52A0;
		background-color: rgba(255, 255, 255, 0.2);
	}
}

.present_input_wrap th span {
	position: absolute;
	top: 0.08rem;
	right: 0.10rem;
	display: inline-block;
}

.present_input_wrap th span::before {
	content: "必須項目";
	font-size: 0.13rem;
	color: #FFF;
	background-color: #c1272d;
	padding: 0.03rem 0.10rem;
	line-height: 1;
	border-radius: 3px;
}

@media screen and (max-width: 599px) {
	.present_input_wrap th span::before {
		font-size: 0.11rem;
	}
}

.present_input_wrap td {
	text-align: left;
	padding: 0.10rem;
	box-sizing: border-box;
	max-width: 7.00rem;
}

@media screen and (max-width: 599px) {
	.present_input_wrap td {
		width: 100%;
		box-sizing: border-box;
		display: block;
	}
}

.present_input_wrap td .list {
	display: flex;
	flex-wrap: wrap;
}

.present_input_wrap td .list li {
	width: 50%;
}

.present_input_wrap td .list li input {
	position: relative;
	top: -0.04rem;
}

.present_input_wrap td .list li span {
	display: inline-block;
	padding-left: 0.04rem;
}

/* フォームパーツ */
.present_input_wrap td input,
.present_input_wrap td textarea {
	position: relative;
	z-index: 10;
	border: 1px solid #CCC;
	padding: 0.04rem;
	font-size: 0.18rem;
	border-radius: 3px;
	box-sizing: border-box;
}

.present_input_wrap td input.w100 {
	width: 100%;
}

.present_input_wrap td input.w20 {
	width: 20%;
}

.present_input_wrap td input.w40 {
	width: 40%;
}

.present_input_wrap td textarea {
	width: 100%;
	height: 2.00rem;
}

.present_input_wrap td select {
	width: 2.00rem;
	border: 0;
	font-size: 0.16rem;
	padding: 0.04rem;
	border-radius: 3px;
	border: 1px solid #FFF;
}

/* 送信ボタン */
.submit_btn {
	text-align: center;
	padding: 0.20rem 0 0.60rem;
}

.submit_btn .submit {
	background-color: #111;
	color: #FFF;
	display: inline-block;
	padding: 0.10rem 0.40rem;
	font-size: 0.18rem;
	font-weight: 700;
	border: 1px solid #FFF;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-left: 0.06rem;
	margin-right: 0.06rem;
}

.submit_btn .submit.disabled {
	background-color: #999;
	color: #CCC;
	cursor: not-allowed;
}

@media screen and (max-width: 599px) {
	.submit_btn .submit {
		margin-bottom: 0.20rem;
	}
}

.submit_btn .submit:hover {
	background-color: #FFF;
	color: #c1272d;
}

.submit_btn .submit.disabled:hover {
	background-color: #999;
	color: #CCC;
	cursor: not-allowed;
}

/* 修正ボタン */
.submit_btn .back_btn {
	background-color: #999;
	color: #FFF;
	display: inline-block;
	padding: 0.10rem 0.40rem;
	font-size: 0.18rem;
	font-weight: 700;
	border: 1px solid #FFF;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	line-height: 1.2;
	position: relative;
	top: -1px;
	margin-left: 0.06rem;
	margin-right: 0.06rem;
}

.submit_btn .back_btn:hover {
	background-color: #FFF;
	color: #c1272d;
}

/* 募集要項 */
.youkou_wrap {
	background-color: #FFF;
	padding: 0.30rem;
	border-radius: 4px;
	color: #111;
}

@media screen and (max-width: 599px) {
	.youkou_wrap {
		padding: 0.20rem;
	}
}

.youkou_wrap .youkou_main_title {
	text-align: center;
	font-size: 0.20rem;
	font-weight: 700;
	padding-bottom: 0.10rem;
	border-bottom: 1px solid #111;
}

@media screen and (max-width: 599px) {
	.youkou_wrap .youkou_main_title {
		font-size: 0.16rem;
	}
}

.youkou_wrap .youkou_title {
	font-size: 0.16rem;
	font-weight: 700;
	margin-top: 0.30rem;
	line-height: 1.2;
}

@media screen and (max-width: 599px) {
	.youkou_wrap .youkou_title {
		font-size: 0.15rem;
	}
}

.youkou_wrap .text {
	font-size: 0.15rem;
	line-height: 1.85;
}

@media screen and (max-width: 599px) {
	.youkou_wrap .text {
		font-size: 0.13rem;
		line-height: 1.75;
	}
}

.youkou_wrap a {
	color: #111;
}

.youkou_wrap ul {
	font-size: 0.15rem;
	line-height: 1.85;
	list-style: disc outside;
}

@media screen and (max-width: 599px) {
	.youkou_wrap ul {
		font-size: 0.13rem;
		line-height: 1.75;
	}
}

.youkou_wrap li {
	margin-left: 0.20rem;
}

/* スマホ時のコーディオン */
@media screen and (max-width: 599px) {
	.youkou_wrap .acc {
		display: none;
		padding-top: 0.10rem;
	}

	.youkou_title {
		position: relative;
	}

	.youkou_title::before {
		content: "";
		width: 0.11rem;
		height: 1px;
		background-color: #111;
		position: absolute;
		right: 0.10rem;
		top: 50%;
		transform: translateY(-50%);
	}

	.youkou_title::after {
		content: "";
		width: 1px;
		height: 0.11rem;
		background-color: #111;
		position: absolute;
		right: 0.15rem;
		top: 50%;
		transform: translateY(-50%);
	}

	.youkou_title.open::after {
		content: none;
	}
}

/*--------------------------------
フォームのエラー
--------------------------------*/
.error_text {
	background-color: rgba(255, 255, 255, 0.9);
	padding: 0.08rem;
	line-height: 1.1;
	margin-top: 0.10rem;
	border-radius: 3px;
}

.item_list_wrap .error_text {
	margin-top: 0;
	margin-bottom: 0.10rem;
}

.error_text span {
	font-size: 0.15rem;
	color: #c1272d;
	background-image: url(../img/form_error_icon.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	display: inline-block;
	padding-left: 0.24rem;
}

.confirm_text {
	text-align: center;
	padding: 0.20rem 0 0;
}

/* 確認画面 */
.confirm_box {
	position: relative;
}

.confirm_box:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.20rem 0.50rem 0 0.50rem;
	border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
	margin: 0.20rem auto;
}

/* reCaptcha */
#reCaptcha_wrap {
	width: 305px;
	margin: auto;
	margin-top: 0.20rem;
}
