@charset "utf-8";
html{
overflow-x: hidden;
}
/* ボディ設定*/
body {
	-webkit-text-size-adjust: none;
	font-family: 'Noto Sans JP', sans-serif;
 	font-size: 18px;
	line-height: 30px;
	color: #333333;
  	text-align:left;
  	margin: 0;
  	padding: 0;
	background-color: #fff;
	box-sizing:border-box;
}
h1,h2,h3,h4,h5,h6,p,ul,li,dl, dt, dd{
  	margin: 0;
  	padding: 0;
}
li img,dt img,dd img{
	vertical-align:bottom;
}
ol, ul {
	list-style:none;
}
img{
	max-width: 100%;
	height: auto;
	vertical-align:middle;
	border:0px;
	transition: 1.0s ;
}
a:hover img{
  opacity: 0.7;
}
* {
	box-sizing: border-box;
}

/* リンクの色 */
a {
	COLOR: #1a0dab;
	text-decoration: none;
}
a:link {
  color: #1a0dab;
}
a:visited {
  color: #660099;
}
a:hover {
  color: #4d90fe;
}
a:active {
  color: #c61a09;
}

/*Clearfix*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix {
	zoom: 1;
}
/*インデント*/
.txt-ind{
	padding-left: 1em;
	text-indent: -1em;
}

/*全体の枠
---------------------------------------------------------------------------*/
#wrapper{
	width:100%;
}
@media screen and (max-width: 1200px){
	.br-pc {display: none; }
}
/*PC・スマホ切り替え*/
@media screen and (max-width: 576px) {
	.pc-only{display: none;}
}
@media screen and (min-width: 576px){
	.br-sp {display: none; }
	.sp-only{display: none;}
}

.sec-box-w{
  position: relative;
  background-color: #fff;
	padding: 80px 0;
  z-index: 1;
}

/* 背景用の波 */
.sec-box-w::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: url("../images/haikei-nami.webp") no-repeat center bottom;
  background-size: 100% auto;
  z-index: -1;          /* ← 中身より背面 */
}
@media screen and (max-width: 576px) {
	.sec-box-w::after{
		display: none;
	}
}

.sec-box-g{
	background-color: #f2f4f3;
	padding: 80px 0;
	border-radius: 100px 0 0 0;
}
.sec-box-b{
	background-color: #fff;
	padding: 80px 0;
}

.sec-box-g{
	background-color: #f2f4f3;
	padding: 80px 0;
}

.sec-hinto{
	position: relative;
	background-color: #f2f4f3;
	padding: 80px 0;
	border-radius: 100px 0 0 0;
  z-index: 1;
}
.sec-hinto::before{
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 389px;
	height: 549px;
	background: url("../images/ikkan-photo01.webp") no-repeat left bottom / contain;
  background-size: 100% auto;
  z-index: -1;          /* ← 中身より背面 */
}



/*ヘッダー　グローバルナビ
---------------------------------------------------------------------------*/
/* 背景動画 */
.header-visual{
  position:relative;
  width:100%;
  height:900px;
  overflow:hidden;
}

.header-visual video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

/* ヘッダー（最前面固定） */
.header-inner{
  position:fixed;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:93%;
  height:100px;
  padding:0 10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid #012c15;
  z-index:1000;

  background: transparent; /* 初期は透明 */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
/* 100pxスクロール後 */
.header-inner.is-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}

.logo img{
  width:308px;
}

/* PCナビ */
.nav-pc{
	font-size: 14px;
  display:flex;
  align-items:center;
  gap:32px;
}

.nav-pc a{
  color:#000000;
  text-decoration:none;
  position:relative;
  text-shadow:0 2px 6px rgba(256,256,256,1);
  height:52px;                 /* ← btn-free と同じ */
  display:flex;                /* ← 中央揃えのため */
  align-items:center;          /* ← 縦中央 */
  position:relative;
}

.nav-pc a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:5px;
  width:0;
  height:2px;
  background:#4da200;
  transition:.3s;
}

.nav-pc a:hover::after{width:100%;}

