@charset "UTF-8";

/* CSS Document ohtaya recruit*/
/* reset */
/* box-sizing: border-box;を設定 */
*, *::before, *::after {
	box-sizing: border-box;
}

/* フォントサイズの拡大を防ぐ */
html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

/* デフォルトのマージンを削除、作成するCSSの制御を改善するため */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
	margin: 0;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* bodyのデフォルトを設定 */
body {
	min-height: 100vh;
	line-height: 1.5;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1, h2, h3, h4, button, input, label {
	line-height: 1.1;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
h1, h2, h3, h4 {
	text-wrap: balance;
}

/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
	text-decoration-skip-ink: auto;
	color: currentColor;
}

/* 画像の扱いを簡単にする */
img, picture {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
}

/* inputやbuttonなどのfontは継承 */
input, button, textarea, select {
	font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
	min-height: 10em;
}

/* アンカーされている要素には余分なスクロールマージンが必要 */
:target {
	scroll-margin-block: 5ex;
}

/* common */
body {
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Helvetica Neue', 'Arial', sans-serif;
	color: #333;
	background: url("../images/cop_bottom_bg.svg") no-repeat 13% 98% /min(923px, calc(92300vw / 1920)) #fff;
}

a, a:hover {
	text-decoration: none;
	transition: .4s;
}

#wrap {
	width: min(100vw, 1920px);
	margin: auto;
}

/* header */
header.global {
	display: flex;
	flex-direction: column;
	position: relative;
	height: min(205px, calc(20500% / 1920));
	background: #fff;
}

header.global>div:nth-of-type(1) {
	display: flex;
	flex-flow: column wrap;
	align-items: stretch;
	margin: min(20px, calc(2000vw / 1920)) min(20px, calc(2000vw / 1920)) 0 min(50px, calc(5000vw / 1920));
	height: min(198px, calc(19800vw / 1920));
	z-index: 10;
}

header.global>div:nth-of-type(1) h1 {
	width: auto;
}

header.global>div:nth-of-type(1) h1>img {
	width: min(327px, calc(32700vw / 1920));
	height: min(118px, calc(11800vw / 1920));
}

header.global>div:nth-of-type(1) nav {
	display: flex;
}

header.global>div:nth-of-type(1) nav ul {
	display: flex;
	align-items: center;
	margin: min(13px, calc(1300vw / 1920));
	font-size: clamp(14px, calc(1800vw / 1920), 18px);
}
@media(max-width:780px){
	header.global>div:nth-of-type(1) nav ul {
		margin: 15px 0 10px;
	}
}
header.global>div:nth-of-type(1) nav ul li {
	display: flex;
	align-items: center;
	margin: 0 clamp(2em, calc(5000vw / 1920), 50px) 0 0;
}
header.global>div:nth-of-type(1) nav ul li a {
	position: relative;
	display: inline-block;
	padding: min(4px, calc(400vw / 1920)) min(10px, 1000vw / 1920);
	z-index: 1;
}

header.global>div:nth-of-type(1) nav ul li a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
	display: inline-block;
	width: 130%;
	height: 114%;
	background: rgba(0, 0, 0, .1);
	border: 1px solid #ccc;
	border-radius: 100px;
	z-index: -1;
	opacity: 0;
	transition: .5s;
}

header.global>div:nth-of-type(1) nav ul li a:hover::after {
	opacity: 1;
	transition: .5s;
}

header.global>div:nth-of-type(1)>div {
	display: flex;
	justify-content: flex-end;
	height: min(118px, calc(11800vw / 1920));
}

@media (max-width: 1024px) {
	header.global>div:nth-of-type(1)>div {
		width: 40%;
	}
}

@media (max-width: 834px) {
	header.global>div:nth-of-type(1) {
		width: auto;
		height: auto;
	}

	header.global>div:nth-of-type(1)>div {
		position: absolute;
		right: 20px;
	}
}

header.global>div:nth-of-type(1)>div ul {
	display: flex;
}

header.global>div:nth-of-type(1)>div ul li {
	display: flex;
	justify-content: center;
	align-items: center;
}

