@charset "utf-8";

:root {
  --h-color: #3F3A39;
  --k-color: #3C53BF;
  --light-k: color-mix(in srgb, var(--k-color) 40%, transparent);
  --bg-color: #F5F9FF;
  --t-color:#3F3A39;
;
}


/*全体の設定

---------------------------------------------------------------------------*/

body {

	margin: 0px;padding: 0px;

	color: #666;

	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	font-size: 14px;

	line-height: 1.5;

	-webkit-text-size-adjust: none;

	background: #fff;

}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {

	margin: 0px;

	padding: 0px;

	font-size: 100%;

}

ul {

	list-style-type: none;

}

ol {

	padding-left: 40px;

	padding-bottom: 15px;

}

img {

	border: none;

	max-width: 100%;

	height: auto;

	vertical-align: middle;

}

table {

	border-collapse:collapse;

	border-spacing: 0;

}

iframe {

	width: 100%;

	border: none;

}



a {

	color: #666;

	-webkit-transition: 0.5s;

	transition: 0.5s;

}

a:hover {

	text-decoration: none;

	color: #D53A4F;

}



#container {

	position: relative;

}



/*ヘッダー

---------------------------------------------------------------------------*/

header {

	width: 100%;

	background: rgba(255, 255, 255, 0.8);

	display: flex;

	flex-direction: column;

	justify-content: center;

	align-items: center;

	position: absolute;

	top: 0;

	left: 0;

}



/*コンテンツ

---------------------------------------------------------------------------*/

.contents {

	clear: both;

	margin: 0 auto;

	overflow: hidden;

	box-sizing: border-box;

}

.contents h2 {

	clear: both;

	font-weight: normal;

	letter-spacing: 0.1em;

	margin: 30px 0px;

	font-size: 24px;

	text-align: center;

}

.contents h3 {

	clear: both;

	font-weight: 500;

	margin-bottom: 30px;

	font-size: 16px;

	line-height: 1.5;

	text-align: center;

	font-style: italic;

}

.contents h2 + p,

.contents h3 + p {

	margin-top: -5px;

}

  #sec02 p{
		padding: 0;
	}

.contents p {


	margin: 0px;

}

.contents section {

	width: 100%;

	max-width: 1080px;

	margin: 0 auto;

	padding: 60px 36px;

}

.contents .txt_set {

	padding: 15px 10px 0px;

	display: flex;

	flex-direction: row;

	justify-content: center;

	align-items: flex-start;

}

.contents .txt_set p {

	margin: 0px;

}

.contents .txt_set img {

	padding: 0px 0px 15px;

	width: 80px;

	height: 80px;

	box-sizing: content-box;

}

:is(#sec01, #sec02, #sec03, #sec04, #sec05) .hero_badge{
  display: table;
  width: auto;
  margin: 0 auto 16px;
  padding: 6px 12px;
}

#sec01{
	text-align: center;
}




/*フッター設定

---------------------------------------------------------------------------*/

footer {

	clear: both;

	background: var(--k-color);

	color: #fff;

	text-align: center;

	padding: 10px 0px;

}

footer a {

	color: #fff;

	text-decoration: none;

}

footer a:hover {

	color: #fff;

}



small {

	font-size: 12px;

}


/* Thanks */
.thanks{
  max-width: 720px;
  margin: 140px auto 80px;
  padding: clamp(24px, 4vw, 40px);
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  text-align:center;
}

.thanks h1{
  font-size: clamp(22px, 2.4vw, 28px);
  margin:0 0 12px;
}

.thanks p{
  margin:8px 0 0;
  line-height:1.7;
}

.thanks a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:16px;
  padding:10px 16px;
  background: var(--k-color, #3C53BF); /* 你的主色变量可用 */
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
}
.thanks a:hover{ opacity:.9; }


/* ナビゲーション

---------------------------------------------------------------------------*/