.nav-pc a.btn-free{
  background:#4da200;
  color:#fff;
  text-shadow:0 2px 6px rgba(256,256,256,.0);
}
.btn-free{
  width:180px;
  height:52px;
  background:#4da200; /* グリーン */
  color:#fff;         /* 白文字 */
  border-radius:26px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:600;
}

.btn-free:hover{
  background:#4da200;
  color:#fff;
  opacity:0.85;
}
.nav-pc .btn-free::after{display:none;}

/* =====================
   ハンバーガー（header-inner内）
===================== */
.hamburger{
  display:none;
  width:32px;
  height:22px;
  position:relative;
  background:none;
  border:none;
  cursor:pointer;
}

.hamburger span{
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background:#012c15;
  transition:.3s;
}

.hamburger span:nth-child(1){top:0;}
.hamburger span:nth-child(2){top:9px;}
.hamburger span:nth-child(3){bottom:0;}

/* × 変形 */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg);
  top:9px;
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg);
  bottom:9px;
}

/* =====================
   スマホメニュー（全面）
===================== */
.nav-sp{
  position:fixed;
  inset:0;
  background:#fff;
  padding:90px 12% 24px;
  z-index:900; /* header-inner より下 */
  opacity:0;
  visibility:hidden;
  transition:.3s;

  padding-bottom: calc(24px + 100px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-sp.active{
  opacity:1;
  visibility:visible;
}

.nav-sp a{
  display:block;
  padding:14px 0;
  border-bottom:1px solid #ddd;
  color:#012c15;
  text-decoration:none;
}
.nav-sp a:first-child{
  border-top:1px solid #ddd;
}
.nav-sp a.btn-free{
  color:#fff;
	font-size: 0.9em;
	margin-top: 30px;
}

/* =====================
   スマホメニュー内 ボタン
===================== */
.nav-sp .btn-free{
  margin-top:32px;
	width: 100%;
  height:52px;
  border-radius:26px;
  background:#4da200;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:600;
  text-decoration:none;
}

/* hover / tap時 */
.nav-sp .btn-free:hover{
  opacity:0.85;
}

/* =====================
   レスポンシブ
===================== */
@media(max-width:1200px){
  .header-visual{
    height:460px;
  }
	.header-inner{
	  height:60px;
	  width:96%;
	}
  .nav-pc{display:none;}
  .hamburger{display:block;}
  .logo img{width:220px;}
}
@media(max-width:768px){
	.header-inner{
	  width:98%;
	}
}

/*フッダー
---------------------------------------------------------------------------*/
.fooder_box {
  width: 100%;
  background-color: #f2f4f3;
}

/* フッター全体 */
.fooder_in_box{
	max-width: 1440px;
	margin: 0 auto;
	padding: 60px 20px; /* 上下60px + スマホ余白 */
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	box-sizing: border-box;
}

/* 左右 50% */
.fooder_left_box,
.fooder_right_box{
	width: 50%;
	box-sizing: border-box;
}

/* 左側 */
.fooder_left_box img{
	width: 308px;
	height: auto;
	display: block;
}

.fooder_left_box p{
	margin-top: 40px;
}

/* 右側 */
.fooder_right_box h5{
	font-size: 21px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ■ マーク */
.fooder_right_box h5 span{
	color: #4da200;
	font-size: 18px;
}

/* 右側テキスト */
.fooder_right_box p{
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 6px;
}

.fooder_right_box a{
	color: inherit;
	text-decoration: none;
}

.fooder_right_box a:hover{
	text-decoration: underline;
}
.copy_box{
	background-color: #012c15;
	width: 100%;
	padding: 10px 0 10px;
	color: #fff;
	text-align: center;
	font-size: 15px;
}
/* =========================
   レスポンシブ（タブレット以下）
========================= */
@media screen and (max-width: 768px){
	.fooder_in_box{
		flex-direction: column;
		row-gap: 40px;
	}

	.fooder_left_box,
	.fooder_right_box{
		width: 100%;
	}

	.fooder_left_box img{
		width: 260px;
	}

	.copy_box{
		padding: 10px 0 70px;
	}
}
@media screen and (max-width: 1400px) {
  .fooder_f_box {
    padding: 46px 20px;
  }
}


/*ページトップ
---------------------------------------------------------------------------*/
#scrollToTopBtn {
    position: fixed;
    bottom: 55px;
    right: 20px;
    display: none; /* 初期状態では非表示 */
    border: none;
    padding: 0px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1010;
}

#scrollToTopBtn:hover {
}


/*CTA
---------------------------------------------------------------------------*/
.cta-container {
    display: none;
}


/*690以下 510*/
@media all and (max-width:768px){
    .cta-container {
        display: flex;
        justify-content: space-around;
        text-align: center;
        padding: 1px;
        background-color: #f9f9f9;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
		z-index: 1000;
    }
    .cta-container a{
        color: #fff;
    }
    .cta-button {
        background-color: #ff7900;
        color: white;
        border: none;
        padding: 10px 10px;
        margin: 5px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        width: 92%;
        max-width: 300px;
    }
    .cta-button:hover {
        background-color: #ff7900;
    }
}
/*510以下 92%*/
@media all and (max-width:576px){
}

/*下線が動く
---------------------------------------------------------------------------*/
.underline_movement a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #e79065;
bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
transition: transform 0.5s; /*変形の時間*/
}

