@charset "UTF-8";

/************************************************

dialog

*************************************************/


/* ダイアログ開時に背景のスクロールを防ぐ */
html:has(dialog[open]) {
  overflow: hidden;
}

/* ダイアログにCSSトランジションを設定 */
dialog{
  transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
/* ダイアログ開時の背景 */
dialog::backdrop {
	background: rgba(0, 0, 0, 0.3);
}

/* ダイアログメニュー */
dialog.js-dialog-menu{
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	left: auto;
	margin: 0;
	border: 0;
	outline: 0;
	padding: 0;
	background: var(--color-primary);
}
/* ダイアログメニューの表示前*/
dialog.js-dialog-menu.show-from,
dialog.js-dialog-menu.hide-to{
  translate: 100% 0%;
}
/* ダイアログメニューの表示前、非表示後は背景を透明にする */
dialog.js-dialog-menu.show-from::backdrop,
dialog.js-dialog-menu.hide-to::backdrop{
  opacity: 0;
}

/* ダイアログモーダル
dialog.js-dialog-modal{
  opacity: 1;
}
/* モーダルの表示前、非表示後は下に移動 */
dialog.js-dialog-modal.show-from,
dialog.js-dialog-modal.hide-to {
  opacity: 0;
  translate: 0% 10%;
}

/* モーダルの表示前、非表示後は背景を透明にする */
dialog.js-dialog-modal.show-from::backdrop,
dialog.js-dialog-modal.hide-to::backdrop {
  opacity: 0;
}


.dialog-menu-btn {
	position: relative;
	width: 32px;
	height: 20px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.dialog-menu-btn span {
  position: relative;
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: transform .2s cubic-bezier(.27,1.2,.6,1);
}


.dialog_btn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 30px;
}

.dialog_btn .btn{
	background: transparent;
	border: 1px #644839 solid;
	color: #644839;
}
.dialog_btn .btn:after {
  background-color: #644839;
}

@media (any-hover: hover) {
  .dialog-menu-btn:hover span:nth-child(1) {
	  transform: translateY(3px)
  }
  .dialog-menu-btn:hover span:nth-child(3) {
	  transform: translateY(-3px)
  }
}

.dialog-menu-btn.js-dialog-menu-close{
	background: transparent;
	padding: 10px;
	height: 56px;
	width: 56px;
	margin: 0 0 0 auto;
	align-items: center;
}
.dialog-menu-btn.js-dialog-menu-close span {
  position: absolute;
  background-color: #fff;
}
.dialog-menu-btn.js-dialog-menu-close span:nth-child(1) {
   transform: translateY(18px) rotate(-45deg);
}
.dialog-menu-btn.js-dialog-menu-close span:nth-child(2) {
  opacity: 0;
}
.dialog-menu-btn.js-dialog-menu-close span:nth-child(3) {
    transform: translateY(18px) rotate(45deg);
}


.js-dialog-modal {
	padding: 30px 20px;
	border-radius: 20px;
	max-width: 780px;
	background:#e2e2e2;
	margin:auto;
	width: 96%;
}
.js-dialog-modal .js-dialog-inner {
	display: grid;
	gap: 22px;
	justify-content: center;
	justify-items: center;
	grid-template-columns: 1fr;
}

.js-dialog-modal .js-dialog-inner .head{
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
	text-align: center;
	background:#D9D9D9;
	padding:6px;
	  width: 100%;
}

.js-dialog-modal .js-dialog-inner ul{
  list-style: disc;
  margin-left: 25px;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
}

.js-dialog-modal .js-dialog-inner a{
  text-align: center;
  color: #000;
  /* display: inline-block; */
  border-bottom: 1px #000 solid;
  text-decoration: none;
}
.js-dialog-inner .js-dialog-close {
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	letter-spacing: 10%;
	text-align: center;
	background:var(--color-black);
	color: #fff;
	padding: 8px 40px;
	border-radius: 5px;
	margin: 20px auto 0;
}






@media screen and (min-width: 1025px) {
	.nav__dialog {
	  display: none;
	}
}



/**********************************************
layout
***********************************************/


.l-header{
  box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
   transition: transform 1s ease, opacity 0.4s ease;
}

/* 下にスクロール中：ヘッダーを隠す */
.l-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* 上にスクロール中：ヘッダー表示 */
.l-header.is-visible {
  transform: translateY(0);
  opacity: 1;
}


.l-header__inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
}

.l-header__inner a.logo img{
  max-width: 170px;
}


nav {
	}

.js-menu {
	list-style: none;
	display: flex;
	gap: 14px;
	margin: 0;
	padding: 0;
	align-items: center;
}

.js-menu > li {
	position: relative;
	font-size:var(--font-size-nav);
	color:var(--color-black);
}
.js-menu > li > a{
	color:var(--color-black);
}
.js-menu > li > a{
  text-decoration: none;
  text-align: center;
}

.js-menu > li > button{
	font-family: var(--font-family-primary);
	background: none;
	border: none;
	padding:0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 5px
}
.js-menu > li > button > span{
	text-align: center;
}
.js-menu > li > button > span > span,
.js-menu > li > a > span > span{
	display: block;
	font-size: 75%;
	color:var(--color-primary);
}
.js-menu > li > button:after{
	content: "";
	mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026%2048.34%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20fill-rule%3A%20evenodd%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M.28.31c.38-.4%2C1.02-.41%2C1.41-.02l24%2C23.17c.2.19.31.45.31.72s-.11.53-.31.72L1.69%2C48.06c-.39.38-1.03.37-1.41-.02-.38-.4-.37-1.03.03-1.41l23.25-22.45L.31%2C1.72C-.09%2C1.34-.1.7.28.31Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2214px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20stroke%3D%22rgb(255%2C%20255%2C%20255)%22%20stroke-width%3D%222px%22%20stroke-linecap%3D%22butt%22%20stroke-linejoin%3D%22miter%22%20fill%3D%22none%22%20d%3D%22M2.389%2C1.213%20L8.001%2C6.607%20L2.389%2C12.001%20%22%2F%3E%3C%2Fsvg%3E');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: currentColor;
	width: 12px;
	height:12px;
	display: block;
	transition: all 0.4s;
	color:var(--color-primary);
	transform: rotate(90deg);
	margin-bottom: 5px;
}
.js-menu > li > button.active:after,
.js-menu > li > button:hover:after{
	transform: rotate(-90deg);
}

.js-menu > li > button:hover {
}

.js-mega-menu {
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	position: absolute;
	top: 100%;
	left: -100%;
	width: 200px;
	background: var(--color-primary);
	padding: 20px 0;
	z-index: 1000;
	display: flex;
	flex-wrap: wrap;
	pointer-events: none; /* これも非表示時のクリック防止に重要 */
}

.js-menu > li:first-child .js-mega-menu {
  left: -25%;;
}

