@charset "UTF-8";
/*----------------------------------------------------
	style.css
	リセット・基本・共通スタイル
----------------------------------------------------*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,::before,::after{box-sizing:border-box;border-style:solid;border-width:0;min-width:0}html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}body{margin:0}main{display:block}p,table,blockquote,address,pre,iframe,form,figure,dl{margin:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}ul,ol{margin:0;padding:0;list-style:none}dt{font-weight:700}dd{margin-left:0}hr{box-sizing:content-box;height:0;overflow:visible;border-top-width:1px;margin:0;clear:both;color:inherit}pre{font-family:monospace,monospace;font-size:inherit}address{font-style:inherit}a{background-color:transparent;text-decoration:none;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:inherit}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg,img,embed,object,iframe{vertical-align:bottom}button,input,optgroup,select,textarea{-webkit-appearance:none;appearance:none;vertical-align:middle;color:inherit;font:inherit;background:transparent;padding:0;margin:0;border-radius:0;text-align:inherit;text-transform:inherit}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}button:disabled,[type="button"]:disabled,[type="reset"]:disabled,[type="submit"]:disabled{cursor:default}:-moz-focusring{outline:auto}select:disabled{opacity:inherit}option{padding:0}fieldset{margin:0;padding:0;min-width:0}legend{padding:0}progress{vertical-align:baseline}textarea{overflow:auto}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type="number"]{-moz-appearance:textfield}label[for]{cursor:pointer}details{display:block}summary{display:list-item}[contenteditable]:focus{outline:auto}table{border-color:inherit;border-collapse:collapse}caption{text-align:left}td,th{vertical-align:top;padding:0}th{text-align:left;font-weight:700}

/*----------------------------------------------------
	基本設定
----------------------------------------------------*/
html { font-size: 62.5%; /* 10(base font size) / 16(Browser Default font size) = 0.625em * 100 = 62.5% */ }
body {
	color: #191919;
	font-size: 1.0rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
a:link { color: #004898; }
img {
	width: 100%;
	height: auto;
}

/* テキスト選択時の色 */
::selection { background: #b8f0ff;  }
::-moz-selection { background: #b8f0ff; }

/* 共通パーツ */
.st_title01 {
	margin: 0 0 40px 0;
	font-size: clamp(18px, 3.733vw, 28px);
	color: #236841;
	text-align: center;
}


/*----------------------------------------------------
	Mobile
----------------------------------------------------*/
.pc { display: none; }
.sp { display: inline-block; }

/* -------------------- header -------------------- */
#gloval_header {
	width: 100%;
	padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 1000;
}
#gloval_header h1 { width: 200px; }
#gloval_header .bt_gnav {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
#gloval_header .bt_gnav span {
	width: 100%;
	height: 3px;
	background: #236841;
  border-radius: 2px;
	display: block;
	transition: transform .35s ease, opacity .25s ease;
  transform-origin: center;
}
#gloval_header .bt_gnav.open span { background: #fff; }
#gloval_header .bt_gnav.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
#gloval_header .bt_gnav.open span:nth-child(2) { opacity: 0; }
#gloval_header .bt_gnav.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
#gloval_header .overlay {
	width: 100%;
  height: 100vh;
  background: rgba(35, 104, 65, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 900;
	position: fixed;
  top: 0;
  left: 0;
}
#gloval_header .overlay.active {
  opacity: 1;
  pointer-events: auto;
}
#gloval_header .gnav {
	width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  z-index: 1000;
	position: fixed;
  top: 0;
  right: 0;
}
#gloval_header .gnav.open {
  opacity: 1;
  pointer-events: auto;
}
#gloval_header .gnav ul {
	width: 100%;
  height: 100vh;
  text-align: center;
	display: flex;
  justify-content: center;
  align-items: center;
	flex-flow: column;
}
#gloval_header .gnav ul li {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#gloval_header .gnav.open ul li[data-index="1"] { transition-delay: 0.1s; }
#gloval_header .gnav.open ul li[data-index="2"] { transition-delay: 0.2s; }
#gloval_header .gnav.open ul li[data-index="3"] { transition-delay: 0.3s; }
#gloval_header .gnav.open ul li {
  opacity: 1;
  transform: translateY(0);
}
#gloval_header .gnav.open ul li a {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

