@charset "UTF-8";
body {
  background: none;
}

main {
  background: none;
  margin: 0 auto;
  overflow: hidden;
}

section {
  margin-bottom: 5rem;
}

@media only screen and (max-width: 768px) {
  section {
    margin-bottom: 3rem;
  }
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .sp_only {
    display: inline;
  }
}

@media only screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-between {
  justify-content: space-between;
}

.bg {
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 12rem;
  position: relative;
}

.bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  background: #EDF5F5;
  z-index: -2;
}

@media only screen and (max-width: 768px) {
  .bg {
    padding-bottom: 6rem;
  }
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
}

.container02 {
	max-width: 1200px;
	margin: auto;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.robo { /* または table.robo */
	/* 幅を親要素の100%にする */
	width: 100%; 
	border-collapse: collapse;
	margin-top: 30px;
}
/* th, td に罫線とパディングを適用 */
.robo, .robo th, .robo td {
	border: 1px solid #ccc;
}
.robo th, .robo td {
	padding: 10px;
	text-align: left;
}

/* ヘッダー行のスタイル */
        .robo th {
            background-color: #f1f8ff; /* 薄いブルーの背景 */
            font-weight: 600;
            color: #006ACC; /* <-- この行でテキストの色を青に指定しています */
            border-top: 2px solid #006ACC;
        }

.note {
	font-size: 0.9em;
	color: #555;
	margin-top: 10px;
}

.annotation-list {
	list-style: none; 
	padding: 0;
	margin: 0;
}


.annotation-list li {
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.6;
	margin-bottom: 8px;
}

.container02 {
	
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 6px; /* 角の丸みを調整 */
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); /* 影を調整 */
	border: 1px solid #e0e6ed; /* 全体の薄い枠線を追加 */
}

/* ヘッダーセクションのスタイル */
.header02 {
	display: flex;
	background-color: #ffffff;
	border-bottom: 2px solid #0056b3; /* 下線を画像に合わせる */
	font-weight: bold;
	text-align: center;
}