.js-mega-menu.open {
	opacity: 0.9;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.js-mega-menu.open {
	display: flex;
}

.js-mega-menu-column {
	flex: 1;
}
.js-mega-menu-column ul {
	list-style: none;
	padding: 0;
}

.js-mega-menu-column li a {
	text-decoration: none;
	color: #fff;
	display: block;
	padding:10px 24px;
	font-size:var(--font-size-mega-menu);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.js-mega-menu-column li a:after{
	content: "";
	mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026%2048.34%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20fill-rule%3A%20evenodd%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M.28.31c.38-.4%2C1.02-.41%2C1.41-.02l24%2C23.17c.2.19.31.45.31.72s-.11.53-.31.72L1.69%2C48.06c-.39.38-1.03.37-1.41-.02-.38-.4-.37-1.03.03-1.41l23.25-22.45L.31%2C1.72C-.09%2C1.34-.1.7.28.31Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2214px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20stroke%3D%22rgb(255%2C%20255%2C%20255)%22%20stroke-width%3D%222px%22%20stroke-linecap%3D%22butt%22%20stroke-linejoin%3D%22miter%22%20fill%3D%22none%22%20d%3D%22M2.389%2C1.213%20L8.001%2C6.607%20L2.389%2C12.001%20%22%2F%3E%3C%2Fsvg%3E');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: currentColor;
	width: 12px;
	height:12px;
	display: block;
	transition: all 0.4s;
}

.js-mega-menu-column li a:hover {
}




nav a.menu-btn{
	background: var(--color-gray);
	border:1px solid var(--color-gray);
	padding: 8px 25px;
	display: block;
	border-radius: 9999px;
	color:var(--color-black);
	transition: all 0.4s;
}
nav a.menu-btn.primary{
	background: var(--color-primary);
	border:1px solid var(--color-primary);
	color:var(--color-white);
}

nav a.menu-btn:hover{
	background: var(--color-white);
	color: var(--color-black);
}
nav a.menu-btn.primary:hover{
	color: var(--color-primary);
}



ul.dialog-menu,
ul.dialog-menu ul{
  padding: 0;
  list-style: none;
}

ul.dialog-menu {
	padding: 0;
	list-style: none;
	width: 100%;
	display: grid;
	gap: 24px;
	align-items: start;
	color: var(--color-white);
	padding:0px var(--sp-padding) 40px;
	font-size: var(--font-size-menu);
}
ul.dialog-menu a{
  color: var(--color-white);
  text-decoration: none;
}

ul.dialog-menu li{
	display: grid;
	gap: 24px;
}
ul.dialog-menu > li{
	padding-bottom: 24px;
	border-bottom: 1px rgb(255 255 255 / 20%) solid;
}
ul.dialog-menu > li:last-child,
ul.dialog-menu > li:nth-last-child(2){
	padding-bottom:0px;
	border-bottom:0px;
}

ul.dialog-menu li > ul{
  display: grid;
  gap: 20px;
  font-size: var(--font-size-dialog-menu);
}

ul.dialog-menu li >ul li a:before{
  content: "";
  padding-right:24px;
}

ul.dialog-menu > li:last-child a,
ul.dialog-menu > li:nth-last-child(2) a{
	background: var(--color-white);
	border:1px var(--color-white) solid;
	padding: 14px 25px;
	display: block;
	border-radius: 9999px;
	color:var(--color-primary);
	text-align: center;
	font-size: var(--font-size-menu);
}
ul.dialog-menu > li:last-child a{
	background:transparent;
	border:1px var(--color-white) solid;
	padding: 14px 25px;
	display: block;
	border-radius: 9999px;
	color:var(--color-white);
	text-align: center;
	font-size: var(--font-size-menu);
}



.l-footer{
	position: relative;
	width: 100%;
	background: #333333;
}
.l-footer__inner {
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
}

.l-header__inner a.logo img{
  max-width: 170px;
}


ul.footer-menu,
ul.footer-menu ul{
  padding: 0;
  list-style: none;
}

ul.footer-menu {
	padding: 0;
	list-style: none;
	width: 100%;
	display: grid;
	gap: 40px 20px;
	align-items: start;
	grid-template-columns: 1fr 1fr;
	color: var(--color-white);
	padding:40px var(--sp-padding);
	font-size: var(--font-size-menu);
}
ul.footer-menu a{
  color: var(--color-white);
  text-decoration: none;
}


ul.footer-menu li{
  display: grid;
  gap: 24px;
}
ul.footer-menu li > ul{
  display: grid;
  gap: 20px;
}

ul.footer-menu li >ul li a:before{
  content: "-";
  padding-right: 5px;
}


ul.footer-menu > li:last-child {
	grid-column: 1 / 3;
	grid-template-columns: 1fr 1fr;
}

.c-footer{
	position: relative;
	width: 100%;
	background:var(--color-white)
}

.c-footer__inner {
	display: grid;
	grid-template-columns: 1fr 4fr;
	padding:30px var(--sp-padding) 30px;
	gap: 40px;
  	background:var(--color-white)
}
.c-footer__inner > div{
	grid-column: 1 / 3;
	display: flex;
	gap: 40px;
	justify-content: space-evenly;
}
.c-footer__inner > div a{
	color: var(--color-black);
	font-size: var(--font-size-menu);
	text-decoration: none;
}
.c-footer__inner > a{
}
.c-footer__inner > p {
  font-size: 10px;
}
.c-footer__inner a img {
  width: 100%;
}

ul.footer-menu li:last-child  >ul li a:before {
  display:none;
}

@media screen and (max-width: 1024px) {
	.js-menu {
		display: none;
	}
}




@media screen and (min-width: 1024px) {

	.l-header__inner {
	  padding: 0;
	}
	.l-header__inner a.logo img {
	  max-width: 240px;
	}
	.js-menu > li > button,
	.js-menu > li > a {
	  padding: 20px 0;
	}
	nav a.menu-btn {
	  padding:8px 25px;
	}

	ul.footer-menu,
	.c-footer__inner  {
	  max-width: 960px;
	  margin: 0 auto;
	}

	ul.footer-menu {
	  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	}
	ul.footer-menu li > ul {
	  gap: 15px;
	}
	ul.footer-menu > li:last-child {
	  grid-column: unset;
	  grid-template-columns: unset;
	}
	.c-footer__inner {
		grid-template-columns: 240px auto auto;
		gap: 110px;
		align-items: center;
	}
	.c-footer__inner > div {
	  grid-column:auto;
	      order: 2;
	}
	.c-footer__inner > a {
	    order: 1;
	}
	.c-footer__inner > p {
	    order: 3;
	}


}


/*
.section
==================================*/

.l-section{
  overflow: hidden;
  position: relative;
}


.c-btn__basic{
	background: var(--color-primary);
	border: 1px var(--color-primary) solid;
	padding: 10px 25px;
	display: block;
	border-radius: 9999px;
	color: var(--color-white);
	text-align: center;
	font-size: var(--font-size-btn);
	margin: 0 auto;
	text-decoration: none;
	transition: all 0.4s;
  position: relative;
}
.c-btn__basic:hover{
	background: var(--color-white);
	color: var(--color-primary);
}


.icon-blank:after {
    content: "";
    width: max(12px, 12px);
    height: max(12px, 12px);
    border: 0;
    transition: all .3s;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: currentColor;
    mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%20%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2025.5%2025.7%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23fff%3B%20stroke-miterlimit%3A%2010%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%20%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201-2%22%3E%20%3Cg%3E%20%3Crect%20class%3D%22cls-1%22%20x%3D%22.5%22%20y%3D%227.4%22%20width%3D%2217.8%22%20height%3D%2217.8%22%2F%3E%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%227.2%20.5%2025%20.5%2025%2018.3%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
  }







.c-news{
  display: grid;
  gap: 20px;
  margin: 15px auto;
}
.c-news dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5px;
    align-items: center;
}
.c-news a{
	text-decoration: none;
	color:var(--color-black);
}
.c-news dl dd span{
  display: table;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 5px 15px;
  line-height: 100%;
  border-radius: 999px;
}
.c-news dl dt{
	font-size:var(--font-size-11-16);
}
.c-news dl dd{
	font-size:var(--font-size-10);
}
.c-news dl dd:last-child{
	grid-column: 1 / 3;
	font-size:var(--font-size-14-16);
}


.c-pagetop{
  position: fixed;
  right: 5px;
  bottom: 20px;
  z-index: 9000;
}

.c-pagetop a {
  font-size: 0;
  position: relative;
  background: var(--color-white);
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  box-shadow: 0px 0px 1px rgb(29 50 111 / 35%);
}

.c-pagetop a:before{
	content: "";
	border: 0;
	border-top: solid 1px var(--color-primary);
	border-right: solid 1px var(--color-primary);
	display: inline-block;
	transform: rotate(-45deg);
	width: 8px;
	height: 8px;
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: block;
}


@media screen and (max-width: 1024px) {
	.c-btn__basic {
		min-width:100%;
		margin-left:0px;
	}
}
@media screen and (min-width: 1024px) {

	.c-btn__basic {
	  max-width: 360px;
	}

	.c-news dl {
  grid-template-columns: 120px 80px auto;
	  gap: 10px;
	}
	.c-news dl dd:last-child {
	  grid-column: auto;
	}
}

#mv .section__inner {
	padding: 48px 0;
	max-width: 960px!important;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

#mv{}



#mv .img-bg{
	background: url(../img/index/mv/bg.svg);
	background-size:cover;
	background-size: 140%;
	background-position: right top;
	opacity: 0.9;
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 35%;
}
#mv .img-bg span{
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

#mv .img-bg span:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 35%;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%);
}
#mv .img-bg  span:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
}



#mv:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 65%;
	background: var(--color-primary);
}


#mv img{
aspect-ratio: 135 / 76;
}
#mv h1{
	position: absolute;
	top: 40%;
	left: 20px;
	color: var(--color-dialog-menu-bg);
	z-index: 2;
	font-size: var(--font-size-mv);
	line-height: 180%;
	font-weight: var(--font-weight-semibold);
	text-shadow: 1px 1px 10px #3a3a3a;
}
#mv h1 rt{
	font-size: 40%;
	letter-spacing: -1.5em;
}