.underline_movement a:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}
.underline_movement_top a {
border-bottom: 1px solid #e79065;
}
@media all and (max-width:982px){
	.underline_movement {
		position:static;
		bottom: 0px; 
		transform: none;
		transform-origin: center;
		transition: unset;
	}
	.underline_movement_top a {
		border-bottom: none;
	}
}

/*フェードイン
---------------------------------------------------------------------------*/
.fade-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s ease, transform 1.0s ease;
}
.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}


/*外注課題
---------------------------------------------------------------------------*/
/* 全体 */
.kadai-box{
	max-width: 1440px;
	margin: 0 auto;
	padding: 60px 20px; /* 上下60px */
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	box-sizing: border-box;
}

/* 左右50% */
.kadai-left-box,
.kadai-right-box{
	width: 50%;
	box-sizing: border-box;
}

/* =====================
   左側
===================== */
.kadai-left-box h2{
	font-size: 46px;
	font-weight: bold;
	line-height: 1.4;
}

.kadai-left-box h2 span{
	color: #ff5d00;
}

.kadai-left-box p{
	margin-top: 70px;
	line-height: 1.8;
}

/* =====================
   右側（2列2行）
===================== */
.kadai-right-box{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

/* 各課題ボックス */
.kadai-list-box{
	text-align: center;
}

/* 画像 */
.kadai-list-box img{
	width: 100%;
	max-width: 340px;
	height: auto;
	border-radius: 10px;
	display: block;
	margin: 0 auto;
}

/* タイトル */
.kadai-list-box h4{
	margin-top: 15px;
	font-size: 24px;
	color: #005bac;
	text-align: center;
}

/* 説明文 */
.kadai-list-box p{
	margin-top: 15px;
	line-height: 1.7;
	text-align: left;
}

/* =====================
   レスポンシブ
===================== */
@media screen and (max-width: 1024px){
	.kadai-box{
		flex-direction: column;
		row-gap: 50px;
	}

	.kadai-left-box,
	.kadai-right-box{
		width: 100%;
	}

	.kadai-right-box{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px){
	.kadai-left-box h2{
		font-size: 30px;
	}

	.kadai-left-box p{
		margin-top: 40px;
	}

	.kadai-right-box{
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.kadai-list-box h4{
		font-size: 24px;
	}
}
/* 対象企業ボックス
---------------------------------- */
.kadai-taishou-kigyou-box {
  width: 100%;
  background-color: rgba(220, 255, 255, 0.8); /* #dcffff 80% */
  border-radius: 10px;
  padding: 40px 60px;
  box-sizing: border-box;
	margin-top: -30px;
}

/* 見出し */
.kadai-taishou-kigyou-box h4 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: bold;
  color: #005bac;
	text-align: center;
}

/* テキスト */
.kadai-taishou-kigyou-box p {
  margin: 0;
  text-align: left;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .kadai-taishou-kigyou-box {
    padding: 40px 20px;
  }
}


/*問題解決
---------------------------------------------------------------------------*/
/* 全体 */
.ikkan-box{
	max-width: 1440px;
	margin: 0 auto;
	padding: 60px 20px; /* 上下60px */
	box-sizing: border-box;
}

/* 見出し */
.ikkan-box h2{
	font-size: 46px;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
}

.ikkan-box h2 span{
	color: #ff5d00;
}

/* 説明文 */
.ikkan-box > p{
	margin: 50px auto 0;   /* ← 左右を auto にする */
	text-align: left;     /* 文字は左寄せ */
	width: fit-content;   /* 文字量に合わせた横幅 */
	max-width: 100%;      /* 念のため */
}


/* =====================
   テーブル
===================== */
.ikkan-box table{
	width: 100%;
	margin-top: 50px;
	border-collapse: collapse;
}

/* 行 */
.ikkan-box tr:nth-child(odd){
	background-color: rgba(255, 255, 255, 0.8);
}

.ikkan-box tr:nth-child(even){
	background-color: transparent;
}

/* th */
.ikkan-box th{
	width: 22%;
	font-size: 24px;
	font-weight: bold;
	text-align: left;
	padding: 18px 20px;
	border-right: 1px dotted #999;
	vertical-align: top;
	box-sizing: border-box;
}

/* td */
.ikkan-box td{
	width: 78%;
	font-size: 18px;
	padding: 18px 20px;
	line-height: 1.7;
	box-sizing: border-box;
}

/* =====================
   レスポンシブ
===================== */
@media screen and (max-width: 768px){
	.ikkan-box h2{
		font-size: 30px;
		text-align: left;
	}

	.ikkan-box > p{
		margin-top: 30px;
	}

	.ikkan-box table{
		margin-top: 30px;
	}

	/* スマホは縦積み */
	.ikkan-box table,
	.ikkan-box tbody,
	.ikkan-box tr,
	.ikkan-box th,
	.ikkan-box td{
		display: block;
		width: 100%;
	}

	.ikkan-box th{
		border-right: none;
		border-bottom: 1px dotted #999;
		font-size: 20px;
		padding-bottom: 10px;
	}

	.ikkan-box td{
		padding-top: 10px;
		font-size: 16px;
	}
}
/* OEM運用の安心設計
---------------------------------- */
.ikkan-anshin-box {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px 60px;
  box-sizing: border-box;
	margin-top: 30px;
}
.ikkan-anshin-box h4 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: bold;
  color: #005bac;
	text-align: center;
}
.ikkan-anshin-box p {
  margin: 0;
  text-align: left;
  line-height: 1.7;
	margin-bottom: 18px;
}
.ikkan-anshin-box span {
	display: inline-block;
	background-color: #005bac;
	border-radius: 10px;
	width: 200px;
	margin-right: 18px;
	padding: 0;
	text-align: center;
	color: #fff;
}
@media screen and (max-width: 768px) {
  .ikkan-anshin-box {
    padding: 40px 20px;
  }
	.ikkan-anshin-box span {
		width: 100%;
	}
}

/*最適な提供方法
---------------------------------------------------------------------------*/
/* 全体 */
.saiteki-box {
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 20px;
}

/* 見出し */
.saiteki-box h2 {
  font-size: 46px;
	line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.saiteki-box h2 span {
  color: #ff5d00;
}

/* 説明文 */
.saiteki-box > p {
  margin-top: 50px;
  text-align: center;
}

/* 2カラム */
.saiteki-kata-box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 700px);
  gap: 40px;
  justify-content: center;
}