nav.g_navi {
  width: 100%;
  height: 55px;
  position: fixed;
  top: 0;
  left: 0;
  font-size: 15px;
  color: #666;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.g_navi.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}



nav.g_navi a {

	color: #333;

	background: rgba(255, 255, 255, 0.9);

}



.drawer {

	display: flex;

	flex-direction: row;

	align-items: center;

	justify-content: space-between;

	position: relative;

	height: 50px;

	padding: 0 16px;

}



.navbar_ttl {

	display: flex;

	align-items: center;

	height: 100%;

	padding: 30px;

}



.navbar_toggle {

	z-index: 9999;

}

.navbar_toggle_icon {

	position: relative;

	display: block;

	height: 2px;

	width: 30px;

	background: #808080;

	-webkit-transition: ease .5s;

	transition: ease .5s;

}

.navbar_toggle_icon:nth-child(1) {

	top: 0;

}

.navbar_toggle_icon:nth-child(2) {

	margin: 8px 0;

}

.navbar_toggle_icon:nth-child(3) {

	top: 0;

}

/*OPEN時の動き*/

.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {

	top: 10px;

	-webkit-transform: rotate(45deg);

	transform: rotate(45deg);

}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {

	-webkit-transform: translateY(-50%);

	transform: translateY(-50%);

	opacity: 0;

}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {

	top: -10px;

	-webkit-transform: rotate(-45deg);

	transform: rotate(-45deg);

}


/* ナビゲーション */
.menu{
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: ease .5s;
  transition: ease .5s;
  z-index:1000;
  border-top:1px solid #ccc;
}


.menu ul a{
  display:block;
  border-bottom:1px solid #ccc;
  text-decoration:none;
}


.menu ul li a{
  color:#5b6470;
  padding:10px 12px;
  transition: color .2s ease, transform .15s ease;
  position:relative;
}


.menu ul li:not(.cta) a::after{
  content:"";
  position:absolute; left:12px; right:12px; bottom:10px;
  height:2px; border-radius:2px;
  background: var(--k-color);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
  opacity:.9;
}
.menu ul li:not(.cta) a:hover{
  color:#0f172a;
  transform: translateY(-1px);
}
.menu ul li:not(.cta) a:hover::after{
  transform:scaleX(1);
}


.menu ul li.cta a{
  padding:10px 18px;
  background:  var(--k-color);
  border-radius:24px;
  color:#fff;
  box-shadow:0 2px 8px targba(0,0,0,.12);
  transition: transform .15s ease, opacity .2s ease, box-shadow .2s ease;
  border-bottom:none;
}
.menu ul li.cta a:hover{
  opacity:.9;
  transform: translateY(-1px);
}


.menu ul li:not(.cta) a:focus-visible{ outline:none; }
.menu ul li:not(.cta) a:focus-visible::after{ transform:scaleX(1); }

@media (prefers-reduced-motion: reduce){
  .menu ul li:not(.cta) a,
  .menu ul li:not(.cta) a::after{ transition:none; }
}

@media (max-width: 768px){
  .menu ul li.cta a{
    border-radius: 0px;
    padding: 12px 14px;
    line-height: 1;
    border-bottom: none;
  }
}

/*OPEN時の動き*/

.menu.open {

	-webkit-transform: translateX(0);

	transform: translateX(0);

	overflow-y: auto;

	-webkit-overflow-scrolling: touch;

}




/* head-image */

.main_img_area{
  width:100%;
  padding:100px 16px 40px;
  background:linear-gradient(180deg, var(--light-k) 0%, #fff 100%);
  display:flex;
  justify-content:center;
}

.hero_wrap{
  width:100%;
  max-width:1080px;
  padding:0 16px;
  box-sizing:border-box;

  display:flex;
  flex-direction:column;
  gap:24px;
}


.hero_text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:16px;
}


.hero_badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  color:var(--t-color);
  background:var(--light-k);
  box-shadow:0 4px 14px rgba(0,0,0,.09);
}

#sec06 .hero_badge{
	background:#fff
}

.hero_title{
  margin:0;
  font-weight:800;
  line-height:1.2;
  color:#222;
  font-size:48px;
}
.hero_title .brand{
background: linear-gradient(
  0deg,
  var(--k-color) 0%,
  var(--light-k) 100%
);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
}


.hero_desc{
  margin:0;
  color:#666;
  line-height:1.9;
  font-size:14px;
}

/* 右写真 */
.hero_visual{ display:flex; justify-content:center; }
.hero_img{
	width: 100%;
  max-width:900px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  display:block;
}


@media (min-width:576px){
  .hero_title{ font-size:34px; }
  .hero_desc{ font-size:15px; }
}


