*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
}

address {
	font-style: normal;
}

button {
	background: inherit;
}

body {
	background: #fff;
	color: #2F2F2F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 17px;
	font-style: normal;
	line-height: 1.7;
}

img {
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

.l-inner {
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.u-separate {
	margin-bottom: 24px;
	margin-top: 24px;
}

.hidden-sp {
	display: none;
}

.header {
	background: #fff;
	position: fixed;
	width: 100%;
	z-index: 100;
}

.header-box {
	align-items: center;
	display: flex;
	height: 80px;
	justify-content: space-between;
	padding: 20px;
}

.header__icon {
	width: 150px;
}

.header__icon img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.header__right-box {
	display: none;
}

.header__right-box-head {
	align-items: center;
	display: flex;
	gap: 20px;
}

.right-box-head__tel {
	width: 228px;
}

.right-box-head__tel img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.right-box-head__btn {
	width: 218px;
}

.right-box-nav__item {
	display: flex;
	gap: 20px;
	white-space: nowrap;
}

.right-box-nav__link {
	font-size: 21px;
	font-weight: 500;
	letter-spacing: 4px;
}

.right-box-nav__link-open {
	font-size: 21px;
	letter-spacing: 4px;
}

.right-box-nav-sub {
	display: none;
}

.drawer {
	background: #fff;
	height: calc(100vh - 80px);
	position: fixed;
	top: 80px;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
	width: 100%;
	z-index: 99;
}

.drawer.is-checked {
	transform: translateX(0%);
}

.drawer-item {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	width: 250px;
}

.drawer__link {
	border-bottom: 1px solid #9f9fa0;
	color: #0e5f99;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 4px;
	padding: 5px 0;
}

.drawer__link.active {
	border: none;
}

.drawer__link.active .drawer__link-open {
	border-bottom: 1px solid #9f9fa0;
	text-align: left;
	width: 100%;
}

.drawer__link-open {
	color: #0e5f99;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 4px;
}

.drawer__link-sub-item li {
	border-bottom: 1px solid #9f9fa0;
	padding: 5px 0 5px 20px;
}

.drawer-open {
	align-items: center;
	display: inline-block;
	height: 21px;
	position: relative;
	width: 28px;
}

.drawer-open.is-checked .drawer-open__bar:nth-of-type(1) {
	background: #0e5f99;
	top: 9px;
	transform: rotate(45deg);
}

.drawer-open.is-checked .drawer-open__bar:nth-of-type(2) {
	background: #0e5f99;
	display: none;
}

.drawer-open.is-checked .drawer-open__bar:nth-of-type(3) {
	background: #0e5f99;
	top: 9px;
	transform: rotate(-45deg);
}

.drawer-open__bar {
	background: #0e5f99;
	border-radius: 30px;
	height: 2px;
	left: 0;
	position: absolute;
	transition: transform 0.3s linear, top 0.3s linear;
	width: 28px;
}

.drawer-open__bar:nth-child(1) {
	top: 0;
}

.drawer-open__bar:nth-child(2) {
	top: 7px;
	width: 28px;
}

.drawer-open__bar:nth-child(3) {
	top: 15px;
	width: 28px;
}

.right-box-nav__link.has-sub {
	position: relative; /* サブメニューの基準 */
}

.right-box-nav__link.has-sub.active::after {
	background: url(../img/2x/sankaku@2x.webp) no-repeat center center/cover;
	bottom: -7px;
	content: "";
	height: 10px;
	left: 50%;
	position: absolute;
	width: 10px;
}

.right-box-nav-sub {
	background: #fff;
	display: none;
	left: -10px;
	min-width: 210px;
	padding: 10px;
	position: absolute;
	top: 120%; /* ボタンの真下に出る */
	z-index: 100;
}

.right-box-nav-sub__link {
	border-bottom: 1px solid #9f9fa0;
	color: #333;
	display: block;
	padding: 5px 40px 5px 12px;
	position: relative;
	text-decoration: none;
}

.right-box-nav-sub__link::after {
	background: url(../img/2x/link-ar@2x.webp) no-repeat center center/cover;
	content: "";
	height: 10px;
	position: absolute;
	right: 14px;
	top: 40%;
	width: 10px;
}

.right-box-nav-sub__link:hover {
	background: #f5f5f5;
}

.right-box-nav__link.has-sub.active .right-box-nav-sub {
	display: block;
}

.drawer__link-sub-item {
	max-height: 0; /* 初期は閉じる */
	overflow: hidden;
	padding-left: 20px; /* インデント */
	transition: max-height 0.3s ease;
}

.drawer__link.has-sub.active .drawer__link-sub-item {
	max-height: 500px; /* 十分な高さを指定 */
}

.btm-btn {
	background: #fff;
	bottom: 0;
	color: #fff;
	display: flex;
	font-size: 18px;
	height: 60px;
	justify-content: space-between;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 100;
}

.btm-btn__tel {
	align-items: center;
	background: #eb9938;
	display: flex;
	gap: 5px;
	justify-content: center;
	position: relative;
	width: 49.9%;
}

.btm-btn__tel::before {
	background: url(../img/2x/tel-i@2x.webp) no-repeat center center/cover;
	content: "";
	height: 25px;
	width: 15px;
}

.btm-btn__con {
	align-items: center;
	background: #eb9938;
	display: flex;
	gap: 5px;
	justify-content: center;
	width: 49.9%;
}

.btm-btn__con::before {
	background: url(../img/2x/con-i@2x.webp) no-repeat center center/cover;
	content: "";
	height: 15px;
	width: 28px;
}

.fv {
	padding-top: 80px;
	position: relative;
}

.fb-bg {
	height: 600px;
	overflow: hidden;
	width: 100%;
}

.fb-bg img {
	-o-object-fit: cover;
	-o-object-position: -100px;
	height: 100%;
	object-fit: cover;
	object-position: -100px;
}

.fv__text {
	color: #fff;
	font-size: 35px;
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1.2;
	position: absolute;
	right: 10px;
	text-align: right;
	top: 90px;
}

.fv__news {
	align-items: end;
	bottom: 50px;
	display: flex;
	flex-direction: column;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 90%;
}

.fv__news-box {
	background: #fff;
	color: #0e5f99;
	display: flex;
	padding: 10px;
	width: 100%;
}

.fv__news-box__head {
	font-size: 12px;
	font-weight: bold;
}

.fv__news-box__body-link {
	display: flex;
	flex-direction: column;
	font-size: 14px;
}

.news-date {
	font-size: 10px;
	letter-spacing: 1px;
}

.fv__news-other {
	background: #0e5f99;
	color: #fff;
	display: block;
	font-size: 11px;
	padding: 5px;
	white-space: nowrap;
	width: -moz-fit-content;
	width: fit-content;
}

.footer-copy {
	background: #231815;
	color: #9fa0a0;
	font-size: 7px;
	letter-spacing: 2px;
	padding: 3px;
	text-align: center;
	width: 100%;
}

.footer {
	display: none;
}

.footer__top {
	display: none;
	margin-bottom: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	max-width: 1040px;
	position: relative;
	width: 100%;
}

.footer__top__btn {
	bottom: 15px;
	height: 80px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 80%;
}

.footer-icon {
	display: block;
	width: 288px;
}

.footer-icon img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.footer__left-add {
	display: flex;
	flex-direction: column;
	margin-top: 15px;
}

.footer__left-add__top {
	font-size: 18px;
}

.footer__left-add__cen {
	font-size: 15px;
}

.footer__left-add__btm {
	font-size: 15px;
}

.footer__right {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 48%;
}

.footer__right__top {
	display: flex;
	justify-content: space-between;
}

.footer-link {
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 3px;
}

.footer__right__btm {
	align-self: end;
}

.top-btm {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.top-btm__or {
	background: #eb9938;
	height: 420px;
	position: relative;
	width: 100%;
	z-index: -2;
}

.bg__l {
	height: 449px;
	left: 30px;
	position: absolute;
	top: -240px;
	width: 396px;
	z-index: 2;
}

.bg__l img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.top-btm__track {
	position: relative;
	z-index: 1;
}

.top-btm__track-bg {
	height: 960px;
	position: relative;
	width: 100%;
}

.top-btm__track-bg img {
	-o-object-fit: cover;
	-o-object-position: -300px;
	height: 100%;
	object-fit: cover;
	object-position: -300px;
}

.top-btm__track-bg::after {
	background: rgba(255, 255, 255, 0.4); /* 白＋50%透過 */
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.top-btm__text-box {
	color: #fff;
	left: 50%;
	position: absolute;
	text-align: center;
	top: 30px;
	transform: translateX(-50%);
	width: 100%;
	z-index: 2;
}

.top-btm__reed {
	font-size: 18px;
	font-weight: bold;
}

.top-btm__body {
	font-size: 14px;
	margin-top: 35px;
}

.top-btm__track-link-box {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
	left: 50%;
	position: absolute;
	top: 50px;
	transform: translateX(-50%);
	width: 70%;
	z-index: 2;
}

.track-link {
	height: 260px;
	width: 260px;
}

.track-link img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.top-recruit {
	overflow: hidden;
	position: relative;
}

.top-recruit-f {
	background: #f1f1f1;
	height: 1100px;
	position: relative;
}

.top-recruit-f__bg-en {
	left: 50%;
	position: absolute;
	top: -430px;
	transform: translateX(-50%);
	width: 600px;
}

.top-recruit-f__bg-en.track-en {
	display: none;
}

.top-recruit-f__bg-l {
	height: 1000px;
	position: absolute;
	top: 125px;
}

.top-recruit-f__bg-l img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
}

.top-recruit-bg {
	z-index: -2;
}

.top-recruit-bg img {
	-o-object-position: -100px -100px;
	object-position: -100px -100px;
}

.top-recruit-head {
	font-weight: bold;
	left: 50%;
	position: absolute;
	text-align: center;
	top: 200px;
	transform: translateX(-50%);
	white-space: nowrap;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 3;
}

.top-recruit-head-top {
	align-items: center;
	color: #0e5f99;
	display: flex;
	flex-direction: column;
	font-size: 24px;
}

.top-recruit-head-top span {
	color: #2F2F2F;
	font-size: 12px;
}

.top-recruit-head-reed {
	color: #0e5f99;
	font-size: 18px;
	margin-top: 20px;
}

.top-recruit-head-sub {
	font-size: 14px;
	margin-top: 10px;
}

.top-recruit__img-box {
	display: flex;
	gap: 5px;
	left: 50%;
	max-width: 1040px;
	padding: 0 10px;
	position: absolute;
	top: 600px;
	transform: translateX(-50%);
	width: 100%;
	z-index: 3;
}

.top-recruit__link-box {
	display: flex;
	flex-direction: column;
	gap: 20px;
	left: 50%;
	max-width: 380px;
	position: absolute;
	top: 800px;
	transform: translateX(-50%);
	width: 70%;
	z-index: 2;
}

.top-recruit__link-img {
	display: block;
}

.top-wark {
	background: #0e5f99;
	padding-bottom: 100px;
	position: relative;
	z-index: 3;
}

.top-section-head {
	align-items: center;
	background: #0e5f99;
	border: 2px solid #fff;
	color: #fff;
	display: flex;
	font-size: 20px;
	font-weight: bold;
	height: 40px;
	justify-content: center;
	left: 50%;
	letter-spacing: 5px;
	position: absolute;
	top: -20px;
	transform: translateX(-50%);
	width: 70%;
	z-index: 5;
}

.top-section-head.org {
	background: #eb9938;
}

.top-wark__top-text {
	color: #fff;
	font-size: 14px;
	padding-top: 80px;
	text-align: center;
}

.top-wark__card-box {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 30px;
	width: 80%;
}

.top-wark__card-link {
	display: block;
	position: relative;
}

.top-wark__card-link::after {
	background: url(../img/2x/work-card-btn@2x.webp) no-repeat center center/cover;
	content: "";
	height: 75px;
	position: absolute;
	right: 0;
	top: 60%;
	width: 75px;
}

.top-wark__card-link.top-kankyou-link::after {
	background: url(../img/2x/work-card-btn-br@2x.webp) no-repeat center center/cover;
}

.top-kankyou {
	background: #eb9938;
	padding-bottom: 100px;
	position: relative;
	z-index: 3;
}

.top-kankyou__top-text {
	color: #fff;
	font-size: 14px;
	padding-top: 80px;
	text-align: center;
}

.top-kankyou__kyoten-content {
	background: #fff;
	border-radius: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	max-width: 0 30px;
	padding: 30px 10px;
	width: 80%;
}

.top-kankyou__kyoten-head {
	color: #0e5f99;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.top-kankyou__kyoten-box {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	width: 80%;
}

.top-kankyou__kyoten-item {
	display: block;
}

.top-blog-ins {
	background: #f1f1f1;
	padding-bottom: 100px;
	padding-top: 100px;
}

.top-blog-ins__contents {
	display: flex;
	flex-direction: column;
	gap: 100px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1040px;
	width: 80%;
}

.top-blog-ins__blog {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	width: 80%;
}

.top-blog-ins__head {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}

.top-blog-ins__body {
	margin-top: 30px;
}

.top-blog-card {
	background: #fff;
	display: flex;
	width: 100%;
}

.top-blog-card__left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px 10px;
}

.top-blog-card__date {
	align-items: center;
	display: flex;
	font-size: 8px;
	font-weight: bold;
}

.top-blog-card__tag {
	align-items: center;
	background: #eb9938;
	color: #fff;
	display: flex;
	font-size: 6px;
	font-weight: bold;
	height: 10px;
	justify-content: center;
	margin-left: 10px;
	width: 61px;
}

.top-blog-card__title {
	font-size: 10px;
	font-weight: bold;
	line-height: 1.2;
}

.top-blog-card__content {
	font-size: 8px;
	line-height: 1.4;
}

.top-blog-card__right {
	background: #aaa;
	flex-shrink: 0;
	height: 126px;
	width: 126px;
}

.top-blog-card__img {
	height: 100%;
	width: 100%;
}

.top-blog-ins__btn {
	align-items: center;
	background: #eb9938;
	border-radius: 8px;
	color: #fff;
	display: flex;
	font-size: 12px;
	font-weight: bold;
	height: 35px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	width: 170px;
}

.p-section {
	padding-bottom: 50px;
	padding-top: 100px;
}

.page-head {
	padding-top: 80px;
	width: 100%;
}

.page-head img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.p-top-btns {
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	max-width: 600px;
}

.p-top-btns__btn {
	background: #fff;
	border: 2px solid #eb9938;
	border-radius: 8px;
	color: #eb9938;
	font-size: 11px;
	font-weight: 600;
	min-width: 71px;
	padding: 3px 20px 3px 15px;
	position: relative;
	text-align: center;
	white-space: nowrap;
}

.p-top-btns__btn::after {
	background: url(../img/2x/p-btn-ar@2x.webp) no-repeat center center/cover;
	content: "";
	height: 4px;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
}

.p-head {
	text-align: center;
	width: 100%;
}

.p-syatyou__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 30px;
}

.p-syatyou__text {
	font-size: 14px;
}

.p-syatyou__text p {
	margin-bottom: 20px;
}

.p-syatyou__img {
	margin-left: auto;
	margin-right: auto;
	max-width: 220px;
	width: 100%;
}

.p-gaiyou-table {
	border: 1px solid #9f9fa0;
	border-collapse: collapse; /* 枠線を重ねてスッキリさせる */
	margin-top: 50px;
	width: 100%;
}

.p-gaiyou-tbody tr {
	border-bottom: 1px solid #9f9fa0;
	text-align: left;
}

.p-gaiyou-tbody th,
.p-gaiyou-tbody td {
	padding: 5px 20px;
}

.p-gaiyou-tbody th {
	background: #f1f1f1;
}

.p-gaiyou-img-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	max-width: 760px;
}

