@charset "UTF-8";

/*
Theme Name: Cambodia biz
Author: Lifesize
Description: original theme
Version： 1.0.0
*/

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
  --body-color: #fff;
  --link-color: #fff;
  --linkhover-color: #ddd; 
  --button-color: #AD4949;
  --back-color: #000;
  --border-color: #f4f4f4;
  --white-color: #fff;
}
body {
    background: #000; 
    color: #fff;
    text-align: center;
	font-family: 'Noto Sans JP','メイリオ',Meiryo,'MS Pゴシック',sans-serif;
}
img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    color: #CC1D21
}
a:hover { 
    color: #CC1D21;
    text-decoration: none;
}
.button {
    margin: 1rem;
}
a:hover img {
	opacity: 0.7;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}
.right {
	text-align: right;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
}
p, div {
	font-size: 16px;
    font-weight: normal;
    line-height: 2.0;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
} 
.clearfix:before {
  content: "";
  display: block;
  clear: both;
} 
.clearfix {
  display: block;
}
.clearboth {
	clear: both;
	display: block;
}

/*レスポンシブ
-------------------------------------*/
.show-pc {
	display: block;
}
.show-sp {
	display: none;
}

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

/*アニメーション
-------------------------------------*/
.anime-fadein {
  animation: fade-in 3s;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*ヘッダー
-------------------------------------*/
header {
	margin: 0;
	padding: 0;
	position: fixed;
	top: 50px;
	left: 40px;
	z-index: 200000;
	width: 180px;
	height: auto;
}

@media screen and (max-width: 768px){
	header {
		top: 30px;
		left: 30px;
		width: 100px;
	}

}

/* ななめスタイル
-------------------------------------*/
.angled-section {
  background: #fff;
  --slope: 14vw;
  --gap: 10px;
}

/* すべてのセクション共通 */
.angled-section > .section {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.angled-section > .section:not(:first-of-type) {
  margin-top: calc(-1 * (var(--slope) - var(--gap)));
}

/* hero：上は水平、下だけ右上がり */
.angled-section > #hero {
  background-image: url('img/top/top_bg_main.jpg');
  clip-path: polygon(
    0 0, /* 左上（水平） */
    100% 0, /* 右上（水平） */
    100% calc(100% - var(--slope)), /* 右下（上がる） */
    0 100% /* 左下（下がる） */
  );
}
.angled-section > #recruit-hero {
  background-image: url('img/common/bg_recruit.jpg');
  clip-path: polygon(
    0 0, /* 左上（水平） */
    100% 0, /* 右上（水平） */
    100% calc(100% - var(--slope)), /* 右下（上がる） */
    0 100% /* 左下（下がる） */
  );
}
/* about / philosophy：上も下も右上がり（同角度） */
.angled-section > #about {
  background-image: url('img/top/top_bg_about.jpg');
  clip-path: polygon(
    0 var(--slope), /* 左上（少し下） */
    100% 0,  /* 右上（上） */
    100% calc(100% - var(--slope)),  /* 右下（上） */
    0 100%   /* 左下（下） */
  );
}
.angled-section > #philosophy {
  background-image: url('img/top/top_bg_philosophy.jpg');
  clip-path: polygon(
    0 var(--slope),
    100% 0,
    100% calc(100% - var(--slope)),
    0 100%
  );
}
.angled-section > #services {
  background-image: url('img/top/top_bg_services.jpg');
  clip-path: polygon(
    0 var(--slope),
    100% 0,
    100% calc(100% - var(--slope)),
    0 100%
  );
}
.angled-section > .recruit {
  background-image: url('img/common/bg_recruit.jpg');
  clip-path: polygon(
    0 var(--slope),
    100% 0,
    100% calc(100% - var(--slope)),
    0 100%
  );
}
.angled-section > .gray {
  background-image: url('img/common/bg_gray.jpg');
  background-position: center;
  background-size: 100% auto;
  background-repeat: repeat-y;
  clip-path: polygon(
    0 var(--slope),
    100% 0,
    100% calc(100% - var(--slope)),
    0 100%
  );
}
.angled-section .inner {
	position: relative;
	padding: 150px 0;
	max-width: 1200px !important;
	margin: 0 auto;
	transform: none;
}

@media screen and (max-width: 1200px){
	.angled-section .inner {
		padding: 150px 10%;
	}
}