header.global>div:nth-of-type(1)>div ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: clamp(194px, calc(40000vw / 1920), 400px);
	height: min(90px, calc(9000vw / 1920));
	margin: 0 min(11px, calc(1100vw / 1920));
	padding: .3em .5em;
	border-radius: 100px;
	text-decoration: underline;
	font-family: serif;
	font-size: clamp(12px, calc(2000vw / 1920), 20px);
	color: #fff;
}

header.global>div:nth-of-type(1)>div ul li:nth-of-type(1) a {
	background: #6356A3;
}

header.global>div:nth-of-type(1)>div ul li:nth-of-type(1) a:hover {
	background: rgba(99, 86, 163, .7);
}

header.global>div:nth-of-type(1)>div ul li:nth-of-type(2) a {
	background: #004EA2;
}

header.global>div:nth-of-type(1)>div ul li:nth-of-type(2) a:hover {
	background: rgba(0, 78, 162, .7);
}

header.global>div:nth-of-type(1)>div ul li a::after {
	content: "";
	display: inline-block;
	width: clamp(20px, calc(4300vw / 1920), 43px);
	height: clamp(20px, calc(4300vw / 1920), 43px);
	margin: 0 0 0 .5em;
	background: url("../../html/template/ohtayarenew/assets/img/common/arw_line_wh.svg") no-repeat center /contain;
}

header.global>div:nth-of-type(2), header.global>div:nth-of-type(3) {
	/* navDrawr */
	display: none;
}

header.global>div:nth-of-type(4)>div:nth-of-type(1) {
	display: flex;
	flex-direction: column;
	align-items: center;
}

header.global>div:nth-of-type(4)>div:nth-of-type(2) {
	display: flex;
	width: 100%;
	z-index: 2;
}

header.global>div:nth-of-type(4)>div:nth-of-type(2)>img {
	width: 25%;
	height: min(300px, calc(30000vw / 1920));
	background: #ccc;
}

/* main content */
main section {}

.content_header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	height: min(580px, calc(58000vw / 1920));
	background: url(../images/recruit_header_bg_tab.jpg) no-repeat center 62% /cover;
}

.content_header h2 {
	margin: 5% auto 0;
	font-family: serif;
	font-weight: 500;
	text-align: center;
	font-size: min(60px, calc(6000vw / 1920));
	letter-spacing: .1em;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
}

.content_header h2 span {
	display: block;
	font-size: min(32px, calc(3200vw / 1920));
	line-height: 1.7;
}

.table_anchor {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	margin: min(100px, calc(10000vw / 1920)) auto;
}

.table_anchor>div {
	position: relative;
	display: flex;
	justify-content: center;
	width: 80%;
	margin: min(50px, calc(5000vw / 1920)) 0;
	padding: 2em;
	border: 1px solid #aaa;
}

.table_anchor h4 {
	position: absolute;
	top: -2em;
	left: -2em;
	border: 3px solid #ccc;
	padding: 1.5em 1.1em;
	border-radius: 120%;
	background: #fff;
	font-size: min(40px, calc(4000vw / 1920));
	color: #f63;
}

.table_anchor ul {
	display: flex;
	width: 80%;
	font-size: 26px;
	font-size: clamp(14px, calc(2600vw / 1920), 26px);
}

.table_anchor ul>li {
	width: 100%;
	margin: 0 4%;
}

.table_anchor ul>li a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column wrap;
	height: min(200px, calc(20000vw / 1920));
}

.table_anchor ul>li:nth-of-type(1) a {
	background: #C1DBFF;
}

.table_anchor ul>li:nth-of-type(2) a {
	background: #D1CBFF;
}

.table_anchor ul>li:nth-of-type(1) a:hover {
	background: #DEECFF;
}

.table_anchor ul>li:nth-of-type(2) a:hover {
	background: #DFDBFD;
}

.table_anchor ul>li a::after {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	margin: .3em 0 0;
	border-left: 2px solid #333;
	border-bottom: 2px solid #333;
	transform: rotate(-45deg);
}