#mv h1 .ruby{
	position: relative;
}
#mv h1 .ruby:before {
	content:"";
	position: absolute;
	font-size: 11px;
	top: -6px;
	left: 0;
	right: 0;
	display: block;
	margin: 0 auto;
	width: 100%;
	line-height: 100%;
	text-align: center;
}

#mv h1 .ruby.edge:before{
	content:"エッジ";
}

#mv h1 .ruby.lead:before {
	  content: "リード";
	}

#mv .js-swiper-mv{
	margin-left: 50px;
}

@media screen and (min-width: 1024px) {
	  #mv .img-bg {
	    width: 50%;
	    height: 70%;
	    background-size: cover;
	    background-repeat: no-repeat;
	    background-position: top left;
	  }
	#mv .section__inner {
	  padding: 60px 0 86px;
	}
	#mv .js-swiper-mv {
	  margin-left:120px;
	}
	#mv h1 {
	  position: absolute;
	  top: 45%;
	  left:0px;
	  line-height: 160%;
	}
	#mv h1 .ruby:before {
	  font-size: 22px;
	  top: -5px;
	}


}




.l-section .section__inner {
	padding: 48px 0 60px;
	max-width: 1085px;
		max-width: 960px!important;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}


.l-section .section__inner > .txt {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 15px;
	margin: 0 25px;
	background: var(--color-white);
	padding:25px 38px 0 5px;
}

.l-section .section__inner > .txt > div{
  display: grid;
  gap: 32px;
}
.l-section .section__inner > .txt > div > .txt-inner{
  display: grid;
  gap: 16px;
}


.l-section .section__inner > .txt:before {
	/*
	content: "――  Message";
	writing-mode: sideways-lr;
	color: var(--color-primary);
	font-weight:var(--font-weight-bold);
	font-size: var(--font-size-12-20);
	line-height: 100%;
	
	content: "";
	line-height: 100%;
	display: block;
	width: 18px;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;*/
}


.l-section .section__inner > .txt  .en-vertical {
	position: relative;
	writing-mode: vertical-rl;
  transform: rotate(180deg) !important;
	color: var(--color-primary);
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 15px;
}
.l-section .section__inner > .txt  .en-vertical:before {
	content: "";
	width: 1px;
	height: 50px;
	background: var(--color-primary);
	display: block;
}
.l-section .section__inner > .txt  .en-vertical:after{
	display:none;
}


.l-section .section__inner > .txt svg {
  height: auto;
  text-align: center;
  width: 14px;
}




.l-section .section__inner > .txt h2 {
  font-size: var(--font-size-headding);
  line-height: 100%;
  font-weight: var(--font-weight-semibold);
}
.l-section .section__inner > .txt p.read {
  font-size: var(--font-size-read);
  line-height: 160%;
}
.l-section .section__inner > .txt p.text {
  font-size: var(--font-size-text);
  line-height: 180%;
}

.l-section .section__inner > .c-block {
  position: relative;
  display: grid;
  align-items: start;
  gap: 35px;
  margin: 0 25px;
  padding:0;
}

.l-section .section__inner > .c-block > div .c-btn__basic {
  margin: -28px auto 0;
  max-width:300px;
}


.l-section .section__inner > .img img,
.l-section .section__inner > .c-block img {
  aspect-ratio: 30 / 17;
}


@media screen and (min-width: 1024px) {
	.l-section .section__inner {
		padding: 96px 0;
	}
	.l-section .section__inner > .txt:before {
	  width: 20px;
	}


	.l-section .section__inner > .txt {
		  gap: 20px;
		  margin: -70px 0 0;
		  padding: 40px 25px 0;
		  max-width: 785px;
		}
	.l-section .section__inner > .txt > div > .txt-inner,
	.l-section .section__inner > .txt > div {
	  gap: 25px;
	}
	.l-section .section__inner > .c-block > div .c-btn__basic {
	  max-width: 360px;
	}


  .l-section .section__inner > .txt .en-vertical {
    font-size: 16px;
  }



}




#Message{}

#Message .img-bg{
	background: url(../img/index/message/bg.svg);
	background-size:cover;
	background-position: right top;
	opacity: 0.9;
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 35%;
}
#Message .img-bg span{
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

#Message .img-bg span:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 35%;
  background: linear-gradient(80deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%);
}
#Message .img-bg  span:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
}


#Message.l-section .section__inner > .img:before {
  content: "";
  position: absolute;
  top: 30px;
  right: -100%;
  width: 185%;
  height: 100%;
  background: var(--color-gray);
}



#Message.l-section .section__inner > .img{
margin-left: 25px;
width: 80%;
display: grid;
grid-template-columns: 1fr auto;
align-items: start;
margin-bottom: 45px;
position: relative;
}
#Message.l-section .section__inner > .img:after{
	content: "Message";
	/* writing-mode: sideways-lr; */
	color: var(--color-gray);
	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-26-110);
	mix-blend-mode: color-dodge;
	line-height: 120%;
	transform: rotate(-90deg);
	transform-origin: right top;
	position: absolute;
	right:0;
	top: 0;
}

#Message.l-section .section__inner > .img img{
 aspect-ratio: 30 / 17;
}


#Message.l-section .section__inner > .txt{
	max-width: 660px;"
}
#Message.l-section .section__inner > .txt p.read {
  padding-left:10px;
}
#Message.l-section .section__inner > .txt p.text {
  padding-left:10px;
}



@media screen and (min-width: 1024px) {
	#Message.l-section .section__inner {
		padding: 96px 0;
	}
	#Message .img-bg {
		width: 50%;
		height: 70%;
		background-size:cover;
		background-repeat: no-repeat;
		background-position:top left;
	}

	#Message.l-section .section__inner > .img {
		margin:0 0px 0 auto;
		width: 70%;
	}

	#Message.l-section .section__inner > .img:before {
		top: 95px;
		right: -100%;
		width: 150%;
		height: 370px;
	}
	#Message .l-section__inner > .img:after {
	  right: 1rem;
	}
}



#Business{
  background: var(--color-gray);
}



#Business .img-bg{
	background: url(../img/index/business/bg.svg);
	background-size:cover;
	background-position: right top;
	opacity: 0.9;
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 35%;
}
#Business .img-bg span{
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

#Business .img-bg span:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 35%;
  background: linear-gradient(-90deg, rgba(225, 225, 225, 0) 70%, rgba(225, 225, 225, 1) 100%);
}
#Business .img-bg  span:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, rgba(225, 225, 225, 0) 30%, rgba(225, 225, 225, 1) 80%, rgba(225, 225, 225, 1) 100%);
}





#Business.l-section .section__inner > .txt {
  padding: 25px 25px 25px 5px;
  margin-bottom: 35px;
}

#Business.l-section .section__inner > .txt:after {
	content: "Business";
	color: var(--color-white);
	font-weight: var(--font-weight-bold);
	font-weight:600;
	font-size: var(--font-size-26-110);
	mix-blend-mode: color-dodge;
	line-height: 120%;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	position: absolute;
	left:0;
	top: 5.5rem;
}

#Business.l-section .section__inner > .txt > div:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30%;
  height: 30%;
  background: url(../img/common/logo_mark.svg);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  opacity: 0.3;
}

#Business.l-section .section__inner > .txt > div:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30%;
  height: 30%;
  background: url(../img/common/logo_mark.svg);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  opacity: 0.3;
}


@media screen and (min-width: 1024px) {
  #Business.l-section .section__inner > .txt {
    margin: 0 auto;
    padding:40px 25px 130px;
    max-width: 1085px;
  }
	#Business.l-section .section__inner > .txt:after {
	  top: 22.5rem;
	}
	#Business.l-section .section__inner > .txt > div:after {
	  top: 40px;
	  right: 10px;
	  width: 50%;
	  height: 35%;
	}
	#Business.l-section .c-block {
	  gap: 30px;
	  margin: -80px 30px 0;
	  padding: 0;
	  grid-template-columns: 1fr 1fr;
	}
  #Business .img-bg {
    width: 50%;
    height: 70%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
  }
}


#Recruitment{}


#Recruitment .img-bg {
  background-size: cover;
  background-position: right top;
  opacity: 0.9;
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 120%;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  opacity: 0.5;
}


#Recruitment .l-section .section__inner {
  padding: 48px 0 87px;
}

