/*============================
body
============================*/
html {
	background-color: #000;
}

body {
	border-left: 0.15rem solid #000;
	border-right: 0.15rem solid #000;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	body {
		border-left: 0.07rem solid #000;
		border-right: 0.07rem solid #000;
		background-color: #E8EAE5;
	}
}

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	display: flex;
	justify-content: space-between;
	background-color: #FFF;
}

@media screen and (max-width: 599px) {
	header {
		background-color: #E8EAE5;
		position: fixed;
		z-index: 100;
		left: 0.07rem;
		top: 0;
		width: calc(100% - 0.14rem);
	}
}

/* ヘッダーが上に消える */
header.hide {
	/*	transform: translateY(-1.50rem);*/
}

/* スクロールで表示された状態 */
header.scr {
	/*
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
*/
}

header .logo {
	width: 2.25rem;
	padding: 0.30rem 0;
	padding-left: 4.00vw;
}

@media screen and (max-width: 599px) {
	header .logo {
		width: 1.50rem;
		padding: 0.18rem 0;
		margin: auto;
		line-height: 0;
	}
}

@media screen and (max-width: 599px) {
	header .glo_navi {
		position: absolute;
		width: 100%;
		top: 0.49rem;
		left: 0;
		background-color: rgba(255, 255, 255, 0.8);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		z-index: 1;
		display: none;
	}
}

header .glo_navi .list {
	display: flex;
	flex-wrap: wrap;
	padding-top: 0.35rem;
	padding-right: 0.3rem;
}

@media screen and (max-width: 599px) {
	header .glo_navi .list {
		display: block;
		padding: 0;
		border-top: 1px solid #9F9F9F;
	}
}

@media screen and (max-width: 599px) {
	header .glo_navi .list .link {
		border-bottom: 1px solid #9F9F9F;
	}
}

header .glo_navi .list .link img {
	height: 0.12rem;
	display: block;
}

@media screen and (max-width: 599px) {
	header .glo_navi .list .link img {
		height: 0.10rem;
	}
}

header .glo_navi .link a {
	color: #000;
	font-size: 0.2rem;
	text-decoration: none;
	padding: 0 0.20rem;
	display: inline-block;
	border-right: 1px solid #000;
}

@media screen and (max-width: 599px) {
	header .glo_navi .link a {
		display: block;
		font-size: 0.10rem;
		padding: 0.20rem;
		border-right: 0;
		position: relative;
	}

	header .glo_navi .link a::after {
		content: "";
		width: 0.14rem;
		height: 0.18rem;
		background-image: url(../img/sp_menu_arrow.svg);
		background-position: right center;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: 0.10rem;
		transform: translateY(-50%);
	}
}

header .glo_navi .link a:hover {
	opacity: 0.7;
}

header .glo_navi .link:last-child a {
	border-right: none;
}


/*============================
フッター
============================*/
footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0.8rem 0;
	background-color: #FFF;
}

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

footer .logo {
	width: 2.30rem;
	padding-left: 4.00vw;
}

@media screen and (max-width: 599px) {
	footer .logo {
		width: 1.15rem;
		padding-left: 0;
		margin: auto;
	}
}

footer .list {
	display: flex;
	flex-wrap: wrap;
	padding-right: 0.3rem;
}

footer .link a {
	color: #000;
	font-size: 0.2rem;
	text-decoration: none;
	padding: 0 0.20rem;
	display: inline-block;
	border-right: 1px solid #000;
	transition: .3s all;
}

footer .link a img {
	height: 0.12rem;
	display: block;
}

@media screen and (max-width: 599px) {
	footer .link a img {
		height: 0.10rem;
	}
}

footer .link a:hover {
	opacity: 0.7;
}

footer .link:last-child a {
	border-right: none;
}

/*============================
共通
============================*/
.sec_title_wrap {
	text-align: center;
}

.sec_title {
	text-align: center;
	display: inline-block;
	margin: auto;
}

.sec_title img {
	height: 0.24rem;
}

@media screen and (max-width: 599px) {
	.sec_title img {
		height: 0.13rem;
	}
}

.sec_title span {
	display: inline-block;
	position: relative;

}

@media screen and (max-width: 599px) {
	.sec_title span {}
}

.sec_title span:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -0.25rem;
	width: 0;
	border-bottom: solid 0.1rem #000;
	transform: translateX(-50%);
}

