@charset "utf-8";

/*----------------------------------------------------
 基本フレーム
----------------------------------------------------*/
body {
	min-width: 1220px;
	margin: 0;
	padding: 0;
	animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.contents main {
	background-color: #d4ecf7;
	padding: 60px 10px 100px;
	position: relative;
}
.contents main::before {
	content: "";
	width: 190px;
	height: 75px;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background-image: url(../images/contents_crown.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	z-index: 3;
}
.container {
	width: 1200px;
	margin: 0 auto;
}
main .container {
	padding: 0 50px 70px;
}
.contents main .container {
	background-color: #ffffff;
	border-radius: 40px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	position: relative;
}
@media screen and (max-width: 834px) {
	body {
		min-width: auto;
		overflow: hidden;
		font-size: 15px;
	}
	.contents main {
		padding: 40px 0 60px;
	}
	.contents main::before {
		width: 95px;
		height: 37px;
		top: 3px;
	}
	.container {
		width: 100%;
		padding: 0 15px;
	}
	main .container {
		padding: 0 15px 40px;
	}
	.contents main .container {
		border-radius: 0;
	}
}

/*----------------------------------------------------
 ヘッダー
----------------------------------------------------*/
header .header_upper .container {
	height: 130px;
	display: flex;
	align-items: center;
}
header .header_upper h2 {
	color: #666666;
	font-weight: 400;
	margin: 4px 0 0 46px;
}
header .header_nav {
	background-color: var(--color-main);
}
@media screen and (min-width: 835px) {
	header .header_nav nav > ul {
		display: flex;
		justify-content: space-around;
	}
	header .header_nav nav > ul > li {
		flex: 1 1 auto;
		text-align: center;
		padding: 0;
		transition: all 0.8s;
		position: relative;
	}
	header .header_nav nav > ul li:hover {
		background-color: #0093e1;
		transition: all 0.8s;
	}
	header .header_nav nav > ul > li::after {
		content: "";
		background-image: url(/common/images/navi_icon.png);
		width: 30px;
		height: 30px;
		background-size: 100%;
		display: block;
		position: absolute;
		top: 0;
		right: 3px;
		opacity: 0;
		transition: all 0.4s;
	}
	header .header_nav nav > ul > li:hover::after {
		opacity: 1;
		transform: translate(0, -17px);
		animation-name: navIcon;
		animation-duration: .6s;
		animation-timing-function: ease;
		animation-delay: 0s;
		animation-iteration-count: 1;
		animation-direction: normal;
	}
	@keyframes navIcon {
		0% {
			opacity: 0;
			transform: translate(0, 0);
		}
		50% {
			opacity: 1.0;
			transform: translate(0, -17px) rotateZ(0deg);
		}
		60% {
			transform: translate(0, -17px) rotateZ(15deg);
		}
		70% {
			transform: translate(0, -17px) rotateZ(-15deg);
		}
		100% {
			transform: translate(0, -17px) rotateZ(0deg);
		}
	}
	header .header_nav ul li a {
		display: block;
		color: #ffffff;
		padding: 12px;
	}
	header .header_nav ul li a:hover {
		opacity: 1.0;
	}

	/* サブメニュー */
	header li > ul.sub_navi {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: 39px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 50;
		text-align: center;
		background-color: var(--color-main);
		transition: all .4s ease;
		box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	}
	header li:hover > ul.sub_navi {
		visibility: visible;
		opacity: 1;
		transition: all .2s ease;
	}
	header li > ul.sub_navi li {
		border-top: 1px solid rgba(255,255,255,0.3);
		line-height: 1.4;
		font-size: 0.9375em;
		width: 240px;
	}
	header li > ul.sub_navi li a {
		padding: 10px;
	}
}
@media print {
	.header_nav {
		display: none;
	}
}
@media screen and (max-width: 834px) {
	header .header_upper {
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 100;
		background-color: #ffffff;
		box-shadow: 0 0 6px rgba(0,0,0,0.1);
	}
	header .header_upper .container {
		height: 54px;
	}
	header .header_upper .container img {
		height: 40px;
		width: auto;
	}
	header .header_upper h2 {
		display: none;
	}
	#spNaviIcon {
		cursor: pointer;
		display: block;
		width: 56px;
		height: 54px;
		z-index: 1001;
		position: fixed;
		top: 0;
		right: 0;
	}
	#spNaviIcon div {
		position: relative;
		width: 28px;
		margin: 15px auto 0;
	}
	#spNaviIcon span {
		display: block;
		position: absolute;
		left: 0;
		height: 4px;
		width: 100%;
		background-color: var(--color-main);
		transition: .35s ease-in-out;
	}
	#spNaviIcon span:nth-child(1) { top: 0; }
	#spNaviIcon span:nth-child(2) { top: 10px; }
	#spNaviIcon span:nth-child(3) { top: 20px; }

	.header_nav {
		position: fixed;
		width: 320px;
		height: 100%;
		top: 0;
		right: -320px;
		background-color: var(--color-main);
		z-index: 200;
		transition: all 0.2s;
		display: block;
		overflow: scroll;
	}
	.header_nav nav > ul {
		display: block;
		padding: 52px 0 0;
	}
	.header_nav nav > ul > li {
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	.header_nav nav > ul > li > a {
		color: #ffffff !important;
		display: block;
		margin-right: 40px;
		padding: 24px 0 24px 14px;
		position: relative;
	}
	.header_nav nav > ul > li > a::before {
		content: "";
		background-color: #a7e3fd;
		width: 3px;
		height: 46px;
		position: absolute;
		top: 8px;
		left: 0;
	}
	.header_nav nav ul > li.sub_arrow > a::after {
		content: "\f067";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		color: #ffffff;
		position: absolute;
		top: 50%;
		right: -30px;
		transform: translateY(-50%);
		pointer-events: none;
	}
	.header_nav nav ul > li.sub_arrow.is_open > a::after {
		content: "\f068";
	}
	/* サブメニュー */
	.header_nav nav li > ul {
		padding-left: 14px;
		display: none;
	}
	.header_nav nav li > ul li a {
		color: #ffffff !important;
		padding: 4px 0 20px 0;
		display: block;
		position: relative;
		line-height: 1.4;
	}
	.header_nav nav li > ul li a::before {
		content: "\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		color: #a7e3fd;
		margin-right: 0.25em;
	}
	.header_nav nav br {
		display: none;
	}
	/* #spNaviIcon 切替アニメーション */
	.open #spNaviIcon span {
		background-color: #ffffff;
	}
	.open #spNaviIcon span:nth-child(1) {
		top: 8px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.open #spNaviIcon span:nth-child(2),
	.open #spNaviIcon span:nth-child(3) {
		top: 8px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.open .header_nav {
		transform: translateX(-320px);
		transition: all 0.2s;
	}
	#overlay {
		position: fixed;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.5);
		z-index: 101;
		transition: all 0.2s;
	}
	.cover {
		opacity: 0;
		width: 0 !important;
	}
}

