@charset "utf-8";

/**
 *
 *  ページ用CSS
 *nearby
 */

/*--------------------------------------------------------------------------
	Overwright
---------------------------------------------------------------------------*/
.content{
	font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}

.secCopy {
  color: #003264;
  font-size: clamp(20px, 0.22rem + 2.32vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.secTxt {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.2;
}

.opa {
	transition: opacity .5s;
}

.ib {
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) {
	.opa:hover {
		opacity: .7;
	}
}

/* btn
-----------------------------------------------------------------*/

.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  padding: 1em;
  text-align: center;
  border-radius: 0;
  transition: .4s ease-out;
  z-index: 0;
}
.btn .txt {
	color: #fff;
}
.btn.has-arrow {
	/* justify-content: space-between; */
	justify-content: center;
	padding-inline: 1em;
}
.btn.has-arrow::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-color: rgb(255 255 255 / 1);
	-webkit-mask-image: url(../../asset/img/common/ico_btn-arrow.svg);
	mask-image: url(../../asset/img/common/ico_btn-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: .4s;
	text-align: center;
	z-index: 0;
}

/* swipe
---------------------------------------------- */
.swipe{
  position: relative;
  overflow: auto;
  -ms-overflow-style:none;
}
.swipe::-webkit-scrollbar{
  display: none;
}
.swipeInner{
  position: relative;
}
.swipeInner::after{
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  height: 1px;
}
.swipeInner img{
  vertical-align: top;
}
.swipeCaution{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../asset/img/nearby/icon_scrollCaution.svg) no-repeat center/203px auto rgba(51,51,51,.8);
  pointer-events: none;
  transition: .4s ease;
}
.swipeCaution.is-hidden{
  opacity: 0;
  visibility: visible;
}

/* kv
---------------------------------------------- */
.kv {
  position: relative;
  z-index: 0;
}
.kv__txt {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(812 / 1500 * 100%);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .kv__txt {
    top: 63%;
    width: calc(359 / 375 * 100%);
  }
}

/* intro
---------------------------------------------- */
.intro {
  padding-top: 120px;
}

.intro__txt {
  color: #333;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .intro {
    padding-top: 70px;
  }
}

/* contents
---------------------------------------------- */
.contents .inner {
  max-width: 1240px;
}

@media screen and (max-width: 768px) {
  .contents .inner {
    max-width: 560px;
    padding-inline: 27.5px;
  }
}

/* anchorNav
---------------------------------------------- */
.anchorNav {
  padding-top: 70px;
}
.anchorNavList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.anchorNavList__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 0;
}
.anchorNavList__btn::before {
  content: '';
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background: url(../../asset/img/completion/icon_arrow-u.svg) center/contain no-repeat;
  z-index: 0;
}

.anchorNavList__btn .txtBox {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  padding: 25px 4% 45px;
  z-index: 0;
}

.anchorNavList__txt {
  font-size: clamp(14px, 0.98rem + 0.55vw, 18px);
  letter-spacing: 0.1em;
  line-height: 1.77;
  text-align: center;
}

/* is-active */
.anchorNavList__btn.is-active::after {
  opacity: 1;
}
.anchorNavList__btn.is-active .img {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .anchorNavList {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .anchorNav {
    padding-top: 40px;
  }
  .anchorNavList {
    grid-template-columns: 1fr;
  }
  .anchorNavList__btn::before {
    content: none;
  }
  .anchorNavList__btn .txtBox {
    display: none;
  }
}

/* meritSection
---------------------------------------------- */
.meritSection {
  padding-top: 200px;
}

.meritHead {
  display: flex;
  align-items: center;
}
.meritHeadNum {
  flex: 1;
}
.meritHead__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.meritHeadNum__merit {
  width: calc(117 / 560 * 100%);
}
.meritHead__num .num {
  font-size: clamp(90px, -4.68rem + 17.78vw, 220px);
  letter-spacing: -.1em;
  line-height: 1;
}

.meritHeadContents {
  width: calc(940 / 1500 * 100%);
  padding: 50px calc(70 / 1500 * 100%);
  position: relative;
  z-index: 0;
}

.meritHead__copy {
  font-size: clamp(20px, 0.32rem + 2.19vw, 36px);
  letter-spacing: 0.05em;
  line-height: 1.77;
  color: #fff;
  position: relative;
  z-index: 1;
}
.meritHead__copy .em {
  font-style: normal;
  font-size: 150%;
  line-height: 1;
}
.meritHead__text {
  font-size: clamp(14px, 1.19rem + 0.27vw, 16px);
  letter-spacing: 0.1em;
  line-height: 2.25;
  color: #fff;
  margin-top: 1em;
  position: relative;
  z-index: 1;
}
.meritHeadContents__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(470 / 940 * 100%);
  height: 100%;
  z-index: 0;
}
.meritHeadContents__bg img {
  height: 100%;
  object-fit: cover;
}

