@charset "utf-8";
/*===========================
add
===========================*/


/* 全体 */
.about-block {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 100px 0;
}

/* 画像 */
.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
}

/* テキスト */
.about-text {
  flex: 1;
}

/* 見出し */
.about-text h2 {
  font-size: 26px;
  /*margin-bottom: 20px;
  position: relative;
  padding-left: 15px;*/
}

/* 左ライン */
/*.about-text h2::before {
  content: "";
  width: 4px;
  height: 100%;
  background: #1abc9c;
  position: absolute;
  left: 0;
  top: 0;
}*/

/* リード文 */
.about-text .lead {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* 本文 */
.about-text p {
  line-height: 1.9;
  color: #555;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .about-block {
    flex-direction: column;
    gap: 20px;
  }

  .about-text h2 {
    font-size: 20px;
  }
}

/* 背景 */
.reason {
  background: url("../img/content/6.jpg") center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
}

/* 暗めオーバーレイ（可読性UP） */
.reason::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(255,255,255,0.6);*/
}

/* 内側 */
.reason-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: #333;
}

/* タイトル */
.reason-title {
  text-align: center;
  /*font-size: 28px;*/
  /*margin-bottom: 50px;*/
}

/* リスト */
.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* カード */
.reason-item {
  background: rgba(255,255,255,1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

/* 見出し */
.reason-item h3 {
  font-size: 18px;
  /*margin-bottom: 10px;*/
}

/* テキスト */
.reason-item p {
  font-size: 14px;
  line-height: 1.8;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .reason-list {
    grid-template-columns: 1fr;
  }

  .reason-title {
    font-size: 22px;
  }
}


/* 背景 */
.service-move {
  background: url("../img/content/9.jpg") center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
}
.service-move2 {
  background: url("../img/content/12.jpg") center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
}

/* オーバーレイ */
.service-move::before,.service-move2::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(255,255,255,0.6);*/
}

/* 内側 */
.service-move-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: #000;
}

/* タイトル */
.service-move-title {
  text-align: center;
  /*font-size: 28px;
  margin-bottom: 50px;*/
}

/* グリッド */
.service-move-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* カード */
.service-move-item {
  background: rgba(0,0,0,0.05);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  transition: 0.3s;
}

/* 見出し */
.service-move-item h3 {
  font-size: 16px;
  /*margin-bottom: 10px;*/
}

/* テキスト */
.service-move-item p {
  font-size: 14px;
  line-height: 1.8;
}

/* ホバー */
/*.service-move-item:hover {
  transform: translateY(-5px);
}*/

/* スマホ */
@media screen and (max-width: 768px) {
  .service-move-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-move-title {
    font-size: 22px;
  }
}


/* 全体 */
.move-feature {
  margin: 100px 0;
}

/* タイトル */
.move-feature-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

/* リスト */
.move-feature-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

/* 各項目 */
.move-feature-list li {
  background: #f9f9f9;
  padding: 20px 20px 20px 50px;
  border-radius: 10px;
  position: relative;
}

/* チェックアイコン */
.move-feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 22px;
  color: #1abc9c;
  font-size: 16px;
}

/* 見出し */
.move-feature-list h3 {
  font-size: 16px;
  margin-bottom: 5px;
	text-align: left;
}
.move-feature-list h3::after {
  height: 0;
}
/* テキスト */
.move-feature-list p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* ホバー */
/*.move-feature-list li:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}*/

.move-feature-list {
  grid-template-columns: repeat(2, 1fr);
}
/* スマホ */
@media screen and (max-width: 768px) {
	.move-feature-list {
  grid-template-columns: repeat(1, 1fr);
}
  .move-feature-title {
    font-size: 22px;
  }
}

/* 背景 */
.price-block {
  background: url("../img/content/10.jpg") center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
}
.price-block2 {
  background: url("../img/content/14.jpg") center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
}

/* オーバーレイ */
.price-block::before,.price-block2::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0,0,0,0.6);*/
}

/* 内側 */
.price-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #000;
}

/* タイトル */
.price-title {
  /*font-size: 28px;
  margin-bottom: 30px;*/
}

/* メイン料金 */
.price-main {
  font-size: 20px;
  margin-bottom: 10px;
}

/* 金額強調 */
.price-main span {
  font-size: 36px;
  font-weight: bold;
  color: #1abc9c;
}

/* 補足 */
.price-note {
  font-size: 14px;
  margin-bottom: 40px;
  color: #666;
}

/* CTA */
.price-cta {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

/* CTA見出し */
.price-cta h3 {
  font-size: 18px;
  /*margin-bottom: 10px;*/
}

/* CTAテキスト */
.price-cta p {
  font-size: 14px;
  line-height: 1.8;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .price-title {
    font-size: 22px;
  }

  .price-main span {
    font-size: 28px;
  }
}

.mainContent img {
    box-shadow: none;
}