.recruit_table {
	width: 80%;
	margin: 0 auto 4%;
	padding: 2% 4%;
	background: #f0f0f0;
}

@media (max-width: 1024px) {
	.recruit_table {
		width: 90%;
		padding: 4%;
	}
}

.recruit_table h3 {
	text-align: center;
	font-size: clamp(18px, calc(3800vw / 1920), 38px);
}

/* table */
.recruit_table table {
	width: 100%;
	margin: 2em auto;
	border-collapse: collapse;
	border-spacing: 0;
	background: #fff;
	font-size: clamp(14px, calc(2200vw / 1920), 22px);
}

.recruit_table th,
.recruit_table td {
	border: 1px solid #aaa;
	padding: 2em 3em;
}

@media(max-width:1440px) {
	.recruit_table th{
		padding: 2em;
	}
}

@media(max-width:1024px) {

	.recruit_table th,
	.recruit_table td {
		padding: 1em 1.5em;
	}
}

.recruit_table th {
	width: 20%;
	background: aliceblue;
}

.recruit_table td {
	width: 80%;
}

.recruit_table td p {
	margin-bottom: 1em;
	line-height: 1.7;
}

.recruit_table table ul {
	list-style: disc;
	margin-left: 1.5em;
}

.recruit_table td>table caption {
	text-align: right;
	font-size: clamp(12px, calc((1em * 100) / 1920), 1em);
}

.recruit_table td>table th,
.recruit_table td>table td {
	width: calc(100% / 3);
	padding: 1em;
}

p.entry_shop {
	margin: 0 0 .5em;
	text-align: center;
	font-size: min(30px, calc(3000vw /1920));
}

.message {
	width: 80%;
	margin: min(100px, calc(10000vw / 1920)) auto;
}

@media(max-width: 1024px) {
	.message {
		width: 90%;
	}
}

.message h3 {
	margin: 0 0 2em;
	padding: 1em;
	background: #dcdcdc;
	border-radius: 200px;
	text-align: center;
	font-size: clamp(18px, calc(4000vw / 1920),40px);
}

.message>div:nth-of-type(1) {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	margin: 0 auto min(100px, calc(10000vw / 1920));
}

.message>div:nth-of-type(1)>img,
.message>div:nth-of-type(1)>div {
	width: min(46%, 600px);
	height: 100%;
	font-family: serif;
}

.message>div:nth-of-type(1)>div h4 {
	margin: 0 0 1em;
	font-size: clamp(22px, calc(4000vw / 1920), 40px);
	line-height: 1.7;
}

@media(max-width: 1024px) {
	.message>div:nth-of-type(1) {
		width: 90%;
		align-items: flex-start;
	}
	.message>div:nth-of-type(1)>img{
		padding: 0.7em 0 0;
	}
}

.message>div:nth-of-type(1)>div h4 span {
	font-size: clamp(14px, calc(2000vw / 1920), 20px);
}

.message>div:nth-of-type(1)>div p {
	font-size: clamp(14px, calc(2200vw / 1920), 22px);
	line-height: 1.7;
}

.message>div:nth-of-type(2) {
	display: flex;
	justify-content: space-between;
	width: 80%;
	margin: auto;
	font-family: serif;
}

@media(max-width: 1024px) {
	.message>div:nth-of-type(2) {
		width: 90%;
	}
}

.message>div:nth-of-type(2)>div {
	width: 46%;
	max-width: 600px;
}

.message>div:nth-of-type(2)>div h4 {
	margin: 0 0 .7em;
	text-align: center;
	font-size: clamp(16px, calc(3200vw / 1920), 32px);
}

.message>div:nth-of-type(2)>div p {
	margin: 1.5em 0;
	font-size: clamp(14px, calc(2200vw / 1920), 22px);
	line-height: 1.7;
}

main section p.button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto clamp(1em, 1.5em, 2em);
}

main section p.button a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 40%;
	height: clamp(45px, calc(9000vw / 1920), 90px);
	margin: 0 min(11px, calc(1000vw / 1920));
	padding: .3em .5em;
	background: royalblue;
	border: 1px solid #666;
	border-radius: 16px;
	font-family: serif;
	font-size: clamp(18px, calc(2400vw / 1920), 24px);
	color: #fff;
}