@media screen and (max-width: 768px){
	.angled-section {
	  --gap: 6px;
	}
	.angled-section .inner {
		padding: 100px 6%;
	}
	.angled-section > .gray {
	  background-image: url('img/common/bg_gray_sp.jpg');
	  background-position: center;
	  background-size: 100% auto;
	  background-repeat: repeat-y;
	  clip-path: polygon(
	    0 var(--slope),
	    100% 0,
	    100% calc(100% - var(--slope)),
	    0 100%
	  );
	}
}


/* メインコンテンツ
-------------------------------------*/
main {
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 1800px;
    width: 100%;
    text-align: left;
    color: #fff;
}
h2 {
	text-align: center;
	margin: 0 0 40px !important;
	padding: 0;
}
h2 img {
	height: 131px !important;
}
h3 {
	font-size: 30px;
	font-weight: bold;
	margin: 0 0 30px !important;
	padding: 0 !important;
}
h4 {
  position: relative;
  font-size: 25px;
  font-weight: bold;
  padding-left: 16px;
  margin-top: 70px;
  line-height: 1.4;
}
h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 26px;
  background: #CC1D21;
}

.content860 {
	max-width: 860px;
	margin: auto;
}
.content1000 {
	max-width: 1000px;
	margin: auto;
}
.content1100 {
	max-width: 1100px;
	margin: auto;
}

@media screen and (max-width: 768px){
	h2 {
		margin: 0 0 30px !important;
	}
	h2 img {
		height: 100px !important;
	}
	h3 {
		font-size: 22px;
		font-weight: bold;
		padding: 0 !important;
	}
	h4 {
		font-size: 20px;
		margin-top: 50px;
	}
	h4::before {
	  top: 3px;
	}
}


/*トップページ
-------------------------------------*/

/* hero */

#hero h1 {
	padding: 200px 0 50px;
}
#hero h1 img {
	max-width: 500px;
	width: 100%;
}
#recruit-hero h1 {
	padding: 200px 0 50px;
}
#recruit-hero h1 img {
	width: 100%;
}

@media screen and (max-width: 768px){
	#hero h1 {
		padding: 200px 0 50px;
	}
	#hero h1 img {
		max-width: 280px;
		width: 100%;
	}
}

/* philosophy */

#philosophy h3 {
	text-align: center;
}

@media screen and (max-width: 768px){
	#philosophy h3 {
		text-align: left;
	}
}

/* services */

#services h3 {
	text-align: center;
}
.service-list {
	list-style: none;
	padding: 0 !important;
	margin: 70px 0 !important;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.service-list li {
	flex-basis: calc(25% - 30px);
	box-sizing: border-box;
	padding: 0;	
	flex-grow: 1;	
	position: relative;
}
.service-list-box {
	background: #fff;
	color: #000;
	padding: 0;
}
.service-list-box img.show-pc,
.service-list-box img.show-sp {
	width: 100%;
}
img.service-num {
	position: absolute;
	top: -30px;
	left: 15px;
	width: 65px;
	height: auto;
}
.service-list li dl {
	margin: 0;
	padding: 20px;
	width: 100%;
}
.service-list li dl dt {
	margin: 0;
	padding: 0;
    height: 85px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    width: 100% !important;
}
.service-list li dl dd {
	margin: 0;
	padding: 0;
}
.service-list2 {
	margin-top: 70px;
}
.service-list3 {
	margin-top: 140px;
}
.service-list4 {
	margin-top: 210px;
}
.service-list1 dt,
.service-list2 dt,
.service-list4 dt {
	padding-top: 15px !important;
	height: 70px;
}

@media screen and (max-width: 998px){
	.service-list {
		list-style: none;
		padding: 0 !important;
		margin: 70px 0 50px !important;
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}
	.service-list li {
		flex-basis: calc(50% - 30px);
		box-sizing: border-box;
		padding: 0;	
		flex-grow: 1;	
		position: relative;
	}
	.service-list-box {
		background: #fff;
		color: #000;
		padding: 0;
		margin: 0;
	}
	img.service-num {
		position: absolute;
		top: -30px;
		left: 15px;
		width: 65px;
		height: auto;
	}
	.service-list3 {
		margin-top: 0;
	}
	.service-list4 {
		margin-top: 70px;
	}
}

@media screen and (max-width: 768px){
	#services h3 {
		text-align: left;
	}
	.service-list {
		list-style: none;
		padding: 0 !important;
		margin: 70px 0 !important;
		display: block;
		flex-wrap: wrap;
		gap: 30px;
	}
	.service-list li {
		flex-basis: calc(25% - 30px);
		box-sizing: border-box;
		padding: 0;	
		flex-grow: 1;	
		position: relative;
	}
	img.service-num {
		position: absolute;
		top: -25px;
		left: 15px;
		width: 50px;
		height: auto;
	}
	.service-list li dl dt {
	    height: auto;
	    margin-bottom: 10px;
	}
	.service-list2 {
		margin-top: 60px;
	}
	.service-list3 {
		margin-top: 60px;
	}
	.service-list4 {
		margin-top: 60px;
	}
	.service-list1 dt,
	.service-list2 dt,
	.service-list4 dt {
		padding-top: 0 !important;
		height: auto;
	}
}

