@charset "UTF-8";
/* --------------------------------------------------
   ベーススタイル（文字サイズ調整版）
   --------------------------------------------------
*/
.lx-lp-container {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #333;
  line-height: 1.9; /* 行間も少し広げて読みやすく */
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 18px; /* 【変更】基本文字サイズを大きく */
}

.lx-lp-container * {
  box-sizing: border-box;
}

.lx-lp-container p {
  margin-bottom: 1.5em;
}

/* 共通パーツ */
.lx-section {
  margin-bottom: 100px; /* 余白も少し広めに */
}

.lx-sec-header {
  text-align: center;
  margin-bottom: 50px;
}

.lx-sub-title {
  display: block;
  font-family: serif;
  color: #bfa46f;
  font-size: 1.3rem; /* 【変更】大きく */
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: center;
}

.lx-main-title {
  font-size: 3.8rem; /* 【変更】大きく（約38px相当） */
  font-weight: bold;
  color: #0b3d7a;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.lx-desc {
  font-size: 1.6rem; /* 【変更】大きく */
  text-align: center;
  margin-bottom: 40px;
}

.lx-btn {
  display: inline-block;
  background-color: #fff;
  color: #333;
  padding: 12px 50px; /* ボタンも少し大きく */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  transition: opacity 0.3s;
  text-align: center;
  border: 1px solid #333;
}

.lx-btn:hover {
  opacity: 0.8;
}

/* Mission Section */
.lx-mission {
  text-align: center;
  padding: 40px 0;
}

.lx-mission p {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 1.8rem; /* 本文より少し強調 */
}

/* Commitment Section (3 Columns) */
.lx-commitment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.lx-comm-item {
  flex: 1 1 300px;
  background: #f9f9f9;
  padding: 40px 30px; /* 内側の余白アップ */
  border-radius: 8px;
}

.lx-comm-num {
  font-size: 3rem; /* 数字も大きく */
  color: #e0e0e0;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}

.lx-comm-title {
  font-size: 2.2rem; /* 【変更】見出し大きく */
  font-weight: bold;
  color: #0b3d7a;
  margin-bottom: 20px;
  border-bottom: 3px solid #bfa46f;
  padding-bottom: 15px;
  display: inline-block;
  line-height: 1.4;
}

/* Works Section */
.lx-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.lx-work-card {
  position: relative;
  overflow: hidden;
}

.lx-work-img {
  width: 100%;
  height: 280px; /* 画像高さも少しアップ */
  object-fit: cover;
  background-color: #ddd;
  margin-bottom: 20px;
}

.lx-work-cat {
  font-size: 0.9rem;
  color: #bfa46f;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lx-work-title {
  font-size: 2.2rem; /* 【変更】大きく */
  font-weight: bold;
  margin: 10px 0;
  line-height: 1.4;
}

.lx-work-meta {
  font-size: 1.4rem;
  color: #666;
}

/* User Voice */
.lx-voice-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.lx-voice-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.lx-voice-user {
  font-weight: bold;
  color: #0b3d7a;
  margin-right: 20px;
  font-size: 1.6rem;
}

.lx-voice-tags {
  font-size: 1.2rem;
  color: #666;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 4px;
}

.lx-voice-quote {
  font-size: 2.2rem; /* 【変更】キャッチコピー大きく */
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.5;
}

/* Flow Section */
.lx-flow-steps {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 3px solid #e0e0e0;
}

.lx-flow-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 40px;
}

.lx-flow-item::before {
  content: "";
  position: absolute;
  left: -55px; /* 線の太さ分調整 */
  top: 5px;
  width: 20px;
  height: 20px;
  background: #0b3d7a;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #e0e0e0;
}

.lx-flow-num {
  color: #bfa46f;
  font-weight: bold;
  margin-right: 15px;
  font-size: 2.2em;
}