.meritBody {
  padding-block: 100px 150px;
  position: relative;
  z-index: 0;
}
.meritBody::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(1250 / 1500 * 100%);
  z-index: -1;
}
.meritSection--reverse .meritBody::before {
  right: 0;
  left: auto;
}

.meritImg {
  margin-top: 100px;
}
.meritImgBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.meritImg__img {
  width: calc((100% - 40px) / 2);
}

.meritSection__btn {
  max-width: 630px;
  margin-inline: auto;
}

/* meritSection01 */
.meritSection._01 .meritHead__num .num {
  color: #e5a8b4;
}
.meritSection._01 .meritHeadContents {
  background-color: #dc8b9b;
}

.meritSection._01 .meritBody {
  padding-block: 200px 0;
}
.riseBox {
  box-shadow: 0 0 20px rgba(0 0 0 / .2);
  position: relative;
  z-index: 0;
}
.riseBox::before {
  content: '';
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(220 / 1200 * 100%);
  height: 110px;
  background: url(../../asset/img/completion/img_arrow.png) center/contain no-repeat;
  z-index: 1;
}

.possible {
  margin-top: 40px;
}
.possibleBox {
  position: relative;
  z-index: 0;
}
.possibleBox::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 86%;
  background: linear-gradient(150deg, rgba(233, 182, 192, 1) 0%, rgba(221, 143, 159, 1) 21.7%, rgba(214, 119, 138, 1) 39.24%, rgba(211, 110, 130, 1) 50%);
  z-index: -1;
}
.possible__img {
  width: calc(1317 / 1500 * 100%);
  margin-inline: auto;
}
.possibleContents {
  width: calc(1320 / 1500 * 100%);
  margin-top: 20px;
  margin-inline: auto;
}

/* meritSection02 */
.meritSection._02 .meritHead__num .num {
  color: #84b3cf;
}
.meritSection._02 .meritHeadContents {
  background-color: #5b9abf;
}

.meritSection._02 .meritBody::before {
  background-color: #e0ecf3;
  height: min(75%, 620px);
}

.flowBox {
  box-shadow: 0 0 20px rgba(0 0 0 / .2);
}

/* meritSection03 */
.meritSection._03 .meritHead__num .num {
  color: #88b3aa;
}
.meritSection._03 .meritHeadContents {
  background-color: #61998d;
}

.meritSection._03 .meritBody::before {
  background-color: #e1ecea;
  height: calc(100% - 200px);
}

/* meritSection04 */
.meritSection._04 .meritHead__num .num {
  color: #d1bc84;
}
.meritSection._04 .meritHeadContents {
  background-color: #c2a65b;
}

.meritSection._04 .meritBody::before {
  background-color: #f4eee0;
  height: 87%;
}
.meritSection._04 .meritSection__btn {
  background-color: #b38f32;
  margin-top: 100px;
}

/* meritSection05 */
.meritSection._05 .meritHead__num .num {
  color: #8499c0;
}
.meritSection._05 .meritHeadContents {
  background-color: #5b77ab;
}

.meritSection._05 .meritBody::before {
  background-color: #e0e5ef;
  height: 82%;
}
.meritSection._05 .meritSection__btn {
  background-color: #325596;
  margin-top: 100px;
}