/* recruit */

.recruit-box {
	padding-left: 35%;
}

@media screen and (max-width: 768px){
	.recruit-box {
		padding-left: 0;
	}
}


/* detail */

#details h3 {
	text-align: center;
}
.sakai th {
	width: 90px !important;
}

@media screen and (max-width: 768px){
	#details h3 {
		text-align: left;
	}
}


/* recruit-content */

#recruit-content {
	padding-bottom: 100px;
}
#recruit-content h3 {
	text-align: center;
}
#recruit-content .content1000 {
	margin-bottom: 120px;
}
.recruit-box-wh {
	background-color: rgba(255, 255, 255, 0.7);
	padding: 5%;
	color: #000;
	margin-bottom: 20px;
}
.recruit-box-wh-txt {
	width: 48%;
}
.recruit-box-wh h4 {
	margin: 0 0 20px !important;
}
.recruit-box-wh img {
	width: 48%;
}
.recruit-box-l {
	float: left;
}
.recruit-box-r {
	float: right;
}
#recruit-content table ul {
	margin: 0;
	list-style-type: disc;
	padding-left: 1.5em;
}
#recruit-content table ul li::marker {
  color: #CC1D21;
}

@media screen and (max-width: 768px){
	#recruit-content {
		padding-bottom: 20px;
	}
	#recruit-content .content1000 {
		margin-bottom: 70px;
	}
	.recruit-box-wh {
		padding: 10%;
		margin-bottom: 30px;
	}
	.recruit-box-wh-txt {
		width: 100%;
	}
	.recruit-box-wh img {
		width: 100%;
	}
	.recruit-box-l {
		float: none;
	}
	.recruit-box-r {
		float: none;
	}
}


/*共通スタイル
-------------------------------------*/
.btn-more {
	margin-top: 20px !important;
	display: block;
}
.btn-more img {
	width: 89px;
}
.table-basic {
	width: 100%;
	font-size: 14px;
	margin: 0 0 30px;
}
.table-basic tr {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.table-basic th {
	padding: 11px 15px;
	vertical-align: top;
	width: 125px;
}
.table-basic td {
	padding: 10px 15px;
	vertical-align: top;
}
.map {
	margin-bottom: 70px;
}

@media screen and (max-width: 768px){
	.map {
		margin-top: 30px;
	}
}



/*フッター
-------------------------------------*/

.footer {
	position: relative;
	background: #1B1B1B; 
	color: #fff;
	text-align: center;
	clip-path: polygon(
    0 var(--slope), /* 左上：少し下げる */
    100% 0, /* 右上：上がる（右上がり） */
    100% 100%, /* 右下：水平 */
    0 100% /* 左下：水平 */
  );
	margin-top: calc(-1 * (var(--slope) - var(--gap))); /* 前セクションとの隙間調整 */
}
.footer .inner {
	padding: 220px 10% 40px;
	max-width: 860px;
	margin: 0 auto;
}
.footer h2 img {
	width: 136px;
	height: auto !important;
}
.footer p {
	margin: 0 0 30px;
}
.footer small {
	display: block;
	font-size: 0.8rem;
}

@media (max-width: 900px) {
  .footer .inner {
    padding: 160px 6% 50px;
  }
}
@media screen and (max-width: 768px){
	.footer .inner {
		padding: 120px 6% 40px;
	}
}


/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: block;
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}
#pagetop:hover{
    opacity: 0.9;
}

@media screen and (max-width: 768px){
	#pagetop {
	    bottom: 15px;
	    right: 15px;
	}
}