@media screen and (max-width: 599px) {
	.sec_title span:before {
		border-bottom: solid 0.07rem #000;
		bottom: -0.12rem;
	}
}

/* タイトル下のアニメーション帯 */
.sec_title.ttl_anime.ttl_anime_comp span:before {
	animation: border_anim 0.8s 0.5s forwards cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes border_anim {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

/*

.slick-track {
	display: flex!important;
}
.slick-slide {
	height: auto !important;
}
*/

.btn {
	text-align: center;
}

.btn a {
	display: inline-block;
	font-size: 0.20rem;
	font-weight: 600;
	background: #fff;
	text-decoration: none;
	color: #000;
	padding: 0.20rem 0.50rem;
}

.btn a:hover {
	background: #000;
	color: #fff;
}


/*============================
MV
============================*/
/*
#mv {
	width: 100%;
	height: 7.50rem;
	background: url(../img/mv.jpg) no-repeat center;
	background-size: cover;
}
@media screen and (max-width: 599px) {
	#mv {
		height: 3.80rem;
		background: url(../img/mv_sp.jpg) no-repeat center;
	}
}
*/


/*============================
リード
============================*/
#lead {
	background: #e8eae5;
	padding: 1.2rem 0;
}

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


#lead .lead_top {
	text-align: center;
	margin-bottom: 1.70rem;
}

@media screen and (max-width: 599px) {
	#lead .lead_top {
		margin-bottom: 0.80rem;
	}
}


#lead .lead_top .title {
	width: 5.30rem;
	height: 0.88rem;
	margin: 0 auto 0.97rem;
	opacity: 0;
}

@media screen and (max-width: 599px) {
	#lead .lead_top .title {
		max-width: 1.468rem;
		height: auto;
		margin-bottom: 0.40rem;
	}
}

#lead .lead_top .title img {
	display: block;
}


#lead .lead_top .text {
	font-size: 0.2rem;
	line-height: 1.96;
}

@media screen and (max-width: 599px) {
	#lead .lead_top .text {
		font-size: 0.15rem;
		line-height: 2.13;
	}
}


#lead .lead_bottom .sec_title {
	margin-bottom: 0.9rem;
}

@media screen and (max-width: 599px) {
	#lead .lead_bottom .sec_title {
		margin-bottom: 0.6rem;
	}
}

#lead .lead_bottom .sec_title img {
	height: 0.34rem;
}

@media screen and (max-width: 599px) {
	#lead .lead_bottom .sec_title img {
		height: 0.21rem;
	}
}

#lead .lead_bottom .text {
	font-size: 0.2rem;
	line-height: 1.96;
	text-align: center;
}

@media screen and (max-width: 599px) {
	#lead .lead_bottom .text {
		font-size: 0.15rem;
		line-height: 2.13;
		margin-bottom: 0;
	}
}



#lead .lead_bottom .text span {
	margin-bottom: 0.2rem;
	display: block;
}


/*============================
サービス
============================*/
#service {
	background: #dddddb;
	padding: 1.2rem 0;
}

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


#service .sec_title {
	text-align: center;
	margin-bottom: 1.2rem;
}

@media screen and (max-width: 599px) {
	#service .sec_title {
		margin-bottom: 0.6rem;
	}
}


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

#service .list .item {
	max-width: 3.4rem;
	width: 100%;
	height: 3.4rem;
	overflow: hidden;
	margin: 0 0.20rem;
	border: 0.15rem #000 solid;
	box-sizing: border-box;
	background-color: #000;
}

@media screen and (max-width: 599px) {
	#service .list .item {
		width: 2.25rem !important;
		height: 1.85rem;
		margin: 0;
		border: 0;
		padding: 0 0.20rem;
		box-sizing: border-box;
		background-color:initial;
	}
}

#service .list .item a {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
}

@media screen and (max-width: 599px) {
	#service .list .item a {
		border: 0.07rem #000 solid;
		box-sizing: border-box;
		overflow: hidden;
	}
}

#service .list .item a::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(0, 0, 0, 0.2);
	z-index: 10;
	top: -0.1rem;
	left: -0.1rem;
	padding: 0.1rem;
	transition: .3s all;
}

