/* ----- ----- root ----- ----- */
:root {
    --mincho: "Times New Roman","游明朝","Yu Mincho","游明朝体","YuMincho",
               "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3",
               "HGS明朝E","ＭＳ Ｐ明朝","MS PMincho", serif;
	--black: #212121;
	--white: #cfcfcf;
	--pearl: #fff;
	--purple: #e8d1f6;
	--blue: #29639c;
	--green: #086c50;
}


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

html,
body {
	background: #e6e6e6;
	color: var(--black);
	font-size: 16px;
	/* height: 100%; */
	margin: 0;
}

::selection {
	background: var(--white);
	color: var(--black);
}

::-moz-selection {
	background: var(--white);
	color: var(--black);
}

.post, .page {
    margin: 0;
}

ul, ol {
    margin: 0 0 1rem 0;
    padding: 0;
}

li {
    list-style: none;
}

dt, dd {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: 900;
}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus,
a:focus-visible,
a:target {
    color: inherit;
    text-decoration: none;
}

a:focus,
a:active,
a:focus-visible {
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

table {
    border-collapse: collapse;
}

th {
    font-weight: normal;
}

.text-l {
    text-align: left;
}

.text-c {
    text-align: center;
}

.text-r {
    text-align: right;
}

.red {
    color: #ff7676 !important;
}

/* ----- ----- global ----- ----- */
html {
    font-size: 16px;
    letter-spacing: .1rem;
}

body {
    background: #e1dfdf;
    color: #000000;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.9;
    counter-reset: number 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

main .container {
    margin-bottom: 3rem;
}

section {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

section.pt-0 {
    padding-top: 0;
}

section.pb-0 {
    padding-bottom: 0;
}

.none {
    display: none !important;
}

h2.block-title {
    font-size: 3.75rem;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 3rem;
}

h2.block-title .jp {
    display: block;
    font-size: 1.25rem;
}


/* ----- layout ----- */
.row {
	display: flex;
	flex-wrap: wrap;
}




/* .row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
} */

/* .container-fluid {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-right: auto;
	margin-left: auto;
} */

.full {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.box_lr {
    display: flex;
}

.box_lr > .image, .box_lr > .text {
    flex: 1;
}

.box_lr > .image .inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    /* aspect-ratio: 4 / 3; */
}


/* ----- font ----- */
a {
    color: #111111;
    text-decoration: none;
    transition: .4s;
}

a:visited {
    color: #111111;
}

a:hover {
    /* color: #111111;
    text-decoration: underline;
    text-underline-offset: .12em; */
}

.sub {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}


/* ----- color ----- */
.white,
a.white {
	color: var(--white);
}

.black {
	color: var(--black);
}

.pearl,
a.pearl {
	color: var(--pearl);
}

.green,
a.green {
	color: var(--green);
}

.bg-black {
	background-color: var(--black) !important;
}

.bg-green {
	background-color: var(--green) !important;
}


/* ----- fadein ----- */
/* page fadein */
.page-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

.page-fade.is-loaded {
    opacity: 1;
}

/* scroll */
.fadein {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fadein.show {
    opacity: 1;
    transform: translateY(0);
}

.delay {
    opacity: 0;
    transform: translateY(30px);
}

.delay.show {
    opacity: 1;
    transform: translateY(0);
}



/* ----- button1 ----- */
.btn1-ar a {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.btn1-ar a::after {
    content: '';
    display: block;
    background-image: url(../images/common/arrow_right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 4px;
    height: 8px;
    position: absolute;
    right: 15px;
}


/* ----- button2 ----- */
.btn2 {
    background: #086c50;
    color: #ffffff !important;
    padding: 2rem 2rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 1.7rem 1rem;
}

.btn2::after {
    content: '';
    background-image: url(../images/common/arrow_1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    color: #ffffff;
    transition: 0.3s;
    position: absolute;
    right: 20px;
    width: 9px;
    height: 15px;
}

.btn2:hover {
    background: #ff0000;
}


/* ----- button3 ----- */
.btn3 {
    background: #086c50;
    border: 1px solid #086c50;
    color: #ffffff !important;
    font-size: 0.875rem;
    border-radius: 3rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 36px;
}

.btn3:hover {
    background: #ffffff;
    color: #086c50 !important;
}


/* ----- ----- header ----- ----- */
header.site-header .container {
    padding: 0 50px;
    max-width: none;
}

header.site-header {
    width: 100%;
    position: absolute;
    z-index: 10;
    padding: 1.8rem 0;
}

header .site-title {
    line-height: normal;
    font-size: 2rem;
    max-width: 220px;
}

header .blank a::after {
    content: '';
    background-image: url(../images/common/icon_blank.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 16px;
    height: 14px;
    display: inline-block;
    margin-left: 6px;
    position: relative;
    top: 1px;
}

.sticky-nav {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-nav .logo {
	width: 130px;
	height: 61px;
	background-image: url(../images/common/logo_w.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: left;
    display: inline-block;
}

#site-navigation {
    display: inline-block;
    width: auto;
}

#site-navigation a {
    color: #b4b4b4;
}

#primary-menu {
    align-items: center;
    gap: 10px;
}

#primary-menu li.top {
    display: none;
}

#primary-menu li.okayama {
    margin-right: 50px;
}

#primary-menu li:not(.no_click, .contact) a:hover {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}

#primary-menu li a {
    border-bottom: 1px solid #b4b4b4;
    padding: 0 1rem .3rem;
    text-align: center;
    min-width: 170px;
}

#primary-menu li.no_click a, footer li.no_click a {
    border-color: transparent;
    pointer-events: none;
    cursor: default;
}

#primary-menu .contact a {
    background: rgb(8 108 80 / 1);
    border: 2px solid #086c50;
    color: #ffffff;
    font-size: .8rem;
    padding: .6rem 1.2rem;
    border-radius: 3rem;
    min-width: 200px;
}

#primary-menu .contact a:hover {
    border: 2px solid #ffffff;
}

#primary-menu .contact a:hover {
    background: rgb(8 108 80 / .3);
}