@media (min-width:768px){
   .hero_wrap{ flex-direction:row; align-items:center; gap:24px; }

  .hero_text{
    flex:0 0 calc(40% - 12px);
    max-width:calc(40% - 12px);
  }
  .hero_visual{
    flex:0 0 calc(60% - 12px);
    max-width:calc(60% - 12px);}

  .hero_title{ font-size:42px; }
    .hero_img{
    width:100%;
    max-width:none;
    border-radius:18px;
    object-fit:cover;
  }
}


@media (min-width:992px){
  .hero_title{ font-size:48px; }
  .hero_img{ max-width:900px; border-radius:20px; }
}

/* 1200px+：更宽的留白与字号 */
@media (min-width:1200px){
  .main_img_area{ padding:120px 0; }
  .hero_title{ font-size:54px; }
	.hero_img{ max-width:1000px; border-radius:20px; }
}

.drawer .navbar_ttl .logo{
  width:80%; height:auto; object-fit:contain; display:block;
}


.menu ul a[href="#sec04"]{
  padding:8px 18px;
  background:linear-gradient(90deg,var(--green),var(--blue));
  border-radius:24px;
  line-height:1; height:auto; margin-left:16px;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
  transition:transform .15s ease, opacity .2s ease;
}
.menu ul a[href="#sec04"]:hover{ opacity:.9; transform:translateY(-1px); }


@media screen and (max-width:768px) {
  .menu ul a[href="#sec04"] {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    margin:0;
    border-radius:0;
    box-shadow:none;
    padding:0 10px;
    height:50px;
    background:linear-gradient(90deg,var(--green),var(--blue));
    color:#fff;
  }

  .menu ul a[href="#sec04"]:hover {
    opacity:0.9;
    transform:none;
  }
}


/* 事業内容*/
#sec02 .service_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}


#sec02 .service_card {
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  padding:18px 18px 20px;
  transition:box-shadow .2s ease;
}

#sec02 .service_card:hover {
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}


#sec02 .service_icon_wrapper {
  overflow:hidden;
  border-radius:8px;
  margin-bottom:12px;
}


#sec02 .service_icon {
  display:block;
  width:100%;
  height:auto;
  transition:transform .4s ease;
  transform-origin:center;
}


#sec02 .service_card:hover .service_icon {
  transform:scale(1.1);
}


#sec02 h4 {
  margin: 8px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color:var(--t-color);
	font-weight: 600;
}


#sec02 p {
  margin: 0;
  color: #666;
  line-height: 1.9;
  font-size: 14px;
}


@media (min-width:576px) {
  #sec02 .service_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}


@media (min-width:992px) {

  #sec02 .service_card { padding: 20px 20px 22px; }
  #sec02 h4 { font-size: 24px; }
  #sec02 p { font-size: 15px; }
}



#sec05 img{
	border-radius:16px;
	width: 100%;
}

#sec05 .product-box{
  display: grid;

}

@media (min-width:768px){
  #sec05 .product-box{
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}


@media (min-width:1200px){
  #sec05 .product-box{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/*choose me*/
#sec06 {
  text-align: center;
}

#sec06 h2{
	color:#fff;
}

#sec06 .reason_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

#sec06 .reason_card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
  transition: box-shadow .2s ease, transform .2s ease;
}
#sec06 .reason_card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

#sec06 .reason_icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}


#sec06 h4 {
  font-size: 18px;
  margin: 8px 0;
}


#sec06 p {
  font-size: 14px;
  margin: 0;
}


@media (min-width:576px) {
  #sec06 .reason_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


@media (min-width:992px) {
  #sec06 .reason_grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #sec06 h2 { font-size: 28px; }
  #sec06 p { font-size: 15px; }
}


/*会社概要*/
#sec03 { padding: 60px 16px; text-align: center; }
center
#sec03 .company_card.vertical{
  max-width:900px; margin:0 auto; text-align:center;
  background:#fff; border-radius:14px; padding:14px;
  box-shadow:0 12px 28px rgba(0,0,0,.10);
}

#sec03 .kvlist{ margin:0; padding:0; }
#sec03 .kvlist .row{
  display:block;
  padding:14px 12px;
  border-radius:10px;
  background:var(--bg-color);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
#sec03 .kvlist .row + .row{ margin-top:10px; }

#sec03 .kvlist dt{
  margin:0 0 6px; font-weight:700; color:var(--t-color); font-size:13px;
}
#sec03 .kvlist dd{
  margin:0; color:#222; font-size:14px; line-height:1.9;
}

