@charset "UTF-8";




body {
	margin: 0;
	font-family: Arial, sans-serif;
	color: #3c3c3c;
}

h2 {
    position: relative;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: normal;
    text-align: center;
    letter-spacing: 1px;
    font-family: "リュウミン", "Ryumin Pro", "Ryumin Pr6N", "Hiragino Mincho Pro", "Yu Mincho", "MS PMincho", serif !important;
}


h2::after {
    content: '';
    width: 40px;
    height: 1px;
    display: inline-block;
    background-color: #3c3c3c;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

p {
	line-height: 1.6;
}

a {
	color: #3c3c3c;
}

img {
	width: 100%;
}




/* 共通パーツ */
section {
	padding: 50px 0;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.more_btn {
	position: relative;
}
@media (max-width: 750px) {
	h2 {
		margin-bottom: 50px;
	}
}





/* ロゴ */
.logo {
	max-width: 230px;
	font-size: 20px;
	font-weight: bold;
	line-height: 0;
}





/* ハンバーガーメニュー（スマホ用） */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.hamburger div {
	width: 30px;
	height: 3px;
	background-color: #ccc;
}

/* モバイルメニュー */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -250px;
	width: 250px;
	height: 100%;
	background-color: #beaac5;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 60px;
	transition: right 0.4s ease-in-out;
	z-index: 999;
}

.mobile-menu a {
	color: #FFF;
	text-decoration: none;
	font-size: 18px;
	margin: 10px 0;
}

.mobile-menu.active {
	right: 0;
}

/* スマホ用のスタイル */
@media (max-width: 750px) {
	.nav-menu {
			display: none;
	}

	.hamburger {
			display: flex;
	}
}


/* fv */
section.fv {
	padding: 0;
}



/* info */
#info ul {
	margin-bottom: 50px;
}
#info ul li {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	margin-bottom: 20px;
	font-size: 14px;
}
#info ul li span.info_day {
	width: 106px;
	font-size: 14px;
	line-height: 17px;
}
#info ul li span.info_tag {
	width: 64px;
	height: 17px;
	margin-right: 30px;
	background-color: #beaac5;
	color: #fff;
	font-size: 12px;
	line-height: 17px;
	text-align: center;
}
@media (max-width: 750px){
	#info ul li {
		flex-wrap: wrap;
	}
	#info ul li span.info_day {
		width: 80px;
		margin-bottom: 6px;
	}
}


/* service */
#service {
	/* background-color: #e8e8e8; */
	background-image: url('../images/service_bg.jpg');
}
#service ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#service ul li {
	width: 48.5%;
	margin-bottom: 30px;
}
#service ul li img {
	/* border-radius: 6px; */
}
#service ul li .service_group {
	position: relative;
}
#service ul li > p {
	font-size: 14px;
	font-weight: normal;
	text-align: center;
}
#service ul li .service_category {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    border: solid 1px #ffffff87;
    padding: 10px 30px; */
}
#service ul li .service_category h3 {
    font-size: 32px;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 3px;
}
#service ul li .service_img {
	margin-bottom: 10px;
}
@media (max-width: 750px){
	#service ul {
		flex-wrap: wrap;
	}
	#service ul li {
		width: 100%;
	}
}


/* column */
#column h3 {
	letter-spacing: 1px;
}
#column ul {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
#column ul li {
	position: relative;
	width: 31.5%;
}
.column_img {
	margin-bottom: 20px;
}
.column_tit {
	margin-bottom: 10px;
	font-size: 20px;
}
.column_txt {
	font-size: 14px;
}
@media (max-width: 750px){
	#column ul {
		flex-wrap: wrap;
	}
	#column ul li {
		width: 100%;
		margin-bottom: 50px;
	}
}








footer {
	padding: 50px 0;
	border-top: 1px solid #dddddd;
	background-color: #f7f7f7;
}
footer .logo {
	display: flex;
	justify-content: flex-start;
	max-width: 230px;
	margin-bottom: 50px;
}
footer .footer_menu {
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
footer .footer_menu .footer_menu_category {
	width: 25%;
}
footer .footer_menu .footer_menu_category ul {
}
footer .footer_menu .footer_menu_category ul li {
	margin-bottom: 10px;
}
footer .footer_menu .footer_menu_category ul li:last-child {
	margin-bottom: 0;
}
footer .footer_menu .footer_menu_category dl {
	font-size: 14px;
	color: #445566;
}
footer .footer_menu .footer_menu_category dl dt {
	margin-bottom: 20px;
	padding-bottom: 20px;
	font-weight: bold;
	border-bottom: solid 1px #e3e3e3;
}
footer .footer_menu .footer_menu_category dl dd {
}
@media (max-width: 750px){
	footer .footer_menu {
		flex-wrap: wrap;
		column-gap: 0;
	}
	footer .footer_menu .footer_menu_category {
		width: 47.5%;
		margin-bottom: 50px;
	}
}

.copy {
	background-color: #000;
}
.copy p {
	padding: 5px 0;
	font-size: 13px;
	text-align: center;
	color: #FFF;
}