@charset "UTF-8";
/*
	Filename: home
	Version: 1.0.1
*/
/*-----------------------------------------------------
	#mv
------------------------------------------------------*/
#mv {
	position: relative;
	z-index: 0;
	padding-top: 115px;
	background: #FFF4E5;
	overflow: hidden;
}
#mv::before {
  content: "";
  display: block;
  position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
  width: 80%;
  height: 90%;
  background: #FFFFF8;
	border-radius: 0 0 0 70px;
}
#mv .curve {
  position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
  z-index: -1;
  height: 600px;
	background: #FFF4E5;
  -webkit-mask: radial-gradient(120% 160% at 50% 0, transparent 60%, #000 60.2%);
          mask: radial-gradient(120% 160% at 50% 0, transparent 60%, #000 60.2%);
}
:root{
	--peek-mask: 128px;
	--slide-min: 320px;
	--slide-ideal: 60vw;
	--slide-max: 720px;
	--gutter: 24px;
	--scale-active: 1;
	--scale-near: .84;
	--scale-far: .76;
}
.viewport-bleed-right {
	position: relative;
	margin-right: calc(50% - 50vw);
	overflow: hidden;
}
.peek-right {
	padding: 24px 0 40px;
	overflow: visible;
}
@supports (mask-image: linear-gradient(#000,#000)) {
	.peek-right {
		-webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--peek-mask), #000 100%);
						mask-image: linear-gradient(to right, transparent 0, #000 var(--peek-mask), #000 100%);
	}
}
@supports not (mask-image: linear-gradient(#000,#000)) {
	.viewport-bleed-right::before{
		content: "";
		position: absolute;
		inset: 0 auto 0 0;
		width: var(--peek-mask);
		background: #fff;
		pointer-events: none;
	}
}
.peek-right .swiper-slide {
	width: clamp(var(--slide-min), var(--slide-ideal), var(--slide-max));
	border-radius: 35px;
	border: 3px solid var(--main-color);
	overflow: hidden;
	background: #fffff8;
	transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease;
	transform-origin: center center;
	transform: scale(var(--scale-far));
	opacity: 1;
}
.peek-right .swiper-slide + .swiper-slide {
	margin-left: var(--gutter);
}
.peek-right .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
}
.peek-right .swiper-slide-prev,
.peek-right .swiper-slide-next {
	transform: scale(var(--scale-near));
	opacity: 1;
}
.peek-right .swiper-slide-active {
	transform: scale(var(--scale-active));
	opacity: 1;
	z-index: 2;
}
.peek-right .swiper-slide-prev {
	transform: scale(.68);
	opacity: 0;
}
.swiper-pagination-bullets {
	bottom: var(--swiper-pagination-bottom, 15px) !important;
}
.swiper-pagination-bullet-active {
	background: var(--main-color);
}
.swiper-button-next, .swiper-button-prev {
	top: auto;
	bottom: 10px;
	color: var(--main-color);
}
.swiper-button-next::after, .swiper-button-prev::after {
	font-size: 25px;
}
.swiper-button-next {
	right: 40px;
	left: auto;
}
.swiper-button-prev {
	right: 80px;
	left: auto;
}
@media (min-width: 1024px) {
	:root {
		--slide-ideal: 48vw;
		--slide-max: 780px;
		--gutter: 28px;
		--peek-mask: 160px;
	}
}
.mv_text {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	z-index: 1;
}
.mv_text h2 {
	margin-bottom: 30px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.5;
}
.mv_text h2 span.small {
	display: block;
	font-size: 15px;
	color: var(--main-color);
}
.mv_text h2 span.green {
	color: var(--sub-color);
}
.mv_text p {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.7;
}
.mv_br {
	display: block;
}
@media screen and (max-width: 1560px) {
	:root{
		--slide-ideal: 35vw;
		--slide-min: 450px;
		--gutter: 10px;
	}
	.mv_text {
		position: absolute;
		top: 175px;
		left: 30px;
		transform: none;
	}
}
@media screen and (max-width: 1150px) {
	:root{
		--gutter: 0;
	}
	#mv {
		padding-top: 270px;
	}
	.peek-right .swiper-slide-prev {
		opacity: 1;
	}
	.swiper-button-next {
		right: 20px;
	}
	.swiper-button-prev {
		right: 60px;
	}
	.mv_br {
		display: none;
	}
	.mv_text {
		top: 130px;
	}
	.mv_text h2 {
		margin-bottom: 20px;
	}
	.mv_text h2 span.small {
		display: block;
		font-size: 15px;
		color: var(--main-color);
	}
	.mv_text h2 span.green {
		color: var(--sub-color);
	}
	.mv_text p {
		font-size: 19px;
		font-weight: 700;
		line-height: 1.7;
	}
}
@media screen and (max-width: 900px) {
	.mv_text {
		top: 95px;
		left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 750px) {
	#mv {
		padding-top: 220px;
	}
	:root{
		--peek-mask: 0;
		--slide-min: 85%;
		--gutter: -20px;
	}
	.swiper-button-next, .swiper-button-prev {
		display: none;
	}
	.mv_text {
		top: 95px;
		left: 20px;
		padding-right: 20px;
	}
	.mv_text h2 {
		margin-bottom: 10px;
		font-size: 25px;
		line-height: 1.3;
	}
	.mv_text h2 span.small {
		margin-bottom: 5px;
		font-size: 14px;
	}
	.mv_text p {
		font-size: 16px;
		line-height: 1.5;
	}
}
/*-----------------------------------------------------
	#sec_01
------------------------------------------------------*/
#sec_01 {
	position: relative;
  padding: 60px 70px;
}
#sec_01 h2 {
	margin-bottom: 50px;
}
.pickup_col {
	justify-content: space-between;
}
.pickup_l {
	width: 35%;
}
.pickup_l img {
	width: 100%;
	border-radius: 10px;
}
.pickup_r {
	width: 58%;
}
#sec_01 h3 {
	align-items: center;
	gap: 10px;
  position: relative;
	margin-bottom: 30px;
	padding-bottom: 15px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
}
#sec_01 h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, var(--text-color), var(--text-color) 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, var(--text-color), var(--text-color) 2px, #fff 2px, #fff 4px);
}