/* マップ */
#sec03 .map_wrap{ max-width:1000px; margin:22px auto 0; }
#sec03 .map_wrap iframe{
  width:100%; height:360px; border:0; display:block;
  border-radius:14px; box-shadow:0 12px 28px rgba(0,0,0,.10);
}


@media (min-width:768px){
  #sec03 .company_card.vertical{ padding:18px; }
  #sec03 .kvlist .row{ padding:16px 14px; }
  #sec03 .kvlist dt{ font-size:20px; }
  #sec03 .kvlist dd{ font-size:15px; }
  #sec03 .map_wrap iframe{ height:420px; }
}
@media (min-width:1200px){
  #sec03 h2{ font-size:28px; }
}

.item_box {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  text-align: left;

}
/*お問い合わせ*/


form.toiawase div {

	display: flex;

	flex-direction: column;

	justify-content: center;

	align-items: flex-start;

	background: #fff;

	padding: 15px 15px 10px;

	margin: 0px 0px 4px;

}





form.toiawase {

	width: 100%;

	max-width: 600px;

}

form.toiawase label {

	display: block;

	min-width: 9em;

	width: 9em;

	margin: 0px 0px 5px;

	white-space: nowrap;

	margin-right: 1em;

}

form.toiawase input,

form.toiawase textarea {

	display: block;

	width: 100%;

	border: 1px solid #ddd;

	margin: 0px 0px 5px;

}



form.toiawase input[type=submit] {

	border: none;

	outline: none;

	display: block;

	line-height: 35px;

	width: 160px;

	text-align: center;

	color: #fff;

	background: var(--k-color);

	border-radius: 4px;

	cursor:pointer;

	box-sizing: content-box;

	transition:0.1s ease all;

	margin: 0px 0px 5px;

}

form.toiawase input[type=submit]:hover{

	opacity:0.6;

}







/* ボタン（共通）

---------------------------------------------------------------------------*/

.btn {

	padding: 5px 10px;

	font-size: 14px;

	letter-spacing: normal;

}



.contents:nth-of-type(even) {

	background:var(--bg-color);

}

.contents:nth-of-type(odd) {

	background: #fff;

}

.contents .hero_badge{
	text-align: center;
	align-items: center;
}

.contents.midori{
	  background: var(--k-color);
		color: #fff;
}


/* PAGE TOP設定

---------------------------------------------------------------------------*/

#page-top {

	box-sizing: border-box;

	width: 50px;

	height: 50px;

	position: fixed;

	bottom: 15px;

	right: 15px;

	z-index: 1000;

}

#page-top a {

	text-decoration: none;

	text-align: center;

	display: block;

	color: #fff;

	width: 100%;

	height: 100%;

	border-radius: 6px;

	background: rgba(128, 128, 128, 0.7);

	position: relative;

}

#page-top a:hover {

	background: #ccc;

	color: #fff;

}



#page-top a::before {

	display: block;

    left: 24px;

	top: 15px;

    width: 3px;

    height: 19px;

    background: #fff;

	content: "";

	position: absolute;

}

#page-top a::after {

	display: block;

    left: 17px;

	top: 15px;

    width: 17px;

    height: 17px;

    border-top: 3px solid #fff;

    border-right: 3px solid #fff;

    -webkit-transform: rotate(315deg);

    transform: rotate(315deg);

	content: "";

	position: absolute;

}





/*フッターメニュー

---------------------------------------------------------------------------*/

/*ボックス全体*/

#footer_menu {

	display: none;

}


.sp_dn {

	display: none;

}





iframe.frame {

  overflow:hidden;

  overflow-x:hidden;

  overflow-y:hidden;

  height:100%;

  width:100%;

  position:relative;

  top:0px;

  left:0px;

  right:0px;

  bottom:0px;

}