/* -------------------- contents -------------------- */
.contents_wrap {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ----- メインイメージ・バナーエリア ----- */
.contents_left {
	padding: 120px 0 0 0;
}
/* スライド */
.slide {
	width: 100%;
	margin: 0 0 30px 0;
	position: relative;
}
.slide::after {
	content: "";
	width: 100%;
	height: 200px;
	margin: auto;
	background: #57b66c;
	position: absolute;
	top: 0;
  right: 0;
  bottom: 0;
  left: 0;
	z-index: 10;
}
.slide ul {
	width: 500px;
	height: 500px;
	margin: 0 auto;
	border-radius: 20px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
	z-index: 100;
}
.slide ul img {
	width: 100% !important;
	height: 100% !important;
	aspect-ratio: 1 / 1;
}

/* ----- キャッチ ----- */
.catch_wrap { padding: 0 0 60px 0; }
.catch_wrap h1 {
	margin: 0 0 40px 0;
	font-size: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
	color: #236841;
	text-align: center;
	white-space: nowrap;
}
.catch_wrap h1 span { font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem); }
.catch_wrap .txt_catch {
	padding: 0 30px;
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	line-height: 1.8;
}

/* ----- 会社概要 ----- */
.business_wrap { padding: 0 30px 60px 30px; }

/* バナーエリア */
.bnarea ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.bnarea li {
	width: calc((100% - 20px) / 2);
	margin: 0 0 10px 0;
}
.bnarea li img { border: 1px solid #57b66c; }

/* 表 */
.business_wrap dl dt {
	padding: 10px 0 5px 0;
	font-size: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
}
.business_wrap dl dd {
	padding: 0 0 10px 0;
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	border-bottom: 2px solid #2b2b2b;
	position: relative;
}
.business_wrap dl dd::before {
	content: "";
	width: 50%;
	border-bottom: 2px solid #57b66c;
	position: absolute;
	left: 0;
	bottom: -2px;
}

/* ----- 事業紹介 ----- */
.list_business {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
  justify-content: space-between;
}
.list_business li {
	width: calc((100% - 60px) / 2);
	margin: 0 0 30px 0;
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	text-align: right;
}
.list_business li img {
	margin: 0 0 5px 0;
	display: inline-block;
}

/* ----- お問い合わせ ----- */
.contact_wrap {
	width: 100%;
	height: auto;
	padding: 0 30px 60px 30px;
	background: #fff;
}
.contact_wrap .privacy_area .frame_area {
	width: 80%;
	height: 160px;
	margin: 0 auto 20px auto;
	padding: 20px;
	border: 1px solid #236841;
	border-radius: 20px;
	overflow-y: scroll;
}
.contact_wrap .privacy_area .frame_area h3 {
	margin: 0 0 10px 0;
	font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
	color: #236841;
}
.contact_wrap .privacy_area .frame_area p {
	padding: 0 0 10px 0;
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
.contact_wrap .privacy_area .frame_area ul {
	padding: 0 0 0 1em;
	list-style-type: decimal;
}
.contact_wrap .privacy_area .frame_area ul li ul {
	padding: 10px 0 10px 1em;
}
.contact_wrap .privacy_area .frame_area dl dt {
	padding: 20px 0 10px 0;
	font-size: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
	font-weight: normal;
	color: #236841;
}
.contact_wrap .privacy_area .frame_area dl dd {
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}

/* フォーム */
.contact_wrap .form_area { padding: 0 30px; }
.contact_wrap .form_area .txt {
	margin: 0 0 20px 0;
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
.contact_wrap .form_area .txt span { color: #f15a24; }
.contact_wrap .form_area dl { margin: 0 0 20px 0; }
.contact_wrap .form_area dl dt {
	padding: 10px 0 5px 0;
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	color: #236841;
}
.contact_wrap .form_area dl dt i { color: #f15a24; }
.contact_wrap .form_area dl dd {
	padding: 0 0 5px 0;
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	border-bottom: 2px solid #2b2b2b;
	position: relative;
}
.contact_wrap .form_area dl dd::before {
	content: "";
	width: 50%;
	border-bottom: 2px solid #57b66c;
	position: absolute;
	left: 0;
	bottom: -2px;
}
.contact_wrap .form_area dl dd { display: flex; }
.contact_wrap .form_area dl dd input {
	padding: 5px;
	background: #d0f0fc;
}
.contact_wrap .form_area dl dd input[type="text"],
.contact_wrap .form_area dl dd input[type="email"] { width: 100%; }
.contact_wrap .form_area dl dd textarea {
	width: 100%;
	height: 150px;
	padding: 2px 5px;
	background: #d0f0fc;
}
.contact_wrap .form_area #form_submit { text-align: center; }
.contact_wrap .form_area #form_submit input[type="button"] {
	width: 30%;
	margin: 0 auto;
	padding: 12px 0;
  background: #236841;
	font-size: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
	color: #fff;
  border: 1px solid #236841;
	border-radius: 5px;
  transition: .5s;
  display: inline-block;
  cursor: pointer;
}
.contact_wrap .form_area #form_submit input[type="button"]:hover { background: #57b66c; }

/* サンクスページ */
.thanks_wrap {
	width: 100%;
	height: calc(100vh - 90px);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.thanks_wrap p {
	width: 50%;
	margin: auto;
	font-size: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
	line-height: 1.8;
	text-align: center;
}

/* -------------------- footer -------------------- */
#gloval_footer {
	width: 100%;
	padding: 40px 0;
	background: #236841;
	color: #fff;
}
#gloval_footer .copy {
	font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
	text-align: center;
}



/*----------------------------------------------------
	最小値対策
----------------------------------------------------*/
@media (min-width: 320px) and (max-width: 499px) {
  .slide ul {
		width: 300px;
		height: 300px;
	}
}


/*----------------------------------------------------
	Tablet〜PC
----------------------------------------------------*/
@media screen and (min-width: 768px) {
	body {
    overflow: hidden; /* bodyはスクロールさせない */
  }
	.pc { display: inline-block; }
	.sp { display: none; }

	/* スクロールダウンアイコン */
	.scroll_down a {
		background-size: 14px auto;
		color: #236841;
		position: absolute;
		bottom: 60px;
		left: 50%;
		display: block;
		z-index: 2;
		text-decoration: none; 
		transform: translate(-50%, -50%);
	}
	.scroll_down a:before {
		position: absolute;
		width: 32px;
		height: 32px;
		background: #fff;
		content: "";
		border-radius: 50%;
		top: calc(50% + 16px);
		left: calc(50% - 19px);
	}
	.scroll_down a:after {
		width: 12px;
		height: 12px;
		position: absolute;
		top: calc(50% + 24px);
		left: calc(50% - 8px);
		transform: rotate(-45deg);
		display: block;
		content: "";
		border: 1px solid #236841;
		border-width: 0px 0 2px 2px;
		animation: bounce 2s linear infinite;
	}
	@keyframes bounce {
		0%,
		100%,
		20%,
		50%,
		70%,
		80% {
			-webkit-transform: translateY(0)rotate(-45deg);
			-ms-transform: translateY(0)rotate(-45deg);
			transform: translateY(0)rotate(-45deg);
		}
		40% {
			-webkit-transform: translateY(-8px)rotate(-45deg);
			-ms-transform: translateY(-8px)rotate(-45deg);
			transform: translateY(-8px)rotate(-45deg);
		}
		60% {
			-webkit-transform: translateY(-4px)rotate(-45deg);
			-ms-transform: translateY(-4px)rotate(-45deg);
			transform: translateY(-4px)rotate(-45deg);
		}
	}
	

	/* -------------------- header -------------------- */
	#gloval_header .bt_gnav,
  #gloval_header .overlay { display: none; }
	#gloval_header {
		justify-content: center;
		position: fixed;
	}
	#gloval_header h1 {
		width: 100px;
    position: absolute;
		top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  #gloval_header .gnav {
		width: auto;
		height: 80px;
		margin-left: auto;
		display: flex;
		justify-content: space-between;
		position: relative;
		z-index: 1100;
    opacity: 1;
    pointer-events: auto;
  }
	#gloval_header .gnav	ul {
		height: auto;
    display: flex;
		flex-direction: row;
		align-items: flex-start;
  }
  #gloval_header .gnav ul li {
		margin: 0 0 0 20px;
    opacity: 1;
    transform: none;
    transition: none;
  }
  #gloval_header .gnav ul li a {
    padding: 0;
    color: #236841;
    font-size: 1.8rem;
  }

	/* -------------------- contents -------------------- */
	html, body {
    height: 100%;
		min-height: auto;
    overflow: hidden;
  }

	/* コンテンツの表示 */
  .contents_wrap {
		width: 100%;
		display: flex;
		flex-direction: row;
		gap: 0;
	}

  /* 左カラム：固定 */
	.contents_wrap .left_layer {
		width: 50%;
		background: #57b66c;
    flex-shrink: 0;
	}
  .contents_wrap .contents_left {
		width: 100%;
    height: 100vh;
		position: sticky;
    top: 0;
		z-index: 2;
  }

  /* 右カラム：スクロール */
  .contents_wrap .contents_right {
		width: 50%;
    height: 100vh;
		background: #d0f0fc;
    overflow-y: auto;z-index: 2;
  }

	/* contact_wrapの表示制御 */
	.contact_wrap { display: none; }

  /* スクロール中・終了後の表示制御 */
	body.is-contact .contents_wrap .contents_left { width: 50%; }
	body.is-contact .contents_wrap .contents_left { position: absolute; }
  body.is-contact .contact_wrap {
		height: 100vh;
		background: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		z-index: 3;
  }
  body.is-contact { overflow: auto; }

	/* ----- メインイメージ ----- */
	.slide::after {
		content: "";
		width: auto;
		height: inherit;
		margin: inherit;
		background: transparent;
		position: inherit;
		top: inherit;
		right: inherit;
		bottom: inherit;
		left: inherit;
		z-index: inherit;
		pointer-events: none;
	}
	.slide ul {
    width: 40vw;
		height: auto;
		margin: auto;
  	aspect-ratio: 1 / 1;
  }

	/* ----- キャッチ ----- */
	.catch_wrap {
		min-height: 100%;
		padding: 0 60px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-flow: column;
	}
	.catch_wrap h1 { font-size: 2.0rem; }
	.catch_wrap h1 span { font-size: 3.0rem; }
	.catch_wrap p {
		padding: 0 30px;
		line-height: 1.8;
	}

	/* ----- 会社概要 ----- */
	.business_wrap {
		width: 100%;
		min-height: 100vh;
		padding: 0 60px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.business_wrap dl {
		width: 100%;
		display: flex;
  	flex-wrap: wrap;
	}
	.business_wrap dl dt {
		width: 20%;
		padding: 10px 0;
		border-bottom: 2px solid #2b2b2b;
		position: relative;
	}
	.business_wrap dl dt::before {
		content: "";
		width: 80%;
		border-bottom: 2px solid #57b66c;
		position: absolute;
		left: 0;
		bottom: -2px;
	}
	.business_wrap dl dd {
		width: 80%;
		padding: 10px 0;
		border-bottom: 2px solid #2b2b2b;
		position: relative;
	}
	.business_wrap dl dd::before {
		content: "";
		width: inherit;
		border-bottom: none;
		position: inherit;
		left: inherit;
		bottom: inherit;
	}

	/* ----- 事業紹介 ----- */
	/* バナーエリア */
	.bnarea {
		width: 100%;
		padding: 0 30px;
	}
	.bnarea ul {
		width: 100%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.bnarea li {
		width: calc((100% - 20px) / 3);
		margin: 0 0 10px 0;
	}
	.bnarea li:nth-child(3n - 1) { margin: 0 10px 10px 10px; }

	/* 表 */
	.list_business {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.list_business li {
		width: calc((100% - 60px) / 3);
		font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
	}

	/* ----- お問い合わせ ----- */
	.contact_wrap .contact_layer {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.contact_wrap .inner {
		padding: 50px 0 0 0;
		display: grid;
    grid-template-columns: 50% 50%;
	}
	.contact_wrap .privacy_area {
		height: auto;
		min-height: 0;
	}
	.contact_wrap .privacy_area .frame_area {
		height: 400px;
	}

	/* フォーム */
	.contact_wrap .form_area {
		height: auto;
		min-height: 0;
		padding: 0 40px 0 80px;
	}
	.contact_wrap .form_area dl {
		display: flex;
		flex-wrap: wrap;
	}
	.contact_wrap .form_area dl dt {
		width: 10em;
		border-bottom: 2px solid #57b66c;
	}
	.contact_wrap .form_area dl dd {
		width: calc(100% - 10em);
		padding: 10px 0 5px 0;
		font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
		border-bottom: 2px solid #2b2b2b;
		position: relative;
	}
	.contact_wrap .form_area dl dd::before {
		content: "";
		width: 0;
		border-bottom: none;
		position: inherit;
		left: inherit;
		bottom: inherit;
	}

	/* -------------------- footer -------------------- */
	#gloval_footer {
		display: block;
		position: relative;
		z-index: 5;
	}
}