.p-gaiyou-img-box-item {
	margin-bottom: 30px;
	text-align: center;
	width: 45%;
}

.p-gaiyou-img-box-item__text {
	font-size: 14px;
	line-height: 1.4;
	margin-top: 15px;
}

.p-rinen__img {
	padding-top: 50px;
	text-align: center;
	width: 100%;
}

.p-kyoten-table {
	display: none;
}

.btn-detail {
	align-items: center;
	background: #eb9938;
	border-radius: 8px;
	color: #fff;
	display: flex;
	font-weight: bold;
	justify-content: center;
	padding: 5px 10px;
	width: -moz-fit-content;
	width: fit-content;
}

.btn-detail.b {
	background: #0e5f99;
}

.p-kyoten-sp-table {
	border: 1px solid #9f9fa0;
	margin-top: 80px;
}

.p-kyoten-sp-table-box {
	border-bottom: 1px solid #9f9fa0;
	border-collapse: collapse;
	font-size: 14px;
	padding: 20px;
	position: relative;
}

.p-kyoten-sp-table-box:nth-child(3) {
	border-bottom: none;
}

.p-kyoten-sp-table-box__head {
	color: #0e5f99;
}

.p-kyoten-sp-table-box-link {
	position: absolute;
	right: 10px;
	top: 10px;
}

