/*--------------------------------------------------------------*/
/* MainReset */
/*--------------------------------------------------------------*/
html {
	font-size: 62.5%;
	background: #fff;
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body, div, dl, dt, dd, ul, ol, li, pre, code, 
form, fieldset, legend, input, textarea, figure, 
p, blockquote, th, td {
	font-size: 1.6rem;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 1.8rem;
	font-weight: normal;
	margin: 0;
	padding: 0;
}
/* 580 */
@media (max-width: 580px) {
	body, div, dl, dt, dd, ul, ol, li, pre, code, 
	form, fieldset, legend, input, textarea, figure, 
	p, blockquote, th, td {
		font-size: 1.4rem;
	}
	h1, h2, h3, h4, h5, h6 {
		font-size: 1.6rem;
	}
}
body {
	color: #000;
	font-family: "noto-sans-cjk-jp", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
	-mts-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
.mn {
	font-family: '小塚明朝 Pro','Kozuka Mincho Pro',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.rbt {
	font-family: 'Roboto', sans-serif;
}
img {
	-webkit-backface-visibility: hidden;
	max-width: 100%;
}
/* form */
input, textarea, select, button {
	font-family: inherit;
	font-size: inherit;
	font-weight: normal;
}
input, select, button {
	vertical-align: middle;
}
textarea::placeholder,
input::placeholder {
	color: #ccc;
}
input:-ms-input-placeholder {
	color: #ccc;
}
input::-ms-input-placeholder {
	color: #ccc;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
address, caption, code, th {
	font-style: normal;
	font-weight: normal;
}
img, fieldset {
	border: 0;
}
ol, ul {
	list-style-type: none;
}
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=checkbox],
input[type=submit],
input[type=button],
input[type=number],
button,
select,
textarea {
	border-radius: 2px;
	border: 1px solid #ddd;
	margin: 0;
	padding: 8px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
	outline: none;
	background-color: #FFFFDF;
}
input[type=submit],
input[type=button],
button {
	outline: none;
	cursor: pointer;
	background-color: #F4F4F4;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover {
	background-color: #fff;
}
input[type=submit]:active,
input[type=button]:active,
button:active {
	background-color: #FFFFDF;
}
/* select */
select {
	background: url(../images/arrow.png) right 50% no-repeat #fff;
	background-size: contain;
	padding-right: 40px;
}

/* radio, checkbox */
input[type=checkbox] {
	visibility: hidden;
	width: 0;
	margin: 0;
	padding: 0;
	position: absolute;
}
input[type=checkbox] + label {
	position: relative;
	vertical-align: middle;
	display: block;
	padding-top: 5px;
	margin-top: 4px;
	line-height: 1.4;
	cursor: pointer;
	display: inline;
}
input[type=checkbox] + label:before {
	content: "\f372";
	font-family: "Ionicons";
	color: #a3a3a3;
	font-size: 22px;
	line-height: 1;
	margin-right: 4px;
	vertical-align: middle;
	margin-right: 8px;
}
input[type=checkbox]:checked + label:before {
	content: "\f374";
	color: #267e99;
}

/*--------------------------------------------------------------*/
/* common */
/*--------------------------------------------------------------*/
a {
	color: inherit;
	text-decoration: none;
	/*transition: all 0.1s;*/
}
a:active, a:hover {
	color: #2da4c7;
	outline: 0;
	text-decoration: none;
}
.bk a:hover {
	color: #fff;
}
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transition: all 0.5s;
}
.content {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
}
p {
	line-height: 180%;
}
.red {
	color: #E81A2B;
}
.sky {
	color: #0299E8;
}
.pop {
	font-family: poppins, sans-serif;
}
.ita {
	font-style: italic;
}
strong {
	color: #000!important;
	background: linear-gradient(transparent 60%,#FFE600 40%)!important;
}
.none {
	display: none!important;
	transition: all 0.3s ease;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.fixed {
	position: fixed!important;
	top: 0px;
	z-index: 99;
	animation: moveimg 1s 1;
	box-shadow: 0px 3px 3px rgba(0,0,0,0.3);
	border-bottom: none!important;
}
@keyframes moveimg {
	0% { top: -100px; }
	100% { top: 0px; }
}
/* row left right */
.row {
	font-size: 0;
}
.left, .right {
	width: 50%;
}
/* 580 */
@media (max-width: 580px) {
	.row .left,
	.row .right {
		display: block;
		width: 100%;
	}
}
/* pc tb sp view */
.sp_view {
	display: none;
}
.tb_view {
	display: none;
}
/* 768 */
@media (max-width: 768px) {
	.pc_view {
		display: none;
	}
	.tb_view {
		display: block;
	}
	.tb_none {
		display: none;
	}
}
/* 580 */
@media (max-width: 580px) {
	.sp_view {
		display: block;
	}
	.sp_none {
		display: none!important;
	}
}
/* move */
.mv_left,
.mv_right,
.mv_up,
.mv_down,
.mv_bk {
	position: relative;
}
.lv_fade,
.mv_fade {
	opacity: 0;
}
.mv_fade0 {
	opacity: 1;
}
.mv_left {
	opacity: 0;
	left: -60px;
}
.mv_right {
	opacity: 0;
	right: -60px;
}
.mv_up {
	opacity: 0;
	top: 60px;
}
.mv_down {
	opacity: 0;
	top: -60px;
}
/* table */
table {
	border-top: 2px solid #1274a3;
	border-collapse: collapse;
	width: 100%;
	margin: 30px 0;
}
table caption {
	font-size: 1.6rem;
	margin-bottom: 5px;
	font-weight: bold;
}
table tr {
	border-bottom: 1px solid #ccc;
}
table tr th {
	padding: 7px 5px 9px 5px;
	text-align: center;
	background: #fdfff5;
}
table tr td {
	padding: 7px 20px 9px 20px;
	text-align: center;
}
table tr td:not(:last-child) {
	border-right: 1px solid #ccc;
}
table tr th:not(:last-child) {
	border-right: 1px solid #ccc;
}
/* 580 */
@media (max-width: 580px) {
	table tr td {
		padding: 7px 5px;
	}
	table caption {
		font-size: 1.5rem;
	}
}

/* contact btn */
.contact {
	max-width: 350px;
	width: 54%;
	margin: 6% auto 0 auto;
	background-color: #61a7d3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#61a7d3), to(#10698A));
}
.contact a {
	color: #fff;
	display: block;
	width: 100%;
	padding: 6%;
}
.contact:hover {
	opacity: 0.7;
}

/* h type */
h1.htype01 {
	margin-bottom: calc(3vw / 2 + 25px);
	line-height: 100%;
}
h1.htype01 span.jp {
	display: block;
	font-size: 1.2rem;
}
h1.htype01::before {
	display: block;
	content: "";
	width: 100%;
	height: 95px;
	margin-bottom: 10px;
}
/* 580 */
@media (max-width: 580px) {
	h1.htype01 span.jp {
		font-size: 1.1rem;
	}
	h1.htype01::before {
		background-size: auto 65px!important;
		height: 65px;
	}
}
h1.htype02 {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #0074c1;
	padding-bottom: 0.5%;
	margin-bottom: 1%;
}
h2.htype02 {
	font-weight: bold;
	text-align: center;
	margin-bottom: calc(6vw / 2 + 25px);
}
/* 580 */
@media (max-width: 580px) {
	h1.htype02 {
		font-size: 1.8rem;
	}
	h2.htype02 {
		font-size: 1.4rem;
	}
}
/* .htype03 */
.htype03 {
	margin-bottom: 60px;
	text-align: center;
}
.htype03 h2 {
	margin-bottom: 10px;
}
.htype03 span.small {
	margin: 10px 0;
}
.htype03 span {
	display: block;
	text-align: center;
}
.htype03 span.eng {
	font-size: 1.4rem;
}
/* 580 */
@media (max-width: 580px) {
	.htype03 {
		margin-bottom: 35px;
	}
	.htype03 span.eng {
		font-size: 1.2rem;
	}
}
/* links */
ul.links {
	margin: 0 auto;
	max-width: 760px;
	font-size: 0;
}
ul.links li {
	width: 46%;
	margin: 0 1.5% 4% 1.5%;
	display: inline-block;
	vertical-align: top;
	background-color: #61a7d3; background-image: -webkit-gradient(linear, left top, left bottom, from(#61a7d3), to(#10698A));
	text-align: center;
	color: #fff;
}
ul.links li a {
	display: block;
	padding: 10% 0;
}
ul.links li:hover {
	opacity: 0.8;
}
ul.links li:hover a {
	color: #fff;
}
/* link01 */
.link01 {
	text-align: center;
	width: 100%;
	border: 1px solid #595757;
}
.link01 a {
	display: block;
	padding: 2% 0;
}
.link01:hover {
	border: 1px solid #0074c1;
}
.wrap01 {
	padding: 3%;
	color: #fff;
	background: #c9a063;
	margin-bottom: calc(8vw / 2 + 25px);
}
.wrap01 h3 {
	font-weight: bold;
	margin-bottom: 1%;
}
/* list1 => 1列 */
ul.list1 > li {
	margin-bottom: 40px;
	font-size: 0;
}
ul.list1 > li .photo {
	display: inline-block;
	vertical-align: top;
	width: 47%;
	margin-right: 6%;
}
ul.list1 > li .wrap {
	display: inline-block;
	vertical-align: top;
	width: 47%;
}
ul.list1 > li h3 {
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 7px;
}
ul.list1 > li p.txt {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
ul.list1 > li span {
	font-size: 1.2rem;
}
ul.list1 > li span.newpost {
	margin-right: 10px;
}
/* list2 => 2列 */
ul.list2 {
	font-size: 0;
	margin-bottom: 50px;
}
ul.list2 > li {
	display: inline-block;
	vertical-align: top;
	width: 48.5%;
	margin-right: 3%;
	margin-bottom: 40px;
}
ul.list2 > li:nth-child(2n) {
	margin-right: 0;
}
ul.list2 > li h3 {
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 7px;
}
ul.list2 > li p.txt {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
ul.list2 > li span {
	font-size: 1.2rem;
}
ul.list2 > li span.newpost {
	margin-right: 10px;
}
/* list3 => 3列 */
ul.list3 {
	font-size: 0;
}
ul.list3 > li {
	display: inline-block;
	vertical-align: top;
	width: calc(94%/3);
	margin-right: 3%;
	margin-bottom: 40px;
}
ul.list3 > li:nth-child(3n) {
	margin-right: 0;
}
ul.list3 > li h3 {
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 7px;
}
ul.list3 > li p.txt {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
ul.list3 > li span {
	font-size: 1.2rem;
}
ul.list3 > li span.newpost {
	margin-right: 10px;
}
/* 580 */
@media (max-width: 580px) {
	ul.list3 > li {
		width: calc(97%/2);
		margin-right: 3%;
		margin-bottom: 40px;
	}
	ul.list3 > li:nth-child(3n) {
		margin-right: 3%;
	}
	ul.list3 > li:nth-child(2n) {
		margin-right: 0;
	}
}
/* tags */
ul.tags {
	margin-bottom: 10px;
}
ul.tags li {
	display: inline-block;
	vertical-align: top;
	margin: 0 1px;
}
ul.tags li a {
	color: #7B5C0C;
	font-size: 1.6rem;
	font-weight: bold;
}
ul.tags li a::before {
	content: '#';
	margin-rignt: 3px;
}
ul.tags li a:hover {
	color: orange;
}
/* banner */
div.banner {
	text-align: center;
	margin: 30px auto;
}
/* btn more */
div.btn.more a {
	display: block;
	background: #9fa0a0;
	border-radius: 3px;
	text-align: center;
	font-weight: 500;
	padding: 10px 0;
	margin-bottom: 60px;
}
div.btn.more a:hover {
	background: #231815;
	color: #fff;
}
/* h2 width */
img.click {
	max-width: 131px;
}
img.news {
	max-width: 111px;
}
img.recommend {
	max-width: 244px;
}
img.latest {
	max-width: 135px;
}
img.gelande {
	max-width: 170px;
}
img.column {
	max-width: 162px;
}
img.gallery {
	max-width: 167px;
}
img.ranking {
	max-width: 170px;
}
/* 580 */
@media (max-width: 580px) {
	/* tags */
	ul.tags {
		margin-bottom: 5px;
	}
	ul.tags li a {
		font-size: 1.3rem;
	}
}

/*--------------------------------------------------------------*/
/* btn */
/*--------------------------------------------------------------*/
._btn {
	font-size: 1.6rem;
	color: #fff;
	display: block;
	border-radius: 16px;
	max-width: 300px;
	min-width: 240px;
	margin: 0 auto;
	width: 60%;
	height: 60px;
	text-align: center;
	background-size: 200% auto;
	transition: all .3s ease-out;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
._btn:hover {
	background-position: left 100% center;
	color: #fff;
}
.gra {
	background-image: -moz-linear-gradient(105deg, #245B95 0%, #60b5cf 50%, #057fa4 100%);
	background-image: -webkit-linear-gradient(105deg, #245B95 0%, #60b5cf 50%, #057fa4 100%);
	background-image: linear-gradient(105deg, #245B95 0%, #60b5cf 50%, #057fa4 100%);
}

/*--------------------------------------------------------------*/
/* pd_std */
/*--------------------------------------------------------------*/
.pd_std {
	padding: 120px 0;
}
.pd_std2 {
	padding: 65px 0;
}
.pd_std3 {
	padding: 85px 0;
}
/* 1150 */
@media (max-width: 1150px) {
	.pd_std {
		padding: max(11vw, 60px) 0;
	}
	.pd_std2 {
		padding: max(6vw, 40px) 0;
	}
	.pd_std3 {
		padding: max(7.4vw, 40px) 0;
	}
}

/*--------------------------------------------------------------*/
/* slick slider arrow */
/*--------------------------------------------------------------*/
/* nav arrow */
.prev-arrow {
	right: 43px;
	width: 33px;
	height: 33px;
	opacity: 0.8;
	cursor: pointer;
	transition: .2s all;
	z-index: 1;
	background: #DDD8D8;
}
.prev-arrow.slick-disabled {
	opacity: 0.5;
	background: #DDD8D8!important;
}
.prev-arrow::after {
	content: '\f3d2';
	font-family: 'Ionicons';
	font-size: 1.8rem;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #000;
	display: block;
}
.next-arrow {
	right: 0px;
	width: 33px;
	height: 33px;
	opacity: 0.8;
	cursor: pointer;
	transition: .2s all;
	z-index: 1;
	background: #DDD8D8;
}
.next-arrow.slick-disabled {
	opacity: 0.5;
	background: #DDD8D8!important;
}
.next-arrow::after {
	content: '\f3d3';
	font-family: 'Ionicons';
	font-size: 1.8rem;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #000;
	display: block;
}
.next-arrow:hover,
.prev-arrow:hover {
	background: #ccc7c7;
}
.slide-arrow {
	position: absolute;
	top: -50px;
}

/*--------------------------------------------------------------*/
/* h1-h6 */
/*--------------------------------------------------------------*/
/* f3-f4-5-6 */
.f3 {
	font-size: 3.0rem;
}
.f4 {
	font-size: 4.0rem;
}
.f5 {
	font-size: 5.0rem;
}
.f6 {
	font-size: 6.0rem;
}
/* 1150 */
@media (max-width: 1150px) {
	/* f3-f4-5-6 */
	.f3 {
		font-size: max(2.5vw, 1.9rem);
	}
	.f4 {
		font-size: max(3.47vw, 2.8rem);
	}
	.f5 {
		font-size: max(4.35vw, 2.0rem);
	}
	.f5.pop {
		font-size: max(4.35vw, 2.6rem);
	}
	.f6 {
		font-size: max(5vw, 2.6rem);
	}
}

/*--------------------------------------------------------------*/
/* pager */
/*--------------------------------------------------------------*/
.pager {
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 60px 0;
}
.pager .meta {
	margin-right: 10px;
}
.pager .page {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5px;
}
.pager .page a,
.pager .page .select_page {
	display: inline-block;
	padding: 7px 12px;
	background: #1267a3;
	color: #fff;
	border-radius: 3px;
	transition: background .3s ease;
}
.pager .page a:hover {
	background: #ff3c3c;
}
.pager .page .select_page {
	background: #919191;
}

/*--------------------------------------------------------------*/
/* pickup_list & header.type01 */
/*--------------------------------------------------------------*/
.pickup_list {
	background: #d9d8d8;
	padding-top: 100px;
}
header.type01 {
	position: relative;
	margin-bottom: 20px;
	transition: .6s;
}
header.type01 h1 {
	font-size: 3.4rem;
	line-height: 1;
}
header.type01 span.jp {
	font-size: 2.2rem;
	color: #fff;
	display: block;
}
header.type01.white span.jp {
	color: #d9d8d8;
}
.pickup_list ul.list {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
}
.pickup_list ul.list > li {
	width: 48%;
	margin-right: 4%;
	margin-bottom: 60px;
}
.pickup_list ul.list > li:nth-child(2n) {
	margin-right: 0;
}
.pickup_list ul.list > li figure {
	border: 12px solid #fff;
	line-height: 0;
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
	margin-bottom: 23px;
}
.pickup_list ul.list > li figure img {
	width: 100%;
}
.pickup_list ul.list > li h2 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 5px;
}
.pickup_list ul.list > li p {
	font-size: 1.4rem;
	margin-bottom: 30px;
}
.pickup_list ul.list > li time span {
	display: inline-block;
	font-size: 1.6rem;
	margin-right: 3%;
	white-space: nowrap;
}
/* 768 */
@media (max-width: 768px) {
	header.type01 {
		position: relative;
		width: 60px;
	}
	header.type01 h1 {
		top: 25px;
		right: calc(100% + 10px);
		font-size: 3.5rem;
	}
	header.type01 span.jp {
		top: 20px;
		right: calc(100% - 40%);
		font-size: 1.6rem;
		width: 185px;
	}
}
/* 580 */
@media (max-width: 580px) {
	header.type01 {
		position: relative;
		width: 40px;
	}
	header.type01 h1 {
		top: 25px;
		right: calc(100% + 15px);
		font-size: 3.3rem;
	}
	header.type01 span.jp {
		top: 20px;
		right: calc(100% - 33%);
		font-size: 1.4rem;
		width: 185px;
	}
	.pickup_list ul.list > li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 40px;
	}
	.pickup_list ul.list > li figure {
		border: 6px solid #fff;
		margin-bottom: 13px;
	}
	.pickup_list ul.list > li h2 {
		font-size: 1.6rem;
	}
	.pickup_list ul.list > li p {
		font-size: 1.3rem;
		margin-bottom: 10px;
	}
	.pickup_list ul.list > li time span {
		display: inline-block;
		font-size: 1.2rem;
		margin-right: 3%;
		white-space: nowrap;
	}
}

/*--------------------------------------------------------------*/
/* aside.nav_tag */
/*--------------------------------------------------------------*/
aside.nav_tag {
	align-items: center;
}
aside.nav_tag h2 {
	width: 115px;
	font-size: 4.0rem;
}
aside.nav_tag ul.tags {
	flex: 1;
	margin-bottom: 0;
}
aside.nav_tag ul.tags li {
	margin-right: 3%;
}
aside.nav_tag ul.tags li a {
	color: #000;
}
aside.nav_tag ul.tags li a:hover {
	color: orange;
}
/* 580 */
@media (max-width: 580px) {
	#about .flex .right .about_tag h2 {
		width: 72px;
		font-size: 2.5rem;
	}
	aside.nav_tag ul.tags li a {
		font-size: 1.6rem;
		line-height: 1.8;
	}
}

/*--------------------------------------------------------------*/
/* body */
/*--------------------------------------------------------------*/
body {
	border-top: 69px solid #ededed;
	padding-top: 0px;
	transition: .6s;
}

/*--------------------------------------------------------------*/
/* #main_visual */
/*--------------------------------------------------------------*/
#main_visual {
	background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url(../images/main_visual.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top right;
	height: 600px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}
#main_visual h1 {
	font-size: 3.0rem;
	margin-bottom: 20px;
}
.search_box {
	padding: 25px;
	background: #fff;
	border-radius: 15px;
	max-width: 450px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
	position: relative;
	z-index: 9;
}
.search_box h2 {
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.search_box .search {
	display: flex;
	margin-bottom: 15px;
}
.search_box .search input {
	border: none;
	width: 100%;
}
.search_box .search input:focus {
	background: #fff;
}
.search_box .search .area {
	padding: 3px;
	border: 1px solid #ccc;
	border-right: none;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px 0 0 5px;
}
.search_box .search .area.active {
	border: 1px solid orange;
}
.search_box .search .area.active + .cate {
	border-left: none;
}
.search_box .search .cate.active {
	border: 1px solid orange;
}
.search_box .search .cate.active .cat_select {
	display: block;
}
.search_box .search .cate {
	padding: 3px;
	border: 1px solid #ccc;
	border-right: 1px solid #ddd;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.search_box .cat_select {
	position: absolute;
	background: #fff;
	padding: 8px 0;
	top: calc(0px + 38px);
	left: 0;
	height: 250px;
	overflow-y: scroll;
	width: 100%;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
	border-radius: 0 0 0 5px;
	display: none;
}
.search_box .cat_select div {
	padding: 3px 8px;
}
.search_box .cat_select div:hover {
	background: #f7ffd5;
	cursor: pointer;
}
.search_box .search .area i,
.search_box .search .cate i {
	margin-left: 5px;
}
.search_box .search .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	background: #ddd;
	border-radius: 0 5px 5px 0;
	transition: .3s ease;
}
.search_box .search .btn:hover {
	cursor: pointer;
	background: #2da4c7;
	color: #fff;
}
.search_box h3 {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 5px;
}
.search_box .kyori.disabled label {
	color: #ccc;
}
.search_box .kyori label {
	cursor: pointer;
	white-space: nowrap;
}
.search_box .kyori label:nth-child(n+2) {
	margin-left: 10px;
}
.search_box .kyori label span.txt {
	margin-left: 3px;
}
/* 1060 */
@media (max-width: 1060px) {
	#main_visual {
		height: 56.5vw;
	}
}
/* 768 */
@media (max-width: 768px) {
	#main_visual {
		display: flex;
		align-items: flex-end;
		min-height: 320px;
		margin-bottom: 263px;
	}
	#main_visual h1 {
		font-size: 2.0rem;
		margin-bottom: 20px;
		background: #fff;
		text-align: center;
		border-radius: 15px;
		padding: 5px;
		margin: 0 auto 15px auto;
		filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.5));
	}
	#main_visual .content {
		margin-bottom: -263px;
	}
	.search_box {
		margin: 0 auto;
		max-width: initial;
	}
}
/* 580 */
@media (max-width: 580px) {
	.search_box .search {
		display: block;
	}
	.search_box .search .area {
		border-right: 1px solid #ccc;
		border-radius: 5px;
		margin-bottom: 5px;
	}
	.search_box .search .cate {
		border: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-radius: 5px;
		margin-bottom: 5px;
	}
	.search_box .search .area i,
	.search_box .search .cate i {
		margin-left: 5px;
	}
	.search_box .kyori {
		margin-bottom: 20px;
	}
	.search_box .kensaku.sp_view {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 5px;
		width: 100%;
		border-radius: 5px;
		background: #ddd;
		font-size: 1.6rem;
	}
	.search_box .kensaku.sp_view i {
		margin-right: 5px;
	}
}

/*--------------------------------------------------------------*/
/* #about */
/*--------------------------------------------------------------*/
#about p {
	font-size: 1.6rem;
}
#about p.center {
	margin-top: 15px;
	text-align: center;
}
/* 580 */
@media (max-width: 580px) {
	#about p {
		font-size: 1.4rem;
	}
}

