html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.68;
  color: #333333;
  background-color: #fff;
  margin: 0 auto;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

ul {
	list-style: none;
}

.pc-only {
	display: block;
}
.sp-only {
	display: none;
}
@media screen and (max-width: 600px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
}

/* PC */
/* 全体レイアウト */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}



.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 5%;
}

.logo img {
  height: 60px;
}

.gnav-pc ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.c-blue a {
	color: #115FAD;
	font-weight: bold;
}
.c-white a {
	font-weight: bold;
}

/* モバイルメニュー */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0; 
	right: 0;
  width: 100%; 
	height: 100vh;
	background: rgb(43 167 139);
  z-index: 999;
  margin-top: 60px;
  text-align: center;
  animation: fadeIn 0.4s ease;
	overflow-y: auto;
}

.menu-overlay.active {
  display: block;
}

.menu-overlay a {
	color: #fff;
}

.gnav-sp ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
	margin-top: 40px;
}

.gnav-sp li a {
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
}
.gnav-sp li a::after {
	content: "";
  display: inline-block;
  background-image: url(../images/icon/arrow.webp);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 20px;
  height: 14px;
	margin-left: 10px;
}
.c-blue {
	color: #115FAD;
}
.c-white {
	color: #fff;
}

/* アニメーション */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* レスポンシブ切替 */
@media (max-width: 1024px) {
	.header-inner {
		height: 60px;
	}
	.logo img {
		height: 45px;
	}
  .gnav-pc {
    display: none;
  }
  .hamburger {
    display: flex;
  }
	/* ハンバーガー */
	.hamburger {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  gap: 6px;
	  width: 35px;
	  height: 30px;
	  background: none;
	  border: none;
	  cursor: pointer;
	  padding: 0;
	}

	.hamburger span {
	  display: block;
	  width: 35px;
	  height: 3px;
	  background-color: #2AA78B; 
	  border-radius: 2px;
	  transition: all 0.3s ease;
	}

	.hamburger.open span:nth-child(1) {
	  transform: translateY(9px) rotate(45deg);
	  background-color: #2AA78B;
	}

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

	.hamburger.open span:nth-child(3) {
	  transform: translateY(-9px) rotate(-45deg);
	  background-color: #2AA78B;
	}
}

.gnav-pc .c-blue:hover {
	opacity: 0.5;
	transition: .2s;
}
.contact-btn {
  background: #F3730D;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
	align-items: center;
}
.contact-btn:hover {
	opacity: 0.5;
	transition: .2s
}
.contact-btn img {
	margin-right: 10px;
	margin-bottom: 4px;
}

.main-visual {
	width: 100%;
	position: relative;
}
@media (min-width: 1024px) {
	.display_pc {
		display: initial;
	}
}
.video {
	width: 100%;
	vertical-align: top;
	height: auto;
}
.video video {
	width: 101%;
	height: 100%;
	object-fit: cover;
	object-position: left center; /* ←左からクロップされるように指定 */
}

.main-copy {
	font-size: 46px;
	position: absolute;
	bottom: 15%;
	left: 4%;
}
.main-copy h2 {
	display: inline-block;
	background-color: #2AA78B;
	color: #fff;
	margin-bottom: 10px;
	padding-left: 20px;
}

.company {
	margin-top: 120px;
	max-width: 100%;
	background-color: #fff;
}
.contents-area {
	max-width: 1200px;
	margin: 0 auto 60px;
	padding: 0 15px;
}
.company-ul {
	display: flex;
	gap: 70px;
	align-items: flex-start;
}
.about-img {
	width: 40%;
}
.about-img img {
	width: 100%;
	height: auto;
}
.about-txt {
	width: 60%;
}
.about-txt img {
	width: 100%;
	height: auto;
}
.company-ul h3 {
	margin-bottom: 15px;
}
.green-btn {
	margin-top: 30px;
	width: 360px;
	background-color: #2AA78B;
	border-radius: 999px;
	text-align: center;
}
.green-btn:hover {
	transition: .2s;
	opacity: 0.5;
}
.green-btn a {
	display: block;
	text-decoration: none;
	padding: 15px 10px;
	color: #fff;
	position: relative;
}
.green-btn a::after {
	content: "";
	display: inline-block;
	background-image: url(../images/icon/arrow.webp);
	background-repeat: no-repeat;
	background-size: 16px auto;
	background-position: 0 0;
	position: absolute;
	width: 20px;
	height: 14px;
	top: 41%;
	right: 22px;
}

