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

/*共通*/
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	font-family:'Shin Maru Go Medium', 'メイリオ', 'Meiryo', sans-serif;
	background: -moz-linear-gradient(top, #fff, #fffcdb);
	background: -webkit-linear-gradient(top, #fff, #fffcdb);
	background: linear-gradient(to bottom, #fff, #fffcdb);
}
body.active {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	z-index: 9998;
	/*
	opacity: 0.1;
	background-color: rgba(0,0,0,0.74);
	*/
}

.sp_br {
	display: none;
}
/*
header.active {
	background: none;
}
section.main_visual .stripe_contents.active::before {
	background: none;
}
section.news.active {
	background: none;
}
*/
main {
	display: block;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: #221815;
}
img {
    max-width: 100%;
    display: block;
}
.contents_block {
	width: 1100px;
	margin: 0 auto;
}
.c_pink {
	background-color: #fe9ad1;
}
.c_lightblue {
	background-color: #009de6;
}
.sp {
	display: none;
}

/*header*/
header {
	padding: 10px;
	background-image: url(../img/common/main_bg01.png);
}
.icon_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_icon {
	display: flex;
}
.header_icon li {
	margin-right: 20px;
}
.header_icon.right li {
	margin-right: 10px;
}
.header_icon li:last-child {
	margin-right: 0;
}
.header_icon li a {
	min-width: 150px;
	font-size: 16px;
	padding: 5px 10px;
	color: #fff;
	border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_icon li a.twitter {
	background-color: #1d9bf0;
}
.header_icon li a.twitter:hover {
	background-color: #6ebbee;
}
.header_icon li a.twitter::before {
	content: '';
	background-image: url(../img/common/icon_twitter.png);
	background-repeat: no-repeat;
	background-size: contain;
    width: 22px;
    height: 21px;
	display: flex;
	margin-right: 10px;
	margin-bottom: 3px;
}
.header_icon li a.facebook {
	background-color: #1a75f5;
}
.header_icon li a.facebook:hover {
	background-color: #66a1f5;
}
.header_icon li a.facebook::before {
	content: '';
	background-image: url(../img/common/icon_facebook.png);
	background-repeat: no-repeat;
	background-size: contain;
    width: 21px;
    height: 21px;
	display: flex;
	margin-right: 10px;
	margin-bottom: 3px;
}
.header_icon li a.c_blue {
	background-color: #157be7;
}
.header_icon li a.c_pink {
	background-color: #fe9ad1;
}
.header_icon li a.c_lightblue {
	background-color: #009de6;
}
.header_icon li a.c_blue:hover {
	background-color: #5ea1e7;
}
.header_icon li a.c_pink:hover {
	background-color: #fec7e5;
}
.header_icon li a.c_lightblue:hover {
	background-color: #63b7ef;
}
.header_icon.rigth li a{
	min-width: auto;
	padding: 0;
}

/*modal*/
.modal_contents {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	width: 100%;
    height: 100%;
	opacity: 0.9;
	background: #fff;
}
.modal_contents.active {
	display: block;
    background: #fff;
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal_contents ul {
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.modal_contents ul li a {
    font-size: 6vw;
    padding: 3% 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}
.modal_contents li {
	margin: 3vw 0;
}


/*main */
section.main_visual {
	padding: 80px 0 0 0;
}
section.main_visual.pt_0 {
	padding-top: 0;
}
section.main_visual h1 {
	padding-bottom: 50px;
}
.sticky_block {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
	z-index: 9999;
	padding: 30px;
	display: block;
/*	background: rgba(255,255,255,0.9);*/
}
.sticky_block.active {
	display: none;
}
.grad_box {
	width: 812px;
	margin: 0 auto;
	padding: 6px;
	border-radius: 10px;
	background: linear-gradient(to bottom, #feb1ac, #f5ecec);
}
.grad_box .purchase {
    line-height: 1.3;
	font-size: 40px;
    color: #fff;
	padding-top: 8px;
    padding-bottom: 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.grad_box .purchase:hover {
	background-color: #ec6ca5;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	/*
	-webkit-transition: 0.9s ease-in-out;
	transition: 0.9s ease-in-out;
	*/
}
.grad_box .purchase::after {
	content: '';
	display: block;
	position: absolute;
	background-image: url(../img/common/icon_star01.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 80px;
	height: 60px;
	left: -3px;
    top: -28px;
}
/*
.grad_box .purchase::before {
	content: '';
	display: block;
	background-image: url(../img/common/icon_star02.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 30px;
	height: 29px;
    padding-bottom: 60px;
}
*/
section.news {
	padding: 110px 0 50px 0;
	/*
	background: repeating-linear-gradient(-45deg, #f8f8f8, #f8f8f8 3px, #dfe0e0 3px, #dfe0e0 6px);
	*/
	background-image: url(../img/common/main_bg01.png);
}
section.news .wrap {
	width: 455px;
	margin: 0 auto;
	margin-top: -157px;
	position: relative;
}
section.news .wrap::before {
	content: '';
	display: block;
	background-image: url(../img/common/news_bf.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 45px;
	height: 71px;
	position: absolute;
    left: -55px;
    top: 12px;
}
section.news .wrap::after {
	content: '';
	display: block;
	background-image: url(../img/common/news_af.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 45px;
	height: 71px;
	position: absolute;
	right: -55px;
	top: 12px;
}
section.news h2 {
	font-size: 54px;
	background-color: #009de6;
	color: #fff;
	padding: 8px 0 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.news .project_detail {
	padding: 55px 70px;
	background-color: #fff;
}
section.news .project_detail h3 {
	font-size: 24px;
	padding: 16px 0 8px 0;
	color: #86351d;
	border-top: solid 3px #dcdddd;
	border-bottom: solid 3px #dcdddd;
	display: flex;
	align-items: center;
	word-break: break-all;
}
section.news .project_detail h3 span {
	color: #fe9ad1;
	margin-right: 25px;
	display: flex;
	align-items: center;
	word-break: keep-all;
}
section.news .project_detail h3 span::before {
	content: '';
	display: block;
	background-image: url(../img/common/icon_star03.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 39px;
	height: 37px;
	margin-right: 10px;
	padding-bottom: 8px;
}
section.news .project_detail .df.al_c {
	display: flex;
	align-items: center
}
section.news .project_detail dl {
	width: 600px;
	padding: 20px 0 91px 0;
	color: #86351d;
	font-weight: bold;
}
section.news .project_detail .df.al_c.full_size {
	width: 100%;
}
section.news .project_detail .df.al_c.full_size dl {
	width: 100%;
}

section.news .project_detail dl dt {
	font-size: 20px;
	padding-bottom: 10px;
	word-break: break-all;
}
section.news .project_detail dl dd {
	font-size: 15px;
	line-height: 2;
	word-break: break-all;
}
section.news .project_detail dl dd span {
	display: block;
	color: #ff0000;
}
section.news .project_detail figure {
	width: 360px;
	padding: 0 20px;
}
section.news .project_detail figure img {
	margin: 0 auto;
}
/*footer*/
footer {
	padding-bottom: 0px;
	position: relative;
	font-family: 'ゴシックMB101 B','GothicMB101Bold';
}
footer .footer_body {
	padding: 35px 0 35px 0;
	background-color: #fff;
}
footer small {
	font-size: 14px;
	font-weight: bold;
	color: #221815;
	display: flex;
	justify-content: center;
	line-height: 1;
	align-items: flex-end;
}
footer a {
	display: inline-flex;
    align-items: center;
}
footer a:hover {
	opacity: 0.8;
}
footer a img {
	margin-left: 3px;
}

footer .tc {
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-size: 16px;
}

.footer_link ul{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
}
.footer_link ul li:nth-child(2) {
	margin: 0 40px;
}
.footer_link ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_link ul li a:hover span{
	opacity: 0.8;
}
.footer_link ul li a figure {
	margin-right: 10px;
}
.page_top a {
    position: fixed;
    right: 20px;
    width: 68px;
    height: 68px;
    background-color: #fff;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
	bottom: 172px;
	border: solid 3px #dcdddd;
}
.page_top a::before {
    content: '';
	background-image: url(../img/common/arrow_up.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
	opacity: 0.5;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
	background-position: top 38% center;
}
.page_top a:hover::before {
	opacity: 0.8;
}
.open_project {
	background-image: url(../img/common/arrow_down.png);
	margin: 0px auto 0px auto;
}
.close_project {
	background-image: url(../img/common/arrow_up2.png);
	margin: 0px auto 20px auto;
}
.open_project,
.close_project {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
	cursor: pointer;
    width: 68px;
    height: 68px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
	border: solid 3px #dcdddd;
	background-repeat: no-repeat;
    background-position:center center;
	background-size: 100%;
	background-color: #dcdddd;
}


.open_project:hover,
.close_project:hover{
	background-color: #c3c3c3;
}

.project_detail li{
	display: none;
}
.project_detail li.opne_li,
.project_detail li.open_project_li{
	display: block;
}
.project_detail.open li{
	display: block;
}
.project_detail.open li.open_project_li{
	display: none;
}




@media screen and (max-width: 1100px) {
	header {
		padding: 3%;
	}
	header .contents_block {
		padding: 0;
	}
	.contents_block {
		width: 100%;
		padding: 0 3%;
	}
	section.main_visual {
		padding-top: 8%;
	}
	section.main_visual h1 {
		padding-bottom: 5%;
	}
	.sticky_block {
		padding: 3%;
	}
	.grad_box {
		width: 84vw;
	}
	.grad_box .purchase {
		font-size: 4.4vw;
	}
	.grad_box .purchase::before {
		padding-bottom: 9%;
	}
	section.news {
		padding: 11% 0 5% 0;
	}
	section.news .wrap {
		width: 40vw;
		margin-top: -16.5%;
	}
	section.news .wrap::before {
		top: 50%;
		width: 7vw;
		height: 7vw;
		left: -5.5vw;
		margin-top: -3.5vw;
	}
	section.news .wrap::after {
		top: 50%;
		width: 7vw;
		height: 7vw;
		right: -8vw;
		margin-top: -3.5vw;
	}
	section.news h2 {
		font-size: 4.8vw;
	}
	section.news .project_detail {
		padding: 5% 3%;
	}
	section.news .project_detail h3 {
		font-size: 2.2vw;
		padding: 1% 0 0.6% 0;
	}
	section.news .project_detail dl {
		width: 60%;
		padding: 2% 0 8% 0;
	}
	section.news .project_detail figure {
		width: 40%;
	}
	section.news .project_detail dl dt {
		font-size: 1.9vw;
		padding-bottom: 1%;
	}
	section.news .project_detail dl dd {
		font-size: 1.7vw;
	}
	footer {
		padding-bottom: 0;
	}
	footer .footer_body {
		padding: 4% 0 4% 0;
	}
}
@media screen and (max-width: 900px) {
	header .contents_block {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	header .nav-toggle.sp {
		display: block;
		width: 60px;
		height: 60px;
		background-color: #fff;
		border-radius: 10px;
		cursor: pointer;
	}
	header .nav-toggle.sp div {
		width: 60px;
		height: 60px;
		position: relative;
	}
	header .nav-toggle.sp div span {
		display: block;
		position: absolute;
		height: 3px;
		width: 32px;
		background: #333;
		left: 14px;
	}
	header .nav-toggle.sp div span.top {
	    top: 12px;
	}
	header .nav-toggle.sp div span.top.active {
		transform: rotate(-45deg);
		top: 20px;
	}
	header .nav-toggle.sp div span.center {
	    top: 22px;
	}
	header .nav-toggle.sp div span.center.active {
		display: none;
	}
	header .nav-toggle.sp div span.bottom {
	    top: 32px;
	}
	header .nav-toggle.sp div span.bottom.active {
		transform: rotate(45deg);
		top: 20px;
	}
	header .nav-toggle.sp div span.menu {
		top: 36px;
		background: none;
		font-size: 12px;
		font-weight: bold;
		left: 12px;
	}
	header .nav-toggle.sp div span.menu.active {
		font-size: 10px;
		top: 38px;
		left: 14px;
	}
	header .nav-toggle.sp div span.menu::before {
		content: 'menu';
	}
	header .nav-toggle.sp div span.menu.active::before {
		content: '閉じる';
	}
	.header_icon li:nth-child(3n) {
		margin-right: 0;
	}
	.header_icon.pc {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.sp_br {
		display: inherit;
	}
	.header_icon li {
	    margin-right: 1.5vw;
	}
	.header_icon li a {
		font-size: 14px;
		min-width: 80px;
		min-height: 40px;
		padding: 1vw 3vw;
	}
	.header_icon li a.twitter::before {
		width: 3vw;
		height: 3vw;
	    margin-right: 1vw;
	}
	.header_icon li a.facebook::before {
		width: 3vw;
		height: 3vw;
	    margin-right: 1vw;
	}
	header .nav-toggle.sp div span.menu {
		left: 14px;
	}
	section.main_visual h1 img {
		width: 100%;
	}
	.grad_box {
		padding: 0.7vw;
	}
	.grad_box .purchase {
		padding-top: 2%;
		padding-bottom: 3%;
	}
	.grad_box .purchase::before {
		width: 3vw;
		height: 3vw;
	}
	.grad_box .purchase::after {
		width: 9vw;
		height: 9vw;
		left: -0.5vw;
		top: -3.5vw;
	}
	section.news h2::before {
		width: 9vw;
		height: 9vw;
		top: -5.5vw;
		right: -5.5vw;
	}
	section.news .project_detail {
	    padding: 5% 5% 10% 5%;
	}
	section.news .project_detail h3 {
		font-size: 4vw;
		flex-direction: column;
		align-items: baseline;
	}
	section.news .project_detail h3 span::before {
	    width: 4vw;
	    height: 4vw;
		margin-right: 1vw;
		padding-bottom: 0.5vw;
	}
	section.news .project_detail .df.al_c {
		flex-direction: column-reverse;
	}
	section.news .project_detail figure {
		width: 100%;
		padding: 2% 0 0 0;
	}
	section.news .project_detail dl {
		width: 100%;
	}
	section.news .project_detail dl dt {
		font-size: 4.2vw;
	}
	section.news .project_detail dl dd {
		font-size: 3.5vw;
	}
	.page_top a {
		width: 10vw;
		height: 10vw;
		border-radius: 50%;
	}
	.page_top a::before {
		width: 100%;
    	height: 100%;
		background-position: center;
	}
	footer small {
		font-size: 2.9vw;
		text-align: center;
		flex-direction: column;
		align-items: center;
	}
	footer a img {
		margin-left: 3px;
		width: 2.4vw;
	}
	.open_project, .close_project {
		width: 10vw;
    	height: 10vw;
	}
	section.news .project {
		border: solid 2px #00b2ee !important;
		border-radius: 3vw !important;
	}
	
	.footer_link li{
		font-size: 3vw;
	}
	.footer_link a img {
		margin-left: 1vw;
		width: 6vw;
	}
	.footer_link ul li:nth-child(2) {
		margin: 0 4vw;
	}
	
	footer .tc {
		text-align: center;
		margin-bottom: 4%;
		letter-spacing: 1px;
	    font-size: 3.4vw;
	}

}
@media screen and (max-width: 350px) {
	.header_icon li a {
		font-size: 12px;
		min-width: 60px;
	}
}


/* 2021-05-20 add */
.apng-image {
	width: 100%;
	height: auto;
}

/* 2021-05-26 add */
.operating_company {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
.operating_company a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 767px) {
	.operating_company {
		font-size: 2.9vw;
	}
}