@media screen and (max-width: 599px) {
	#service .list .item a::before {
		top: -0.02rem;
		left: -0.02rem;
		padding: 0;
		width: calc(100% + 0.04rem);
		height: calc(100% + 0.04rem);
	}
}

#service .list .item a:hover::before {
	background: rgba(0, 0, 0, 0.6);
}

/* ロゴ */
#service .list .item a .logo {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2.00rem;
}

@media screen and (max-width: 599px) {
	#service .list .item a .logo {
		position: absolute;
		z-index: 10;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
	}

	#service .list .item a .logo.picnic img {
		height: 0.33rem;
		margin: auto;
	}

	#service .list .item a .logo.Acogarenist img {
		height: 0.21rem;
		margin: auto;
	}

	#service .list .item a .logo.tsukito img {
		height: 0.17rem;
		margin: auto;
	}
}

#service .list .item a .ph_wrap {
	width: 100%;
	height: 100%;
	z-index: 1;
	position: relative;
	transition: .3s ease-in-out;
}

#service .list .item a .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s ease-in-out;
}

@media screen and (max-width: 599px) {
	#service .list .item a .ph_wrap img {
		transform: scale(1.01);
	}
}

#service .list .item a:hover .ph_wrap img {
	transform: scale(1.05);
}

@media screen and (max-width: 599px) {
	#service .list .item a:hover .ph_wrap img {
		transform: scale(1.01);
	}
}

/* SP時のスライダー用 */
#service .list.service_slider {
	width: 100vw;
	margin: 0 -0.30rem;
}

/*

#service .list .item a {
	border: 0.15rem solid #000;
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	z-index: 0;
	transition: .3s ease-in-out;
	background-repeat: no-repeat;
	background-size: cover;
}

#service .list .item a:hover {
	transform: scale(1.1);
}

#service .list .item a::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background:  rgba(0,0,0,0.2);
	z-index: 1;
	top: -0.1rem;
	left: -0.1rem;
	padding: 0.1rem;
	transition: .3s all;
}

#service .list .item a:hover::before {
	background:  rgba(0,0,0,0.6);
}


#service .list .item a .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 2.23rem;
	width: 90%;
	z-index: 2;
}

#service .list .item.picnic a {
	background-image: url(../img/service_img_01.jpg);
}

#service .list .item.aco  a {
	background-image: url(../img/service_img_02.jpg);
}

#service .list .item.tsuki a {
	background-image: url(../img/service_img_03.jpg);
}
*/


/*============================
インフォメーション
============================*/
#info {
	background: #e8eae5;
	padding: 1.2rem 0;
}

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


#info .sec_title {
	margin-bottom: 1.2rem;
}

@media screen and (max-width: 599px) {
	#info .sec_title {
		margin-bottom: 0.6rem;
	}
}


/*new*/
#info {}

#info .slick-dots {
	bottom: -0.45rem;
}

@media screen and (max-width: 599px) {
	#info .slick-dots {
		bottom: -0.35rem;
	}
}

#info .slick-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

/* 前へ矢印 */
#info .prev-arrow {
	left: -0.50rem;
	z-index: 10;
	max-width: 0.30rem;
}

@media screen and (max-width: 599px) {
	#info .prev-arrow {
		left: -0.18rem;
		z-index: 10;
		width: 0.18rem;
	}
}

/* 次へ矢印 */
#info .next-arrow {
	right: -0.50rem;
	max-width: 0.30rem;
}

@media screen and (max-width: 599px) {
	#info .next-arrow {
		right: -0.18rem;
		z-index: 10;
		width: 0.18rem;
	}
}

/*最初と最後に矢印非表示*/
#info .slick-disabled {
	display: none !important;
}



#info .item {
	position: relative;
	box-sizing: border-box;
	margin-top: 0.30rem;
	padding: 0 0.20rem;
}

@media screen and (max-width: 599px) {
	#info .item {
		margin-top: 0;
		padding: 0 0.10rem;
	}
}

#info .itemBox {
	width: 100%;
	background-color: #ffffff;
	margin-top: 0.30rem;
	padding: 0 0.20rem;
}

@media screen and (max-width: 599px) {
	#info .itemBox {
		margin-top: 0;
		padding: 0 0.10rem;
	}
}


#info .item .new {
	position: absolute;
	top: -0.30rem;
	left: 0.20rem;
	z-index: 10;
}