/* ----- mobile ----- */
.sticky-nav #nav-btn {
    display: none;
	width: 45px;
	z-index: 999;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	text-align: center;
}

.sticky-nav #nav-btn .icon {
	position: relative;
	width: 100%;
	height: 100%;
	fill: none;
	stroke-width: 5;
	stroke: #000000;
}

.sticky-nav #nav-btn .icon {
	stroke: #ffffff;
}

.sticky-nav #nav-btn::after {
	content: 'MENU';
    display: inline-block;
    font-size: 8px;
    position: relative;
    top: -17px;
    left: 1px;
}

.sticky-nav #nav-btn::after {
	color: #ffffff;
}

#takeover-nav {
	position: fixed;
	width: 100vw;
	height: 100vh;
	overflow-y: auto;
	left: 0;
	top: -200%;
	transition: all .5s ease-in-out;
	z-index: 996;
}

#takeover-nav .address {
	width: 58.33333333%;
	background-color: #ffffff;
	color: #000000;
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-right: 1rem;
	padding-left: 1rem;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	order: 0;
	--bs-bg-opacity: 1;
	min-height: 100vh;
}

#takeover-nav .menu{
	background-color: var(--green);
	flex: 0 0 auto;
	width: 41.66666667%;
	padding-right: 3rem;
	padding-left: 3rem;
	padding-bottom: 3rem;
	order: 1;
	display: flex;
	align-items: center;
	min-height: 100vh;
}

#takeover-nav.shown {
	top: 0;
}

#takeover-nav .nav-col a {
	color: #000000;
}

#takeover-nav .nav-col a:hover {
	color: var(--white);
}

#takeover-nav .nav-contact .content {
	max-width: 700px;
}

#takeover-nav .nav-items {
	font-size: 2rem;
	font-weight: 700;
}

#takeover-nav .contact-items {
	font-size: 1.25em;
	font-weight: 700;
}

#takeover-nav .contact-items a:hover {
	color: var(--green);
}

#takeover-nav .social {
	font-size: .75em;
	font-weight: 600;
}

#takeover-nav .social a {
	color: var(--green);
	text-decoration: none;
}

#takeover-nav .social a:hover {
	color: var(--white);
}


/* ----- ----- footer ----- ----- */
.btn-contact {
    display: none;
}

.home footer {
    display: none;
}

footer.site-footer {
    background-image: url(../images/common/footer.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    font-size: 0.875rem;
    padding: 20px 0 0;
}

footer .top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

footer .logo {
    display: inline-block;
    margin-bottom: 2rem;
}

footer .name {
    font-weight: 600;
    margin-bottom: 1rem;
}

footer .logo img {
    max-width: 200px;
}

footer .address {
    font-size: .8rem;
}

footer .postcode {
    display: block;
}

footer .list ul {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem 2rem;
    margin-bottom: 3rem;
}

footer .list a {
    color: #b4b4b4;
    display: inline-block;
    border-bottom: 1px solid #b4b4b4;
    padding: .7rem 1rem;
    text-align: center;
    min-width: 170px;
}

footer .list a:hover {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}

footer .list ul ul {
    display: block;
    margin: 0;
}

#colophon {
    color: #b4b4b4;
    font-size: 0.75rem;
    text-align: right;
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
}

#colophon a {
    color: #b4b4b4;
}

#colophon a:hover {
    color: #ffffff;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: #333333;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

#scrollTopBtn::before {
    content: '';
    display: block;
    background-image: url(../images/common/arrow_up.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 4px;
    margin: 0 auto;
    margin-bottom: .6rem;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    background: #555;
}

/* ----- ----- breadcrumb ----- ----- */
.breadcrumb ul {
    color: #646464;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0;
}
.breadcrumb li::after {
    content: ">";
    margin: 0 .5rem 0 1rem;
}
.breadcrumb li:last-child::after {
    content: "";
}
.breadcrumb a {
    color: #646464;
    text-decoration: none;
}


/* ----- ----- common ----- ----- */
/* -----swiper ----- */



/* ----- ----- top ----- ----- */
.home main .container {
    margin-bottom: 0;
}



/* ----- slider ----- */
.slider-btn1 a {
    background: #ffffff;
    display: block;
    padding: 20px;
}




/* ----- ----- page ----- ----- */
/* ----- common ----- */
.page-intro {
    padding-top: 1rem;
}

.title-header {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 1.5rem;
    margin-bottom: 4rem;
}

.title-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 5.375rem;
    line-height: 5.2rem;
    letter-spacing: .6rem;
    margin: 0 0 .5rem;
}

.title-header h2 span {
    display: block;
}

.title-header span.jp {
    font-size: 2rem;
}