/*----------------------------------------------------
 フッター
----------------------------------------------------*/
#footer {
	width: 100%;
	padding: 50px 0;
	background-color: var(--color-main);
	color: #ffffff;
	text-align: center;
}
#footer .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
#footer #association_info {
	text-align: left;
}
#footer #association_info p {
	line-height: 1.6;
	margin: 18px 0 0;
}
#footer .footer_navi nav ul {
	width: 620px;
	display: flex;
	justify-content: space-between;
}
#footer .footer_navi nav ul li {
	text-align: left;
	line-height: 30px;
}
#footer .footer_navi nav ul li:nth-child(2),
#footer .footer_navi nav ul li:nth-child(3) {
	border-left: 1px solid #ffffff;
	padding-left: 14px;
}

#footer .footer_navi a {
	color: #ffffff !important;
}
#footer .footer_navi .copyright {
	font-size: 0.8125em;
	text-align: right;
	margin: 24px 0 0;
}
@media screen and (max-width: 834px) {
	#footer {
		padding: 35px 0 25px;
	}
	#footer .container {
		display: block;
	}
	#footer #association_info {
		text-align: center;
	}
	#footer #association_info img {
		width: 210px;
	}
	#footer #association_info p {
		line-height: 1.4;
		margin: 12px 0 0;
	}
	#footer .footer_navi nav {
		display: none;
	}
	#footer .footer_navi .copyright  {
		text-align: center;
		margin: 30px 0 0;
		line-height: 1.4;
	}
}

/*----------------------------------------------------
 ページTOP
----------------------------------------------------*/
#pageTop {
	position: fixed;
	bottom: 0;
	right: 5%;
	z-index: 1000;
}
#pageTop::before {
	content: "";
	background-color: rgba(173,204,238,0.6);
	width: 120px;
	height: 120px;
	display: block;
	border-radius: 120px;
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1
}
#pageTop a {
	width: 120px;
	display: block;
	padding: 40px 0 12px;
	text-align: center;
	color: #ffffff;
	font-size: 1.125em;
}
#pageTop a p {
	font-size: 0.75em;
	letter-spacing: 0.12em;
	margin: 4px 0 0;
}
@media screen and (max-width: 834px) {
	#pageTop::before {
		width: 100px;
		height: 100px;
		border-radius: 100px;
		bottom: -50px;
	}
	#pageTop a {
		width: 100px;
	}
}

