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: 16%;
}

.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%);
  }
}


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

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;
}

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

.page_ttl_wrap{
  position: relative;
  width: 100%;
  height: 520px; /* 画像高さに合わせて調整可 */
  /* 背景画像 */
  background: url("../img/about/about_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;
	}

}



/* ===============================
   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 背景
=============================== */


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

/* 中身 */
.top_intro_inner {
  position: relative;
  max-width: 1100px;
  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: 20px 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: 120px 20px;
    position: relative;
    background-position-x: -320px;
    background-position-y: 280px;
}

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

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

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

.products_text {
  width: 50%;
}

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

.products_text p {
  font-size: 16px;
  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: 100%;
	background-position-x: -200px;
    background-position-y: 280px;
  }

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

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

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

  .products_text p {
    font-size: 14px;
    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: 1100px;
  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: 16px;
  flex-shrink: 0;
}

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

.feature_content p {
  font-size: 15px;
  line-height: 2;
  color: #333;
}




@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: 430px, 430px;
}
}




/* =========================================
 About Section1
========================================= */



/* 横並び */
.about_flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
	    max-width: 1200px;
    justify-content: center;
}

/* ===============================
 パンくず
=============================== */

.about_breadcrumb{
  font-size:13px;
  color:#333;
  margin-bottom:40px;
  letter-spacing:.05em;
}

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

.about_ttl{
  font-size:34px;
  color:#1f3b64;
  margin-bottom:40px;
  letter-spacing:.12em;
}

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

.about_text p{
      font-size: 18px;
    line-height: 2;
  color:#333;
  margin-bottom:28px;
}

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

.about_img{
  flex:0 0 420px;
}

.about_img img{
  width:100%;
  border-radius:12px;
  display:block;
}



.about_textbox {
	text-align: left;
}
/* ===============================
 Responsive
=============================== */

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

  .about_flex{
    gap:50px;
  }

  .about_img{
    flex:0 0 360px;
  }

}

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

  .about_flex{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .about_img{
    width: 97%;
        flex: none;
        margin: 0 auto;
  }

	
  .about_ttl{
    font-size:28px;
	margin-bottom: 20px;
  }

  .about_text p{
    font-size:16px;
    line-height:1.8;
  }
	
	.about_breadcrumb {
    margin-bottom: 30px;
	}

}



/* =========================================
 About Section2 店舗情報
========================================= */



/* 横並び */
.about2_flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:100px;
}

/* ===============================
 左：ロゴ
=============================== */

.about2_logo{
  text-align:center;
  flex:0 0 360px;
}

.about2_logo img{
  width:100%;
  max-width:350px;
  margin-bottom:25px;
}

.about2_logo_text{
  font-size:18px;
  line-height:1.8;
  color:#1f3b64;
  letter-spacing:.08em;
}

.about2_logo_text span{
  display:block;
  font-size:26px;
  font-weight:bold;
  margin-top:6px;
}

/* ===============================
 右：店舗情報
=============================== */

.about2_info{
  flex:1;
}

/* 見出し */
.about2_ttl{
  font-size:32px;
  color:#1f3b64;
  letter-spacing:.15em;
  margin-bottom:50px;
}

/* 情報リスト */
.shop_info{
  width:100%;
}

.info_row{
  display:flex;
  padding:15px 0;
}

.info_row:last-child{
  border-bottom:none;
}

.info_row dt{
  width:140px;
  font-weight:bold;
  color:#333;
  font-size:18px;
}

.info_row dd{
  flex:1;
  font-size:18px;
  line-height:2;
  color:#333;
}

/* 注釈 */
.info_note{
  display:block;
  font-size:14px;
  margin-top:0px;
  color:#555;
}

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

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

  .about2_flex{
    gap:60px;
  }

}

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

  .about2_flex{
    flex-direction:column;
    gap:0px;
  }

  .about2_logo{
    flex:none;
  }

  .about2_ttl{
    text-align:center;
	 margin: 0px;
  }

  .info_row{
    flex-direction:column;
    gap:5px;
	 padding: 8px 0;
  }

  .info_row dt{
    width:100%;
  }
	
	.about2_logo img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 0px;
}
	
  .info_row dd {
	margin-left: 0px;
	}

}



/* =========================================
   About FAQ
========================================= */

/* 中央幅 */
.about_faq_inner{
  max-width:1100px;
  margin:0 auto;
}

/* =========================================
   各アイテム
========================================= */

.faq_item{
  background:#fff;
  border-radius:16px;
  margin-bottom:30px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  overflow:hidden;
}

/* =========================================
   質問エリア
========================================= */

.faq_q{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:32px 40px;
  cursor:pointer;
}

/* テキスト */
.faq_q_text{
  font-size:24px;
  color:#1f3b64;
  font-weight:600;
  letter-spacing:.08em;
  margin:0;
}

/* Qマーク */
.faq_q_text .q{
  margin-right:18px;
  font-weight:bold;
}

/* ＋ / － アイコン */
.faq_icon{
  position:relative;
  width:26px;
  height:26px;
}

/* 横線 */
.faq_icon::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:2px;
  background:#1f3b64;
  transform:translateY(-50%);
}

/* 縦線 */
.faq_icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:2px;
  height:100%;
  background:#1f3b64;
  transform:translateX(-50%);
  transition:.3s;
}

/* 開いたら − 表示 */
.faq_item.open .faq_icon::after{
  opacity:0;
}

/* =========================================
   回答エリア（JS制御）
========================================= */

.faq_a{
  display:none;              /* ← JSで開閉 */
  padding:0 40px 40px;
}

/* テキスト */
.faq_a p{
  font-size:18px;
  line-height:2;
  color:#333;
  margin:0;
  text-align: left;
}

/* Aマーク */
.faq_a .a{
  font-weight:bold;
  margin-right:12px;
}

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

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

  .faq_q{
   padding: 20px 15px;
  }

  .faq_q_text{
    font-size:18px;
    line-height:1.6;
	text-align: left;
	width: 300px;
  }

  .faq_a{
    padding:0 22px 26px;
  }

  .faq_a p{
    font-size:16px;
  }
	
	.faq_q_text .q {
    margin-right: 0px;
}

}


/* =========================================
   FAQ 背景ズーム・横広がり 完全停止
   （既存CSS干渉 上書き専用）
========================================= */

/* 背景の再描画を禁止 */
.top_steps{
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  transform: none !important;
}

/* 疑似要素の拡大防止 */
.top_steps::before,
.top_steps::after{
  transform: none !important;
  scale: 1 !important;
  animation: none !important;
}

/* FAQ開閉時のレイアウト再計算防止 */
.faq_item,
.faq_a{
  transform: none !important;
  will-change: auto !important;
}

/* slick / flex / grid の再描画干渉停止 */
.top_steps *,
.about_faq *,
.faq_item *,
.faq_a *{
  backface-visibility: hidden;
  transform-style: flat;
}

/* 横広がり防止 */
.top_steps{
  overflow-x: hidden !important;
}


.faq_a{
  overflow:hidden;
}