/* 画面幅576px以上の設定

------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (min-width:576px){



	body {

		font-size: 15px;

		line-height: 2.0;

	}

	header {

		text-align: left;

	}

  #sec02 p{
		padding: 0;
	}



	.contents h2 {

		clear: both;

		font-weight: 800;

		letter-spacing: 0.1em;

		font-size: 32px;

		color: var(--t-color);

	}

	.contents h3 {

		font-size: 18px;
		font-weight: 600;

	}


	nav.g_navi {

		display: flex;

		flex-direction: row;

		justify-content: center;

		align-items: center;

		box-sizing: border-box;

	}

	nav.g_navi a {

		background: none;

	}

	.g_navi_inner {

		width: 100%;

		max-width: 1200px;

		display: flex;

		justify-content: space-between;

		align-items: center;

	}

	.drawer .navbar_toggle {

		display: none;

	}

	.drawer .navbar_ttl {

		display: flex;

		width: auto;

		height: 100%;

		align-items: center;

	}


	.menu {

		width: auto;

		max-width: 1200px;

		-webkit-transform: translateX(0);

		transform: translateX(0);

		border-top: none;

		box-sizing: border-box;

		overflow: hidden;

	}

	.menu ul {

		width: 100%;

		max-width: 1200px;

		height: 50px;

		display: flex;

		flex-wrap: wrap;

		justify-content: flex-start;

		align-items: flex-start;

		align-items: center;

		box-sizing: border-box;

	}

	.menu ul a {

		width : auto;

		height: 100%;

		box-sizing: border-box;

		border-bottom: none;

		line-height: 1.2;

		display: flex;

		justify-content: center;

		align-items: center;

	}

	.menu ul li {

		display: flex;

		justify-content: center;

		align-items: center;

		padding: 0 10px;

		box-sizing: border-box;

		text-align: center;

		height: 100%;

	}


	.main_img_area .txt_area p {

		font-size: 24px;

	}

	table.company {

		max-width: 700px;

	}


	form.toiawase div {

		display: flex;

		flex-direction: row;

		justify-content: center;

		align-items: center;

	}


}







/* 画面幅768px以上の設定

------------------------------------------------------------------------------------------------------------------------------------------------------*/

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

	header {

		height: px;	/*ブロックの高さ*/

	}

	nav.g_navi {

	    height: 65px;

	}

	.menu ul {

		height: 60px;

	}

	.contents p {

		font-size: 100%;

	}

	#footer_menu {

		max-width: 1200px;

		margin: 0px auto;

		display: flex;

		justify-content: space-between;

		align-items: flex-start;

		padding: 10px 10px;

		box-sizing: border-box;

	}

	#footer_menu ul {

		padding: 0px 10px;

	}

	#footer_menu ul li a:hover {

		text-decoration: underline;

	}

	small {

		font-size: 14px;

	}


	.sp_dn {

		display: block;

	}


	.drawer .navbar_ttl {

		font-size: 24px;

	}


	.contents section {

		padding: 60px 36px;

	}


	.main_img_area {


		padding: 120px 0px 60px;

	}

	.main_img_area .txt_area {

		width: 100%;

		padding-top: 0px;

	}

	.main_img_area .txt_area p {

		font-size: 24px;

		padding-left: 30px;

		text-align: left;

	}



	p.catch_copy {

		color: #F0F0F0;

		text-shadow: #0F0F0F 2px 2px 2px;

		background: none;

	}

	.contents .txt_set {

		padding: 15px 0px 0px;

		display: flex;

		flex-direction: column;

		justify-content: center;

		align-items: center;

	}

	.contents .txt_set img {

		padding: 0px 0px 15px;

		width: 120px;

		height: 120px;

		box-sizing: content-box;

	}


.contents .txt_set05{
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
	border-radius: 16px;
}

.product-item{
  padding: 10px;
}


.product-item .txt_set05 img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 15px;
  box-sizing: border-box;
  transition: transform .4s ease;
  transform-origin: center;
}


.product-item:hover .txt_set05 img{
  transform: scale(1.1);
}
}









/* 画面幅992px以上の設定

------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (min-width:992px){

	header {

		height: px;

		text-align: center;

	}

	/* PAGE TOP設定

	---------------------------------------------------------------------------*/

	#page-top {

		margin: 0 3%;

	}


	.main_img_area .txt_area p {

		font-size: 14px;

		padding-left: 0px;

	}


}





/* 画面幅1200px以上の設定

------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (min-width:1200px){



	.contents section {

		padding: 70px 0px;

	}

}







/* Bootstrap上書き */

.row {

	margin-right: 0px;

	margin-left: 0px;

}




/* 2021.06.18追加

------------------------------------------------------------------------------------------------------------------------------------------------------*/