#info .item .new span {
	font-size: 0.12rem;
	font-style: italic;
	color: #fff;
	background: #000;
	display: inline-block;
	padding: 0.05rem 0.10rem;
}

#info .item .cont {
	width: 100%;
	/*	background: #fff;*/
	box-sizing: border-box;
	padding: 0.20rem;
}

@media screen and (max-width: 599px) {
	#info .item .cont {
		padding: 0.15rem;
	}
}

#info .item .cont::before {
	content: "";
	width: calc(100% - 0.40rem);
	height: 100%;
	background-color: #FFF;
	position: absolute;
	top: 0;
	left: 0.20rem;
	z-index: -1;
}

@media screen and (max-width: 599px) {
	#info .item .cont::before {
		content: "";
		width: calc(100% - 0.30rem);
		height: 100%;
		background-color: #FFF;
		position: absolute;
		top: 0;
		left: 0.15rem;
		z-index: -1;
	}
}


#info .item .cont .ph_wrap {
	width: 100%;
	height: 3.00rem;
}

@media screen and (max-width: 599px) {
	#info .item .cont .ph_wrap {
		height: 56vw;
	}
}

#info .item .cont .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#info .contBox {
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	padding: 0.20rem;
	margin-bottom: 0.20rem;
}

@media screen and (max-width: 599px) {
	#info .contBox {
		padding: 0.15rem;
		margin-bottom: 0.15rem;
	}
}

#info .contBox::before {
	content: "";
	width: calc(100% - 0.40rem);
	height: 100%;
	background-color: #FFF;
	position: absolute;
	top: 0;
	left: 0.20rem;
	z-index: -1;
}

@media screen and (max-width: 599px) {
	#info .contBox::before {
		content: "";
		width: calc(100% - 0.30rem);
		height: 100%;
		background-color: #FFF;
		position: absolute;
		top: 0;
		left: 0.15rem;
		z-index: -1;
	}
}


#info .contBox .ph_wrap {
	width: 100%;
	height: 3.00rem;
}

@media screen and (max-width: 599px) {
	#info .contBox .ph_wrap {
		height: 56vw;
	}
}

#info .contBox .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* 日付 */
#info .contBox .date {
	font-size: 0.16rem;
	font-style: italic;
	padding: 0.20rem 0;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	#info .contBox .date {
		font-size: 0.10rem;
		font-style: normal;
		padding: 0.15rem 0;
	}
}
#info .contBox .date {
	font-size: 0.16rem;
	font-style: italic;
	padding: 0.20rem 0;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	#info .contBox .date {
		font-size: 0.10rem;
		font-style: normal;
		padding: 0.15rem 0;
	}
}

/* タイトル */
#info .contBox .info_title {
	font-size: 0.22rem;
	position: relative;
	line-height: 1.6;
}

@media screen and (max-width: 599px) {
	#info .contBox .info_title {
		font-size: 0.143rem;
		line-height: 1.53;
		font-weight: 500;
	}
}

#info .contBox .info_title::after {
	content: '';
	display: block;
	width: 1.15rem;
	height: 0.1rem;
	background: #000;
	bottom: -0.15rem;
	left: 0;
	margin: 0.15rem 0;
}

@media screen and (max-width: 599px) {
	#info .contBox .info_title::after {
		width: 0.73rem;
		height: 0.07rem;
	}
}
#info .contBox .info_title {
	font-size: 0.22rem;
	position: relative;
	line-height: 1.6;
}

@media screen and (max-width: 599px) {
	#info .contBox .info_title {
		font-size: 0.143rem;
		line-height: 1.53;
		font-weight: 500;
	}
}

#info .contBox .info_title::after {
	content: '';
	display: block;
	width: 1.15rem;
	height: 0.1rem;
	background: #000;
	bottom: -0.15rem;
	left: 0;
	margin: 0.15rem 0;
}

@media screen and (max-width: 599px) {
	#info .contBox .info_title::after {
		width: 0.73rem;
		height: 0.07rem;
	}
}

/* 本文 */
#info .item .cont p {
	font-size: 0.18rem;
	line-height: 1.65;
}

@media screen and (max-width: 599px) {
	#info .item .cont p {
		font-size: 0.13rem;
		line-height: 1.65;
	}
}
#info .contBox p {
	font-size: 0.18rem;
	line-height: 1.65;
}