main section p.button.entry a {
	background: darkorange;
}

main section p.button.entry a:hover {
	background: orange;
}

main section p.button.inquiry a {
	background: #004EA2;
}

main section p.button.inquiry a:hover {
	background: rgba(0, 78, 162, .7);
}

/*
main section p.button a::after {
	position: absolute;
	right: 1.5em;
	content: "";
	display: inline-block;
	width: 43px;
	height: 43px;
	margin: 0;
	background: url("../../html/template/ohtayarenew/assets/img/common/arw_line_wh.svg") no-repeat center /contain;
}
*/

/* footer */
footer.global {
	padding: min(87px, calc(8700vw / 1920)) 0 0;
}

footer.global>div.pagetop {
	/* nth-of-type(1) */
	position: fixed;
	right: min(30px, calc(3000vw / 1920));
	bottom: min(54px, calc(5400vw / 1920));
	width: 110px;
	height: 74px;
	padding: 54px 0 0;
	background: url(../../html/template/ohtayarenew/assets/img/common/totop_but.svg) no-repeat center top;
	text-align: center;
	line-height: 1.2;
	font-size: 14px;
	color: #000;
	cursor: pointer;
}

footer.global>div:nth-of-type(2) {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: auto;
}

footer.global>div:nth-of-type(2) p a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: clamp(250px, calc(40000vw / 1920), 400px);
	height: clamp(45px, calc(9000vw / 1920), 90px);
	margin: clamp(12px, calc(1600vw / 1920), 16px) 0;
	padding: .3em .5em;
	border: 1px solid #707070;
	border-radius: 100px;
	text-decoration: underline;
	font-family: serif;
	font-size: clamp(12px, calc(2000vw / 1920), 20px);
}

footer.global>div:nth-of-type(2) p a:hover {
	background: #eee;
	transition: .4s;
}

footer.global>div:nth-of-type(2) p a::after {
	content: "";
	display: inline-block;
	width: clamp(22px, calc(4300vw / 1920), 43px);
	height: clamp(22px, calc(4200vw / 1920), 43px);
	margin: 0 0 0 .5em;
	background: url("../../html/template/ohtayarenew/assets/img/common/arw_line_gr.svg") no-repeat center /contain;
}

/* wanokuyo_logo */
footer.global>div:nth-of-type(2) img {
	width: clamp(160px, calc(25100vw / 1920), 251px);
}

footer.global>div:nth-of-type(3) {
	margin: min(60px, calc(6000vw / 1920)) auto 0;
}

footer.global>div:nth-of-type(3) ul {
	display: flex;
	justify-content: center;
	margin: 1em auto 0;
	font-size: clamp(12px, calc(1600vw / 1920), 16px);
}

footer.global>div:nth-of-type(3) ul li a {
	display: inline-block;
	padding: .5em 0 .5em 1.5em;
}

footer.global>div:nth-of-type(3) ul li a::before {
	content: "|";
	display: inline-block;
	width: 1px;
	height: auto;
	margin: 0 1.5em 0 0;
	color: #707070;
}

footer.global>div:nth-of-type(3) ul li:last-of-type a::after {
	content: "|";
	display: inline-block;
	width: 1px;
	height: auto;
	margin: 0 0 0 1.5em;
	color: #707070;
}

footer.global>div:nth-of-type(4) {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: min(90px, calc(9000vw / 1920)) 0 0;
}

/* footer logo */
footer.global>div:nth-of-type(4) img {
	width: clamp(180px, calc(32700vw / 1920), 327px);
}

footer.global p.copy {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: min(97px, calc(9700vw / 1920));
	font-size: clamp(11px, calc(1400vw / 1920), 12px);
}