/*--------------------------------------------------------------*/
/* #header */
/*--------------------------------------------------------------*/
#header {
	width: 100%;
	height: 69px;
	background: #fff;
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	transition: .6s;
	box-shadow: 0px 3px 3px rgba(0,0,0,0.3);
}
#header .flex {
	justify-content: space-between;
	align-items: center;
	line-height: 1;
}
/* title */
#header .flex .title {
	width: 250px;
}
/* ul.gnav */
#header ul.gnav {
	display: flex;
	align-items: center;
}
#header ul.gnav > li:nth-child(1) svg {
	width: 18px;
	margin-right: 3px;
	margin-bottom: -3px;
	transition: .3s ease;
}
#header ul.gnav > li:nth-child(1) a:hover svg {
	fill: #2da4c7;
}
#header ul.gnav > li i {
	margin-right: 3px;
	margin-bottom: -3px;
}

#header ul.gnav > li > a {
	font-size: 1.6rem;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 69px;
	padding: 0 12px;
	transition: all .3s ease;
}
#header ul.gnav > li:nth-child(1) > a {
	padding: 0 12px 0 0;
}
#header ul.gnav > li:last-child > a {
	padding: 0 0 0 12px;
}
#header ul.gnav > li > a:hover {
	color: #2da4c7;
}
#header .sp_menu_btn {
	display: none;
	height: 100%;
	width: 30px;
	position: relative;
}
div#open {
	height: 20px;
	width: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 9999;
	cursor: pointer;
}
.menu_line {
	background: #000;
	display: block;
	height: 2px;
	position: absolute;
	transition:transform .3s;
	width: 100%;
}
.menu:hover .menu_line {
	background: #ccc;
}
.menu_line-center {
	top: 9px;
}
.menu_line-bottom {
	bottom: 0;
}
.menu--active .menu_line-top {
	top: 8px;
	transform: rotate(45deg);
}
.menu--active .menu_line-center {
	transform:scaleX(0);
}
.menu--active .menu_line-bottom {
	bottom: 10px;
	transform: rotate(135deg);
}
/* sp_menu_right */
.sp_menu_right {
	background: #fff;
	height: 100vh;
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	width: 90%;
	padding: 55px 90px 75px 45px;
	z-index: 98;
	-webkit-overflow-scrolling: touch;
}
.sp_menu_right ul.nav {
	margin-bottom: 20px;
}
.sp_menu_right ul.nav li,
.sp_menu_right ul.nav li dt {
	font-size: 1.6rem;
}
.sp_menu_right ul.nav li a svg,
.sp_menu_right ul.nav li a i {
	width: 18px;
	margin-right: 7px;
}
.sp_menu_right ul.nav li a:hover svg {
	fill: #2da4c7;
}
.sp_menu_right ul.nav > li {
	padding: 10px 0;
	position: relative;
}
.sp_menu_right ul.nav > li .sub_link {
	margin-top: 5px;
}
.sp_menu_right ul.sns {
	display: flex;
	justify-content: space-between;
	width: 180px;
}
.sp_menu_right ul.sns > li {
	width: 30%;
}
.menu--active .sp_menu_right {
	right: 70%;
}
/* 開閉 */
.sp_menu_right dl {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.sp_menu_right dl dt {
	font-weight: normal;
	width: 100%;
	display: block;
	cursor: pointer;
	padding: 0;
}
.sp_menu_right dl dt.pm::after {
	content: '\f217';
	font-family: "Ionicons";
	margin-left: 5px;
	font-size: 1.3rem;
}
.sp_menu_right dl dt.open.pm::after {
	content: '\f208';
	font-family: "Ionicons";
}
.sp_menu_right dl dt:hover {
	color: #f7c1c1;
}
.sp_menu_right dl dd {
	font-weight: normal;
	padding: 0 0 0 15px;
	display: none;
	border: none!important;
}
.sp_menu_right ul.ya li {
	margin-top: 15px;
}
.sp_menu_right ul.ya li::before {
	content: '\f363';
	font-family: "Ionicons";
	margin-right: 8px;
}
/* sp_mail_tel */
.sp_menu_right .sp_mail_tel a.btn_contact {
	background: #DD1B22;
	color: #fff;
	display: flex;
	justify-content: center;
	width: 135px;
	padding: 7px 0;
	margin-bottom: 20px;
}
.sp_menu_right .sp_mail_tel a.btn {
	padding: 15px 10px;
	margin-top: 10px;
}
.sp_menu_right .sp_mail_tel a.tel {
	font-size: 2.0rem;
	font-weight: 700;
	display: flex;
	align-items: center;
}
.sp_menu_right .sp_mail_tel a.tel img {
	width: 22px;
	margin-right: 3px;
}
/* sp_menu_left */
.sp_menu_left {
	transform: translateX(-100%);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	background: #ededed;
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 30%;
	overflow: hidden;
	z-index: 98;
}
.sp_menu_left i {
	position: absolute;
	top: 55px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	font-size: 108px;
	color: #fff;
}
.sp_menu_left .logo {
	position: absolute;
	top: 104px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	font-size: 1.5rem;
}

.menu--active .sp_menu_left {
	left: 30%;
}
/* 580 */
@media (max-width: 580px) {
	/* title */
	#header h1 a img {
		width: 75%;
	}
}