.p-kyoten__img-box {
	background: #0e5f99;
	padding-bottom: 50px;
	padding-top: 50px;
}

.p-kyoten__img-box-item {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	max-width: 260px;
	width: 100%;
}

.p-kyoten__img-box-item p {
	color: #fff;
	font-size: 18px;
	margin-top: 15px;
	text-align: center;
}

.p-kikaku-table {
	border: 1px solid #9f9fa0;
	margin-top: 100px;
	text-align: left;
	width: 100%;
}

.p-kikaku-table tr {
	border-bottom: 1px solid #9f9fa0;
	display: flex;
	flex-direction: column;
	padding: 10px;
}

.p-kikaku-table tr:last-child {
	border-bottom: none;
}

.p-kikaku-table th {
	color: #0e5f99;
}

.p-base-btns {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

.p-base-btns.business-btns {
	gap: 20px;
	justify-content: center;
}

.p-basebtn {
	width: 32%;
}

.p-base-head {
	padding-top: 100px;
	text-align: center;
}

.p-base-honsya:last-child {
	margin-bottom: 100px;
}

.p-base-honsya-img {
	margin-top: 30px;
}

.p-base-honsya-img-sp {
	text-align: center;
	width: 100%;
}

.p-base-honsya-img-pc {
	display: none;
}

.p-base-honsya-img-pc-sub {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}

.p-base-honsya-img-pc-sub img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 19%;
}

.p-base-honsya-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 20px;
}

.p-base-honsya-content__text {
	font-size: 14px;
}

.p-base-honsya-content-table {
	border: 1px solid #9f9fa0;
	border-collapse: collapse;
	text-align: left;
	width: 100%;
}

.p-base-honsya-content-tbody tr {
	border-bottom: 1px solid #9f9fa0;
}

.p-base-honsya-content-tbody th {
	background: #f1f1f1;
	padding: 5px 10px;
}

.p-base-honsya-content-tbody td {
	padding: 5px 10px;
}

.p-section-sub-head {
	margin-top: 50px;
}

.p-base-honsya-tokutyou-content {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 30px;
}

.p-base-honsya-tokutyou-content-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.p-base-honsya-tokutyou-content-box img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}

.p-base-honsya-tokutyou-content-box__head {
	color: #eb9938;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.p-base-honsya-tokutyou-content-box__body {
	font-size: 14px;
	line-height: 1.4;
}

.p-base-honsya-mes {
	margin-top: 50px;
}

.p-base-honsya-mes-box {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 50px;
}

.p-base-honsya-mes-box-text {
	background: #fcecd9;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: -moz-fit-content;
	height: fit-content;
	padding: 10px;
	position: relative;
}

.p-base-honsya-mes-box-text::after {
	background: url(../img/2x/mes-are-pc@2x.webp) no-repeat center center/cover;
	bottom: -20px;
	content: "";
	height: 22px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 25px;
}

