html {
    font-size: 100%;
  }
  body {
    margin: 0;
  }
  a {
    text-decoration: none;
    color: #000;
  }
  img {
    max-width: 100%;
  }
  
  iframe {
  	width: 100%;
	 display: block;
  }

p {
	margin: 0;
}


/* ===============================
   ヘッダー
=============================== */
header {
  position: absolute;
  z-index: 999;
  height: auto;
  width: 100%;
}

.logo {
  max-width: 22%;
}

.logo img {
  max-width: 265px;
}

.line_img img {
	max-width: 240px;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 30px 50px;
}

nav > div {
  box-sizing: border-box;
}

.gnavi {
  max-width: 800px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  margin: 0;
  margin-top: 60px;
  margin-left: 10%;
}

.gnavi li {
  margin-right: 25px;
  font-size: 18px;
  color: #032D68;
}


.gnavi li a {
  display: block;
  color: inherit;
}

.menu {
  text-wrap: nowrap;
}

.call {
  width: 300px;
}


.pc_none {
  display: none;
}

/* ===============================
   PC / SP 切り替え
=============================== */
@media screen and (min-width: 769px) {
  .globalMenuSp {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  .gnavi li {
    font-size: 16px;
  }
}

/* ===============================
   スマホヘッダー
=============================== */
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }

  .pc_none {
    display: block;
	max-width: 200px;
	height: auto;
  }

  nav {
    padding: 0;
  }

  /* ハンバーガーボタン */
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 15px;
    top: 16px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    background: #002d67;
    border-radius: 7px;
  }

  .hamburger.active {
    background: none;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 10px;
    left: 6px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) { top: 10px; }
  .hamburger span:nth-child(2) { top: 20px; }
  .hamburger span:nth-child(3) { top: 30px; }

  /* ハンバーガー active */
  .hamburger.active span:nth-child(1) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
    transform: rotate(45deg);
  }

  /* SP ナビ */
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  nav.globalMenuSp ul li {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #fff;
  }

  nav.globalMenuSp ul li:last-child {
    border-bottom: none;
  }

  nav.globalMenuSp ul li:hover {
    background: #ddd;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }

  nav.globalMenuSp.active {
    transform: translateX(0%);
	margin: 0;
  }
}


/* ===============================
   ヘッダー本体
=============================== */

header.sp_none {
  position: absolute; /* FVに重ねる */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/* ===============================
   白グラデーション影
=============================== */

header.sp_none::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px; /* 影の高さ調整 */

  /* 上(強) → 下(弱) グラデーション */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.65) 40%,
    rgba(255,255,255,0.35) 70%,
    rgba(255,255,255,0) 100%
  );

  pointer-events: none; /* クリック阻害防止 */
}


header.sp_none nav {
  position: relative;
  z-index: 2;
}

.line_img {
	margin-top: 30px;
}


/* ===============================
   ロゴ可変
=============================== */

.logo{
  width: clamp(140px, 16vw, 260px);
}

.logo img{
  width:100%;
  height:auto;
  display:block;
}


/* ===============================
   LINEボタン可変
=============================== */

.line_img{
  width: clamp(160px, 18vw, 280px);
}

.line_img img{
  width:100%;
  height:auto;
  display:block;
}

/* ===============================
   MV本体
=============================== */

.MV {
  position: relative;
}

.MV img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   キャッチコピー配置
=============================== */

.mv_catch {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
}

/* サブコピー */
.mv_sub {
  font-size: 30px;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
}

/* 下線 */
.mv_sub::after {
  content: "";
  display: block;
  width: 470px;
  height: 2px;
  background: #fff;
  margin: 5px auto 0;
  opacity: 0.8;
  text-shadow: 0 2px 8px rgba(0,0,0,0.90);
}

