@charset "utf-8";
/* CSS Document */

/* 初期設定 */
* {
    border: medium none;
    font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
    font-size: 14px;
    font-weight: normal;
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #151515;
    font-style: normal;
	box-sizing: border-box;
}
strong {
    font-weight: bold;
}
img {
    vertical-align: bottom;
}
table {
    border-collapse: collapse;
}
a:hover img, input[type="image"]:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
    border: none;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}

/* iOSでのデフォルトスタイルをリセット */
body {
    -webkit-text-size-adjust: 100%;
}
input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
outline-offset: -2px;
}

@media (min-width: 781px) {
	.sp {
		display: none !important;
	}
}
@media (max-width: 780px) {
	.pc {
		display: none !important;
	}
}

@font-face {
	font-family: "kanjuku_g";
	src: url("../fonts/kanjuku_g.woff2") format("woff2"), url("../fonts/kanjuku_g.woff") format("woff"), url("../fonts/kanjuku_g.eot") format("eot");
}


header {
	position: fixed;
	width: 100%;
	height: 120px;
	left: 0px;
	top: 0px;
	z-index: 1000;
	background: rgba(255,255,255,0.9);
}

body.top header {
	background: url("../images/head_bg.png") no-repeat center top/1122px auto;
	height: 140px;
}

header h1 {
	position: absolute;
	top: 20px;
	left: calc(50% - 75px);
	z-index: 1000;
}

header .gnav {
	max-width: 760px;
	width: 100%;
	position: absolute;
	top: 20px;
	left: calc(50% - 380px);
}

header .gnav ul {
	display: flex;
	justify-content: space-between;
}

header .gnav ul::before {
	content: "";
	display: block;
	order: 3;
	flex-grow: 3;
}

header .gnav ul li {
	padding: 0px 10px;
}