/* ----- header ----- */
.page .page-header {
    background-size: cover;
    background-position: center;
    height: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page.about .page-header {
    background-image: url(../images/page/bg_aboutus_main_01.webp);
}

.page.yanai .page-header {
    background-image: url(../images/page/bg_company_yanai_main_01.webp);
}

.page.kurashiki .page-header {
    background-image: url(../images/page/bg_company_kurashiki_main_01.webp);
}

.page.okayama .page-header {
    background-image: url(../images/page/bg_company_okayama_main_01.webp);
}

.page.recruit .page-header {
    background-image: url(../images/page/bg_recruit_main_02.webp);
}

.page.contact .page-header {
    background-image: url(../images/page/bg_contact_main_01.webp);
}

.page-header .container {
    width: 100%;
}

.page-header.normal h1 {
    color: #969696;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .3rem;
    mix-blend-mode: difference;
}

.about .page-header.normal h1 {
    mix-blend-mode: difference;
}

.page-header.office h1 {
    color: #969696;
    font-size: 2.875rem;
    font-weight: 600;
    letter-spacing: .3rem;
    margin: 0;
    mix-blend-mode: difference;
}

.page-header.office .sub {
    color: #969696;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .2rem;
    mix-blend-mode: difference;
}

.page-header h1::after {
    display: block;
}

.page .office h1::before {
    content: "";
    display: block;
    max-width: 100%;
    width: auto;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 1rem;
    margin-bottom: .4rem;
    max-height: 115px;
    mix-blend-mode: difference;
}

.page .normal h1::after {
    content: "";
    display: block;
    max-width: 100%;
    width: auto;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 1rem;
    max-height: 115px;
    mix-blend-mode: difference;
}

/* .page.yanai h1::before {
    background-image: url(../images/page/tl_contact.svg);
    aspect-ratio:  / ;
} */

.page.about h1::after {
    background-image: url(../images/page/tl_about.svg);
    aspect-ratio: 862 / 115;
}

.page.yanai h1::before, .page.kurashiki h1::before, .page.okayama h1::before {
    background-image: url(../images/page/tl_company.svg);
    aspect-ratio: 842 / 115;
}

.page.recruit h1::after {
    background-image: url(../images/page/tl_recruit.svg);
    aspect-ratio: 716 / 115;
}

.page.contact h1::after {
    background-image: url(../images/page/tl_contact.svg);
    aspect-ratio: 793 / 115;
}


/* ----- bg-box ----- */
.bg-box {
    position: relative;
    height: 400px;
    overflow: hidden;
    clip-path: inset(0);
}

.bg-box::before {
    content: "";
    position: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    inset: 0;
    z-index: -1;
}


/* ----- about ----- */
.about .page-intro .container {
    max-width: 1600px;
}

.about .bg-box::before {
    background-image: url(../images/page/about/bg_box_about.webp);
}

.about .page-intro {
    background: #000000;
}

.about .page-intro .lead-box {
    display: flex;
    justify-content: space-between;
}

.about .lead {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.parallax-item {
    z-index: 1;
    will-change: transform;
}
.parallax-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.item-1 {
    position: relative;
    left: 6%;
}

.about .history {
    background: #000000;
    overflow-x: hidden;
}

.history .title-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #fff;
}

.history .title-header h2 {
    color: #fff;
}

.title-area span {
    font-size: 1.5rem;
    display: block;
    color: #ffffff;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.btn-prev, .btn-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #044d37;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    user-select: none;
}

.btn-prev:hover, .btn-next:hover {
    opacity: 0.8;
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: auto;
}

.btn-prev::after, .btn-next::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.btn-prev::after {
    transform: rotate(-45deg);
    margin-left: 3px;
}

.btn-next::after {
    transform: rotate(135deg);
    margin-right: 3px;
}

.swiper {
    width: 100%;
    padding: 20px 0;
    overflow: visible !important;
}

.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.circle-area {
    width: 200px;
    height: 200px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0a0a0a;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
    line-height: normal;
}

.year-main {
    font-weight: 600;
}

.year-sub {
    color: #646464;
}

.description-area {
    width: 190px;
    line-height: 1.6;
    color: #fff;
    text-align: left;
}

.arrow-separator {
    position: absolute;
    top: 96px;
    right: -22px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #444;
    border-right: 2px solid #444;
    transform: rotate(45deg);
}

section.profile {
    background: #000000;
    color: #ffffff;
}

.profile .list, .office .list {
    padding-left: 15%;
}

.profile dl > div, .office dl > div {
    border-bottom: 1px solid #646464;
    display: flex;
}

.profile dt, .office dt {
    width: 150px;
}

.profile dd, .office dd {
    width: calc(100% - 150px);
    margin-left: 0;
    margin-right: 0;
}

.profile dd p, .office dd p {
    margin: 0;
}

section.office {
    background: #ffffff;
}

section.office .title-header {
    border-bottom: 1px solid #000000;
    margin-bottom: 0;
}

section.office .title-header h2, section.office span.jp {
    color: #000000;
}

section.office dd {
    display: flex;
    justify-content: space-between;
}

section.office .btn3 {
    margin-left: 30px;
}

/* ----- company ----- */
.company .page-intro {
    background-image: url(../images/page/company/bg_intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 3rem;
}

.page-intro .outer {
    text-align: center;
}

.page-intro .btn-intro.pc {
    display: inline-flex;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.page-intro .btn-intro.pc li:first-child a {
    border-left: 1px solid #b4b4b4;
    border-right: 1px solid #b4b4b4;
    border-radius: 3rem 0 0 3rem;
    color: #b4b4b4;
    font-weight: 600;
    padding-left: 2rem;
}

.page-intro .btn-intro.pc li:last-child a {
    border-right: 1px solid #b4b4b4;
    border-radius: 0 3rem 3rem 0;
    padding-right: 2rem;
}

.page-intro .btn-intro.pc a {
    color: #ffffff;
    background: #000000;
    border-top: 1px solid #b4b4b4;
    border-bottom: 1px solid #b4b4b4;
    padding: 1.4rem 1.5rem;
}

.page-intro .btn-intro.pc a::before {
    content: '\203A';
    font-size: 1.3rem;
    margin-right: .8rem;
}

.page-intro .btn-intro.pc li:first-child a::before {
    content: '';
}

.page-intro .btn-intro.pc a:hover {
    color: #000000;
    background: #ffffff;
}

.page-intro .btn-intro.pc li:first-child a:hover {
    color: #000000;
}

.page-intro .btn-intro.sp {
    display: none;
}

.company .lead-box {
    max-width: 600px;
    margin: 0 auto;
}

.company .lead-box .tate {
    display: none;
}

.company .lead-box h2 {
    font-size: 3.125rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.company .lead-box h2::before {
    content: '';
    display: block;
    height: 72px;
    background-size: contain;
    background-position-x: center;
    background-repeat: no-repeat;
    margin-bottom: 1.5rem;
}

.company .one .lead-box h2::before {
    background-image: url(../images/page/company/num_01.svg);
}

.company .two .lead-box h2::before {
    background-image: url(../images/page/company/num_02.svg);
}

.company .three .lead-box h2::before {
    background-image: url(../images/page/company/num_03.svg);
}

.company .four .lead-box h2::before {
    background-image: url(../images/page/company/num_04.svg);
}

.company .lead-box p {
    text-align: left;
    line-height: 2.3rem;
}


/* ----- company ----- */
.yanai .bg-box::before {
    background-image: url(../images/page/company/yanai/bg_box_yanai.webp);
}

.kurashiki .bg-box::before {
    background-image: url(../images/page/company/yanai/bg_box_yanai.webp);
}

.okayama .bg-box::before {
    background-image: url(../images/page/company/yanai/bg_box_yanai.webp);
}

.job1, .job2 {
    background: #000000;
    color: #ffffff;
}

.job1 .overview {
    display: flex;
    margin-bottom: 4rem;
}

.job1 .overview .row {
    align-items: center;
}

.job1 .overview .img-box {
    width: 35%;
}

.job1 .overview .text-box {
    width: 65%;
    padding-left: 10%;
}

.job1 .overview h3 {
    font-size: 1.75rem;
}

.job1 .overview h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}

.job1 .overview p {
    margin-top: 0;
    margin-bottom: 3rem;
}

.job2 .list .row {
    border-bottom: 1px solid #646464;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.job2 .list .row:first-child {
    border-top: 1px solid #646464;
}

.job2 .list .row:last-child {
    border-bottom: none;
}

.job2 .list h3 {
    margin-top: 0;
}

.job2 .title-box img {
    display: none;
}

.job2 .list .text-box {
    width: 50%;
    margin-right: 4%;
}

.job2 .list .content {
    display: flex;
    padding-bottom: 3rem;
}

.job2 .list span.dotted::before {
    content: '●';
    display: inline;
}

.job2 .list .text-box p {
    margin-top: 0;
}

.job2 .list .img-box {
    width: 28%;
}

.job2 .btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.7rem 1rem;
}

.schedule {
    background: #141414;
    color: #ffffff;
}

.schedule img.sp {
    display: none;
}

.voice {
    background: #f5f5f5;
}

.voice ul.list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    padding: 2.5rem 0;
}

.voice ul.list:last-of-type {
    border-top: 1px solid #646464;
}

.voice li {
    display: flex;
}

.card-meta {
    min-width: 95px;
    padding-right: 30px;
}

.card-num {
    background-image: url(../images/common/bg_card-num.svg);
    background-repeat: no-repeat;
    background-position-y: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1.4rem;
    text-align: center;
}

.card-profile.pc {
    font-size: 0.875rem;
    letter-spacing: -.08rem;
    font-weight: 600;
}

.card-profile.pc li {
    border-bottom: 1px solid #646464;
    margin-bottom: .5rem;
}

.voice .img-box {
    margin-bottom: 1rem;
}

.voice .card-bottom {
    display: flex;
}

.voice .card-bottom h3 {
    min-width: 220px;
    margin-top: 0;
    line-height: normal;
}

.voice .card-profile.sp {
    display: none;
}

.voice .card-bottom h3 span {
    display: block;
}

.voice .card-bottom p {
    margin-top: 0;
    line-height: 1.7rem;
    letter-spacing: normal;
}

.access {
    background: #000000;
    color: #ffffff;
}

.access .container {
    margin-bottom: 0;
}

.access .row {
    flex-wrap: nowrap;
}

.access .info {
    width: 50%;
    padding: 5rem 10% 5rem 0;
}

.access .penko {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.access .name span {
    display: block;
    font-size: 1.125rem;
}

.access .tel {
    font-size: 1.375rem;
}

.access .postcode {
    display: block;
}

.access .img-box {
    margin: 2rem auto 1rem;
}

.access .map {
    width: calc(50% + (100vw - 100%) / 2);
    margin-right: calc((100% - 100vw) / 2);
}


/* ----- yanai ----- */
.yanai .job2 .title-box {
    width: 18%;
}

.yanai .job2 .list .content::before {
    content: attr(data-num);
    font-size: 1rem;
    min-width: 40px;
    color: #646464;
}


/* ----- kurashiki ----- */
.kurashiki .job2 .list .text-box {
    width: 66%;
    margin-right: 4%;
}

.kurashiki .job2 .list .img-box {
    width: 30%;
}


/* ----- okayama ----- */
.okayama .job2 .list .text-box {
    width: 66%;
    margin-right: 4%;
}

.okayama .job2 .list .img-box {
    width: 30%;
}


/* ----- recruit ----- */
.recruit main .container {
    margin-bottom: 0;
}

.recruit .page-intro {
    background: #f5f5f5;
    padding-bottom: 0;
}

.recruit main h2 {
    font-size: 3.125rem;
    margin: 0 auto;
    margin-bottom: 3rem;
    text-align: center;
}

.recruit .text-box {
    width: 50%;
    padding: 5rem 10% 5rem 0;
}

.recruit .img-box {
    position: absolute;
    right: 0;
    width: calc(50% + (100vw - 100%) / 2);
    margin-right: calc((100% - 100vw) / 2);
    overflow: hidden;
    z-index: 1;
}

.recruit main .top {
    background: #f5f5f5;
    padding-top: 5rem;
}

#drum-driver .top {
    padding-top: 5rem;
}

.recruit .top .text-box {
    padding-top: 0;
}

.recruit .card-num {
    background-image: url(../images/common/bg_card-num.svg);
    background-repeat: no-repeat;
    background-position-y: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding-left: 20px;
    margin-bottom: 0;
    text-align: left;
}

.recruit .text-box > ul > li {
    border-bottom: 1px solid #646464;
    padding-bottom: 2rem;
}

.recruit .text-box > ul > li:last-child {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 5rem;
}

.recruit .top h3 {
    border-bottom: 1px solid #646464;
    font-size: 1.5rem;;
    margin-top: 0;
}

.recruit .top .lead {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: normal;
}

.recruit main .bottom {
    background: #000000;
    color: #ffffff;
    padding-bottom: 3rem;
}

.recruit .bottom h4 {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 1rem;
}

.recruit .bottom h5 {
    font-size: 1rem;
    margin-bottom: .6rem;
}

.recruit .bottom .text-box {
    padding-top: 3rem;
}

.recruit .bottom ul ul li {
    text-indent: -1rem;
    padding-left: 1rem;
}

.recruit .bottom ul ul li::before {
    content: '●';
    display: inline;
}



/* ----- contact ----- */
.contact main {
    background: #000000;
}

.contact main .container {
    margin-bottom: 0;
    padding-bottom: 4rem;
}

.contact .page-intro {
    padding-bottom: 2rem;
}

.cf7-top {
    background: #ffffff;
    max-width: 1360px;
    margin: 0 auto;
    padding: 2rem 10%;
}

.cf7-top h2 {
    font-size: 1.25rem;
    border-bottom: 1px solid #000000;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: .5rem;
}

/* 各フィールド行 */
.cf7-row {
    display: flex;
    align-items: flex-start;
    align-items: center;
    padding: 18px 0;
}

/* ラベル */
.cf7-lbl {
    min-width: 230px;
    line-height: 1.5;
    flex-shrink: 0;
}
.cf7-req {
    color: #2e8b6e;
    margin-top: 2px;
    margin-left: .5rem;
}

/* 入力エリア */
.cf7-ctrl { flex: 1; width: 100%; }

.cf7-wrap input[type="text"],
.cf7-wrap input[type="email"],
.cf7-wrap input[type="tel"] {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.cf7-wrap input[type="text"]:focus,
.cf7-wrap input[type="email"]:focus,
.cf7-wrap input[type="tel"]:focus { border-color: #2e8b6e; }

.cf7-wrap textarea {
  width: 100%;
  min-height: 96px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  background: #fff;
  resize: vertical;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.cf7-wrap textarea:focus { border-color: #2e8b6e; }

.cf7-wrap input::placeholder, 
.cf7-wrap textarea::placeholder { color: #bbb; }

/* ラジオボタン */
.cf7-radios .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0 20px 10px 0;
  cursor: pointer;
}
.cf7-radios input[type="radio"] {
  accent-color: #2e8b6e;
  width: 15px;
  height: 15px;
  cursor: pointer;
  margin-right: 6px;
}

/* 住所 */
.cf7-addr { display: flex; flex-direction: column; gap: 10px; }
.cf7-addr-row { display: flex; align-items: center; gap: 10px; }
.cf7-addr-lbl { min-width: 130px; font-size: 14px; color: #333; flex-shrink: 0; }
.cf7-zip { width: 120px !important; flex-shrink: 0; }
.cf7-addr-row input { flex: 1; }

.cf7-auto-btn {
    height: 38px;
    padding: 0 14px;
    background: #555;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.2s;
}
.cf7-auto-btn:hover { background: #333; }


.cf7-bottom {
    padding: 3rem;
}

.cf7-bottom .privacy {
    text-align: center;
}

.cf7-bottom .privacy label {
    background: #ffffff;
    padding: .5rem 1rem;
    margin-bottom: .5rem;
    display: inline-block;
}

.ken .wpcf7-form-control-wrap,
.shi .wpcf7-form-control-wrap,
.tatemono .wpcf7-form-control-wrap {
    width: 100%;
}

/* 送信ボタン */
.cf7-submit-wrap { padding: 32px 0 8px; display: flex; justify-content: center; }
.cf7-submit {
    min-width: 280px;
    height: 80px;
    padding: 0 40px;
    background: #2e8b6e;
    color: #ffffff;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 3rem;
}
.cf7-submit:hover { background: #246b55; }

/* CF7標準バリデーションエラーのカスタム */
.wpcf7-not-valid-tip {
  color: #e00 !important;
  font-size: 12px !important;
  margin-top: 4px !important;
}
.wpcf7-not-valid {
  border-color: #e00 !important;
}

/* CF7標準 送信完了・エラーメッセージのカスタム */
.wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  padding: 16px 20px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  text-align: center !important;
}
/* 送信成功時（緑） */
.wpcf7 form.sent .wpcf7-response-output {
  background: #f0faf5 !important;
  border: 1px solid #2e8b6e !important;
  color: #2e8b6e !important;
}
/* 入力エラー時（赤） */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unconfirmed .wpcf7-response-output {
  background: #fff5f5 !important;
  border: 1px solid #e00 !important;
  color: #e00 !important;
}

/* レスポンシブ */
@media (max-width: 640px) {
  .cf7-row { flex-direction: column; gap: 8px; }
  .cf7-lbl { min-width: unset; width: 100%; padding-top: 0; }
  .cf7-addr > .cf7-addr-row { display: block; }
  .cf7-addr-row > .cf7-addr-lbl { display: block; }
  .cf7-addr-lbl { min-width: 72px; }
}






/* =============================================
   確認画面 追加CSS
   既存の cf7-style.css に追記してください
   ============================================= */

/* 確認画面：通常時は非表示 */
#confirm-area {
  display: none;
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* show-confirm クラスが body に付いたら切り替え */
body.show-confirm .cf7-wrap {
  display: none;
}
body.show-confirm #confirm-area {
  display: block;
}

/* 確認テーブル */
#confirm-area h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #333;
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 14px;
}

.confirm-table th,
.confirm-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.confirm-table tr:first-child th,
.confirm-table tr:first-child td {
  border-top: 1px solid #e5e5e5;
}

.confirm-table th {
  width: 180px;
  min-width: 180px;
  color: #333;
  font-weight: 500;
  background: transparent;
}

.confirm-table td {
  color: #555;
}

#c-message {
    white-space: pre-wrap;
}

/* ボタン群 */
.confirm-btns {
    display: block;
}

/* 修正するボタン */
.cf7-back-btn {
    min-width: 280px;
    height: 80px;
    padding: 0 40px;
    background: #ffffff;
    color: #000000;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 3rem;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
}

.cf7-back-btn:hover {
  background: #f5f5f5;
}

/* 送信するボタン（既存 .cf7-submit と共通） */
.confirm-btns .cf7-submit {
    display: block;
    margin: 0 auto;
}







/* ----- privacy-policy ----- */
.privacy-policy .entry-content section {
    margin: 0 auto;
    margin-bottom: 6rem;
}

.privacy-policy .entry-content li {
    list-style: none;
    margin-bottom: 1rem;
}

.privacy-policy .entry-content section > ul > li {
    border-bottom: 1px solid #cfd4dc;
    margin-bottom: 3rem;
}

.privacy-policy section#list > ul > li {
    padding: 40px 10px 40px 0;
    margin-bottom: 0;
}

.privacy-policy .entry-content li ul {
    margin-bottom: 2rem;
}

.privacy-policy .entry-content li li {
    padding-left: 1rem;
	text-indent: -1.5rem;
    margin-bottom: 0;
}

.privacy-policy .entry-content li li::before {
    content: '・';
}

.privacy-policy .entry-content h2::before {
    font-size: 1.5rem;
    counter-increment: number 1;
    content: counter(number) '.';
}

.privacy-policy .entry-content li h2 {
    margin-top: 0;
}

.privacy-policy .entry-content h3 {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}


/* ----- 404 ----- */
.error404 .link {
    border-bottom: 1px solid #222222;
}


@media screen and ( min-width: 1400px ) {
    /* ----- ----- top ----- ----- */
    /* ----- intro ----- */
    
}


@media screen and ( min-width: 781px ) {
    /* ----- ----- common ----- ----- */
    /* ----- button2 ----- */
    .btn2 {
        min-width: auto;
    }


    /* ----- ----- top ----- ----- */
    



    .access iframe {
        height: 100%;
    }

}


@media screen and ( max-width: 1400px ) {
    /* ----- ----- top ----- ----- */
    /* ----- intro ----- */
    

}


@media screen and ( max-width: 1700px ) {
    /* ----- ----- header ----- ----- */
    #primary-menu li a {
        min-width: 140px;
    }

    #primary-menu li.okayama {
        margin-right: 30px;
    }
    
}


@media screen and ( max-width: 1600px ) {
    /* ----- ----- page ----- ----- */
    /* ----- recruit ----- */
    .recruit .text-box {
        padding: 5rem 5% 5rem 0;
    }

    
}


@media screen and ( max-width: 1400px ) {
    /* ----- ----- header ----- ----- */
    header.site-header .container {
        padding: 0 20px;
    }

    #primary-menu li a {
        min-width: 125px;
    }

    #primary-menu li.okayama {
        margin-right: 0;
    }

    #primary-menu .contact a {
        min-width: 170px;
    }

    /* ----- ----- page ----- ----- */
    /* ----- recruit ----- */
    .recruit .text-box {
        padding: 5rem 5% 5rem 0;
    }
    
}