@media (max-width: 431px) {
	body {
		color: #333;
		background-size: 60%;
		background-position: -25% 99.5%;
	}

	#wrap {
		width: 100vw;
		margin: auto;
	}

	header.global {
		width: 100%;
		height: 76px;
	}

	header.global>div:nth-of-type(1) {
		justify-content: center;
		height: 100%;
		margin: 0 10px;
		z-index: 5;
	}

	header.global>div:nth-of-type(1) h1 {
		width: 40%;
	}

	header.global>div:nth-of-type(1) h1>img {
		width: 100%;
		height: auto;
	}

	header.global>div:nth-of-type(1) nav {
		display: none;
	}

	header.global>div:nth-of-type(1)>div {
		display: none;
	}

	header.global>div:nth-of-type(1)>div ul {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	header.global>div:nth-of-type(1)>div ul li {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	header.global>div:nth-of-type(1)>div ul li a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 90%;
		height: 72px;
		margin: 0 0 5%;
		padding: .3em .5em;
		border-radius: 100px;
		text-decoration: underline;
		font-family: serif;
		font-size: 1em;
		color: #fff;
	}

	header.global>div:nth-of-type(1)>div ul li:nth-of-type(1) a {
		background: #6356A3;
	}

	header.global>div:nth-of-type(1)>div ul li:nth-of-type(2) a {
		background: #004EA2;
	}

	header.global>div:nth-of-type(1)>div ul li a::after {
		content: "";
		display: inline-block;
		width: 43px;
		height: 43px;
		margin: 0 0 0 .5em;
		background: url("../../html/template/ohtayarenew/assets/img/common/arw_line_wh.svg") no-repeat center /contain;
	}

	header.global>div:nth-of-type(2) {
		/* navDrawrBtn */
		display: flex;
	}

	header.global>div:nth-of-type(3) {
		/* navDrawr */
	}

	header.global>div:nth-of-type(4) {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		height: 100%;
	}

	header.global>div:nth-of-type(4)::after {
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		display: flex;
		width: 100%;
		height: 100%;
		background: url("../images/corporate_header_bg_sp@2x.jpg") no-repeat center top /cover #eee;
		z-index: 1;
	}

	header.global>div:nth-of-type(4)>div:nth-of-type(1) {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	header.global>div:nth-of-type(4)>div:nth-of-type(2) {
		display: flex;
		width: 100%;
		z-index: 2;
		display: none;
		/*イメージ画像*/
	}

	header.global>div:nth-of-type(4)>div:nth-of-type(2)>img {
		width: 25%;
		height: auto;
		background: #ccc;
	}

	header.global.hide {
		/*transform: translateY(-60px);
		transition: .5s;*/
	}

	/*-- DrawerBtn --*/
	#navDrawrBtn {
		position: absolute;
		top: 18px;
		right: 15px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 44px;
		height: 44px;
		cursor: pointer;
		z-index: 5;
	}

	#navDrawrBtn::after {
		content: "MENU";
		display: flex;
		justify-content: center;
		margin: 20px 0 0;
		font-size: 12px;
	}

	#navDrawrBtn span {
		display: block;
		position: absolute;
		width: 30px;
		border-bottom: solid 2px #666;
		transition: .35s ease-in-out;
	}

	#navDrawrBtn span:nth-child(1) {
		top: 2px;
	}

	#navDrawrBtn span:nth-child(2) {
		top: 10px;
	}

	#navDrawrBtn span:nth-child(3) {
		top: 18px;
	}

	/*-- DrawrBtn Open --*/
	.menuOpen #navDrawrBtn span:nth-child(1) {
		top: 10px;
		transform: rotate(-45deg);
	}

	.menuOpen #navDrawrBtn span:nth-child(2), .menuOpen #navDrawrBtn span:nth-child(3) {
		top: 10px;
		transform: rotate(45deg);
	}

	.overlay {
		display: none;
		position: fixed;
		top: 76px;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 1);
		z-index: 6;
	}

	/*-- header nav --*/
	header.global .navDrawr {
		position: absolute;
		top: 80px;
		width: 100vw;
		height: auto;
		text-align: left;
		overflow: auto;
		display: none;
		z-index: 10;
	}

	header.global .navDrawr ul {
		margin: 0;
	}

	header.global .navDrawr ul li {
		display: block;
		line-height: 2;
	}

	header.global .navDrawr ul li a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0 auto;
		padding: 1em 4em 1em 4.5em;
		text-align: center;
		letter-spacing: .3em;
		font-size: .9em;
	}

	header.global .navDrawr ul li a::after {
		content: "";
		display: inline-block;
		width: 20px;
		height: 20px;
		margin: 0 0 0 .5em;
		background: url("../../html/template/ohtayarenew/assets/img/common/arw_line_gr.svg") no-repeat center /contain;
	}

	header.global .navDrawr ul li:nth-of-type(odd) {
		background: #fbfbfb;
	}

	header.global .navDrawr ul li:nth-of-type(even) {
		background: #fffffe;
	}

	header.global .navDrawr ul li a:active {
		background: rgba(100, 100, 100, 0.3);
	}

	/* main content */
	main section {}

	.content_header {
		/*copy*/
		height: 30vh;
		background: url(../images/recruit_header_bg.jpg) no-repeat center /cover;
	}

	.content_header h2 {
		margin: 8% auto 0;
		font-size: 9vw;
	}

	.content_header h2 span {
		font-size: 5vw;
	}

	.table_anchor {
		margin: 10% auto;
	}

	.table_anchor>div {
		flex-direction: column;
		width: 92%;
		margin: 0 0 10%;
		padding: 0;
		border: none;
	}

	.table_anchor h4 {
		position: relative;
		top: auto;
		left: auto;
		border: none;
		margin: 0 0 1em;
		padding: .5em;
		border-radius: 0;
		background-size: auto auto;
		background-color: rgba(245, 245, 245, 1);
		background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(232, 229, 229, 1) 4px, rgba(232, 229, 229, 1) 10px);
		text-align: center;
		text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
		font-size: 1.4em;
		color: #f63;
	}

	.table_anchor ul {
		display: flex;
		flex-direction: column;
		width: 92%;
		margin: auto;
		font-size: 1.2em;
	}

	.table_anchor ul>li {
		width: 100%;
		margin: 0 auto 5%;
	}

	.table_anchor ul>li a {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-flow: column wrap;
		height: 110px;
	}

	.table_anchor ul>li:nth-of-type(1) a {
		background: #C1DBFF;
	}

	.table_anchor ul>li:nth-of-type(2) a {
		background: #D1CBFF;
	}

	.table_anchor ul>li:nth-of-type(1) a:hover {
		background: #DEECFF;
	}

	.table_anchor ul>li:nth-of-type(2) a:hover {
		background: #DFDBFD;
	}

	.table_anchor ul>li a::after {
		content: "";
		display: block;
		width: 1em;
		height: 1em;
		margin: .3em 0 0;
		border-left: 2px solid #333;
		border-bottom: 2px solid #333;
		transform: rotate(-45deg);
	}

	.recruit_table {
		width: 92%;
		padding: 4%;

	}

	.recruit_table h3 {
		font-size: 1.3em;
	}

	/* scroll table */
	.recruit_table>div {
		margin-bottom: 5%;
		overflow-x: scroll;
	}

	/* table */
	.recruit_table table {
		margin: 4% auto;
		border-collapse: collapse;
		font-size: .875em;
		min-width: max-content;
	}

	.recruit_table th,
	.recruit_table td {
		border-collapse: collapse;
		border: 1px solid #aaa;
		padding: 1em;
	}

	.recruit_table th {
		width: min-content;
		background: aliceblue;
	}

	.recruit_table td {
		width: 40em;
	}

	p.entry_shop {
		font-size: 1em;
	}

	.message {
		width: 92%;
		margin: 10% auto;
	}

	.message h3 {
		margin: 0 0 2em;
		padding: .7em 0;
		background: #dcdcdc;
		border-radius: 200px;
		font-size: 1.55em;
	}

	.message>div:nth-of-type(1) {
		flex-direction: column;
		width: 92%;
		margin: 0 auto 10%;
	}

	.message>div:nth-of-type(1)>img,
	.message>div:nth-of-type(1)>div {
		width: 100%;
	}

	.message>div:nth-of-type(1)>div h4 {
		width: fit-content;
		margin: .5em auto;
		text-align: right;
		font-size: 1.5em;
		line-height: 1.7;
	}

	.message>div:nth-of-type(1)>div h4 span {
		font-size: .7em;
	}

	.message>div:nth-of-type(1)>div p {
		padding: 2%;
		font-size: 1em;
		line-height: 1.7;
	}

	.message>div:nth-of-type(2) {
		flex-direction: column;
		width: 92%;
		margin: auto;
	}

	.message>div:nth-of-type(2)>div {
		width: 100%;
		max-width: none;
		margin: 0 auto 5%;
		padding: 10% 0 0;
		border-top: 1px dashed darkblue;
	}

	.message>div:nth-of-type(2)>div:last-of-type {
		margin-bottom: 0;
		padding-bottom: 5%;
		border-bottom: 1px dashed darkblue;
	}

	.message>div:nth-of-type(2)>div h4 {
		margin: 0 0 .7em;
		text-align: center;
		font-size: 1.5em;
	}

	.message>div:nth-of-type(2)>div p {
		margin: 1.5em 0;
		font-size: 1em;
		line-height: 1.7;
	}

	main section p.button {
		width: 100%;
		margin: auto;
	}

	main section p.button a {
		width: 90%;
		height: 72px;
		margin: 0 0 5%;
		padding: .3em .5em;
		border-radius: 12px;
		font-size: 1em;
	}

	/* footer */
	footer.global {
		padding: 20% 0 0;
	}

	footer.global>div.pagetop {
		/* nth-of-type(1) */
		right: 2%;
		bottom: 6%;
		width: 100px;
		height: 74px;
		font-size: 12px;
	}

	footer.global>div:nth-of-type(2) {
		height: auto;
	}

	footer.global>div:nth-of-type(2) a img {
		width: 70%;
		margin: auto;
	}

	footer.global>div:nth-of-type(2) p {
		width: 100%;
	}

	footer.global>div:nth-of-type(2) p a {
		width: 86%;
		height: 72px;
		margin: 1em auto;
		padding: .3em .5em;
		font-size: 1em;
	}

	footer.global>div:nth-of-type(2) p a:hover {
		background: #eee;
		transition: .4s;
	}

	footer.global>div:nth-of-type(2) p a::after {
		content: "";
		display: inline-block;
		width: 43px;
		height: 43px;
		margin: 0 0 0 .5em;
		background: url("../../html/template/ohtayarenew/assets/img/common/arw_line_gr.svg") no-repeat center /contain;
	}

	footer.global>div:nth-of-type(3) {
		margin: 60px auto 0;
	}

	footer.global>div:nth-of-type(3) ul {
		display: flex;
		justify-content: center;
		flex-flow: column wrap;
		margin: 0 4%;
		font-size: .975em;
	}

	footer.global>div:nth-of-type(3) ul li a {
		display: block;
		padding: .8em 0 .8em 3em;
		background: url("../../html/template/ohtayarenew/assets/img/common/arw_l_wh.svg") no-repeat 90% center /2em rgba(255, 255, 255, .8);
		border-top: 1px dashed #ccc;
	}

	footer.global>div:nth-of-type(3) ul:nth-of-type(2) li:last-of-type a {
		border-bottom: 1px dashed #ccc;
	}

	footer.global>div:nth-of-type(3) ul li a::before {
		content: none;
	}

	footer.global>div:nth-of-type(3) ul li:last-of-type a::after {
		content: none;
	}

	footer.global>div:nth-of-type(4) {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 12% 0 2%;
	}

	footer.global>div:nth-of-type(4) a img {
		width: 140px;
		margin: auto;
	}

	footer.global p.copy {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		height: 2em;
		font-size: 12px;
	}

	@media (max-width: 375px) {
		header.global>div:nth-of-type(4)::after {
			background: url("../images/corporate_header_bg_sp_min@2x.jpg") no-repeat center top /cover #eee;
		}

		header.global>div:nth-of-type(1)>div {
			bottom: 3%;
		}
	}
}