/* 左右共通 */
.saiteki-kata-left,
.saiteki-kata-right {
  width: 700px;
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

/* 色分け */
.saiteki-kata-left {
  background: #d09200;
}

.saiteki-kata-right {
  background: #0087d0;
}

/* h3 */
.saiteki-kata-left h3,
.saiteki-kata-right h3 {
  font-size: 46px;
  font-weight: bold;
  text-align: center;
}

/* （完全委託）（OEM） */
.saiteki-kata-left > p,
.saiteki-kata-right > p {
  font-size: 21px;
  text-align: center;
  margin-top: 10px;
}

/* 白背景エリア */
.saiteki-kata-w {
  margin-top: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  color: #000;
}

/* h5 */
.saiteki-kata-w h5 {
  font-size: 28px;
  text-align: center;
}

/* h6 */
.saiteki-kata-left .saiteki-kata-w h6,
.saiteki-kata-right .saiteki-kata-w h6 {
  font-size: 21px;
  margin-top: 28px;
}

/* 色分け */
.saiteki-kata-left .saiteki-kata-w h6 {
  color: #d09200;
}

.saiteki-kata-right .saiteki-kata-w h6 {
  color: #0087d0;
}

/* リスト */
.saiteki-kata-w ul {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.saiteki-kata-w li {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

/* ● の色分け */
.saiteki-kata-left .saiteki-kata-w li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #d09200;
}

.saiteki-kata-right .saiteki-kata-w li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #0087d0;
}

/* サービス内容文章 */
.saiteki-kata-w p {
  margin-top: 10px;
  line-height: 1.8;
}
@media screen and (max-width: 1440px) {
  .saiteki-kata-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .saiteki-kata-left,
  .saiteki-kata-right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .saiteki-kata-box {
    grid-template-columns: 1fr;
  }

  .saiteki-box h2 {
    font-size: 30px;
	  text-align: left;
  }
  .saiteki-box > p {
	  text-align: left;
  }
  .saiteki-kata-left h3,
  .saiteki-kata-right h3 {
    font-size: 36px;
	  line-height: 1.4;
  }

  .saiteki-kata-w h5 {
    font-size: 24px;
  }
  .saiteki-kata-left,
  .saiteki-kata-right {
    padding: 20px 5px 5px;
  }
	.saiteki-kata-w {
	  padding: 25px 16px;
	}
}

/* 提供形態の違い
---------------------------------- */
.saiteki-chigai-box {
  width: 100%;
	margin-top: 30px;
}
/* テーブル基本 */
.saiteki-chigai-box table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
/* 共通セル */
.saiteki-chigai-box th,
.saiteki-chigai-box td {
  border: 1px solid #e5e5e5;
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
}

/* 左列（項目名） */
.saiteki-chigai-box th {
  background-color: #f7f9fc;
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
}

/* 1行目（タイトル行） */
.saiteki-chigai-box table tr:first-child th {
  background-color: #eef3f8;
  text-align: center;
}

.saiteki-chigai-box table tr:first-child td {
  font-weight: bold;
}

/* 紹介型 */
.saiteki-chigai-box table tr:first-child td:nth-child(2) {
  color: #FFFFFF;
	background-color: #d09200;
}

/* 協業型（OEM） */
.saiteki-chigai-box table tr:first-child td:nth-child(3) {
  color: #FFFFFF;
	background-color: #0087d0;
}

/* 下の注釈 */
.saiteki-chigai-box p {
  margin-top: 10px;
}
.saiteki-chigai-box span {
  font-size: 0.8em;
}
/* スマホ：横スクロール対応
---------------------------------- */
.table-scroll {
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .table-scroll table {
    min-width: 700px;
  }
}




/*業界最安値クラス
---------------------------------------------------------------------------*/
/* 全体背景 */
.gyoukai-box {
  width: 94%;
  margin: 10px auto;
  background: #00b5ad;
  border-top-right-radius: 100px;
  padding: 0 20px;
}

/* ===== 利益向上エリア ===== */
.koujou-box {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
}

/* 左右50% */
.koujou-box-left,
.koujou-box-right {
  width: 50%;
  color: #fff;
}
.koujou-box-left{
	padding-right: 5%;
}
/* 左側 */
.koujou-box-left h2 {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.25; /* 行間を固定 */
  text-align: left;
}

.koujou-box-left h2 span {
  color: #ffff00;
}

.koujou-suuji {
  font-size: 80px;
  line-height: 1; /* 行高を広げない */
  vertical-align: baseline;
}

.koujou-par {
  font-size: 46px;
  line-height: 2;
  vertical-align: baseline;
}

.koujou-box-left p {
  margin-top: 75px;
}

/* 右側内容 */
.koujou-naiyou {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.koujou-naiyou-left img {
  width: 100px;
  height: auto;
}

.koujou-naiyou-right {
  margin-left: 20px;
}

.koujou-naiyou-right h4 {
  font-size: 33px;
}

.koujou-naiyou-right p {
  margin-top: 20px;
}

/* ===== 導入効果 ===== */
.dounyuu-box {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}

/* タイトル */
.dounyuu-box h3 {
  width: 100%;
  background: #fff;
  color: #00b5ad;
  font-size: 32px;
  text-align: center;
  padding: 10px 0;
	border-radius: 10px;
}

/* 効果3列 */
.dounyuu-box-kouka {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  color: #fff;
}

/* 各効果 */
.dounyuu-kouka {
  width: 30%;
  margin: 0 2.5%;
  text-align: center;
}

.dounyuu-kouka img {
  width: 280px;
  height: 150px;
  object-fit: cover;
}

.dounyuu-kouka h4 {
  font-size: 33px;
  margin-top: 36px;
}

.dounyuu-kouka p {
  margin-top: 18px;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 1024px) {
  .koujou-box {
    flex-direction: column;
  }

  .koujou-box-left,
  .koujou-box-right {
    width: 100%;
  }

  .koujou-box-right {
    margin-top: 40px;
  }

  .dounyuu-box-kouka {
    flex-direction: column;
  }

  .dounyuu-kouka {
    width: 100%;
    margin: 0 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .koujou-box-left h2 {
    font-size: 30px;
  }
	.koujou-box-left{
		padding-right: 0%;
	}
  .koujou-suuji {
    font-size: 50px;
  }

  .koujou-par {
    font-size: 30px;
  }

  .koujou-naiyou-right h4 {
    font-size: 22px;
  }

  .dounyuu-box h3 {
    font-size: 26px;
  }
	.koujou-naiyou-left img {
	  width: 40px;
	  height: auto;
	}
	.koujou-naiyou-right {
	  margin-left: 10px;
	}
	.koujou-naiyou-right p {
	  margin-top: 10px;
	}
	.dounyuu-kouka img {
	  width: 180px;
	  height: auto;
	  object-fit: cover;
	}
	.dounyuu-kouka h4 {
	  font-size: 28px;
	  margin-top: 20px;
	}
	.dounyuu-kouka p {
	  margin-top: 10px;
	}
}


/*ワンストップ対応
---------------------------------------------------------------------------*/
/* ===== 全体 ===== */
.wantai-box {
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 20px;
}

/* 見出し */
.wantai-box h2 {
  font-size: 46px;
	line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.wantai-box h2 span {
  color: #ff5d00;
}

/* ===== 3列ラップ ===== */
.wantai-wrap {
  max-width: 1440px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
}

/* 各内容 */
.wantai-naiyou {
  width: 31.5%;
}

/* 画像 */
.wantai-naiyou img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* タイトル */
.wantai-naiyou h3 {
  font-size: 33px;
  margin-top: 18px;
  text-align: left;
}

/* リスト */
.wantai-naiyou ul {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.wantai-naiyou li {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

/* ● の装飾 */
.wantai-naiyou li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #00b5ad;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 1024px) {
  .wantai-wrap {
    flex-wrap: wrap;
    gap: 40px;
  }

  .wantai-naiyou {
    width: 100%;
  }

  .wantai-naiyou img {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .wantai-box h2 {
    font-size: 30px;
	  text-align: left;
  }

  .wantai-naiyou h3 {
    font-size: 28px;
	  text-align: center;
  }

}
.wantai-saitan-box{
	font-size: 0.8em; 
	line-height: 1.6em;
	color: #999999;
	margin-top: 10px;
}

/*選ばれ、成果を上げています
---------------------------------------------------------------------------*/
/* ===== 全体 ===== */
.erabare-box {
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 20px;
}

/* 見出し */
.erabare-box h2 {
  font-size: 46px;
  font-weight: bold;
  text-align: center;
	line-height: 1.4;
	margin-bottom: 20px;
}

.erabare-box h2 span {
  color: #ff5d00;
}

/* ===== 3列ラップ ===== */
.erabare-customer-box {
  max-width: 1440px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
	gap: 24px; 
}

/* ===== カード共通 ===== */
.erabare-customer {
	flex: 1;
  width: 31.5%;
  background: #fff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

/* カード色分け */
.erabare-customer:nth-child(1) {
  --main-color: #ff9c00;
}
.erabare-customer:nth-child(2) {
  --main-color: #2e7aff;
}
.erabare-customer:nth-child(3) {
  --main-color: #00cc81;
}
.erabare-customer:nth-child(4) {
  --main-color: #8a5cff;
}

/* ===== タイトル部 ===== */
.erabare-customer-title {
  background: var(--main-color);
  color: #fff;
  padding: 10px 20px 20px;
  border-radius: 10px;
  text-align: left;
}

.erabare-customer-title p {
  margin-bottom: 10px;
}

.erabare-customer-title h4 {
  font-size: 36px;
}

/* ===== 本文 ===== */
.erabare-customer-txt {
  padding: 20px;
}

/* 見出し（課題・対応・成果） */
.erabare-customer-txt h5 {
  font-size: 20px;
  color: var(--main-color);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--main-color);
  margin-top: 20px;
}

.erabare-customer-txt h5:first-child {
  margin-top: 0;
}

/* 本文テキスト */
.erabare-customer-txt p {
  margin-top: 10px;
  line-height: 1.7;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 1200px) {
	.erabare-customer-box {
	  max-width: 1440px;
	  margin: 60px auto 0;
	  display: flex;
	  flex-wrap: wrap;
	  gap: 24px;
	}

	.erabare-customer {
	  flex: 0 0 calc(50% - 12px);
	  background: #fff;
	  border-radius: 10px 10px 0 0;
	  overflow: hidden;
	}
}

@media screen and (max-width: 768px) {
  .erabare-customer-box {
    flex-direction: column;
    gap: 40px;
  }

  .erabare-customer {
    width: 100%;
  }
  .erabare-box h2 {
    font-size: 30px;
	  text-align: left;
  }

  .erabare-customer-title h4 {
    font-size: 28px;
  }

  .erabare-customer-txt h5 {
    font-size: 18px;
  }
}

/*簡単4ステップ
---------------------------------------------------------------------------*/
/* ===== 全体 ===== */
.kantan-box {
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
}

/* 左右50% */
.kantan-box-left,
.kantan-box-right {
  width: 50%;
}

/* ===== 左側 ===== */
.kantan-box-left {
  padding-right: 5%;
}

.kantan-box-left h2 {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}

.kantan-box-left h2 span {
  color: #ff5d00;
}

.kantan-box-left p {
  margin-top: 50px;
}

/* ===== 右側 ===== */
.kantan-naiyou {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

/* 左画像カラムを固定 */
.kantan-naiyou-left {
  width: 80px;        /* ← ここで全体を統一 */
  flex-shrink: 0;      /* ← 絶対に縮まない */
}

/* 画像はカラム内で中央寄せ */
.kantan-naiyou-left img {
  width: 100px;
  margin: 0 auto;
}


/* テキスト */
.kantan-naiyou-right {
  margin-left: 20px;
}

.kantan-naiyou-right h4 {
  font-size: 33px;
  line-height: 1.3;
}

.kantan-naiyou-right p {
  margin-top: 20px;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 1024px) {
  .kantan-box {
    flex-direction: column;
  }

  .kantan-box-left,
  .kantan-box-right {
    width: 100%;
  }

  .kantan-box-left {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .kantan-naiyou {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
  }

  /* 一番上にも線を入れる */
  .kantan-naiyou:first-child {
    border-top: 1px solid #ddd;
  }
}

@media screen and (max-width: 768px) {
  .kantan-box-left h2 {
    font-size: 30px;
  }
	.kantan-naiyou-left {
	  width: 50px;        /* ← ここで全体を統一 */
	}
  .kantan-naiyou-right h4 {
    font-size: 21px;
  }
	.kantan-naiyou-left img {
	  width: 60px;
	  height: auto;
	}
	.kantan-naiyou-right {
	  margin-left: 18px;
	}
	.kantan-naiyou-right p {
	  margin-top: 10px;
	}
	.kantan-naiyou {
	  margin-bottom: 0px;
	}
}


/*よくある質問
---------------------------------------------------------------------------*/
/* ===== 全体 ===== */
.faq-box {
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-box h2 {
  font-size: 46px;
  font-weight: bold;
  text-align: center;
	line-height: 1.4;
}

/* ===== FAQリスト ===== */
.faq-kaihei {
  margin-top: 60px;
}

.faq-item {
  margin-bottom: 16px; /* ← QとQの間 */
}

/* ===== Q ===== */
.faq-item h5{
  background: #00a21b;
  color: #fff;
  font-size: 24px;
  padding: 10px 24px;
  border-radius: 10px;
  cursor: pointer;

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

/* 左側（Q＋文章） */
.faq-left{
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px; /* Qと文章の間隔 */
}

/* ＋アイコン */
.faq-toggle{
  font-size: 28px;
  line-height: 1;
}


/* ＋アイコン */
.faq-toggle {
  font-size: 28px;
  display: inline-block;
  transition: transform 0.4s ease;
}

/* 開いた状態：＋が回転して－に見える */
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ===== A ===== */
.faq-item p {
  background: #fff;
  color: #000;
  padding: 10px 24px;
  border-radius: 10px;

  margin-top: 0;
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

/* 開いた状態 */
.faq-item.active p {
  max-height: 500px;
  opacity: 1;
}

/* ===== 下の文章 ===== */
.faq-box > p {
  margin-top: 60px;
  font-size: 24px;
  text-align: center;
}
.q-icon{
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 32px;
  height: 32px;

  background: #fff;
  color: #00a21b;

  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;

  flex-shrink: 0;     /* ← これ重要（潰れ防止） */
  margin-right: 0px;
}



@media screen and (max-width: 768px) {
  .faq-box h2 {
    font-size: 30px;
  }

  .faq-item h5 {
    font-size: 18px;
	padding: 8px 8px;
  }

  .faq-box > p {
    font-size: 18px;
	  text-align: left;
  }
}

/*お問い合わせ
---------------------------------------------------------------------------*/
/* ===== 全体 ===== */
.contact-box {
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ===== 見出し ===== */
.contact-box h2 {
  font-size: 46px;
	line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

/* 最初のh2の下の文章 */
.contact-box > p {
  margin-top: 50px;
  font-size: 18px;
  text-align: center;
}

/* ===== 電話エリア ===== */
.contact-tel {
  margin-top: 26px;
	margin-bottom: 60px;
  background: #ff5d00;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
}

/* 電話リンク */
.contact-tel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* 画像と電話番号の間隔 */
  color: #fff;
  text-decoration: none;
  font-size: 48px;
  font-weight: bold;
}

/* 電話アイコン */
.contact-tel img {
  width: 48px;
  height: auto;
}

/* 営業時間 */
.contact-tel p {
  margin-top: 20px;
  text-align: center;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 768px) {
  .contact-box h2 {
    font-size: 30px;
  }
  .contact-tel a {
    font-size: 30px;
    gap: 12px;
  }
  .contact-tel img {
    width: 32px;
  }
}

/*お問い合わせ
---------------------------------------------------------------------------*/
.contact-form-box{
	width: 1000px;
	margin: 60px auto;
}
@media screen and (max-width: 768px) {
	.contact-form-box{
		width: 100%;
		margin: 30px auto;
	}
}