.lx-flow-title {
  font-size: 2.2rem; /* 【変更】大きく */
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

/* Message Section */
.lx-message-box {
  background: #f4f6f9;
  padding: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.lx-message-img {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ddd;
  object-fit: cover;
}

.lx-message-content {
  flex: 1;
}

.lx-ceo-name {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.lx-ceo-role {
  font-size: 1.6rem;
  color: #666;
  display: block;
  font-weight: bold;
}

/* Q&A Section */
.lx-qa-list {
  max-width: 860px;
  margin: 0 auto;
}

.lx-qa-item {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
}

.lx-q {
  font-weight: bold;
  font-size: 2.2rem; /* 【変更】大きく */
  margin-bottom: 15px;
  display: flex;
  color: #0b3d7a;
  line-height: 1.5;
}

.lx-q::before {
  content: "Q.";
  font-size: 2.2rem;
  margin-right: 15px;
  min-width: 30px;
}

.lx-a {
  margin-left: 45px;
  font-size: 1.6rem; /* 【変更】大きく */
  line-height: 1.8;
}

/* Column Section */
.lx-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
}

.lx-col-item {
  background: #fff;
  transition: transform 0.2s;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.lx-col-item:hover {
  transform: translateY(-5px);
}

.lx-col-img {
  width: 100%;
  height: 160px;
  background-color: #ddd;
  object-fit: cover;
}

.lx-col-date {
  font-size: 1.6rem;
  color: #999;
  margin: 10px 0 5px;
}

.lx-col-title {
  font-size: 2.2rem; /* 【変更】大きく */
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}

.lx-col-tag {
  font-size: 1.4rem;
  background: #eee;
  padding: 3px 8px;
  border-radius: 3px;
  color: #666;
}

/* CTA Footer */
.lx-cta-block {
  background: #0b3d7a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 80px;
}

.lx-cta-title {
  font-size: 2.8rem; /* 【変更】大きく */
  font-weight: bold;
  text-align: center;
}

.lx-cta-tel {
  font-size: 4.8rem; /* 【変更】大きく */
  font-weight: bold;
  display: block;
  font-family: Arial, sans-serif;
  text-align: center;
  line-height: 1.2;
}

.lx-cta-btn {
  background: #fff;
  color: #0b3d7a;
  padding: 12px 60px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
  font-size: 2.2rem;
}

.lx-cta-btn:hover {
  background: #f0f0f0;
}

/* スマホ対応（スマホでは少しだけサイズを抑えるが、それでも以前よりは大きく） */
@media screen and (max-width: 768px) {
  .lx-lp-container {
    font-size: 16px; /* スマホの基本文字サイズ */
    padding: 0 15px;
  }
  .lx-main-title {
    font-size: 2.4rem;
  }
  .lx-comm-item {
    flex: 1 1 100%;
    padding: 30px 20px;
  }
  .lx-message-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .lx-message-img {
    margin: 0 auto 20px;
  }
  .lx-flow-steps {
    padding-left: 20px;
    border-left: 2px solid #e0e0e0;
  }
  .lx-flow-item {
    padding-left: 25px;
  }
  .lx-flow-item::before {
    left: -31px;
    width: 16px;
    height: 16px;
  }
  .lx-voice-head {
    display: block;
  }
  .lx-voice-tags {
    display: inline-block;
    margin-top: 5px;
  }
}
/*--------------------------------------------------*/
/*		http://
/*		/css/index.css
/*--------------------------------------------------*/
/*		$index
/*--------------------------------------------------*/
/*			$index.......目次
/*			$layout......全体・部分的なレイアウト
/*			$visual......visual部分
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*			$layout
/*--------------------------------------------------*/
#business-wrap {
  padding-bottom: 45px;
}

#business-wrap h3 {
  padding-bottom: 1em;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  #business-wrap {
    padding: 0 0 9.375%;
  }
  #business-wrap h3 {
    font-size: 1.5rem;
    text-align: center;
  }
}
/*--------------------------------------------------*/
/*			$visual
/*--------------------------------------------------*/
#lower-visual {
  margin-bottom: 40px;
  background: url(../images/renovation/visual_pc.jpg) no-repeat center top;
  background-size: cover;
}

#lower-visual h1 {
  margin-left: -2.2em;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.9), 0 0 4px rgba(255, 255, 255, 0.9), 0 0 6px rgba(255, 255, 255, 0.9), 0 0 8px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  #lower-visual {
    margin-bottom: 6.25%;
    background: url(../images/renovation/visual_sp.jpg) no-repeat center top;
    background-size: cover;
  }
}
/*--------------------------------------------------*/
/*			$box01
/*--------------------------------------------------*/
#box01 {
  padding-bottom: 50px;
}

#box01 dl {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

#box01 dt {
  margin-right: 30px;
  font-size: 0;
  line-height: 0;
}

#box01 dd {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  #box01 {
    padding-bottom: 6.25%;
  }
  #box01 dl {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #box01 dt {
    width: 23.333%;
    margin-right: 0;
  }
  #box01 dd {
    width: 71%;
    font-size: 1.2rem;
  }
}
/*--------------------------------------------------*/
/*			$box02
/*--------------------------------------------------*/
#box02 {
  padding-bottom: 50px;
}

#box02 p {
  padding-bottom: 1.5em;
  font-size: 1.3rem;
}

#box02 dt {
  padding-bottom: 0.5em;
  font-size: 1.6rem;
  font-weight: bold;
}

#box02 dd {
  padding-bottom: 20px;
}

#box02 dd ul {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

#box02 dd li {
  width: 450px;
}

#box02 dd figure {
  position: relative;
}

#box02 dd figcaption {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 310px;
  font-size: 1.3rem;
}

#box02 aside dt {
  margin-right: 0.5em;
  padding-bottom: 0;
  font-size: 1.3rem;
}

#box02 aside dd {
  padding-bottom: 0;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  #box02 {
    padding-bottom: 9.375%;
  }
  #box02 p {
    padding-bottom: 1em;
    font-size: 1.2rem;
  }
  #box02 dt {
    font-size: 1.4rem;
  }
  #box02 dd {
    padding-bottom: 0;
  }
  #box02 dd ul {
    display: block;
  }
  #box02 dd li {
    width: 100%;
    margin-bottom: 3.125%;
  }
  #box02 dd figcaption {
    padding-top: 68%;
    font-size: 0.8rem;
  }
  #box02 aside dl {
    display: block;
  }
  #box02 aside dt {
    display: inline;
    margin-right: 1em;
    font-size: 0.8rem;
    font-weight: normal;
  }
  #box02 aside dd {
    display: inline;
    font-size: 0.8rem;
  }
}
/*--------------------------------------------------*/
/*			$box03
/*--------------------------------------------------*/
#box03 {
  position: relative;
  margin-bottom: 50px;
}

#box03 p {
  position: relative;
  z-index: 1;
  padding-bottom: 495px;
  font-size: 1.3rem;
}

#box03 figure {
  position: absolute;
  bottom: 0;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  #box03 {
    position: relative;
    margin-bottom: 6.25%;
  }
  #box03 p {
    padding-bottom: 1em;
    font-size: 1.2rem;
  }
  #box03 figure {
    position: static;
  }
}
/*--------------------------------------------------*/
/*			$box04
/*--------------------------------------------------*/
#box04 {
  position: relative;
}

#box04 p {
  position: relative;
  z-index: 1;
  padding-bottom: 670px;
  font-size: 1.3rem;
}

#box04 figure {
  position: absolute;
  bottom: 0;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  #box04 p {
    padding-bottom: 1em;
    font-size: 1.2rem;
  }
  #box04 figure {
    position: static;
  }
}