.p-base-honsya-mes-box-text span {
	color: #0e5f99;
	font-weight: 600;
}

.p-base-honsya-mes-box-img {
	text-align: center;
}

.p-base-honsya-mes-box-img img {
	width: 90%;
}

.p-business-sec {
	padding-top: 100px;
}

.p-business-sec-head {
	text-align: center;
	width: 100%;
}

.p-size-table {
	border: 1px solid #999;
	border-collapse: collapse;
	font-size: 16px;
	text-align: center;
	width: 100%;
}

.p-size-table.souko {
	text-align: left;
}

.p-size-table th,
.p-size-table td {
	border: 1px solid #999;
	padding: 12px;
}

.p-size-table thead th {
	background: #f5f5f5;
	font-weight: bold;
}

.p-size-table tbody th {
	background: #f5f5f5;
	text-align: left;
	white-space: nowrap;
}

.p-unsou__top-top-contet {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 50px;
}

.p-unsou__top-top-contet-text {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	gap: 10px;
}

.p-unsou__top-top-contet__sub {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 80px;
}

.p-unsou__top-top-contet__sub-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.p-unsou__top-top-contet__sub-img {
	text-align: center;
}

.p-unsou__top-top-contet__sub-img img {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}

.p-unsou__top-top-contet__sub-head {
	color: #eb9938;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.p-unsou__top-top-contet__sub-body {
	font-size: 14px;
}

.p-unsou-sub-head {
	margin-top: 80px;
}

.p-unsou__syaryou-content {
	display: flex;
	flex-direction: column;
	gap: 100px;
	margin-top: 50px;
}

.p-unsou__syaryou__box {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.syaryou-head {
	color: #eb9938;
	font-size: 18px;
	font-weight: bold;
}

.syaryou-head.souko {
	text-align: center;
}

.p-size-table th {
	width: 143px;
}

.p-beginner {
	padding-bottom: 100px;
	padding-top: 100px;
}

.p-beginner__head {
	color: #0e5f99;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.p-beginner__top-text {
	font-size: 14px;
	margin-top: 30px;
	text-align: center;
}

.p-beginner__main-imgs {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 50px;
}

.p-beginner__img {
	text-align: center;
	width: 100%;
}

.p-beginner__btn {
	margin-left: auto;
	margin-right: auto;
}

.p-beginner-point {
	background: #ebebec;
	border-radius: 30px;
	margin-top: 150px;
	padding: 30px 15px;
}

.p-beginner-point__head {
	color: #0e5f99;
	font-size: 23px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}

.p-beginner-point__head span {
	font-size: 36px;
}

.p-beginner-point__body {
	margin-top: 10px;
	text-align: center;
}

.p-beginner-point__items {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 80px;
}

.p-beginner-point__item {
	border-bottom: 1px solid #2f2f2f;
	padding-bottom: 30px;
}

.p-beginner-point__item:last-child {
	border-bottom: none;
}

.p-beginner-point__item__img {
	text-align: center;
}

.p-beginner-point__item__content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	max-width: 450px;
}

.p-beginner-point__item__content__head {
	color: #eb9938;
	font-size: 18px;
	font-weight: 600;
}

.p-beginner-point__item__content__body {
	font-size: 14px;
}

.p-beginner-point__item__content__link {
	color: #0e5f99;
	font-size: 15px;
	font-weight: 500;
}

.p-job {
	margin-bottom: 100px;
	margin-top: 50px;
}

.p-job-top {
	text-align: center;
	width: 100%;
}

.p-job-head {
	margin-top: 100px;
	text-align: center;
	width: 100%;
}

.p-job-merit {
	margin-top: 50px;
}