.header-item {
	padding: 12px 15px; /* 上下のパディングを調整 */
	font-size: 1.2rem; /* フォントサイズ調整 */
	flex: 1;
	color: #333; /* ヘッダーの文字色調整 */
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-item:first-child {
	border-right: 1px solid #e0e0e0;
}

.no-wrap-text {
  /* 1. テキストの折り返しを禁止する */
  white-space: nowrap;

  /* 2. 要素の幅を超えたテキストを隠す (任意) */
  overflow: hidden;

  /* 3. 隠したテキストの代わりに省略記号 (...) を表示する (任意) */
  text-overflow: ellipsis;
}

/* 特長行のスタイル */
.feature-row {
	display: flex;
	border-top: 1px solid #f0f0f0; /* 行間の境界線を薄く */
	border-bottom: 1px solid #ddd; /* カテゴリごとの区切り線 */
}

/* 最後の行の下線は削除 */
.feature-row:last-of-type {
	border-bottom: none;
}

/* 特長（左側）のスタイル */
.feature-item {
	flex: 1;
	padding: 20px;
	border-right: 1px solid #f0f0f0; /* 右側の境界線を薄く */
	background-color: #e6f2ff; /* 左側全体を薄いブルーに */
}

.feature-item h3 {
	font-size: 1.1rem; /* 見出しのフォントサイズ調整 */
	margin-bottom: 8px; /* 下のマージン調整 */
	display: flex;
	align-items: center;
}

.feature-tag {
	background-color: #336699; /* タグのベースカラーを安全性と同じに統一 */
	color: #fff;
	padding: 3px 10px; /* パディング調整 */
	border-radius: 4px; /* 角の丸みを調整 */
	font-size: 0.8rem; /* フォントサイズ調整 */
	margin-right: 12px; /* 右マージン調整 */
	font-weight: bold;
	flex-shrink: 0;
	min-width: 60px; /* 最小幅を調整 */
	text-align: center;
}

/* 各タグの背景色を「安全性」の色(#336699)に統一 */
.feature-tag.safety { background-color: #336699; }
.feature-tag.efficiency { background-color: #336699; }
.feature-tag.practicality { background-color: #336699; }
.feature-tag.maintainability { background-color: #336699; }

.feature-title {
	font-size: 1.1rem; /* タイトルのフォントサイズ調整 */
	font-weight: bold;
	color: #1a3760; /* ★修正: 特長タイトルの色を濃いブルーに変更 */
}

.feature-description {
	color: #1a3760; /* ★修正: 説明文の色を濃いブルーに変更 */
	line-height: 1.6;
	margin-top: 10px;
}

/* 課題（右側）のスタイル */
.issue-item {
	flex: 1;
	padding: 20px; /* 左側と揃えるための外側パディング */
	/* background-color: #fcfcfc; /* 課題セクションの背景色調整 */
}

.issue-list {
	list-style: none;
	padding: 0; 
	margin: 0;
}

.issue-list li {
	color: #555;
	margin-bottom: 12px;
	line-height: 1.6;
	position: relative;
	padding-left: 18px; /* テキストのインデント */
}

.issue-list li:last-child {
		margin-bottom: 0; /* 最後の要素はマージンなし */
	}

.issue-list li::before {
	content: "\2022"; /* 大きい丸のUnicode */
	color: #0056b3; /* 丸の色をヘッダーのブルーに合わせる */
	font-weight: bold;
	position: absolute;
	left: 0; 
	top: -2px; /* 丸を上に持ち上げ、テキストを相対的に下に下げる */
	font-size: 1.2rem; /* 丸のサイズ調整 */
	line-height: 1.6; /* テキストと丸の高さを合わせる */
}

/* 左側をブルーにするため、奇数・偶数関係なく一律ブルー */
.feature-row .feature-item {
	background-color: #e6f2ff; /* 薄いブルー */
}
/* 右側は以前のストライプを維持 */
.feature-row:nth-child(odd) .issue-item {
	/* background-color: #f9fcff; /* 薄い青 */
}
.feature-row:nth-child(even) .issue-item {
	background-color: #ffffff;
}

/* コンテナ */
.robot-container {
	max-width: 1200px;
	margin: 0 auto;
	/* padding: 20px; */
	text-align: center;
}

/* メインメッセージ */
.robot-main-message {
	font-size: 24px; 
	font-weight: 700;
	color: #006ACC; /* 青系の色 */
	margin: 40px 0;
	padding: 0 10px;
	line-height: 1.8;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* 画像とキャプションのレイアウト */
.robot-content-wrapper {
	display: flex;
	flex-direction: column; /* モバイルでは縦並び */
	align-items: center;
	gap: 20px;
}

/* メイン画像エリア */
.robot-main-image-area {
	width: 100%;
	max-width: 800px;
	position: relative;
	padding: 0 10px;
	box-sizing: border-box;
}

/* メイン画像 */
.robot-main-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* 画像とキャプションのレイアウト */
.Processautomation-content-wrapper {
	display: flex;
	flex-direction: column; /* モバイルでは縦並び */
	align-items: center;
	gap: 20px;
}

/* メイン画像エリア */
.Processautomation-main-image-area {
	width: 100%;
	max-width: 800px;
	position: relative;
	padding: 0 10px;
	box-sizing: border-box;
}

/* メイン画像 */
.Processautomation-main-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
}





/* レスポンシブ対応 (モバイル向け) */
@media (max-width: 600px) {
	body {
		/*padding: 10px;*/
	}
	.container {
		box-shadow: none;
		border-radius: 0;
		border: none;
	}

	.header {
		flex-direction: column;
		border-bottom: none;
		margin-bottom: 10px;
	}
	.header-item {
		border-bottom: 1px solid #e0e0e0;
		padding: 10px 15px;
	}
	.header-item:first-child {
		border-right: none;
	}
	.header-item:last-child {
		border-bottom: none;
	}

	.feature-row {
		flex-direction: column;
		border-top: none;
		margin-bottom: 15px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		border: 1px solid #e0e6ed;
		border-bottom: none; /* モバイルのカード自体に線があるため削除 */
	}

	.feature-item {
		border-right: none;
		border-bottom: 1px solid #f0f0f0;
		background-color: #e6f2ff !important; /* モバイルでも左側はブルーを維持 */
	}

	.issue-item {
		background-color: #ffffff !important; /* モバイルでは右側は白を維持 */
	}

	/* モバイルでは奇数偶数の背景色をなくす */
	.feature-row:nth-child(odd) .feature-item,
	.feature-row:nth-child(even) .feature-item {
		background-color: #e6f2ff !important;
	}
	.feature-row:nth-child(odd) .issue-item,
	.feature-row:nth-child(even) .issue-item {
		background-color: #ffffff !important;
	}

	.feature-item h3 {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 5px;
	}
	.feature-tag {
		margin-right: 0;
		margin-bottom: 8px;
		font-size: 0.75rem;
		min-width: 50px;
		padding: 2px 8px;
	}
	.feature-title {
		font-size: 1rem;
	}
	.feature-description {
		font-size: 0.8rem;
		color: #1a3760; /* モバイル向けにも濃いブルーを適用 */
	}
	/* モバイルでのリストインデント調整 */
	.issue-list {
		padding-left: 0;
	}
	.issue-list li {
		font-size: 0.85rem;
		padding-left: 15px; /* インデントを小さめに設定 */
	}
	.issue-list li::before {
		left: 0; 
		top: -1px; /* モバイル向けに微調整 */
	}
}

/****************テキスト共通****************/
.h2_normal {
  margin: 0 auto 2.5rem;
  font-size: 1.875rem;
  text-align: center;
}

.h2_normal .en {
  display: block;
  margin-bottom: 0.625rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #D4E7EC;
}

@media screen and (max-width: 767px) {
  .h2_normal {
    font-size: 2.4rem;
  }
  .h2_normal .en {
    font-size: 1.6rem;
  }
}

p {
  line-height: 1.8;
}

p.adjustment{
 margin-bottom: 40px;			
}


a:hover {
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 1rem;
  }

p.adjustment{
	margin-bottom: 40px;			
	}
}

/****************パーツ共通****************/
.btn {
  display: block;
  margin: 0 auto;
  padding: 1.6rem 0;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .btn {
    padding: 2.5rem 0;
    font-size: 1.4rem;
  }
}

.previewBtn {
  background: #fff;
  color: #BE1E1E;
  border: solid 2px #BE1E1E;
}

.previewBtn:hover {
  background: #BE1E1E;
  color: #fff;
}

.contactBtn {
  background: #fff;
  color: #006ACC;
  border: solid 2px #006ACC;
}

.contactBtn:hover {
  background: #006ACC;
  color: #fff;
}

.dlBtn {
  background: linear-gradient(90deg, #006acc, #00b487 99.92%);
  color: #fff;
  border: 2px solid #006acc;
  border-image: linear-gradient(to right, #006acc 0%, #00b487 99.92%);
  border-image-slice: 1;
}

.dlBtn:hover {
  color: #006ACC;
  border: solid 2px #006ACC;
  background: #fff;
}

.normalBtn {
  max-width: 316px;
  margin-top: 2.5rem;
  background: #006ACC;
  color: #fff;
  border: solid 2px #006ACC;
}

.normalBtn:hover {
  background: #fff;
  color: #006ACC;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  .normalBtn {
    margin-top: 1.5rem;
  }
}

.bluebox {
  width: 100%;
  margin-bottom: 6rem;
  padding: 4.375rem 0.8rem 2.5rem 0.8rem;
  background: #006ACC;
  position: relative;
}

.bluebox::before {
  content: "";
  position: absolute;
  margin: 0 auto;
  left: 46%;
  top: 0;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #EDF5F5;
}

.bluebox p {
  font-size: 2.25rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .bluebox {
    margin-bottom: 4rem;
    padding: 4.375rem 1rem 2.5rem 1rem;
  }
  .bluebox::before {
    left: 43%;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #EDF5F5;
  }
  .bluebox p {
    font-size: 2rem;
  }
}

.side_btn {
  position: fixed;
  right: 0;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
  z-index: 1000;
  display: block;
  padding: 1.5rem 0.875rem;
}

@media screen and (max-width: 820px) {
  .side_btn {
    display: none !important;
  }
}

.event_btn {
  top: 100px;
  background: #BE1E1E;
  border: 2px solid #BE1E1E;
}

.event_btn:hover {
  color: #BE1E1E;
  background: #fff;
}

.page_btn {
  top: 270px;
  background: #006ACC;
  border: 2px solid #006ACC;
}

.page_btn:hover {
  color: #006ACC;
  background: #fff;
}

@media screen and (min-width: 821px) {
  .footer_menu {
    display: none !important;
  }
}

.footer_menu {
  width: 100%;
  padding: 1.25rem 0.625rem;
  position: fixed;
  bottom: 0;
  background: rgba(2, 11, 20, 0.9);
  z-index: 9999;
}

.footer_menu .footer_btn {
  display: block;
  width: 48%;
  padding: 1rem 0;
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

.footer_menu .footer_event_btn {
  background: #BE1E1E;
}

.footer_menu .footer_page_btn {
  background: #006ACC;
}

@media screen and (max-width: 820px) {
  .l-footerTop {
    bottom: 7rem;
  }
}

/****************cta****************/
#cta {
  width: 100%;
  margin-bottom: 0;
  z-index: 4;
  background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/cuttingrobot/cta_p.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #cta {
    background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/cuttingrobot/sp_cta_p.jpg) no-repeat;
    /*background-size: 100%;*/
  }
}

#cta .inn {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

#cta .inn p {
  margin-bottom: 2.5rem;
  padding: 0 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

#cta .inn .btnArea {
  margin: 0 auto;
  width: 680px;
}

#cta .inn .btnArea li {
  width: 316px;
}

#cta .inn .btnArea li a {
  display: block;
  padding: 1.5rem 0;
}