#Recruitment:before{
content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 120%;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  opacity: 0.5;
}
#Recruitment.l-section .section__inner > .img:before {
  content: "";
  position: absolute;
  top: 30px;
  left: -100%;
  width: 185%;
  height: 100%;
  background: var(--color-primary);
}



#Recruitment.l-section .section__inner > .img{
	margin-left: 25px;
	width: 80%;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	margin-bottom:30px;
	  position: relative;
}
#Recruitment.l-section .section__inner > .img:after{
	content: "Recruitment";
	color: var(--color-white);
	font-weight:var(--font-weight-bold);
	font-size: var(--font-size-26-110);
	line-height: 120%;
	opacity: 0.6;
	transform: rotate(-90deg);
	transform-origin: right top;
	position: absolute;
	right:0;
	top: 0;
}



#Recruitment.l-section .c-btn__basic {
  margin-bottom: -27px;
}
@media screen and (min-width: 1024px) {
	#Recruitment.l-section .section__inner {
		padding: 96px 0 136px;
	}

	#Recruitment.l-section .section__inner > .img {
		margin: 0 auto 0 0px;
		width: 100%;
	}
	#Recruitment.l-section .section__inner > .img img {
		width: 70%;
	}
	#Recruitment.l-section .section__inner > .img:before {
    top: 100px;
    right: -100%;
    width: 150%;
    height: 400px;
	}
	#Recruitment.l-section .section__inner > .img:after {
	}
  	#Recruitment.l-section .section__inner > .txt {
    gap: 20px;
    max-width: 800px;
  }
  #Recruitment.l-section .section__inner > .txt {
    gap: 20px;
    margin: -80px 0 0 auto;
    max-width: 800px;
  }

}



#Company{}



#Company .img-bg{
	background: url(../img/index/company/bg.svg);
	background-size:cover;
	background-position: right top;
	opacity: 0.9;
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 35%;
	transform: scale(-1, 1);
	opacity: 0.5;
}
#Company .img-bg span{
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

#Company .img-bg span:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 35%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%);
}
#Company .img-bg  span:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
}

#Company.l-section .section__inner > .img:before {
  content: "";
  position: absolute;
  top: 30px;
  right: -100%;
  width: 185%;
  height: 100%;
  background: var(--color-gray);
}


#Company.l-section .section__inner > .img{
	margin-left: 55px;
	width: 80%;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	margin-bottom: 35px;
	gap: 5px;
	  position: relative;
}
#Company.l-section .section__inner > .img:after{
	content: "Company";
	color: #afafaf;
	font-weight:var(--font-weight-bold);
	font-size: var(--font-size-26-110);
	mix-blend-mode: color-dodge;
	line-height: 120%;
	order: 1;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	position: absolute;
	left:-10px;
	top: 5.8rem;
}

#Company.l-section .section__inner > .img img{
 aspect-ratio: 30 / 17;
 order: 2;
}



@media screen and (min-width: 1024px) {
	#Company.l-section .section__inner {
		padding: 96px 0;
	}
	#Company .img-bg {
		width: 50%;
		height: 70%;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: top left;
		transform: scale(-1, 1);
		background-position: top right;
		    opacity: 0.5;
	}

	#Company.l-section .section__inner > .img {
		margin: 0 0 0 auto;
		width: 100%;
	}
	#Company.l-section .section__inner > .img img {
		width: 70%;
		margin: 0 0 0 auto;
	}
	#Company.l-section .section__inner > .img:before {
    top: 100px;
    right: -100%;
    width: 150%;
    height: 400px;
	}
  #Company.l-section .section__inner > .txt {
    margin: -70px 0 0;
    max-width:800px;
  }
	#Company.l-section .section__inner > .img:after {
		  top:300px;
		      left: 0;
	}

}



#news{
  background: var(--color-gray);
}

#news:before{
	content: "";
}

#news.l-section .section__inner > .txt {
  padding: 25px 25px 25px 5px;
}



#news.l-section .section__inner > .txt:after {
	content: "News";
	color: var(--color-white);
	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-26-110);
	mix-blend-mode: color-dodge;
	line-height: 120%;
	transform: rotate(-90deg);
	transform-origin: right top;
	position: absolute;
	right: 0.5rem;
	top: 0;
}


@media screen and (min-width: 1024px) {
  #news.l-section .section__inner > .txt {
    margin: 0 auto;
    padding:40px 25px;
    max-width: 1085px;
  }
	#news.l-section .section__inner > .txt:after {
	}
	#news.l-section .section__inner > .txt > div:after {
	  top: 40px;
	  right: 10px;
	  width: 50%;
	  height: 45%;
	}
	#news.l-section .section__inner > .c-block {
	  gap: 30px;
	  margin: -100px 30px 0;
	  padding: 0;
	  grid-template-columns: 1fr 1fr;
	}
	#news:before {
	  width: 50%;
	  height: 60%;
	  background-size: cover;
	}
	#news.l-section .section__inner > .txt > div > .txt-inner {
	  justify-content: start;
	}

}


/*****************************************************************************/


.p-section {
  overflow: hidden;
  position: relative;
}

main.page .p-section:last-child {
  padding-bottom: 100px;
}