@media screen and (max-width: 599px) {
	#info .contBox p {
		font-size: 0.13rem;
		line-height: 1.65;
	}
}

#info .btn {
	margin-top: 1.00rem;
}

/* READ MORE */
#info .btn_common {
	margin-top: 0.8rem;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 599px) {
	#info .btn_common {
		margin-top: 0.45rem;
	}
}

#info .btn_common a {
	width: 2.3rem;
	background-color: #fff;
	padding: 0.20rem;
	display: block;
	box-sizing: border-box;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#info .btn_common a {
		width: 1.15rem;
		padding: 0.06rem 0.10rem;
	}
}

#info .btn_common a:hover {
	background-color: #000;
}

#info .btn_common a span {
	background-image: url(../img/info_btn_bk.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	height: 0.17rem;
}

#info .btn_common a:hover span {
	background-image: url(../img/info_btn_wh.svg);
	height: 0.17rem;
}


/*============================
ブログ
============================*/
#blog {
	background: url(../img/blog_back.jpg) no-repeat center;
	background-size: cover;
	padding: 1.65rem 0;
}

@media screen and (max-width: 599px) {
	#blog {
		padding: 1.00rem 0;
		background: url(../img/blog_back_sp.jpg) no-repeat center;
		background-size: cover;
	}
}


#blog .sec_title span {
	/*	border-bottom: #fff 0.15rem solid;*/
}

#blog .sec_title {
	margin-bottom: 1.2rem;
}

@media screen and (max-width: 599px) {
	#blog .sec_title {
		margin-bottom: 0.50rem;
	}
}


#blog .sec_title span::before {
	border-bottom: #fff 0.10rem solid;
}

@media screen and (max-width: 599px) {
	#blog .sec_title span::before {
		border-bottom: #fff 0.07rem solid;
	}
}

#blog p {
	font-size: 0.2rem;
	line-height: 1.96;
	color: #fff;
	text-align: center;
	letter-spacing: 0.14em;
}

@media screen and (max-width: 599px) {
	#blog p {
		font-size: 0.15rem;
		line-height: 2.13;
		color: #fff;
		text-align: center;
	}
}


#blog .btn_common {
	margin-top: 0.7rem;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#blog .btn_common {
		margin-top: 0.20rem;
		position: relative;
		z-index: 1;
	}
}

#blog .btn_common a {
	width: 2.3rem;
	background-color: #fff;
	padding: 0.20rem;
	display: block;
	box-sizing: border-box;
	margin: auto;
}

@media screen and (max-width: 599px) {
	#blog .btn_common a {
		width: 0.60rem;
		padding: 0.06rem 0.10rem;
	}
}

#blog .btn_common a:hover {
	background-color: #000;
}

#blog .btn_common a span {
	background-image: url(../img/blog_btn_bk.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	height: 0.17rem;
}

#blog .btn_common a:hover span {
	background-image: url(../img/blog_btn_wh.svg);
	height: 0.17rem;
}

#blog .blogContents {
	width: 100%;
	background-color: #ffffff;
	box-shadow: 0px 0px 15px -5px #b0b0b0;
	padding: 0.5rem;
	font-size: 0.2rem;
}
/*
#blog .blogContents .blogContents_line{
	padding: 0.3rem 0.1rem;
	font-size: 0.15rem;
	font-weight: bold;
	border-bottom: dotted #2C2C2C 2px;
	text-align: left;
} */
/* --------------------------------------------------------
	flex
-------------------------------------------------------- */

#blog .blogContents .blogContents_line dl {
padding: 10px 10px 20px;
border-bottom: 1px solid #ccc;
}

#blog .blogContents .blogContents_line dt {
padding-bottom: 5px;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
#blog .blogContents .blogContents_line dt {
clear: left;
float: left;
width: 20%;
}
#blog .blogContents .blogContents_line dd {
margin-left: 21%;
}
	
}

/*============================
Single blog
============================*/




/*============================
ABOUT
============================*/
#about {
	background: #dddddb;
	padding: 1.35rem 0;
}

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

#about .sec_title {
	margin-bottom: 2.00rem;
}

@media screen and (max-width: 599px) {
	#about .sec_title {
		max-width: 1.05rem;
		margin-bottom: 0.70rem;
	}
}

.about_top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2.00rem;
}