/*----------------------------------------------------
 コンテンツビジュアル
----------------------------------------------------*/
#contents_vi {
	width: 100%;
	height: 340px;
	position: relative;
}
#contents_vi .contents_category {
	width: 1200px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
}
#contents_vi h2 {
	padding-left: 80px;
}
@media screen and (max-width: 834px) {
	#contents_vi {
		height: 160px;
		margin: 54px 0 0;
	}
	#contents_vi .contents_category {
		width: 100%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	#contents_vi h2 {
		padding-left: 15px;
		height: 40px;
		width: auto;
		text-align: left;
	}
	#contents_vi h2 img {
		width: auto;
		height: 100%;
		object-fit: contain;
	}
}

/*----------------------------------------------------
 トピックパス
----------------------------------------------------*/
#breadcrumb {
	padding: 14px 0;
	margin: 0 auto;
	width: 100%;
	background-color: #e9f8fe;
	color: #666666;
}
#breadcrumb .container {
	display: flex;
	font-size: 0.875em;
	align-items: center;
}
#breadcrumb .fa-home {
	margin-right: 0.25em;
}
#breadcrumb a {
	color: var(--color-main);
	text-decoration: none;
}
#breadcrumb .delimiter {
	margin: 0 0.8em;
	color: #999999;
}
#breadcrumb * {
	white-space: nowrap;
}
#breadcrumb .current {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
@media screen and (max-width: 834px) {
	#breadcrumb {
		height: 43px;
		border-bottom: none;
		margin: 0;
		padding: 10px 0;
		box-shadow: none;
	}
	#breadcrumb::before {
		content: none;
	}
	#breadcrumb a,
	#breadcrumb .current {
		display: inline-block;
		padding: 5px;
		background-color: #ffffff;
		position: relative;
		margin-right: 10px;
		vertical-align: middle;
	}
	#breadcrumb a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: -8px;
		transform: translateY(-50%);
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 11.5px 0 11.5px 8px;
		border-color: transparent transparent transparent #ffffff;
	}
	#breadcrumb .home span,
	#breadcrumb .delimiter {
		display: none;
	}
}

/*----------------------------------------------------
 コンテンツタイトル
----------------------------------------------------*/
#contents_title {
	text-align: center;
	margin: 0 0 56px;
	position: relative;
	z-index: 5;
}
#contents_title i {
	font-size: 3.125em;
	margin: -12px 0 12px;
}
#contents_title h2 {
	font-size: 3.125em;
	font-family: 'Baloo 2', cursive;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin: 0 0 8px;
}
#contents_title h3 {
	font-size: 1.25em;
	color: #9a9a9a;
}
@media screen and (max-width: 834px) {
	#contents_title {
		margin: 0 0 30px;
	}
	#contents_title i {
		font-size: 1.75em;
		margin: -6px 0 12px;
	}
	#contents_title h2 {
		font-size: 1.75em;
		margin: 0 0 6px;
	}
	#contents_title h3 {
		font-size: 1.2em;
	}
}

/*----------------------------------------------------
 共通パーツ
----------------------------------------------------*/
/* イントロコピーフォーマット */
/* ボックスフォーマット */
.sec_block {
	margin: 0 0 60px;
}

/* イントロコピーフォーマット */
.intro {
	text-align: center;
	line-height: 2.0;
}

/* リード文フォーマット */
.sentence p:not(.intro) {
	line-height: 1.8;
	text-align: justify;
}

/* インデントテキスト */
p.indent {
	text-indent: 1em;
}

/* 注意書き */
.caution {
	padding-left: 1em;
	text-indent: -1em;
}
.caution a {
	padding-left: 0;
	text-indent: 0;
}

/* 配置フォーマット */
.floatRight {
	float: right;
	margin: 0 0 40px 40px;
}
.floatLeft {
	float: left;
	margin: 0 40px 40px 0;
}
.figRight {		/* 左右入れ替え */
	display: flex;
	align-items: flex-start;
	flex-direction: row-reverse;
}
.figRight .sentence {
	margin-right: 40px;
}
.figLeft {
	display: flex;
	align-items: flex-start;
}
.figLeft .sentence {
	margin-left: 40px;
}
.pic figcaption {
	font-size: 0.875em;
	line-height: 1.4em;
	margin: 10px 0;
	text-align: center;
}
@media screen and (max-width: 834px) {
	.sec_block {
		margin: 0 0 40px;
		overflow: hidden;
	}
	.intro {
		text-align: justify;
	}
	.sentence p:not(.intro) {
		line-height: 1.6;
	}
	.floatRight {
		margin: 0 0 20px 20px;
	}
	.floatLeft {
		margin: 0 20px 20px 0;
	}

	.figRight,
	.figLeft {
		display: block;
	}
	.figRight .sentence,
	.figLeft .sentence {
		margin: 0;
	}
	.figRight .pic,
	.figLeft .pic {
		display: block;
		text-align: center;
		margin: 0 0 30px;
	}
	.figRight .pic img,
	.figLeft .pic img {
		width: 100%;
		height: auto;
		max-width: 300px;
	}
}