.p-section .section__inner {
  padding: 48px 0 24px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.p-section ..img{
  position: relative;
}

.p-section .inner{
	max-width: 960px;
	margin: 0 auto;
	width: 100%;
	padding: 0 var(--padding-base);
	position: relative;
}
.p-section .inner.zero{
	padding: 0;
}

.p-section .inner.header{
	max-width: 960px;
	margin: 0 auto;
	width: 100%;
	padding:0 var(--padding-base) 0 0;
	position: relative;
	display: grid;
	align-items: start;
	grid-template-columns: 35px 1fr;
}

.p-section .inner.header  .en-vertical {
	position: relative;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	color: var(--color-primary);
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 15px;
}
.p-section .inner.header  .en-vertical:before {
	content: "";
	width: 1px;
	height: 50px;
	background: var(--color-primary);
	display: block;
}





.p-section.p-section-anchor .section__inner{
	padding:20px 0;
}



.p-section .headding{
	font-size: var(--font-size-headding);
	padding: 0 0 var(--padding-base) 0;
	line-height: 100%;
}
.p-section .headding.{
  font-size: var(--font-size-headding);
  padding: 0 0 20px 0;
}

.p-section .read{
  font-size: var(--font-size-read);
  padding: 0 0 20px 0;
}

.p-section .title{
  font-size: var(--font-size-title);
  padding: 0 0 0 0;
    line-height: 140%;
}

.p-section .text{
  font-size: var(--font-size-text);
  padding: 0 0 0 0;
    line-height: 180%;
}

.p-section .text-sm{
  font-size: var(--font-size-12-14);
}

.p-section .text-banner{
  font-size: var(--font-size-banner);
  padding: 0 0 0 0;
    line-height: 140%;
}



.p-section .txt{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-section .txt.large{
  gap: 40px;
}

.c_anchor {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  list-style: none;
}
.c_anchor li{
	display: block;
	border-left: 1px var(--color-gray) solid;
	width: 100%;
}
.c_anchor li:last-child{
	border-right: 1px var(--color-gray) solid;
}
.c_anchor li a{
	display: block;
	text-decoration: none;
	color: var(--color-black);
	line-height: 100%;
	font-size: 11px;
	padding: 0 5px;
	transition: all 0.4s;
	position: relative
}
.c_anchor li a span{
	display: block;
	text-align: center;
	padding: 0 0 25px;;
}
.c_anchor li a:after {
	content: "";
	mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2214px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20stroke%3D%22rgb(255%2C%20255%2C%20255)%22%20stroke-width%3D%222px%22%20stroke-linecap%3D%22butt%22%20stroke-linejoin%3D%22miter%22%20fill%3D%22none%22%20d%3D%22M2.389%2C1.213%20L8.001%2C6.607%20L2.389%2C12.001%20%22%2F%3E%3C%2Fsvg%3E');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: currentColor;
	width: 12px;
	height:12px;
	display: block;
	transition: all 0.4s;
	color:var(--color-primary);
	transform: rotate(90deg);
	position: absolute;
	bottom: 3px;
	left: 0;
	right: 0;
	margin: 0 auto;
	transition: all 0.4s;
}
.c_anchor li a:hover span {
	opacity: 0.7;
}
.c_anchor li a:hover:after {
	bottom: 0px;
}

.c-grid-body {
  display: grid;
  gap:40px;
}

.c-grid {
  display: grid;
  gap: 30px;
}
.c-grid .txt{
	display: flex;
	flex-direction: column;
	gap: 30px;
	font-size: var(--font-size-text);
	line-height: 180%;
}
.c-grid .txt .title{
	font-size: var(--font-size-read);
}

.c-banner{
  display: grid;
  gap: 0px;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  background-color: var(--color-gray);
}
.c-banner .txt{
	grid-column: 1 / 3;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 30px;
	font-size: var(--font-size-text);
	line-height: 180%;
}

.c-banner .c-btn{
  position: relative;
  width: 80%;
  margin: 0 auto -20px;
}


.link-txt,
table td a{
	color: var(--color-black);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
}
.link-txt:before,
table td a:before{
	content: "";
	mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2214px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20stroke%3D%22rgb(255%2C%20255%2C%20255)%22%20stroke-width%3D%222px%22%20stroke-linecap%3D%22butt%22%20stroke-linejoin%3D%22miter%22%20fill%3D%22none%22%20d%3D%22M2.389%2C1.213%20L8.001%2C6.607%20L2.389%2C12.001%20%22%2F%3E%3C%2Fsvg%3E');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: currentColor;
	width: 12px;
	height:12px;
	display: block;
	transition: all 0.4s;
	color:var(--color-primary);
	transform: rotate(0deg);
	transition: all 0.4s;
}

.c-breadcrumbs{
	display:none;
	max-width: 960px;
	margin: 0 auto;
	width: 100%;
	padding: 0 var(--padding-base);
	position: relative;
	gap: 5px;
	position: absolute;
	top: 15px;
	left: 0;
	right: 0;
	width: 960px;
	margin: 0 auto;
	z-index: 1;
}
.c-breadcrumbs a{
color: var(--color-black);
  text-decoration: none;
  display: flex;
  gap: 5px;
  align-items: center;;
}
.c-breadcrumbs a:after{
	content: "";
	mask-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%205%209%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23000%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M.5%2C8.5l4-4L.5.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: currentColor;
	width: 8px;
	height:8px;
	display: block;
	transition: all 0.4s;
	transform: rotate(0deg);
	transition: all 0.4s;
}



.c-set {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.dot{
	margin-left: 15px;
	font-size: var(--font-size-text);
}
ul.dot li{
	margin-top:10px;
}
ul.dot li::marker{
	font-size:70%;
}
ol.number{
	margin-left: 15px;
	font-size: var(--font-size-text);
}
ol.number li{
	margin-top:10px;
}

.align-right{
text-align: right;
}
.numbered-list {
  list-style: none;
  counter-reset: item;
	font-size: var(--font-size-text);
}

.numbered-list li {
  counter-increment: item;
  position: relative;
  padding-left:1em;
	margin-top:10px;
}

.numbered-list li::before {
  content: counter(item) ") ";
  position: absolute;
  left: 0;
  width: 2em;
}
.text.border{
	border:1px var(--color-gray) solid;
	padding:15px;
}


@media screen and (min-width: 1024px) {
	.p-section .section__inner {
		padding: 50px 0 40px;
	}
	.c_anchor li a{
		font-size: 15px;
	}
	.p-section .inner.header{
	    padding: 0;
	    position: relative;
	    grid-template-columns: 60px 1fr;
	}
	.p-section .inner.header  .en-vertical {
		font-size: 16px;
	}

	.c-grid {
	  grid-template-columns: 1fr 1fr;
	    gap:40px;
	}
	.c-grid  .img.left{
	  order:2;
	}
	.c-banner {
	  grid-template-columns: 1fr 2fr 1fr;;
	    align-items: center;
	}
	.c-banner .img.left{
	  order:1;
	}
	.c-banner .txt {
	  grid-column: 2;
	}
	.c-banner .txt .headding {
	  padding: 0 0 20px 0;
	}
	.c-banner .c-btn {
	  margin: 0 auto -70px;
	}
	.c-breadcrumbs{
		display: flex;
	}

}



.p-section__header{}
.p-section__header .section__inner{
  max-width:100%;
}

.p-section__header .img{
	position: relative;
	display: flex;
	align-items: center;
	color: #fff;
	height:160px;
}

.p-section__header .img:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
	z-index: 1;
}
.p-section__header .img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.p-section__header .img h1{
  color: #fff;
  position: relative;
  z-index: 1;
  padding:0;
}

@media screen and (max-width: 1023px) {
	.p-section__header .section__inner {
	  max-width: 100%;
	  padding-top: 0;
	}
}
@media screen and (min-width: 1024px) {
	.p-section__header .img{
		height:320px;
	}
}




main.page.company  table{
	padding: 0;
	margin: 0;
	font-size:var(--font-size-14-16);
	width: 100%;
}
main.page.company  table th,
main.page.company  table td {
	border-top: 1px var(--color-gray) solid;
	padding: 20px 0;
}
main.page.company   table th{
	vertical-align: top;
	text-align: left;
	white-space: nowrap;
	padding-right: 15px;
}
main.page.company   table td{}


main.page.company   table td img{
  max-width: 100px;
  margin-bottom: 10px;
}


@media screen and (min-width: 1024px) {
	main.page.company table th {
	  width: 30%;
	}
}



.org-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	font-size: var(--font-size-text);
	position: relative;
	max-width: 640px;
	margin: 0 auto;
}

.org-wrapper div {
	padding: 10px;
	text-align: center;
	border-radius:0px;
	white-space: nowrap;
	position: relative;
	width: 150px;
	margin-right: -50px;
}

.org-wrapper div.primary {
  background-color:var(--color-primary);
  color:var(--color-white);
    z-index: 1;
}
.org-wrapper div.gray{
  background-color:var(--color-gray);
   color:var(--color-navy);
}
.org-wrapper div.right{
  margin-left: -40px;
}
.org-wrapper div.space{
	height: 15px;
	padding: 0;
}

.org-wrapper div.line{
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0px;
    position: relative;
}
.org-wrapper div.line:before{
  content: "";
  height: 2px;
  width: 100%;
  display: block;
  background: var(--color-black);
  position: absolute;
}
.org-wrapper div.line:after{
  content: "";
  display: block;
  background: var(--color-black);
  position: absolute;
}
.org-wrapper div.line.vertical:before {
	width: 2px;
	height: 100%;
}
.org-wrapper div.line.vertical.last:before{
	width: 2px;
	height: 50%;
	top:0;
}
.org-wrapper div.line.cross:after {
	height: 2px;
	width: 50%;
	right: 0;
}

@media screen and (min-width: 1024px) {

	.org-wrapper div {
	  width: auto;
	}
}


#History{
margin-bottom: 30px;
}

#History:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 70%;
  background: var(--color-primary);
}

.history-wrapper {
	display: grid;
	grid-template-columns: 40px 1fr;
	font-size: var(--font-size-text);
	position: relative;
	margin: 0 auto;
	background: var(--color-gray);
	padding:40px 0px 0 20px;
	margin-bottom: 20px;
}
.history-wrapper:before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	background: var(--color-gray);
}


.history-wrapper div {
	padding: 10px;
	text-align: center;
	position: relative;
	text-align: left;
	color: var(--color-primary);
	font-size:130%;
}
.history-wrapper div p{
	font-size:60%;
	color:var(--color-black);
}
.history-wrapper div.history{
  top: -10px;
  background: var(--color-white);
  margin-bottom: 20px;
}


.history-wrapper div.line{
	border-left: 1px var(--color-black) solid;
	padding:0px;
	position: relative;
}
.history-wrapper div.line.last{
	border-left:0;
}

.history-wrapper div.line:before{
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background: var(--color-primary);
  position: absolute;
}
.history-wrapper div.line:after{
  content: "●";
  display: block;
  color: var(--color-primary);
  position: absolute;
  font-size: 9px;
  top: -7px;
  left: -4px;
}

.page.company .img.left.crgroup img{
	aspect-ratio: 40 / 21;
}


@media screen and (min-width: 1024px) {

	.history-wrapper {
		grid-template-columns: 40px 1fr;
		padding:40px 0px 0 40px;
		margin-bottom: 20px;
	}
}


.page.message #Messages{
}

.page.message #Messages.p-section  .headding{
  padding: 0 0 10px 0;
}


.page.message #Messages.p-section  .sign{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.page.message #Messages.p-section  .sign img{
    max-width: 120px;
}

.page.message #Messages.p-section .img{
  position: relative;
}

.page.message #Messages.p-section .img:before {
  content: "";
  position: absolute;
  top: 30px;
  left: -100%;
  width: 185%;
  height: 100%;
  background: var(--color-gray);
}