.catchcopy {
	margin-top: 120px;
	width: 100%;
	position: relative;
}
.catchcopy img {
	width: 100%;
}
.catchcopy h3 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 36px;
	display: inline-block;
	margin-bottom: 10px;
	padding-left: 20px;
	background-color: #fff;
	color: #2AA78B;
	padding: 10px 14px;
	box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
	white-space: nowrap;
	letter-spacing: 0;
}

.business {
	margin-top: 120px;
	max-width: 100%;
	background-color: #fff;
}
.contents-business-area {
	max-width: 1200px;
	margin: auto;
	padding: 0 15px;
}
.business-ul {
	display: flex;
	gap: 70px;
}
.business-ul h3 {
	margin-bottom: 15px;
}

.biz-area {
	margin-top: 80px;
	display: flex;
	gap: 10px;
}
.biz-area li:hover {
	opacity: 0.5;
	transition: .2s;
}
.biz-area img {
	width: 100%;
	height: auto;
}
.biz-area li {
	position: relative;
	height: auto;
	text-align: center;
}
.biz-area li img {
	filter: drop-shadow(4px 4px 4px #C2C2C2);
}
.biz-area li p {
	background-color: #fff;
	color: #2AA78B;
	border-radius: 999px;
	padding: 5px 35px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	white-space: nowrap;
	text-align: center;
}
.biz-area li p::after {
	content: "";
	display: inline-block;
	background-image: url(../images/icon/arrow-v2.webp);
	background-repeat: no-repeat;
	background-position: 0 0;
	position: absolute;
	width: 8px;
	height: 15px;
	top: 35%;
	right: 15px;
}
.main-biz {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	width: 50%;
}
.sub-biz {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	width: 50%;
}
.sub-biz li {
	width: 49%;
	background-color: #fff;
}
.sub-biz img {
	width: 100%;
}

.lineup {
	margin-top: 120px;
	width: 100%;
	background-image: url(../images/line-bg.webp);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
}
.line-area {
	text-align: center;
	padding: 60px 0;
}
.item {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 25px;
}
.item li {
	text-align: center;
	background-color: #F2F2F2;
	filter: drop-shadow(4px 4px 4px #C2C2C2);
	width: 23%;
}
.item li img {
	width: 100%;
	height: auto;
}
.item li p {
	font-size: 18px;
	margin: 14px 0;
}
.btn-area {
	max-width: 360px;
	margin: auto;
	padding: 10px 0 60px;
}

.banner {
	margin: 120px 0;
}
.banner a:hover {
	opacity: 0.5;
	transition: .2s;
}
.banner ul {
	max-width: 900px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

footer {
	width: 100%;
	background-image: url(../images/footer-bg.webp);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
	padding-bottom: 60px;
}
footer ul {
	max-width: 900px;
	display: flex;
	padding: 60px 0;
	margin: auto;
}
footer ul li {
	width: 50%;
}
footer ul li h3 {
	font-size: 20px;
	font-weight: bold;
}
footer ul li h4 {
	font-size: 16px;
	font-weight: bold;
	border-bottom:  1px solid #2AA78B;
	margin-top: 20px;
}
footer ul li p {
	font-size: 16px;
	font-weight: 400;
}
.main-addr {
	padding-right: 80px;
}
.abroad-addr {
	padding-right: 80px;
}
.footer-nav {
	padding-left: 80px;
	border-left:  1px solid #2AA78B;
}
.footer-nav a {
	color: #333;
}
.footer-nav a:hover {
	opacity: 0.5;
	transition: .2s;
}
.footer-nav a::after {
	content: "";
  display: inline-block;
  background-image: url(../images/icon/arrow-v3.webp);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 20px;
  height: 14px;
  margin-left: 10px;
}
.footer-nav p {
	line-height: 2.5;
}
.small {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
}

.floating-btn {
	width: 80px;
	height: 80px;
	position: fixed;
	bottom: 6%;
	right: 6%;
	z-index: 999;
}
.floating-btn:hover {
	opacity: 0.5;
	transition: .2s;
}

.fade-in {
  opacity: 0; /* 初期状態は透明 */
  transition: opacity 0.5s ease; /* opacityプロパティをアニメーションさせる */
}

.fade-in.show {
  opacity: 1; /* クラスを追加すると表示されるようにする */
}

/* レスポンシブ対応 */
/* タブレット */
@media screen and (max-width: 1024px) {
  .main-copy {
		font-size: 27px;
		bottom: 2rem;
    left: 4%;
	}
	.catchcopy h3 {
		font-size: 20px;
		line-height: 1.3;
		text-align: center;
	}
	.company {
		margin-top: 60px;
	}
	.company-ul {
		gap: 30px;
	}
	.green-btn {
		width: auto;
	}
	.catchcopy {
		margin-top: 60px;
	}

	.business-ul {
		gap: 30px;
	}
	.biz-area {
		display: block;
	}
	.biz-area img {
		width: 100%;
	}
	.main-biz {
		width: 100%;
		margin-bottom: 10px;
	}
	.main-biz li {
		width: 99%;
	}
	.sub-biz {
		width: 100%;
	}

	h3 img {
		width: 100%;
	}
	.lineup h3 img {
		width: 60%;
	}
	.item {
		gap: 20px;
		justify-content: center;
	}
	.item li {
		width: 30%;
	}

	.banner ul {
		gap: 10px;
	}
	.banner ul li {
		width: 30%;
	}
	.banner img {
		width: 100%;
		height: auto;
	}

	footer ul {
		padding: 60px 30px;
	}
	.footer-nav {
		padding-left: 80px;
	}
	.floating-btn:hover {
		opacity: 1;
		transition: 0;
	}
}

/* スマートフォン */
@media screen and (max-width: 600px) {
	body {
		font-size: 14px;
	}

	.main-copy {
		font-size: 8vw;
		top: 7rem;
		left: 3vw;
	}
	.main-copy h2 {
		margin-bottom: 20px;
	}

  .company-ul {
		display: block;
	}
	.about-img {
		width: 100%;
	}
	.about-txt {
		width: 100%;
		margin-top: 30px;
		padding: 0 15px;
	}

	.catchcopy h3 {
		font-size: 16px;
	}

	.business {
		margin-top: 60px;
	}
	.biz-area {
		margin-top: 50px;
	}
	.business-ul {
		display: grid;
		gap: 0;
	}
	.business-ul li:nth-child(1) {
		order: 2;
	}
	.business-ul li:nth-child(2) {
		order: 1;
	}
	.sub-biz li {
		width: 48.5%;
	}
	.biz-area li p {
		font-size: 14px;
		padding: 3px 20px;
	}
	.biz-area li p::after {
		top: 30%;
		right: 8px;
	}

	.lineup {
		margin-top: 60px;
	}
	.lineup h3 img {
		width: 70%;
	}
	.line-area {
		padding: 30px 0;
	} 
	.item li {
		width: 47%;
	}
	.item li p {
		font-size: 14px;
	}

	.banner {
		margin: 60px 0;
	}
	.banner ul li {
		width: 48%;
	}

	footer {
		padding-bottom: 130px;
	}
	footer ul {
		display: block;
		padding: 60px 30px 30px;
	}
	footer ul li {
		width: 100%;
	}
	.main-addr {
		padding: 0;
	}
	.abroad-addr {
		padding: 0;
	}
	.footer-nav {
		border-left: none;
		padding: 0;
		margin-top: 20px;
	}
	.btn-area {
		padding: 10px 15px 60px;
	}
}


/* 下層 */
.sub-visual {
	width: 100%;
}
.company-visual {
	width: 100%;
	height: auto;
}
.main {
	max-width: 900px;
	margin: auto;
}
.main nav ol {
	display: flex;
	margin-top: 10px;
	margin-bottom: 10px;
}
.main nav ol li {
	margin-right: 5px;
}
.main nav ol li a {
	color: #333333;
}
.contents {
	width: 100%;
	margin: 50px auto 120px;
	text-align: center;
}
.contents h2 img {
	width: 50%;
}
.info-list {
	margin-top: 80px;
}
.list-contents {
	display: flex;
	margin-bottom: 3px;
}
.list-item-1 {
	width: 20%;
	background-color: #2AA78B;
	padding: 5px 0;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.list-item-2 {
	width: 80%;
	background-color: #C5E9E1;
	text-align: left;
	padding: 5px 50px;
	font-weight: 400;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.contents-txt {
	text-align: center;
	margin: 50px auto;
}
.contents-txt h3 {
	color: #2AA78B;
	font-size: 36px;
	margin-bottom: 10px;
	line-height: 1.3;
}

.moving-list li {
	background-color: #2AA78B;
	border-radius: 999px;
}
.moving-list li p {
	height: auto;
	padding: 15px 0;
}
.moving-list a {
	color: #fff;
	padding: 15px 0;
}
.moving-list a:hover {
	opacity: 0.5;
	transition: .3s;
}
.list-top {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}
.list-top li {
	width: 50%;
}
.list-top li a {
	width: 100%;
}
.list-second {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.list-second li {
	width: 32%;
	margin-bottom: 15px;
}
.business-list {
	margin: 100px auto;
}
.business-list-flex {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}
.business-list-img {
	width: 30%;
}
.business-list-img img {
	width: 100%;
	height: auto;
}
.business-list-txt {
	width: 70%;
	text-align: left;
}
.business-list-txt h4 {
	color: #2AA78B;
	font-size: 30px;
}
.business-list-txt p {
	margin: 10px 0 0;
}
.business-list-txt-tag {
	display: flex;
	flex-wrap: wrap;
}
.business-list-txt-tag li {
	padding: 5px 20px;
	border-radius: 999px;
	border: 1px solid #2AA78B;
	color: #2AA78B;
	margin-right: 10px;
	margin-top: 17px;
}
.order1 {
	order: 1;
}
.order2 {
	order: 2;
}
a.anchor{
	display: block;
	padding-top: 120px;
	margin-top: -120px;
}

.lineup-contents {
	width: 100%;
}
.contents-item-area {
	border-top: 1px solid #2AA78B;
	margin: 0 auto 60px;
}
.contents-head {
	background-color: #fff;
	font-size: 20px;
	font-weight: bold;
	color: #2AA78B;
	width: 150px;
	margin: -17px auto;
}
.lineup-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 35px;
}
.lineup-list li {
	width: 30.5%;
	margin-bottom: 30px;
}
.lineup-list li img {
	width: 100%;
	margin-bottom: 10px;
}

.contact-area {
	display: flex;
	justify-content: space-between;
}
.contact-area-del {
	text-align: center;
	width: 48%;
	background-color: #C5E9E1;
	border: 2px solid #2AA78B;
}
.method {
	width: 100%;
	background-color: #2AA78B;
	color: #fff;
	padding: 10px 0;
	font-size: 24px;
}
.method-con {
	padding: 30px;
	width: 100%;
}
.phone {
	font-size: 36px;
	font-weight: bold;
	margin-top: 1.5rem;
}
.phone img {
	margin-right: 10px;
	width: 34px;
	height: auto;
}
.phone a {
	color: #333333;
}
.mail-note {
	margin-top: 10px;
	width: 100%;
	height: auto;
}
.list-second::after {
	display: block;
	content:"";
	width: 32%;
}

@media screen and (max-width: 900px) {
	.main {
		margin: 0 15px;
	}
	.contents {
		margin: 40px auto;
	}
	.contents h2 img {
		width: 70%;
	}
	.info-list {
		margin-top: 40px;
	}
	.list-item-1 {
		width: 32%;
	}
	.list-item-2 {
		width: 68%;
		padding: 5px 25px 5px 30px;
	}
	.contact-area {
		display: block;
	}
	.contact-area-del {
		width: 100%;
		margin-bottom: 20px;
	}
	.method-con {
		width: 60%;
		margin: auto;
	}
	.phone {
		font-size: 24px;
		margin-top: 0;
	}
	.phone img {
		width: 24px;
		height: auto;
	}
	.mail-note {
		max-width: 350px;
	}
}
@media screen and (max-width: 600px) {
	/* 共通 */
	.contents-txt {
		margin: 30px auto;
	}
	.contents-txt h3 {
		font-size: 24px;
	}
	/* 企業情報 */
	.list-contents {
		display: block;
		margin-bottom: 10px;
	}
	.list-item-1 {
		width: 100%;
		justify-content: flex-start;
		padding-left: 30px;
	}
	.list-item-2 {
		width: 100%;
		display: block;
	}
	/* 事業内容 */
	.list-top {
		gap: 0;
		justify-content: space-around;
		margin-bottom: 10px;
	}
	.list-top li {
		width: 48%;
	}
	.list-second {
		justify-content: space-around;
	}
	.list-second li {
		width: 48%;
		margin-bottom: 10px;
	}
	.business-list-flex {
		display: block;
		margin-bottom: 80px;
	}
	.business-list-img {
		width: 80%;
		margin: auto;
	}
	.business-list-txt {
		width: 100%;
	}
	.business-list-txt h4 {
		text-align: center;
	}
	.business-list {
		padding: 0 10px;
		margin-top: 30px;
	}
	.business-list-img {
		margin: 0 auto 10px;
	}
	.business-list-txt p {
		margin: 5px 0 0;
		font-weight: 400;
	}
	.business-list-txt-tag li {
		font-size: 10px;
		padding: 3px 10px;
		margin-top: 10px;
		margin-right: 5px;
	}
	.list-second::after {
		display: none
	}
	/* 商品ラインナップ */
	.lineup-contents {
		margin-top: 60px;
	}
	.lineup-list li {
		width: 45%;
	}
	.method-con {
		width: 100%;
	}
	.mail-note {
		max-width: 350px;
	}
}