/*--------------------------------------------------------------*/
/* SP MENU */
/*--------------------------------------------------------------*/
.sp_menu {
	position: fixed;
	right: 0;
	top: 0;
	color: #000;
	height: 100%;
	width: 0;
	overflow: hidden;
	opacity: 0;
	transition: all .3s ease-in-out;
	overflow-y: auto;
	padding: 20px 0;
	z-index: 99;
}
.sp_menu .menu-inner {
	height: 100vh;
	margin: 0 auto;
	overflow-y: auto;
}
.menu--active {
	height: 100vh;
	overflow: hidden;
}
.menu--active .sp_menu {
	padding: 20px;
	width: 100%;
	opacity: 1;
	background: #d9d8d8;
	z-index: 99;
}
.sp_menu .logo {
	text-align: center;
	padding-top: 10px;
	margin-bottom: 15px;
}
.sp_menu .gnav dl {
	display: flex;
	flex-wrap: wrap;
}
.sp_menu .gnav dl dt {
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: 1px;
	width: 100%;
	padding-bottom: 3px;
	border-bottom: 1px solid #000;
	margin-top: 15px;
	margin-bottom: 10px;
}
.sp_menu .gnav dl dd {
	margin: 0 15px 10px 0;
	font-size: 1.4rem;
}
.sp_menu ul.sns {
	display: flex;
	justify-content: center;
	margin-bottom: 25px;
}
.sp_menu ul.banner {
	margin-top: 25px;
	margin-bottom: 25px;
}
.sp_menu ul.sns {
	margin-bottom: 25px;
}
.sp_menu ul.sns li {
	padding: 0 7px;
}
.sp_menu .ft_logo {
	text-align: center;
}
.sp_menu .ft_logo img {
	max-width: 120px;
}
/* 860 */
@media (max-width: 860px) {
	#header ul.gnav {
		display: none;
	}
	#header .sp_menu_btn {
		display: block;
	}
}

