@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green01: #28af00;
  --green02: #6cbb3c;
  --green03: #25af77;
  --green04: #209a00;
  --green05: #28b9b3;

}

html, body {
  margin: 0;
  padding: 0;
  font-family:"Hiragino Sans", "Noto Sans JP","Hiragino Kaku Gothic ProN", 'メイリオ', 'Meiryo', sans-serif; font-weight: 400;
  font-size: 16px;
  color: #333;
}

html {
  scroll-behavior: smooth;
}
img{
	vertical-align:top;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0; /* 必要に応じて */
}

/* 中の幅を1100pxに固定して中央寄せ */
.container {
  max-width: 1100px;
  margin: 0 auto;    
  padding: 0; 
}

a{ text-decoration: none;}

p{margin:0;}

section p{line-height: 1.9; }

section{ padding:100px 0;}
@media screen and (max-width: 599px) {
  section { padding:60px 0; }
}

@media screen and (max-width: 599px) {
  main {
    padding-top: 75px; /* ← 固定ヘッダーの高さぶん下げる */
  }
}

/*-----------------------------------------------------------------------------------
header高さ+余裕ぶん
-----------------------------------------------------------------------------------*/
@media screen and (max-width: 599px) {
  section {
    scroll-margin-top: 70px;
  }
}
/*-----------------------------------------------------------------------------------
アイコン
-----------------------------------------------------------------------------------*/
.icon1:before, .icon1ul li:before, .icon1dl dt:before {
    content: "■";
    margin-right: .5em;
    font-weight: normal;
}
.icon2:before, .icon2ul li:before, .icon2dl dt:before {
    content: "※";
    margin-right: .5em;
    font-weight: normal;
}

.icon3:before, .icon3ul li :before, .icon3dl dt:before {
    content: "▶";
    margin-right: .5em;
    font-weight: normal;
}

.indent1\.5{ padding-left: 1.5em; text-indent: -1.5em; }
/*-----------------------------------------------------------------------------------
color
-----------------------------------------------------------------------------------*/
.col1:before,.col1:before {
    color: var(--green01)
}
.col2:before,.col2:before {
    color: var(--green02)
}
.col3:before,.col3:before {
    color: var(--green03)
}

/*-----------------------------------------------------------------------------------
header
-----------------------------------------------------------------------------------*/
.header_green{ padding:12px 30px; background-color: #28af00; color: #fff; border-radius: 50px; display: flex; align-items: center;}

/* -----------------------------------------------
  共通スタイル
-------------------------------------------------- */

/* ナビ全体の設定 */
.main-nav {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 1000;
}

/* メニューリスト共通 */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各リンク共通 */
.nav-menu a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  display: block;
}

/* ハンバーガーボタン（SP用） */
.hamburger-btn {
  width: 45px;
  height: 45px;
  background-color: #28af00;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1100;
}

.hamburger-btn .bar {
  width: 24px;
  height: 3px;
  background-color: #fff;
}

/* ×ボタン（SP用） */
.close-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background-color: #28af00;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
  z-index: 1100;

  /* 初期は非表示 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.close-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

/* -----------------------------------------------
  PC表示（幅600px以上）
-------------------------------------------------- */
@media screen and (min-width: 600px) {
  .hamburger-btn,
  .close-btn,
  .logo {
    display: none;
  }

  .nav-menu {
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .nav-menu li {
    flex: 1;
    text-align: center;
  }

  .nav-menu a {
    padding: 20px 0;
    transition: color 0.3s ease;
  }

  .nav-menu a:hover {
    color: #28af00;
  }
  .pc-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}
}

/* -----------------------------------------------
  SP表示（幅599px以下）
-------------------------------------------------- */
@media screen and (max-width: 599px) {
   header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px; /* 高さは指定必須 */
    background-color: #fff;
    z-index: 1000;
     }
  .pc-only {
    display: none;
  }

  .logo {
    display: block; 
  }
  .logo img{
         height:75px!important;; 
         height: auto;
    width: auto; 
  }

  .nav-menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85);
    transition: right 0.3s ease;
    padding-top: 80px;
    z-index: 1000;
  }
    .nav-menu li a:before {
      content: "▶";
    margin-right: .5em;
    font-weight: normal;
    color:var(--green01);
  }
  .nav-menu.open {
    right: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid #ccc;
    text-align: left;
    width: 90%;
    margin: auto;
  }

  .nav-menu a {
    padding: 15px;
    color: #333;
  }

  .nav-menu a:hover {
    background-color: rgba(135, 206, 250, 0.3); /* 薄い水色 */
  }

   }

/*-----------------------------------------------------------------------------------
title
-----------------------------------------------------------------------------------*/
/*セクションタイトル*/
h2.hl1{
  font-family: "Hiragino Sans", "Noto Sans JP","Hiragino Kaku Gothic ProN", 'メイリオ', 'Meiryo', sans-serif; font-weight: 600;
  font-size:40px;
  color: #333;
}
h2.hl1::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../images/icon_title_l@2x.png") no-repeat center / contain;
  margin-right: 30px;
  vertical-align: middle;

}

@media screen and (max-width: 599px) {
  h2.hl1 { 
    font-size:30px;
   }
}
h2.hl1::before {
  margin-right: 16px;

}
#about,#performance,#advantages {
    background-color: #f0f7ec;
}

.consultation-h3{
	display: flex;
	align-items: center;
  font-size: 28px;
  color: var(--green01);
}
.consultation-h3 img{	width: 60px;
	height: 60px;
	object-fit: contain;
	flex-shrink: 0;
}

@media screen and (max-width: 599px){
  .consultation-h3{
    font-size: 26px;
	}
	.consultation-h3 img{
		width: 50px;
		height: 50px;
	}
}

/*-----------------------------------------------------------------------------------
footer
-----------------------------------------------------------------------------------*/
footer{ background-color:#28af00;}
@media screen and (max-width: 599px) {
  footer{
    margin-bottom:80px;
  }
}
.copy{ background-color:#fff; padding: 20px;}
.copy p{text-align: center;}
.sp_footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1200;
}
.sp_footer img{
    width: 100%;
}