@media screen and (max-width: 599px) {
	.about_top {
		flex-wrap: wrap;
		position: relative;
		padding: 0.20rem;
		margin-bottom: 0.60rem;
	}

	.about_top::before {
		content: "";
		width: 100%;
		height: calc(100% - 0.50rem);
		background-image: url(../img/about_img_comp.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 0;
	}
}

.about_top .text_wrap {
	width: 7.00rem;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	.about_top .text_wrap {
		width: 100%;
		box-sizing: border-box;
	}
}

/* タイトル */
.about_top .text_wrap .about_cont_title {
	margin-bottom: 0.40rem;
}

.about_top .text_wrap .about_cont_title img {
	height: 0.24rem;
}

@media screen and (max-width: 599px) {
	.about_top .text_wrap .about_cont_title {
		margin: 0 auto 0.40rem;
	}

	.about_top .text_wrap .about_cont_title img {
		display: block;
		width: 0.85rem;
		height: auto;
		margin: auto;
	}
}

.about_top .text_wrap .text_box {
	margin-bottom: 0.2rem;
	font-size: 0.22rem;
	line-height: 1.4;
}

@media screen and (max-width: 599px) {
	.about_top .text_wrap .text_box {
		margin-bottom: 0.20rem;
		font-size: 0.12rem;
		line-height: 1.4;
		color: #FFF;
	}

	.about_top .text_wrap .text_box:last-child {
		margin-bottom: 0;
	}
}

.about_top .text_wrap .text_box h4 {
	font-weight: normal;
	margin-bottom: 0.05rem;
	font-size: 0.2rem!important;
}

.about_top .ph_wrap {
	width: calc(100% - 7.00rem);
	padding-left: 0.6rem;
}


/*メッセージ*/
.about_bottom {
	display: flex;
	align-items: center;
	margin-bottom: 1.42rem;
}

@media screen and (max-width: 599px) {
	.about_bottom {
		display: block;
		margin-bottom: 0.60rem;
	}
}

.about_bottom .text_wrap {
	font-size: 0.25rem;
	line-height: 1.4;
	box-sizing: border-box;
	padding-left: 0.60rem;
}

@media screen and (max-width: 599px) {
	.about_bottom .text_wrap {
		font-size: 0.12rem;
		line-height: 1.5;
		padding-left: 0;
	}
}

.about_bottom .text_wrap .about_cont_title {
	margin-bottom: 0.40rem;
}

@media screen and (max-width: 599px) {
	.about_bottom .text_wrap .about_cont_title {
		width: 0.80rem;
		margin: 0 auto 0.20rem;
	}
}

.about_bottom .text_wrap .about_cont_title img {
	height: 0.24rem;
}

/* 写真 */
@media screen and (max-width: 599px) {
	.about_bottom .text_wrap .ph_wrap {
		width: 1.37rem;
		height: 1.84rem;
		overflow: hidden;
		margin: 0 auto 0.20rem;
	}

	.about_bottom .text_wrap .about_cont_title img {
		height: auto;
	}
}

.about_bottom .text_wrap .text {
	line-height: 2;
	font-size: 0.2rem;
}

@media screen and (max-width: 599px) {
	.about_bottom .text_wrap .text {
		font-size: 0.12rem;
		text-align: center;
	}
}


/*8CREDO*/
.about_credo {
/*	width: calc(100% - 13.84vw);*/
/*	width: 100%;*/
	max-width: 11.20rem;
	margin: auto;
	position: relative;
}

@media screen and (max-width: 599px) {
	.about_credo {
		width: calc(100% - 0.60rem);
	}
}


.about_credo .in::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../img/about_credo_back.jpg) no-repeat center;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	.about_credo::before {
		height: calc(100% - 0.30rem);
		top: auto;
		bottom: 0;
	}
}

@media screen and (max-width: 599px) {
	.about_credo .about_cont_title {
		width: 0.75rem;
		margin: auto;
		padding-bottom: 0.20rem;
	}
}

/* ポップアップオープン時 */
.about_credo.open::before {
	opacity: 0.5;
}

.about_credo_wrap {
	padding: 0.75rem 0.50rem 0.25rem;
}

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

.about_credo_wrap .about_cont_title {
	margin-bottom: 0.75rem;
	position: relative;
}

.about_credo_wrap .about_cont_title img {
	height: 0.32rem;
}

