@charset "UTF-8";

.font-bule { color: #2ba4dc; }
.font-yellow { color: #f3e856; }

/* =======================================================================================
	Layout
======================================================================================= */
.inner {
	width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 1199px) {
.inner {
    width: calc(100% - 70px);
    margin: 0 auto;
	}
}
@media screen and (max-width: 639px) {
.inner {
    width: calc(100% - 40px);
    margin: 0 auto;
	}
}

.fadeUp { opacity: 0; }
.play.fadeUp { animation: fadeUp 1s forwards; }
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(0px, 10px);
  }

  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.play.delay-2 { animation-delay: 3s; }
.play.delay-3 { animation-delay: 5s; }
.play.delay-4 { animation-delay: 10s; }

.pc-new-line { display: block; }
.font-blue { color: #57a3d0; font-weight: bold; }

@media screen and (max-width: 959px) {
	.pc-new-line { display: inline; }
	.sp-new-line { display: block; }
}
/* =======================================================================================
	TOP herder FV
======================================================================================= */
/* header ---------------------------------*/
.logo img {
	width: 100px;
}
.header-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: transparent;
  padding: 10px 30px;
  transition: 0.5s;
}
.header-nav-wrap.scroll-nav {
	padding: 10px 30px;
  background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0.5rem 1rem rgba(136, 136, 136, 0.1);
}
.header-nav {
  display: flex;
  align-items: center;
	gap: 30px;
}

.header-nav a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: 0.5s;
	font-weight: 600;
	transition: color 0.3s ease;
}
#nav-diff .header-nav a { color: #333; }
#nav-diff.scroll-nav .header-nav a { color: #333; }
.scroll-nav .header-nav a { color: #333; }

.header-contact {
	width: 250px;
	background: #57a3d0;
	border-radius: 50px;
	text-align: center;
}
.header-contact a {
	display: block;
	width: 100%;
	display: block;
	padding: 10px 20px;
	color: #fff;
	position: relative;
}
.header-contact a::before {
	content: "";
	background: url(../img/icon_mail.webp) no-repeat center center / cover ;
	width: 25px;
	height: 25px;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}
#nav-diff .header-contact a { color: #fff; }
#nav-diff.scroll-nav .header-contact a { color: #fff; }
.header-nav-wrap.scroll-nav .header-contact a { color: #fff; }

.header-contact img {
	width: 28px;
	height: 28px;
	margin-right: 10px;
	vertical-align: top;
}
.sp-logo.sp-nav,
.arrow.sp-nav { display: none; }

/* セレクトボタン */
.lang-select {
	width: 250px;
	padding: 10px 10px;
	text-align: center;
	background: #e6d545;
	position: relative;
}
.lang-select::before {
	content: "";
	background: url(../img/icon_earth_black.webp) no-repeat center center / cover ;
	width: 25px;
	height: 25px;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.lang-select::after {
	content: "▼";
	font-size: 12px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.lang-btn {
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	font-weight: 600;
  letter-spacing: 0.5px;
}
.lang-dropdown {
  position: absolute;
	width: 100%;
  top: 100%;
  right: 0;
  display: none;
  z-index: 1000;
}

.lang-dropdown li {
	list-style: none;
	background: #e6d545;
  border: 1px solid #ccc;
}
.lang-dropdown a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}
.lang-dropdown a:hover { background: #f0eab1; }
.lang-select.open .lang-dropdown { display: block; }


@media screen and (max-width: 1199px) {
	.logo img { width: 80px; }
	.header-nav-wrap { padding: 10px 20px;}
	.hamb {
		position: fixed;
		cursor: pointer;
		z-index: 300;
		right: 0px;
		top: 31px;
		width: 40px;
		height: 40px;
		transform: translate(-50%, -50%);
		padding: 15px;
		border-radius: 50px;
	}
	.header-nav-wrap.scroll-nav { padding: 10px 20px 10px;}
	.header-nav-wrap.scroll-nav .hamb{ top: 30px;}
	.line {
		position: absolute;
		left: -10px;
		width: 50px;
		height: 3px;
		background-color: #57A3D0;
		top: 13px;
	}
	.line:nth-child(2)  { top: 20px; }
	.line:nth-child(3)  { top: 27px; }
	#hamb.active .line { background-color: #57A3D0; }

	.header-nav {
		width: 100%;
		padding: 0 60px;
		flex-direction: column;
		gap: 30px;
		position: absolute;
		left: 50%;
		top: 40px;
		transform: translateX(-50%);
	}
	.header-nav li { width: 100%; }
	.header-nav li.header-contact a {
		color: #fff;
		text-align: center;
	}
	.header-nav li a {
		width: 100%;
		color: #333;
		font-size: 13px; 
		display: block;
		position: relative;
	}
	.sp-logo.sp-nav,
	.arrow.sp-nav { display: block; }
	.arrow.sp-nav::before, .arrow.sp-nav::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 0px;
    width: 12px;
    height: 3px;
    border-radius: 999px;
    background: #2d6fac;
    transform-origin: calc(100% - 1px) 50%;
	}
	.header-nav li.sp-logo a {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 16px;
		font-weight: 500;
	}
	.sp-logo img { width: 120px; }
	.sp-logo span { line-height: 1; }
	.sp-logo .logo-ttl-sub{
		line-height: 1 ;
		font-size: 11px;
		font-weight: 400;
		text-align: center;
	}

	.black-bg {
		position: fixed;
		background: rgba(255, 255, 255, 0.9);
		top: 0;
		left: 0;
		width: 100%;
		height: 0%;
		opacity: 0;
		visibility: hidden;
		overflow: auto;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
	.black-bg.open {
		opacity: 1;
		visibility: visible;
		height: 100vh;
	}
	/*アニメーション*/
	.black-bg { transition: opacity 0.8s, visibility 0.8s, width 0.8s, height 0.8s; }
	#hamb.active .line:nth-child(1) { transform: translateY(9px) translateX(0) rotate(30deg); }
	#hamb.active .line:nth-child(2) {
			opacity: 0;
			background: #FFF;
	}
	#hamb.active .line:nth-child(3) { transform: translateY(-5px) translateX(0) rotate(-30deg); }
	.animation { transition: all .6s; }
	.lang-dropdown {padding-bottom: 60px;}
}


/* fv ---------------------------------*/
.fv { position: relative; }
.fv-text {
	display: flex;
	flex-direction: column-reverse;
	width: 1200px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 4;
}
.fv-ttl-main {
	margin-top: 20px;
	font-size: 20px;
	line-height: 1.8;
	font-weight: normal;
}
.fv-sub-wrap { margin: 25px 0 0; }
.fv-sub-ttl.diff { font-size: 36px; line-height: 1.2; }
.fv-sub-ttl {
	font-size: 23px;
	font-weight: bold;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s;
}
.fv-sub-ttl.show {
  opacity: 1;
  transform: translateY(0);
}
.fv-sub-ttl,
.fv-ttl-main {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fv-ttl-en {
	display: inline;
	overflow: visible;
	font-family: 'Caveat', sans-serif;
	font-weight: bold;
	font-size: 100px; 
	line-height: 1;
}

.fv-ttl-en span {
	display: inline;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}
.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.slide-items {
  width: 100%;
	position: relative;
}
.slide-items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
  pointer-events: none;
}
.slide-items img {
  width: 100%;
  height: 900px;
	object-position: 70% 0;
  object-fit: cover;
}

@media screen and (max-width: 1199px) {
	.fv-text {
		width: calc(100% - 70px);
		border-radius: 0;
	}
}
@media screen and (max-width: 639px) {
	.fv-text {
		width: calc(100% - 30px);
		top: 65%;
	}
	.fv-ttl-en {
		margin-bottom: 10px;
    font-size: 58px;
	}
	.fv-sub-ttl.diff { font-size: 20px; }
	.fv-sub-ttl {
		font-size: 13px;
		line-height: 1.5;
	}
	.fv-ttl-main { font-size: 12px; }
	.slide-items img {
    width: 100%;
    height: 600px;
	}
}

/* =======================================================================================
	TOP content
======================================================================================= */
/* 共通 ---------------------------------*/
/* title */
.ttl-wrap { margin-bottom: 30px;}
.ttl-en { 
	font-family: 'Caveat', sans-serif;
	font-weight: normal;
	font-size: 24px;
	color: #fff;
}
.ttl {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	position: relative;
}
.ttl::after {
	content: "";
	width: 100px;
	height: 1px;
	background: #fff;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}
.top-sub-ttl {
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 1.6;
}

.top-sub-ttl.diff { color: #fff; font-weight: bold;}
.ttl-wrap.diff .ttl,
.ttl-wrap.diff .ttl-en { color: #57a3d0; }

/* bg、余白 */
.top-wrap { padding: 90px 0; }
.bg-bule { background: #57a3d0; }
.bg-sky { background: #e2f4ff; }

/*　リンクボタン */
.btn {
	display: block;
	width: 250px;
	margin: 30px auto 0;
	padding: 20px 0;
	border-radius: 50px;
	background: #e6d545;
	color: #2ba4dc;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	position: relative;
}
.btn::after {
	content: "";
	width: 60px;
	height: 2px;
	background: #2ba4dc;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: width 0.3s ease;
}
.btn:hover::after { width: 20px; /* 短くする幅 */ }

@media screen and (max-width: 639px) {
	.ttl { font-size: 14px; }
	.top-sub-ttl { font-size: 16px; }
	.btn {
    width: 80%;
    padding: 10px 0;
    font-size: 14px;
	}
	.top-wrap { padding: 40px 0; }
}
/* Top 私たちについて ---*/
.top-wrap.diff {
	position: relative;
}
.top-wrap.diff::after {
	content: "";
	background: url(../img/top_earth.webp) no-repeat center center / cover;
	width: 500px;
	height: 500px;
	position: absolute;
	top: 0;
	right: 0;
}
.top-content {
	display: flex;
	align-items: stretch;
	background: #fff;
	border-radius: 40px;
	position: relative;
	z-index: 1;
}
.top-content-text {
	width: 600px;
	padding: 40px;
}
.top-content-img {
	width: calc(100% - 600px);
	overflow: hidden; 
}
.top-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 0 40px 40px 0;
	clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
}
.ttl-bg-wrap {
	width: 1500px;
	height: 560px;
	margin: 0 auto;
	padding: 50px 0 0;
	border-radius: 40px;
	background: url(../img/top_business_bg.webp) no-repeat center left / cover ;
	position: relative;
}
.ttl-bg-wrap::before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 40px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.ttl-bg-wrap .inner {
	position: relative;
	z-index: 2;
}

/* Top　事業内容 ---*/
.top-business-list {
	display: flex;
	gap: 20px;
	margin-top: -250px;
	padding: 50px 50px 0;
	background: #e2f4ff; 
	border-radius: 30px;
	position: relative;
	z-index: 3;
}
.top-business-item {
	width: calc(100% / 2 - 10px);
	background: #fff;
	border-radius: 30px;
}
.top-business-ttl {
	padding: 25px 10px;
	background: #57a3d0;
	border-radius: 30px 30px 0 0;
	text-align: center;
	color: #fff;
	font-weight:600;
	font-size: 20px;
	line-height: 1.6;
}
.top-business-text { padding: 30px 40px; }

@media screen and (max-width: 1499px) {
	.ttl-bg-wrap {
    width: 100%;
		border-radius: 0;
	}
	.ttl-bg-wrap::before { border-radius: 0; }
}

/* Top　会社案内 ---*/
.top-company-content {
	display: flex;
	align-items: stretch;
	background: #fff;
	border-radius: 40px;
}
.top-content-img.diff img {
	height: 250px;
	object-position: 50% 10%;
	clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
	border-radius: 40px 0 0 40px;
}

/* Top　SNS ---*/
.sns-content {
	display: flex;
	gap: 100px;
}
.sns-content-text { width: 390px; }
.sns-btn-list {
	display: flex;
	gap: 25px;
	margin-top: 20px;
}
.sns-btn-list li { width: 40px; }
.sns-btn-list li img { width: 100%; }
.sns-link-list { width: calc(100% - 390px - 10px); }
.sns-link-list {
	display: flex;
	gap: 20px;
}
.sns-link-item {
	width: calc(100% / 2 - 10px);
	text-align: center;
}
.sns-link-text {
	display: inline-block;
	margin: 0 auto 10px;
	padding: 0 40px;
	text-align: center;
	font-weight: bold;
	position: relative;
}
.sns-link-text::before,
.sns-link-text::after {
	content: "";
	display: inline-block;
	width: 15px;
	height: 23px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.sns-link-text::before {
	background: url(../img/icon_line.webp) no-repeat center center / cover;
	left: 0;
}
.sns-link-text::after {
	background: url(../img/icon_line.webp) no-repeat center center / cover;
	right: 0;
	transform: translateY(-50%) scaleX(-1);
}
.instagram-media.instagram-media-rendered {
	max-width: 100% !important;
	width: 100% !important;
	min-width: 100% !important;
	height: 530px;
}
.fb-container {
  max-width: 100%;
  overflow: hidden;
	height: 530px;
}

@media screen and (max-width: 1199px) { .sns-content { gap: 20px; } }
@media screen and (max-width: 1119px) {
	.sns-content {
    flex-direction: column;
		gap: 40px;
	}
	.sns-link-list {
		width: 100%;
    gap: 50px;
    justify-content: center;
		margin: auto;
	}
	.sns-content-text { width: 100%; }
}
@media screen and (max-width: 1039px) {
	.top-content { flex-direction: column; }
	.top-content-text {
    width: 100%;
    padding: 40px;
	}
	.top-content-img { width: 100%; }
	.top-content-img img {
    height: 300px;
    border-radius: 0 0 40px 40px;
    clip-path: none;
	}
	.top-business-list { flex-direction: column; }
	.top-business-item {
    width: 100%;
		gap: 30px;
	}
	.top-content-img.diff img {
    clip-path: none;
    border-radius: 40px 40px 0 0;
	}
	.top-wrap.diff::after {
		width: 300px;
		height: 300px;
	}
}
@media screen and (max-width: 639px) {
	.top-wrap.diff::after {
		width: 200px;
		height: 200px;
	}
	.top-content-text { padding: 30px; }
	.ttl-bg-wrap { height: 500px; }
	.top-business-list { padding: 20px; }
	.top-business-ttl { font-size: 15px; padding: 15px 10px;}
	.top-business-text { padding: 20px; }
	.sns-link-list {
    flex-direction: column;
		gap: 20px;
	}
	.sns-link-item { width: 100%; }
	.sns-btn-list li { width: 30px; }
}

/* =======================================================================================
	お問い合わせ section
======================================================================================= */
.contact-list {
	display: flex;
	justify-content: space-between;
	padding: 80px;
	background: #fff;
	border-radius: 40px;
	position: relative;
	z-index: 1;
}
.contact-item a {
	display: block;
	width: 480px;
	padding: 30px 10px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	border: 2px solid #57a3d0;
	border-radius: 50px;
	position: relative;
}
.contact-item a::after {
	content: "";
	width: 100px;
	height: 2px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: width 0.3s ease;
}
.contact-item:hover a::after { width: 30px; /* 短くする幅 */ }
.contact-item.mail a::after { background: #fff; }
.contact-item.tel a::after { background: #2ba4dc; }
.contact-item a::before {
	content: "";
	width: 50px;
	height: 50px;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.contact-item.mail a::before { background: url(../img/icon_mail.webp) no-repeat center center / cover; }
.contact-item.tel a::before { background: url(../img/icon_tel.webp) no-repeat center center / cover; }
.contact-item.mail a {
	background: #57a3d0;
	color: #fff;
}
.contact-item.tel a { color: #57a3d0; }

@media screen and (max-width: 1199px) { .contact-item a { width: 440px; } }
@media screen and (max-width: 1119px) {
	.contact-list { padding: 40px; }
	.contact-item a { width: 400px; }
}
@media screen and (max-width: 959px) {
	.contact-list {
		flex-direction: column;
		gap: 20px;
	}
	.contact-item { width: 100%; }
	.contact-item a { width: 100%; }
}
@media screen and (max-width: 639px) {
	.contact-list { padding: 20px; }
	.contact-item a::before {
    width: 30px;
    height: 30px;
	}
	.contact-item a::after { width: 60px; }
	.contact-item a { padding: 20px 10px; }
}

/* =======================================================================================
	下層共通
======================================================================================= */
/* title */
.under-page {
	position: relative;
}
.under-page::before {
	content: "";
	background: url(../img/under_earth.webp) no-repeat center center / cover;
	width: 500px;
	height: 500px;
	position: fixed;
	top: 0;
	right: 0;
}
.under-ttl-wrap {
	display: flex;
	flex-direction: column-reverse;
	padding: 100px 0;
	font-weight: bold;
	position: relative;
}
.under-ttl {
	font-size: 24px;
	color: #57a3d0;
}
.under-ttl-en {
	font-size: 90px;
	font-family: 'Caveat' , sans-serif;
	color: #57a3d0;
	line-height: 1.5;
}
.under-sub-ttl-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
  color: #57a3d0;
}
.under-sub-ttl-en {
  margin-bottom: 5px;
	font-size: 24px;
	line-height: 1.4;
	font-family: 'Caveat' , sans-serif;
}
.under-sub-ttl-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.under-sub-ttl {
  font-size: 18px;
  white-space: nowrap;
}
.under-sub-ttl-line {
  width: 100px;
  height: 1px;
  background: #57a3d0;
}
.under-sub-ttl-area.diff .under-sub-ttl,
.under-sub-ttl-area.diff .under-sub-ttl-en{ color: #fff;}
.under-sub-ttl-area.diff .under-sub-ttl-line { background: #fff;}
.under-page-first {
	padding: 0 0 80px;
	background: linear-gradient(0deg,  #57a3d0 0%, #fff 100%);
}
.under-wrap { padding: 90px 0; }
.under-wrap.diff { padding: 0 0 90px; } 

@media screen and (max-width: 1039px) { .under-page::before { width: 300px; height: 300px; } }
@media screen and (max-width: 639px) {
	.under-page::before { width: 200px; height: 200px; }
	.under-ttl-wrap { padding: 100px 0 50px; }
	.under-ttl-en { font-size: 50px; }
	.under-ttl { font-size: 16px; }
	.under-sub-ttl { font-size: 14px; }
	.under-page-first { padding: 0 0 40px; }
	.under-wrap { padding: 40px 0; }
	.under-wrap.diff { padding: 0 0 40px; }
}
/* 
=======================================================================================
	私たちについて
======================================================================================= */
.about-read-list {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.about-read-list li {
	width: calc(100% / 2 - 50px);
	padding: 30px;
	background: #fff;
	border-radius: 30px;
}
.about-read-text { font-size: 18px; }
.about-read-img {
	max-width: 1500px;
	width: 100%;
	margin: -100px auto 0;
	position: relative;
}
.about-read-img img { border-radius: 40px; }
.about-read-img p {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	position: absolute;
	top: 58%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
	font-style: italic;
}
.about-read-img::after {
	content: "";
	background: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	border-radius: 40px;
	position: absolute;
	top: 0;
	left: 0;
}
.about-content-wrap {
	display: flex;
	flex-direction: row-reverse;
	align-items: stretch;
	background: #fff;
	border-radius: 40px;
	position: relative;
	z-index: 1;
}
.about-content-text {
	width: calc( 100% - 530px );
	padding: 40px;
}
.about-content-ttl {
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 1.6;
}
.about-content-img { width: 530px; }
.about-content-img img {
	width: 100%;
  height: 358px;
  object-fit: cover;
	object-position: 50% 80%;
	clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
	border-radius: 40px 0 0 40px;
}
.about-content-wrap.diff { flex-direction: row; }
.about-content-wrap.diff .about-content-img img {
	width: 100%;
	height: 564px;
	object-fit: cover;
	object-position: left center;
	border-radius: 0 40px 40px 0;
	clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
}

.ceo-name {
	margin-top: 20px;
	font-size: 18px;
	font-weight: bold;
	text-align: right;
}

@media screen and (max-width: 1199px) {
	.about-read-list {
    gap: 30px;
    justify-content: center;
	}
	.about-read-img {
		width:100%;
		border-radius: 0;
	}
	.about-read-img img { border-radius: 0; }
	.about-read-img::after { border-radius: 0; }
	.about-content-img img { height: 100%; }
	.about-content-wrap.diff .about-content-img img { height: 100%; }
}
@media screen and (max-width: 1039px) {
	.about-read-list li { width: calc(100% / 2 - 20px); }
	.about-read-text { font-size: 14px; }
	.about-content-wrap { flex-direction: column; }
	.about-content-text { width:100%; }
	.about-content-img { width: 100%; }
	.about-content-img img {
		width: 100%;
		height: 358px;
		object-position: 50% 35%;
		clip-path: none;
		border-radius: 0 0 40px 40px;
	}
	.about-content-wrap.diff { flex-direction: column; }
	.about-content-wrap.diff .about-content-img img {
		height: 560px;
		object-position: 0% 30%;
		border-radius: 0 0 40px 40px;
		clip-path: none;
	}
}
@media screen and (max-width: 639px) {
	.under-ttl-en { font-size: 50px; }
	.about-read-list { flex-direction: column; }
	.about-read-list li { width: 100%; }
	.about-read-img { margin: 40px 0 0; }
	.about-read-img img {
		height: 214px;
		object-fit: cover;
	}
	.about-read-img p {
		font-size: 16px;
		top: 63px;
	}
	.about-content-ttl { font-size: 16px; }
	.about-content-text { padding: 30px; }
	.ceo-name { font-size: 13px; }
	.about-content-wrap.diff .about-content-img img { height: 380px; }
}
/* 
=======================================================================================
	事業内容
======================================================================================= */
.under-page-first.diff {
	padding: 0;
	background: #57A3D0;
background: linear-gradient(0deg,rgba(87, 163, 208, 1) 0%, rgba(87, 163, 208, 1) 70%, rgba(255, 255, 255, 1) 100%);
}
.service-read {
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: 500;
	line-height: 2;
}
.service-wrap {
	padding: 50px;
	background: #fff;
	border-radius: 40px;
	position: relative;
}
.service-wrap::after {
	content: "01";
	color: #e2f4ff;
	font-size: 72px;
	font-weight: 600;
	position: absolute;
	top: -58px;
	left: 50%;
	transform: translateX(-50%);
}
.service-wrap.diff::after {content: "02";}
.service-ttl-wrap {
	margin: 30px 0 60px;
	text-align: center;
	font-weight: bold;
}
.service-ttl {
	margin-bottom: 20px;
	font-size: 30px;
	color: #57a3d0;
	line-height: 1.5;
	position: relative;
}
.service-ttl::before {
	content: "";
	width: 100px;
	height: 1px;
	background: #57a3d0;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}
.service-ttl-wrap p { font-size: 18px; }
.service-content {
	display: flex;
	flex-direction: row-reverse;
	align-items: stretch;
	margin-bottom: 50px;
	background: #eff9ff;
	border-radius: 40px;
}
.service-content-text {
	width: calc(100% - 400px);
	padding: 50px 30px;
}
.service-content-img { width: 400px; height: 280px;}
.service-content-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 30%;
	clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
	border-radius: 40px 0 0 40px;
}
.service-content-wrap { margin-bottom: 80px; }
.service-content-wrap.diff { margin-bottom: 0; }
.service-sub-ttl-wrap { margin-bottom: 30px; }
.service-sub-ttl-wrap p { font-weight: bold; font-size: 16px; }
.service-sub-ttl {
	margin-bottom: 10px;
	font-size: 24px;
	color: #57a3d0;
}
.service-strength-list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.service-strength-item {
	max-width: calc(100% / 2 - 15px);
	width: 100%;
	background: #eff9ff;
	border-radius: 20px;
}
.service-strength-item-ttl {
	padding: 20px 20px 20px 40px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background: #57a3d0;
	border-radius: 20px 20px 0 0;
	line-height: 1.8;
	position: relative;
}
.service-strength-item-ttl::before {
	content: "";
	background: url("../img/icon_lightbulb.webp") no-repeat center center / cover;
	width: 25px;
	height: 25px;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.service-strength-item-text { padding: 15px 40px 15px; }
.service-other-content {
	padding: 50px;
	background: #eff9ff;
	border-radius: 30px;
}
.service-other-text { margin-bottom: 40px;}
.service-other-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 20px;
	margin-bottom: 40px;
}
.service-other-item {
	width: calc(100% / 3 - 15px);
	padding: 30px;
	background: #fff;
	border-radius: 20px;
	position: relative;
}
.service-other-item:before,
.service-other-item:after{
	content:"";
	display:block;
	position:absolute;
}
.service-other-item:before{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #57a3d0;
	left:50%;
	top:-12px;
	transform: translateX(-50%);
}
.service-other-item:after{
	border-left:4px solid #fff;
	border-bottom:4px solid #fff;
	width: 20px;
	height: 12px;
	border-radius: 2px;
	left:50%;
	top:-5px;
	transform: translateX(-50%) rotate(-45deg);
}
.service-other-item-ttl {
	margin: 10px 0 20px;
	font-size: 16px;
	color: #57a3d0;
	text-align: center;
	line-height: 1.6;
}

/* 教育支援＋動画制作サービス */
.service-movie-img {
	display: flex;
	flex-direction: column-reverse;
}
.service-movie-img img {
	max-width: 800px;
	width: 100%;
	margin: auto;
}
.service-movie-img figcaption {
	margin-bottom: 10px;
	text-align: center;
}

/* 海外出店サポートサービス */
.service-store-text {
	margin-bottom: 40px;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	background: #bfdef1;
}
.service-other-list.diff { margin-bottom: 0;}
.service-other-list.diff .service-other-item:after{
	background: url(../img/icon_earth.webp) no-repeat center center / cover;
	border-left:none;
	border-bottom:none;
	width: 20px;
	height: 20px;
	border-radius: 0;
	left:50%;
	top:-7px;
	transform: translateX(-50%) rotate(0);
}

/* 日本人材派遣事業 */
.service-content-img.diff { height: auto;}

/* 最後リード */
.service-last-list {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}
.service-last-item {
	width: calc(100% / 3 - 15px);
	padding: 20px 30px;
	font-size: 17px;
	text-align: center;
	background: #fff;
	border-radius: 10px;
	position: relative;
}

.service-last-item::before {
	content: "“";
	font-size: 60px;
	line-height: 1;
	color: #57A3D0;
	position: absolute;
	left: 0;
	top: -15px;
}
.service-last-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #fff transparent transparent;
  translate: -50% 100%;
}
.service-last-text {
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}

@media screen and (max-width: 1199px) {
	.service-content-img { height: 100%; }
	.service-other-item { width: calc(100% / 2 - 15px); }
	.service-other-item-ttl { font-size: 15px; }
	.service-last-item { font-size: 14px; }
}
@media screen and (max-width: 1039px) {
	.service-content { flex-direction: column; }
	.service-content-text {
    width: 100%;
    padding: 30px;
	}
	.service-content-img { width: 100%; }
	.service-content-img img {
		height: 420px;
    clip-path: none;
    border-radius: 0 0 40px 40px;
	}
	.service-strength-item-ttl {
		font-size: 15px;
		line-height: 1.6;
	}
	.service-other-content { padding: 30px; }
	.service-last-list { flex-direction: column; }
	.service-last-item {
		width: calc(100% / 2 - 15px);
		margin: auto;
	}
}
@media screen and (max-width: 959px) {
	.service-strength-item { max-width: 100%; }
	.service-other-item { width:100%; }
}
@media screen and (max-width: 639px) {
	.service-read {
    font-size: 14px;
    line-height: 1.6;
	}
	.service-wrap { padding: 30px 20px; }
	.service-wrap::after {
    font-size: 60px;
    top: -50px;
	}
	.service-ttl-wrap { margin: 30px 0 30px; }
	.service-ttl {
		font-size: 17px;
		line-height: 1.5;
	}
	.service-ttl::before { bottom: -10px; }
	.service-ttl-wrap p { font-size: 14px; }
	.service-content-img img { height: 280px; }
	.service-sub-ttl {
		font-size: 18px;
		line-height: 1.5;
	}
	.service-strength-item-ttl {
		font-size: 14px;
		padding: 10px 20px 10px 40px;
	}
	.service-strength-item-text { padding: 15px 20px 15px; }
	.service-sub-ttl-wrap p {
    font-weight: bold;
    font-size: 13px;
		line-height: 1.6;
	}
	.service-other-item { padding: 20px; }
	.service-other-content { padding: 30px 20px; }
	.service-other-item-ttl { font-size: 14px; }
	.service-other-list .pc-new-line { display: block; }
	.service-last-item { width:100%;}
	.service-last-text {
    text-align: left;
		font-size: 13px;
	}
}
/* 
=======================================================================================
	会社案内
======================================================================================= */
.company-img {
	padding: 50px;
	background: #fff;
	border-radius: 40px;
	position: relative;
	z-index: 1;
}

.company-table {
	display: block;
  width: 100%;
	margin-bottom: 30px;
	padding: 30px;
  border-collapse: collapse;
	background-color: #fff;
	border-radius: 40px;
	position: relative;
	z-index: 1;
}

.company-table th,
.company-table td {
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 200px;
	padding: 20px;
	text-align: center;
	font-weight: bold;
  white-space: nowrap;
	position: relative;
}
.company-table th::before {
  content: "";
	width: 20px;
	height: 2px;
	background: #57A3D0;
	position: absolute;
	right: -15px;
	top: 35px;
}
.company-table td {
	padding: 20px 20px 20px 80px;
	position: relative;
}

.company-table-wrap iframe {
	width: 100%;
	border-radius: 40px;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 639px) {
	.company-img { padding: 20px; }
	.company-table { padding: 20px 10px; }
	.company-table th {
		width: 100px;
		text-align: left;
		display: block;
		padding: 10px 20px 0 40px;
	}
	.company-table th::before {
		width: 13px;
		height: 3px;
		border-radius: 9999px;
    top: 24px;
		right: inherit;
		left: 20px;
	}
	.company-table td {
		width: 100%;
		padding: 0px 10px 10px 20px;
		display: block;
	}
}

/* =======================================================================================
	メールフォーム
======================================================================================= */
.mailform {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 80px 60px;
	background: #fff;
	border-radius: 10px;
	position: relative;
	z-index: 1;
}

.mailform dt {
	padding: 10px 20px;
	width: 300px;
}
.mailform dd {
	padding: 10px 20px;
	width: calc(100% - 300px);
}

.mailform dd input,
.mailform dd textarea {
	width: 100%;
	padding: 10px;
	background: #e7f1f7;
	font-size: 16px;
}
.mailform dd textarea  {
	width: 100% !important;
	height: 300px !important;
}
.mailform dd input.check { width: auto; margin-right: 10px;}
.must {
	padding: 2px 10px;
	background: #ba5151;
	border-radius: 5px;
	color: #fff;
	font-size: 12px;
}
.must.diff {
	background: #cccbcb;
	color: #333;
}
form#mailformpro label.mfp_checked {
	padding: 0;
	font-size: 16px;
}
form#mailformpro label { font-size: 16px; }
.submit_buttons {
	width: 50%;
	margin-top: 20px;
	padding: 10px 0;
	background: #e6d545;
	border-radius: 50px;
	color: #333;
	font-weight: 500;
	font-size: 18px;
	position: relative;
	z-index: 1;
}

#mfp_button_send {
		width: 200px;
    padding: 5px 0;
    text-align: center;
    background: #2d6fac;
    color: #fff;
    border-radius: 50px;
}
#mfp_button_cancel {
	width: 200px;
	padding: 5px 0;
	text-align: center;
	background: #d3d3d3;
	border-radius: 50px;
}
div.mfp_buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}
.check-text { margin-top: 5px; }

div.mfp_thanks {
	padding: 40px;
	background:#fff;
	border-radius: 40px;
	position: relative;
	z-index: 1;
}
div.mfp_thanks p { line-height: 2; }
.thk-text { margin-bottom: 20px; }

@media screen and (max-width: 959px) {
	.mailform { padding: 50px 40px; }
	.mailform dt { width: 250px; }
	.mailform dd { width: calc(100% - 250px); }
}

@media screen and (max-width: 839px) {
	.mailform { padding: 40px 30px; }
	.mailform dt { width: 100%; }
	.mailform dd { width: 100%; }
	.must { margin-left: 0; font-size: 10px;}
	form#mailformpro label { font-size: 13px; }
	form#mailformpro label.mfp_checked { font-size: 13px; }
	div.mfp_buttons { gap: 5px; }
	.top-form-text-content { padding: 60px 0; }
	div.mfp_thanks { padding: 30px; }
}
/* =======================================================================================
	お問い合わせ
======================================================================================= */

@media (min-width: 669px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
		}
	}

/* =======================================================================================
	プライバシーポリシー
======================================================================================= */
.privacy-policy {
	background: #fff;
	padding: 60px;
	border-radius: 50px;
	position: relative;
	z-index: 1;
}
.privacy-policy h2 {
  color: #57a3d0;
  font-weight: bold;
  font-size: 18px;
  margin-top: 40px;
	margin-bottom: 15px;
}

/* ポチまるスタイル */
.privacy-policy ul {
  list-style: none;
  padding-left: 1.5em;
}

.privacy-policy ul li::before {
  content: "●";
  color: #57a3d0;
  font-weight: bold;
    margin-right: 15px;
    font-size: 10px;
}

/*	=======================================================================================
	パンくずリスト
======================================================================================= */
.breadcrumb { margin-bottom: 20px; }
.breadcrumb ol {
	display: flex;
	gap: 3px;
}
.breadcrumb li { font-size: 13px;}

.breadcrumb li + li::before {
  content: "";
	display: inline-block;
	width: 10px;
	height: 3px;
	border-radius: 999px;
	background: #57A3D0;
	vertical-align: middle;
  margin: 0 8px;
}
.breadcrumb ol li:last-child span { color: #57A3D0; }

@media screen and (max-width: 639px) {
	.breadcrumb li { font-size: 12px;}
}
/* =======================================================================================
	footer
======================================================================================= */
.footer-logo { width: 390px; }
.footer {
	display: flex;
	justify-content: space-between;
	align-items: end;
	padding: 40px 0;
	font-size: 14px;
}
.footer-ttl {
	margin-bottom: 12px;
	font-weight: bold;
	color: #57a3d0;
}
.footer-ad {
	margin-bottom: 10px;
	line-height: 1.5;
	font-size: 13px;
}
.footer-tel {line-height: 1.5; font-size: 13px;}
.copy { font-size: 12px; }
.footer-num {
	margin: 10px 0;
	line-height: 1.5;
}
.footer-num li {font-size: 13px; }
.footer-nav-list {
	display: flex;
	gap: 50px;
}
.footer-nav-list li { padding-left: 10px; }
.arrow {
  position: relative;
  display: inline-block;
	color: #333;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: -20px;
	width: 12px;
	height: 3px;
  border-radius: 9999px;
  background-color: #57a3d0;
  transform-origin: calc(100% - 2px) 50%;
}
.arrow::before { transform: rotate(45deg); }
.arrow::after { transform: rotate(-45deg); }
.footer .sns-btn-list { justify-content: end; }
.footer .sns-btn-list li { width: 30px; }
.footer .sns-btn-list li:first-of-type { width:auto; }

.privacy-link a {
	color: #2ba4dc;
	font-size: 12px;
	text-decoration: underline;
}
.web-link,
.web-link a { font-size: 12px; }
.web-link a { text-decoration: underline;}

@media screen and (max-width: 1149px) {
	.footer { flex-direction: column; gap: 30px;}
	.footer-logo { width: 100%; }
	.footer-nav { margin-bottom: 20px; }
	.footer-nav-list {
		gap: 30px;
		padding-left: 8px;
	}
	.footer-ad { font-size: 13px;}
	.footer .sns-btn-list {
		justify-content: flex-start;
		margin-top: 10px;
		flex-wrap: wrap;
	}
	.footer-nav-list a { font-size: 12px; }
	.footer .sns-btn-list li { width: 25px; }
}

@media screen and (max-width: 639px) {
	.footer-nav-list {
		gap: 5px;
		flex-direction: column;
	}
	.footer-ad { font-size: 12px; }
	.footer-tel { font-size: 12px; }
	.footer-num li { font-size: 12px; }
	.footer .sns-btn-list { margin-top: 20px; }
	.footer-ttl {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: bold;
	}
	.footer .sns-btn-list li:first-of-type { width:100%; }
}

/* =======================================================================================
	ローディング
======================================================================================= */
#is-loading {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #e2f4ff;
  z-index: 100000;
}
#loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  z-index: 9;
}

.rotate-earth {
	margin-top: 10px;
  width: 150px;
  height: 150px;
}
#loading p { color: #2ba4dc;}

@media screen and (max-width: 639px) {
	.rotate-earth {
	margin-top: 10px;
  width: 120px;
  height: 120px;
}
}

/* =======================================================================================
	クッキーバナー
======================================================================================= */
.consent-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  background: rgba(87, 163, 208, .8);
  color: #fff;
  z-index: 9999;
}
.consent-banner {
	display: flex;
  justify-content: center;
	align-items: center;
	gap: 30px;
	width: 100%;
	text-align: center;
	padding: 1em;
}
.consent-banner p {
  margin: 0 0 1em;
  font-size: 14px;
}
.consent-buttons {
  display: flex;
  justify-content: center;
  gap: 1em; /* ボタン間のスペース */
  flex-wrap: wrap; /* スマホ対応 */
}
.consent-buttons button {
	width: 150px;
  padding: 0.5em 1.5em;
  border: none;
  color: #333;
	font-weight: bold;
  background-color: #e6d545;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
#consent-decline {
	background: #d3d3d3;
	color: #333;
	font-weight: normal;
}

@media screen and (max-width: 729px) {
	.consent-wrap {
    width: 100%;
	}
	.consent-banner {
		width: 99%;
    padding: 0.2em;
	}
	.consent-banner p {
    font-size: 11px;
}
.consent-buttons button {
    font-size: 12px;
	}
}

/* =======================================================================================
	多言語 微調整
======================================================================================= */
.lang-en .fv-ttl-en,
.lang-id .fv-ttl-en,
.lang-cmn .under-ttl-en {
	font-family: 'Caveat', sans-serif;
}
.lang-vi .fv-ttl-en { font-size: 74px; }
.lang-my .fv-ttl-en {
    font-size: 50px;
    line-height: 1.5;
}
.lang-my .top-sub-ttl { font-size: 18px; }
.lang-cmn .top-business-ttl {
    height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	}
.lang-id .top-content-img.diff img { height: 300px; }
.lang-my .top-content-img.diff img,
.lang-vi .top-content-img.diff img { height: 350px; }


.lang-en .about-content-img img,
.lang-my .about-content-img img,
.lang-id .about-content-img img { height: 450px; }
.lang-vi .about-content-img img { height: 500px; }
.lang-cmn .about-content-wrap.diff .about-content-img img { height: auto; }
.lang-cmn .service-strength-item-ttl {
	height: 90px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.lang-cmn .service-other-item-ttl { text-align: left; }
.lang-cmn .service-last-item { text-align: left; }

@media screen and (max-width: 1039px) {
.lang-cmn .about-content-img img { height: auto;  }
.lang-cmn .about-content-wrap.diff .about-content-img img { height: 440px; }
}

@media screen and (max-width: 969px) {
	.lang-my .fv-ttl-en { font-size: 38px; }
	.lang-my .fv-sub-ttl.diff { font-size: 28px; }
	.lang-my .fv-sub-ttl { font-size: 20px; }
	.lang-my .fv-ttl-main { font-size: 18px; }

	.lang-id .fv-ttl-en { font-size: 68px; }
	.lang-id .fv-sub-ttl.diff { font-size: 30px; }
	.lang-id .fv-sub-ttl { font-size: 18px; }
	.lang-id  .fv-ttl-main { font-size: 17px; }

	.lang-vi .fv-ttl-en { font-size: 48px; }
	.lang-vi .fv-sub-ttl.diff { font-size: 30px; }
	.lang-vi .fv-sub-ttl { font-size: 20px; }
	.lang-vi .fv-ttl-main {
    margin-top: 20px;
    font-size: 16px;
	}
	.lang-cmn .top-business-ttl {
			height:auto;
			padding: 20px 10px;
		}

	.lang-my .service-read { font-size: 18px; }
	.lang-my .service-ttl {
    margin-bottom: 20px;
    font-size: 25px;
	}
}

@media screen and (max-width: 959px) {
	.lang-cmn .service-strength-item-ttl { height: auto; }
	.lang-id .fv-sub-ttl.diff {
		font-size: 36px;
		line-height: 1.2;
	}
}

@media screen and (max-width: 729px) {
	.lang-my .fv-ttl-en { font-size: 30px; }
	.lang-my .fv-sub-ttl.diff { font-size: 22px; }
	.lang-my .fv-sub-ttl { font-size: 14px; }
	.lang-my .fv-ttl-main { font-size: 14px; }
}

@media screen and (max-width: 639px) {
	.lang-my .fv-ttl-en { font-size: 19px; }
	.lang-my .fv-sub-ttl.diff { font-size: 16px; }
	.lang-my .fv-ttl-main { font-size: 13px; }

	.lang-vi .fv-ttl-en { font-size: 32px; }
	.lang-vi .fv-sub-ttl.diff { font-size: 21px; }
	.lang-vi .fv-sub-ttl { font-size: 16px; }
	.lang-vi .fv-ttl-main { font-size: 14px; }

	.lang-id .fv-ttl-en { font-size: 46px; }
	.lang-id .fv-sub-ttl.diff { font-size: 22px; }
	.lang-id .fv-sub-ttl { margin-top: 5px; font-size: 15px; }
	.lang-id .fv-ttl-main { margin-top: 15px; font-size: 13px; }

	.lang-my .top-sub-ttl { font-size: 15px; }
	.lang-my .top-business-ttl { font-size: 15px; }
	.lang-vi .top-business-ttl { font-size: 14px; }

	.lang-my .service-read { font-size: 15px; }
	.lang-my .service-ttl { font-size: 17px; }
}
