@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500;700&display=swap");
:root {
  --pink: #f07e99;
  --pink-light: #fdebed;
  --pink-gray: #dd99ab;
  --green: #319a5d;
  --green-light: #56a545;
  --yellow-light: #ffffeb;
  --inlinePadding: 30px;
}

* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222;
  font-weight: 400;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8em;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.6s;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

.m-wrapper {
  max-width: 91%;
  margin-inline: auto;
}
@media screen and (min-width: 1000px) {
  .m-wrapper {
    max-width: 946px;
  }
}

/*======================================================================================*/
.l-header {
  position: absolute;
  top: 30px;
  width: 100%;
}
.l-header img {
  max-width: 68%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-header img {
    margin-left: 35px;
    max-width: 286px;
    width: 21%;
  }
}

.fix_button {
  position: fixed;
  bottom: 30px;
  right: 4.5%;
  z-index: 10;
  width: 115px;
}
@media screen and (min-width: 768px) {
  .fix_button {
    width: 140px;
  }
}
@media screen and (min-width: 1000px) {
  .fix_button {
    width: 207px;
  }
}
.fix_button img {
  image-rendering: -webkit-optimize-contrast;
}
.fix_button:hover {
  text-decoration: none;
  opacity: 0.6;
}

/* hero-area */
.hero-area img {
  width: 100%;
}

/* sec-point */
.sec-point {
  padding-block: 80px 30px;
  background-color: var(--pink-light);
}
@media screen and (min-width: 768px) {
  .sec-point {
    padding-block: 100px 40px;
  }
}

.sec-point__title {
  position: relative;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-point__title {
    max-width: 645px;
    margin-inline: auto;
    font-size: 27px;
  }
}
.sec-point__title::before, .sec-point__title::after {
  content: "";
  position: absolute;
  bottom: -10%;
  display: block;
  width: 15vw;
  height: 24vw;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .sec-point__title::before, .sec-point__title::after {
    width: 62px;
    height: 102px;
  }
}
.sec-point__title::before {
  background-image: url(../myimg/title-left.png);
  left: 0px;
}
@media screen and (min-width: 768px) {
  .sec-point__title::before {
    left: calc(50% - 8em);
  }
}
.sec-point__title::after {
  background-image: url(../myimg/title-right.png);
  right: 0px;
}
@media screen and (min-width: 768px) {
  .sec-point__title::after {
    right: calc(50% - 8em);
  }
}

.sec-point-q {
  position: relative;
  margin-top: 35px;
  width: 94%;
  margin-inline: auto;
  padding: 30px 20px;
  border-radius: 100px;
  background-color: var(--pink);
  color: #fff;
  font-size: 6.9333333333vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-point-q {
    max-width: 770px;
    margin-inline: auto;
    padding: 20px;
    border-radius: 100px;
    margin-top: 55px;
    font-size: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .sec-point-q {
    font-size: 41px;
  }
}
.sec-point-q::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 45%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent var(--pink) transparent;
  transform: translateX(-50%) rotate(-45deg);
}

.sec-point-wrap {
  margin-top: 75px;
}
@media screen and (min-width: 768px) {
  .sec-point-wrap {
    margin-top: 65px;
  }
}

.sec-point-content {
  position: relative;
  padding: 70px var(--inlinePadding);
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .sec-point-content {
    padding: 95px 50px;
  }
}
.sec-point-content + .sec-point-content {
  margin-top: 110px;
}

.sec-point-content-heading {
  position: absolute;
  top: -52px;
  left: 0;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sec-point-content-heading {
    top: -10px;
  }
}
.sec-point-content-heading img {
  max-width: 152px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sec-point-content-heading img {
    max-width: 160px;
  }
}

@media screen and (min-width: 768px) {
  .sec-point-content-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
  }
}

.sec-point-content-image {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .sec-point-content-image {
    flex-shrink: 0;
    width: 36%;
  }
}
@media screen and (min-width: 1000px) {
  .sec-point-content-image {
    width: auto;
    max-width: 333px;
  }
}

