@charset "utf-8";

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* common */
.container {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title-image {
  text-align: center;
}

.section-title-image img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.sp-br {
  display: none;
}

/* hero */
.hero {
	width: 100%;
	overflow: hidden;
  }
  
  .hero img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

/* lead */
.lead {
	padding: 100px 0 70px;
	background: #fff;
  }
  
  .lead__inner {
	position: relative;
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
  }
  
  .lead__deco {
	width: 72px;
	flex-shrink: 0;
  }
  
  .lead__text {
	text-align: center;
  }
  
  .lead__text p {
	font-size: 36px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.08em;
	color: #444;
  }
  
  .sp-br {
	display: none;
  }

/* point */
.point {
	position: relative;
  }
  
  .point__top,
  .point__bottom {
	width: 100%;
	line-height: 0;
  }
  
  .point__top img,
  .point__bottom img {
	width: 100%;
	height: auto;
  }
  
  .point__middle {
	background: #acddc5;
	padding: 35px 0 80px;
  }
  
  .point .section-title-image {
	margin-bottom: 75px;
  }
  
  .point__list {
	display: flex;
	justify-content: center;
	gap: 18px;
  }
  
  .point__item {
	position: relative;
	width: calc((100% - 36px) / 3);
	min-height: 200px;
	padding: 62px 20px 32px;
	background: #fff;
	border: 2px solid #2d598e;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
  }
  
  .point__item::before {
	content: "";
	position: absolute;
	top: -43px;
	left: 50%;
	width: 86px;
	height: 86px;
	transform: translateX(-50%);
	background: url("/fujisan-tanoshimikata/img/point01.png") no-repeat center / contain;
  }
  
  .point__item:nth-child(2)::before {
	background-image: url("/fujisan-tanoshimikata/img/point02.png");
  }
  
  .point__item:nth-child(3)::before {
	background-image: url("/fujisan-tanoshimikata/img/point03.png");
  }
  
  .point__text p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.04em;
	color: #333;
  }

/* application */
.application {
  padding: 35px 0 90px;
  background: #fff;
}

.application__title {
  margin-bottom: 60px;
}

.application__list {
  display: flex;
  justify-content: center;
}

.application__item {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 180px;
  background: #35639c;
  color: #fff;
}

.application__item::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid #fff;
  pointer-events: none;
}

.application__item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 42px 60px 48px;
  text-align: center;
}

.application__main {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.application__more {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 100px;
}

/* tablet */
@media (max-width: 960px) {
	.lead__text p {
	  font-size: 23px;
	}
  
	.point__text p {
	  font-size: 17px;
	}
  }

/* smartphone */
@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .sp-br {
    display: block;
  }

  .lead {
    padding: 45px 0 55px;
  }

  .lead__inner {
    gap: 14px;
  }

  .lead__deco {
    width: 26px;
  }

  .lead__text {
	text-align: center;
	flex: 1;
  }

  .lead__text p {
    font-size: 17px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  .point__middle {
    padding: 25px 0 50px;
  }

  .point .section-title-image {
    margin-bottom: 55px;
  }

  .point__list {
    flex-direction: column;
    gap: 60px;
  }

  .point__item {
    width: 100%;
    min-height: 150px;
    padding: 54px 18px 28px;
  }

  .point__item::before {
    top: -36px;
    width: 72px;
    height: 72px;
  }

  .point__text p {
    font-size: 17px;
    line-height: 1.7;
  }

  .application {
    padding: 25px 0 70px;
  }

  .application__title {
    margin-bottom: 38px;
  }

  .application__item {
    max-width: 100%;
    min-height: 130px;
  }

  .application__item a {
    min-height: 130px;
    padding: 28px 34px 34px;
  }

  .application__main {
    font-size: 17px;
    line-height: 1.7;
  }

  .application__more {
    right: 16px;
    bottom: 14px;
    width: 82px;
  }

  .section-title-image img {
    width: 100%;
    max-width: 170px;
    margin: 0 auto;
  }
}