@media screen and (max-width: 767px) {
  #cta .inn {
    width: 100%;
    padding: 0 0.625rem;
  }
  #cta .inn p {
    font-size: 2.2rem;
  }
  #cta .inn .btnArea {
    width: 100%;
  }
  #cta .inn .btnArea li {
    margin: 0 auto 1.4rem;
  }
  #cta .inn .btnArea li a {
    padding: 2.5rem 0;
  }
}

#cta .footer_inn {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

#cta .footer_inn .box {
  width: 48%;
  text-align: center;
}

#cta .footer_inn .box:last-child {
  border-left: 1px solid #fff;
}

#cta .footer_inn .box .ttl {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

#cta .footer_inn .box .btn_area {
  margin: 0 auto 0.875rem;
  max-width: 316px;
}

#cta .footer_inn .box .btn_area a {
  display: block;
  padding: 1.5rem 0;
}

#cta .footer_inn .box .note {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  #cta .footer_inn {
    display: block;
  }
  #cta .footer_inn .box {
    width: 100%;
  }
  #cta .footer_inn .box:last-child {
    border-left: none;
  }
  #cta .footer_inn .box:first-child {
    margin-bottom: 2rem;
  }
  #cta .footer_inn .box .ttl {
    font-size: 2.2rem;
  }
  #cta .footer_inn .box .note {
    font-size: 1.4rem;
  }
}