/*--------------------------------------------------------------*/
/* header.shead */
/*--------------------------------------------------------------*/
header.shead .box {
	background: rgba(255,255,255,0.8);
	padding: 20px;
	border-radius: 20px;
}
header.shead .box h1 {
	font-size: 2.4rem;
	margin-bottom: 10px;
}
header.shead .box h1 svg,
header.shead .box h1 i {
	margin-right: 5px;
}

/*--------------------------------------------------------------*/
/* #slider */
/*--------------------------------------------------------------*/
#top_slider {
	max-width: 1000px;
	width: 100%;
	margin: 100px auto 25px auto;
	overflow: hidden;
	border: 12px solid #fff;
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
	position: relative;
	z-index: 9;
}
#slider {
	position: relative;
}
#slider .over {
	width: 0px;
	height: 550px;
	position: absolute;
	/*background-color: #fff;*/
	z-index: 1;
	opacity: 0.7;
}
#slider #R-over {
	right: 0;
}
#slider #L-over {
	left: 0;
}
#slider .sp-arrows {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 1000px;
	width: calc(100% - 40px);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	box-sizing: border-box;
}
#slider .sp-arrow {
	z-index: 2;
	width: 30px;
	height: 50px;
}
#slider .sp-next-arrow:after, .sp-next-arrow:before, .sp-previous-arrow:after, .sp-previous-arrow:before {
	background-color: #d9d8d8!important;
}
.sp-horizontal .sp-next-arrow {
	right: 20px;
	left: auto;
}
.sp-horizontal .sp-previous-arrow {
    left: 20px;
    right: auto;
}
#slider li.sp-slide::after {
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 85px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 9;
}
#slider .sp-button {
	width: 13px;
	height: 13px;
	background: url(../images/page_button_off.svg);
	background-size: contain;
	border: none;
}
#slider .sp-selected-button  {
	background: url(../images/page_button_on.svg);
	background-size: contain;
}
/* slider -> sp-layer */
#slider .sp-layer {
	padding: 17px 15px 20px 15px;
	background: rgba(0,0,0,0.5);
	color: #fff;
}
#slider .sp-layer.sp-none {
	background: rgba(255, 255, 255, 0.0);
}
#slider .sp-layer p.title {
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 7px;
}
#slider .sp-layer ul {
	display: inline-block;
}
#slider .sp-layer ul li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
	font-size: 1.2rem;
}
#slider .sp-layer ul li a:before {
	content: '#';
}
#slider .sp-layer time {
	font-size: 1.2rem;
}
#slider .sp-layer time .newpost {
	margin-right: 15px;
}
#slider .sp-layer a:hover {
	color: #231815;
}
#slider .sp-buttons {
	position: absolute;
	bottom: 0;
}
/* 768 */
@media (max-width: 768px) {
	#top_slider {
		margin: 90px auto 25px auto;
	}
	#slider .sp-layer p.title {
		font-size: 1.8rem;
	}
}
/* 580 */
@media (max-width: 580px) {
	#top_slider {
		border: 6px solid #fff;
		margin: 80px auto 25px auto;
	}
	#slider .sp-arrows {
		display: none;
	}
	#slider .sp-layer p.title {
		font-size: 1.4rem;
	}
}