@media screen and ( max-width: 1200px ) {
    /* ----- ----- header ----- ----- */
    #primary-menu li.no_click,
    #primary-menu li.yanai,
    #primary-menu li.okayama,
    #primary-menu li.kurashiki {
        display: none;
    }

    #primary-menu li a {
        padding: 0 1rem .3rem;
        min-width: 105px;
    }

    /* ----- ----- footer ----- ----- */
    footer .list ul {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    footer .post-code {
        display: block;
    }
    


    /* ----- ----- top ----- ----- */
    /* ----- intro ----- */
    #intro .logo {
        margin-right: 2rem;
    }

	.box_btn1 li img, .box_btn1 li svg {
	    height: auto;
	}


    /* ----- intro ----- */




    /* ----- ----- page ----- ----- */
    /* ----- about ----- */
    section.office .post-code, section.office .add1, section.office .fax {
        display: block;
    }


}


@media screen and (max-width: 991px) {
    /* ----- ----- header ----- ----- */
    .sticky-nav {
        display: flex;
        justify-content: center;
    }

    #site-navigation {
        display: none;
    }

    header .site-title img {
        width: 200px;
    }

    .sticky-nav #nav-btn {
        display: inline-block;
    }

    #primary-menu li.top {
        display: inline-block;
    }

    #takeover-nav .address, #takeover-nav .menu {
	    flex: 0 0 auto;
    	width: 100%;
	    padding: 2rem;
	}

	#takeover-nav .menu {
	    order: 0;
	}

	#takeover-nav .address {
	    order: 1;
	}

	#takeover-nav .nav-menu {
		min-height: 500px;
	}

	#takeover-nav .nav-menu a {
		color: var(--black);
	}

	#takeover-nav .nav-menu a:hover {
		color: var(--white);
	}

    #takeover-nav .btn1-ar a {
        display: inline-block;
    }

    #takeover-nav .btn1-ar a::after {
        content: none;
    }

	#takeover-nav .nav-contact {
		min-height: 500px;
	}

	#takeover-nav .nav-contact .nav-title {
		font-size: 2.5em;
	}


    /* ----- ----- footer ----- ----- */
    footer .top {
        display: block;
    }

    footer .info {
        text-align: center;
        margin-bottom: 4rem;
    }


    /* ----- ----- top ----- ----- */


    /* ----- ----- page ----- ----- */
    /* ----- common ----- */
    h2.block-title {
        font-size: 3rem;
        line-height: normal;
    }

    .title-header h2 {
        font-size: 3rem;
        line-height: normal;
        letter-spacing: .3rem;
        margin-bottom: 0;
    }

    .title-header h2 span {
        display: inline;
    }

    .title-header span.jp {
        font-size: 1.5rem;
    }


    /* ----- about ----- */
    .profile dd p {
        margin-bottom: 1rem;
    }

    .profile .name {
        display: block;
    }

    .profile .add2 {
        display: block;
    }


    /* ----- company ----- */
    .page-intro .btn-intro.pc a {
        font-size: .9rem;
        padding: 1.4rem 1.2rem;
    }

    .page-intro .btn-intro.pc li:first-child a {
        padding-left: 1rem;
    }

    .page-intro .btn-intro.pc li:last-child a {
        padding-right: 1.2rem;
    }

    .page-intro .btn-intro.pc a::before {
        margin-right: .4rem;
    }


    /* ----- contact ----- */
    .check .wpcf7-checkbox {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .check .wpcf7-checkbox > span {
        margin-right: 0;
    }


}