/****************kv****************/
#kv {
  width: 100%;
  height: 482px;
  position: relative;
  z-index: 4;
  background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/cuttingrobot/mv_p.jpg) no-repeat center;
  background-size: cover;
}

#kv .bread {
  width: 100%;
  position: absolute;
  top: 83px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  #kv .bread {
    max-width: 1140px;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

#kv .bread .bread_cont {
  width: 100%;
}

#kv .bread .bread_cont .bread_list {
  margin: 0 12px 0 0;
  font-size: 0.75rem;
  color: #fff;
}

#kv .bread .bread_cont .bread_list:first-child:before {
  content: none;
}

#kv .bread .bread_cont .bread_list::before {
  content: ">";
  margin: 0 12px 0 0;
  font-size: 0.75rem;
  color: #fff;
}

#kv .bread .bread_cont .bread_list .bread_item {
  transition: opacity .3s ease;
  color: #fff;
}

#kv .bread .bread_cont .bread_list .bread_item:hover {
  opacity: .7;
}

#kv .inn {
  position: absolute;
  width: 100%;
  max-width: 1080px;
  padding: 0 0.625rem;
  text-align: center;
  z-index: 1;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

#kv .inn .flex {
  flex: 1;
}

#kv .inn .flex .txtarea {
  width: 66%;
  color: #fff;
  text-align: left;
}

#kv .inn .flex .txtarea h1 {
  margin-bottom: 2rem;
  font-size: 2.75rem;
  font-weight: bold;
}

#kv .inn .flex .txtarea h1 .sub {
  display: block;
  font-size: 2rem;
  margin-bottom: 1.6rem;
}

#kv .inn .flex .txtarea .copy {
  margin-bottom: 2rem;
}

#kv .inn .flex .txtarea .copy .marker {
  font-size: 1.75rem;
  font-weight: bold;
  background: linear-gradient(to right, #006acc, #00b487);
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: bottom;
}

#kv .inn .flex .txtarea .achievement figure {
  margin-right: 1rem;
}

#kv .inn .flex .txtarea .achievement figure:last-child {
  margin-right: 0;
}

#kv .inn .flex .txtarea .achievement figure img {
  max-width: 170px;
}

#kv .inn .flex .txtarea .achievement figure .img03 {
  max-width: 184px;
}

#kv .inn .flex .movie {
  width: 34%;
}

#kv .inn .kv_scroll {
  font-size: 0.8125rem;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: normal;
  writing-mode: tb-rl;
  position: absolute;
  bottom: 0;
  right: 40px;
}

#kv .inn .kv_scroll span {
  width: 1px;
  height: 50px;
  background: #fff;
  box-sizing: border-box;
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width: 915px) {
  #kv .inn .flex .txtarea {
    width: 60%;
  }
  #kv .inn .flex .txtarea h1 {
    margin-bottom: 1.4rem;
    font-size: 2.4rem;
  }
  #kv .inn .flex .txtarea h1 .sub {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  #kv .inn .flex .txtarea .copy {
    margin-bottom: 1.4rem;
  }
  #kv .inn .flex .txtarea .achievement figure {
    margin-right: 0.4rem;
  }
  #kv .inn .flex .txtarea .achievement figure img {
    max-width: 130px;
  }
  #kv .inn .flex .txtarea .achievement figure .img03 {
    max-width: 140px;
  }
}

@media screen and (max-width: 768px) {
  #kv {
    height: 100%;
    min-height: 1024px;
    background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/cuttingrobot/sp_mv_p.jpg) no-repeat center;
    background-size: 100%;
  }
}

@media screen and (max-width: 768px) and (max-width: 767px) {
  #kv {
    min-height: 668px;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  #kv .bread {
    padding-left: 0.625rem;
  }
  #kv .inn {
    display: block;
    top: 57%;
  }
  #kv .inn .flex .txtarea {
    width: 100%;
  }
  #kv .inn .flex .txtarea h1 {
    font-size: 3.4rem;
  }
  #kv .inn .flex .txtarea h1 .sub {
    font-size: 2rem;
    line-height: 1.6;
  }
  #kv .inn .flex .txtarea .copy {
    font-size: 1.4rem;
  }
  #kv .inn .flex .txtarea .copy .marker {
    font-size: 1.8rem;
  }
  #kv .inn .flex .txtarea .achievement {
    display: none;
  }
  #kv .inn .flex .movie {
    width: 100%;
  }
  #kv .inn .kv_scroll {
    display: none;
  }
}