/* メインコピー */
.mv_main {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* ===============================
   キャッチコピー可変フォント
=============================== */

/* サブコピー */
.mv_sub {
  font-size: clamp(14px, 2.2vw, 30px);
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
text-shadow: 0 2px 8px rgba(0,0,0,0.90);
}

/* メインコピー */
.mv_main {
  font-size: clamp(24px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.90);
}



@media screen and (max-width: 768px) {

  .mv_catch {
    top: 52%;
    width: 92%;
  }

  .mv_sub {
    font-size: 14px;
  }

  .mv_sub::after {
    width: 210px;
  }

  .mv_main {
    font-size: 22px;
    line-height: 1.6;
  }

}


/* =========================================
   Page Title
========================================= */

.page_ttl_wrap{
  position: relative;
  width: 100%;
  height: 520px; /* 画像高さに合わせて調整可 */
  /* 背景画像 */
  background: url("../img/service/service_mv.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
margin:0;
}

/* =========================================
   Page Title（画像どおり装飾）
========================================= */

.page_ttl{
  position: relative;
  background: url("../img/about/about_mv.jpg") no-repeat center center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------
   白ボックス本体
------------------------------- */

.page_ttl{
      position: relative;
    font-size: 46px;
    color: #1f3b64;
    letter-spacing: .18em;
    font-weight: 500;
    padding: 5px 50px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 0;
    border: 2px solid #ffffff;
    box-sizing: border-box;
}

/* -------------------------------
   外側の白線（2本目）
------------------------------- */

.page_ttl::before{
  content:"";
  position:absolute;

  /* 外側に広げる */
  top:-14px;
  bottom:-14px;
  left:-18px;
  right:-18px;

  border:2px solid #ffffff;
  pointer-events:none;
}

/* =========================================
   Responsive
========================================= */

@media screen and (max-width:768px){

  .page_ttl{
    font-size:26px;
    padding:10px 20px;
    letter-spacing:.14em;
  }

  .page_ttl::before{
    top:-8px;
    bottom:-8px;
    left:-10px;
    right:-10px;
  }
	
	.page_ttl_wrap {
	height: 200px;
	}

}





/* ===============================
   Section1 背景
=============================== */

.top_intro {
    background: url(../img/top/top_sec1_back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 20px;
    text-align: center;
    position: relative;
}

/* 白薄オーバーレイ（読みやすさUP） */
.top_intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(236 244 255 / 94%);
}

/* 中身 */
.top_intro_inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* ===============================
   見出し
=============================== */

.intro_ttl {
  font-size: 32px;
  color: #1f3b64;
  letter-spacing: 0.12em;
  margin-bottom: 35px;
  font-weight: 600;
}

/* ===============================
   リード文
=============================== */

.intro_lead {
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 25px;
  color: #333;
}

/* ===============================
   本文
=============================== */

.intro_text {
  font-size: 16px;
  line-height: 2.2;
  color: #555;
}

@media screen and (max-width: 768px) {

  .top_intro {
    padding: 70px 15px;
  }

  .intro_ttl {
    font-size: 20px;
    line-height: 1.6;
  }

  .intro_lead {
    font-size: 15px;
  }

  .intro_text {
    font-size: 14px;
  }

}



/* ===============================
   Section2 背景
=============================== */

.top_products {
    background: url(../img/top/top_sec2_back.png);
    background-repeat: no-repeat;
    background-size: 55%;
    padding: 180px 20px;
    position: relative;
    background-position-x: -370px;
    background-position-y: 80px;
}

/* 白オーバーレイ */
.top_products::before {
  content: "";
  position: absolute;
  inset: 0;
}

/* 中央幅 */
.top_products_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ===============================
   左テキスト
=============================== */

.products_text {
  width: 50%;
}

.products_ttl {
  font-size: 32px;
  color: #1f3b64;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
}

.products_text p {
  font-size: 18px;
  line-height: 2;
  color: #444;
}

/* ===============================
   右ボタン
=============================== */

.products_btns {
  width: 60%;
}

.products_btns ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ボタン */
.products_btns a {
    display: block;
    text-align: center;
    padding: 46px 10px;
    background: #1f3b64;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 24px;
    letter-spacing: 0.05em;
}

/* ホバー */
.products_btns a:hover {
  background: #122944;
  transform: translateY(-3px);
}

.products_btns ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.products_btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}


/* ===============================
   Section2 Responsive
=============================== */

/* ---------- 1200px ---------- */
@media screen and (max-width: 1200px) {

  .top_products {
    padding: 140px 20px;
    background-size: 70%;
    background-position-x: -260px;
    background-position-y: 60px;
  }

  .top_products_inner {
    gap: 50px;
  }

}


/* ---------- 1024px ---------- */
@media screen and (max-width: 1024px) {

  .top_products {
    padding: 120px 20px;
    background-size: 80%;
    background-position-x: -200px;
    background-position-y: 40px;
  }

  /* 3列 */
  .products_btns ul {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ボタン少し縮小 */
  .products_btns a {
    font-size: 20px;
  }

}


/* ---------- Tablet / SP ---------- */
@media screen and (max-width: 768px) {

  .top_products {
    padding: 50px 15px;
    /* 背景中央寄せ */
    background-size: 120%;
  }

  /* 縦並び */
  .top_products_inner {
    flex-direction: column;
    gap: 35px;
  }

  .products_text,
  .products_btns {
    width: 100%;
    text-align: center;
  }

  /* 見出し */
  .products_ttl {
    font-size: 22px;
	margin-bottom: 20px;
  }

  .products_text p {
    font-size: 16px;
    line-height: 1.9;
  }

  /* 2列 */
  .products_btns ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .products_btns a {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 50px;
  }

}



/* ===============================
   Section3 背景
=============================== */

.top_steps {
  background: url(../img/top/top_sec3_back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 20px;
    position: relative;
}

/* 白オーバーレイ */
.top_steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);
}

/* 中央幅 */
.top_steps_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ===============================
   見出し
=============================== */

.steps_ttl {
  font-size: 28px;
  color: #1f3b64;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}

/* ===============================
   STEPリスト
=============================== */

.steps_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* liをflex化して高さ共有 */
.steps_list li {
      display: inline-block;
}

/* ===============================
   カード
=============================== */

.step_card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;

  /* 高さ統一用 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding-bottom: 10px;
}

.step_card:hover {
  transform: translateY(-6px);
}

/* ===============================
   画像エリア高さ固定
=============================== */

.step_img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step_img img {
  width: 100%;
  max-width: 120px;
}

/* ===============================
   STEP番号
=============================== */

.step_num {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #1f3b64;
}

/* ===============================
   テキスト
=============================== */

.step_text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}


/* ---------- 1024px ---------- */
@media screen and (max-width: 1024px) {

  .steps_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

}


/* ---------- 768px ---------- */
@media screen and (max-width: 768px) {

  .top_steps {
    padding: 50px 15px;
  }

  .steps_ttl {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .step_card {
      padding: 15px 5px;
      max-width: 80%;
      margin: 0 auto;
  }

  .step_img {
    height: 120px;
  }

  .step_img img {
    max-width: 120px;
  }
	
	.features_list li {
	flex-direction: column;
	}

}


/* ---------- 480px ---------- */
@media screen and (max-width: 480px) {

  .steps_list {
    grid-template-columns: 1fr;
  }

}





/* ===============================
   Section4 背景
=============================== */

.top_features {
  padding: 120px 20px;
}

.top_features_inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   見出し
=============================== */

.features_ttl {
  text-align: center;
  font-size: 28px;
  color: #1f3b64;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}

/* ===============================
   画像
=============================== */

.features_imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 80px;
}

.features_img img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* ===============================
   特徴リスト
=============================== */

.features_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各行 */
.features_list li {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

/* 番号BOX */
.feature_num {
  width: 110px;
  height: 110px;
  background: #fff;
  border: 3px solid #2c4a73;
  color: #2c4a73;
  font-size: 42px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

/* テキスト */
.feature_content h3 {
  font-size: 24px;
  color: #2c4a73;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
 margin-top: 0;
}




@media screen and (max-width: 768px) {
.features_list li {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
	
	.feature_num {
            width: 60px;
        height: 60px;
        font-size: 30px;
}
}

/* ========================================
   Section4 背景（和柄）
======================================== */

.top_features{
  position: relative;
  padding: 120px 20px;

  /* 背景① */
  background-image:
    url("../img/top/top_sec4_back.png"),
    url("../img/top/top_sec4_back2.png");

  background-repeat:
    no-repeat,
    no-repeat;

  background-size:
    420px,
    520px;

  background-position:
    left -80px top 60px,
    right -120px bottom 40px;
}


.top_features {
    position: relative;
    padding: 100px 20px;
    background-image: url(../img/top/top_sec4_back.png), url(../img/top/top_sec4_back2.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 800px, 800px;
    background-position: right -120px top -50px, left -120px bottom -170px;
}


.top_features::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255, 255, 255, 0.96);
  z-index:0;
}

.top_features_inner{
  position:relative;
  z-index:1;
}



/* =========================================
   NEWS セクション
========================================= */

.news{
   position: relative;
}

/* 中央幅 */
.news .inner{
  max-width:1300px;
  margin:0 auto;
}

/* ---------------------------------
   カード外枠
--------------------------------- */

.n_waku{
  background: #fff;
    border-radius: 10px;
    padding: 40px 80px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* 1記事 */
.n_waku a{
  display:block;
  text-decoration:none;
  color:#333;
  padding:18px 0;
  border-bottom:1px solid #eee;
}

.n_waku a:last-child{
  border-bottom:none;
}

/* ---------------------------------
   横並び
--------------------------------- */

.inside_flex{
  display:flex;
  align-items:center;
  gap:40px;
}

/* ---------------------------------
   左タイトル（NEWS）
--------------------------------- */

.news_flex{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.news_ttl p{
  font-size:36px;
  color:#1f3b64;
  letter-spacing:0.15em;
  margin:0;
  margin-right: 100px;
}

/* ---------------------------------
   日付
--------------------------------- */

.n_days{
  min-width:160px;
  font-size:18px;
  color:#888;
  letter-spacing:0.05em;
}

/* ---------------------------------
   カテゴリ
--------------------------------- */

.cate_mark{
  font-size:12px;
  color:#fff;
  padding:4px 10px;
  border-radius:20px;
  margin-right:12px;
}

/* ---------------------------------
   タイトル
--------------------------------- */

.inside_flex{
  font-size:18px;
  line-height:1.6;
}

/* ホバー */
.n_waku a:hover{
  opacity:.7;
}

/* ---------------------------------
   一覧ボタン
--------------------------------- */

.news_btn{
  margin-top:30px;
  text-align:right;
}

.news_btn a{
  display:inline-block;
  padding:12px 26px;
  border:1px solid #1f3b64;
  color:#1f3b64;
  border-radius:30px;
  font-size:14px;
  transition:.3s;
display: none;
}

.news_btn a:hover{
  background:#1f3b64;
  color:#fff;
}

.inn_flex {
	display: flex;
	    align-items: center;
}



@media screen and (max-width: 768px) {
.inn_flex {
    align-items: self-start;
    flex-direction: column;
}
	
	.n_waku {
    padding: 10px 10px;
}
	
	.news_ttl p {
    font-size: 24px;
}
	
	.n_waku a {
    padding: 10px 0;
}
	
}



/* =========================================
   Section6 背景
========================================= */

.contact_area{
  background:url(../img/top/top_sec1_back.jpg) no-repeat center/cover;
  padding:120px 20px;
  position:relative;
}

/* 白オーバーレイ */
.contact_area::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgb(236 244 255 / 94%);
}

/* 中央幅 */
.contact_inner{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

/* =========================================
   見出し
========================================= */

.contact_ttl{
  font-size:32px;
  color:#1f3b64;
  letter-spacing:.12em;
  margin-bottom:25px;
}

/* =========================================
   説明文
========================================= */

.contact_text{
  font-size:16px;
  line-height:2;
  color:#333;
  margin-bottom:60px;
}

/* =========================================
   横並び
========================================= */

.contact_flex{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

/* ===============================
   Section6 Contact
=============================== */

.contact {
  background: url(../img/top/top_sec1_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 20px;
  position: relative;
}

/* 白オーバーレイ */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(236 244 255 / 94%);
}

.contact_inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

/* ===============================
   LINEボタン
=============================== */

.contact_line {
  flex: 1;
  background: #35c24a;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.contact_line:hover {
  transform: translateY(-4px);
}

/* アイコン */
.line_icon img {
  width: 80px;
  height: auto;
}

/* テキスト */
.line_main {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 8px;
}

.line_sub {
  font-size: 16px;
}

/* ===============================
   TELボックス
=============================== */

.contact_tel {
  flex: 1;
  border: 3px solid #1f3b64;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

/* 電話横並び */
.tel_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

/* アイコン */
.tel_icon img {
  width: 42px;
  height: auto;
}

/* 電話番号 */
.tel_number {
  font-size: 34px;
  color: #032D68;
  font-weight: bold;
}

/* 注釈 */
.tel_note {
  font-size: 14px;
  color: #032D68;
  line-height: 1.6;
  text-align: left;
}

/* LINEボタン */
.contact_line{
  max-width: 530px;
  height: 70px;
  width: 100%;
  margin: 0 auto;
}

/* TELボタン */
.contact_tel{
  max-width: 530px;
  height: 70px;
  width: 100%;
  margin: 0 auto;

  /* 中央寄せ安定 */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* =========================================
   ボタン高さ差 修正
========================================= */

.contact_line,
.contact_tel{
  max-width: 530px;
  height: 150px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box; /* ← これが重要 */
}

/* TEL中央寄せ維持 */
.contact_tel{
  display: flex;
  flex-direction: column;
  justify-content: center;
}



/* ===============================
   Responsive
=============================== */

@media screen and (max-width: 768px) {

  .contact_inner {
    flex-direction: column;
    gap: 24px;
  }

  .contact_line,
  .contact_tel {
    padding: 15px;
  }

  .line_main {
    font-size: 22px;
	margin: 0;
  }

  .line_icon img {
    width: 60px;
  }

  .tel_number {
    font-size: 24px;
  }
	
	.contact_line {
		text-align: left;
	}

}




/* =========================================
   Footer 全体
========================================= */

/* =========================================
   上段
========================================= */

.footer_top{
  padding:100px 20px;
}

.footer_flex{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:80px;
}


/* =========================================
   左：会社情報
========================================= */

.footer_info{
  width:42%;
}

.footer_info img{
  max-width:450px;
}

.address{
  font-size:15px;
  margin-top: 20px;
 margin-bottom: 15px;
}

.tel{
  font-size:24px;
  font-weight:bold;
  color:#1f3b64;
  display:flex;
  align-items:center;
  gap:10px;
  align-items: baseline;
}

.tel img{
  width:22px;
}

.time{
  font-size:14px;
  margin-bottom:18px;
}

.note{
  font-size:14px;
  line-height:1.9;
  margin-bottom:30px;
}

/* LINEボタン */
.line_btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#39b54a;
  color:#fff;
  padding:14px 26px;
  border-radius:10px;
  text-decoration:none;
  font-size:15px;
}

.line_btn img{
  width:22px;
}


/* =========================================
   右：MAP
========================================= */

.footer_map{
  width:58%;
  text-align:center;
}

.footer_map h3{
  color:#1f3b64;
  margin-bottom:25px;
}

.footer_map img{
  width:100%;
  max-width:620px;
}

.footer_map p{
  font-size:15px;
  line-height:2;
  text-align: left;
}


/* =========================================
   下段 青帯
========================================= */

.footer_bottom{
  background:url(../img/footer_back.jpg);
  background-size:cover;
  padding:40px 20px 30px;
  text-align:center;
  color:#fff;
}

/* ナビ */
.footer_bottom ul{
  display:flex;
  justify-content:center;
  gap:40px;
  list-style:none;
  padding:0;
  margin-bottom:25px;
}

.footer_bottom nav {
   justify-content: center;
}

.footer_bottom a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

/* コピー */
.copy{
  font-size:12px;
  opacity:.9;
      text-align: center;
}


/* =========================================
   Responsive
========================================= */

@media screen and (max-width:768px){

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

  .footer_info,
  .footer_map{
    width:100%;
    text-align:center;
  }

  .tel{
    justify-content:center;
  }

  .footer_bottom ul{
    flex-wrap:wrap;
    gap:20px;
  }
	
	.footer_info img {
    max-width: 320px;
}
	
	.footer_top {
    padding: 30px 20px;
}

	
	.top_features {
     background-size: 370px, 370px;
	        padding: 50px 15px;
}
	
	.features_ttl {
    font-size: 22px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 20px;
}
	
	    .feature_num {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
	
	.feature_content h3 {
        font-size: 22px;
    }


	.service_sec2_inner {
    gap: 20px;
    flex-direction: column;
}

	.service_img {
    width: 350px;
    margin: 0 auto;
}
	
}




/* ===============================
 Service Section2
=============================== */

.service_sec2_inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:80px;
}

/* ===== 料金表 ===== */

.price_list{
  width:350px;
}

.price_row{
  display:flex;
  justify-content:space-between;
  margin-bottom:22px;
  font-size:18px;
  letter-spacing:.05em;
      font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.price_row dt{
      font-weight: bold;
}

.price_row dd{
  color:#333;
}

/* ===== 画像 ===== */

.service_img{
  width:520px;
}

.service_img img{
  width:100%;
  border-radius:18px;
  display:block;
}

/* ===== オプション ===== */

.service_option{
  max-width:800px;
  margin:80px auto 0;
}

.option_list{
  list-style:none;
  padding:0;
  margin:0 0 20px;
}

.option_list li{
  display:flex;
  align-items:center;
  font-size:16px;
}

/* 黒丸 */
.dot{
  width:10px;
  height:10px;
  background:#000;
  border-radius:50%;
}

/* 価格 */
.option_price{
  margin-left:auto;
}

/* 注釈 */
.option_note{
  font-size:14px;
  color:#333;
}





/* ===============================
 Service Option（画像通り）
=============================== */

.service_option{
      max-width: 700px;
    margin: 80px auto 0;
    display: flex;
    align-items: anchor-center;
    gap: 50px;
}


/* 右：テキスト全体 */
.option_text{
  flex:1;
	text-align: left;
}

/* リスト */
.option_list{
  list-style:none;
  padding:0;
  margin:0 0 20px;
}

/* 各行 */
.option_list li{
  display:flex;
  align-items:flex-start;
  gap:15px;
  font-size:18px;
  line-height:1.9;
  color:#000;
}


/* 価格 */
.option_price{
  white-space:nowrap;
}

/* 注釈 */
.option_note{
  font-size:16px;
  color:#333;
  line-height:1.8;
}

/* ===============================
 Responsive
=============================== */

@media screen and (max-width:768px){

  .service_option{
    flex-direction:column;
    gap:30px;
	margin-top: 20px;
  }

  .service_option::before{
    width:80px;
    height:80px;
    margin:0 auto;
  }
	
	.service_flow {
    padding: 50px 15px;
}

}

/* ===============================
 サービスページ 背景
=============================== */

/* サービスページ全体 */
.service_flow{
    background-image: url(../img/service/service_sec5_back.jpg);
    background-repeat: no-repeat;
    background-size: cover;


}

/* ===============================
 Service Flow
=============================== */

.service_flow{
  padding:120px 20px;
}

.service_flow_inner{
  max-width:1200px;
  margin:0 auto;
}

/* 見出し */
.flow_ttl{
  text-align:center;
  font-size:28px;
  color:#1f3b64;
  margin-bottom:80px;
  letter-spacing:.1em;
}

/* ===============================
 各STEP
=============================== */

.flow_item{
  display:flex;
  gap:80px;
  margin-bottom:100px;
}

/* 交互 */
.flow_item.reverse{
  flex-direction:row-reverse;
}

/* ===============================
 テキスト
=============================== */

.flow_text{
  flex:1;
}

/* 見出し */
.flow_head{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:40px;
}

/* 番号 */
.flow_num{
  width:54px;
  height:54px;
  background:#2c4a73;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}

/* タイトル */
.flow_head h3{
  font-size:24px;
  color:#1f3b64;
  margin:0;
}

/* 本文 */
.flow_text p{
  font-size:18px;
  line-height:2;
}

/* ===============================
 画像
=============================== */

.flow_img{
  flex:1;
}

.flow_img img{
  width:100%;
  display:block;
}

/* ===============================
 STEP1 ボタン
=============================== */

.flow_btns{
margin: 0 auto;
  margin-top:40px;
  display:flex;
  gap:30px;
  flex-wrap:wrap;
    display: inline-grid;
}

/* LINE */
.flow_line{
      font-size: 18px;
    background: #fff;
    border-radius: 60px;
    padding: 20px 80px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    color: #009D00;
	    text-align: center;
}

/* TEL */
.flow_tel{
      color: #1f3b64;
    font-size: 18px;
    background: #fff;
    border-radius: 60px;
    padding: 18px 100px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* ===============================
 Responsive
=============================== */

@media screen and (max-width:768px){

  .flow_item{
    flex-direction:column;
    gap:30px;
	margin-bottom: 50px;
  }

  .flow_item.reverse{
    flex-direction:column;
  }

  .flow_ttl{
    font-size:22px;
    margin-bottom:30px;
	          margin-top: 0;
  }
	
	.service_flow {
    padding: 50px 15px;
}

	
	.flow_text p {
    font-size: 16px;
}
}


/* =========================================
   FLOW STEP 表示追加
========================================= */

.flow_num{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* ← 上下配置 */
  width: 80px;
  height: 80px;
  background: #2e4f7a; /* 既存色に合わせて調整可 */
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}


/* 数字 */
.flow_num span{
  font-size: 18px;
  letter-spacing: .05em;
}


/* STEP文字（追加部分） */
.flow_num::before{
  content: "STEP";
  font-size: 10px;
  letter-spacing: .15em;
  margin-bottom: 4px;
  opacity: .9;
}


/* =========================================
   SP
========================================= */

@media screen and (max-width:768px){

  .flow_num{
            width: 50px;
        height: 50px;
        font-size: 20px;
  }
	
	.service_img {
        width: 350px;
    }

	.flow_tel {
    padding: 18px 98px;
}
	
  .flow_num span{
    font-size: 16px;
  }

  .flow_num::before{
    font-size: 9px;
    margin-bottom: 3px;
  }
	
	.flow_img {
    margin: 0 auto;
}
	
	    .flow_item {
        gap: 20px;
        margin-bottom: 30px;
    }
	
	.flow_head {
    gap: 10px;
    margin-bottom: 10px;
}
	
	.service_sec2_inner {
    gap: 30px;
}

}