.limited {
	display: none;
}
.icon_none {
	display: block !important;
}
#sec_01 p {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.7;
}
#sec_01 ul {
	margin-bottom: 60px;
	margin-left: 20px;
}
#sec_01 ul li {
	margin-bottom: 10px;
	list-style-type: disc;
	font-size: 16px;
	line-height: 1.7;
}
.cv_btn {
	justify-content: center;
	align-items: center;
	gap: 15px;
	width: 454px;
	max-width: 100%;
	margin: 0 auto;
	padding: 15px 10px;
	background: #FAF7F1;
	border: 2px solid var(--text-color);
	border-radius: 10px;
}
.cv_btn_l {
	font-size: 16px;
	font-weight: 500;
}
.cv_btn_l span.small {
	font-size: 12px;
}
.cv_btn_l span.price {
	margin: 0 5px;
	font-size: 30px;
	font-weight: 700;
}

@media screen and (max-width: 1240px) {
	#sec_01 {
		padding: 60px 0;
	}
}
@media screen and (max-width: 900px) {
	.pickup_l {
		width: 100%;
		margin-bottom: 50px;
		text-align: center;
	}
	.pickup_l img {
		width: 50%;
	}
	.pickup_r {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	#sec_01 h2 {
		margin-bottom: 30px;
	}
	.pickup_l {
		margin-bottom: 30px;
	}
	.pickup_l img {
		width: 420px;
		max-width: 100%;
	}
	.pickup_r {
		width: 100%;
	}
	#sec_01 h3 {
		font-size: 22px;
	}
	#sec_01 ul {
		margin-bottom: 30px;
	}
}

/*-----------------------------------------------------
	#sec_02
------------------------------------------------------*/
#sec_02 {
  padding: 60px 0;
	background: url("../img/common/section_bg.svg");
}
#sec_02 h2 {
	margin-bottom: 50px;
}
#sec_02 h3 {
	margin-bottom: 25px;
}
#sec_02 h3 span {
	display: inline-block;
	padding: 10px 30px;
	background: url("../img/common/map_btn_bg.jpg") no-repeat center center;
	background-size: cover;
	border-radius: 10px;
	font-size: 20px;
	text-align: center;
}
#sec_02 h3.osusume span {
	background: url("../img/common/map_btn_bg2.jpg") no-repeat center center;
	background-size: cover;
}
#sec_02 .center {
  margin-bottom: 60px;
}
.item_list {
	gap: 30px;
	margin-bottom: 65px;
}
.item_list_child {
	width: calc((100% - 60px) / 3);
}
.item_list_child img {
	width: 100%;
	margin-bottom: 25px;
	border-radius: 10px;
}
.item_list_child h4 {
	margin-bottom: 16px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}
.item_list_child p {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
}
@media screen and (max-width: 750px) {
	#sec_02 h2 {
		margin-bottom: 30px;
	}
	#sec_02 h3 {
		margin-bottom: 25px;
	}
	#sec_02 h3 span {
		font-size: 18px;
	}
	#sec_02 .center {
		margin-bottom: 60px;
	}
	.item_list {
		gap: 30px;
		margin-bottom: 30px;
	}
	.item_list_child {
		width: 100%;
	}
	.item_list_child img {
		margin-bottom: 20px;
	}
	.item_list_child h4 {
		margin-bottom: 16px;
		font-size: 16px;
	}
}