/*--------------------------------------------------------------*/
/* #about */
/*--------------------------------------------------------------*/
#about {
	padding: 55px 0;
}
#about .content {
	max-width: 900px;
}
#about .flex .left {
	width: 43%;
	padding-right: 4%;
}
#about .flex .left .wrap.flg {
	padding-top: 0px;
	padding-left: 0px;
	margin-bottom: 40px;
	position: relative;
}
#about .flex .left .wrap.flg figcaption {
	font-size: 6.4rem;
	line-height: 0.9;
}
#about .flex .left .wrap {
	padding-top: 40px;
	padding-left: 30px;
	margin-bottom: 0;
	position: relative;
	transition: 0.8s all;
}
#about .flex .left .wrap figcaption {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 6.4rem;
	line-height: 0.9;
}
/* right */
#about .flex .right {
	width: 57%;
	padding-top: 20px;
}
#about .flex .right header h1 {
	color: #d9d8d8;
	font-size: 1.9rem;
	margin-bottom: 5px;
}
#about .flex .right header + p {
	margin-bottom: 40px;
}
/* 768 */
@media (max-width: 768px) {
	#about .flex .left .wrap figcaption {
		font-size: 5.0rem;
	}
}
/* 580 */
@media (max-width: 580px) {
	#about .flex .left {
		width: 100%;
		padding-right: 0;
	}
	#about .flex .left .wrap {
		max-width: 332px;
		margin: 0 auto;
	}
	#about .flex .left .wrap figcaption {
		font-size: 4.0rem;
	}
	/* right */
	#about .flex .right {
		width: 100%;
		padding-top: 20px;
	}
	#about .flex .right header h1 {
		font-size: 1.6rem;
		margin-bottom: 2px;
	}
	#about .flex .right header + p {
		margin-bottom: 20px;
	}
}

/*--------------------------------------------------------------*/
/* .post_slider */
/*--------------------------------------------------------------*/
.post_slider {
	margin-bottom: 60px;
	overflow: hidden;
}
/* li.slick-slide */
.post_slider li.slick-slide {
	outline: none;
}
.post_slider dl dt {
	font-weight: bold;
	margin-bottom: 3px;
}
.post_slider dl dd {
	font-size: 14px;
}
.post_slider figure {
	position: relative;
	margin-bottom: 5px;
}
.post_slider figure img {
	aspect-ratio: 4 / 3;
	width: 100%;
	object-fit: cover;
}
.post_slider figure figcaption {
	font-size: 13px;
	display: inline-block;
	padding: 2px 5px 3px 5px;
	background: #000000c7;
	color: #fff;
	border-radius: 3px;
	position: absolute;
	top: 5px;
	left: 5px;
}
/* banner */
.post_slider .banner {
	padding-top: 30px;
}
.post_slider .banner img {
	max-width: 720px;
	width: 100%;
}
/* slider間隔 */
.post_slider .slick-list {
	margin-right: -30px;
}
.post_slider .slick-slide {
	margin-right: 30px;
}
/* 768 */
@media (max-width: 768px) {
	.post_slider header {
		margin-bottom: 10px;
	}
	.post_slider header h1 {
		font-size: 4.0rem;
		margin-right: 10px;
	}
	.post_slider header span.jp {
		font-size: 1.5rem;
	}
	/* li.slick-slide */
	.post_slider li.slick-slide figure {
		margin-bottom: 15px;
	}
	.post_slider li.slick-slide h3 {
		font-size: 1.1rem;
		margin-bottom: 7px;
	}
	.post_slider li.slick-slide h2 {
		font-size: 1.5rem;
		line-height: 1.4;
		min-height: 41px;
		margin-bottom: 7px;
	}
	/* slider間隔 */
	.post_slider .slick-list {
		margin-right: -20px;
	}
	.post_slider .slick-slide {
		margin-right: 20px;
	}
}
/* 580 */
@media (max-width: 580px) {
	.post_slider {
		margin-bottom: 30px;
	}
	.post_slider header {
		margin-bottom: 5px;
	}
	.post_slider header h1 {
		font-size: 3.0rem;
		margin-right: 0;
		display: block;
		line-height: 0.9;
	}
	.post_slider header span.jp {
		font-size: 1.4rem;
	}
	/* li.slick-slide */
	.post_slider li.slick-slide figure {
		margin-bottom: 10px;
	}
	.post_slider li.slick-slide h3 {
		font-size: 1.1rem;
		margin-bottom: 7px;
	}
	.post_slider li.slick-slide h2 {
		font-size: 1.4rem;
	}
	/* tags */
	.post_slider li.slick-slide ul.tags {
		margin-bottom: 10px;
	}
	/* slider間隔 */
	.post_slider .slick-list {
		margin-right: -15px;
	}
	.post_slider .slick-slide {
		margin-right: 15px;
	}
}

/*--------------------------------------------------------------*/
/* #recommend */
/*--------------------------------------------------------------*/
#recommend {
	margin-top: -100px;
	position: relative;
	z-index: 1;
}

/*--------------------------------------------------------------*/
/* #latest */
/*--------------------------------------------------------------*/
#latest.sub.post_slider {
	background: #c3c3c3;
	margin-bottom: 0;
	padding-top: 90px;
	padding-bottom: 90px;
}
#latest.sub.post_slider header h1 {
	color: #fff;
}
#latest.sub.post_slider header span.jp {
	color: #000;
	font-weight: bold;
}
#latest.sub.post_slider li.slick-slide dl dt a:hover {
	color: #fff;
}
/* 768 */
@media (max-width: 768px) {
	#latest.sub.post_slider {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}
/* 580 */
@media (max-width: 580px) {
	#latest.sub.post_slider {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/*--------------------------------------------------------------*/
/* #pickup */
/*--------------------------------------------------------------*/
/* 580 */
@media (max-width: 580px) {
	#pickup {
		margin-bottom: 20px;
	}
}

/*--------------------------------------------------------------*/
/* #category */
/*--------------------------------------------------------------*/
#category {
	background: #d9d8d8;
	padding: 60px 0 50px 0;
}
ul.cat_list {
	display: flex;
	flex-wrap: wrap;
}
ul.cat_list li {
	width: calc(90% / 6);
	margin-right: 2%;
	margin-bottom: 16px;
}
ul.cat_list li:nth-child(6n) {
	margin-right: 0;
}
ul.cat_list > li a {
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 2 / 1;
	padding: 5px;
	text-align: center;
	background: #fff;
	border-radius: 6px;
	font-weight: bold;
	transition: .3s ease;
}
ul.cat_list > li a:hover {
	background: #2da4c7;
	color: #fff;
}
/* 768 */
@media (max-width: 768px) {
	ul.cat_list li {
		width: calc(92% / 5);
		margin-right: 2%;
	}
	ul.cat_list li:nth-child(6n) {
		margin-right: 2%;
	}
	ul.cat_list li:nth-child(5n) {
		margin-right: 0;
	}
}
/* 580 */
@media (max-width: 580px) {
	ul.cat_list li {
		width: calc(96% / 3);
		margin-right: 2%;
	}
	ul.cat_list li:nth-child(5n) {
		margin-right: 2%;
	}
	ul.cat_list li:nth-child(3n) {
		margin-right: 0;
	}
}

/*--------------------------------------------------------------*/
/* #pr */
/*--------------------------------------------------------------*/
#pr {
	background: #ededed;
	padding: 60px 0 50px 0;
	text-align: center;
}
#pr .icon i {
	font-size: 4.0rem;
	margin-bottom: 20px;
}
#pr h1 {
	font-size: 2.8rem;
	margin-bottom: 12px;
}
#pr p.txt {
	margin-bottom: 20px;
}
#pr a._btn i {
	margin-right: 6px;
	margin-bottom: -3px;
}

/*--------------------------------------------------------------*/
/* #news */
/*--------------------------------------------------------------*/
#news {
	padding: 60px 0 50px 0;
}
#news ul {
	margin: 60px 0 90px 0;
}
#news ul li {
	border-bottom: 1px solid #888;
	padding: 17px 10px;
	display: flex;
	flex-wrap: wrap;
}
#news ul li:first-child {
	border-top: 1px solid #888;
}
#news ul li time {
	line-height: 1.4;
	width: 135px;
}
#news ul li p {
	line-height: 1.4;
	flex: 1;
}
/* 580 */
@media (max-width: 580px) {
	#news ul li time {
		width: 88px;
	}
}

/*--------------------------------------------------------------*/
/* modaal */
/*--------------------------------------------------------------*/
.hidden {
	display: none;
}
body.home .modaal-container {
	background: initial;
	box-shadow: initial;
	max-width: 600px;
	margin: 0 auto;
}
body.home .modaal-content-container {
	padding: 0;
}
body.home .modaal-container article {
	padding: 30px;
	background: #fff;
	border-radius: 15px;
}
body.home .modaal-container article time {
	font-weight: 600;
}
body.home .modaal-container article h2 {
	text-align: left;
	margin-top: 8px;
	margin-bottom: 15px;
	font-size: 1.8rem;
	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
}
body.home .modaal-container article {
	border: 4px solid #2e6585;
}