.p-job-merit__item-box {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.p-job-merit__item {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.p-job-merit__img {
	height: 185px;
	text-align: center;
	width: 100%;
}

.p-job-merit__img img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
}

.p-job-merit__head {
	color: #eb9938;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.p-job-merit__btn {
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	text-align: center;
}

.p-job-sce {
	margin-top: 100px;
	text-align: center;
	width: 100%;
}

.p-job-btm-img {
	margin-top: 100px;
	text-align: center;
}

.p-job-recruit {
	display: block;
	margin-top: 150px;
	position: relative;
	text-align: center;
	width: 100%;
}

.p-job-recruit::after {
	background: url(../img/2x/p-job-btn@2x.webp) no-repeat center center/cover;
	bottom: -10px;
	content: "";
	height: 45px;
	position: absolute;
	right: 5px;
	width: 45px;
}

.p-job-blog {
	display: block;
	margin-top: 100px;
	position: relative;
	text-align: center;
	width: 100%;
}

.p-job-blog::after {
	background: url(../img/2x/p-job-btn@2x.webp) no-repeat center center/cover;
	bottom: -20px;
	content: "";
	height: 45px;
	left: 33%;
	position: absolute;
	width: 45px;
}

.p-truck {
	margin-bottom: 100px;
}

.p-truck-sec-head {
	margin-top: 150px;
	text-align: center;
}

.p-truck__box {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 50px;
}

.p-truck__box-img {
	text-align: center;
}

.p-truck__rainup {
	margin-top: 50px;
}

.p-truck__rainup-item {
	margin-left: 10px;
	text-align: center;
	width: 100%;
}

.p-truck__rainup-btn {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	padding: 5px 40px;
}

.p-structure {
	margin-bottom: 100px;
}

.p-structure-sec {
	padding-top: 150px;
}

.p-structure-sec__head {
	margin-bottom: 100px;
	text-align: center;
	width: 100%;
}

.p-structure-sec-box__head {
	margin-bottom: 50px;
	margin-top: 50px;
	text-align: center;
	width: 100%;
}

.p-structure-sec-box__contents {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.p-structure-sec-box__item {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.p-structure-sec-box__item-img {
	text-align: center;
	width: 90%;
}

.p-structure-sec-box__item-head {
	color: #eb9938;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.p-structure-head {
	color: #0e5f99;
	font-size: 20px;
	font-weight: bold;
	margin-top: 150px;
	padding-bottom: 30px;
	text-align: center;
}

.p-structure-head-bar {
	background: #eb9938;
	height: 3px;
	margin-left: auto;
	margin-right: auto;
	width: 100px;
}

.p-structure-reed {
	font-size: 17px;
	margin-top: 50px;
	text-align: center;
}

.p-structure-btns {
	gap: 10px;
	justify-content: center;
}

.p-session-btns {
	flex-wrap: wrap;
	max-width: 320px;
}

.p-session-btns a {
	width: 48%;
}

.p-sesstion__sec {
	margin-top: 150px;
}

.p-sesstion-sec-head {
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 70%;
}

.p-sesstion-sec-head.min {
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

.p-sesstion-1sec__box {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-sesstion-1sec__item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.p-sesstion-1sec__item-img {
	text-align: center;
	width: 100%;
}

.p-sesstion-1sec__item-head {
	color: #eb9938;
	font-size: 18px;
	font-weight: 600;
}

.p-sesstion-1sec__item-body {
	margin-top: 15px;
}

.p-sesstion-1sec__btn {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	padding: 5px 40px;
}

.p-schedule-table {
	border-collapse: collapse;
	text-align: left;
	width: 100%;
}

.p-schedule-table th,
.p-schedule-table td {
	border: 1px solid #999;
	padding: 12px;
}

.p-schedule-table thead th {
	background: #f1f1f1;
}

.p-entry-table {
	border-collapse: collapse;
	display: none;
	font-size: 17px;
	text-align: left;
	width: 100%;
}

.p-entry-table th,
.p-entry-table td {
	border: 1px solid #999;
	padding: 12px;
	vertical-align: middle;
}

.p-entry-table thead th {
	background: #f1f1f1;
}

.p-entry-table-btn {
	margin-left: auto;
	margin-right: auto;
}

.p-sesstion-today__top {
	margin-bottom: 50px;
	text-align: center;
}

.entry-form {
	border: 1px solid #9f9fa0;
	border-radius: 16px;
	font-family: "Noto Sans JP", sans-serif;
	margin: 0 auto;
	max-width: 600px;
	padding: 30px;
}

.entry-form label {
	display: block;
	font-weight: bold;
	margin-bottom: 8px;
	margin-top: 20px;
}

.entry-form input[type=text],
.entry-form input[type=email],
.entry-form input[type=tel],
.entry-form textarea {
	background: #efefef;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	padding: 12px;
	width: 100%;
}

.entry-form textarea {
	height: 80px;
}

.age-group {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.syu-group {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.age-group label {
	font-weight: normal;
}

.submit-btn {
	background: #f7941d;
	border: none;
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 18px;
	font-weight: bold;
	margin: 30px auto 0;
	padding: 10px 60px;
}

.submit-btn:hover {
	background: #e68300;
}

.p-sesstion__form-top {
	text-align: center;
}

.p-sesstion__form-tel {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	text-align: center;
	width: 80%;
}

.p-sesstion__form-tel img {
	width: 100%;
}

.p-sesstion__form-btm {
	margin-top: 50px;
	text-align: center;
}

.p-sesstion-form {
	margin-top: 50px;
}

.p-sesstion {
	margin-bottom: 100px;
}

a:hover {
	opacity: 0.7;
}

.blog {
	background: #f1f1f1;
	padding-bottom: 100px;
	padding-top: 100px;
}

.archive-head {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}

.archive-head span {
	font-size: 13px;
}

.archive-btns {
	display: flex;
	gap: 5px;
	justify-content: center;
	margin-top: 50px;
}

.archive-btn {
	font-size: 14px;
	font-weight: bold;
}

.blog-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 536px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.archive__box {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 50px;
}

.archive__item {
	background: #ffffff;
}

.archive__img {
	background: #ccc;
	height: 214px;
	width: 100%;
}

.archive__img img {
	-o-object-fit: contain;
	object-fit: contain;
}

.archive__body {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
}

.archive__date {
	align-items: center;
	display: flex;
	font-size: 13px;
	font-weight: bold;
	gap: 10px;
}

.archive__category {
	background: #eb9938;
	color: #fff;
	font-size: 9px;
	font-weight: bold;
	padding: 1px 20px;
}

.archive__category.bl-cat {
	background: #0e5f99;
}

.archive__title {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
}

.archive__content {
	font-size: 14px;
}

.single {
	padding-bottom: 100px;
	padding-top: 100px;
}

.single-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 950px;
	padding: 25px;
	width: 100%;
}

.single__title {
	font-size: 26px;
	font-weight: bold;
	line-height: 1.4;
}

.single__date {
	font-size: 14px;
	font-weight: bold;
	margin-top: 40px;
}

.single__category {
	background: #eb9938;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	margin-top: 15px;
	padding: 0px 20px;
	width: -moz-fit-content;
	width: fit-content;
}

.single__category.bl-cat {
	background: #0e5f99;
}

.single__sns {
	margin-top: 30px;
}

.single__content {
	font-size: 14px;
	line-height: 1.4;
	margin-top: 50px;
}

.single__img {
	background: #ccc;
	height: 200px;
	margin-top: 40px;
	width: 100%;
}

.single__img img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
}

.single-side {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin-top: 80px;
}

.single-side__head {
	border-bottom: 2px solid #ccc;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 10px;
}

.single-side__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.single-side__link {
	font-size: 16px;
}

.recruit-list {
	padding-bottom: 100px;
	padding-top: 100px;
}

.recruit-list-section {
	margin-top: 100px;
}

.recruit-list-head {
	text-align: center;
}

.recruit-list-cate {
	margin-top: 80px;
}

.recruit-list-cate-head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.recruit-list-cate-head__bar {
	background: #0e5f99;
	height: 1px;
	width: 30%;
}

.recruit-list-cate-head__text {
	color: #0e5f99;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.recruit-list-cate-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 30px;
}

.recruit-list-cate-btn {
	background: #eb9938;
	border-radius: 8px;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	padding: 10px 50px;
	position: relative;
	text-align: left;
	width: 100%;
}

.recruit-list-cate-btn::after {
	background: url(../img/2x/rescruit-arw@2x.webp) no-repeat center center/cover;
	content: "";
	height: 15px;
	left: 20px;
	position: absolute;
	top: 40%;
	width: 15px;
}

.recruit-list__items {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 100px;
}

.recruit-list__item {
	background: #ddd;
	border-radius: 15px;
	padding: 20px;
}

.recruit-list__item-left {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.recruit-list__item-head {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.recruit-list__item-head__title {
	color: #eb9938;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.4;
}

.recruit-list__item-head__sub {
	font-size: 16px;
}

.recruit-list__item-head__bar {
	background: #eb9938;
	height: 1px;
	width: 100%;
}

.recruit-list__item-img-sp {
	background: #fff;
	height: 200px;
}

.recruit-list__item-img-sp img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.recruit-list__item-img-pc {
	display: none;
}

.recruit-list__item-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.recruit-list__item-content__head {
	color: #eb9938;
	font-size: 16px;
	font-weight: bold;
}

.recruit-list__item-content__body {
	font-size: 14px;
}

.recruit-list__item-btns {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.recruit-list__item-btn {
	align-items: center;
	background: #eb9938;
	border-radius: 8px;
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: bold;
	height: 45px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}

.recruit-single {
	padding-bottom: 100px;
	padding-top: 100px;
}

.recruit-single__title-top {
	font-size: 24px;
	font-weight: bold;
}

.recruit-single__title-sub {
	font-size: 16px;
}

.recruit-single__btns {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	max-width: 500px;
	width: 100%;
}

.recruit-single__btn {
	background: #fff;
	border: 2px solid #eb9938;
	border-radius: 8px;
	color: #eb9938;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 30px 5px 10px;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.recruit-single__btn::after {
	background: url(../img/2x/rescruit-single-arw@2x.webp) no-repeat center center/cover;
	content: "";
	height: 8px;
	position: absolute;
	right: 10px;
	top: 38%;
	width: 8px;
}

.rectuir-single-formhead {
	margin-left: auto;
	margin-right: auto;
	max-width: 190px;
	text-align: center;
}

.rectuir-single-form {
	margin-top: 30px;
}

.rectuir-single-section__contents {
	margin-top: 50px;
}

.rectuir-single-section__content-img {
	background: #ccc;
	height: 220px;
	width: 100%;
}

.rectuir-single-section__content-img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.rectuir-single-section__content-content {
	margin-top: 15px;
}

.rectuir-single-section__content-bosyu {
	border-bottom: 1px solid #ccc;
	margin-top: 8px;
	padding-bottom: 8px;
}

.rectuir-single-section__content-bosyu__head {
	color: #0e5f99;
	font-weight: bold;
}

.age-group input[type=radio] {
	cursor: pointer;
	height: 15px; /* 高さ */
	margin-right: 5px; /* ラベルとの間隔 */
	transform: scale(1.3); /* 拡大率 */
	vertical-align: baseline;
	width: 15px; /* 幅 */
}

.contact__form {
	font-size: 14px; /* ラジオボタンのデフォルトスタイルを消す */ /* チェックされた時の中身 */
}

.contact__form label {
	display: block;
	font-size: 14px;
	margin: 20px 0 8px;
}

.contact__form label span {
	background: #e67e22;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	margin-left: 5px;
	padding: 2px 6px;
}

.contact__form input[type=text],
.contact__form input[type=number],
.contact__form input[type=email],
.contact__form textarea,
.contact__form select {
	background: #eee;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	padding: 12px;
	width: 100%;
}

.contact__form textarea {
	min-height: 100px;
	resize: vertical;
}

.contact__form .radio-group label {
	display: inline-block;
	font-size: 14px;
	margin-right: 20px;
}

.contact__form .submit-btn {
	background: #e67e22;
	border: none;
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: bold;
	margin: 30px auto 0;
	padding: 15px;
	text-align: center;
	width: 80%;
}

.contact__form .submit-btn:hover {
	background: #d35400;
}

.contact__form input[type=number] {
	width: 100px;
}

.contact__form .wpcf7-radio {
	display: flex;
	flex-direction: column;
	margin: 15px 0;
}

.contact__form .wpcf7-list-item-label {
	background: transparent !important;
	color: #2F2F2F !important;
}

.contact__form input[type=radio] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #2F2F2F;
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	height: 18px;
	margin: 0 0 -3px -15px !important;
	position: relative;
	width: 18px;
}

.contact__form input[type=radio]:checked::after {
	background: #eb9938;
	border-radius: 50%;
	content: "";
	height: 10px;
	left: 3px;
	position: absolute;
	top: 3px;
	width: 10px;
}

.contact {
	padding-bottom: 100px;
	padding-top: 100px;
}

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

.fb-bg img {
	-o-object-fit: cover;
	-o-object-position: 0;
	height: 100%;
	object-fit: cover;
	object-position: 0;
	width: 100%;
}

.top-recruit-f {
	height: 1300px;
}

.top-recruit-f__bg-en {
	top: -350px;
	width: 1000px;
}

.top-recruit-f__bg-l img {
	height: 1300px;
}

.top-recruit-head {
	top: 300px;
}

.top-recruit__img-box {
	top: 700px;
}

.top-recruit__link-box {
	top: 1000px;
}

}

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

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1110px;
	padding-left: 30px;
	padding-right: 30px;
}

.hidden-pc {
	display: none;
}

.hidden-sp {
	display: block;
}

.header {
	position: absolute;
}

.header-box {
	height: 160px;
	padding: 20px 40px;
}

.header__icon {
	width: 288px;
}

.header__right-box {
	align-items: end;
	display: flex;
	flex-direction: column;
	gap: 30px;
	height: 100%;
	justify-content: center;
}

.drawer {
	display: none;
}

.drawer-open {
	display: none;
}

.btm-btn {
	display: none;
}

.fv {
	padding-top: 160px;
}

.fv__text {
	font-size: 55px;
	top: 180px;
}

.fv__news {
	flex-direction: row;
	width: 70%;
}

.fv__news-box {
	padding: 10px 20px;
}

.fv__news-box__head {
	font-size: 20px;
}

.fv__news-box__body-link {
	align-items: center;
	flex-direction: row;
	font-size: 22px;
	gap: 10px;
}

.news-date {
	font-size: 12px;
}

.fv__news-other {
	font-size: 17px;
	padding: 14px;
}

.footer-copy {
	font-size: 11px;
	letter-spacing: 3px;
}

.footer {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	max-width: 1040px;
}

.footer__top {
	display: block;
}

.top-btm__or {
	height: 300px;
}

.bg__l {
	height: 800px;
	left: 120px;
	top: -412px;
	width: 1090px;
}

.top-btm__track-bg {
	height: 100%;
}

.top-btm__track-bg img {
	-o-object-position: 0;
	object-position: 0;
}

.top-btm__text-box {
	top: 20px;
}

.top-btm__reed {
	font-size: 30px;
}

.top-btm__body {
	font-size: 17px;
	margin-top: 50px;
}

.top-btm__track-link-box {
	flex-direction: row;
	gap: 20px;
	top: 150px;
	width: 80%;
}

.track-link {
	height: 328px;
	width: 328px;
}

.top-recruit-f {
	height: 690px;
}

.top-recruit-f__bg-en.track-en {
	bottom: -1000px;
	display: block;
	top: auto;
}

.top-recruit-f__bg-en {
	left: auto;
	right: -145px;
	top: -700px;
	transform: translateX(0);
	width: 1100px;
}

.top-recruit-f__bg-l img {
	height: auto;
}

.top-recruit-f__bg-l {
	top: -50px;
}

.top-recruit-head {
	left: auto;
	right: 10px;
	top: 50px;
	transform: translateX(0);
}

.top-recruit-head-top {
	font-size: 49px;
}

.top-recruit-head-top span {
	font-size: 26px;
}

.top-recruit-head-reed {
	font-size: 31px;
}

.top-recruit-head-sub {
	font-size: 17px;
}

.top-recruit__img-box {
	gap: 20px;
	top: 450px;
}

.top-recruit__link-box {
	flex-direction: row;
	gap: 80px;
	justify-self: 50px;
	max-width: 800px;
	top: 850px;
}

.top-wark {
	padding-bottom: 200px;
}

.top-section-head {
	border: 3px solid #fff;
	font-size: 36px;
	height: 100px;
	top: -50px;
}

.top-wark__top-text {
	font-size: 17px;
	padding-top: 100px;
}

.top-wark__card-box {
	flex-direction: row;
	gap: 50px;
	max-width: 1040px;
	padding-top: 50px;
}

.top-wark__card-link::after {
	height: 110px;
	right: -20px;
	width: 110px;
}

.top-kankyou {
	padding-bottom: 200px;
}

.top-kankyou__top-text {
	font-size: 17px;
	padding-top: 100px;
}

.top-kankyou__kyoten-content {
	max-width: 1040px;
}

.top-kankyou__kyoten-head {
	font-size: 30px;
}

.top-kankyou__kyoten-box {
	flex-direction: row;
	gap: 15px;
	margin-bottom: 50px;
	width: 95%;
}

.top-blog-ins__contents {
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

.top-blog-ins__blog {
	max-width: none;
	width: 45%;
}

.top-blog-ins__head {
	font-size: 37px;
}

.top-blog-card__left {
	padding: 20px 10px;
}

.top-blog-card__date {
	font-size: 14px;
}

.top-blog-card__tag {
	font-size: 11px;
	height: 18px;
	width: 104px;
}

.top-blog-card__title {
	font-size: 18px;
}

.top-blog-card__content {
	font-size: 14px;
}

.top-blog-card__right {
	height: 214px;
	width: 214px;
}

.top-blog-ins__ins {
	width: 45%;
}

.p-section {
	padding-bottom: 100px;
	padding-top: 150px;
}

.page-head {
	padding-top: 160px;
}

.p-top-btns__btn::after {
	height: 10px;
	width: 10px;
}

.p-top-btns__btn {
	border: 3px solid #eb9938;
	font-size: 22px;
	padding: 3px 30px 3px 20px;
}

.p-syatyou__content {
	flex-direction: row-reverse;
	gap: 65px;
	margin-top: 50px;
}

.p-syatyou__text {
	font-size: 17px;
	width: 65%;
}

.p-syatyou__img {
	max-width: 314px;
}

.p-gaiyou-table {
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
}

.p-gaiyou-img-box-item {
	width: 30%;
}

.p-gaiyou-img-box-item__text {
	font-size: 18px;
}

.p-kyoten-table {
	border-collapse: collapse;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	width: -moz-fit-content;
	width: fit-content;
}

.p-kyoten-table th {
	background: #f1f1f1;
	border: 1px solid #9f9fa0;
	padding: 3px 10px;
	text-align: left;
}

.p-kyoten-table td {
	border: 1px solid #9f9fa0;
	font-size: 18px;
	padding: 3px 10px;
	vertical-align: middle;
}

.p-kyoten-sp-table {
	display: none;
}

.p-kyoten__img-box__inner {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	max-width: 1040px;
	width: 100%;
}

.p-kyoten__img-box-item p {
	font-size: 22px;
}

.p-kikaku-table tr {
	flex-direction: row;
	padding: 0;
}

.p-kikaku-table th {
	background: #f1f1f1;
	color: #2F2F2F;
	padding: 10px 20px;
	width: 200px;
}

.p-kikaku-table td {
	padding: 10px 20px;
}

.p-kikaku-table {
	font-size: 18px;
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
}

.p-base-btns.business-btns {
	gap: 30px;
}

.p-base-head {
	padding-top: 200px;
}

.p-base-honsya-img-sp {
	display: none;
}

.p-base-honsya-img-pc {
	display: block;
}

.p-base-honsya-content {
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

.p-base-honsya-content__text {
	font-size: 17px;
	width: 48%;
}

.p-base-honsya-content__table {
	width: 48%;
}

.p-base-honsya-tokutyou-content {
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

.p-base-honsya-tokutyou-content-box {
	width: 32%;
}

.p-base-honsya-tokutyou-content-box img {
	width: 100%;
}

.p-base-honsya-tokutyou-content-box__head {
	font-size: 23px;
}

.p-base-honsya-tokutyou-content-box__body {
	font-size: 17px;
}

.p-base-honsya-mes-box {
	flex-direction: row-reverse;
	gap: 0;
	justify-content: space-between;
}

.p-base-honsya-mes-box-text::after {
	background: url(../img/2x/mes-are@2x.webp) no-repeat center center/cover;
	bottom: 50%;
	left: -22px;
	transform: translateX(0);
	transform: translateY(-30%);
}

.p-base-honsya-mes-box-text {
	font-size: 17px;
	padding: 20px;
	width: 47%;
}

.p-base-honsya-mes-box-img img {
	width: 100%;
}

.p-base-honsya-mes-box-img {
	width: 47%;
}

.p-business-sec {
	padding-top: 200px;
}

.p-business-sec-head {
	margin-left: auto;
	margin-right: auto;
	max-width: 570px;
}

.p-unsou__top-top-contet {
	flex-direction: row;
	justify-content: space-between;
}

.p-unsou__top-top-contet-img {
	width: 48%;
}

.p-unsou__top-top-contet-text {
	align-items: start;
	font-size: 17px;
	gap: 20px;
	width: 48%;
}

.p-unsou__top-top-contet__sub {
	flex-direction: row;
	justify-content: space-between;
}

.p-unsou__top-top-contet__sub-box {
	width: 31%;
}

.p-unsou__top-top-contet__sub-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.p-unsou__top-top-contet__sub-head {
	font-size: 23px;
}

.p-unsou__top-top-contet__sub-body {
	font-size: 17px;
}

.p-unsou-sub-head {
	margin-top: 100px;
}

.p-unsou__syaryou-content.souko {
	flex-wrap: wrap;
}

.p-unsou__syaryou-content {
	display: flex;
	flex-direction: row;
	gap: 40px;
	justify-content: space-between;
}

.p-unsou__syaryou__box {
	margin-bottom: 50px;
	width: 48%;
}

.syaryou-head {
	font-size: 23px;
}

.p-beginner {
	padding-top: 200px;
}

.p-beginner__head {
	font-size: 35px;
}

.p-beginner__top-text {
	font-size: 18px;
}

.p-beginner__img {
	margin-left: auto;
	margin-right: auto;
	max-width: 1040px;
}

.p-beginner__btn {
	padding: 5px 40px;
}

.p-beginner-point {
	padding: 50px;
}

.p-beginner-point__box {
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
}

.p-beginner-point__head span {
	font-size: 54px;
}

.p-beginner-point__head {
	font-size: 35px;
}

.p-beginner-point__item {
	display: flex;
	justify-content: space-between;
}

.p-beginner-point__item__img {
	width: 40%;
}

.p-beginner-point__item__content {
	margin-top: 0;
	width: 53%;
}

.p-beginner-point__item__content__head {
	font-size: 23px;
}

.p-beginner-point__item__content__body {
	font-size: 17px;
}

.p-beginner-point__item__content__link {
	font-size: 18px;
}

.p-job-merit__item-box {
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

.p-job-merit__item {
	width: 31%;
}

.p-job-merit__img {
	height: 220px;
}

.p-job-merit__head {
	font-size: 23px;
}

.p-job-merit__body {
	font-size: 17px;
}

.p-job-merit__btn {
	padding: 5px 40px;
}

.p-job-sce {
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}

.p-job-btm-img {
	margin-top: 150px;
}

.p-job-recruit::after {
	bottom: -30px;
	height: 110px;
	width: 110px;
}

.p-job-recruit {
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}

.p-job-recruit img {
	width: 100%;
}

.p-job-blog::after {
	bottom: -30px;
	height: 110px;
	left: 31%;
	width: 110px;
}

.p-job-blog {
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}

.p-job-blog img {
	width: 100%;
}

.p-truck__rainup-head {
	font-size: 17px;
	text-align: center;
}

.p-structure-sec__head {
	margin-left: auto;
	margin-right: auto;
	width: 70%;
}

.p-structure-sec__head.anzen {
	margin-left: auto;
	margin-right: auto;
	width: 65%;
}

.p-structure-sec-box__head {
	margin-bottom: 100px;
	margin-top: 100px;
}

.p-structure-sec-box__contents {
	flex-direction: row;
	gap: 42px;
	justify-content: center;
}

.p-structure-sec-box__contents.last {
	flex-wrap: wrap;
	justify-content: start;
}

.p-structure-sec-box__item.c-2 {
	width: 30%;
}

.p-structure-sec-box__item-img {
	width: 100%;
}

.p-structure-sec-box__item-head {
	font-size: 23px;
}

.p-structure-sec-box__item-body {
	font-size: 17px;
}

.p-structure-head {
	font-size: 35px;
}

.p-session-btns a {
	width: 100%;
}

.p-session-btns {
	flex-wrap: nowrap;
	max-width: 100%;
}

.p-sesstion-sec-head.min {
	width: 30%;
}

.p-sesstion-sec-head {
	width: 50%;
}

.p-sesstion-1sec__item {
	flex-direction: row;
	gap: 30px;
}

.p-sesstion-1sec__item-content {
	flex-shrink: 0;
	margin-top: 40px;
	width: 53%;
}

.p-sesstion-1sec__item-head {
	font-size: 30px;
}

.p-sesstion-1sec__item-body {
	font-size: 17px;
	margin-top: 50px;
}

.p-sesstion-1sec__btn {
	padding: 5px 60px;
}

.p-schedule-table {
	font-size: 17px;
}

.p-entry-table {
	display: inline-table;
}

.p-sesstion-today__top {
	font-size: 17px;
}

.p-sesstion__form-top {
	font-size: 17px;
}

.p-sesstion__form-tel {
	width: 35%;
}

.p-sesstion__form-btm {
	font-size: 17px;
}

.archive-head {
	font-size: 37px;
}

.archive-head span {
	font-size: 16px;
}

.archive-btn {
	font-size: 16px;
}

.archive__item {
	display: flex;
	flex-direction: row-reverse;
	height: 214px;
}

.archive__img {
	flex-shrink: 0;
	height: 100%;
	width: 214px;
}

.archive__body {
	padding: 15px;
}

.single-inner {
	display: flex;
	justify-content: space-between;
}

.single__main {
	flex-shrink: 0;
	width: 70%;
}

.single__title {
	font-size: 28px;
}

.single__content {
	font-size: 18px;
}

.single__img {
	height: 366px;
}

.single-side {
	flex-shrink: 0;
	margin-top: 0;
	width: 23%;
}

.recruit-list-cate-head__bar {
	width: 40%;
}

.recruit-list-cate-head__text {
	font-size: 23px;
}

.recruit-list-cate-btns {
	flex-direction: row;
	justify-content: space-between;
}

.recruit-list-cate-btn {
	font-size: 18px;
}

.recruit-list__item {
	display: flex;
	gap: 30px;
	padding: 30px 50px;
}

.recruit-list__item-left {
	width: 50%;
}

.recruit-list__item-head__title {
	font-size: 28px;
}

.recruit-list__item-head__sub {
	font-size: 18px;
}

.recruit-list__item-head__bar {
	height: 2px;
}

.recruit-list__item-img-sp {
	display: none;
}

.recruit-list__item-img-pc {
	background: #fff;
	display: block;
	flex: 1;
	height: 280px;
}

.recruit-list__item-img-pc img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.recruit-list__item-content {
	gap: 10px;
}

.recruit-list__item-content-box {
	display: flex;
}

.recruit-list__item-content__head {
	flex-shrink: 0;
	font-size: 18px;
	width: 120px;
}

.recruit-list__item-content__body {
	font-size: 17px;
}

.recruit-list__item-btn {
	font-size: 16px;
	height: 60px;
}

.recruit-single {
	padding-top: 200px;
}

.recruit-single__title {
	text-align: center;
}

.recruit-single__title-top {
	font-size: 36px;
}

.recruit-single__title-sub {
	font-size: 18px;
}

.recruit-single__btns {
	max-width: 600px;
}

.recruit-single__btn::after {
	height: 10px;
	top: 40%;
	width: 10px;
}

.recruit-single__btn {
	font-size: 22px;
}

.rectuir-single-section__contents {
	display: flex;
	gap: 50px;
}

.rectuir-single-section__content-img {
	flex: 1;
}

.rectuir-single-section__content-content {
	flex: 1.3;
}

.rectuir-single-formhead {
	max-width: 362px;
}

.rectuir-single-section__content-img {
	height: 285px;
}

.rectuir-single-section__content-bosyu {
	display: flex;
}

.rectuir-single-section__content-bosyu__head {
	flex-shrink: 0;
	font-size: 18px;
	width: 300px;
}

.rectuir-single-section__content-bosyu__body {
	font-size: 18px;
}

.contact__form {
	font-size: 18px;
}

.contact__form .wpcf7-list-item-label {
	font-size: 14px !important;
}

.contact {
	padding-top: 250px;
}

}

@media screen and (max-width: calc(400px - 1px)) {

.p-top-btns__btn {
	font-size: 8px;
}

.p-size-table tbody th {
	white-space: wrap;
}

}