#kv_cta {
  width: 100%;
  margin-bottom: 4.0rem;
  padding: 2rem 0;
  align-items: center;
  background: #E4EFF2;
}

#kv_cta p {
  width: 25%;
  font-size: 1.25rem;
  font-weight: bold;
}

#kv_cta .btnArea {
  width: 75%;
}

#kv_cta .btnArea li {
  margin-right: 2rem;
  width: 30%;
}

#kv_cta .btnArea li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 940px) {
  #kv_cta p {
    width: 24%;
  }
  #kv_cta .btnArea {
    width: 76%;
  }
  #kv_cta .btnArea li {
    margin-right: 1rem;
    width: 30%;
  }
  #kv_cta .btnArea li:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 820px) {
  #kv_cta {
    display: flex;
    align-items: center;
  }
  #kv_cta p {
    width: 100%;
    margin-bottom: 0.8rem;
    text-align: center;
  }
  #kv_cta .btnArea {
    width: 100%;
    justify-content: center;
  }
  #kv_cta .btnArea li {
    margin-right: 1rem;
    width: 30%;
  }
  #kv_cta .btnArea li:last-child {
    margin-right: 0;
  }
  #kv_cta .btnArea li a {
    height: 40px;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/****************intro****************/
/****************about****************/
#about article {
  display: flex;
  align-items: center;
}

#about article .txtarea {
  width: 46%;
}

#about article .txtarea h2 {
  margin-bottom: 1.875rem;
  font-size: 24px;
  color: #006ACC;
  line-height: 1.8;
  position: relative;
}

#about article .txtarea h2::before {
  content: "";
  display: block;
  width: 124px;
  height: 124px;
  background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/depalletize/treatment.png) no-repeat right;
  background-size: contain;
  position: absolute;
  right: 40px;
  top: 0px;
  z-index: -1;
}

@media screen and (max-width: 820px) {
  #about article .txtarea h2::before {
    right: 262px;
  }
}

@media screen and (max-width: 767px) {
  #about article .txtarea h2::before {
    right: 40px;
  }
}

#about article .txtarea .ttl {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: bold;
}

#about article .txtarea p .blue {
  color: #006ACC;
  font-weight: bold;
}

#about article figure {
  width: 50%;
}

#about .border {
  margin-top: 1.875rem;
  padding: 1.875rem;
  border: solid 1px #9DC1C8;
}

#about .border .imgarea {
  width: 50%;
}

#about .border .imgarea figure {
  width: 48%;
}

@media screen and (max-width: 820px) {
  #about article {
    display: block;
  }
  #about article .txtarea {
    width: 100%;
  }
  #about article .txtarea h2 {
    font-size: 1.2rem;
  }
  #about article .txtarea h2::before {
    display: block;
    width: 100px;
    height: 100px;
  }
  #about article .txtarea .ttl {
    font-size: 1rem;
  }
  #about article figure {
    width: 100%;
    margin-top: 1.6rem;
  }
  #about .border .imgarea {
    display: block;
    width: 100%;
    margin-top: 1rem;
  }
  #about .border .imgarea figure {
    width: 100%;
    margin-top: 1rem;
  }
}

/****************feature****************/
#feature {
  padding-top: 6rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #feature {
    padding-top: 3rem;
  }
}

#feature .bg::after {
  content: "KYOTO ROBOTICS";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  transform: translateY(-50%);
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10.25rem;
  color: #D4E7EC;
  z-index: -1;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1048px) {
  #feature .bg::after {
    font-size: 8rem;
  }
}

@media screen and (max-width: 820px) {
  #feature .bg::after {
    display: none;
  }
}

#feature article h2 {
  margin: 0 auto 6.4rem;
  font-size: 1.875rem;
  line-height: 1.8;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  #feature article h2 {
    margin: 0 auto 3rem;
    font-size: 2.4rem;
  }
}

#feature article h2::after {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10.25rem;
  color: #D4E7EC;
  z-index: -1;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1048px) {
  #feature article h2::after {
    font-size: 8rem;
  }
}

@media screen and (max-width: 818px) {
  #feature article h2::after {
    font-size: 6.4rem;
  }
}

@media screen and (max-width: 768px) {
  #feature article h2::after {
    display: none;
  }
}

#feature article .h2_strengths::after {
  content: "Strengths";
}

#feature article .h2_function::after {
  content: "Function";
}

#feature article .h2_process::after {
  content: "Process";
}

#feature .strengths ul li {
  width: 31%;
}

#feature .strengths ul li .txt {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  text-align: center;
  height: 120px;
}

#feature .strengths ul li .txt .red {
  color: #BE1E1E;
  font-size: 1.25rem;
  font-weight: bold;
}