.about_credo_wrap .about_credo_list_wrap {
	position: relative;
}

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

.about_credo_wrap .list .item {
	width: 2.00rem;
	height: 2.00rem;
	position: relative;
	background: rgba(0, 0, 0, 0.7);
	margin-bottom: 0.75rem;
	cursor: pointer;
	transition: all 0.3s;
}

@media screen and (max-width: 1200px) {
	.about_credo_wrap .list .item {
		width: 2.20rem;
		height: 2.20rem;
	}
}

@media screen and (max-width: 599px) {
	.about_credo_wrap .list .item {
		width: 46%;
		height: 30vw;
		margin-bottom: 0.20rem;
	}
}

.about_credo_wrap .list .item .ph_wrap {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
}

.about_credo_wrap .list .item .ph_wrap img {
	display: block;
	height: 0.15rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	.about_credo_wrap .list .item .ph_wrap img {
		height: 0.09rem;
	}
}

/*============================
8 CREDO ポップアップ
============================*/
/* ポップアップ時のコンテンツ背景 */
.about_credo_wrap .credo_popup_overlay {
	width: 100%;
	height: calc(100% - 0.75rem);
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transition: all 0.5s ease;
	transform: scale(0.8);
}

@media screen and (max-width: 599px) {
	.about_credo_wrap .credo_popup_overlay {
		height: calc(100% - 0.20rem);
		transition: all 0.6s ease;
		transform: scale(0.5);
	}
}

.about_credo_wrap .credo_popup_overlay.open {
	transform: scale(1);
	display: block;
	opacity: 1;
	z-index: 1;
}

/* 閉じるボタン */
.about_credo_wrap .credo_popup_close {
	width: 0.15rem;
	height: 0.15rem;
	position: absolute;
	top: 0.15rem;
	right: 0.15rem;
	background-image: url(../img/about_credo_close_btn.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 2;
	cursor: pointer;
	display: none;
}

/* ポップアップコンテンツ */
.about_credo_wrap .credo_popup_cont {
	width: 100%;
	position: absolute;
	top: calc(50% - 0.50rem);
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
	text-align: center;
	display: none;
	opacity: 0;
}

.about_credo_wrap .credo_popup_cont.open {
	display: block;
	animation: mv_fade_in 1s 0.5s forwards;
}

/* ナンバー */
.about_credo_wrap .credo_popup_cont .credo_popup_num {
	padding-bottom: 0.65rem;
}

@media screen and (max-width: 599px) {
	.about_credo_wrap .credo_popup_cont .credo_popup_num {
		padding-bottom: 0.35rem;
	}
}

.about_credo_wrap .credo_popup_cont .credo_popup_num img {
	display: block;
	height: 0.25rem;
	margin: auto;
}

@media screen and (max-width: 599px) {
	.about_credo_wrap .credo_popup_cont .credo_popup_num img {
		height: 0.15rem;
	}
}

/* タイトル */
.about_credo_wrap .credo_popup_cont .credo_popup_title {
	padding-bottom: 0.60rem;
}

@media screen and (max-width: 599px) {
	.about_credo_wrap .credo_popup_cont .credo_popup_title {
		padding-bottom: 0.40rem;
	}
}

.about_credo_wrap .credo_popup_cont .credo_popup_title img {
	height: 0.2rem;
}

@media screen and (max-width: 599px) {
	.about_credo_wrap .credo_popup_cont .credo_popup_title img {
		height: 0.15rem;
	}
}

.about_credo_wrap .credo_popup_cont .credo_popup_title span {
	position: relative;
	display: inline-block;
}

.about_credo_wrap .credo_popup_cont .credo_popup_title span::after {
	content: "";
	display: block;
	height: 0.07rem;
	width: 100%;
	background-color: #FFF;
	margin-top: 0.10rem;
}

@media screen and (max-width: 599px) {
	.about_credo_wrap .credo_popup_cont .credo_popup_title span::after {
		height: 0.07rem;
		margin-top: 0.05rem;
	}
}

/* テキスト */
.about_credo_wrap .credo_popup_cont .text {
	font-size: 0.18rem;
	line-height: 1.93;
	letter-spacing: 0.17em;
	color: #FFF;
}

@media screen and (max-width: 599px) {
	.about_credo_wrap .credo_popup_cont .text {
		font-size: 0.15rem;
		line-height: 2.13;
		letter-spacing: 0.17em;
	}
}

/*============================
CONTACT
============================*/
#contact {
	background: url(../img/contact_back.jpg) no-repeat center;
	background-size: cover;
	padding: 1.65rem 0;
	position: relative;
	z-index: 10;
}