@media screen and (max-width: 781px) {
    /* ----- ----- header ----- ----- */
    


    /* ----- ----- global ----- ----- */
    /* ----- layout ----- */



    /* ----- button1 ----- */


    /* ----- ----- footer ----- ----- */
    footer.site-footer {
        padding: 20px 0 71px;
    }

    #scrollTopBtn {
        bottom: 83px;
        right: 8px;
    }

    .btn-contact {
        background: #086c50;
        color: #ffffff !important;
        display: block;
        position: fixed;
        bottom: 0;
        font-size: 1.2rem;
        line-height: normal;
        text-align: center;
        padding: 12px 10px;
        width: 100%;
        z-index: 10;
    }

    .home .btn-contact {
        display: none;
    }

    .btn-contact span {
        display: block;
        font-size: .8rem;
    }

    .btn-contact span {
        background-image: url(../images/common/bg_btn.svg);
        background-repeat: no-repeat;
        background-position-y: 1px;
        background-position-x: center;
        text-align: center;
    }


    /* ----- ----- top ----- ----- */




    /* ----- ----- page ----- ----- */
    /* ----- common ----- */



    /* ----- company ----- */
    main.company {
        background-image: url(../images/page/company/bg_main.webp);
        background-size: contain;
        background-repeat: no-repeat;
    }

    main.company .container {
        margin-bottom: 0;
    }

    .company .page-intro.one {
        padding-top: 2rem;
    }

    .company .page-intro {
        background-image: none;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .page-intro .outer {
        text-align: right;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .page-intro .btn-intro.pc {
        display: none;
    }

    .page-intro .btn-intro.sp {
        display: inline-block;
    }

    .page-intro .btn-intro.sp a::after {
        content: '\203A';
        color: #ffffff;
        position: absolute;
        right: 32px;
        margin-bottom: 5px;
    }

    .page-intro .btn-intro.sp a:hover::after {
        color: #086c50;
    }

    .company .lead-box {
        display: flex;
        max-width: 100%;
    }

    .company .lead-box .tate {
        display: inline-block;
        writing-mode: vertical-rl;
        margin-right: 20px;
    }

    .company .lead-box h2 {
        font-size: 2.5rem;
        line-height: normal;
        text-align: left;
        margin-top: 0;
    }

    .company .lead-box h2::before {
        background-position-x: left;
    }

    .company .lead-box p {
        text-align: left;
    }

    .company .bg-box {
        display: none;
    }

    .job1 {
        background: none;
        color: #000000;
        padding-top: 3rem;
        padding-bottom: 0;
    }

    .job1 .overview {
        border-top: 1px solid #646464;
        border-bottom: 1px solid #646464;
        padding-top: 1rem;
    }

    .job1 .overview .row {
        display: block;
    }

    .job1 .overview .img-box {
        display: none;
    }

    .job1 .overview .text-box {
        width: 100%;
        padding-left: 0;
    }

    .job2 {
        background: none;
        padding-top: 0;
        position: relative;
    }

    .job2::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #000;
        clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
        z-index: 1;
    }

    .job2 .container {
        z-index: 2;
        position: relative;
        padding-top: 50px;
    }

    .job2 .list .row {
        display: block;
        padding-top: 0;
    }
    
    .job2 .list .row:first-child {
        border-top: none;
    }

    .job2 .title-box {
        width: 100%;
        position: relative;
        margin-top: -2rem;
        margin-bottom: 2rem;
    }

    .job2 .title-box h3 {
        position: absolute;
        bottom: 0;
        left: 0;
        background: #086c50;
        color: #fff;
        font-weight: 700;
        padding: 10px 18px;
    }

    .job2 .list .text-box {
        width: 100%;
        margin-right: 0;
    }

    .job2 .list .row {
        padding-bottom: 0rem;
        margin-bottom: 4rem;
    }

    .job2 .list .row:last-child {
        margin-bottom: 0;
    }

    .job2 .list .text-box ul {
        margin-left: -40px;
    }

    .job2 .list .img-box {
        display: none;
    }

    .job2 .btn2 {
        max-width: none;
    }

    .job2 .btn2::after {
        right: 10px;
        margin-top: 3px;
    }

    .schedule .img-box {
        text-align: center;
    }

    .schedule img.pc {
        display: none;
    }

    .schedule img.sp {
        display: inline-block;
        max-width: 400px;
    }

    .voice ul.list {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .voice ul {
        padding-top: 0 !important;
        margin-bottom: 0;
    }

    .voice ul.list:last-of-type {
        border-top: none;
    }

    .voice .img-box {
        text-align: center;
    }
    
    .card-meta {
        display: none;
    }

    .voice .card-bottom h3 span {
        display: inline;
    }

    .voice .card-bottom {
        display: block;
    }

    .card-profile.sp {
        display: inline-block;
        background: #000000;
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 1rem;
        padding: 5px 15px;
    }

    .card-profile.sp span {
        margin-right: 10px;
    }

    .card-profile.sp span:last-child {
        margin-right: 0;
    }

    .access .row {
        display: block;
        padding-bottom: 5rem;
    }

    .access .img-box {
        text-align: center;
    }

    .access .info {
        width: 100%;
        padding: 5rem 0 5rem 0;
    }

    .access .map {
        width: 100%;
        margin-right: 0;
        padding: auto;
    }


    /* ----- yanai ----- */
    .yanai .schedule {
        background: #000000;
        padding-top: 0;
    }

    .yanai .job2.souko::before {
        clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    }

    .yanai .job2 .title-box img {
        width: 90%;
        display: block;
        margin-left: 10%;
    }

    .yanai .job2 .title-box {
        width: 100%;
    }


    /* ----- kurashiki ----- */
    .kurashiki .job2 .title-box {
        text-align: center;
    }

    .kurashiki .job2 .title-box img {
        display: inline-block;
    }

    .kurashiki .job2 .list .text-box {
        width: 100%;
        margin-right: 0;
    }

    .kurashiki .job2 .list .text-box ul {
        margin-left: 0;
    }

    .kurashiki .schedule {
        background: none;
        position: relative;
    }

    .kurashiki .schedule::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #000;
        clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
        z-index: 1;
    }

    .kurashiki .schedule .container {
        z-index: 2;
        position: relative;
        padding-top: 5rem;
    }


    /* ----- okayama ----- */
    .okayama .job2 .title-box {
        text-align: center;
    }

    .okayama .job2 .title-box img {
        display: inline-block;
    }

    .okayama .job2 .list .text-box {
        width: 100%;
        margin-right: 0;
    }

    .okayama .job2 .list .text-box ul {
        margin-left: 0;
    }

    .okayama .job2.partner {
        padding-bottom: 0;
    }

    .okayama .job2.partner::before {
        clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    }

    .okayama .access {
        margin-top: -1px;
    }


    /* ----- about ----- */
    .profile .list, .office .list {
        /* padding-left: 0; */
    }

    .profile dl > div, .office dl > div {
        display: block;
    }

    .profile dt, .office dt, .profile dd, .office dd {
        width: 100%;
    }

    .profile dt, .office dt {
        margin-bottom: .5rem;
    }

    .profile dd, .office dd {
        margin-top: 0;
    }

    section.office dd {
        display: block;
    }

    section.office .btn3 {
        margin-top: 1rem;
        margin-left: 0;
        max-width: 150px;
    }

    .swiper {
        overflow: visible !important;
    }

    .swiper-wrapper {
        flex-direction: column !important;
        transform: none !important;
    }

    .swiper-slide {
        width: 100% !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 20px;
        position: relative;
    }

    .circle-area {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    /* 縦線 */
    .circle-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        background-color: #444;
        height: 200%;
        z-index: -999;
    }

    .circle-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #0a0a0a;
        z-index: 0;
    }

    .year-main, .year-sub {
        position: relative;
        z-index: 1;
    }

    .swiper-slide:first-child .circle-area::before {
        top: 50%;
        height: 150%;
    }

    .swiper-slide:last-child .circle-area::before {
        height: 50%;
    }

    .arrow-separator {
        display: none;
    }

    .description-area {
        width: auto;
        flex: 1;
        padding-top: 35px;
    }

    .nav-buttons {
        display: none;
    }


    /* ----- recruit ----- */
    .recruit main .row {
        flex-direction: column;
    }

    .recruit .img-box {
        width: 100%;
        position: static;
        order: 1;
    }

    .recruit .text-box {
        width: 100%;
        order: 2;
    }

    .recruit main h2 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 2rem;
    }


    /* ----- contact ----- */
    .cf7-row {
        gap: 5px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cf7-label {
        width: auto;
    }

    .cf7-input {
        width: 100%;
    }

    .confirm-table th {
        width: 120px;
        min-width: 120px;
    }

    .confirm-btns {
        flex-direction: column;
        align-items: center;
    }

    .cf7-back-btn,
    .confirm-btns .cf7-submit {
        width: 100%;
        max-width: 320px;
    }


    /* ----- privacy-policy ----- */
    .privacy-policy .postcode {
        display: block;
    }


}