/*----------------------------------------------------
 書式フォーマット
----------------------------------------------------*/
.page_content h2 {
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.4;
	background-color: #f5f5f5;
	padding: 15px 15px 15px 18px;
	margin: 0 0 40px;
	position: relative;
	border-width: 0 0 0 10px;
	border-style: solid;
}
.page_content h2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background-color: #fff;
	display: inline-block;
}
.page_content h3.theme_belt {
	font-size: 1.25em;
	font-weight: 700;
	padding: 12px;
	color: #ffffff;
	margin: 0 0 30px;
}
@media screen and (max-width: 834px) {
	.page_content h2 {
		font-size: 1.2em;
		padding: 12px;
		border-width: 0 0 0 6px;
		margin: 0 0 20px;
	}
	.page_content h2::before {
		width: 4px;
	}
	.page_content h3.theme_belt {
		font-size: 1.125em;
		padding: 10px;
	}
}

/*----------------------------------------------------
 レイアウトフォーマット
----------------------------------------------------*/
.column_2 {
	display: grid;
	grid-template-columns: calc(50% - 24px) calc(50% - 24px);
	grid-gap: 40px 48px;
	margin: 0 0 60px;
}
.column_3 {
	display: grid;
	grid-template-columns: 328px 328px 328px;
	grid-gap: 40px 58px;
	margin: 0 0 60px;
}
.column_4 {
	display: grid;
	grid-template-columns: 254px 254px 254px 254px;
	grid-gap: 40px 28px;
	margin: 0 0 60px;
}

/* テーブル */
th,td {
	padding: 20px 15px;
	line-height: 1.8;
	vertical-align: middle;
}
@media screen and (max-width: 834px) {
	.column_2,
	.column_3,
	.column_4 {
		grid-template-columns: 100%;
		grid-gap: 40px;
		margin: 0 0 40px;
	}
	th,td {
		padding: 8px;
	}
}

/*----------------------------------------------------
 プレゼントバナー
----------------------------------------------------*/
.present .inner {
	width: 920px;
	margin: 0 auto;
	position: relative;
	transition: all 0.4s;
}
.present .inner:hover {
	opacity: 0.7;
}
.present .inner p {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
}
.present .inner span {
	font-weight: 700;
	font-size: 1.0625em;
	color: var(--color-knowledge);
	position: absolute;
	bottom: 30px;
	right: 66px;
	transform: rotate(5deg);
}
@media screen and (max-width: 834px) {
	.present {
		margin: 15px -15px 0;
	}
	.present .inner {
		background: linear-gradient(to right, #e0c399 0%,#f9f5e9 30%,#f9f5e9 70%,#e0c399 100%);
		position: relative;
		width: 100%;
		height: 276px;
		padding: 215px 0 0;
	}
	.present .inner::before,
	.present .inner::after {
		content: "";
		background: linear-gradient(to right, #916134 0%,#eadec8 30%,#eadec8 70%,#916134 100%);
		width: 100%;
		height: 10px;
		display: block;
		position: absolute;
	}
	.present .inner::before {
		top: 0;
	}
	.present .inner::after {
		bottom: 0;
	}
	.present .inner p,
	.present .inner span {
		position: static;
		transform: none;
		display: block;
		text-align: center;
		padding: 3px 0;
	}
	.present .inner img {
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translateX(-50%);
		max-width: 440px;
	}
}

/*----------------------------------------------------
 コンクールパーツ
----------------------------------------------------*/
.badge {
	font-size: 1.25em;
	font-weight: 700;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	text-align: center;
	line-height: 1.1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 6px 0 0px;
}
.badge::after {
	content: "\f521";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 0.9em;
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
}
.badge_s {
	font-size: 1.10em;
}
.best_prize {
	color: #ffffff;
	background-color: #ff801e;
}
.good_prize {
	color: #ffffff;
	background-color: #ffad1e;
}
.other_awards {
	position: absolute;
	bottom: 6px;
	right: 6px;
	padding: 4px 6px;
	background-color: #ffffff;
	color: #ff4400;
	font-size: 0.975em;
	line-height: 1;
}
.fine_prize {
	color: #ff801e;
	background-color: #ffffff;
	border: 1px solid #ff801e;
}
.cooking_prize .fine_prize::after {
	content: "\f2e7";
}
@media screen and (max-width: 834px) {
	.badge {
		width: 80px;
		height: 80px;
		font-size: 1.05em;
	}
	.badge_s {
		font-size: 1.0em;
	}
}


/*----------------------------------------------------
 Luminous調整
----------------------------------------------------*/

.lum-open {
	z-index: 3000;
}
@media screen and (max-width: 834px) {
	.luminous {
		pointer-events: none;
	}
}