@media screen and (max-width: 599px) {
	#contact {
		background: url(../img/contact_back_sp.jpg) no-repeat center;
		background-size: cover;
		padding: 0.80rem 0;
	}
}

#contact .sec_title {
	margin-bottom: 1.65rem;
}

@media screen and (max-width: 599px) {
	#contact .sec_title {
		width: 0.95rem;
		margin-bottom: 0.55rem;
	}
}

#contact .sec_title span::before {
	border-bottom-color: #fff;
}

.contact_box {
	max-width: 7.70rem;
	margin: auto;
}

.contact_box dl {
	margin-bottom: 0.525rem;
}

@media screen and (max-width: 599px) {
	.contact_box dl {
		margin-bottom: 0.55rem;
	}
}

.contact_box dt {
	font-size: 0.19rem;
	color: #fff;
	margin-bottom: 0.10rem;
	letter-spacing: 0.23em;
}

@media screen and (max-width: 599px) {
	.contact_box dt {
		font-size: 0.12rem;
	}
}

.contact_box dd input {
	width: 100%;
	border-radius: 0.10rem;
	height: 0.525rem;
	border: none;
	font-size: 0.19rem;
	padding: 0.15rem;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	.contact_box dd input {
		border-radius: 0.04rem;
		height: 0.3rem;
		font-size: 0.16rem;
		padding: 0.06rem;
	}
}

.contact_box dd textarea {
	width: 100%;
	border-radius: 0.10rem;
	height: 3.25rem;
	border: none;
	font-size: 0.22rem;
	padding: 0.20rem;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	.contact_box dd textarea {
		border-radius: 0.04rem;
		height: 1.10rem;
		font-size: 0.16rem;
		padding: 0.06rem;
	}
}

.contact_box .btnWrap {
	text-align: center;
}

.contact_box .btnWrap input {
	width: 1.2rem;
	padding: 0.20rem 0;
	font-size: 0.22rem;
	border: none;
	border-radius: 0;
	cursor: pointer;
	letter-spacing: 0.14em;
	transition: all 0.3s;
	background-color: #000;
	color: #FFF;
}

@media screen and (max-width: 599px) {
	.contact_box .btnWrap input {
		-webkit-appearance: none;
		width: 0.60rem;
		padding: 0.08rem 0;
		font-size: 0.12rem;
		letter-spacing: 0.14em;
	}
}

.contact_box .btnWrap input:hover {
	background: #ffffff;
	color: #000;
}

/* ボタン無効 */
.contact_box .btnWrap input.disable {
	background: #ffffff;
	color: #bdbdbd;
	cursor: not-allowed;
	pointer-events: none;
}

.contact_box .btnWrap input.disable:hover {
	opacity: 1;
}

/* デバッグ用 */
#score {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 0.20rem;
	font-size: 0.16rem;
	margin-bottom: 0.30rem;
	line-height: 2;
	width: 8.00rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: fixed;
	bottom: 0.30rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	border: 1px solid #000;
	border-radius: 0.10rem;
	display: none;
}

@media screen and (max-width: 599px) {
	#score {
		padding: 0.10rem 0.20rem;
		font-size: 0.14rem;
		margin-bottom: 0.10rem;
		line-height: 1.75;
		width: 94%;
		box-sizing: border-box;
		justify-content: space-between;
		flex-wrap: wrap;
		bottom: 0;
	}
}

#score div {
	padding: 0 0.20rem;
}

@media screen and (max-width: 599px) {
	#score div {
		padding: 0;
		width: 50%;
	}
}

/*contact form 7*/
#contact .wpcf7 form .wpcf7-response-output {
	text-align: center;
	color: #fff;
	font-size: 0.16rem;
	padding: 0.05rem;
}

#contact .wpcf7-spinner{
	width:0;
	margin:0;
}

/* デバッグ用 */
#line,
#line_bottom {
	width: 100%;
	height: 2px;
	background-color: red;
	position: absolute;
	z-index: 100;
	left: 0;
	opacity: 0;
}