@media screen and (max-width: 480px) {
    /* ----- ----- header ----- ----- */
    header .swoosh {
		width: 165px;
		height: 35px;
		top: 10px;
	}

	header .sticky-nav {
		top: 10px;
	}

	header .sticky-nav .logo {
		width: 100px;
		height: 48px;
	}

	header .sticky-nav #nav-btn {
		width: 40px;
	}

	header #takeover-nav .contact-items {
		font-size: 1em;
	}


    /* ----- ----- footer ----- ----- */
    footer .list ul {
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1rem;
    }

    footer .list a {
        min-width: 140px;
    }

    footer .add1 {
        display: block;
    }

    footer .wrapper-banner {
        text-align: left;
    }

    footer .logo svg {
        width: 153px;
    }

    #colophon {
        text-align: left;
    }


    /* ----- ----- global ----- ----- */
    /* ----- dot title ----- */
    .dot-title {
        font-size: 1.5rem;
    }


    /* ----- ----- top ----- ----- */
    .home main h2 {
        font-size: 1.5rem;
        letter-spacing: .15rem;
        line-height: normal;
    }


    /* ----- ----- page ----- ----- */
    /* ----- common ----- */
    h2.block-title {
        font-size: 2.3rem;
        line-height: normal;
        letter-spacing: .2rem;
    }

    .title-header h2 {
        font-size: 2.3rem;
        line-height: normal;
        letter-spacing: .2rem;
    }

    .title-header span.jp {
        font-size: 1.3rem;
    }


    /* ----- company ----- */
    .schedule img.sp {
        display: inline-block;
        max-width: 100%;
    }


    /* ----- contact ----- */
    .check .wpcf7-checkbox {
        grid-template-columns: 1fr;
        gap: .4rem;
    }

    .check .wpcf7-checkbox input {
        margin-right: 6px;
    }


    /* ----- privacy-policy ----- */
    .privacy-policy .street {
        display: block;
    }





}