@media screen and (max-width: 790px) {
  #feature .strengths ul li .txt {
    font-size: 1rem;
  }
  #feature .strengths ul li .txt .red {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  #feature .strengths ul {
    display: block;
  }
  #feature .strengths ul li {
    width: 100%;
  }
  #feature .strengths ul li .txt {
    font-size: 1.6rem;
    height: 100px;
  }
  #feature .strengths ul li .txt .red {
    font-size: 2rem;
  }
}

#feature .function {
  margin-bottom: 6rem;
}

#feature .function .popupbg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #002B53;
  opacity: 0.8;
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
}

#feature .function .global_wrapper .item {
  position: relative;
  max-width: 1080px;
  height: 200px;
  margin: 0 auto 1rem;
  padding: 1.875rem 2.4rem;
  background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/depalletize/function_bg.png) no-repeat;
  background-size: 100%;
  color: #1A1A1A;
}

@media screen and (max-width: 880px) {
  #feature .function .global_wrapper .item {
    padding: 1rem 2rem;
    height: 160px;
  }
}

@media screen and (max-width: 768px) {
  #feature .function .global_wrapper .item {
    height: 150px;
  }
}

@media screen and (max-width: 767px) {
  #feature .function .global_wrapper .item {
    height: auto;
    min-height: 535px;
    margin: 0 auto 1.875rem;
    padding: 2rem 1.6rem;
    background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/depalletize/sp_function_bg.png) no-repeat;
    background-size: 100%;
  }
}

@media screen and (max-width: 390px) {
  #feature .function .global_wrapper .item {
    height: auto;
    min-height: 503px;
  }
}

#feature .function .global_wrapper .item .inn {
  align-items: center;
}

@media screen and (max-width: 767px) {
  #feature .function .global_wrapper .item .inn {
    display: block;
  }
}

#feature .function .global_wrapper .item .inn .txtbox {
  width: 76%;
}

#feature .function .global_wrapper .item .inn .txtbox h3 {
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  color: #1A1A1A;
  display: flex;
  align-items: center;
}

#feature .function .global_wrapper .item .inn .txtbox h3 span {
  padding-right: 0.5rem;
  color: #006ACC;
  font-size: 1.125rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 950px) {
  #feature .function .global_wrapper .item .inn .txtbox h3 {
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
  }
  #feature .function .global_wrapper .item .inn .txtbox h3 span {
    font-size: 1rem;
  }
  #feature .function .global_wrapper .item .inn .txtbox p {
    font-size: 0.86rem;
  }
}

@media screen and (max-width: 767px) {
  #feature .function .global_wrapper .item .inn .txtbox {
    width: 100%;
  }
  #feature .function .global_wrapper .item .inn .txtbox h3 {
    margin-bottom: 0.4rem;
    font-size: 1.7rem;
    line-height: 1.8;
    display: block;
  }
  #feature .function .global_wrapper .item .inn .txtbox h3 span {
    font-size: 1.4rem;
    display: block;
    line-height: 1;
  }
  #feature .function .global_wrapper .item .inn .txtbox p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
}

#feature .function .global_wrapper .item .inn figure {
  width: 22%;
}

#feature .function .global_wrapper .item .inn figure img {
  max-width: 240px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #feature .function .global_wrapper .item .inn figure {
    width: 100%;
  }
  #feature .function .global_wrapper .item .inn figure img {
    max-width: 300px;
  }
}

#feature .process .inn {
  border: 1px solid #9DC1C8;
}

#feature .process .inn .box {
  padding: 1.25rem;
  width: 50%;
  display: flex;
  align-items: center;
}

#feature .process .inn .box figure {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#feature .process .inn .box figure .pic01 {
  width: 132px;
}

#feature .process .inn .box .txt {
  width: 48%;
  margin-left: 2.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}

#feature .process .inn .box:nth-child(2n) {
  border-left: 1px solid #9DC1C8;
}

#feature .process .inn .box:nth-child(n+3) {
  border-top: 1px solid #9DC1C8;
}

@media screen and (max-width: 1024px) {
  #feature .process .inn .box {
    display: block;
  }
  #feature .process .inn .box figure {
    width: 130px;
    height: 170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  #feature .process .inn .box .txt {
    width: 100%;
    margin-top: 1rem;
    margin-left: 0;
    text-align: center;
    font-size: 1.2rem;
  }
}

/****************process****************/
#process ul li {
  width: 31.5%;
}

#process ul li a {
  display: block;
  height: 439px;
  margin: 0 auto;
  background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/depalletize/process_bg.png) no-repeat;
  background-size: 100%;
  filter: drop-shadow(3px 3px 12px #d0d9db);
  color: #1A1A1A;
  transition: .3s;
}

@media screen and (min-width: 767px) and (max-width: 980px) {
  #process ul li a {
    height: 390px;
  }
}

@media screen and (max-width: 768px) {
  #process ul li a {
    height: 310px;
  }
}

@media screen and (max-width: 640px) {
  #process ul li a {
    background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/depalletize/sp_process_bg.png) no-repeat;
    background-size: 100%;
  }
}

