html {
    font-size: 100%;
	margin-top: 0px!important;
  }
  body {
    margin: 0;
  font-family: "Zen Old Mincho", serif;
  }
  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%;
    background: #1f3b64eb;
    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;
  }

}





/* ===============================
   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: 36px;
  color: #1f3b64;
  letter-spacing: 0.12em;
  margin-bottom: 35px;
  font-weight: 600;
}

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

.intro_lead {
  font-family:
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 25px;
}

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

.intro_text {
      font-size: 18px;
    line-height: 2.2;
	font-family:
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
}

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

  .top_intro {
    padding: 50px 15px;
  }

  .intro_ttl {
    font-size: 22px;
    line-height: 1.6;
	margin-top: 0;
	margin-bottom: 20px;
  }

  .intro_lead {
    font-size: 16px;
  }

  .intro_text {
    font-size: 14px;
  }

}



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

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

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

/* 中央幅 */
.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-family:
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  font-size: 18px;
  line-height: 2;
}

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

.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 li {
    display: block;
    text-align: center;
    padding: 46px 10px;
    background: #264572;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 28px;
    letter-spacing: 0.05em;
}


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

.products_btns li {
font-family:
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  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;
    line-height: 1.6;
	margin-top: 0;
	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.78);
}

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


.steps_list{
  position:relative;
}

.steps_list::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:8px;
  background:#6d8dbc; /* 線色 */
  transform:translateY(-50%);
}

.steps_list li{
  position:relative;
  z-index:1;
}

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

.steps_ttl {
      font-size: 32px;
    color: #1f3b64;
    margin-bottom: 50px;
    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: 10px;
  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_img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.step_num {
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #1f3b64;
  margin-bottom: 5px;
}

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

.step_text {
	    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
      font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}


/* ---------- 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;
    line-height: 1.6;
	margin-top: 0;
	margin-bottom: 50px;
  }

  .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;
	}
	
	.step_num {
    font-size: 22px;
}

	.steps_list::before {
		display: none;
	}
	
	.inside_flex {
		flex-direction: column;
    align-items: baseline;
	}
	
}


/* ---------- 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: 32px;
  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 {
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    width: 110px;
    height: 110px;
    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: 10px;
  letter-spacing: 0.08em;
 margin-top: 0;
}

.feature_content p {
      font-size: 18px;
    line-height: 2;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}




@media screen and (max-width: 768px) {
.features_list li {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
	
	.feature_num {
      width: 50px;
      height: 50px;
      font-size: 24px;
}
	
	.features_ttl {
    font-size: 22px;
    margin-bottom: 40px;
}
	
	.features_imgs {
    margin-bottom: 50px;
}
	
	.feature_content h3 {
		font-size: 22px;
	}
	
	.feature_content p {
    font-size: 16px;
}
}

/* ========================================
   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 -240px top -50px, left -190px 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:32px;
  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:#000;
  padding:4px 10px;
  border-radius:20px;
  margin-right:12px;
	display: none;
}

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

.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;
    flex-direction: column;
}



@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: 22px;
	        margin-right: 50px;
}
	
	.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;
}

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

.contact_inner_plus .plus_ttl {
	    text-align: center;
    font-size: 32px;
    color: #1f3b64;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
}

.plus_txt {
	text-align: center;
    margin-bottom: 50px;
}

/* ===============================
   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;
  max-width: 302px;
  margin: 0 auto;
}

/* 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;
	}
	
	.contact_line, .contact_tel {
    height: 100px;
}
	
	.contact {
    padding: 50px 15px;
}
	
	.contact_inner_plus .plus_ttl {
    font-size: 22px;
    margin-bottom: 20px;
}
	
	.tel_icon img {
    width: 30px;
}
	
	.tel_flex {
    gap: 10px;
}

}




/* =========================================
   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: 430px, 430px;
    padding-top: 50px;
}
	
	    .inside_flex {
        flex-direction: column;
        align-items: baseline;
    }
	
	.inside_flex {
    gap: 0px;
	font-size: 16px;
}
	
	.n_waku a {
        margin-bottom: 15px;
    }
	
	.n_days {
    font-size: 16px;
	}
	
	.products_btns li {
    font-size: 24px;
}
}