@media screen and (min-width: 769px) {
  .meritSection--reverse .meritHead {
    flex-direction: row-reverse;
  }
  .meritSection--reverse .meritHeadContents {
    text-align: right;
  }

  .meritSection._02 .meritHeadContents__bg {
    right: auto;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .meritSection {
  padding-top: 75px;
}

.meritHead {
  flex-direction: column;
  row-gap: 5px;
}
.meritHeadNum {
  flex: revert;
  width: 100%;
}
.meritHead__num {
  flex-direction: column;
}
.meritHeadNum__merit {
  width: 66px;
}

.meritHeadContents {
  width: 100%;
  padding: 30px calc(27.5 / 375 * 100%);
}
.meritHead__copy {
  letter-spacing: 0.01em;
  line-height: 1.9;
}
.meritHeadContents__bg {
  width: calc(235 / 375 * 100%);
}

.meritBody {
  padding-block: 50px;
}
.meritBody::before {
  width: calc(300 / 375 * 100%);
}

.meritImg {
  margin-top: 40px;
}
.meritImgBox {
  flex-direction: column;
  row-gap: 30px;
}
.meritImg__img {
  width: 100%;
}

.meritSection__btn {
  max-width: 320px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

/* meritSection01 */
.meritSection._01 .meritBody {
  padding-block: 80px 0;
}
.riseBox::before {
  top: -65px;
  width: 110px;
  height: 55px;
}

.possible {
  margin-top: 30px;
}
.possibleBox {
  padding-top: 30px;
}
.possibleBox::before {
  height: 100%;
}
.possible__img {
  width: 100%;
}
.possibleContents {
  width: 100%;
  margin-top: 10px;
}

/* meritSection02 */
.meritSection._02 .meritBody::before {
  height: min(75%, 620px);
}
.meritSection._02 .meritHeadContents__bg .p-caption {
  right: 0;
  left: auto;
}

/* meritSection03 */
.meritSection._03 .meritBody::before {
  height: calc(100% - 50px);
}

/* meritSection04 */
.meritSection._04 .meritMainImg {
  padding-inline: 0;
}
.meritSection._04 .meritSection__btn {
  margin-top: 40px;
}

/* meritSection05 */
.meritSection._05 .meritMainImg {
  padding-inline: 0;
}
.meritSection._05 .meritSection__btn {
  margin-top: 40px;
}

}

/* actionArea
---------------------------------------------- */
.actionArea {
	position: relative;
  max-width: 1240px;
  margin-block: 100px;
	z-index: 0;
}
.actionArea__inner {
  display: flex;
  align-items: center;
  justify-content: center;
	gap: 50px calc(60 / 1200 * 100%);
  background: url(../../asset/img/top/bg_action.png) center/cover no-repeat,
  linear-gradient(45deg, rgba(40, 91, 158, 1) 0%, rgba(23, 73, 133, 1) 33.76%, rgba(6, 56, 109, 1) 74.77%, rgba(0, 50, 100, 1) 100%);
  padding-block: 50px;
}

.actionArea__txt {
	position: relative;
	color: #fff;
	font-size: clamp(22px, -0.75rem + 3.83vw, 50px);
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-align: center;
	z-index: 0;
}
.actionArea .em {
  display: block;
	color: #d2aa5a;
  font-size: 126.3157%;
	font-style: normal;
	letter-spacing: 0.1em;
	margin-top: 0.1em;
}
.actionArea__txt .small {
	position: absolute;
	bottom: -2.5em;
	right: 0;
	display: block;
	font-size: max(10px, 31.81%);
	letter-spacing: 0.05em;
	z-index: 0;
}

.actionArea__body {
	width: min(100%, 350px);
}
.actionArea__btn {
	font-size: clamp(20px, 1.16rem + 1.09vw, 28px);
	background-color: #ad9159;
	color: #fff;
  letter-spacing: 0.1em;
	line-height: 1.4;
	box-shadow: 0 0 20px rgba(0 0 0 / .2);
	text-align: left;
}
.actionArea__btn.has-arrow {
  justify-content: flex-start;
  /* padding-left: 1.5em; */
}
.actionArea__btn .small {
  font-size: 71.4285%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 960px) {
  .actionArea {
    max-width: 540px;
    margin-block: 50px;
	}

	.actionArea__inner {
    flex-direction: column;
		row-gap: 20px;
	}
	.actionArea .em {
    font-size: 25px;
		margin-top: 0.2em;
	}
	.actionArea__txt .small {
		position: static;
		margin-top: 1em;
		text-align: right;
	}

	.actionArea__body {
		width: min(100%, 270px);
	}
  .actionArea__btn.has-arrow {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .actionArea {
    padding-inline: 27.5px;
  }
  .actionArea__inner {
    padding-block: 20px;
  }
  .actionArea__btn.has-arrow {
    font-size: 22px;
    padding-block: .5em;
  }
}