/*--------------------------------------------------------------*/
/* はじめての方 */
/*--------------------------------------------------------------*/
body:not(.home) {
	padding-top: 0;
}
#beginner {
	padding-bottom: 60px;
}
#beginner header.shead {
	background: url(../images/subhead_beginner.jpg) no-repeat;
	background-size: cover;
	background-position: center top 40%;
	padding: 60px 0;
	margin-bottom: 40px;
}
#beginner .box {
	background: rgba(255,255,255,0.8);
	padding: 20px;
	border-radius: 20px;
}
#beginner .box h1 {
	font-size: 2.4rem;
	margin-bottom: 10px;
}
#beginner ol li {
	margin-bottom: 30px;
}
#beginner ol li h2 {
	font-weight: bold;
	margin-bottom: 10px;
}
#beginner ol li p {
	margin-bottom: 10px;
}
#beginner ol li figure img {
	border: 3px solid #2da4c7;
	filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.5));
}

/*--------------------------------------------------------------*/
/* よくある質問 */
/*--------------------------------------------------------------*/
#faq {
	padding-bottom: 60px;
}
#faq header.shead {
	background: url(../images/subhead_faq.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 60px 0;
	margin-bottom: 40px;
}
#faq .box {
	background: rgba(255,255,255,0.8);
	padding: 20px;
	border-radius: 20px;
}
#faq .box h1 {
	font-size: 2.4rem;
	margin-bottom: 10px;
}
#faq dl {
	margin-bottom: 25px;
}
#faq dl dt {
	display: table;
	width: 100%;
	background: #ededed;
	position: relative;
	cursor: pointer;
}
#faq dl dt::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 33px;
	width: 16px;
	height: 3px;
	background: #000;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
	-webkit-transition-delay: 0;
	transition-delay: 0;
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#faq dl dt.is-open::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 33px;
	width: 21px;
	height: 3px;
	background: #000;
	-webkit-transform: rotate(-225deg);
	-ms-transform: rotate(-225deg);
	transform: rotate(-225deg);
}
#faq dl dt::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 43px;
	width: 16px;
	height: 3px;
	background: #000;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
	-webkit-transition-delay: 0;
	transition-delay: 0;
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#faq dl dt.is-open::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 33px;
	width: 21px;
	height: 3px;
	background: #000;
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
}
#faq dl dt .q {
	width: 100px;
	padding: 20px 0;
	text-align: center;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
}
#faq dl dt .q i {
	font-size: 3.0rem;
	color: #000;
}
#faq dl dt .text {
	background: #ededed;
	color: #000;
	line-height: 1.2;
	font-size: 2.2rem;
	display: table-cell;
	vertical-align: middle;
	padding-right: 60px;
}
#faq dl dt.is-open .text::after {
	content: '';
	display: block;
	width: 95%;
	height: 1px;
	border-bottom: 1px solid #e0d7d9;
	position: absolute;
	bottom: 0;
	left: 2.5%;
}
#faq dl dd {
	padding: 3% 5%;
	background: #ededed;
	font-weight: 400;
	display: none;
}
#faq dl dd p.txt {
	font-size: 1.8rem;
	font-weight: 400;
}
#faq dl dd a {
	color: #2da4c7;
}
#faq dl dd a:hover {
	color: orange;
}
/* 768 */
@media (max-width: 768px) {
	#faq dl dt .q {
		width: 85px;
		padding: 15px 0;
	}
}
/* 580 */
@media (max-width: 580px) {
	#faq header {
		margin-bottom: 50px;
	}
	#faq dl {
		margin-bottom: 10px;
	}
	#faq dl dt .q {
		width: 60px;
		padding: 15px 12px;
	}
	#faq dl dt .text {
		font-size: 1.6rem;
		padding-right: 35px;
		padding-left: 0;
	}
	#faq dl dt::after {
		right: 12px;
		width: 11px;
		height: 2px;
	}
	#faq dl dt.is-open::after {
		right: 13px;
		width: 14px;
		height: 2px;
	}
	#faq dl dt::before {
		right: 18px;
		width: 11px;
		height: 2px;
	}
	#faq dl dt.is-open::before {
		right: 13px;
		width: 14px;
		height: 2px;
	}
	#faq dl dd {
		padding: 5%;
	}
	#faq dl dd p.txt {
		font-size: 1.4rem;
	}
}

/*--------------------------------------------------------------*/
/* 運営会社 */
/*--------------------------------------------------------------*/
section#company {
	padding-bottom: 60px;
}
section#company header.shead {
	background: url(../images/subhead_company.jpg) no-repeat;
	background-size: cover;
	padding: 60px 0;
	margin-bottom: 40px;
}
section#company span.eng {
	font-weight: bold;
}
section#company table {
	border-top: 1px solid #ccc;
}
section#company table tr th {
	width: 180px;
}
section#company table tr td {
	text-align: left;
	padding-left: 4vw;
	padding-top: 20px;
	padding-bottom: 20px;
}
section#company .map iframe {
	width: 100%;
	height: 280px;
}
/* 834 */
@media (max-width: 834px) {
	section#company table tr th {
		width: max(21.6vw, 82px);
	}
}

/*--------------------------------------------------------------*/
/* 運営会社 => 由来 */
/*--------------------------------------------------------------*/
section.about_origin .content {
	max-width: 920px;
}
section.about_origin .wrap {
	width: 330px;
	background: #fff;
	text-align: center;
	margin: 0 auto -30px auto;
	position: relative;
	z-index: 2;
}
section.about_origin h1 {
	font-weight: bold;
}
section.about_origin .wrap h2 {
	font-size: 3.2rem;
}
section.about_origin span.eng {
	font-weight: bold;
}
section.about_origin .wrap h3 {
	font-size: 1.4rem;
}
section.about_origin .box {
	border: 1px solid #ccc;
	margin-bottom: 30px;;
	text-align: center;
}
section.about_origin .box figure {
	padding: 60px 40px 100px 40px;
	position: relative;
}
section.about_origin .box figcaption {
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 25px;
	background: #F2F2F2;
}
section.about_origin .box figure img {
	max-width: 615px;
	width: 100%;
}
section.about_origin p.mb {
	margin-bottom: 60px;
}
section.about_origin h2.fdl {
	font-weight: normal;
	margin-bottom: 20px;
	position: relative;
	text-align: center;
}
section.about_origin h2.fdl::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	border-bottom: 1px solid #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}
section.about_origin h2.fdl span.txt {
	padding: 0 30px;
	background: #fff;
}
/* 580 */
@media (max-width: 580px) {
	section.about_origin .wrap h3 {
		font-size: 1.2rem;
	}
	section.about_origin .box figure {
		padding: 50px 0 80px 0;
	}
	section.about_origin .box figcaption {
		padding: 10px;
	}
	section.about_origin p.mb {
		margin-bottom: 40px;
	}
}

/*--------------------------------------------------------------*/
/* 検索 */
/*--------------------------------------------------------------*/
#search {
	padding-bottom: 60px;
}
#search header.shead {
	background: url(../images/subhead_search.jpg) no-repeat;
	background-size: cover;
	padding: 60px 0;
	margin-bottom: 40px;
}
#search .search_box {
	margin-bottom: 50px;
	max-width: 1000px;
}
#search ul.search_list {
	display: flex;
	flex-wrap: wrap;
}
#search ul.search_list > li {
	width: calc(96% / 3);
	margin-right: 2%;
	margin-bottom: 30px;
}
#search ul.search_list li:nth-child(3n) {
	margin-right: 0;
}
#search ul.search_list > li.zero {
	width: 100%;
	padding: 80px;
	text-align: center;
	border: 1px solid #ccc;
}
ul.category {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 5px;
}
ul.category li a {
	display: block;
	font-size: 13px;
	padding: 2px 5px 3px 5px;
	background: #1267a3;
	color: #fff;
	border-radius: 3px;
	transition: background .3s ease;
}
ul.category li a:hover {
	background: #4192cb;
}
#search dl dt {
	font-weight: bold;
	margin-bottom: 3px;
}
#search dl dd {
	font-size: 14px;
}
#search figure {
	position: relative;
	margin-bottom: 5px;
}
#search figure img {
	aspect-ratio: 4 / 3;
	width: 100%;
	object-fit: cover;
}
#search figure figcaption {
	font-size: 13px;
	display: inline-block;
	padding: 2px 5px 3px 5px;
	background: #000000c7;
	color: #fff;
	border-radius: 3px;
	position: absolute;
	top: 5px;
	left: 5px;
}
/* 580 */
@media (max-width: 580px) {
	#search ul.search_list > li {
		width: calc(98% / 2);
	}
	#search ul.search_list li:nth-child(3n) {
		margin-right: 2%;
	}
	#search ul.search_list li:nth-child(2n) {
		margin-right: 0;
	}
	ul.category li a {
		font-size: 11px;
		padding: 1px 5px 2px 5px;
	}
}

