@charset "utf-8";
/* CSS Document */
.pc-only {
	display: none !important;
}
html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	font-family: YakuHanJP, 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "MS Pゴシック", sans-serif;
	color: #333;
	line-height: 1.8;
	font-weight: 500;
}
p {
	line-height: 1.8;
	font-feature-settings: "palt";
}
.inner {
	width: 100%;
	padding: 0 1.5rem;
}
img {
	max-width: 100%;
}
/*----------------------------------------------------------------------------------------------------------------*/
.mainvisual img {
	width: 100%;
}
/*----------------------------------------------------------------------------------------------------------------*/
.present {
	background: url(../img/present-bg-sp.webp),#bd3925;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  /* padding-bottom: 8rem; */
}
.present__bg{
  width: 100%;
  background-color: #bd3925;
  img{
    width: 100%;
  }
} 
.present__footer{
  width: 100%;
  padding-top: 5rem;
  img{
    width: 100%;
  }
}
.present__seiyaku{
  margin: 15vw 0.5rem 0;
  padding: 14vw 2rem 1.5rem;
  background-color: #fff;
  border-radius: 1.25rem;
  border: solid 3px #ccbc8f;
  position: relative;
}
.present__title{
  position: absolute;
  top: -18vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.present__img{
  margin-bottom: 5rem;
  text-align: center;
}
.accordion__item{
  margin-bottom: 2rem;
}
.accordion__content {
    display: none;
    padding-top: 2rem;
    text-align: center;
}
.accordion__title {
	position: relative;
	cursor: pointer;
	/* filter: drop-shadow(.2rem .2rem .2rem rgba(0,0,0,0.3)); */
}

.acc-btn {
	margin: 0 auto;
	display: block;
}
.acc-btn:hover {
	opacity: 0.8;
}
.btn-base {
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	background-color: #fff;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	right: 1.3rem;
}
.accordion__title:before {
    content: '';
    display: inline-block;
    width: 1.2rem;
    height: 2px;
    background-color: #B52D6D;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .3s;
	z-index: 1;
}
.accordion__title:after {
    content: '';
    display: inline-block;
    width: 1.2rem;
    height: 2px;
    background-color: #B52D6D;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform .3s;
	z-index: 1;
}
.present li:nth-child(2) .accordion__title:before {
	background-color: #2e4170;
}
.present li:nth-child(2) .accordion__title:after {
	background-color: #2e4170;
}
.accordion__title.show:before {
    opacity: 0;
}
.accordion__title.show:after {
    transform: translateY(-50%) rotate(180deg);
}
.accordion__title.show:before {
    opacity: 0;
}
.accordion__title.show:after {
    transform: translateY(-50%) rotate(180deg);
}

.cta-btn{
  display: block;
  width: 90%;
  margin: 3rem auto 0;
  text-align: center;
}
.cta-btn:hover {
	opacity: 0.8;
}

/*----------------------------------------------------------------------------------------------------------------*/
.merit {
	background: #f3e6d1;
  padding: 6rem 0;
  position: relative;
}
.merit__bg{
  position: absolute;
  width: 100%;
  top:53vw;
  img{
    width: 100%;
  }
}
.merit__title{
  position: relative;
  z-index: 2;
  width: 84%;
  margin: 0 auto 3rem;
}
.merit__list{
  position: relative;
  z-index: 2;
  width: 92.5%;
  margin: 0 auto;
}
.merit__item+.merit__item{
  margin-top: 2rem;
}
/*----------------------------------------------------------------------------------------------------------------*/
.flow {
	background: #bd3925;
  padding: 7rem 0;
  position: relative;
}
.flow__bg{
  position: absolute;
  width: 100%;
  top:0;
  img{
    width: 100%;
  }
}
.flow__title{
  position: relative;
  z-index: 2;
  width: 86%;
  margin: 0 auto 3rem;
  text-align: center;
}
.flow__img{
  width: 92.5%;
  margin: 0 auto 6rem;
}
.flow__point{
  width: 100%;
  margin: 0 auto 6rem;
}
.flow__check{
  width: 100%;
  margin: 0 auto;
}
/*----------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------タブレット／ブレイクポイント-------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:768px) {
	.sp-only {
		display: none !important;
	}
	.pc-only {
		display: block !important;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.inner {
		padding: 0 4rem;
	}
	/*----------------------------------------------------------------------------------------------------------------*/
  .present {
    background: url(../img/present-bg.webp),#bd3925;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
    /* padding-bottom: 8rem; */
  }
  .present__footer{
    padding-top: 8rem;
  }
  .present__raijo{
    margin-top: -5rem;
  }
  .present__seiyaku{
    margin: 8vw 0.5rem 0;
    padding: 8vw 6.8% 4rem;
    border-radius: 2rem;
    border: solid 6px #ccbc8f;
    position: relative;
  }
  .present__title{
    position: absolute;
    top: -8vw;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
  }
  .btn-base {
    width: 4rem;
    height: 4rem;
    right: 4rem;
  }
  .accordion__title:before {
      width: 2rem;
      height: 2px;
      right: 50px;
  }
  .accordion__title:after {
      width: 2rem;
      height: 2px;
      right: 50px;
  }

  .cta-btn{
    display: block;
    width: 58rem;
    margin: 5rem auto 0;
    text-align: center;
  }
	/*----------------------------------------------------------------------------------------------------------------*/
  .merit {
    padding: 9.4rem 0;
    position: relative;
  }
  .merit__bg{
    top:9.4rem;
  }
  .merit__title{
    width: 66.3%;
    margin: 0 auto 5rem;
  }
  .merit__list{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .merit__item{
    width: 30%;
  }
  .merit__item+.merit__item{
    margin-top: 0;
  }
	/*----------------------------------------------------------------------------------------------------------------*/
	.flow {
    padding: 11rem 0;
  }
  .flow__title{
    width: 86%;
    margin: 0 auto 5rem;
  }
  .flow__img{
    width: 100%;
    margin: 0 auto 5rem;
  }
  .flow__point{
    width: 93%;
    margin: 0 auto 6rem;
  }
	/*----------------------------------------------------------------------------------------------------------------*/
}
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------PC／ブレイクポイント-------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------*/
	@media screen and (min-width:1100px) {
		.inner {
			width: 1100px;
			margin: 0 auto;
			padding: 0;
		}
		/*----------------------------------------------------------------------------------------------------------------*/
		.present01 {
			background-size: 10%;
			padding: 7rem 0 12rem;
		}
		.pre01-txt {
			padding: 6rem 0;
		}
		.present01 ul li:first-child {
			padding: 0 0 6rem;
		}
		.btn-base {
			width: 4.8rem;
			height: 4.8rem;
			right: 4.2rem;
		}
		.accordion__title:before {
			width: 2.7rem;
			height: .3rem;
			right: 5.3rem;
		}
		.accordion__title:after {
			width: 2.7rem;
			height: .3rem;
			right: 5.3rem;
		}
		/*----------------------------------------------------------------------------------------------------------------*/
		.present02 {
			padding: 7rem 0 10rem;
		}
		.present02 ul li {
			width: calc((100% - 6rem) / 2);
		}
		.present02 .cta-btn {
			margin: 10rem auto 0;
		}
		.present02 .cta-btn:hover {
			opacity: 0.8;
		}
		/*----------------------------------------------------------------------------------------------------------------*/

		
	}

	@media screen and (min-width:1200px) {
	}