.sec-point-content-inner {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .sec-point-content-inner {
    margin-top: 0;
  }
}

.sec-point-content__title {
  font-size: 5.7333333333vw;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .sec-point-content__title {
    font-size: 27px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1000px) {
  .sec-point-content__title {
    font-size: 33px;
  }
}

.sec-point-content__text {
  margin-top: 25px;
  font-size: 4.2666666667vw;
  text-align: justify;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .sec-point-content__text {
    margin-top: 15px;
    font-size: 15px;
  }
}
@media screen and (min-width: 1000px) {
  .sec-point-content__text {
    font-size: 18px;
  }
}

.sec-point-note {
  margin-top: 25px;
  padding-inline: 25px;
  font-size: 4.1333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-point-note {
    font-size: 13px;
    text-align: center;
  }
}

/* sec-merit */
.sec-merit {
  padding-block: 30px 180px;
  background-color: var(--pink-light);
}
@media screen and (min-width: 768px) {
  .sec-merit {
    padding-block: 40px 180px;
  }
}

/* .sec-merit__title {
	color: var(--pink);
	font-size: vw(22);
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;

	@include mq(pc) {
		font-size: 36px;
	}
} */
/* .sec-merit__read {
	margin-top: 25px;
	font-size: vw(24);
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: center;

	@include mq(pc) {
		font-size: 36px;
	}

	&-decoration-pc {
		background-image: none;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center bottom;
		padding-bottom: 12px;

		@include mq(pc) {
			background-image: url(../myimg/merit-read-line.png);
		}
	}
	&-decoration-sp {
		background-image: url(../myimg/merit-read-line_sp.png);
		background-repeat: no-repeat;
		background-size: 95%;
		background-position: center bottom;
		padding-bottom: 6px;
		@include mq(pc) {
			background-image: none;
		}
	}
} */
.sec-merit-present {
  padding: 45px var(--inlinePadding);
  border-radius: 60px;
  background-image: linear-gradient(-74deg, var(--green-light) 50%, var(--green) 50%, var(--green));
}
@media screen and (min-width: 768px) {
  .sec-merit-present {
    max-width: 868px;
    margin-inline: auto;
    padding: 40px 80px 50px;
    background-image: linear-gradient(-31deg, var(--green-light) 50%, var(--green) 50%, var(--green));
  }
}
.sec-merit-present .sec-merit-present__note {
  color: #fff;
}
.sec-merit-present img {
  image-rendering: -webkit-optimize-contrast;
}

.separator-cross {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  margin-block: 25px 30px;
}
@media screen and (min-width: 768px) {
  .separator-cross {
    height: 50px;
    margin-block: 45px 40px;
  }
}
.separator-cross::before, .separator-cross::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  display: block;
  background-color: #000;
}
.separator-cross::before {
  top: 38%;
  left: 50%;
  transform: translate(-50%);
  width: 50px;
  height: 5px;
}
@media screen and (min-width: 768px) {
  .separator-cross::before {
    top: 45%;
  }
}
.separator-cross::after {
  left: 50%;
  transform: translate(-50%);
  width: 5px;
  height: 50px;
}