#process ul li a .clip {
  padding: 0.125rem;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
}

#process ul li a .txtbox {
  margin: 0 auto;
  padding: 1.5rem;
}

#process ul li a .txtbox .company {
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
  color: #9DC1C8;
}

#process ul li a .txtbox .company::after {
  content: "　様";
  font-size: inherit;
}

#process ul li a .txtbox .lead {
  padding: 0 0 0.75rem;
  font-weight: bold;
  line-height: 1.6;
  color: #006acc;
}

#process ul li a .txtbox .box .info {
  width: 100%;
  margin-bottom: 0.5rem;
  align-items: flex-start;
}

#process ul li a .txtbox .box .info .infoHead {
  width: 42px;
  margin: 0 0.625rem 0 0;
  padding: 0.25rem 0;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background: #006acc;
}

#process ul li a .txtbox .box .info .infoBody {
  flex: 1 1;
}

#process ul li a .txtbox .box .info .infoBody .text {
  width: 100%;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.7;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  #process ul li a .txtbox {
    padding: 0.8rem;
  }
  #process ul li a .txtbox .company {
    font-size: 0.7rem;
  }
  #process ul li a .txtbox .lead {
    font-size: 1rem;
  }
  #process ul li a .txtbox .box .info {
    margin-bottom: 0.2rem;
  }
  #process ul li a .txtbox .box .info .infoHead {
    font-size: 0.5rem;
  }
  #process ul li a .txtbox .box .info .infoBody .text {
    font-size: 0.5rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 767px) and (max-width: 980px) {
  #process ul li a .txtbox {
    padding: 0.8rem;
  }
  #process ul li a .txtbox .company {
    padding-bottom: 0.4rem;
    font-size: 0.7rem;
  }
  #process ul li a .txtbox .lead {
    padding: 0 0 0.4rem;
    line-height: 1.4;
  }
  #process ul li a .txtbox .box .info {
    margin-bottom: 0.2rem;
  }
  #process ul li a .txtbox .box .info .infoHead {
    width: 42px;
    margin: 0 0.625rem 0 0;
    padding: 0.25rem 0;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    background: #006acc;
  }
  #process ul li a .txtbox .box .info .infoBody {
    flex: 1 1;
  }
  #process ul li a .txtbox .box .info .infoBody .text {
    width: 100%;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.7;
    word-break: break-all;
  }
}

@media screen and (max-width: 767px) {
  #process ul {
    display: block;
  }
  #process ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
  #process ul li:last-child {
    margin-bottom: 0;
  }
  #process ul li a {
    height: auto;
    min-height: 500px;
  }
  #process ul li a .clip {
    padding: 0.2rem;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
  }
  #process ul li a .txtbox .company {
    font-size: 1.2rem;
  }
  #process ul li a .txtbox .box .info .infoHead {
    width: 50px;
    font-size: 1.2rem;
  }
  #process ul li a .txtbox .box .info .infoBody .text {
    font-size: 1.2rem;
  }
}

/****************pattern****************/
#pattern .bg {
  padding-bottom: 5rem;
}

#pattern ul li {
  width: 48%;
}

#pattern ul li figure {
  margin-bottom: 1.875rem;
}

#pattern ul li .ttl {
  margin-bottom: 1rem;
  color: #006ACC;
  font-size: 1.25rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #pattern ul li .ttl {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  #pattern .bg {
    padding-bottom: 5rem;
  }
  #pattern ul {
    display: block;
  }
  #pattern ul li {
    width: 100%;
    margin-bottom: 1.4rem;
  }
  #pattern ul li:last-child {
    margin-bottom: 0;
  }
  #pattern ul li figure {
    margin-bottom: 1.6rem;
  }
  #pattern ul li .ttl {
    font-size: 1.8rem;
  }
}

/****************contact****************/
@media screen and (max-width: 768px) {
  #contact .container {
    display: block;
  }
}

#contact .ex {
  width: 48%;
}

#contact .ex .ttl {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  font-weight: bold;
}

#contact .ex .ttl .blue {
  font-size: 1.5rem;
  color: #006ACC;
}

#contact .ex .txt {
  margin-bottom: 1.25rem;
}

#contact .ex figure {
  margin: 0 auto 1.275rem;
  text-align: center;
}

#contact .ex .conBox {
  max-width: 400px;
  padding: 1.75rem;
  height: 240px;
  margin: 0 auto;
  background: url(/kyotorobotics/jp/wp-content/themes/kyotorobotics/assets/img/cuttingrobot/conbox_bg.png) no-repeat;
  background-size: 100%;
}

#contact .ex .conBox .inn .ttl {
  margin-bottom: 0.875rem;
  font-size: 1rem;
  color: #006ACC;
}

#contact .ex .conBox .inn ul li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.8em;
  border-bottom: 1px solid #006ACC;
  position: relative;
}

#contact .ex .conBox .inn ul li::before {
  content: "";
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.4em;
  background: #006ACC;
}