/*--------------------------------------------------------------*/
/* 詳細ページ */
/*--------------------------------------------------------------*/
#detail header {
	margin: 30px 0;
}
#detail header h1 {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 10px;
}
#detail .sec {
	border-top: 1px solid #ddd;
	padding-top: 60px;
	margin-bottom: 80px;
}
#detail .sec_head {
	margin-bottom: 40px;
}
#detail .sec_head span.eng {
	color: #9f9f9f;
}
#detail .sec_head h2 {
	font-size: 2.6rem;
	font-weight: bold;
}
#detail div.imgs ul.imgs {
	display: flex;
	flex-wrap: wrap;
}
#detail div.imgs ul.imgs li {
	width: calc(96% / 3);
	margin-right: 2%;
	margin-bottom: 1.5%;
}
#detail div.imgs ul.imgs li:nth-child(3n) {
	margin-right: 0;
}
#detail div.imgs ul.imgs li a img {
	aspect-ratio: 4 / 3;
	width: 100%;
	object-fit: cover;
}
.fancybox-button:hover {
	color: #555!important;
}
#detail iframe {
	width: 100%;
	height: 500px;
}
#detail .position .address {
	margin-bottom: 15px;
}
#detail .position .address h3 {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: bold;
	margin-right: 10px;
}
#detail .position .address p.txt {
	display: inline-block;
}
#detail div.detail table.detail td {
	padding-left: 4vw;
	text-align: left;
}
#detail div.detail table.detail th,
#detail div.posting table.posting th {
	width: 260px;
}
#detail div.posting table.posting td {
	padding-left: 4vw;
	text-align: left;
}
#detail .ad_note p.txt {
	padding: 20px;
	border: 1px solid #bbb;
	background: #fdfff5;
}
/* 掲出問い合わせ */
#detail .toiawase .flex .left {
	flex: 1;
	padding-right: 25px;
}
#detail .toiawase .flex .left ol li {
	display: flex;
	padding: 15px 20px;
	border: 1px solid #ccc;
	margin-bottom: 50px;
	position: relative;
}
#detail .toiawase .flex .left ol li:not(:last-child)::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #ef8143 transparent transparent transparent;
	position: absolute;
	bottom: -30px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
#detail .toiawase .flex .left ol li i {
	font-size: 3.0rem;
}
#detail .toiawase .flex .left ol li dl {
	padding-left: 20px;
}
#detail .toiawase .flex .left ol li dl dt {
	font-weight: bold;
	margin-bottom: 5px;
}
#detail .toiawase .flex .left ol li dl dd {
	font-size: 1.4rem;
}
#detail .toiawase .flex .right {
	position: relative;
}
#detail .toiawase .flex .right input#company {
	padding: 8px;
}
#detail .toiawase .flex .right form {
	position: sticky;
	top: 100px;
}
#detail .toiawase a {
	transition: color .3s ease;
}
#detail .toiawase a.login {
	color: blue;
}
#detail .toiawase a.login:hover {
	color: orange;
}
#detail .toiawase a.singup {
	color: red;
}
#detail .toiawase a.singup:hover {
	color: orange;
}
/* 1040 */
@media (max-width: 1040px) {
	#detail div.detail table.detail th,
	#detail div.posting table.posting th {
		width: max(25vw, 125px);
	}
}
/* 768 */
@media (max-width: 768px) {
	#detail .toiawase .flex .left {
		width: 100%;
		margin-bottom: 30px;
		padding-right: 0;
	}
	#detail .toiawase .flex .left .tb_view {
		display: inline-block;
	}
	#detail .toiawase .flex .right {
		width: 100%;
	}
}
/* 580 */
@media (max-width: 580px) {
	#detail div.imgs ul.imgs li {
		width: calc(98% / 2);
		margin-right: 2%;
		margin-bottom: 1.5%;
	}
	#detail div.imgs ul.imgs li:nth-child(3n) {
		margin-right: 2%;
	}
	#detail div.imgs ul.imgs li:nth-child(2n) {
		margin-right: 0;
	}
}

/*--------------------------------------------------------------*/
/* 掲載したい方 */
/*--------------------------------------------------------------*/
#owner header.shead {
	background: url(../images/subhead_owner.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 60px 0;
	margin-bottom: 40px;
}
#owner span.eng {
	font-weight: bold;
}
#owner .htype03 p.txt {
	margin-top: 20px;
}
#owner h2.pr {
	text-align: center;
	font-size: 2.4rem;
	margin-top: 60px;
	margin-bottom: 30px;
}
#owner p.bosyu {
	max-width: 670px;
	margin: 0 auto 20px auto;
}
#owner .content.middle {
	max-width: 720px;
}
#owner .content.middle div.ulcenter {
	text-align: center;
}
#owner .content.middle div.ulcenter ul {
	display: inline-block;
	list-style: disc;
}
#owner .content.middle ul li {
	margin: 8px 0;
	text-align: left;
}
#owner div.form {
	padding: 60px 0;
}
#owner div.form form.fm {
	max-width: 650px;
}
#owner div.form form.fm div.item {
	font-weight: bold;
	line-height: 1;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}
#owner div.form form.fm span.hissu {
	color: red;
	font-weight: normal;
	font-size: 1.1rem;
	line-height: 1;
	border: 1px solid red;
	border-radius: 3px;
	padding: 2px 3px 3px 3px;
	margin-left: 15px;
	margin-bottom: -2px;
}

/*--------------------------------------------------------------*/
/* お問い合わせ */
/*--------------------------------------------------------------*/
#contact header.shead {
	background: url(../images/subhead_contact.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 60px 0;
	margin-bottom: 40px;
}
#contact span.eng {
	font-weight: bold;
}
form.fm {
	display: block;
	max-width: 520px;
	width: 100%;
	margin: 0 auto;
}
form.fm input[type=text],
form.fm input[type=email],
form.fm select,
form.fm textarea {
	width: 100%;
	border-radius: 5px;
}
form.fm textarea {
	height: 160px;
}
form.fm div.form-group {
	margin-bottom: 20px;
}
/* box */
form.fm div.box {
	background: #fff;
	border-radius: 11px;
	padding: 30px;
	text-align: left;
	margin-bottom: 20px;
}
form.fm div.box h2 {
	margin-bottom: 17px;
}
form.fm div.box div.mark {
	text-align: left;
	color: #C61616;
	padding-bottom: 30px;
	border-bottom: 1px solid #707070;
}
form.fm div.box div.mark img {
	width: 45px;
	margin-right: 10px;
	float: left;
	padding-bottom: 10px;
}
form.fm div.box table {
	width: 100%;
}
form.fm div.box table th,
form.fm div.box table td {
	padding: 7px 0;
}
form.fm div.box table th {
	font-size: 1.6rem;
}
form.fm div.box table th span.subtxt {
	font-size: 1.1rem;
	vertical-align: middle;
	margin-left: 15px;
}
form.fm div.box table td ul {
	font-size: 0;
}
form.fm div.box table td ul li {
	display: inline-block;
	vertical-align: top;
	width: calc(95%/2);
	margin-right: 5%;
}
form.fm div.box table td ul li label {
	padding-left: 0;
}
form.fm div.box table td ul li:nth-child(2n) {
	margin-right: 0;
}
form.fm div.box table td input.ymd {
	background: url(../images/cal.svg) no-repeat center right 10px;
}
form.fm button[type=submit] {
	background: #EF8143;
	color: #fff;
	border: none;
	padding: 8px 30px;
	border-radius: 20px;
	transition: ALL .3s;
	outline: none;
}
form.fm button[type=submit]:hover {
	background: #fb9851;
}
form.fm .control {
	text-align: center;
	padding-top: 20px;
}
form.fm .help-block {
	color: red;
}

/*--------------------------------------------------------------*/
/* プライバシーポリシー */
/*--------------------------------------------------------------*/
#privacy header.shead {
	background: url(../images/subhead_privacy.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 60px 0;
	margin-bottom: 40px;
}
#privacy span.eng {
	font-weight: bold;
}
#privacy h3 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 10px;
}

/*--------------------------------------------------------------*/
/* 利用規約 */
/*--------------------------------------------------------------*/
#kiyaku header.shead {
	background: url(../images/subhead_kiyaku.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 60px 0;
	margin-bottom: 40px;
}
#kiyaku span.eng {
	font-weight: bold;
}
#kiyaku h3 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 10px;
}

/*--------------------------------------------------------------*/
/* sp tb menu */
/*--------------------------------------------------------------*/
.tb_nav {
	position: absolute;
	top: 0px;
	width: 100%;
	background: #fff;
	z-index: 99;
}
.tb_nav .logo {
	margin: 10px 0 0 10px;
	width: 200px;
}
.drawer-hamburger {
	position: absolute;
	width: 33px;
	right: 10px;
	z-index: 9999;
}
.drawer-nav h2 {
	text-align: center;
}
.drawer-nav h2 img {
	width: 88px;
}
.drawer-nav nav {
	padding-top: 25px;
	padding-left: 35px;
	margin-bottom: 7%;
}
.drawer-nav nav ul {
	display: initial!important;
}
.drawer-nav nav ul li {
	font-size: 1.6rem;
	margin-bottom: 4%;
}
.drawer-nav > ul {
	display: flex!important;
}