.page.message #Messages.p-section  .profile{
	border: 1px var(--color-gray) solid;
	border-left: 0;
	border-right: 0;
	padding: 20px 20px;
	  margin-top: 80px;
  position: relative;
}
.page.message #Messages.p-section  .profile .en-vertical {
	position: absolute;
	top: 25px;
	left: -5px;
	font-size: 14px;
	color:var(--color-gray);
}
.page.message #Messages.p-section  .profile .en-vertical:before {
	height: 40px;
	background: var(--color-gray);
}



.page.message #Messages.p-section  .profile .read {
  padding: 0 0 0px 0;
}


.page.message #Mission {
	background: var(--color-gray);
	margin-top: 60px;
	position: relative;
	padding-bottom: 0;
}
.page.message #Mission .section__inner{
	padding: 48px 0 78px;
}

.page.message #Mission .mission {
  display: grid;
  gap: 60px;
}

.page.message #Mission .mission-body {
  background: var(--color-dialog-menu-bg);
  padding: 20px;
  position: relative;
}
.page.message #Mission .mission-body:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -100%;
  width: 185%;
  height: 100%;
  background: var(--color-primary);
    z-index: -1;
}

.page.message #Mission .mission-body .text-en {
	font-size: 40px;
	border-bottom: 1px var(--color-gray) solid;
	margin-bottom: 20px;
}
.page.message #Mission .mission-body .text-en::first-letter {
	color: var(--color-primary);
}


.page.message #Mission .mission-body:nth-child(even):before {
  right: -100%;
  left:auto;
}

.page.message #Mission .mission-body .text {
  line-height:200%;
}


@media screen and (min-width: 1024px) {
	.page.message #Messages.p-section .c-grid {
	  align-items: start;
	}
	.page.message #Messages.p-section .c-grid .txt{
	    order: 2;
	}
	.page.message #Messages.p-section .img:before {
	  content: "";
	  position: absolute;
	  top: 30px;
	  left: -30px;
	  width: 98%;
	  height: 100%;
	  background: var(--color-gray);
	}
	.page.message #Messages.p-section .profile {
	  padding: 20px 40px;
	}
	.page.message #Mission .section__inner {
	  padding: 68px 0 98px;
	}
	.page.message #Mission .mission {
	  display: grid;
	  gap: 100px;
	}
	.page.message #Mission .mission-body {
	  padding: 20px 40px 30px;
	}
	.page.message #Mission .mission-body:before {
	  left: -100%;
	  width: 205%;
	  height: 85%;
	}
	.page.message #Mission .mission-body {
	  width: 90%;
	}
	.page.message #Mission .mission-body:nth-child(even) {
	      margin: 0 0 0 auto;
	}
}



.page.business #SES&StaffingServices{
}

.page.business .p-section  .body .headding{
  padding: 0 0 40px 0;
}

.page.business .casestudy-body{
	position: relative;
	padding-top: 80px;
	margin: 0 var(--sp-padding);
	margin-top: 35px;
	display: grid;
	gap: 20px;
}

.page.business .casestudy-body .bg{
	position: absolute;
	z-index: 1;
	width: 100vw;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
	z-index: -2;
}
.page.business .casestudy-body .bg img{
	filter: blur(5px);
	opacity: 0.45;
	object-fit: cover;
	aspect-ratio: 1 / 3;
	
}
.page.business .casestudy-body .bg:before,
.page.business .casestudy-body .bg:after{
  content: "";
  position: absolute;
  top: 0px;
  left: 0%;
  width: 205%;
  height: 5px;
  background: var(--color-white);
  z-index: 1;
}
.page.business .casestudy-body .bg:after{
  top: auto;
  bottom: 0;
}


.page.business .casestudy-body-point{
  display: grid;
  gap: 20px;

}
.page.business .casestudy-body-point dl{
  background: var(--color-dialog-menu-bg);
}
.page.business .casestudy-body-point dt{
  font-size: var(--font-size-read);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px;
  text-align: center;
}
.page.business .casestudy-body-point dd{
	font-size: var(--font-size-12-14);
  padding: 20px;
}


.page.business .casestudy-body-inner{
  background: var(--color-dialog-menu-bg);
  padding: 20px;
  position: relative;
  z-index:1;
}

.page.business .text-en {
  font-size: var(--font-size-read);
  padding: 0 0 10px 0;
}

.casestudy-list-body{
	margin-top: 20px;
	display: grid;
	gap: 24px;
}
.casestudy-list-item {
  border-left: 2px var(--color-black) solid;
  padding: 15px 25px;
}
.casestudy-list-item .title{
  font-size: var(--font-size-read);
    color: var(--color-primary);
}
.casestudy-list-item .text {
  padding: 10px 0 0px 0;
  font-size: var(--font-size-12-14);
}
.casestudy-list-item .spec {
	display: grid;
	font-size: var(--font-size-12-14);
	gap: 10px;
	margin-top:15px;
}
.casestudy-list-item .spec dl{
  display: flex;
  gap: 10px;
}
.casestudy-list-item .spec dt{
min-width: 100px;
}
.casestudy-list-item .spec dd{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.casestudy-list-item .spec dd span{
  line-height: 100%;
  border-radius: 9999px;
  border: 1px var(--color-black) solid;
  display: block;
  padding: 5px 8px;
}



.page.business #SESStaffingServices .casestudy-body .bg {
  height: 50%;
}


.page.business #ContractDevelopment .casestudy-body .bg {
  height: 50%;
}


.casestudy-body-casestudy {
  position: relative;
}
.page.business .casestudy-body-casestudy:before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -100%;
  width: 210%;
  height:95%;
  background: var(--color-gray);
  z-index: -1;
}
.page.business #SESStaffingServices .casestudy-body-casestudy:before {
  right: -100%;
  left: auto;
}


@media screen and (min-width: 1024px) {

	.page.business .casestudy-body{
	}
	.page.business .casestudy-body-inner{
	   padding: 20px 40px 30px;
	}
	.casestudy-list-body {
		margin-top: 40px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.casestudy-list-item {
	  padding: 20px 35px;
	}
	.casestudy-list-body.single {
	  grid-template-columns:none;
	}
	.casestudy-list-body.single .casestudy-list-item .spec {
	  grid-template-columns: 1fr 1fr;
	}
	.page.business .casestudy-body-point {
	  grid-template-columns: 1fr 1fr;
	}
	.page.business .casestudy-body-casestudy:before {
	  width: 204%;
	}

}


.page.privacy-policy{}


.p-section__header.small .img h1 {
  color: var(--color-black);
}
.p-section__header.small .img {
	height: 80px;
	overflow: hidden;
}
.p-section__header.small  .img img {
	transform: scale(-1, 1);
	width: 50%;
}
.p-section__header.small  .img:before {
  background: linear-gradient(90deg, rgb(167 167 167 / 40%) 0%, rgba(255, 2255, 255, 1) 60%);
}

.p-section__header.small  .img {
  border: 1px var(--color-gray) solid;
  border-left: 0;
  border-right: 0;
}

.page.privacy-policy ol.number li{
	margin-top:30px;
}

.page.privacy-policy .p-section .txt {
  margin-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .p-section__header.small .img {
    height: 168px;
  }
}




.page.news{}



.page.news .news-body,
.page.news .news-body .news-list{
  display: grid;
  gap: 40px;
}

.page.news .news-body .news-list .is-hidden {
  display: none;
}

.page.news .news-body a{
	display: grid;
	grid-template-columns:1fr;
	gap: 20px;
	font-size: var(--font-size-11-16);
	text-decoration: none;
	color: var(--color-black);
}
.page.news .news-body a:hover{
  opacity: 0.7;
}

.page.news .news-body a dl {
  display: grid;
  gap: 10px;
}

.page.news .news-body a dl dt{
  display: flex;
  gap: 15px;
  align-items: center;
}
.page.news .news-body a dl dt span {
  display: table;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 5px 15px;
  line-height: 100%;
  border-radius: 999px;
  	font-size:var(--font-size-10);
}
.page.news .news-body a dd {
  padding: 0;
}
.page.news .news-body a dd.text {
  font-size: var(--font-size-12-14);
}

.page.news .c-btn__basic.more{
  background: var(--color-gray);
  border: 1px solid var(--color-gray);
  color: var(--color-black);
}

.page.news .c-btn__basic.more:hover{
	background: var(--color-white);
	color: var(--color-black);
}

.page.news .c-btn__basic.more span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page.news .c-btn__basic.more span:after {
  content: "";
	mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2214px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20stroke%3D%22rgb(255%2C%20255%2C%20255)%22%20stroke-width%3D%222px%22%20stroke-linecap%3D%22butt%22%20stroke-linejoin%3D%22miter%22%20fill%3D%22none%22%20d%3D%22M2.389%2C1.213%20L8.001%2C6.607%20L2.389%2C12.001%20%22%2F%3E%3C%2Fsvg%3E');
	mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: currentColor;
  width: 12px;
  height: 12px;
  display: block;
  transition: all 0.4s;
  transform: rotate(90deg);
}


.page.news  .post-meta.text {
  text-align: right;
  padding: 20px 0;
}
.page.news .to-archive {
  margin-top: 60px;
}


@media screen and (min-width: 1024px) {

	.page.news .news-body a{
		grid-template-columns: 300px 1fr;
		gap: 40px;
	}
}


.equired{
  color: var(--color-primary);
}


.scroll-box {
  height: 200px;
  overflow-y: scroll;
  border: solid 1px #ddd;
  padding: 25px;
}


.c-set.input{
    border: 1px var(--color-gray) solid;
    border-left:0;
    border-right:0;
     border-bottom:0;
}
.c-set.input dl{
  font-size: var(--font-size-text);
  display: grid;
  gap: 8px
}
.c-set.input dt{
  padding-top: 20px;
}
.c-set.input dd{
    border-bottom: 1px var(--color-gray) solid;
    border-left:0;
    border-right:0;
    border-top:0;
  padding-bottom: 20px;
}

.c-set.submit{
	text-align: center;
	gap: 40px;
}


.c-set.input input[type="text"] ,
.c-set.input input[type="email"] {
    width: 100%;
    max-width:600px;
    padding: 15px;
    margin: 10px 0;
    border: 1px var(--color-gray) solid;
    border-radius:0px;
    box-sizing: border-box;
    font-size: 110%;
}
.c-set.input input[type="text"].post {
    max-width:200px;
}

.c-set.input  textarea {
    width: 100%;
    max-width:600px;
    padding: 15px;
    margin: 10px 0;
    border: 1px var(--color-gray) solid;
    border-radius:0px;
    box-sizing: border-box;
    font-size: 110%;
}

.c-set.input input[type="text"]:focus {
    border-color: #000;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.c-set.input label.checkbox {
  display: inline-block;
}
.c-set.input input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right:10px;
}