@media screen and (max-width: 768px) {
  #contact .ex {
    width: 100%;
    margin-bottom: 2rem;
  }
  #contact .ex .ttl {
    font-size: 1.4rem;
  }
  #contact .ex .ttl .blue {
    font-size: 1.8rem;
  }
  #contact .ex figure img {
    margin: 0 auto;
    max-width: 400px;
  }
  #contact .ex .conBox .inn .ttl {
    font-size: 1.4rem;
  }
  #contact .ex .conBox .inn ul li {
    font-size: 1.4rem;
  }
}

#contact .formarea {
  width: 48%;
  padding: 2.5rem;
  background: #EDF5F5;
}

@media screen and (max-width: 768px) {
  #contact .formarea {
    width: 100%;
    padding: 2rem 1.6rem;
  }
}

#contact .formarea .ttl {
  margin-bottom: 0.875rem;
  color: #006ACC;
  text-align: center;
  font-weight: bold;
}

#contact .formarea .txt {
  margin-bottom: 0.625rem;
}

#contact .formarea .txt .red {
  color: #BE1E1E;
  font-size: 0.875rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #contact .formarea .txt .red {
    font-size: 1.38rem;
  }
}

#contact .formarea .note {
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  #contact .formarea .note {
    font-size: 1.2rem;
  }
}

#contact .formarea form .form_content {
  margin-bottom: 0.625rem;
}

#contact .formarea form .form_content input[type=text], #contact .formarea form .form_content input[type=tel], #contact .formarea form .form_content select, #contact .formarea form .form_content textarea {
  width: 100%;
  border-radius: 0;
  padding: 0.75rem 1rem;
  border: solid 1px #A5A5A5;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #contact .formarea form .form_content input[type=text], #contact .formarea form .form_content input[type=tel], #contact .formarea form .form_content select, #contact .formarea form .form_content textarea {
    font-size: 1.4rem;
  }
}

#contact .formarea form .form_content select, #contact .formarea form .form_content textarea::placeholder {
  color: #999999;
}

#contact .formarea form .form_content input::placeholder {
  color: #999999;
}

#contact .formarea form .form_content select, #contact .formarea form .form_content textarea::-ms-input-placeholder {
  color: #999999;
}

#contact .formarea form .form_content input::-ms-input-placeholder {
  color: #999999;
}

#contact .formarea form .form_content textarea {
  max-width: 429px;
}

#contact .formarea form .form_content select {
  appearance: none;
  position: relative;
}

#contact .formarea form .form_content select::before {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  margin-top: -8px;
  background-size: 20px;
  pointer-events: none;
}

#contact .formarea form .form_content select::-ms-expand {
  display: none;
}

#contact .formarea form .form_content input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

#contact .formarea form .accept .p-contactPrivacy_box {
  margin: 32px 0 20px;
}

#contact .formarea form .accept input[type=checkbox] {
  visibility: hidden;
  box-sizing: border-box;
  padding: 0;
}

#contact .formarea form .accept label {
  cursor: pointer;
  position: relative;
  width: auto;
  margin-top: -11rem;
  padding-left: 1.4rem;
  font-size: 0.8rem;
}

#contact .formarea form .accept label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 58%;
  border: 1px solid #A5A5A5;
  background: #fff;
}

#contact .formarea form .accept label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 12px;
  height: 7px;
  margin-top: -5px;
  top: 56%;
  left: 3px;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #1A1A1A;
}

#contact .formarea form .accept label .policy {
  margin-left: 1.625rem;
  color: #BE1E1E;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #contact .formarea form .accept label {
    font-size: 1.2rem;
    padding-left: 2rem;
  }
}

#contact .formarea form .btn {
  display: block;
  padding: 1.6rem 0;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

#contact .formarea form .btn input[type=submit] {
  cursor: pointer;
  display: block;
  width: 316px;
  margin: 0 auto;
  padding: 1.5rem;
  background: linear-gradient(90deg, #006acc, #00b487 99.92%);
  border: 2px solid #006acc;
  border-image: linear-gradient(to right, #006acc 0%, #00b487 99.92%);
  border-image-slice: 1;
  transition: .3s;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
}

#contact .formarea form .btn input[type=submit]:hover {
  color: #006ACC;
  border: solid 2px #006ACC;
  background: #fff;
}

@media screen and (max-width: 1180px) {
  #contact .formarea form .btn input[type=submit]:hover {
    background: linear-gradient(90deg, #006acc, #00b487 99.92%);
    border: 2px solid #006acc;
    border-image: linear-gradient(to right, #006acc 0%, #00b487 99.92%);
    border-image-slice: 1;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  #contact .formarea form .btn input[type=submit] {
    padding: 2.0rem 0;
    font-size: 1.4rem;
  }
}

#contact .formarea form .selectbox {
  position: relative;
}

#contact .formarea form .selectbox::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #999999 transparent transparent transparent;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  z-index: 1;
}
/*# sourceMappingURL=palletize.css.map */