header .gnav ul li:nth-of-type(2) {order: 1; border-right: 1px dotted #c2c2c2;}
header .gnav ul li:nth-of-type(3) {order: 2;}
header .gnav ul li:nth-of-type(4) {order: 4; border-right: 1px dotted #c2c2c2;}
header .gnav ul li:nth-of-type(5) {order: 5;}

header .gnav ul li a {
	font-family: "kanjuku_g", sans-serif;
	text-align: center;
	font-size: 13px;
	color: #7b7b7b;
	display: inline-block;
	padding: 5px 20px;
	border-radius: 12px;
}

header .gnav ul li a:hover, header .gnav ul li a.current {
	background-color: #F0EFE4;
}

header .gnav ul li a span {
	font-family: "kanjuku_g", sans-serif;
	font-size: 20px;
	text-align: center;
	display: block;
	margin-bottom: 5px;
}

header .gnav ul li a span.top {color: #cecbba;}
header .gnav ul li a span.lineup {color: #f0831e;}
header .gnav ul li a span.about {color: #79c5c1;}
header .gnav ul li a span.column {color: #5eb366;}
header .gnav ul li a span.campaign {color: #eb6e6e;}

header .head_link {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	position: absolute;
	right: 20px;
	top: 40px;
}

header .head_link li:not(:first-child) {
	margin-left: 15px;
}


@media (min-width: 881px) {
	header button, header .gnav > p, header .gnav > ul > li > ul, header .gnav > ul > li:first-child {
		display: none;
	}
}
@media (max-width: 880px) {
	
	a.btn {
		width: 100%;
		height: 50px;
		font-size: 18px;
	}
	
	header {
		justify-content: center;
		-ms-justify-content: center;
		-webkit-justify-content: center;
	}
	header .gnav {
		top: 0px;
		left: -200px;
		width: 200px;
		height: 100vh;
		background-color: #f7f6ee;
		transition: 0.3s left ease-out;
		z-index: 1000;
	}
	body.nav_on header .gnav {
		left: 0px;
		overflow-y: auto;
	}
	header .gnav ul {
		display: flex;
		flex-flow: wrap;
		align-items: center;
		display: -ms-flex;
		-ms-flex-flow: wrap;
		-ms-align-items: center;
		display: -webkit-flex;
		-webkit-flex-flow: wrap;
		-webkit-align-items: center;
	}
	header .gnav ul li {
		border-bottom: 1px solid #ccc;
		display: block;
		width: 100%;
		padding: 0px;
	}
	header .gnav ul li:not(:first-child) {
		margin-left: 0px;
	}
	header .gnav ul li a {
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		justify-content: center;
		display: -ms-flex;
		-ms-flex-flow: column;
		-ms-align-items: flex-start;
		-ms-justify-content: center;
		display: -webkit-flex;
		-webkit-flex-flow: column;
		-webkit-align-items: flex-start;
		-webkit-justify-content: center;
		height: 100%;
		height: 50px;
		padding: 0px 0px 0px 10px;
		border-radius: 0px;
		box-sizing: border-box;
	}
	header .gnav ul li a:hover, header .gnav ul li a.current, header .gnav > p.close:hover {
		background-color: #fff;
		color: #111;
	}
	
	header .gnav > ul > li > ul {
		border-top: 1px solid #ccc;
	}
	
	header .gnav > ul > li > ul > li > a {
		padding-left: 25px;
		font-size: 16px;
	}

	header .gnav > p.sns_sp {
		height: 50px;
		border-bottom: 1px solid #ccc;
		display: flex;
		flex-flow: wrap;
		align-items: center;
		justify-content: space-around;
		display: -ms-flex;
		-ms-flex-flow: wrap;
		-ms-align-items: center;
		-ms-justify-content: space-around;
		display: -webkit-flex;
		-webkit-flex-flow: wrap;
		-webkit-align-items: center;
		-webkit-justify-content: space-around;
	}

	header .gnav > p.close {
		height: 50px;
		border-bottom: 1px solid #ccc;
		display: flex;
		flex-flow: wrap;
		align-items: center;
		display: -ms-flex;
		-ms-flex-flow: wrap;
		-ms-align-items: center;
		display: -webkit-flex;
		-webkit-flex-flow: wrap;
		-webkit-align-items: center;
		padding-left: 10px;
		font-size: 16px;
		cursor: pointer;
	}

	header button {
		position: absolute;
		left: 0px;
		top: 0px;
		width: 70px;
		height: 70px;
		background-color: #eb6d9b;
		cursor: pointer;
	}
	header button span {
		display: block;
		width: 40px;
		height: 4px;
		background-color: #fff;
		border-radius: 3px;
		position: absolute;
	}
	header button span:nth-of-type(1) {left: 15px; top: 12px;}
	header button span:nth-of-type(2) {left: 15px; top: 24px;}
	header button span:nth-of-type(3) {left: 15px; top: 36px;}
	header button p {
		color: #fff;
		text-align: center;
		position: absolute;
		left: 0px;
		top: 46px;
		font-size: 12px;
		width: 100%;
	}
	header .head_link {
		display: none;
	}

	.blur {
		filter: blur(0px);
		-webkit-filter: blur(0px);
		transition: 0.2s filter ease-out;
	}
	.blur::before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		transition: 0.2s background-color ease-out;
		position: absolute;
		top: 0px;
		left: 0px;
	}
	body.nav_on .blur {
		filter: blur(5px);
		-webkit-filter: blur(5px);
	}
	body.nav_on .blur::before {
		background-color: rgba(0,0,0,0.5);
	}
}

@media (max-width: 580px) {
	header, body.top header {
		height: 110px;
	}
	header h1 {
		max-width: 120px;
		left: calc(50% - 60px);
	}
	header h1 img {
		max-width: 100%;
	}

}

.main {
	height: 660px;
	background: url("../images/main_bg_left.png") no-repeat left bottom, url("../images/main_bg_right.png") no-repeat right bottom;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: flex-end;
	display: -ms-flex;
	-ms-flex-flow: column;
	-ms-align-items: center;
	-ms-justify-content: flex-end;
	display: -webkit-flex;
	-webkit-flex-flow: column;
	-webkit-align-items: center;
	-webkit-justify-content: flex-end;
}

.main img:nth-of-type(1) {margin-bottom: 60px; max-width: 30%;}
.main img:nth-of-type(2) {margin-bottom: 0px; max-width: 80%;}
.main img:nth-of-type(3) {margin-bottom: 20px; max-width: 90%;}


.top_link_list {
	display: flex;
	flex-flow: wrap;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	margin: 0px 30px 30px;
}

.top_link_list > li:nth-of-type(1) {
	width: 33.333%;
	box-sizing: border-box;
}

.top_link_list > li:nth-of-type(2) {
	width: 66.666%;
	box-sizing: border-box;
}

.top_link_list > li:nth-of-type(1) {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-align-content: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-align-content: center;
	-webkit-justify-content: center;
	padding: 20px 30px;
	border-right: 1px dotted #dedaba;
}

.top_link_list > li:nth-of-type(1) img {
	display: block;
	margin: 0 auto 10px;
	max-width: 100%;
}

.top_link_list > li:nth-of-type(1) dl dt p {
	font-size: 25px;
	color: #f67804;
	font-weight: bold;
	margin-bottom: 10px;
}

.top_link_list > li:nth-of-type(1) dl dt span {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #636363;
}

.top_link_list > li:nth-of-type(1) dl dd {
	overflow: hidden;
}

.top_link_list > li:nth-of-type(1) dl dd p {
	color: #262626;
}

.top_link_list > li:nth-of-type(1) dl dd aside {
	font-size: 12px;
	color: #262626;
	margin-bottom: 20px;
}

.top_link_list > li:nth-of-type(1) dl dd a {
	display: inline-block;
	padding: 2px 20px;
	border-radius: 10px;
	background-color: #f67804;
	color: #fff;
	float: right;
}

.top_link_list > li ul {
	display: flex;
	flex-flow: wrap;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
}

.top_link_list > li ul li {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	width: 50%;
	box-sizing: border-box;
	padding: 20px 30px;
}

.top_link_list > li ul li:nth-of-type(1) {
	border-right: 1px dotted #dedaba;
}

.top_link_list > li:nth-of-type(2) {
	display: flex;
	flex-flow: column;
	align-items: center;
	align-content: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: column;
	-ms-align-items: center;
	-ms-align-content: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: column;
	-webkit-align-items: center;
	-webkit-align-content: center;
	-webkit-justify-content: center;
}

.top_link_list > li:nth-of-type(2) ul li {
	box-sizing: border-box;
}

.top_link_list > li:nth-of-type(2) ul:nth-of-type(1) li {
		border-bottom: 1px dotted #dedaba;
}

.top_link_list > li ul li img {
	display: block;
	margin: 0 auto 10px;
	max-width: 100%;
}

.top_link_list > li ul li dl {
	width: calc(100% - 240px);
}

.top_link_list > li ul li dl dt p {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 10px;
}

.top_link_list > li:nth-of-type(2) ul:nth-of-type(1) li:nth-of-type(1) dl dt p {color: #79c5c1;}
.top_link_list > li:nth-of-type(2) ul:nth-of-type(1) li:nth-of-type(2) dl dt p {color: #ce4141;}
.top_link_list > li:nth-of-type(2) ul:nth-of-type(2) li:nth-of-type(1) dl dt p {color: #288535;}
.top_link_list > li:nth-of-type(2) ul:nth-of-type(2) li:nth-of-type(2) dl dt p {color: #288535;}

.top_link_list > li ul li dl dt span {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #636363;
}

.top_link_list > li ul li dl dd {
	overflow: hidden;
}

.top_link_list > li ul li dl dd p {
	color: #262626;
	margin-bottom: 20px;
}



.top_link_list > li ul li dl dd a {
	display: inline-block;
	padding: 2px 20px;
	border-radius: 10px;
	color: #fff;
	float: right;
	position: relative;
}

.top_link_list > li:nth-of-type(2) ul:nth-of-type(1) li:nth-of-type(1) dl dd a {background-color: #79c5c1;}
.top_link_list > li:nth-of-type(2) ul:nth-of-type(1) li:nth-of-type(2) dl dd a {background-color: #ce4141;}
.top_link_list > li:nth-of-type(2) ul:nth-of-type(2) li:nth-of-type(1) dl dd a {background-color: #288535;}
.top_link_list > li:nth-of-type(2) ul:nth-of-type(2) li:nth-of-type(2) dl dd a {background-color: #288535;}

@media (max-width: 1600px) {
	.top_link_list > li ul li {
		flex-flow: column;
		-ms-flex-flow: column;
		-webkit-flex-flow: column;
	}
	.top_link_list > li ul li dl {
		width: 100%;
	}
}

@media (max-width: 1240px) {
	.main {
		background: url("../images/main_bg_left.png") no-repeat left center/52.585% auto, url("../images/main_bg_right.png") no-repeat right center/47.416% auto;
	}
	header .head_link {
		top: 80px;
	}
}

@media (max-width: 980px) {
	.top_link_list > li:nth-of-type(1) dl dt p, .top_link_list > li ul li dl dt p {
		font-size: 20px;
	}
}

@media (min-width: 881px) {
	.sp_top_cm {
		display: none;
	}
}

@media (max-width: 880px) {
	body.top header {
		background: rgba(255,255,255,0.9);
	}
	.top_link_list {
		display: block;
		margin: 0px 0px 30px;
	}
	.top_link_list > li:nth-of-type(1) {
		width: 100%;
		border-right: none;
		border-bottom: 1px dotted #dedaba;
	}
	.top_link_list > li:nth-of-type(2) {
		width: 100%;
	}
	.sp_top_cm {
		display: flex;
		flex-flow: wrap;
		align-items: center;
		display: -ms-flex;
		-ms-flex-flow: wrap;
		-ms-align-items: center;
		display: -webkit-flex;
		-webkit-flex-flow: wrap;
		-webkit-align-items: center;
		color: #fff;
		background-color: #ce4141;
		height: 60px;
		padding-left: 140px;
		padding-right: 40px;
		position: relative;
		font-size: 18px;
		line-height: 1.2em;
	}
	.sp_top_cm span {
		color: inherit;
		font-size: inherit;
		display: inline-block;
	}
	.sp_top_cm::before {
		content: "";
		display: block;
		width: 120px;
		height: 120px;
		background: url("../images/top_img_04@2x.png") no-repeat center/contain;
		position: absolute;
		left: 10px;
		top: -30px;
	}
	
	.sp_top_cm::after {
		content: "";
		display: block;
		width: 15px;
		height: 15px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		transform: rotate(45deg);
		position: absolute;
		top: calc(50% - 9px);
		right: 20px;
	}
}

@media (max-width: 640px) {
	.main {
		height: 550px;
	}
	.main img:nth-of-type(1) {
		margin-bottom: 30px;
	}
	.top_link_list > li:nth-of-type(1) dl {
		max-width: 400px;
	}
	.top_link_list > li:nth-of-type(1) dl dd a {
		width: 100%;
		font-size: 18px;
		text-align: center;
		padding: 15px 0px;
	}
	.top_link_list > li ul {
		display: block;
		width: 100%;
	}
	.top_link_list > li ul li {
		width: 100%;
		display: block;
	}
	.top_link_list > li ul li dl {
		max-width: 400px;
		margin: 0 auto;
	}
	.top_link_list > li:nth-of-type(2) ul:nth-of-type(1) li, .top_link_list > li ul li:nth-of-type(1) {
		border-right: none;
	}
	.top_link_list > li ul li dl dd a {
		width: 100%;
		font-size: 18px;
		text-align: center;
		padding: 15px 0px;
	}
	.top_link_list > li:nth-of-type(2) ul li {
		border-bottom: 1px dotted #dedaba;
	}
}

@media (max-width: 480px) {
	.main {
		height: 420px;
	}
	.main img:nth-of-type(1) {
		margin-bottom: 0px;
	}
}

.h2_title {
	height: 140px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: column;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: column;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	margin-top: 140px;
	position: relative;
}

.h2_title p {
	font-family: "kanjuku_g", sans-serif;
	color: #fff;
	font-size: 30px;
	margin-bottom: 5px;
}

.h2_title span {
	font-family: "kanjuku_g", sans-serif;
	color: #fff;
	font-size: 20px;	
}



body.lineup .h2_title {	background-color: #eb6d9b;}
body.lineup .h2_title img {position: absolute; right: calc(50% - 490px); top: -20px;}
body.about .h2_title { background-color: #79c5c1;}
body.about .h2_title img { position: absolute; right: calc(50% - 490px); top: -20px;}
body.campaign .h2_title { background-color: #eb6e6e;}
body.campaign .h2_title img { position: absolute; right: calc(50% - 490px); top: -20px;}
body.column .h2_title {	background-color: #5eb366;}
body.column .h2_title img { position: absolute; right: calc(50% - 490px); top: -20px;}

@media (max-width: 980px) {
	body.lineup .h2_title img, body.about .h2_title img, body.campaign .h2_title img, body.column .h2_title img {
		right: 10px;
	}
}
@media (max-width: 640px) {
	.h2_title {
		height: 120px;
		align-items: flex-start;
		-ms-align-items: flex-start;
		-webkit-align-items: flex-start;
		padding-left: 5%;
	}
	.h2_title p {
		font-size: 24px;
	}
	.h2_title span {
		font-size: 16px;
	}
	body.lineup .h2_title img {
		width: 150px;
		top: 10px;
	}
	body.about .h2_title img {
		width: 90px;
	}
	body.column .h2_title img {
		width: 110px;
	}
	body.campaign .h2_title img {
		width: 140px;
		top: 5px;
	}
}
.lineup_disc {
	margin: 70px 0px 20px;
	text-align: center;
	color: #636363;
	font-size: 18px;
	font-weight: bold;
}

.lineup_ai {
	display: block;
	margin: 0 auto 40px;
}


.lineup_disc span.ul {
	font-size: inherit;
	font-weight: inherit;
	color: #eb6d9b;
	text-decoration: underline;
}
.lineup_disc span.ib {
	font-size: inherit;
	font-weight: inherit;
	display: inline-block
}


footer {
	background-color: #fff;
}

footer .foot_link {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	height: 50px;
	background-color: #666;
}

footer .foot_link li {
	margin: 0px 15px;
}

footer .foot_link li a {
	color: #fff;
}

footer .foot_inner {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: space-between;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: space-between;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	padding: 15px;
	box-sizing: border-box;
}

footer .foot_inner div {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	font-size: 12px;
}

footer .foot_inner div img {
	margin-right: 10px;
	width: 65px;
}

footer .foot_inner > a {
	display: inline-flex;
	flex-flow: wrap;
	align-items: center;
	display: -ms-inline-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	display: -webkit-inline-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	background-color: #ff0000;
	border-radius: 5px;
	padding: 6px 13px;
	color: #fff;
	font-size: 12px;
}

footer .foot_inner > a::after {
	content: "▲";
	color: #fff;
	font-size: 10px;
	transform: rotate(90deg);
	margin-left: 15px;
	
}

footer .foot_inner p {
	font-size: 10px;
	font-family: Arial, Helvetica, "sans-serif";
}

@media (min-width: 881px) {
	footer .foot_gnav {
		display: none;
	}
}

@media (max-width: 880px) {
	footer .foot_gnav {
		flex-flow: column;
		-ms-flex-flow: column;
		-webkit-flex-flow: column;
		background-color: #f0831e;
	}
	footer .foot_gnav li {
		margin: 0px;
		display: block;
		width: 100%;
		border-bottom: 1px solid #fff;
	}
	footer .foot_gnav li a {
		display: flex;
		flex-flow: wrap;
		align-items: center;
		display: -ms-flex;
		-ms-flex-flow: wrap;
		-ms-align-items: center;
		display: -webkit-flex;
		-webkit-flex-flow: wrap;
		-webkit-align-items: center;
		padding: 10px;
		color: #fff;
		position: relative;
	}
	footer .foot_gnav li a::after {
		content: "";
		display: block;
		width: 7px;
		height: 7px;
		border-right: 1px solid #fff;
		border-top: 1px solid #fff;
		transform: rotate(45deg);
		position: absolute;
		right: 10px;
		top: calc(50% - 5px);
	}
	footer .foot_link {
		flex-flow: column;
		-ms-flex-flow: column;
		-webkit-flex-flow: column;
		height: auto;
	}
	footer .foot_link li {
		margin: 0px;
		display: block;
		width: 100%;
		border-bottom: 1px solid #fff;
		position: relative;
	}
	footer .foot_link li a {
		display: flex;
		flex-flow: wrap;
		align-items: center;
		display: -ms-flex;
		-ms-flex-flow: wrap;
		-ms-align-items: center;
		display: -webkit-flex;
		-webkit-flex-flow: wrap;
		-webkit-align-items: center;
		padding: 10px;
	}
	footer .foot_inner {
		flex-flow: column;
		-ms-flex-flow: column;
		-webkit-flex-flow: column;
	}
	footer .foot_inner div {
		margin-bottom: 10px;
		order: 1;
	}
	footer .foot_inner > a {
		margin-bottom: 10px;
		order: 0;
	}
	footer .foot_inner > p {
		order: 2;
	}
}

.pagetop {
	width: 52px;
	margin-bottom: 20px;
	margin-left: calc(100% - (50% - 520px));
	height: 35px;
	border-radius: 5px;
	background-color: #b2b2b2;
	box-sizing: border-box;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	flex-flow: -ms-wrap;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	cursor: pointer;
	position: relative;
}

.pagetop::before {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	display: block;
	position: relative;
	transform: rotate(-45deg);
}

@media (max-width: 1200px) {
	.pagetop {
		margin-left: calc(100% - 80px);
	}
}

@media (max-width: 780px) {
	.pagetop {
		width: 80%;
		max-width: 500px;
		margin: 0 auto 20px;
	}
}




.tab {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-justify-content: space-between;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-justify-content: space-between;
	max-width: 980px;
	width: 98%;
	margin: 0 auto;
}

.tab li {
	max-width: 230px;
	width: 23.46938%;
	height: 50px;
	border-radius: 10px 10px 0px 0px;
	border-top: 2px solid #f7f6ee;
	border-left: 2px solid #f7f6ee;
	border-right: 2px solid #f7f6ee;
	font-size: 18px;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	cursor: pointer;
	position: relative;
}

.tab li.active {
	background-color: #f7f6ee;
}

.tab li.active::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-right: 1px solid #111;
	border-bottom: 1px solid #111;
	transform: rotate(45deg);
	margin-right: 10px;
	margin-bottom: 3px;
}

@media (max-width: 880px) {
	.tab li {
		font-size: 14px;
		width: 24.5%;
	}
	.tab li.active::before {
		width: 5px;
		height: 5px;
	}
}

@media (max-width: 640px) {
	.tab li {
		width: 50%;
		max-width: 50%;
	}
	.tab li:nth-of-type(even) {
		width: calc(50% - 1px);
	}
	.tab li:nth-last-child(n+3) {
		margin-bottom: 1px;
	}
}

.area {
	margin-bottom: 100px;
}

.area section {
	display: none;
}

.area section.show {
	display: block;
}

.lineup_bg {
	background-color: #f7f6ee;
}

.lineup_content {
	max-width: 980px;
	width: 96%;
	padding: 80px 0px;
	margin: 0 auto;
}

.lineup_title {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: space-between;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: space-between;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	margin-bottom: 30px;
}

.lineup_title h3 {
	font-size: 30px;
	display: inline-flex;
	flex-flow: wrap;
	align-items: center;
	display: -ms-inline-flex;
	-ms-iflex-flow: wrap;
	-ms-ialign-items: center;
	display: -webkit-inline-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	margin-right: 10px;
}

.lineup_content h3::before {
	content: "";
	display: block;
	width: 26px;
	height: 26px;
	background: url("../images/circle_icon.png") no-repeat center/contain;
	margin-right: 10px;
}

.lineup_title h3 span {
	font-size: 20px;
}

@media (max-width: 640px) {
	.area {
		margin-bottom: 50px;
	}
	.lineup_content {
		padding: 40px 0px;
	}
	.lineup_title h3 {
		font-size: 24px;
	}
	.lineup_title h3 span {
		font-size: 16px;
	}
}

.lineup_category {
	display: inline-flex;
	flex-flow: wrap;
	display: -ms-inline-flex;
	-ms-flex-flow: wrap;
	display: -webkit-inline-flex;
	-webkit-flex-flow: wrap;
}

.lineup_category li {
	display: inline-block;
	padding: 3px 15px;
	color: #fff;
}

.lineup_category li:not(:first-child) {
	margin-left: 1px;
}

.lineup_category li.kokusan {background-color: #e00616;}
.lineup_category li.ippan {background-color: #ff6500;}
.lineup_category li.jelly {background-color: #598d40;}
.lineup_category li.toromi {background-color: #b49b39;}
.lineup_category li.sougou {background-color: #eb6d9b;}
.lineup_category li.creamy {background-color: #b7a36e;}
.lineup_category li.oligo {background-color: #3783a5;}
.lineup_category li.oyatsu {background-color: #ca6e37;}
.lineup_content > p {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}

.lineup_list {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-justify-content: space-between;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-justify-content: space-between;
	margin-bottom: 50px;
}

.lineup_list li {
	display: flex;
	flex-flow: wrap;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	max-width: 230px;
	width: 23.46938%;
	position: relative;
}

.lineup_list li {
	margin-bottom: 20px;
}

.lineup_list li a {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	-msflex-flow: column;
	-msalign-items: center;
	-msjustify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: column;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	width: 100%;
	padding: 20px 0px;
	background-color: #fff;
	border: 1px solid #fccfdf;
	border-radius: 20px;
	position: relative;
}

.lineup_list li img {
	max-width: 210px;
	width: 90%;
	height: auto;
	align-self: center;
	-ms-align-self: center;
	-webkit-align-self: center;
}

.lineup_list li a:hover img {
	opacity: 1;
}

.lineup_list::before {
	content: "";
	display: block;
	max-width: 230px;
	width: 23.46938%;
	order: 1;
}

.lineup_list::after {
	content: "";
	display: block;
	max-width: 230px;
	width: 23.46938%;
}

.kodawari_box {
	border: 1px dashed #fcb3ce;
	background-color: #fff;
	padding: 10px;
	text-align: center;
	margin-bottom: 40px;
}

.kodawari_box h4 {
	display: inline-block;
	border: 1px solid #fcb3ce;
	border-radius: 20px;
	padding: 0px 20px;
	background-color: #fff;
	font-weight: bold;
	margin: 20px 0px 15px;
}

.kodawari_box h5 {
	font-size: 22px;
	color: #eb6d9b;
	font-weight: bold;
	margin-bottom: 20px;
}

.kodawari_box ul {
	display: flex;
	flex-flow: wrap;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
}

.kodawari_box ul li {
	width: calc((100% - 30px) / 3);
	background-color: #feeef4;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	padding: 10px;
	position: relative;
}

.kodawari_box ul li::before {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	background-color: #eb6d9b;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	top: 5px;
	left: 5px;
	line-height: 1em;
}

.kodawari_box ul li:nth-of-type(1)::before {content: "1";}
.kodawari_box ul li:nth-of-type(2)::before {content: "2";}
.kodawari_box ul li:nth-of-type(3)::before {content: "3";}
.kodawari_box ul li:nth-of-type(4)::before {content: "4";}
.kodawari_box ul li:nth-of-type(5)::before {content: "5";}
.kodawari_box ul li:nth-of-type(6)::before {content: "6";}

.kodawari_box ul li:nth-last-child(n+4) {
	margin-bottom: 15px;
}
.kodawari_box ul li:not(:nth-of-type(3n+1)) {
	margin-left: 15px;
}
.kodawari_box ul li dl dt {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.kodawari_box aside {
	text-align: right;
	font-size: 12px;
	margin-top: 5px;
}



.creamy_img, .gourmet_flake_img, .furikake_stick_img {
	max-width: 96%;
	display: block;
	margin: 40px auto;
}

@media (max-width: 780px) {
	.kodawari_box ul li {
		width: calc((100% - 10px) / 2);
	}
	.kodawari_box ul li:not(:nth-of-type(3n+1)) {
		margin-left: 0px;
	}
	.kodawari_box ul li:not(:nth-of-type(2n+1)) {
		margin-left: 10px;
	}
	.kodawari_box ul li {
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.kodawari_box ul li {
		width: 100%;
	}
	.kodawari_box ul li:not(:nth-of-type(2n+1)) {
		margin-left: 0px;
	}
}


@media (max-width: 640px) {
	.lineup_list li {
		width: 49%;
		max-width: 49%;
	}
	.lineup_list li:nth-last-child(n+3) {
		margin-bottom: 10px;
	}
	
}

.content {
	max-width: 980px;
	width: 96%;
	margin: 0 auto 30px;
}

.about_disc {
	font-size: 16px;
	margin: 40px 0px;
	text-align: center;
}

.about_disc span.ul {
	color: #ff0000;
	text-decoration: underline;
	font-size: inherit;
}

.about_disc span.ib {
	color: inherit;
	font-size: inherit;
	display: inline-block;
}

.videog_box {
  width: 100%;
  height: 0;
  margin: 0 auto 40px;
  display: block;
  position: relative;
}

.arihara_disc {
	display: flex;
	flex-flow: wrap;
	align-items: flex-start;
	justify-content: space-between;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: flex-start;
	-ms-justify-content: space-between;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: flex-start;
	-webkit-justify-content: space-between;
	margin-bottom: 60px;
}

.arihara_disc ul {
	width: calc(100% - 80px);
}

.arihara_disc ul li {
	border-bottom: 1px dotted #cacaca;
	padding: 5px 0px;
}

.arihara_disc ul li dl {
	display: flex;
	flex-flow: wrap;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
}

.arihara_disc ul li dl dt {
	width: 6em;
}

.arihara_disc ul li dl dd {
	width: calc(100% - 6em);
}

.about_box {
	background-color: #a9d8d5;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	display: -ms-flex;
	-ms-align-items: center;
	-ms-justify-content: space-between;
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	margin-bottom: 90px;
}

.about_box dl {
	margin: 0px 30px;
}

.about_box dl dt {
	font-size: 30px;
	color: #fff;
	margin-bottom: 10px;
}

.about_box dl dd {
	font-size: 16px;
}

.about_box dl dd span {
	font-size: inherit;
	display: inline-block;
}

.about_box img {
	max-width: 100%;
}

@media (max-width: 780px) {
	.about_box {
		display: block;
		text-align: center;
		padding: 20px;
	}
	.about_box dl {
		margin: 0px 0px 30px;
	}
}
@media (max-width: 580px) {
	.about_box {
		margin-bottom: 50px;
	}
}
.relax_link {
	display: block;
	max-width: 900px;
	width: 96%;
	margin: 0 auto;
	border-radius: 10px;
	background-color: #f67804;
	padding: 20px;
	position: relative;
	text-align: center;
}

.relax_link:hover {
	opacity: 0.7;
}

.relax_link:hover img {
	opacity: 1;
}

.relax_link p:nth-of-type(1) {
	color: #fff;
	margin-bottom: 5px;
}

.relax_link p:nth-of-type(2) {
	color: #fff;
	font-size: 25px;
	margin-bottom: 10px;
}

.relax_link p:nth-of-type(3) {
	display: inline-flex;
	flex-flow: wrap;
	align-items: center;
	display: -ms-inline-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	display: -webkit-inline-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	background-color: #fff;
	border-radius: 20px;
	padding: 3px 30px;
}

.relax_link img {
	position: absolute;
	right: 30px;
	top: -20px;
}

.relax_link p:nth-of-type(3)::before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #111;
	border-right: 1px solid #111;
	transform: rotate(45deg);
	margin-right: 10px;
}


@media (max-width: 820px) {
	.relax_link {
		text-align: left;
	}
}

@media (min-width: 681px) {
	.relax_link p:nth-of-type(2) br {
		display: none;
	}
}

@media (max-width: 680px) {
	.relax_link img {
		top: 10px;
	}
}

@media (max-width: 520px) {
	.relax_link p:nth-of-type(2) {
		font-size: 20px;
	}
	.relax_link p:nth-of-type(3) {
		padding: 0px 10px;
		font-size: 12px;
	}
	.relax_link img {
		right: 10px;
		width: 130px;
	}
}
.campaign_title {
	font-size: 16px;
	display: inline-flex;
	flex-flow: wrap;
	align-items: center;
	display: -ms-inline-flex;
	-ms-iflex-flow: wrap;
	-ms-ialign-items: center;
	display: -webkit-inline-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	margin: 40px 0px 10px;
}

.campaign_title span {
	font-size: 30px;
	margin-left: 0.2em;
}

.campaign_title::before {
	content: "";
	display: block;
	width: 26px;
	height: 26px;
	background: url("../images/circle_icon.png") no-repeat center/contain;
	margin-right: 10px;
}


.campaign_btn {
	text-align: center;
	margin: 0 auto 100px;
}

.campaign_btn a {
	display: inline-flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	display: -ms-inline-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-inline-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	background-color: #ce4141;
	color: #fff;
	min-width: 290px;
	border-radius: 10px;
	text-align: center;
	padding: 3px;
}

@media (max-width: 640px) {
	.campaign_btn {
		margin-bottom: 50px;
	}
	.campaign_title span {
		font-size: 24px;
	}
}

h3.column_title {
	text-align: center;
	margin: 80px 0px 60px;
}

h3.column_title span {
	font-size: 16px;
	color: #636363;
	font-weight: bold;
}

h3.column_title p {
	font-size: 30px;
	color: #288535;
	font-weight: bold;
}

@media (max-width: 640px) {
	h3.column_title p {
		font-size: 24px;
	}
}


.manga_box {
	background-color: #fbf5e2;
	padding: 50px 0px;
	text-align: center;
	margin-bottom: 100px;
}

.manga_box h4 {
	margin: 0px auto 50px;
	max-width: 96%;
	text-align: center;
}

.manga_box h4 img {
	max-width: 100%;
}

.manga_box > img {
	margin-bottom: 50px;
	max-width: 96%;
}

.manga_box p {
	font-size: 20px;
	font-weight: bold;
}

.manga_box p span {
	font-size: inherit;
	font-weight: inherit;
	display: inline-block;
}

@media (max-width: 640px) {
	.manga_box p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.manga_box h4 {
		margin-bottom: 30px;
	}
}

body.column .h4_title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    display: -ms-inline-flex;
    -ms-ialign-items: center;
    display: -webkit-inline-flex;
    -webkit-align-items: center;
}

body.column .h4_title::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
	flex-shrink: 0;
    background: url(../images/circle_icon2.png) no-repeat center/contain;
    margin-right: 10px;
}

@media (max-width: 640px) {
	body.column .h4_title {
		font-size: 18px;
	}
}

.owner_relax {
	text-align: center;
	position: relative;
	margin-bottom: 70px;
}

.owner_relax img:nth-of-type(1){
	max-width: 100%;
}

.relax_graph_img {
	position: absolute;
	right: 0px;
	bottom: 30px;
	max-width: 30%;
}

.owner_relax aside {
	text-align: right;
	font-size: 10px;
	color: #777;
}



.column_list {
	background-color: #f7f6ee;
	padding: 40px 0px;
	margin-bottom: 40px;
}

.column_list_title {
	font-size: 22px;
	font-weight: bold;
	color: #252525;
	margin-bottom: 70px;
	text-align: center;
	position: relative;
}

.column_list_title::before {
	content: "";
	display: block;
	width: 48px;
	height: 4px;
	background-color: #5eb366;
	position: absolute;
	bottom: -10px;
	left: calc(50% - 24px);
}

.column_list ul {
	display: flex;
	justify-content: space-between;
	display: -ms-flex;
	-ms-justify-content: space-between;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	max-width: 980px;
	width: 96%;
	margin: 0 auto;
}

.column_list ul li {
	width: calc(50% - 10px);
	display: flex;
	display: -ms-flex;
	display: -webkit-flex;
}

.column_list ul li a {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	border: 1px solid #bfbfbf;
	border-radius: 10px;
	background-color: #fff;
	padding: 18px;
	width: 100%;
	position: relative;
}

.column_list ul li a img {
	margin-bottom: 15px;
	max-width: 100%;
}

.column_list ul li a dl {
	margin-bottom: 20px;
}

.column_list ul li a dl dt span {
	color: #636363;
	font-weight: bold;
}

.column_list ul li a dl dt p {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.column_list ul li.relax a dl dt p {color: #288535;}
.column_list ul li.secret a dl dt p {color: #9477b1;}


.column_list ul li a > span {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	color: #fff;
	width: 300px;
	height: 27px;
	border-radius: 10px;
}

.column_list ul li.relax a > span {background-color: #288535;}
.column_list ul li.secret a > span {background-color: #9477b1;}
.column_list ul li.relax a:hover > span {background-color: #145a1d;}
.column_list ul li.secret a:hover > span {background-color: #684a86;}

body.column .relax_link {
	margin-bottom: 30px;
}

@media (max-width: 520px) {
	.column_list_title {
		margin-bottom: 40px;
	}
	.column_list ul {
		display: block;
	}
	.column_list ul li {
		width: 100%;
	}
	.column_list ul li:not(:last-child) {
		margin-bottom: 20px;
	}
}


.secret_h4 {
	height: 380px;
	background: url("../images/secret_main.jpg") no-repeat center/cover;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	display: -ms-flex;
	-ms-flex-flow: wrap;
	-ms-align-items: center;
	-ms-align-content: center;
	-ms-justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow: wrap;
	-webkit-align-items: center;
	-webkit-align-content: center;
	-webkit-justify-content: center;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 40px;
	padding: 0px 10px;
}

.secret_h4 span {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	display: inline-block;
}

.secret_txt_01 {
	font-size: 16px;
	margin-bottom: 40px;
}

.secret_img_01 {
	display: block;
	margin: 0 auto 50px;
	max-width: 100%;
}

.secret_txt_02 {
	text-align: center;
	font-size: 20px;
	margin-bottom: 90px;
}


@media (max-width: 640px) {
	.secret_h4 {
		height: 250px;
	}
}