.c-set.input input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 4px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}


.c-set.input select {
  padding: 15px 10px;
  border: 1px var(--color-gray) solid;
}

.page.entry{}

.entryflow-wrapper {
	display: grid;
	  align-items: center;
	grid-template-columns: 50px 1fr;
	position: relative;
	margin: 0 auto;
	padding:20px 0px 20px 20px;
	margin-bottom: 20px;
	font-size: var(--font-size-12-14);
		row-gap: 40px;
}
.entryflow-wrapper:before{
  content: "";
  position: absolute;
  bottom: 0;
  left:20px;
  width: 500%;
  height: 100%;
  background: var(--color-gray);
}


.entryflow-wrapper div.entryflow  {
	padding:20px;
	text-align: center;
	position: relative;
	text-align: left;
	color: var(--color-primary);
	font-size:160%;
}
.entryflow-wrapper div.entryflow  p{
	font-size: var(--font-size-12-14);
	color:var(--color-black);
}
.entryflow-wrapper div p:first-child{
	font-size:105%;
	color: var(--color-primary);
}

.entryflow-wrapper div.entryflow{
  background: var(--color-white);
}
.entryflow-wrapper div.entryflow:after{
	content: "";
	mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2214px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20stroke%3D%22rgb(255%2C%20255%2C%20255)%22%20stroke-width%3D%222px%22%20stroke-linecap%3D%22butt%22%20stroke-linejoin%3D%22miter%22%20fill%3D%22none%22%20d%3D%22M2.389%2C1.213%20L8.001%2C6.607%20L2.389%2C12.001%20%22%2F%3E%3C%2Fsvg%3E');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: currentColor;
	width: 16px;
	height: 16px;
	display: block;
	transition: all 0.4s;
	color: var(--color-primary);
	transform: rotate(90deg);
	margin-bottom: 5px;
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: -25px;
}
.entryflow-wrapper div.entryflow:last-child:after{
	display:none;
}

.entryflow-wrapper div.line{
	padding:0px;
	position: relative;
}


.entryflow-wrapper div.line p{
	position: absolute;
	top: -15px;
	left: -5px;
	color: var(--color-white);
	font-size: 12px;
	z-index: 2;
	text-align: center;
	line-height: 130%;
}
.entryflow-wrapper div.line p em{
  font-size:150%;
  display: block;
}

.entryflow-wrapper div.line:before{
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background: var(--color-primary);
  position: absolute;
}
.entryflow-wrapper div.line:after{
  content: "";
  display: block;
  background: var(--color-primary);
  position: absolute;
  top: -30px;
  left: -20px;
  width: 60px;
  height:60px;
  border-radius: 9999px;
}


@media screen and (min-width: 1024px) {

	.entryflow-wrapper {
		grid-template-columns:80px 1fr;
		padding:40px 0px 40px 40px;
		margin: 0;
		margin-left: 20px;
		row-gap: 40px;
		
	}
	.entryflow-wrapper div.line p{
		position: absolute;
		top: -20px;
		left: -30px;
		color: var(--color-white);
		font-size: 16px;
		z-index: 2;
		text-align: center;
		line-height: 130%;
	}
	.entryflow-wrapper div.line p em{
	  font-size:150%;
	  display: block;
	}

	.entryflow-wrapper div.line:before{
	  content: "";
	  height: 1px;
	  width: 100%;
	  display: block;
	  background: var(--color-primary);
	  position: absolute;
	}
	.entryflow-wrapper div.line:after{
	  content: "";
	  display: block;
	  background: var(--color-primary);
	  position: absolute;
	  top: -40px;
	  left: -50px;
	  width: 80px;
	  height: 80px;
	  border-radius: 9999px;
	}
}



.page.interview{}
.page.interview .p-section__header .img:before {
  display:none;
}

.page.interview .p-section .section__inner {
  padding: 0px 0 24px;
}


.page.interview .body{
  display: grid;
  align-items: start;
  gap: 30px;
  position: relative;
}
.page.interview .body > div{
  display: grid;
  align-items: start;
  gap: 30px;
  position: relative;
}

.page.interview .p-section .txt {
  gap: 10px;
}

.page.interview .p-section .img {
  position: relative;
  margin-bottom:20px;
}
.page.interview .p-section .img img{
	width: 95%;
	aspect-ratio: 16 / 10;
}

.page.interview .p-section .img:before {
  content: "";
  position: absolute;
  top: 10%;
  right:0;
  width:120%;
  height:100%;
  background:var(--color-primary);
}
.page.interview .p-section .img.gray,
.page.interview .p-section .col.even .img {
	order:0;
	text-align: right;
}
.page.interview .p-section .img.gray:before,
.page.interview .p-section .col.even .img:before {
  content: "";
  position: absolute;
  top: 10%;
  left:0;
  right:auto;
  width:120%;
  height:100%;
  background:var(--color-gray);
}

.page.interview .p-section .section__inner.message{
  padding-top: 40px;
  margin-top: 40px;
}
.page.interview .p-section .section__inner.message:before{
	content: "";
	border-top: 1px var(--color-gray) solid;
	width: 90%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

@media screen and (min-width: 1024px) {
	.page.interview .body .col{
	grid-template-columns: 1fr 1fr;
	}
	.page.interview .p-section .img:before {
	}
	.page.interview .p-section .img {
	order: 2;
	}
	.page.interview .p-section .img img{
	width: 90%;
	}
	.page.interview .p-section .img:before {
	top: 20%;
	right:0;
	width:95%;
	height:100%;
	}
	.page.interview .p-section .img.gray:before,
	.page.interview .p-section .col.even .img:before {
		top: 20%;
		left:0;
		right:auto;
		width:95%;
		height:100%;
	}
}



.page.recruitment{}

.page.recruitment h2.headding.align-center{
	text-align: center;
	line-height: 180%;
}
.page.recruitment h2.headding span{
  color:var(--color-primary);
}
.page.recruitment p.title{
text-align: center;
  font-size: 15px;
  line-height: 180%;
}



.page.recruitment .section__inner.header .bg {
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: -2;
}
.page.recruitment .section__inner.header .bg img {
  filter: blur(5px);
  opacity: 0.45;
  object-fit: cover;
  aspect-ratio: 1 / 3;
  transform: scale(1.5);
}
.page.recruitment .section__inner.header .bg:before,
.page.recruitment .section__inner.header .bg:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0%;
  width: 205%;
  height: 5px;
  background: var(--color-white);
  z-index: 1;
}
.page.recruitment .section__inner.header .bg:after {
  top: auto;
  bottom: 0;
}