/*--------------------------------------------------------------*/
/* drawer */
/*--------------------------------------------------------------*/
.drawer-nav {
	text-align: left;
	padding: 15px;
	z-index: 9999;
}
.drawer-nav h3 {
	margin-bottom: 15px;
}
.drawer-nav h3 img {
	height: 45px;
}
.drawer-overlay {
	z-index: 998;
}

/*--------------------------------------------------------------*/
/* pager */
/*--------------------------------------------------------------*/
.navigation {
	margin-top: 20px;
	overflow: hidden;
}
.navigation ul li:hover::before {
	position: initial;
	left: 0;
	content: "";
	border-left: none;
	height: 0;
	top: 0;
}
ul.page-numbers {
	padding: 10px 0;
	text-align: center;
	margin-top: 50px;
}
ul.page-numbers li {
	display: inline;
	margin: 0 1px;
	padding: 0;
}
ul.page-numbers li span,
ul.page-numbers li a {
	display: inline-block;
	padding: 4px 8px;
	color: #000;
	border: 1px solid #849597;
	text-decoration: none;
	vertical-align: middle;
}
ul.page-numbers li span {
	border-color: #0074c1;
	color: #fff;
	background-color: #0074c1;
}
ul.page-numbers li a:hover {
	border-color: #0074c1;
	background-color: #0074c1;
	color: #fff;
}

/*--------------------------------------------------------------*/
/* breadcrumbs */
/*--------------------------------------------------------------*/
.breadcrumbs {
	padding: 18px 0;
}
.breadcrumbs i {
	font-size: 1.0rem;
	bottom: 1px;
	position: relative;
	margin: 0 6px;
}
.breadcrumbs .content,
.breadcrumbs span {
	font-size: 1.4rem;
}

/*--------------------------------------------------------------*/
/* 404 */
/*--------------------------------------------------------------*/
#fn404 .content {
	text-align: center;
	margin-bottom: calc(18vw / 2 + 25px);
}

/*--------------------------------------------------------------*/
/* form validation message */
/*--------------------------------------------------------------*/
div.alert-success {
	color: blue;
	margin-bottom: 20px;
}
div.alert-danger {
	color: red;
	margin-bottom: 20px;
}

/*--------------------------------------------------------------*/
/* #pageTop */
/*--------------------------------------------------------------*/
#pageTop {
	background: #777;
	opacity: 0.8;
	position: fixed;
	width: 55px;
	height: 55px;
	bottom: 30px;
	right: 20px;
	text-align: center;
	display: none;
	z-index: 999;
}
#pageTop svg {
	color: #fff;
	margin-top: 8px;
	width: 40px;
	height: 40px;
}
#pageTop:hover svg {
	color: #0074c1;
}

/*--------------------------------------------------------------*/
/* footer */
/*--------------------------------------------------------------*/
/* aside - left */
footer aside .left {
	display: block;
	width: 50%;
	background: #E8E8E8;
	transition: .6s;
}
footer aside .left .half {
	max-width: 520px;
	width: 100%;
	padding-left: 20px;
	margin-left: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 55px 0;
}
footer aside .left .half span {
	display: inline-block;
	text-align: left;
}
footer aside .left .half span.rbt {
	font-size: 5.0rem;
	color: #000;
	line-height: 1;
	transition: .4s;
}
footer aside .left .half span.jp {
	font-size: 2.2rem;
	display: block;
	color: #d9d8d8;
	margin-top: 10px;
	transition: .4s;
}
footer aside .left:hover {
	background: #f1f1f1;
}
footer aside .left:hover .half span.rbt {
	text-shadow: 8px 8px 8px rgba(0,0,0,0.3);
}
footer aside .left:hover .half span.jp {
	text-shadow: 8px 8px 8px rgba(0,0,0,0.3);
}
/* aside - right */
footer aside .right {
	display: block;
	width: 50%;
	background: #FF0000;
	transition: .3s;
}
footer aside .right .half {
	max-width: 520px;
	width: 100%;
	padding-right: 20px;
	margin-right: auto;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 55px 0;
}
footer aside .right .half span.txt {
	font-size: 5.0rem;
	color: #fff;
	line-height: 1;
	transition: .3s;
}
footer aside .right .half span.box {
	font-size: 3.0rem;
	background: #fff;
	color: #000;
	display: block;
	padding: 10px 30px;
	margin-top: 10px;
	box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.3);
	transition: .3s;
}
footer aside .right:hover {
	background: #ff1818;
}
footer aside .right:hover .half span.txt {
	color: #fbff00;
	text-shadow: 8px 8px 8px rgba(0,0,0,0.3);
}
footer aside .right:hover .half span.box {
	box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.3);
}
/* foot */
footer .foot {
	background: #ededed;
	padding: 40px 0;
}
footer .foot header {
	margin-bottom: 30px;
}
footer .foot header h1 {
	display: inline-block;
	font-size: 4.4rem;
	margin-right: 15px;
}
footer .foot header span.jp {
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: -1.5px;
}
footer .foot .content.flex {
	display: flex;
	flex-wrap: wrap;
}
footer .foot ul.nav {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 600px;
	margin-bottom: 30px;
}
footer .foot div.cm {
	background: #2da4c7;
	color: #fff;
	text-align: center;
	padding: 6px;
	font-size: 2.0rem;
	letter-spacing: 3px;
}
/* left */
footer .foot .left {
	flex: 1;
	padding-right: 10%;
}
/* right */
footer .foot .right {
	padding-top: 30px;
	width: 130px;
}
footer .foot .right .logo small {
	font-size: 1.1rem;
	margin-bottom: 5px;
	display: inline-block;
}
/* sns */
footer .foot ul.sns {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 50%;
}
footer .foot ul.sns li:not(:first-child) {
	margin-left: 15px;
}
/* copy */
footer .copy {
	text-align: center;
	padding: 20px 0 15px 0;
}
footer .copy #copy {
	font-size: 1.2rem;
	text-align: center;
}
/* 768 */
@media (max-width: 768px) {
	/* aside - left */
	footer aside .left .half span.rbt {
		font-size: 4.0rem;
	}
	footer aside .left .half span.jp {
		font-size: 1.6rem;
	}
	/* aside - right */
	footer aside .right .half span.rbt {
		font-size: 4.0rem;
	}
	footer aside .right .half span.box {
		font-size: 3.0rem;
	}
	/* foot */
	footer .foot header {
		margin-bottom: 25px;
	}
	footer .foot header h1 {
		font-size: 4.0rem;
		margin-right: 10px;
	}
	footer .foot ul.nav {
		justify-content: flex-start;
	}
	footer .foot ul.nav li {
		margin-right: 15px;
	}
	footer .foot div.cm {
		padding: 6px;
		font-size: 1.8rem;
		letter-spacing: 0;
	}
	/* left */
	footer .left {
		flex: 1;
		padding-right: 6%;
	}
}
/* 580 */
@media (max-width: 580px) {
	footer .foot header {
		margin-bottom: 25px;
	}
	footer .foot header h1 {
		display: block;
		font-size: 3.5rem;
		margin-right: 10px;
	}
	/* aside - left */
	footer aside .left {
		width: 100%;
		padding-right: 0;
	}
	footer aside .left .half {
		padding: 40px 0;
		max-width: initial;
	}
	footer aside .left .half span.rbt {
		font-size: 3.5rem;
	}
	footer aside .left .half span.jp {
		font-size: 1.6rem;
	}
	/* aside - right */
	footer aside .right {
		width: 100%;
		padding-right: 0;
	}
	footer aside .right .half {
		padding: 40px 0;
		max-width: initial;
	}
	footer aside .right .half span.rbt {
		font-size: 3.5rem;
	}
	footer aside .right .half span.box {
		font-size: 2.8rem;
		padding: 10px 15px 7px 15px;
	}
	/* left */
	footer .foot .left {
		width: 100%;
		padding-right: 0;
		margin-bottom: 40px;
	}
	/* ul.nav */
	footer .foot ul.nav {
		display: block;
		margin-bottom: 30px;
	}
	footer .foot ul.nav li {
		margin-bottom: 10px;
	}
	footer .foot ul.nav li a {
		font-size: 1.6rem;
	}
	/* right */
	footer .foot .right {
		padding-top: 0;
		width: 100%;
	}
	/* sns */
	footer .foot ul.sns {
		display: flex;
		justify-content: center;
		margin-bottom: 30px;
	}
	footer .foot .right {
		text-align: center;
	}
	footer .foot .right .logo {
		text-align: left;
		display: inline-block;
	}
	/* #copy */
	footer #copy {
		font-size: 1.0rem;
	}
}
