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



.mainimage_wrap {
	background-color: #fede73;
	padding: 24px 10px 48px;
	width: 100%;
}
@media screen and  (min-width: 640px) {
	.mainimage_wrap {
		padding: 62px 10px 77px;
	}
}
.mainimage_wrap p {
	margin: 0;
}
.mainimage_wrap h2 {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
	padding-bottom: 6px;
	border-bottom: solid 3px #e2cfdc;
	width:-moz-fit-content; /* Firefox */
	width:fit-content; /* other browsers */
	margin-left: auto;
	margin-right: auto;
	margin-top: 16px;
}
@media screen and  (min-width: 640px) {
	.mainimage_wrap h2 {
		font-size: 36px;
		margin-top: 34px;
	}
	.mainimage_wrap br {
		display: none;
	}
}


.inquiry_wrap  {
	border-radius: 40px;
	background-color: #fede73;
	padding: 16px;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	width:-moz-fit-content; /* Firefox */
	width:fit-content; /* other browsers */
	margin-top: -80px;
	margin-bottom: 36px;
}
.inquiry_wrap a {
	display: inline-block;
	padding: 20px 32px;
	min-width: 180px;
	border-radius: 100px;
	text-decoration: none;
	text-box-trim: trim-both;
	color: white;
	font-size: 17px;
	font-weight: 600;
	line-height: 1;
	background-color: #79b443;
	transition: 0.5s;
}
.inquiry_wrap a:hover {
	background-color: #85FF15;
	text-shadow: 0 1px 3px #666;
	box-shadow: #85FF15 0 1px 3px;
}
.intro_text {
	font-size: 17px;
	line-height: 1.8;
	margin: 32px 10px 100px;
	font-weight: 500;
}

@media screen and  (min-width: 640px) {
	
	.inquiry_wrap  {
		border-radius: 80px;
		padding: 28x;
		margin-top: -80px;
		margin-bottom: 36px;
	}
	.inquiry_wrap a {
		padding: 30px 55px;
		min-width: 240px;
		font-size: 22px;

	}
	.intro_text {
		font-size: 20px;
		margin: 32px 10px 200px;
		text-align: center;
	}

}




/* あるある */

.aruaru_content_wrapall {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px 0;
	margin-top: 48px;
}
.aruaru_section {
	padding-bottom: 120px;
}
@media screen and  (min-width: 640px) {
	.aruaru_section {
		padding-bottom: 240px;
	}
}

.aruaru_wrap {
	display: flex;
	justify-content: space-between;
	gap: 16px 48px;
	padding: 24px;
	background-color: white;
	box-shadow: #aaa 0 1px 2px;
	text-decoration: none;
	transition: 1s;
	position: relative;
	flex-wrap: wrap;
}
@media screen and  (min-width: 640px) {
	.aruaru_wrap {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 16px 48px;
		padding: 24px;
		background-color: white;
		box-shadow: #aaa 0 1px 2px;
		text-decoration: none;
		transition: 1s;
		position: relative;
	}
}
.aruaru_wrap::before {
	position: absolute;
	display: block;
	content: "";
	width: 0;
	background-color: rgba(239,214,89,0.20);
	z-index: 0;
	left: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
}

.aruaru_wrap:hover::before {
	animation: 1s aruaru_wrap_anime forwards ease-in-out;
}

@keyframes aruaru_wrap_anime {
	0% {
		opacity: 0;
		left: 0;
	}
	50% {
		opacity: 1;

	}
	90% {
		opacity: 1;

	}
	100% {
		opacity: 0;
		left: calc(100% - 50px);
		width: 50px;
	}
}
.aruaru_wrap:hover {
	box-shadow: #888 0 1px 8px;
	background-color: 
	rgba(251,245,234,1.00);
}
.aruaru_title_wrap {
	position: relative;
	padding: 0 10px;
}
.aruaru_title_wrap p{
	position: relative;
	z-index: 10;
	margin: 0;
}
.aruaru_title_wrap::before {
	content: "";
	height: 3px;
	background-color: #fdd13d;
	position: absolute;
	top: 16%;
	left: 0;
	right: 0;
	z-index: 0;
}


.aruaru_wrap .app_icon_wrap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.aruaru_wrap .app_icon_wrap img {
	max-width: 240px;
	max-height: 100px;
}

.aruaru_content_wrap{
	width: 100%;
}
.aruaru_title {
	display: flex;
	align-items: center;
	column-gap: 16px;
	margin-bottom: 36px;
	padding: 6px 0 18px;
	border-bottom:  dotted 4px #96bccc;
}


.aruaru_title .aruaru_title_icon {
	width: 70px;
}
.aruaru_title .aruaru_title_text {
	font-size: 20px;
	line-height: 1.1;
}
@media screen and  (min-width: 640px) {
	.aruaru_title .aruaru_title_text {
		font-size: 25px;
	}
}

.app_catch {
	font-size: 19px;
	color: #e55436;
	line-height: 1.2;
}
.app_name {
	margin-top: 24px; 
	font-size: 17px;
	color: #000;
	line-height: 1.2;
	font-weight: 600;
}
.app_discp {
	margin-top: 10px; 
	font-size: 15px;
	color: #666;
	line-height: 1.6;
}
.moredetail_wrap {
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.moredetail_wrap img {
	width: 24px;
	height: auto;
}

@media screen and  (min-width: 640px) {
	.aruaru_wrap .app_icon_wrap {
		min-width: 270px;
		width: 25%;
	}
	.aruaru_content_wrap {
		width: auto;
	}
	.moredetail_wrap {
		width: 100px;
	}
}




/*コンタクト*/
.section_title{
	display: none;
}
@media screen and  (min-width: 640px) {
	.section_title{
		display: block;
	}
}

.contact_wrap {
	padding-top: 120px;
	
}