.page.recruitment .section__inner.header{
    padding: 40px 0;
}

.page.recruitment #AboutLE .section__inner.header .inner.header {
	padding: 0;
	position: relative;
	grid-template-columns: 30px 1fr;
	background: rgb(255 255 255 / 63%);
	padding: 40px 20px;
}

.page.recruitment .section__inner.point:before{
	content: "";
	position: absolute;
	top: 0px;
	right: -100%;
	width: 200%;
	height: 100%;
	background: var(--color-gray);
	z-index: -1;
}

.page.recruitment .section__inner.point{
  margin-top: -5px;
  padding: 70px 20px;
  display: grid;
  gap: 60px;
}


.page.recruitment .section__inner.point .inner {
	background: var(--color-white);
	padding: 15px var(--padding-base) 40px;
}

.page.recruitment .section__inner.point .body{
  display: grid;
  gap: 20px;
}
.page.recruitment .section__inner.point .body .img{
  display: flex;
  gap: 20px;
  align-items: flex-start;
    flex-direction: column;
}
.page.recruitment .section__inner.point .body .img img{
  max-height: 200px;
  object-fit: contain;
}

.page.recruitment .section__inner.point .read{
	color: var(--color-primary);
	border-bottom: 1px var(--color-gray) solid;
	margin-top:-40px;
	padding: 0 0 10px 0;
	position: relative;;
}
.page.recruitment .section__inner.point .read em{
  font-size: 180%;
  display: block;
}
.page.recruitment .section__inner.point .text{}


.page.recruitment .section__inner.point .small{
  display: grid;
  gap: 40px;
  margin: 0 auto;
}



.page.recruitment #AboutUs .section__inner.header{
}


.page.recruitment .section__inner.check{
  padding-bottom: 100px;
}


.page.recruitment .section__inner.check:before{
  content: "";
  position: absolute;
  bottom:0px;
  left: -100%;
  width: 210%;
  height:100%;
  background: var(--color-primary);
  z-index: -1;
}

.page.recruitment .section__inner.check .headding{
text-align: center;
color:var(--color-white);
}


.page.recruitment .section__inner.check .check-list{
background: var(--color-white);
  padding: 20px;
}
.list_check {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	width: auto;
	margin: 0 auto;
	gap: 10px;
}

.list_check > li {
    position: relative;
    padding: 0px 0px 0px 2em;
    margin: 0px;
    font-size: 16px;
}
.list_check > li::before,
.list_check > li::after {
    position: absolute;
    top: 50%;
    height: 1em;
    content: "";
}
.list_check > li::before {
    left: 0px;
    transform: translateY(-50%);
    width: 1em;
    border:2px solid var(--color-gray);
}
.list_check > li::after {
    left: 0.5em;
    transform: translateY(-75%) rotate(45deg);
    width: 0.5em;
    border-bottom: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
}





.page.recruitment .section__inner.interview{
  margin-top: -50px;
  padding-top: 0;
}

.page.recruitment .section__inner.interview .inner{
	display: flex;
	gap: 20px;
	padding: 0 var(--padding-base);
	flex-direction: column;
}
.page.recruitment .section__inner.interview a{
  color: var(--color-black);
  text-decoration: none;
  display: grid;
  gap: 20px;
    position: relative;
}
.page.recruitment .section__inner.interview a:after{
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
    transition: all 0.4s;
  
}
.page.recruitment .section__inner.interview a:hover:after{
  opacity: 0.5;
}
.page.recruitment .section__inner.interview a  .img img {
  aspect-ratio: 16 / 10;
}

.page.recruitment .section__inner.interview a  .txt {
  gap: 10px;
 } 

.page.recruitment .section__inner.interview a .headding{
color:var(--color-primary);
padding: 0;
}
.page.recruitment .section__inner.interview a .read small{
font-size:60%;
}




a.cta {
	background: var(--color-primary);
	top: 100px;
	left:100%;
	font-size: 18px;
	writing-mode: vertical-rl;
	color: #fff;
	padding: 1rem 0.5rem;
	z-index: 9;
	text-decoration: none;
	box-shadow: 1px 0px 8px #838383;
	position: absolute; /* 最初は通常配置 */
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
	pointer-events: none;
}
.cta.fixed {
  position: fixed;
  top: 100px;
  transform: translateX(-100%);
  opacity: 1;
  pointer-events: auto;
}
a.cta:hover {
  background: #c07187;
}


@media screen and (min-width: 1024px) {
	.page.recruitment .p-section .body .headding {
	  padding: 0 0 40px 0;
	}

	.page.recruitment h2.headding {
	  font-size: 30px;
	}
	.page.recruitment #AboutLE .section__inner.header{
	    padding: 100px 0;
	}
	.page.recruitment .section__inner.header .bg img {
	  transform: scale(1);
	}
	.page.recruitment .section__inner.point{
	  margin-top: -5px;
	  padding: 70px 0;
	  gap: 60px;
	}
	.page.recruitment .section__inner.point .inner {
		padding: 0 var(--padding-base) 40px;
	}
	.page.recruitment .section__inner.point .body .img{
	  gap: 20px;
	  flex-direction: row;
	}
	.page.recruitment .section__inner.point .inner.next{
	  margin-left: 60px;
	}

	.page.recruitment .section__inner.point .inner.next .body .read{
	  text-align: right;
	}

	.page.recruitment .section__inner.point .inner.next:before {
		content: "";
		position: absolute;
		top: 0px;
		right: -100%;
		width: 200%;
		height: 100%;
		background: var(--color-white);
		z-index: -1;
	}
	.page.recruitment .section__inner.point .body .img img {
	  max-height: 300px;
	}

	.page.recruitment .section__inner.point .small{
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	  gap: 40px;
	  margin: 0 auto;
	  margin-left: 55px;
	}

	.page.recruitment .section__inner.point .small .inner {
	  background: var(--color-white);
	  padding: 0 30px 40px;
	}

	.list_check > li {
	    font-size: 18px;
	}
	.page.recruitment #AboutLE .section__inner.header .inner.header {
		grid-template-columns:60px 1fr;
	}

	.page.recruitment #AboutUs .section__inner.header {
	  padding-bottom: 0;
	  padding: 100px 0 40px;
	}
	.list_check {
		grid-template-columns: 1fr 1fr;
	}
	.page.recruitment .section__inner.interview .inner{
		display: flex;
		gap: 20px;
		padding: 0;
		flex-direction:row;
	}

	.page.recruitment p.title{
	text-align: center;
	font-size: var(--font-size-title);
	}


	a.cta {
		font-size: 22px;
		padding: 2rem 1rem;
	}

}



.mw_wp_form form{
	display: flex;
	flex-direction: column;
	gap: 40px;
}


.mw_wp_form form{
	gap: 0px;
}

.page.entry .mw_wp_form form  .c-btn__basic,
.page.contact .mw_wp_form form  .c-btn__basic {
    max-width: 360px;
    width: 100%;
      cursor: pointer;
      font-family: var(--font-family-primary);
        margin-top: 20px;
  }


.mwform-checkbox-field.horizontal-item ,
.c-set.submit{
  font-size: var(--font-size-text);
}


.mw_wp_form .agreement {
  text-align: center;
  display: grid;
  gap: 5px;
  margin-top: 20px;
}


.mw_wp_form_input .confirm,
.mw_wp_form_input .complete{
  display: none;
}

.mw_wp_form_confirm .notice,
.mw_wp_form_confirm .complete,
.mw_wp_form_confirm .privacypolicy{
  display: none;
}
.mw_wp_form_confirm .confirm{
  display: block;
}

.mw_wp_form_complete .notice,
.mw_wp_form_complete .confirm,
.mw_wp_form_complete .privacypolicy{
  display: none;
}
.mw_wp_form_complete .complete{
  display: block;
}

.mw_wp_form_complete p{
  font-size: var(--font-size-text);
  text-align: center;
  padding: 100px 0;
}


.grecaptcha-badge {
    bottom: 90px !important;
    z-index:99;
}