.sec-merit-present-plus {
  padding: 45px var(--inlinePadding);
  border-radius: 50px;
  background-image: linear-gradient(-78deg, var(--yellow-light) 50%, #fff 50%, #fff);
}
@media screen and (min-width: 768px) {
  .sec-merit-present-plus {
    max-width: 868px;
    margin-inline: auto;
    padding: 55px 80px 65px;
    background-image: linear-gradient(-45deg, var(--yellow-light) 50%, #fff 50%, #fff);
  }
}
.sec-merit-present-plus img {
  image-rendering: -webkit-optimize-contrast;
}

.sec-merit-present__note {
  margin-top: 42px;
  font-size: 3.2vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .sec-merit-present__note {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
  }
}

/* sec-property */
.sec-property {
  position: relative;
  padding-block: 235px 125px;
  margin-top: -115px;
}
@media screen and (min-width: 768px) {
  .sec-property {
    padding-block: 290px 145px;
    margin-top: -120px;
  }
}

.sec-property__title {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sec-property__title {
    top: -15px;
  }
}
.sec-property__title img {
  margin-inline: auto;
  max-width: 279px;
}
@media screen and (min-width: 768px) {
  .sec-property__title img {
    max-width: 365px;
  }
}

.sec-property__read {
  font-size: 4.8vw;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-property__read {
    font-size: 22px;
  }
}
.sec-property__read span {
  padding: 0 10px 7px;
  border-bottom: 1px solid #000;
}

.sec-property-list {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .sec-property-list {
    display: flex;
    justify-content: flex-start;
    gap: 45px 30px;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1000px) {
  .sec-property-list {
    gap: 45px 47px;
  }
}
@media screen and (min-width: 768px) {
  .sec-property-list li {
    display: flex;
    flex-direction: column;
    width: calc(33% - 20px);
  }
}
@media screen and (min-width: 1000px) {
  .sec-property-list li {
    width: 270px;
  }
}
.sec-property-list li + li {
  margin-top: 110px;
}
@media screen and (min-width: 768px) {
  .sec-property-list li + li {
    margin-top: 0;
  }
}
.sec-property-list li a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.sec-property-list-image {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 1000px) {
  .sec-property-list-image .img-top img {
    width: 271px;
    height: 172px;
    aspect-ratio: 271/172;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sec-property-list-image .img-bottom {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.sec-property-list-image .img-bottom img {
  width: calc(50% - 2.5px);
}
@media screen and (min-width: 1000px) {
  .sec-property-list-image .img-bottom img {
    width: 133px;
    height: 100px;
    aspect-ratio: 133/100;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sec-property-list-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.sec-property-list__title {
  margin-top: 15px;
  font-size: 4.6666666667vw;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .sec-property-list__title {
    font-size: 17px;
  }
}

.sec-property-list__text {
  margin-top: 10px;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .sec-property-list__text {
    margin-block: 15px;
    font-size: 14px;
  }
}

.sec-property-list-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .sec-property-list-link {
    margin-top: auto;
  }
}
.sec-property-list-link a {
  position: relative;
  display: block;
  padding: 10px 35px;
  background-color: var(--pink);
  border-radius: 30px;
  color: #fff;
  font-size: 4.8vw;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-property-list-link a {
    padding-inline: 25px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  .sec-property-list-link a {
    padding-inline: 35px;
    font-size: 18px;
  }
}
.sec-property-list-link a.-property {
  background-color: var(--pink-gray);
}
.sec-property-list-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 11px solid #ffffff;
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .sec-property-list-link a::after {
    right: 10px;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 9px solid #ffffff;
  }
}
@media screen and (min-width: 1000px) {
  .sec-property-list-link a::after {
    right: 20px;
  }
}

.sec-property-area {
  margin-top: 40px;
  padding-inline: var(--inlinePadding);
}
@media screen and (min-width: 768px) {
  .sec-property-area {
    margin-top: 85px;
    padding-inline: 20px;
  }
}
.sec-property-area + .sec-property-area {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .sec-property-area + .sec-property-area {
    margin-top: 35px;
  }
}

.sec-property-area__name {
  padding: 10px 10px 10px;
  background-color: var(--green-light);
  color: #fff;
  font-size: 5.6vw;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-property-area__name {
    font-size: 20px;
  }
}

.l-footer {
  padding: 10% 0 25%;
  background: #fff;
  border-top: solid 1px #111;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 60px 0 30px;
  }
}
.l-footer ul {
  text-align: center;
  font-weight: 300;
  margin: 7% 0;
}
@media screen and (min-width: 768px) {
  .l-footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin: 35px 0 85px;
    font-size: 13px;
  }
}
.l-footer ul li {
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) {
  .l-footer ul li {
    margin: 0;
  }
}
.l-footer p {
  text-align: center;
  font-size: 0.8em;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .l-footer p {
    font-size: 12px;
  }
}

.ft-logo {
  display: block;
  width: 64.8%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ft-logo {
    width: 300px;
  }
}/*# sourceMappingURL=style.css.map */