/*-----------------------------------------------------
	#sec_03
------------------------------------------------------*/
#sec_03 {
	position: relative;
	z-index: -1;
	padding-bottom: 1px;
	background: #FFFFF8;
}
#sec_03::after {
  content: "";
  display: block;
  position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
  width: 100%;
  height: 484px;
  background: url("../img/home/about_bg.png") no-repeat center top;
  background-size: cover;
}
#sec_03 h3 {
	margin-bottom: 50px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--sub-color);
}
#sec_03 h4 {
	margin-bottom: 30px;
	font-size: 25px;
	font-weight: 700;
	color: var(--sub-color);
	text-align: center;
}
#sec_03 p {
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.7;
}
#sec_03 table {
	width: 100%;
	background: url("../img/common/section_bg.svg");
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
#sec_03 table tr th {
	width: 30%;
	padding: 13px 30px;
	font-weight: 500;
	text-align: left;
	vertical-align: middle;
}
#sec_03 table tr td {
	width: 70%;
	padding: 13px 30px;
}
.about_title {
	position: relative;
	margin-bottom: 100px;
	padding: 85px 140px;
	background: url("../img/home/about_title_bg.jpg") no-repeat center center;
	background-size: cover;
}
.about_title::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -85px;
	right: 35px;
  width: 266px;
  height: 191px;
  background: url("../img/home/about_illust.svg") no-repeat center center;
  background-size: cover;
}
.about_col {
	justify-content: space-between;
	position: relative;
	z-index: 2;
	margin-bottom: 150px;
}
.about_text {
	width: 50%;
}
.about_photo {
	width: 44%;
}
.about_photo img {
	width: 100%;
	border-radius: 10px;
}

@media screen and (max-width: 1240px) {
	#sec_03::after {
		height: 300px;
	}
	#sec_03 table tr th {
		width: 40%;
		padding: 13px 15px;
	}
	#sec_03 table tr td {
		width: 60%;
		padding: 13px 15px;
	}
	.about_title {
		padding: 85px 40px;
	}
	.about_col {
		margin-bottom: 100px;
	}
}
@media screen and (max-width: 1000px) {
	#sec_03 table tr th {
		width: 30%;
	}
	#sec_03 table tr td {
		width: 70%;
	}
	.about_col {
		margin-bottom: 60px;
	}
	.about_text {
		order: 1;
		width: 100%;
		margin-bottom: 30px;
	}
	.about_photo {
		order: 2;
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	#sec_03 h3 {
		margin-bottom: 50px;
		font-size: 28px;
	}
	#sec_03 h4 {
		margin-bottom: 30px;
		font-size: 20px;
	}
	#sec_03 p {
		margin-bottom: 30px;
		font-size: 16px;
	}
	#sec_03 table tr th {
		display: block;
		width: 100%;
		padding: 13px 30px 0;
	}
	#sec_03 table tr td {
		display: block;
		width: 100%;
		padding: 13px 30px;
	}
	.about_title {
		margin-bottom: 80px;
		padding: 60px 20px;
	}
	.about_title::after {
		bottom: -45px;
		right: 20px;
		width: 200px;
		height: 144px;
	}
	.about_col {
		margin-bottom: 60px;
	}
}

/*-----------------------------------------------------
	#sec_04
------------------------------------------------------*/
#sec_04 {
  padding: 75px 0 150px;
}
#sec_04 h2 {
	margin-bottom: 50px;
}
#sec_04 h3 {
	margin-bottom: 35px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}
#sec_04 h3 span {
	display: block;
	font-size: 35px;
	font-weight: 700;
	color: var(--sub-color);
}
#sec_04 h4 {
	margin-bottom: 10px;
}
#sec_04 h4 span {
	display: inline-block;
	min-width: 167px;
	padding: 10px 30px;
	background: url("../img/common/map_btn_bg.jpg") no-repeat center center;
	background-size: cover;
	border-radius: 10px;
	font-size: 20px;
	text-align: center;
}
#sec_04 h4.osusume span {
	background: url("../img/common/map_btn_bg2.jpg") no-repeat center center;
	background-size: cover;
}
#sec_04 p {
	margin-bottom: 30px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
}
#sec_04 .tel {
	width: 326px;
}
.member_col {
	justify-content: space-between;
}
.member_text {
	width: 50%;
}
.member_photo {
	width: 44%;
}
.member_photo img {
	width: 100%;
	border-radius: 10px;
}


@media screen and (max-width: 750px) {
	#sec_04 {
		padding: 60px 0 100px;
	}
	#sec_04 h3 span {
		font-size: 28px;
	}
	#sec_04 h4 span {
		font-size: 16px;
	}
	#sec_04 a {
		text-align: center;
	}
	#sec_04 .tel {
		display: block;
		width: 450px;
		max-width: 90%;
		margin: 0 auto;
	}
	.member_text {
		width: 100%;
	}
	.member_photo {
		width: 100%;
		margin-bottom: 30px;
	}
}
















