/* ==========================================================================
   OC Theme - Base Stylesheet
   ==========================================================================
   This is the main stylesheet for the OC Theme.
   - Blog-specific styles are in oc-blog-style.css
   - Contact-specific styles are in oc-contact-style.css
   ========================================================================== */


/* ==========================================================================
   1. CSS Reset (Minimal Modern Reset)
   ========================================================================== */

*, *::before, *::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html:focus-within {
	scroll-behavior: smooth;
}

img, picture {
	max-width: 100%;
	height: auto;
}

input, button, textarea, select {
	font: inherit;
}

table {
	border-collapse: collapse;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}


/* ==========================================================================
   2. CSS Custom Properties (Variables)
   ==========================================================================
   Color values come from theme.json via --wp--preset--color--*.
   Blog layout variables are defined here as custom properties.
   ========================================================================== */

/* Blog layout variables are defined in theme.json settings.custom.blog
   and available as --wp--custom--blog--* */


/* ==========================================================================
   3. Base Typography
   ==========================================================================
   Restores sensible defaults for common HTML elements.
   ========================================================================== */

body {
	min-height: 100vh;
	font-family: var(--wp--preset--font-family--body, "Noto Sans JP", sans-serif);
	font-size: 16px;
	line-height: 1.8;
	color: var(--wp--preset--color--text);
	background-color: var(--wp--preset--color--background);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
	margin-bottom: 1rem;
}

ul, ol {
	padding-left: 0;
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--wp--preset--color--accent);
}

a:hover {
	text-decoration: none;
}


/* ==========================================================================
   4. Theme Component Styles
   ========================================================================== */

/* --- Text Color Utility --- */
.text-primary-color {
	color: var(--wp--preset--color--primary);
}

/* --- Clear Fix --- */
.clear-fix {
	clear: both;
}

/* --- Background Image --- */
.bg-image {
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* --- Text Background Top (Hero Banner) --- */
.text-bg-top {
	z-index: 0;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-bg-top .caption {
}

.text-bg-top .caption h1,
.text-bg-top .caption h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

/* --- 404 Page --- */
.content-none {
	text-align: center;
	font-size: 20px;
	padding: 80px 10px;
}

.content-none .error-number {
	font-size: 70px;
}

.content-none .content-none-btn {
	margin: 20px auto;
	text-align: center;
}


/* ==========================================================================
   5. OC Button Style
   ========================================================================== */

.site-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 375px;
	height: 73px;
	max-width: 90%;
	border: 1px solid var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
	background-color: transparent;
	transition: all 0.5s;
}


/* ==========================================================================
   6. OC Modal Style
   ========================================================================== */

.modal-design {
	height: 80vh;
	overflow: scroll;
	margin: 15% 0 10% 0;
	border-radius: unset;
}

.modal-dialog {
	max-width: 800px;
	padding: 1rem;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

.close-btn {
	position: fixed;
	right: 0;
	top: 25px;
}

.modal-side-margin {
	margin: 0;
}

.modal-body-design {
	padding: 0;
}

.round_btn {
	display: block;
	width: 45px;
	height: 45px;
	border: 2px solid #AA8400;
	border-radius: 50%;
	background: #fff;
}

.round_btn::before,
.round_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 22px;
	background: #AA8400;
}

.round_btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.round_btn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}


/* ==========================================================================
   7. Layout Utilities
   ========================================================================== */

/* --- Container --- */
.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* --- Row / Grid --- */
.row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* --- Columns (Mobile First) ---
 * 親 .row の gap: 1rem を考慮した calc 値。
 * N 列並びで `100% + (N-1)*gap` の overflow を起こさないように
 * 各列から `(1 - X/12) * gap` を減算している。
 */
.col-6  { flex: 0 0 calc(50% - 0.5rem); max-width: calc(50% - 0.5rem); }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 576px) {
	.col-sm-6  { flex: 0 0 calc(50% - 0.5rem); max-width: calc(50% - 0.5rem); }
	.col-sm-12 { flex: 0 0 100%; max-width: 100%; }
	.mb-sm-0 { margin-bottom: 0; }
	.mb-sm-3 { margin-bottom: 1rem; }
	.align-items-sm-center { align-items: center; }
}

@media (min-width: 768px) {
	.col-md-1  { flex: 0 0 calc(8.333% - 0.917rem);  max-width: calc(8.333% - 0.917rem); }
	.col-md-2  { flex: 0 0 calc(16.666% - 0.833rem); max-width: calc(16.666% - 0.833rem); }
	.col-md-3  { flex: 0 0 calc(25% - 0.75rem);      max-width: calc(25% - 0.75rem); }
	.col-md-4  { flex: 0 0 calc(33.333% - 0.667rem); max-width: calc(33.333% - 0.667rem); }
	.col-md-5  { flex: 0 0 calc(41.666% - 0.583rem); max-width: calc(41.666% - 0.583rem); }
	.col-md-6  { flex: 0 0 calc(50% - 0.5rem);       max-width: calc(50% - 0.5rem); }
	.col-md-7  { flex: 0 0 calc(58.333% - 0.417rem); max-width: calc(58.333% - 0.417rem); }
	.col-md-8  { flex: 0 0 calc(66.666% - 0.333rem); max-width: calc(66.666% - 0.333rem); }
	.col-md-9  { flex: 0 0 calc(75% - 0.25rem);      max-width: calc(75% - 0.25rem); }
	.col-md-10 { flex: 0 0 calc(83.333% - 0.167rem); max-width: calc(83.333% - 0.167rem); }
	.col-md-11 { flex: 0 0 calc(91.666% - 0.083rem); max-width: calc(91.666% - 0.083rem); }
	.col-md-12 { flex: 0 0 100%; max-width: 100%; }
	.offset-md-1 { margin-left: 8.333%; }
}

@media (min-width: 992px) {
	.col-lg-10 { flex: 0 0 calc(83.333% - 0.167rem); max-width: calc(83.333% - 0.167rem); }
	.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
	.offset-lg-1 { margin-left: 8.333%; }
}


/* ==========================================================================
   8. Display Utilities
   ========================================================================== */

.d-flex   { display: flex; }
.d-block  { display: block; }
.d-none   { display: none; }


/* ==========================================================================
   9. Flexbox Utilities
   ========================================================================== */

.flex-row      { flex-direction: row; }
.flex-column   { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }

.justify-start,   .justify-content-start   { justify-content: flex-start; }
.justify-center,  .justify-content-center  { justify-content: center; }
.justify-end,     .justify-content-end     { justify-content: flex-end; }
.justify-between, .justify-content-between { justify-content: space-between; }

.align-start,  .align-items-start  { align-items: flex-start; }
.align-center, .align-items-center { align-items: center; }
.align-end,    .align-items-end    { align-items: flex-end; }

.align-self-end { align-self: flex-end; }


/* ==========================================================================
   10. Text Utilities
   ========================================================================== */

.text-start  { text-align: left; }
.text-center { text-align: center; }
.text-end    { text-align: right; }

.text-dark { color: var(--wp--preset--color--text); }

.fw-bold   { font-weight: bold; }
.fw-normal { font-weight: normal; }


/* ==========================================================================
   11. Width Utilities
   ========================================================================== */

.w-100 { width: 100%; }


/* ==========================================================================
   11b. Font Size Utilities
   ========================================================================== */

.fs-4 { font-size: 1.5rem; }
.fs-5 { font-size: 1.25rem; }


/* ==========================================================================
   11c. Misc Utilities
   ========================================================================== */


.img-cover-white {
	position: relative;
}
.img-cover-white::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.15);
	pointer-events: none;
}

.more-info-btn-cover {
	display: flex;
	justify-content: center;
}
.more-info-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0.75em 2em;
	border: 1px solid var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
	background-color: transparent;
	transition: all 0.3s;
}
.more-info-btn:hover {
	background-color: var(--wp--preset--color--primary);
	color: #fff;
}


/* ==========================================================================
   12. Margin Utilities
   ==========================================================================
   Scale: 0=0, 1=0.25rem, 2=0.5rem, 3=1rem, 4=1.5rem, 5=3rem
   ========================================================================== */

/* --- All sides --- */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 1rem; }
.m-4 { margin: 1.5rem; }
.m-5 { margin: 3rem; }

/* --- Top --- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* --- Bottom --- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* --- Start (Left in LTR) --- */
.ms-0 { margin-left: 0; }
.ms-1 { margin-left: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }

/* --- End (Right in LTR) --- */
.me-0 { margin-right: 0; }
.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }

/* --- Vertical (Top + Bottom) --- */
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }

/* --- Horizontal Auto --- */
.mx-auto { margin-left: auto; margin-right: auto; }


/* ==========================================================================
   13. Padding Utilities
   ==========================================================================
   Scale: 0=0, 1=0.25rem, 2=0.5rem, 3=1rem, 4=1.5rem, 5=3rem
   ========================================================================== */

/* --- All sides --- */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* --- Horizontal (Left + Right) --- */
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

/* --- Vertical (Top + Bottom) --- */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }


/* ==========================================================================
   14. Breadcrumbs
   ========================================================================== */

.bread-crumbs {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 0.75rem;
	margin: 0;
	padding: 10px 1.5rem;
	list-style: none;
}

.bread-crumbs .bc-home-icon {
	margin-right: 3px;
	vertical-align: baseline;
}

.bread-crumbs .bc-link {
	display: inline-flex;
	align-items: center;
	color: var(--wp--preset--color--accent, #0A4B8B);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.bread-crumbs .bc-item {
	display: inline-block;
	color: var(--wp--preset--color--text-muted, #707070);
	font-size: 0.75rem;
	font-weight: 500;
	margin: 0 0.75em 0 0;
}

.bread-crumbs .bc-item:not(.bc-home)::before {
	content: "";
	display: inline-block;
	width: 0.45em;
	height: 0.45em;
	margin: 0 0.75em 0 0;
	border-top: 2px solid var(--wp--preset--color--text-muted, #707070);
	border-right: 2px solid var(--wp--preset--color--text-muted, #707070);
	transform: rotate(45deg) translateY(15%);
}



@font-face {
    font-family: "NotoSansJP";
	font-weight: 500;
	font-style: normal;
	font-display: swap;
    font-optical-sizing: auto;
	src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"),
		url("../fonts/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
    font-family: "NotoSansJP";
	font-weight: 600;
	font-style: normal;
	font-display: swap;
    font-optical-sizing: auto;
	src: url("../fonts/NotoSansJP-SemiBold.woff2") format("woff2"),
		url("../fonts/NotoSansJP-SemiBold.woff") format("woff");
}
@font-face {
    font-family: "NotoSansJP";
	font-weight: 700;
	font-style: normal;
	font-display: swap;
    font-optical-sizing: auto;
	src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
		url("../fonts/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
	font-family: 'Ozwald';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/Oswald.woff2") format("woff2"),
		 url("../fonts/Oswald.woff") format("woff");
}
@font-face {
	font-family: 'Ozwald';
	font-weight:700;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/Oswald.woff2") format("woff2"),
		 url("../fonts/Oswald.woff") format("woff");
}
@font-face {
	font-family: 'Lato';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/Lato-Bold.woff2") format("woff2"),
		url("../fonts/Lato-Bold.woff2") format("woff");
}
@font-face {
	font-family: 'Lato';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/Lato-Regular.woff2") format("woff2"),
		url("../fonts/Lato-Regular.woff") format("woff");
}
:root {
	--header-height: 110px;
}

@media screen and (max-width:990px) {
	:root {
		--header-height: 52px;
	}
}

body {
	color: #222222;
	font-size: 16px;
    font-family: "NotoSansJP", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
    letter-spacing: 0.02em;
}
body *{
    box-sizing: border-box;
	word-break: break-word;
}
a {
	text-decoration: none;
	color: #096532;
}
.package a,
.package a img{
    transition: all .3s;
}
.package a:hover{
	color: #096532;
	opacity: 0.8;
}
a[href^="tel:"] {
    pointer-events: none;
}
.package h2,
.package h3,
.package h4{
	margin: 0;
	color: #222222;
}
.package p{
	margin: 0;
	margin-bottom: 20px;
}
.package p:last-child{
	margin-bottom: 0;
}
.package img{
	width: 100%;
}
.package figure{
	margin-bottom: 0;
}
.package i{
	font-style: normal;
}
.package table{
	width: 100%;
}
.home dl,
.home dd,
.package dl,
.package dd,
ul.reset,
ol.reset,
#header ul,
#footer ul,
.home ul,
.home ol{
	margin: 0;
	padding: 0;
}
ul.reset li,
ol.reset li,
#header li,
#footer li,
.home li{
	list-style: none;
}
.tb,
.sp{
	display: none;
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.font-notosansjp{
    font-family: "NotoSansJP", sans-serif;
}
.f1,
.font-ozwald {
	font-family: 'Ozwald', sans-serif;
}
.f2,
.font-Lato {
	font-family: 'Lato', sans-serif;
}

@media screen and (max-width:820px) {
	.tb{
		display: block;
	}
}

@media screen and (max-width:767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
    a[href^="tel:"] {
        pointer-events: auto;
    }
	.package {
		font-size: 15px;
	}
}

/*base*/
#container{
	padding-top: var(--header-height);
	overflow: hidden;
}
.package{
	margin: 0;
	padding: 0;
	max-width: 100%;
}
.wrap{
	margin: 0 auto;
	max-width: 1085px;
	padding: 0 15px;
	width: 100%;
}
.wrap.wide{
	max-width: 1265px;
}

/*ヘッダー*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
#header #hinr {
	position: relative;
	width: 100%;
    padding: 0 clamp(15px, calc(-41.818px + 5.682vw), 40px);
	height: var(--header-height);
	background: #fff;
	z-index: 10;
}
#header .flex{
	align-items: center;
	height: 100%;
}
#header .logo{
    display: flex;
    align-items: center;
    gap: clamp(10px, calc(-12.143px + 2.232vw), 20px);
    margin-left: clamp(0px, calc(-45.455px + 4.545vw), 20px);
}
#header h1{
    color: #222;
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0;
}
#header .tel{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
#header .tel a{
    display: inline-block;
    padding-left: 25px;
    color: #096532;
    font-weight: bold;
    font-size: 24px;
	background: url(../img/icon-phone.svg) no-repeat 0 11px;
}
#header .tel span{
    font-size: 14px;
}
#header .gnav{
    display: flex;
    gap: 25px;
    align-items: center;
}
#header .nav .menu{
    display: flex;
    gap: 20px clamp(10px, calc(-56.429px + 6.696vw), 40px);
}
#header .nav .menu a{
	position: relative;
    display: inline-block;
	padding-top: 3px;
	padding-bottom: 3px;
    color: #222;
    font-size: 14px;
    letter-spacing: 0;
	overflow: hidden;
    transform: translateY(2px);
}
#header .nav .menu a:before{
	content: '';
	position: absolute;
	left: -100%;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #096532;
	opacity: 0;
    transition: all .3s;
}
#header .nav .menu a:hover:before{
	left: 0;
	opacity: 1;
}
#header .nav02{
    display: flex;
    gap: 5px;
}
#header .nav02 a{
    display: inline-block;
	position: relative;
    padding: 0 39px 0 14px;
    height: 33px;
    color: #fff;
    font-size: 14px;
    line-height: 31px;
    letter-spacing: 0.04em;
    background: #9FBF01;
	border: #9fbf01 1px solid;
    transition: all .3s;
}
#header .nav02 .form{
    background-color: #096532;
	border-color: #096532;
}
#header .nav02 a:hover{
	color: #9FBF01;
	background: #fff;
}
#header .nav02 .form:hover{
	color: #096532;
}
#header .nav02 a:after,
#header .nav02 a:before{
	content: '';
	position: absolute;
	top: 0;
	right: 20px;
	width: 7px;
	height: 100%;
    background: url(../img/arrow.svg) no-repeat center;
    transition: all .3s;
}
#header .nav02 a:after{
	opacity: 0;
    background: url(../img/arrow08.svg) no-repeat center;
}
#header .nav02 .form:after{
	opacity: 0;
    background: url(../img/arrow09.svg) no-repeat center;
}
#header .nav02 a:hover:before{
	opacity: 0;
}
#header .nav02 a:hover:after{
	right: 16px;
	opacity: 1;
}
.menu-trigger{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: var(--header-height);
	aspect-ratio: 1 / 1;
	cursor: pointer;
	background: #096532;
	z-index: 12;
}
.menu-trigger .inr{
	position: relative;
	width: 18px;
	height: 12px;
    transition: all .3s;
}
.menu-trigger span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: all .3s;
}
.drawer-open .menu-trigger span {
	background: #fff;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 50%;
    transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.drawer-open .menu-trigger span:nth-of-type(3),
.drawer-open .menu-trigger span:nth-of-type(1) {
	top: 50%;
	bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
}
.drawer-open .menu-trigger span:nth-of-type(2){
	opacity: 0;
}
.drawer-open .menu-trigger span:nth-of-type(3) {
    transform: translateY(-50%) rotate(45deg);
}
.sp-menu{
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	width: 335px;
	padding-top: var(--header-height);
	color: #222222;
	text-align: center;
	background: #fff url(../img/sp-menu-bg.webp) no-repeat center bottom;
	background-size: 100% auto;
	transform: translateX(100%);
    transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1);
	will-change: transform;
    overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	z-index: 9;
}
.drawer-open .sp-menu{
	transform: translateX(0);
}
.sp-menu::-webkit-scrollbar{
	display: none;
}
.sp-menu .upper {
	margin-bottom: 70px;
	padding-top: 65px;
}
.sp-menu li{
	margin-bottom: 30px;
}
.sp-menu li a{
	color: #222;
	font-weight: bold;
	letter-spacing: 0;
}
.sp-menu .sp-tel{
	margin-bottom: 15px;
}
.sp-menu .sp-tel a{
	display: inline-block;
	margin-bottom: 5px;
	padding-left: 38px;
	color: #096532;
	font-weight: bold;
	font-size: 40px;
	letter-spacing: 0.04em;
	line-height: 1;
	background: url(../img/icon-phone.svg) no-repeat 0 8px;
	background-size: 32px auto;
}
.sp-menu .sp-tel span{
	display: block;
	letter-spacing: 0;
}
.sp-menu .sp-form a{
	display: inline-block;
	position: relative;
	padding-left: 35px;
	width: 285px;
	color: #fff;
	height: 57px;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.04em;
	text-align: left;
	line-height: 57px;
	background: #096532 url(../img/icon-mail.svg) no-repeat 12px center;
	background-size: 20px auto;
}
.sp-menu .sp-form a:before{
	content: '';
	position: absolute;
	top: 0;
	right: 8px;
	width: 9px;
	height: 100%;
	background: url(../img/arrow.svg) no-repeat center;
}
.overlay {
	position: fixed;
	inset: 0;
	background: #222222;
	opacity: 0;
	z-index: -1;
    transition: opacity .3s;
}
.drawer-open .overlay {
	opacity: 0.6;
	z-index: 8;
}

@media screen and (max-width:990px) {
	#header #hinr{
  		box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
	}	
	#header .navigation{
		display: none;
	}
	#header h1{
		font-size: 12px;
		line-height: 1.15;
	}
	#header .logo img{
		display: block;
		width: 60px;
	}
	.menu-trigger{
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/*メインカラム*/
.top-mv {
	position: relative;
	margin-bottom: clamp(80px, calc(-11.429px + 11.905vw), 160px);
	padding-top: 150px;
    background: url(../img/top-mv-bg.webp) no-repeat center 30px;
	background-size: 1440px auto;
}
.top-mv .text{
	position: relative;
	margin-bottom: 20px;
	text-align: center;
	z-index: 2;
}
.top-mv .text p.s1{
	display: inline-block;
	margin-bottom: 30px;
	font-size: clamp(50px, calc(-18.571px + 8.929vw), 110px);
	font-weight: bold;
	line-height: 1;
	letter-spacing: -0.05em;
	background: radial-gradient(
		circle at 60% 50%,
		rgba(48, 213, 92, 1) 0%,
		rgba(39, 73, 57, 1) 24%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.top-mv .text p.s1 span{
	font-size: clamp(65px, calc(7.857px + 7.44vw), 115px);
}
.top-mv .text p.s2{
	display: inline-block;
	padding: 12px clamp(10px, calc(-12.857px + 2.976vw), 30px);
	padding-left: clamp(25px, calc(2.143px + 2.976vw), 45px);
	color: #fff;
	font-size: clamp(18px, calc(11.143px + 0.893vw), 24px);
	background: #096532;
	clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.top-mv .text p.s2 span{
	color: #E3F391;
}
.top-mv .slider{
	margin: 0 -50px;
	transform: scaleX(-1) rotate(9deg);
}
.top-mv .slick-list{
	overflow: visible;
}
.top-mv .slider span{
	display: block;
	margin: 0 -20px;
	width: clamp(400px, calc(8.889px + 50.926vw), 620px)!important;
	transform: scaleX(-1);
	filter: drop-shadow(0px 4px 30px rgba(165, 197, 182, 0.27));
}
.top-mv .slider img{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}
.top-mv .recruit{
	position: absolute;
	right: clamp(15px, calc(-70.714px + 11.161vw), 90px);
	bottom: calc(clamp(0px, -71.111px + 9.259vw, 40px) * -1);
}
.top-mv .recruit a{
	display: inline-block;
	position: relative;
	padding-top: 30px;
	padding-left: 80px;
	width: 477px;
	aspect-ratio: 477 / 92;
	color: #fff;
	font-size: 24px;
	letter-spacing: 0;
	background: #1B9341;
	border-radius: 10px;
}
.top-mv .recruit a:before{
	content: '';
	position: absolute;
	left: 18px;
	bottom: 50%;
	width: 42px;
	height: 42px;
	background: #fff url(../img/arrow02.svg) no-repeat center;
	border-radius: 100%;
    transform: translateY(50%);
}
.top-mv .recruit a:after{
	content: '';
	position: absolute;
	right: -10px;
	bottom: -1px;
	width: 138px;
	aspect-ratio: 138 / 111;
	background: url(../img/btn-img.png) no-repeat center;
	background-size: 100% auto;
}
.top-mv .recruit span{
	position: absolute;
	top: -14px;
	left: 100px;
	padding: 0 35px;
	height: 28px;
	color: #1B9341;
	font-size: 16px;
	line-height: 26px;
	background: #DAEE79;
	border: #1b9341 1px solid;
	border-radius: 100px;
}
.top-mv .recruit span:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 1px;
	width: 20px;
	aspect-ratio: 42 / 15;
	background: #DAEE79;
    transform: translateX(-50%) translateY(100%);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.top-content h2[data-en] {
	color: #096532;
	font-size: 20px;
	font-weight: normal;
	line-height: 1.8;
	letter-spacing: 0;
}
.top-content h2[data-en]:after {
	content: attr(data-en);
	display: block;
	color: #222;
	font-size: clamp(50px, calc(-7.143px + 7.44vw), 100px);
	font-family: 'Lato', sans-serif;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1;
}
.top-content.c01 {
	margin-bottom: clamp(60px, calc(-8.571px + 8.929vw), 120px);
}
.top-content.c01 .flex{
	align-items: center;
	gap: 40px 0;
}
.top-content.c01 .header {
	padding-right: 20px;
	width: clamp(220px, calc(-117.143px + 43.899vw), 515px);
	font-size: clamp(30px, calc(-4.286px + 4.464vw), 60px);
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1.2;
}
.top-content.c01 .body{
	flex: 1;
}
.top-content.c01 .header span{
	display: inline-block;
	background: radial-gradient(
		circle at 28% 50%,
		rgba(48, 213, 92, 1) 0%,
		rgba(39, 73, 57, 1) 50%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.top-content.c02 {
	margin-bottom: clamp(50px, calc(15.714px + 4.464vw), 80px);
}
.top-content.c02 .header{
	position: relative;
	margin-bottom: clamp(100px, calc(-14.286px + 14.881vw), 200px);
}
.top-content.c02 .header:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(50% + 585px);
	height: 100%;
	background: linear-gradient(90deg,rgba(30, 113, 56, 1) 0%, rgba(42, 184, 87, 1) 100%);
	clip-path: polygon(0 0, 100% 0%, 96.5% 100%, 0 100%);
	z-index: -1;
}
.top-content.c02 .header .flex{
	margin-right: -100px;
}
.top-content.c02 .header .text{
	padding: 70px 20px 60px 0;
	padding-right: 20px;
	width: 40%;
	color: #fff;
}
.top-content.c02 .header .image{
	flex: 1;
	position: relative;
	margin-top: 110px;
}
.top-content.c02 .header h2{
	margin-bottom: 30px;
	color: #fff;
}
.top-content.c02 .header h2:after{
	color: #fff;
}
.top-content.c02 .header .image img{
	position: absolute;
	inset: 0;
	width: 100%;
	aspect-ratio: 845 / 410;
	object-fit: cover;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 5% 100%);
}
.top-content.c02 nav{
    counter-reset: order;
	gap: 20px;
	flex-wrap: nowrap;
	margin-bottom: clamp(40px, calc(-5.714px + 5.952vw), 80px);
	padding: 0 20px;
}
.top-content.c02 nav a{
	display: block;
	width: 100%;
	height: 90px;
	color: #fff;
	font-size: clamp(20px, calc(12.065px + 0.968vw), 26px);
	font-weight: bold;
	text-align: center;
	line-height: 88px;
	letter-spacing: 0;
	background: #096532;
	border: #096532 1px solid;
}
.top-content.c02 nav a:hover{
	color: #096532;
	background: #fff;
	opacity: 1;
}
.top-content.c02 nav span{
	display: inline-block;
	position: relative;
	padding-left: clamp(45px, calc(18.548px + 3.226vw), 65px);
	padding-right: 40px;
	background: url(../img/arrow06.svg) no-repeat right 42px;
    transition: all .3s;
}
.top-content.c02 nav a:hover span{
	background: url(../img/arrow10.svg) no-repeat right 46px;
}
.top-content.c02 nav span:before{
    counter-increment: order;
    content: counter(order, decimal-leading-zero) '.';
	position: absolute;
	top: 50%;
	left: 0;
	color: #61C98F;
	font-size: clamp(30px, calc(14.129px + 1.935vw), 42px);
	font-family: 'Ozwald', sans-serif;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0;
    transform: translateY(-50%);
}
.top-content.c02 .box{
    counter-increment: order;
	padding: clamp(50px, calc(-1.429px + 6.696vw), 95px) 0;
}
.top-content.c02 .box:not(:last-child){
	margin-bottom: 15px;
}
.top-content.c02 .upper{
	align-items: center;
	gap: 35px clamp(30px, calc(-10px + 5.208vw), 65px);
	margin-bottom: 40px;
}
.top-content.c02 .upper .image{
	width: 43.5%;
}
.top-content.c02 .upper .text{
	flex: 1;
}
.top-content.c02 .upper .image img{
	display: block;
}
.top-content.c02 .upper h3{
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 20px;
	font-size: clamp(40px, calc(13.548px + 3.226vw), 60px);
	line-height: 1.5;
	letter-spacing: 0;
	border-bottom: #ddd 1px solid;
}
.top-content.c02 .upper h3:before{
    content: counter(order, decimal-leading-zero) '.';
	display: block;
	margin-bottom: 5px;
	color: #096532;
	font-size: clamp(30px, calc(16.774px + 1.613vw), 40px);
	font-weight: bold;
	font-family: 'Ozwald', sans-serif;
	letter-spacing: 0;
	line-height: 1;
}
.top-content.c02 .upper strong{
	display: block;
	color: #096532;
	font-size: 24px;
	letter-spacing: 0;
}
.top-content.c02 .bottom {
	padding: 40px 60px;
}
.top-content.c02 .box:nth-of-type(even){
	background: #F7F7F7;
}
.top-content.c02 .box:nth-of-type(odd) .bottom {
	background: #F7F7F7;
}
.top-content.c02 .box:nth-of-type(even) .bottom {
	background: #fff;
}
.top-content.c02 .bottom h4{
	margin-bottom: 25px;
	font-size: 30px;
	letter-spacing: 0;
	text-align: center;
}
.top-content.c02 .bottom .inr{ 
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px 50px;
}
.top-content.c02 .bottom .item{
	width: 240px;
}
.top-content.c02 .bottom .item img{
	width: 100%;
}
.top-content.c02 .bottom dt{
	margin-bottom: 3px;
	color: #096532;
	font-weight: bold;
	font-size: 24px;
	letter-spacing: 0;
}
.top-content.c02 .bottom li{
	position: relative;
	padding-left: 15px;
}
.top-content.c02 .bottom li:before{
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}
.top-content.c03 {
	padding-bottom: clamp(70px, calc(1.429px + 8.929vw), 130px);
	background: url(../img/top-c03-bg.webp) no-repeat center bottom;
	background-size: 100% auto;
}
.top-content.c03 h2{
	margin-bottom: 55px;
	text-align: center;
}
.top-content.c03 .slider-wrap{
	padding: 0 clamp(45px, calc(-6.429px + 6.696vw), 90px);
}
.top-content.c03 .box{
	display: flex!important;
	gap: 20px 5px;
	background: #F7F7F7;
}
.top-content.c03 .image{
	width: clamp(400px, calc(3.226px + 48.387vw), 700px);
}
.top-content.c03 .text{
	flex: 1;
	padding: clamp(30px, calc(-10px + 5.208vw), 65px) 20px;
}
.top-content.c03 .tag{
	margin-bottom: 12px;
}
.top-content.c03 .tag span{
	display: inline-block;
	padding: 0 10px;
	height: 28px;
	color: #096532;
	font-weight: bold;
	line-height: 26px;
	background: #fff;
	border: #7db797 1px solid;
}
.top-content.c03 dt{
	margin-bottom: 10px;
	font-size: 32px;
	font-weight: bold;
}
.top-content.c03 .address{
	margin-bottom: clamp(40px, calc(-5.714px + 5.952vw), 80px);
	padding-left: 20px;
	color: #7D7D7D;
	background: url(../img/icon-pin.svg) no-repeat 0 center;
}
.top-content.c03 .address span{
	display: inline-block;
	margin-right: 30px;
	color: #222;
}
.top-content.c03 .area{
	display: inline-block;
	margin-bottom: 15px;
	border-bottom: #222 1px solid;
}
.top-content.c03 .area span{
	display: inline-block;
	margin-right: 30px;
}
.top-content.c03 .slick-arrow {
    top: 50%;
	left: -80px;
    width: 58px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: #fff url(../img/arrow03.svg) no-repeat center;
	border: #096532 2px solid;
	border-radius: 100%;
	z-index: 1;
}
.top-content.c03 .slick-next {
	left: auto;
	right: -80px;
	background: #fff url(../img/arrow04.svg) no-repeat center;
}
.top-content.c03 .slick-arrow:before {
	display: none;
}
.top-content.c03 .slick-list{
	padding-bottom: 50px;
}
.top-content.c03 .slick-dots{
	bottom: 0;
}
.top-content.c03 .slick-dots button,
.top-content.c03 .slick-dots button:before{
	display: none;
}
.top-content.c03 .slick-dots li{
	content: '';
	margin: 0 5px;
	padding: 0;
	width: 10px;
	height: 10px;
	background: #fff;
	border: #bcbcbc 1px solid;
	border-radius: 100%;
	opacity: 1;
}
.top-content.c03 .slick-dots li.slick-active{
	background: #096532;
	border-color: #096532;
}
.top-content .slick-dotted.slick-slider{
	margin-bottom: 0;
}
.top-content.c04 {
	margin-bottom: clamp(80px, calc(-11.429px + 11.905vw), 160px);
}
.top-content.c04 .header-image{
	height: 780px;
}
.top-content.c04 .header-image img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top-content.c04 .header {
	position: relative;
	margin-top: -150px;
	margin-bottom: clamp(45px, calc(-6.429px + 6.696vw), 90px);
	padding: 65px 0;
	text-align: right;
	z-index: 2;
    /* transform: translateY(-54%); */
}
.top-content.c04 .header:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 61%;
	height: 100%;
	background: linear-gradient(90deg,rgba(42, 184, 86, 1) 0%, rgba(34, 136, 66, 1) 100%);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 3.4% 100%);
	z-index: -1;
}
.top-content.c04 h2{
	display: inline-block;
	color: #fff;
	text-align: left;
}
.top-content.c04 h2:after{
	color: #fff;
}
.top-content.c04 .upper {
	margin-bottom: clamp(55px, calc(-7.857px + 8.185vw), 110px);
}
.top-content.c04 .upper .upr{
	gap: 20px 0;
	margin-bottom: 35px;
}
.top-content.c04 .upper .text{
	flex: 1;
	padding-right: 20px;
	letter-spacing: 0;
}
.top-content.c04 .upper .image{
	width: 38%;
}
.top-content.c04 .upper h3{
	margin-bottom: 20px;
	color: #096532;
	font-weight: bold;
	font-size: 20px;
	letter-spacing: 0;
}
.top-content.c04 .upper p.s1{
	font-weight: bold;
	font-size: clamp(20px, calc(6.774px + 1.613vw), 30px);
}
.top-content.c04 .upper p.s1 b{
	display: block;
	margin-top: 5px;
	font-size: clamp(40px, calc(13.548px + 3.226vw), 60px);
}
.top-content.c04 .upper p.s1 span{
	display: inline-block;
	background: radial-gradient(
		circle at 28% 50%,
		rgba(48, 213, 92, 1) 0%,
		rgba(39, 73, 57, 1) 85%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.top-content.c04 .upper p.s2{
	margin-top: 35px;
	letter-spacing: 0;
}
.top-content.c04 .upper p.s2 b{
	display: inline-block;
	margin-left: 20px;
	font-size: 24px;
	font-weight: normal;
    transform: translateY(2px);
}
.top-content.c04 .bottom h3{
	margin-bottom: 30px;
	font-size: clamp(30px, calc(16.774px + 1.613vw), 40px);
	text-align: center;
}
.top-content.c04 .bottom{
    counter-reset: order;
}
.top-content.c04 .bottom .box{
	align-items: center;
	gap: 15px 40px;
	margin-bottom: 35px;
	padding: 0 clamp(30px, calc(-4.286px + 4.464vw), 60px);
	padding-bottom: 35px;
	border-bottom: #bcbcbc 1px solid;
}
.top-content.c04 .bottom .image{
	width: 32%;
}
.top-content.c04 .bottom .box:nth-of-type(even) .image{
	order: 2;
}
.top-content.c04 .bottom .text{
	flex: 1;
}
.top-content.c04 .bottom dt{
	position: relative;
	margin-bottom: 20px;
	font-size: clamp(30px, calc(16.774px + 1.613vw), 40px);
	font-weight: bold;
	letter-spacing: 0;
}
.top-content.c04 .bottom dt:before{
    counter-increment: order;
    content: counter(order, decimal-leading-zero) '.';
	display: inline-block;
	margin-right: 10px;
	color: #096532;
	font-size: 30px;
	font-family: 'Ozwald', sans-serif;
	font-weight: bold;
}
.top-content.c05 {
	position: relative;
	padding-bottom: clamp(150px, calc(75.714px + 9.673vw), 215px);
}
.top-content.c05:after,
.top-content.c05:before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(138deg,rgba(45, 173, 80, 1) 20%, rgba(51, 84, 68, 1) 100%);
	clip-path: polygon(0 240px, 100% 0%, 100% 100%, 0 100%);
	z-index: -1;
}
.top-content.c05:after {
  background-image:
    linear-gradient(rgba(125, 125, 125, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 125, 125, 0.4) 1px, transparent 1px);
  background-size: 30px 30px;
}
.top-content.c05 .header{
	gap: 20px;
	margin-bottom: 60px;
}
.top-content.c05 .header .text{
	flex: 1;
	padding-top: clamp(35px, calc(-5px + 5.208vw), 70px);
}
.top-content.c05 .header .image{
	width: 43.5%;
}
.top-content.c05 .header h2{
	margin-bottom: clamp(35px, calc(-5px + 5.208vw), 70px);
}
.top-content.c05 .header p{
	color: #fff;
	font-size: clamp(40px, calc(13.548px + 3.226vw), 60px);
	font-weight: bold;
	letter-spacing: 0;
}
.top-content.c05 .header span{
	color: #DEFC47;
}
.top-content.c05 .body .upr{
	margin: 0 auto;
	margin-bottom: 35px;
	max-width: 800px;
	color: #fff;
	font-size: 30px;
	letter-spacing: 0;
	text-align: center;
}
.top-content.c05 .body ul{
	margin-top: -5px;
	padding: 20px;
	padding-left: 8%;
	text-align: left;
	background: #fff;
	border: #222 1px solid;
}
.top-content.c05 .body li{
	position: relative;
	padding-left: 20px;
	color: #222;
	font-size: 20px;
	line-height: 1.8;
}
.top-content.c05 .body li:before{
	content: '・';
}
.top-content.c05 .mid{
	align-items: center;
	gap: 15px;
	margin: 0 auto;
	max-width: 800px;
	color: #fff;
}
.top-content.c05 .mid .link a{
	display: block;
	padding-left: 40px;
	width: 245px;
	height: 85px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 83px;
	letter-spacing: 0;
	background: #9FBF01 url(../img/arrow.svg) no-repeat right 22px center;
	background-size: 9px auto;
	border: #9FBF01 1px solid;
}
.top-content.c05 .mid .link a:hover{
	color: #9FBF01;
	background: #fff url(../img/arrow08.svg) no-repeat right 18px center;
	background-size: 9px auto;
}
.top-content.c06{
	margin-bottom: 60px;
}
.top-content.c06 .slider{
	margin-top: -100px;
	margin-bottom: clamp(35px, calc(-5px + 5.208vw), 70px);
	width: 370px;
	/* .wrap.wide(中央寄せ・max1265px)の左余白で左端が途切れるのを防ぐため、
	   スライダーの左端を常にビューポート左端に合わせる（左フルブリード）。
	   slick-list は overflow:visible なので右方向へスライドが続く。 */
	margin-left: calc(50% - 50vw);
}
.top-content.c06 .slider span{
	margin-left: -30px;
	width: 370px;
	filter: drop-shadow(0px 4px 30px rgba(165, 197, 182, 0.27));
}
.top-content.c06 .slider img{
	width: 100%;
	aspect-ratio: 400 / 245;
	object-fit: cover;
	clip-path: polygon(13.5% 0%, 100% 0%, 86.5% 100%, 0% 100%);
}
.top-content.c06 .slick-list{
	overflow: visible;
}
.top-content.c06 h2{
	margin-bottom: 45px;
	padding-top: clamp(35px, calc(-5px + 5.208vw), 70px);
	text-align: center;
}
.top-content.c06 .flex{
	align-items: center;
	gap: 0 clamp(50px, calc(-7.143px + 7.44vw), 100px);
}
.top-content.c06 .image{
	width: 37.4%;
}
.top-content.c06 .text{
	flex: 1;
}
.top-content.c06 dl{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: #d9d9d9 1px solid;
}
.top-content.c06 dt{
	padding: 15px 0;
	padding-right: 10px;
	width: clamp(115px, calc(75.106px + 7.979vw), 190px);
	color: #096532;
	font-weight: bold;
	line-height: 1.6;
}
.top-content.c06 dd{
	flex: 1;
	padding: 15px 0;
	line-height: 1.6;
}
.top-content.c07 {
	margin-bottom: clamp(60px, calc(14.286px + 5.952vw), 100px);
}
.top-content.c07 .wrap{
	position: relative;
	padding-top: 30px;
	padding-bottom: 45px;
}
.top-content.c07 .wrap:before{
	content: '';
	position: absolute;
	top: 0;
	left: -60px;
	width: calc(100% + 120px);
	height: 100%;
	background: #F7F7F7;
	z-index: -1;
}
.top-content.c07 .flex{
	align-items: center;
	gap: 0 9.3%;
}
.top-content.c07 .header {
	letter-spacing: 0;
}
.top-content.c07 .body{
	flex: 1;
}
.top-content.c07 h2{
	margin-bottom: 30px;
	font-size: 14px;
	letter-spacing: 0;
}
.top-content.c07 h2:after{
	font-size: 46px;
}
.top-content.c07 .link a{
	display: block;
	padding-left: 20px;
	width: 200px;
	height: 54px;
	color: #096532;
	font-weight: bold;
	line-height: 52px;
	background: #fff url(../img/arrow05.svg) no-repeat right 10px center;
	background-size: 7px auto;
	border: #096532 1px solid;
}
.top-content.c07 .link a:hover{
	color: #fff;
	background: #096532 url(../img/arrow.svg) no-repeat right 6px center;
	background-size: 7px auto;
}
.top-content.c07 li{
	border-bottom: #d9d9d9 1px solid;
}
.top-content.c07 li a{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px 6.5%;
	padding-top: 40px;
	padding-bottom: 20px;
	color: #222222;
	font-size: 16px;
}
.top-content.c07 .date{
	letter-spacing: 0.04em;
}
.top-content.c08 {
	padding-top: clamp(35px, calc(-5px + 5.208vw), 70px);
	padding-bottom: clamp(50px, calc(-7.143px + 7.44vw), 100px);
	background: url(../img/top-c08-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c08 .wrap-inr{
	padding-top: clamp(30px, calc(-4.286px + 4.464vw), 60px);
	padding-bottom: clamp(50px, calc(-1.429px + 6.696vw), 95px);
	background: rgba(255, 255, 255, 0.8);
}
.top-content.c08 h2{
	margin-bottom: 40px;
	text-align: center;
}
.top-content.c08 .flex{
	justify-content: center;
	align-items: center;
	gap: 20px 4.5%;
	padding: 0 15px;
}
.top-content.c08 .tel{
	text-align: center;
}
.top-content.c08 .tel a{
	display: inline-block;
	padding-left: 40px;
	color: #096532;
	font-weight: bold;
	font-size: 40px;
	letter-spacing: 0.04em;
	background: url(../img/icon-phone.svg) no-repeat 0 center;
	background-size: 32px auto;
}
.top-content.c08 .tel span{
	letter-spacing: 0;
}
.top-content.c08 .form a{
	display: block;
	position: relative;
	padding-left: 80px;
	width: 409px;
	height: 88px;
	color: #fff;
	font-size: 20px;
	line-height: 86px;
	letter-spacing: 0.04em;
	background: #096532;
	border: #096532 1px solid;
}
.top-content.c08 .form a:hover{
	color: #096532;
	background: #fff;
	background-size: 30px auto;
}
.top-content.c08 .form a:after,
.top-content.c08 .form a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 40px;
	width: 30px;
	height: 100%;
	background: url(../img/icon-mail.svg) no-repeat center;
	background-size: 30px auto;
}
.top-content.c08 .form a:after{
	left: auto;
	right: 35px;
	width: 10px;
	background: url(../img/arrow.svg) no-repeat center;
	background-size: 10px auto;
    transition: all .3s;
}
.top-content.c08 .form a:hover:before{
	background: url(../img/icon-mail02.svg) no-repeat center;
	background-size: 30px auto;
}
.top-content.c08 .form a:hover:after{
	right: 31px;
	background: url(../img/arrow05.svg) no-repeat center;
	background-size: 10px auto;
}

@media screen and (max-width:1440px) {
	.top-content.c02 .header:before{
		width: calc(100% - 135px);
	}
	.top-content.c03 {
		background-size: 1440px auto;
	}
	.top-content.c04 .header-image{
		height: auto;
	}
	.top-content.c04 .header-image img{
		height: auto;
	}
	.top-content.c05:after,
	.top-content.c05:before {
		clip-path: polygon(0 15.5vw, 100% 0%, 100% 100%, 0 100%);
	}
}

@media screen and (max-width:820px) {
	.top-mv {
		margin-bottom: 130px;
	}
	.top-mv .text{
		margin-bottom: 84px;
	}
	.top-mv .recruit{
		bottom: -45px;
	}
	.top-content.c01 .header {
		padding-right: 0;
		width: 100%;
		font-size: 56px;
	}
	.top-content.c02 .bottom {
		padding: 20px 15px;
	}
	.top-content.c02 .bottom .inr{ 
		gap: 20px 15px;
	}
	.top-content.c02 .bottom .item{
		width: calc((100% - 15px) / 2);
	}
	.top-content.c03 .box{
		gap: 0;
	}
	.top-content.c03 .image{
		width: 100%;
	}
	.top-content.c03 .text{
		padding: 20px 15px;
	}
}

@media screen and (max-width:767px) {
	.top-mv {
		padding-top: 70px;
    	background: url(../img/top-mv-bg-sp.webp) no-repeat center 90px;
		background-size: 100% auto;
	}
	.top-mv .text p.s1{
		font-size: 65px;
		line-height: 1.15;
		margin-bottom: 15px;
		background: radial-gradient(
			circle at 15% 75%,
			rgba(48, 213, 92, 1) 0%,
			rgba(39, 73, 57, 1) 40%
		);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
	}
	.top-mv .text p.s1 i{
		font-size: 54px;
	}
	.top-mv .text p.s1 span{
		font-size: 75px;
	}
	.top-mv .text p.s2{
		padding: 10px;
		padding-left: 15px;
		font-size: 16px;
	}
	.top-mv .slider{
		transform: scaleX(-1) rotate(12deg);
	}
	.top-mv .slider span{
		margin: 0 -13px;
	}
	.top-mv .recruit a{
		padding-top: 0;
		padding-left: 55px;
		width: 345px;
		height: 68px;
		aspect-ratio: 345 / 68;
		font-size: 18px;
		line-height: 68px;
		border-radius: 7.5px;
	}
	.top-mv .recruit a:before{
		left: 12px;
		width: 31px;
		height: 31px;
		background: #fff url(../img/arrow02.svg) no-repeat center;
		background-size: 7px auto;
	}
	.top-mv .recruit a:after{
		right: -5px;
		width: 100px;
	}
	.top-mv .recruit span{
		top: -12px;
		left: 80px;
		padding: 0 15px;
		height: 23px;
		font-size: 14px;
		line-height: 21px;
	}
	.top-mv .recruit span:before{
		content: '';
		position: absolute;
		left: 50%;
		bottom: 1px;
		width: 20px;
		aspect-ratio: 42 / 15;
		background: #DAEE79;
		transform: translateX(-50%) translateY(100%);
		clip-path: polygon(50% 100%, 0 0, 100% 0);
	}
	.top-content h2[data-en] {
		font-size: 16px;
	}
	.top-content h2[data-en]:after {
		margin-top: 8px;
		font-size: 68px;
		white-space: pre-line;
	}
	.top-content.c02 .header{
		margin-bottom: 55px;
	}
	.top-content.c02 .header:before{
		width: calc(100% - 15px);
		height: calc(100% - 120px);
		background: linear-gradient(90deg,rgba(30, 113, 56, 1) 0%, rgba(42, 184, 87, 1) 80%);
		clip-path: polygon(0 0, 100% 0%, 90% 100%, 0 100%);
	}
	.top-content.c02 .header .flex{
		margin-right: 0;
	}
	.top-content.c02 .header .text{
		padding: 25px 20px;
		padding-left: 0;
		width: 100%;
	}
	.top-content.c02 .header .image{
		flex: none;
		margin-top: 0;
		margin-right: -15px;
		width: calc(100% + 15px);
	}
	.top-content.c02 .header .image img{
		position: static;
		aspect-ratio: auto;
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 5% 100%);
	}
	.top-content.c02 nav{
		gap: 10px;
		margin-bottom: 20px;
		padding: 0;
	}
	.top-content.c02 nav a{
		padding-top: 35px;
		height: 80px;
		font-size: 16px;
		line-height: 1;
	}
	.top-content.c02 nav span{
		padding: 0;
		padding-bottom: 17px;
		background: url(../img/arrow06.svg) no-repeat center bottom;
		background-size: 13px auto;
	}
	.top-content.c02 nav a:hover span{
		background: url(../img/arrow10.svg) no-repeat center bottom;
	}
	.top-content.c02 nav span:before{
		top: -23px;
		left: 50%;
		font-size: 18px;
		transform: translateY(0) translateX(-50%);
	}
	.top-content.c02 .box{
		padding: 40px 0;
	}
	.top-content.c02 .box:not(:last-child){
		margin-bottom: 0;
	}
	.top-content.c02 .upper{
		gap: 40px clamp(30px, calc(-10px + 5.208vw), 65px);
		margin-bottom: 40px;
		letter-spacing: 0;
	}
	.top-content.c02 .upper .image{
		margin: 0 -15px;
		width: calc(100% + 30px);
	}
	.top-content.c02 .upper .text{
		flex: 1;
	}
	.top-content.c02 .upper h3{
		margin-bottom: 15px;
		padding-bottom: 10px;
		font-size: 38px;
	}
	.top-content.c02 .upper h3:before{
		margin-bottom: 5px;
		font-size: 40px;
	}
	.top-content.c02 .upper strong{
		font-size: 26px;
	}
	.top-content.c02 .bottom h4{
		font-size: 24px;
	}
	.top-content.c02 .bottom dt{
		font-size: 20px;
	}
	.top-content.c03 h2{
		margin-bottom: 30px;
	}
	.top-content.c03 .slider-wrap{
		padding: 0 30px
	}
	.top-content.c03 .tag{
		margin-bottom: 5px;
	}
	.top-content.c03 dt{
		margin-bottom: 10px;
		font-size: 24px;
	}
	.top-content.c03 .address{
		margin-bottom: 20px;
	}
	.top-content.c03 .slick-list{
		padding-bottom: 15px;
	}
	.top-content.c03 .slick-arrow {
		top: 40%;
		left: -70px;
		background: #fff url(../img/arrow03.svg) no-repeat 27px center;
	}
	.top-content.c03 .slick-next {
		left: auto;
		right: -70px;
		background: #fff url(../img/arrow04.svg) no-repeat right 27px center;
	}
	.top-content.c04 .header {
		padding: 40px 0 20px 20px;
		text-align: center;
	}
	.top-content.c04 .header:before{
		width: calc(100% - 15px);
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 25px 100%);
	}
	.top-content.c04 h2:after{
		line-height: 1.2;
	}
	.top-content.c04 .upper .upr{
		margin-bottom: 15px;
	}
	.top-content.c04 .upper .text{
		padding-right: 0;
	}
	.top-content.c04 .upper .image{
		margin: 0 -15px;
		width: calc(100% + 30px);
	}
	.top-content.c04 .upper h3{
		margin-bottom: 5px;
		font-size: 16px;
	}
	.top-content.c04 .upper p.s2{
		margin-top: 15px;
	}
	.top-content.c04 .upper p.s2 b{
		margin-left: 15px;
		font-size: 20px;
	}
	.top-content.c04 .bottom h3{
		font-size: 26px;
	}
	.top-content.c04 .bottom .box{
		margin: 0 15px 30px;
		padding: 0;
		padding-bottom: 30px;
	}
	.top-content.c04 .bottom .image{
		padding: 0 5px;
		width: 100%;
	}
	.top-content.c04 .bottom .box:nth-of-type(even) .image{
		order: 0;
	}
	.top-content.c04 .bottom dt{
		margin-bottom: 8px;
		font-size: 20px;
	}
	.top-content.c04 .bottom dt:before{
		margin-right: 5px;
		font-size: 20px;
	}
	.top-content.c05:after,
	.top-content.c05:before {
		clip-path: polygon(0 60.5vw, 100% 0%, 100% 100%, 0 100%);
		z-index: -1;
	}
	.top-content.c05 .header{
		position: relative;
		margin-bottom: 40px;
		padding-top: 180px;
	}
	.top-content.c05 .header .text{
		order: 2;
		padding: 0;
	}
	.top-content.c05 .header .image{
		width: 100%;
	}
	.top-content.c05 .header h2{
		position: absolute;
		top: 60px;
		left: 0;
	}
	.top-content.c05 .body .upr{
		margin-bottom: 20px;
		font-size: 18px;
		text-align: left;
	}
	.top-content.c05 .body ul{
		margin-top: -10px;
		padding: 15px;
	}
	.top-content.c05 .body li{
		padding-left: 0;
		font-size: 15px;
	}
	.top-content.c05 .mid .link a{
		display: block;
		margin: 0 auto;
		padding-left: 85px;
		width: 345px;
		height: 60px;
		line-height: 58px;
		background: #9FBF01 url(../img/arrow.svg) no-repeat right 32px center;
		background-size: 9px auto;
	}
	.top-content.c06 .slider{
		margin-top: -110px;
		margin-bottom: 60px;
	}
	.top-content.c06 h2{
		margin: 0 -10px;
		margin-bottom: 25px;
	}
	.top-content.c06 .image{
		width: 100%;
	}
	.top-content.c07 .wrap{
		padding: 45px 30px;
	}
	.top-content.c07 .wrap:before{
		left: 15px;
		width: calc(100% - 30px);
	}
	.top-content.c07 .header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
		width: 100%;
	}
	.top-content.c07 h2{
		margin-bottom: 10px;
		font-size: 14px;
		line-height: 1;
	}
	.top-content.c07 h2:after{
		margin-top: 0;
		font-size: 46px;
	}
	.top-content.c07 .link a{
		padding-left: 10px;
		width: 170px;
		height: 46px;
		line-height: 44px;
		background-position: right 8px center;
	}
	.top-content.c07 li a{
		padding-top: 25px;
		padding-bottom: 10px;
	}
	.top-content.c07 .date{
		display: block;
		width: 100%;
		font-size: 15px;
	}
	.top-content.c08 {
		padding: 60px 0;
	}
	.top-content.c08 .wrap-inr{
		padding: 40px 15px;
	}
	.top-content.c08 h2{
		margin-bottom: 25px;
	}
	.top-content.c08 h2:after{
		margin: 0 -10px;
	}
	.top-content.c08 .form a{
		margin: 0 auto;
		padding-left: 50px;
		width: 315px;
		height: 57px;
		font-size: 18px;
		letter-spacing: 0;
		line-height: 55px;
	}
	.top-content.c08 .form a:before{
		left: 25px;
		width: 20px;
		background: url(../img/icon-mail.svg) no-repeat center;
		background-size: 20px auto;
	}
	.top-content.c08 .form a:after{
		right: 22px;
	}
}

/* フッター */
#footer {
	font-size: 14px;
	letter-spacing: 0;
}
#footer .flex{
	padding: 40px;
	padding-top: 50px;
}
#footer .company{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px 40px;
}
#footer .nav a{
	color: #222;
	line-height: 2;
	transition: opacity .3s;
}
#footer .nav a:hover{
	color: #222;
	opacity: 0.8;
}
#footer .logo{
	margin-bottom: 10px;
}
#footer .logo img{
	margin: 0 12px;
	width: 70px;
}
#footer .logo span{
	display: inline-block;
    transform: translateY(-7px);
}
#footer .address{
	line-height: 1.55;
}
#footer .copyright{
	height: 47px;
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	line-height: 47px;
	text-align: center;
	letter-spacing: 0.02em;
	background: #096532;
}
#footer .map iframe{
	display: block;
}

@media screen and (max-width:990px) {
	#footer .nav {
		display: none;
	}
	#footer .company{
		justify-content: space-between;
		width: 100%;
	}
}

@media screen and (max-width:767px) {
	#footer .flex{
		padding: 10px 15px 25px;
	}
	#footer .map,
	#footer .info{
		width: 100%;
	}
	#footer .copyright{
		font-size: 12px;
	}
}

/* 採用情報 */
.recruit .design01 {
	position: relative;
	padding: 20px clamp(20px, calc(-8.571px + 3.72vw), 45px);
	padding-top: 35px;
	text-align: center;
	background: #F1F5DC;
	border-radius: 20px;
}
.recruit .design01:before{
	content: '';
	position: absolute;
	top: 0;
	right: 80px;
	width: 146px;
	aspect-ratio: 146 / 117;
	background: url(../img/btn-img.png) no-repeat center;
	background-size: 100% auto;
    transform: translateY(-100%);
}
.recruit .design01 p.s1{
	position: absolute;
	top: -40px;
	left: 50%;
	padding: 0 50px;
	padding-top: 5px;
	width: 333px;
	aspect-ratio: 333 / 56;
	font-size: 23px;
	font-weight: bold;
	color: #1b9341;
    transform: translateX(-50%);
	background: url(../img/recruit/fukidashi.png) no-repeat center;
	background-size: 100% auto;
}
.recruit .design01 .flex{
	justify-content: center;
	gap: 30px 25px;
}
.recruit .design01 a{
	position: relative;
	display: block;
	margin-bottom: 5px;
	padding: 0 23px;
	padding-right: 53px;
	color: #fff;
	height: 70px;
	line-height: 66px;
	background: #EF9205;
	border: #ef9205 2px solid;
	border-radius: 35px;
}
.recruit .design01 .b1 a:hover{
	color: #EF9205;
	background: #fff;
	opacity: 1;
}
.recruit .design01 .b2 a{
	padding: 0 13px;
	padding-right: 53px;
	background: #1b9341;
	border-color: #1b9341;
}
.recruit .design01 .b2 a:hover{
	color: #1b9341;
	background: #fff;
	opacity: 1;
}
.recruit .design01 a:before{
	content: '';
	position: absolute;
	top: 50%;
	right: 22px;
	width: 23px;
	aspect-ratio: 1 / 1;
	background: #fff url(../img/arrow07.svg) no-repeat center;
	background-size: 7px auto;
	border-radius: 100%;
    transform: translateY(-50%);
    transition: all .3s;
}
.recruit .design01 .b2 a:before{
	background: #fff url(../img/arrow12.svg) no-repeat center;
}
.recruit .design01 a:hover:before{
	right: 18px;
	background: #EF9205 url(../img/arrow11.svg) no-repeat center;
	background-size: 7px auto;
}
.recruit .design01 .b2 a:hover:before{
	right: 18px;
	background: #1b9341 url(../img/arrow11.svg) no-repeat center;
	background-size: 7px auto;
}
.recruit .design01 i{
	position: absolute;
	top: 0;
	left: 50%;
	padding: 0 10px;
	color: #222;
	font-weight: bold;
	line-height: 22px;
	background: #fff;
	border: #ef9205 1px solid;
	white-space: nowrap;
    transform: translateY(-50%) translateX(-50%);
}
.recruit .design01 .b2 i{
	border-color: #1b9341;
}
.recruit .design01 i small{
	font-size: 14px;
}
.recruit .design01 span{
	font-size: 15px;
}
.recruit .wrap.wide{
	max-width: 1205px;
}
.recruit .sub-content .header{
	margin-bottom: 50px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1.8;
	text-align: center;
}
.recruit .sub-content h2{
	position: relative;
	margin-bottom: 35px;
	padding-bottom: 12px;
	font-size: clamp(40px, calc(28.571px + 1.488vw), 50px);
	line-height: 1.6;
}
.recruit .sub-content h2:after,
.recruit .sub-content h2:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 39px;
	height: 6px;
	background: #1B9341;
}
.recruit .sub-content h2:after{
	left: auto;
	right: 50%;
	background: #D0EA52;
}
.recruit .sub-content .s1 h2:before{
	background: #fff;
}
.recruit .sub-content .header b{
	margin-bottom: 10px;
	color: #1B9341;
	font-size: 20px;
}
.recruit .sub-content .header.s1,
.recruit .sub-content .header.s1 h2,
.recruit .sub-content .header.s1 b{
	color: #fff;
}
.recruit .sub-content .header p:has(b){
	margin-bottom: 0;
}
.recruit .content-wrap {
	background-image:
		linear-gradient(#F0F0F0 1px, transparent 1px),
		linear-gradient(90deg, #F0F0F0 1px, transparent 1px);
	background-size: 30px 30px;
}
.recruit .sub-content.c01 {
	position: relative;
	margin-bottom: clamp(0px, calc(429.677px - 29.839vw), 185px);
	padding-top: clamp(50px, calc(-47.143px + 12.649vw), 135px);
	aspect-ratio: 1440 / 765;
	text-align: center;
	background: url(../img/recruit/recruit-c01-bg.png) no-repeat center;
	background-size: cover;
	z-index: 2;
}
.recruit .sub-content.c01 .text{
	margin-bottom: 35px;
	color: #fff;
	font-size: clamp(20px, calc(8.571px + 1.488vw), 30px);
	letter-spacing: 0;
}
.recruit .sub-content.c01 .text p.s1{
	font-size: clamp(40px, calc(17.143px + 2.976vw), 60px);
} 
.recruit .sub-content.c01 .text p.s1 span{
	color: #DEFC47;
}
.recruit .sub-content.c01 .scroll{
	position: relative;
	padding-bottom: 35px;
	color: #fff;
	font-size: 12px;
}
.recruit .sub-content.c01 .scroll:after,
.recruit .sub-content.c01 .scroll:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 1px;
	height: 30px;
	background: #fff;
    transform: translateX(-50%);
}
.recruit .sub-content.c01 .scroll:after{
	width: 7px;
	height: 7px;
	border-radius: 100%;
}
.recruit .sub-content.c01 .design01{
	position: absolute;
	right: 25px;
	bottom: clamp(-185px, calc(-436.29px + 30.645vw), 5px);
}
.recruit .sub-content.c02 {
	padding-top: clamp(50px, calc(-7.143px + 7.44vw), 100px);
	padding-bottom: clamp(100px, calc(-14.286px + 14.881vw), 200px);
	text-align: center;
	letter-spacing: 0;
	font-weight: bold;
	font-size: 20px;
	line-height: 2;
}
.recruit .sub-content.c02 .wrap{
	position: relative;
}
.recruit .sub-content.c02 .wrap-inr:after,
.recruit .sub-content.c02 .wrap-inr:before,
.recruit .sub-content.c02 .wrap:after,
.recruit .sub-content.c02 .wrap:before{
	content: '';
	position: absolute;
	top: -25px;
	left: -90px;
	width: 60px;
	aspect-ratio: 60 / 53;
	background: url(../img/deco.svg) no-repeat center;
}
.recruit .sub-content.c02 .wrap:after{
	top: auto;
	left: -70px;
	bottom: 55px;
	width: 61px;
	aspect-ratio: 61 / 53;
	background: url(../img/deco02.svg) no-repeat center;
}
.recruit .sub-content.c02 .wrap-inr:before{
	top: -35px;
	left: auto;
	right: -95px;
	width: 96px;
	aspect-ratio: 96 / 84;
	background: url(../img/deco03.svg) no-repeat center;
}
.recruit .sub-content.c02 .wrap-inr:after{
	top: auto;
	left: auto;
	right: -95px;
	bottom: -12px;
	width: 62px;
	aspect-ratio: 62 / 54;
	background: url(../img/deco04.svg) no-repeat center;
}
.recruit .sub-content.c02 p:not(:last-child){
	margin-bottom: 25px;
}
.recruit .sub-content.c02 strong{
	display: block;
	position: relative;
	font-size: clamp(40px, calc(17.143px + 2.976vw), 60px);
	line-height: 1.8;
	letter-spacing: 0;
}
.recruit .sub-content.c02 strong:after,
.recruit .sub-content.c02 strong:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 39px;
	height: 6px;
	background: #1B9341;
}
.recruit .sub-content.c02 strong:after{
	left: auto;
	right: 50%;
	background: #D0EA52;
}
.recruit .sub-content.c02 p.s1{
	display: inline-block;
	padding: 10px 30px;
	color: #1B9341;
	background: #F1F5DC;
}
.recruit .sub-content.c03 {
	position: relative;
	margin: -70px 25px;
	margin-bottom: clamp(60px, calc(-8.571px + 8.929vw), 120px);
	padding-top: clamp(50px, calc(-7.143px + 7.44vw), 100px);
	padding-bottom: clamp(50px, calc(4.286px + 5.952vw), 90px);
	letter-spacing: 0;
	background: #1B9341;
	border-radius: 5px;
	clip-path: polygon(50% 35px, calc(50% + 135px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 135px) 0);
}
.recruit .sub-content.c03 .header{
	margin-bottom: 65px;
}
.recruit .sub-content.c03 .upper {
	margin-bottom: 60px;
	padding: 40px 0 50px clamp(15px, calc(-36.429px + 6.696vw), 60px);
	background: #fff;
	border-radius: 10px;
}
.recruit .sub-content.c03 .upper .flex{
	gap: 30px 20px;
	align-items: center;
	margin-right: -30px;
}
.recruit .sub-content.c03 .upper .text{
	flex: 1;
}
.recruit .sub-content.c03 .upper .image{
	width: 42%;
}
.recruit .sub-content.c03 .upper dt{
	position: relative;
	margin-bottom: 35px;
	padding-top: 20px;
}
.recruit .sub-content.c03 .upper dt span{
	padding-bottom: 5px;
	font-size: clamp(26px, calc(19.143px + 0.893vw), 32px);
	font-weight: bold;
	border-bottom: #1b9341 2px solid;
}
.recruit .sub-content.c03 .upper dt i{
	position: absolute;
	top: -65px;
	left: -42px;
	width: 213px;
	height: 61px;
	color: #1B9341;
	font-size: clamp(20px, calc(13.143px + 0.893vw), 26px);
	font-weight: bold;
	line-height: 61px;
	text-align: center;
	background: #F1F5DC;
	border-radius: 10px;
    transform: rotate(-3.3deg);
}
.recruit .sub-content.c03 .upper dt i:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 1px;
	width: 27px;
	height: 16px;
	background: #F1F5DC;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateY(100%) translateX(-50%);
}
.recruit .sub-content.c03 .upper dt b{
	color: #1B9341;
}
.recruit .sub-content.c03 .upper dd{
    counter-reset: order;
	font-size: 20px;
	font-weight: bold;
}
.recruit .sub-content.c03 .upper li{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	background: #F1F5DC;
	border-radius: 10px;
	overflow: hidden;
}
.recruit .sub-content.c03 .upper dd li:not(:last-child){
	margin-bottom: 10px;
}
.recruit .sub-content.c03 .upper .rank{
	padding-top: 3px;
	width: 108px;
	min-height: 63px;
	color: #fff;
	font-size: 32px;
	font-weight: normal;
	text-align: center;
	background: #1B9341;
}
.recruit .sub-content.c03 .upper li:first-child .rank{
	font-size: 36px;
	background: #1B9341 url(../img/deco05.svg) no-repeat center 8px;
}
.recruit .sub-content.c03 .upper .rank i{
	font-size: 24px;
}
.recruit .sub-content.c03 .upper .note{
	padding: 15px;
	font-size: 20px;
}
.recruit .sub-content.c03 .upper li:first-child .note{
	padding: 12px;
	font-size: 26px;
}
.recruit .sub-content.c03 .upper li b{
	color: #1B9341;
}
.recruit .sub-content.c03 .bottom {
	font-weight: bold;
	text-align: center;
}
.recruit .sub-content.c03 .bottom h3{
	margin-bottom: 50px;
	text-align: center;
}
.recruit .sub-content.c03 .bottom h3 span{
	padding-bottom: 5px;
	color: #fff;
	font-size: 32px;
	border-bottom: #fff 1px solid;
}
.recruit .sub-content.c03 .bottom .inr{
	display: flex;
	justify-content: center;
	gap: 17px;
	flex-wrap: wrap;
}
.recruit .sub-content.c03 .bottom dl{
	padding: 15px 12px;
	width: 380px;
	background: #fff;
	border-radius: 10px;
}
.recruit .sub-content.c03 .bottom dl.d2{
	background: url(../img/recruit/recruit-c03-02.webp) no-repeat center 0;
	background-size: cover;
}
.recruit .sub-content.c03 .bottom dt{
	font-size: 26px;
	font-weight: bold;
	background: #fff;
	border: #bcbcbc 3px solid;
	border-radius: 10px;
}
.recruit .sub-content.c03 .bottom dl.s1 dd{
	padding: 65px 0 30px;
	font-size: 26px;
	text-align: right;
}
.recruit .sub-content.c03 .bottom dl.d1 dd{
	padding-top: 15px;
}
.recruit .sub-content.c03 .bottom dl.d1 .flex{
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 25px;
}
.recruit .sub-content.c03 .bottom dl.d1 .flex:after,
.recruit .sub-content.c03 .bottom dl.d1 .flex:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 28px;
	width: 100%;
	background: #1B9341;
	border-radius: 5px;
}
.recruit .sub-content.c03 .bottom dl.d1 .flex:after{
	width: 15%;
	background: #DBEE7A;
	border-radius: 5px 0 0 5px ;
}
.recruit .sub-content.c03 .bottom dl.d1 .flex:last-child:after{
	width: 30%;
}
.recruit .sub-content.c03 .bottom dl.d1 span{
	font-size: 20px;
}
.recruit .sub-content.c03 .bottom dl.d1 b{
	color: #1B9341;
	font-size: 30px;
}
.recruit .sub-content.c03 .bottom dl.d1 i{
	font-size: 26px;
}
.recruit .sub-content.c03 .bottom dl.d2 dd{
	padding-top: 25px;
	font-size: 36px;
	line-height: 1.3;
	text-shadow: rgb(255, 255, 255) 5px 0px 0px, rgb(255, 255, 255) 4.90033px 0.993347px 0px, rgb(255, 255, 255) 4.60531px 1.94709px 0px, rgb(255, 255, 255) 4.12668px 2.82321px 0px, rgb(255, 255, 255) 3.48353px 3.58678px 0px, rgb(255, 255, 255) 2.70151px 4.20736px 0px, rgb(255, 255, 255) 1.81179px 4.6602px 0px, rgb(255, 255, 255) 0.849836px 4.92725px 0px, rgb(255, 255, 255) -0.145998px 4.99787px 0px, rgb(255, 255, 255) -1.13601px 4.86924px 0px, rgb(255, 255, 255) -2.08073px 4.54649px 0px, rgb(255, 255, 255) -2.94251px 4.04248px 0px, rgb(255, 255, 255) -3.68697px 3.37732px 0px, rgb(255, 255, 255) -4.28444px 2.57751px 0px, rgb(255, 255, 255) -4.71111px 1.67494px 0px, rgb(255, 255, 255) -4.94996px 0.7056px 0px, rgb(255, 255, 255) -4.99147px -0.291871px 0px, rgb(255, 255, 255) -4.83399px -1.27771px 0px, rgb(255, 255, 255) -4.48379px -2.2126px 0px, rgb(255, 255, 255) -3.95484px -3.05929px 0px, rgb(255, 255, 255) -3.26822px -3.78401px 0px, rgb(255, 255, 255) -2.4513px -4.35788px 0px, rgb(255, 255, 255) -1.53666px -4.75801px 0px, rgb(255, 255, 255) -0.560763px -4.96845px 0px, rgb(255, 255, 255) 0.437495px -4.98082px 0px, rgb(255, 255, 255) 1.41831px -4.79462px 0px, rgb(255, 255, 255) 2.34258px -4.41727px 0px, rgb(255, 255, 255) 3.17346px -3.86382px 0px, rgb(255, 255, 255) 3.87783px -3.15633px 0px, rgb(255, 255, 255) 4.4276px -2.32301px 0px, rgb(255, 255, 255) 4.80085px -1.39708px 0px, rgb(255, 255, 255) 4.98271px -0.415447px 0px;
}
.recruit .sub-content.c03 .bottom dl.d2 dd span{
	display: block;
	color: #1B9341;
	font-size: 48px;
}
.recruit .sub-content.c03 .bottom dl.s1 span{
	display: inline-block;
	position: relative;
}
.recruit .sub-content.c03 .bottom dl.s1 span:before{
	content: '';
	position: absolute;
	left: 0;
}
.recruit .sub-content.c03 .bottom dl.d3 span{
	padding-right: 40px;
	padding-left: 135px;
}
.recruit .sub-content.c03 .bottom dl.d3 span:before{
	top: -5px;
	width: 105px;
	aspect-ratio: 105 / 85;
	background: url(../img/icon-worker.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.recruit .sub-content.c03 .bottom dl.d4 span{
	padding-right: 0;
	padding-left: 115px;
}
.recruit .sub-content.c03 .bottom dl.d4 span:before{
	top: -5px;
	width: 92px;
	aspect-ratio: 92 / 80;
	background: url(../img/icon-vacation.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.recruit .sub-content.c03 .bottom dl.d5 span{
	padding-right: 10px;
	padding-left: 130px;
}
.recruit .sub-content.c03 .bottom dl.d5 span:before{
	top: -10px;
	width: 93px;
	aspect-ratio: 93 / 96;
	background: url(../img/icon-night.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.recruit .sub-content.c03 .bottom dl.d6 span{
	padding-right: 15px;
	padding-left: 135px;
}
.recruit .sub-content.c03 .bottom dl.d6 span:before{
	top: -20px;
	width: 112px;
	aspect-ratio: 1 / 1;
	background: url(../img/icon-banzai.svg) no-repeat center;
	background-size: 100% auto;
}
.recruit .sub-content.c03 .bottom dl.s1 b{
	color: #1B9341;
	font-size: 80px;
	line-height: 1;
}
.recruit .sub-content.c03 .bottom dl.s1 i{
	font-size: 67px;
	line-height: 1;
}
.recruit .sub-content.c04 {
	margin-bottom: clamp(110px, calc(30px + 10.417vw), 180px);
	letter-spacing: 0;
}
.recruit .sub-content.c04 .header{
	margin-bottom: 45px;
}
.recruit .sub-content.c04 .header a{
	display: inline-block;
	position: relative;
	color: #1B9341;
}
.recruit .sub-content.c04 .header a:before{
	content: '';
	position: absolute;
	left: 10%;
	bottom: 0px;
	width: 80%;
	height: 1px;
	background: #1B9341;
}
.recruit .sub-content.c04 .upper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: clamp(90px, calc(-12.857px + 13.393vw), 180px);
}
.recruit .sub-content.c04 .upper div{
	display: flex;
	align-items: flex-end;
	padding: 15px 20px;
	width: 47%;
	aspect-ratio: 496 / 280;
	background: url(../img/recruit/recruit-c04-01.webp) no-repeat center;
	background-size: cover;
}
.recruit .sub-content.c04 .upper div.d2{
	background: url(../img/recruit/recruit-c04-02.webp) no-repeat center;
	background-size: cover;
}
.recruit .sub-content.c04 .upper a{
	display: block;
	width: 100%;
	height: 59px;
	color: #fff;
	font-size: 26px;
	line-height: 57px;
	text-align: center;
	background: #1B9341;
	border: 1px solid #1B9341;
}
.recruit .sub-content.c04 .upper a:hover{
	color: #096532;
	background: #fff;
	opacity: 1;
}
.recruit .sub-content.c04 .upper span{
	display: inline-block;
	padding-right: 30px;
	background: url(../img/arrow06.svg) no-repeat right 28px;
    transition: all .3s;
}
.recruit .sub-content.c04 .upper a:hover span{
	background: url(../img/arrow10.svg) no-repeat right 32px;
}
.recruit .sub-content.c04 .box{
	position: relative;
}
.recruit .sub-content.c04 .box:not(:last-child){
	margin-bottom: clamp(65px, calc(25px + 5.208vw), 100px);
}
.recruit .sub-content.c04 .box .anchor{
	position: absolute;
	top: -70px;
}
.recruit .sub-content.c04 .upr {
	gap: 30px clamp(35px, calc(-5px + 5.208vw), 70px);
	margin-bottom: 40px;
}
.recruit .sub-content.c04 .upr .image{
	width: 43.5%;
}
.recruit .sub-content.c04 .upr .text{
	flex: 1;
	margin-top: -15px;
}
.recruit .sub-content.c04 .box:nth-of-type(even) .upr .image{
	order: 2;
}
.recruit .sub-content.c04 .upr h3{
	margin-bottom: 10px;
	font-size: 60px;
	font-weight: bold;
}
.recruit .sub-content.c04 .upr b{
	display: block;
	padding-bottom: 20px;
	color: #1B9341;
	font-size: 24px;
	font-weight: bold;
	border-bottom: #bcbcbc 1px solid;
}
.recruit .sub-content.c04 .upr dl{
	margin-bottom: 85px;
}
.recruit .sub-content.c04 .upr dt{
	margin-bottom: 10px;
	color: #1B9341;
	font-weight: bold;
}
.recruit .sub-content.c04 .detail{
	position: relative;
	padding: 20px;
	background: #F1F5DC;
	border-radius: 10px;
}
.recruit .sub-content.c04 .detail p.s1{
	position: absolute;
	top: -16px;
	left: 50%;
	width: 120px;
	height: 38px;
	color: #fff;
	font-weight: bold;
	line-height: 38px;
	text-align: center;
	background: #1B9341;
	border-radius: 10px;
    transform: translateY(-100%) translateX(-50%);
}
.recruit .sub-content.c04 .detail p.s1:after,
.recruit .sub-content.c04 .detail p.s1:before{
	content: '';
	position: absolute;
	top: -11px;
	right: -12px;
	width: 16px;
	aspect-ratio: 1 / 1;
	background: url(../img/deco07.svg) no-repeat center;
	background-size: cover;
}
.recruit .sub-content.c04 .detail p.s1:after{
	top: auto;
	right: 50%;
	bottom: 1px;
	width: 16px;
	aspect-ratio: 16 / 9;
	background: #1B9341;
    transform: translateY(100%) translateX(50%);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.recruit .sub-content.c04 .detail li:before{
	content: '・';
	display: inline-block;
}
.recruit .sub-content.c04 .btm {
	position: relative;
	padding: clamp(20px, calc(-2.857px + 2.976vw), 40px) 0;
}
.recruit .sub-content.c04 .btm:before {
	content: '';
	position: absolute;
	top: 0;
	left: calc(clamp(15px, -36.429px + 6.696vw, 60px) * -1);
	width: calc(100% + clamp(30px, calc(-72.857px + 13.393vw), 120px));
	height: 100%;
	background: #F7F7F7;
	z-index: -1;
}
.recruit .sub-content.c04 .btm .flex{
	gap: 35px 50px;
}
.recruit .sub-content.c04 .btm b{
	display: block;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}
.recruit .sub-content.c04 .btm dl{
	width: calc((100% - 50px) / 2);
}
.recruit .sub-content.c04 .btm dt{
	margin-bottom: 10px;
	padding-top: 5px;
	padding-left: 55px;
	min-height: 45px;
	color: #1B9341;
	font-size: 24px;
	font-weight: bold;
}
.recruit .sub-content.c04 .btm dd{
	letter-spacing: 0.02em;
}
.recruit .sub-content.c04 dl.d1 dt{
	background: url(../img/icon-partnership.svg) no-repeat 0 center;
}
.recruit .sub-content.c04 dl.d2 dt{
	background: url(../img/icon-schedule.svg) no-repeat 0 center;
}
.recruit .sub-content.c04 dl.d3 dt{
	background: url(../img/icon-computer.svg) no-repeat 0 center;
}
.recruit .sub-content.c04 dl.d4 dt{
	background: url(../img/icon-talk.svg) no-repeat 0 center;
}
.recruit .sub-content.c05 {
	margin-bottom: clamp(50px, calc(-7.143px + 7.44vw), 100px);
	letter-spacing: 0;
}
.recruit .sub-content.c05 .header{
	margin-bottom: 50px; 
}
.recruit .sub-content.c05 .box{
	gap: 50px clamp(45px, calc(-6.429px + 6.696vw), 90px);
	position: relative;
	margin-bottom: 20px;
	padding-left: 60px;
}
.recruit .sub-content.c05 .box:nth-of-type(even){
	padding: 60px 60px 25px 0;
}
.recruit .sub-content.c05 .box:nth-of-type(even):before{
	content: '';
	position: absolute;
	top: 0;
	left: calc(clamp(15px, calc(-82.143px + 12.649vw), 100px) * -1);
	width: calc(100% + clamp(30px, calc(-164.286px + 25.298vw), 200px));
	height: 100%;
	background: #F1F5DC;
	z-index: -1;
}
.recruit .sub-content.c05 .image{
	width: 27%;
}
.recruit .sub-content.c05 .box:nth-of-type(even) .image{
	order: 2;
}
.recruit .sub-content.c05 .text{
	flex: 1;
	padding-top: 25px;
}
.recruit .sub-content.c05 .image span,
.recruit .sub-content.c05 .image img{
	display: block;
	width: 100%;
}
.recruit .sub-content.c05 figcaption{
	margin-top: 8px;
	margin-bottom: 10px;
	color: #1B9341;
	letter-spacing: 0.02em;
	text-align: center;
}
.recruit .sub-content.c05 figcaption b{
	display: inline-block;
	margin-right: 10px;
	padding: 2px;
	padding-top: 0;
	color: #fff;
	font-weight: normal;
	background: #1B9341;
}
.recruit .sub-content.c05 .image span{
	display: inline-block;
	position: relative;
}
.recruit .sub-content.c05 .image span:after,
.recruit .sub-content.c05 .image span:before{
	content: '';
	position: absolute;
	top: -12px;
	left: -24px;
	width: 49px;
	height: 43px;
	background: url(../img/deco06.svg) no-repeat center;
	background-size: 100% auto;
}
.recruit .sub-content.c05 .image span:after{
	top: auto;
	left: auto;
	right: -20px;
	bottom: -17px;
}
.recruit .sub-content.c05 dl{
	margin-bottom: 45px;
}
.recruit .sub-content.c05 dt{
	position: relative;
	margin-bottom: 5px;
	padding-left: 10px;
	color: #1B9341;
	font-weight: bold;
	font-size: 20px;
}
.recruit .sub-content.c05 dt:before{
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	width: 4px;height: 23px;
	background: #1B9341;
}
.recruit .sub-content.c06 {
	margin: 0 25px;
	margin-bottom: clamp(60px, calc(-8.571px + 8.929vw), 120px);
	padding-top: clamp(50px, calc(-7.143px + 7.44vw), 100px);
	padding-bottom: clamp(50px, calc(4.286px + 5.952vw), 90px);
	letter-spacing: 0;
	background: #1B9341;
	border-radius: 5px;
	clip-path: polygon(50% 35px, calc(50% + 135px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 135px) 0);
}
.recruit .sub-content.c06 .header{
	margin-bottom: 65px;
}
.recruit .sub-content.c06 .upper {
	margin-bottom: clamp(135px, calc(15px + 15.625vw), 240px);
}
.recruit .sub-content.c06 .upper .box{
	padding: 45px clamp(15px, calc(-36.429px + 6.696vw), 60px);
	text-align: center;
	background: #fff;
	border-radius: 10px;
}
.recruit .sub-content.c06 .upper .box:not(:last-child){
	margin-bottom: 40px;
}
.recruit .sub-content.c06 .upper h3{
	margin-bottom: 50px;
}
.recruit .sub-content.c06 .upper h3 span{
	display: block;
	padding-bottom: 0;
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 0;
	border-bottom: #1b9341 2px solid;
}
.recruit .sub-content.c06 .upper .flex{
	gap: 20px clamp(25px, calc(-3.571px + 3.72vw), 50px);
}
.recruit .sub-content.c06 .upper .b1 .flex{
	align-items: center;
}
.recruit .sub-content.c06 .upper .flex:not(:last-child){
	margin-bottom: 40px;
}
.recruit .sub-content.c06 .upper .text{
	flex: 1;
}
.recruit .sub-content.c06 .upper .image{
	width: 32.5%;
}
.recruit .sub-content.c06 .upper .image img{
	display: block;
}
.recruit .sub-content.c06 .upper .b2 .flex:first-of-type .text{
	order: 2;
}
.recruit .sub-content.c06 .upper dl{
	text-align: left;
}
.recruit .sub-content.c06 .upper dl:not(:last-child){
	margin-bottom: 35px;
}
.recruit .sub-content.c06 .upper dt{
	margin-bottom: 15px;
	padding: 12px 15px;
	padding-left: 25px;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0;
	background: #1B9341;
	border-radius: 10px;
}
.recruit .sub-content.c06 .upper dt span{
	display: inline-block;
	margin-right: 20px;
	padding: 5px 15px;
	padding-left: 38px;
	min-width: 200px;
	color: #1B9341;
	font-size: 16px;
	background: #fff url(../img/icon-check.svg) no-repeat 15px center;
	border-radius: 10px;
    transform: translateY(-2px);
}
.recruit .sub-content.c06 .upper dd{
	padding-left: 20px;
	line-height: 1.8;
	letter-spacing: 0.04em;
}
.recruit .sub-content.c06 .upper li:before{
	content: '・';
	display: inline-block;
}
.recruit .sub-content.c06 .upper .note{
	padding: 10px;
	line-height: 1.8;
	text-align: left;
	letter-spacing: 0.04em;
	background: #F1F5DC;
}
.recruit .sub-content.c06 .upper .note.s1{
	padding: 25px;
	padding-left: clamp(70px, calc(-10px + 10.417vw), 140px);
	color: #1B9341;
	font-weight: bold;
	background: #F1F5DC url(../img/icon-idea.svg) no-repeat clamp(10px, calc(-70px + 10.417vw), 80px) center;
	background-size: 45px auto;
}
.recruit .sub-content.c06 .bottom {
	color: #fff;
	letter-spacing: 0;
	text-align: center;
}
.recruit .sub-content.c06 .bottom .title{
	position: relative;
	display: inline-block;
	margin-bottom: 55px;
	padding-bottom: 5px;
	font-size: 32px;
	font-weight: bold;
	border-bottom: #fff 1px solid;
}
.recruit .sub-content.c06 .bottom .title span{
	position: absolute;
	top: -67px;
	left: -71px;
	padding: 10px 15px;
	color: #1B9341;
	font-size: 18px;
	background: #F1F5DC;
	border-radius: 10px;
	transform: rotate(-5.4deg);
}
.recruit .sub-content.c06 .bottom .title span:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 1px;
	width: 28px;
	height: 16px;
	background: #F1F5DC;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateY(100%) translateX(-50%);

}
.recruit .sub-content.c06 .bottom .flex{
	gap: 70px clamp(30px, calc(-10px + 5.208vw), 65px);
}
.recruit .sub-content.c06 .bottom .image{
	width: 31%;
}
.recruit .sub-content.c06 .bottom .image img:not(:last-child){
	margin-bottom: clamp(30px, calc(-10px + 5.208vw), 65px);
}
.recruit .sub-content.c06 .bottom .flow{
	flex: 1;
	padding-right: clamp(35px, calc(-10.714px + 5.952vw), 75px);
	text-align: left;
}
.recruit .sub-content.c06 .bottom dl{
	display: flex;
	gap: 0 55px;
	position: relative;
	padding-bottom: clamp(30px, calc(1.429px + 3.72vw), 55px);
	line-height: 1.8;
}
.recruit .sub-content.c06 .bottom dl:has(.sub){
	padding-bottom: clamp(20px, calc(-2.857px + 2.976vw), 40px);
}
.recruit .sub-content.c06 .bottom dl:last-child{
	padding-bottom: 0!important;
}
.recruit .sub-content.c06 .bottom dl:before{
	content: '';
	position: absolute;
	top: 11px;
	left: 90px;
	width: 17px;
	aspect-ratio: 1 / 1;
	background: #9FBF01;
	border-radius: 100%;
    transform: translateX(100%);
}
.recruit .sub-content.c06 .bottom dl:not(:last-of-type):after{
	content: '';
	position: absolute;
	top: 15px;
	left: 114px;
	width: 3px;
	height: 100%;
	background: #9FBF01;
}
.recruit .sub-content.c06 .bottom dt{
	width: 90px;
	font-size: 30px;
	font-family: 'Lato', sans-serif;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}
.recruit .sub-content.c06 .bottom dd{
	flex: 1;
	font-size: 20px;
}
.recruit .sub-content.c06 .bottom .sub{
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 10px;
	padding: 20px 15px;
	padding-right: clamp(70px, calc(-10px + 10.417vw), 140px);
	min-height: 115px;
	color: #1B9341;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	background: #F1F5DC;
	border-radius: 10px;
}
.recruit .sub-content.c06 .bottom .sub img{
	position: absolute;
	top: -45px;
	right: -80px;
	width: clamp(110px, calc(45.714px + 12.857vw), 200px);
}
.recruit .sub-content.c06 .slider{
	height: 0;
	transform: scaleX(-1);
	opacity: 0;
}
.recruit .sub-content.c06 .slider img{
	margin-right: 15px;
	width: 230px!important;
	aspect-ratio: 230 / 166;
	object-fit: cover;
	transform: scaleX(-1);
}
.recruit .sub-content.c07 {
	margin-bottom: clamp(60px, calc(-8.571px + 8.929vw), 120px);
}
.recruit .sub-content.c07 .header{
	margin-bottom: 25px;
}
.recruit .sub-content.c07 .upper {
	margin: 0 auto;
	margin-bottom: 35px;
	max-width: 800px;
}
.recruit .sub-content.c07 .upper dl{
	display: flex;
	flex-wrap: wrap;
}
.recruit .sub-content.c07 .upper dt{
	padding: 15px 0;
	padding-right: 20px;
	width: 24%;
	color: #1B9341;
	font-weight: bold;
	border-bottom: #d9d9d9 1px solid;
}
.recruit .sub-content.c07 .upper dd{
	padding: 15px 0;
	width: 76%;
	border-bottom: #d9d9d9 1px solid;
}
.recruit .sub-content.c07 .upper dd span{
	font-size: 15px;
}
.recruit .sub-content.c07 .upper dt:last-of-type,
.recruit .sub-content.c07 .upper dd:last-of-type{
	border: none;
}
.recruit .sub-content.c07 .bottom {
	margin: 0 20px;
	padding: 35px 45px;
	background: #F1F5DC;
}
.recruit .sub-content.c07 .bottom b{
	display: block;
	margin-bottom: 40px;
	font-size: 30px;
	letter-spacing: 0;
	text-align: center;
}
.recruit .sub-content.c07 .bottom .flex{
	gap: 35px;
}
.recruit .sub-content.c07 .bottom dl{
	width: calc((100px - 35) / 2);
}
.recruit .sub-content.c07 .bottom dt{
	margin-bottom: 8px;
	padding-top: 5px;
	padding-left: 50px;
	min-height: 42px;
	color: #1B9341;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0;
}
.recruit .sub-content.c07 .bottom .d1 dt{
	background: url(../img/icon-benefits.svg) no-repeat 0 center;
}
.recruit .sub-content.c07 .bottom .d2 dt{
	background: url(../img/icon-vacation.svg) no-repeat 0 center;
	background-size: 46px auto;
}
.recruit .sub-content.c08 {
	position: relative;
	padding-top: clamp(50px, calc(10px + 5.208vw), 85px);
	padding-bottom: 60px;
	background: #1B9341;
}
.recruit .sub-content.c08:before{
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(#5DAB76 1px, transparent 1px),
		linear-gradient(90deg, #5DAB76 1px, transparent 1px);
	background-size: 30px 30px;
}
.recruit .sub-content.c08 .wrap{
    counter-reset: order;
	position: relative;
}
.recruit .sub-content.c08 .header{
	margin-bottom: 35px;
}
.recruit .sub-content.c08 .body{
	padding: clamp(40px, calc(0px + 5.208vw), 75px) clamp(0px, calc(-91.429px + 11.905vw), 80px);
	padding-bottom: 75px;
	background: #fff;
	border-radius: 10px;
}
.recruit .sub-content.c08 .box{
	align-items: center;
	gap: 15px clamp(20px, calc(-8.571px + 3.72vw), 45px);
	position: relative;
}
.recruit .sub-content.c08 .box:not(:last-child){
	margin-bottom: clamp(75px, calc(63.571px + 1.488vw), 85px);
}
.recruit .sub-content.c08 .box:not(:last-child):before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -54px;
	width: 26px;
	height: 18px;
	background: #1B9341;
    transform: translateX(-50%);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.recruit .sub-content.c08 .image{
	width: 26%;
}
.recruit .sub-content.c08 .text{
	flex: 1;
}
.recruit .sub-content.c08 .image img{
	display: block;
}
.recruit .sub-content.c08 dt{
	position: relative;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0;
}
.recruit .sub-content.c08 dt:before{
    counter-increment: order;
    content: 'STEP ' counter(order, decimal-leading-zero);
	display: inline-block;
	margin-right: 10px;
	color: #1B9341;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	letter-spacing: 0.08em;
}
.recruit .sub-content.c08 dd{
	line-height: 1.8;
	letter-spacing: 0.04em;
}
.recruit .sub-content.c08 .design01{
	margin-top: 15px;
}
.recruit .sub-content.c08 .design01:before{
	display: none;
}
.recruit .sub-content.c09 {
	margin-bottom: clamp(60px, calc(-8.571px + 8.929vw), 120px);
	padding-top: clamp(50px, calc(-7.143px + 7.44vw), 100px);
	padding-bottom: clamp(40px, calc(-5.714px + 5.952vw), 80px);
	background: #F7F7F7;
}
.recruit .sub-content.c09 .header{
	margin-bottom: 40px;
}
.recruit .sub-content.c09 .body{
	padding: 0 15px;
}
.recruit .sub-content.c09 .box{
	position: relative;
	margin-bottom: 15px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
}
.recruit .sub-content.c09 .box:after,
.recruit .sub-content.c09 .box:before{
	content: '';
	position: absolute;
	top: 32px;
	right: clamp(30px, calc(-10px + 5.208vw), 65px);
	width: 16px;
	height: 2px;
	background: #fff;
    transform: translateY(-50%);
	z-index: 2;
    transition: all .3s;
}
.recruit .sub-content.c09 .box:after{
	transform: translateY(-50%) rotate(90deg);
}
.recruit .sub-content.c09 .box.show:after{
	transform: translateY(-50%) rotate(0);
}
.recruit .sub-content.c09 dt,
.recruit .sub-content.c09 .show dd{
	position: relative;
	padding: 20px clamp(40px, calc(-5.714px + 5.952vw), 80px);
	padding-right: clamp(55px, calc(-7.857px + 8.185vw), 110px);
	height: auto;
	opacity: 1;
	z-index: 1;
}
.recruit .sub-content.c09 dt{
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0;
	background: #1B9341;
}
.recruit .sub-content.c09 dd:before,
.recruit .sub-content.c09 dt:before{
	content: 'Q';
	position: absolute;
	top: 15px;
	left: clamp(12px, calc(-1.714px + 1.786vw), 24px);
	width: 36px;
	aspect-ratio: 1 / 1;
	color: #1B9341;
	font-family: 'Lato', sans-serif;
	letter-spacing: 0;
	text-align: center;
	line-height: 36px;
	background: #fff;
	border-radius: 100%;
}
.recruit .sub-content.c09 dd:before{
	content: 'A';
	color: #fff;
	background: #1B9341;
}
.recruit .sub-content.c09 dd{
	position: absolute;
	padding: 0;
	height: 0;
	font-size: 15px;
	letter-spacing: 0.04em;
	line-height: 1.8;
	opacity: 0;
	z-index: -1;
}
.recruit .sub-content.c10 {
	margin-bottom: clamp(75px, calc(61.702px + 2.66vw), 100px);
}
.recruit .sub-content.c10 .header{
	margin-bottom: 60px;
}
.recruit .sub-content.c10 .body{
	align-items: center;
	gap: 25px clamp(20px, calc(-8.571px + 3.72vw), 45px);
	position: relative;
	margin: 0 15px;
	padding: 50px clamp(30px, calc(-4.286px + 4.464vw), 60px);
	padding-left: clamp(45px, calc(-6.429px + 6.696vw), 90px);
	background: #1C9341;
}
.recruit .sub-content.c10 .body:after,
.recruit .sub-content.c10 .body:before{
	content: '';
	position: absolute;
	top: -20px;
	right: -40px;
	width: 99px;
	aspect-ratio: 99 / 93;
	background: url(../img/deco08.svg) no-repeat center;
	background-size: 100% auto;
}
.recruit .sub-content.c10 .body:after{
	top: auto;
	right: auto;
	left: -40px;
	bottom: -15px;
	width: 98px;
	aspect-ratio: 98 / 92;
	background: url(../img/deco09.svg) no-repeat center;
	background-size: 100% auto;
}
.recruit .sub-content.c10 .text{
	flex: 1;
	color: #fff;
	line-height: 2;
	font-weight: bold;
	letter-spacing: 0;
}
.recruit .sub-content.c10 .image{
	width: 45%;
}
.recruit .sub-content.c10 .contact{
	margin-top: 30px;
}
.recruit .sub-content.c10 .contact a{
	display: inline-block;
	width: 370px;
}
.recruit .sub-content.c10 .contact a.s1{
	display: inline-block;
	margin-bottom: 10px;
	height: 70px;
	color: #1B9341;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.02em;
	line-height: 68px;
	text-align: center;
	background: #fff;
	border: 1px solid #1B9341;
	border-radius: 10px;
}
.recruit .sub-content.c10 .contact a.s1:hover{
	color: #fff;
	background: #1B9341;
	border-color: #fff;
	opacity: 1;
}
.recruit .sub-content.c10 .contact a.s2{
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
}
.recruit .sub-content.c10 .contact a.s2 img{
	display: block;
	border-radius: 10px;
}
.recruit .sub-content.c10 .contact a.s1 span{
	display: inline-block;
	position: relative;
	padding-right: 35px;
}
.recruit .sub-content.c10 .contact a.s1 span:before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 23px;
	aspect-ratio: 1 / 1;
	background: #1B9341 url(../img/arrow.svg) no-repeat center;
	background-size: 6px auto;
	border-radius: 100%;
    transform: translateY(-50%);
    transition: all .3s;
}
.recruit .sub-content.c10 .contact a.s1:hover span:before{
	right: -4px;
	background: #fff url(../img/arrow12.svg) no-repeat center;
}
.recruit .sub-content.c10 .image img{
	border-radius: 100%;
}

@media screen and (max-width:1250px) {
	.recruit .sub-content.c03 .upper .rank{
		width: 100%;
		color: #fff;
	}
}

@media screen and (max-width:1000px){
	.recruit .sub-content.c03 .upper {
		padding: 40px 15px 50px;
	}
	.recruit .sub-content.c03 .upper .flex{
		margin-right: 0;
	}
	.recruit .sub-content.c03 .upper .image{
		width: 100%;
	}
	.recruit .sub-content.c06 .bottom .image{
		display: none;
	}
	.recruit .sub-content.c06 .bottom .flow{
		flex: none;
		padding-right: 0;
		width: 100%;
	}
	.recruit .sub-content.c06 .bottom .sub{
		padding-right: 150px;

	}
	.recruit .sub-content.c06 .bottom .sub img{
		right: -15px;
	}
	.recruit .sub-content.c06 .slider{
		margin: 70px -15px 0;
		height: auto;
		opacity: 1;
	}
}

@media screen and (max-width:880px) {
	.recruit .sub-content.c03 .bottom dl{
		width: 100%;
	}
	.recruit .sub-content.c03 .bottom dl.s1 dd{
		margin: 0 auto;
		max-width: 370px;
	}
	.recruit .sub-content.c05 .box{
		padding-left: 0!important;
		padding-right: 0!important;
	}
	.recruit .sub-content.c05 .image{
		margin: 0 auto;
		width: 60%;
	}
	.recruit .sub-content.c05 .box:nth-of-type(even) .image{
		order: 0;
	}
	.recruit .sub-content.c05 .text{
		flex: none;
		width: 100%;
	}
	.recruit .sub-content.c10 .body{
		justify-content: center;
	}
	.recruit .sub-content.c10 .text{
		order: 2;
		flex: none;
		width: 100%;
		text-align: center;
	}
	.recruit .sub-content.c10 .text p{
		display: inline-block;
		text-align: left;
	}
	.recruit .sub-content.c10 .image{
		width: 60%;
	}
}

@media screen and (max-width:767px) {
	.recruit .design01 {
		padding: 35px 20px 20px;
		width: 345px;
	}
	.recruit .design01:before{
		top: 10px;
		right: -15px;
		width: 140px;
		z-index: -1;
	}
	.recruit .design01 p.s1{
		top: -24px;
		padding: 0 10px;
		padding-top: 2px;
		width: 219px;
		aspect-ratio: 219 / 37;
		font-size: 18px;
		background: url(../img/recruit/fukidashi.png) no-repeat center;
		background-size: 100% auto;
	}
	.recruit .design01 a{
		padding: 0 40px 0 15px!important;
		width: 280px;
		height: 60px;
		line-height: 60px;
	}
	.recruit .design01 .b2 a{
		padding: 0 30px 0 10px!important;
	}
	.recruit .design01 i{
		padding: 0 20px;
		font-size: 14px;
		line-height: 20px;
	}
	.recruit .design01 a:before{
		top: 52%;
		right: 42px;
		width: 18px;
		background-size: 5px auto;
	}
	.recruit .design01 .b2 a:before{
		right: 12px;
		background-size: 5px auto;
	}
	.recruit .sub-content .header b{
		font-size: 16px;
	}
	.recruit .sub-content.c01 {
		margin-bottom: 200px;
		padding-top: 100px;
		aspect-ratio: 750 / 1415;
		background: url(../img/recruit/recruit-c01-bg-sp.png) no-repeat center;
		background-size: cover;
	}
	.recruit .sub-content.c01 .text{
		margin: 0 -10px;
		margin-bottom: 2px;
		font-size: 24px;
	}
	.recruit .sub-content.c01 .text p.s1{
		margin-top: -10px;
	}
	.recruit .sub-content.c01 .design01{
		position: absolute;
		right: 50%;
		bottom: -165px;
		transform: translateX(50%);
	}
	.recruit .sub-content.c02 {
		padding-top: 0;
		padding-bottom: 170px;
		font-size: 16px;
	}
	.recruit .sub-content.c02 .wrap:before{
		top: 110px;
		left: 2px;
	}
	.recruit .sub-content.c02 .wrap:after{
		top: auto;
		left: 22px;
		bottom: -100px;
	}
	.recruit .sub-content.c02 .wrap-inr:before{
		top: -70px;
		left: auto;
		right: 0;
		width: 62px;
	}
	.recruit .sub-content.c02 .wrap-inr:after{
		top: auto;
		left: auto;
		right: 22px;
		bottom: -80px;
	}
	.recruit .sub-content.c02 strong{
		margin-bottom: 55px;
		padding-bottom: 20px;
		line-height: 1.4;
		text-align: center;
	}
	.recruit .sub-content.c02 p.s1{
		padding: 10px 20px;
	}
	.recruit .sub-content.c03 {
		margin: -25px 0 60px;
		padding-top: 95px;
		clip-path: polygon(50% 25px, calc(50% + 75px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 75px) 0);
	}
	.recruit .sub-content.c03 .header{
		margin-bottom: 75px;
	}
	.recruit .sub-content.c03 .upper{
		padding-bottom: 35px;
	}
	.recruit .sub-content.c03 .upper dt{
		margin-top: -10px;
		margin-bottom: 20px;
		padding-top: 0;
		text-align: center;
	}
	.recruit .sub-content.c03 .upper dt span{
		padding-bottom: 3px;
		line-height: 2;
	}
	.recruit .sub-content.c03 .upper dt i{
		top: -73px;
		left: 50%;
		width: 156px;
		height: 50px;
		line-height: 50px;
		transform: rotate(-3.3deg) translateX(-140px);

	}
	.recruit .sub-content.c03 .upper dt i:before{
		bottom: 5px;
	}
	.recruit .sub-content.c03 .upper li:not(:first-child) .rank{
		padding-top: 0;
		min-height: 51px;
	}
	.recruit .sub-content.c03 .upper .note{
		width: 100%;
		font-size: 18px;
		text-align: center;
	}
	.recruit .sub-content.c03 .upper li:first-child .note{
		font-size: 22px;
	}
	.recruit .sub-content.c03 .bottom h3 {
		margin-bottom: 40px;
	}
	.recruit .sub-content.c03 .bottom h3 span{
		line-height: 2;
	}
	.recruit .sub-content.c03 .bottom dt{
		font-size: 24px;
	}
	.recruit .sub-content.c03 .bottom dl.s1 dd{
		padding-right: 0;
		font-size: 23px;
	}
	.recruit .sub-content.c03 .bottom dl.d1 span{
		font-size: 18px;
	}
	.recruit .sub-content.c03 .bottom dl.d1 b{
		font-size: 26px;
	}
	.recruit .sub-content.c03 .bottom dl.d1 i{
		font-size: 23px;
	}
	.recruit .sub-content.c03 .bottom dl.d2 dd{
		font-size: 32px;
	}
	.recruit .sub-content.c03 .bottom dl.d2 dd span{
		font-size: 44px;
	}
	.recruit .sub-content.c03 .bottom dl.s1 b{
		font-size: 72px;
	}
	.recruit .sub-content.c03 .bottom dl.s1 i{
		font-size: 61px;
	}
	.recruit .sub-content.c04 .header p:last-child{
		text-align: left;
	}
	.recruit .sub-content.c04 .upper {
		gap: 10px;
	}
	.recruit .sub-content.c04 .upper div{
		justify-content: center;
		padding: 10px 5px;
		width: calc((100% -10px) / 2);
		aspect-ratio: 166 / 162;
		background: url(../img/recruit/recruit-c04-01-sp.webp) no-repeat center;
		background-size: cover;
	}
	.recruit .sub-content.c04 .upper div.d2{
		background: url(../img/recruit/recruit-c04-02-sp.webp) no-repeat center;
		background-size: cover;
	}
	.recruit .sub-content.c04 .upper a{
		height: 36px;
		font-size: 16px;
		line-height: 34px;
	}
	.recruit .sub-content.c04 .upper span{
		padding-right: 15px;
		background-size: 10px auto;
		background-position: right 16px;
	}
	.recruit .sub-content.c04 .upr .image{
		width: 100%;
	}
	.recruit .sub-content.c04 .box:nth-of-type(even) .upr .image{
		order: 0;
	}
	.recruit .sub-content.c04 .upr .text{
		margin-top: 0;
	}
	.recruit .sub-content.c04 .upr {
		margin-bottom: 20px;
	}
	.recruit .sub-content.c04 .upr h3{
		margin-bottom: 5px;
		font-size: 30px;
	}
	.recruit .sub-content.c04 .upr b{
		padding-bottom: 20px;
		font-size: 20px;
	}
	.recruit .sub-content.c04 .upr dt{
		font-size: 16px;
	}
	.recruit .sub-content.c04 .btm {
		padding: 35px 15px;
		background: #F7F7F7;
	}
	.recruit .sub-content.c04 .btm:before {
		display: none;
	}
	.recruit .sub-content.c04 .btm p:has(b){
		margin-bottom: 10px;
	}
	.recruit .sub-content.c04 .btm b{
		font-size: 28px;
	}
	.recruit .sub-content.c04 .btm dl{
		width: 100%;
	}
	.recruit .sub-content.c04 .btm dt{
		padding-left: 35px;
		min-height: 30px;
		font-size: 20px;
	}
	.recruit .sub-content.c04 dl.d1 dt{
		background-size: 24px auto;
	}
	.recruit .sub-content.c04 dl.d2 dt{
		background-size: 26px auto;
		background-position: 0 7px;
	}
	.recruit .sub-content.c04 dl.d3 dt{
		background-size: 30px auto;
		background-position: 0 9px;
	}
	.recruit .sub-content.c04 dl.d4 dt{
		background-size: 30px auto;
		background-position: 0 7px;
	}
	.recruit .sub-content.c05 .text {
		padding-top: 0;
	}
	.recruit .sub-content.c05 dl{
		margin-bottom: 35px;
	}
	.recruit .sub-content.c05 dd{
		font-size: 16px;
		line-height: 1.8;
	}
	.recruit .sub-content.c06 {
		margin-right: 0;
		margin-left: 0;
		padding-top: 45px;
		padding-bottom: 60px;
		clip-path: polygon(50% 25px, calc(50% + 75px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 75px) 0);
	}
	.recruit .sub-content.c06 .header{
		margin-bottom: 25px;
	}
	.recruit .sub-content.c06 .upper h3{
		margin-bottom: 20px;
	}
	.recruit .sub-content.c06 .upper h3 span{
		font-size: 24px;
		font-weight: bold;
		line-height: 2;
	}
	.recruit .sub-content.c06 .upper .box{
		padding: 20px 15px;
		padding-bottom: 25px;
	}
	.recruit .sub-content.c06 .upper .box:not(:last-child){
		margin-bottom: 20px;
	}
	.recruit .sub-content.c06 .upper .b2 .flex{
		gap: 10px;
		position: relative;
		padding-top: 60px;
	}
	.recruit .sub-content.c06 .upper .image{
		width: 100%;
	}
	.recruit .sub-content.c06 .upper .text{
		order: 2;
	}
	.recruit .sub-content.c06 .upper dt{
		padding: 12px;
		font-size: 18px;
	}
	.recruit .sub-content.c06 .upper .b2 .flex dt{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
	.recruit .sub-content.c06 .upper dt span{
		margin-right: 10px;
		padding: 5px 10px;
		padding-left: 27px;
		min-width: auto;
		font-size: 12px;
		background: #fff url(../img/icon-check.svg) no-repeat 10px center;
		background-size: 12px;
		border-radius: 8px;
	}
	.recruit .sub-content.c06 .upper dd{
		padding-left: 0;
	}
	.recruit .sub-content.c06 .upper .note{
		margin-top: -20px;
		font-size: 14px;
		border-radius: 10px;
	}
	.recruit .sub-content.c06 .upper .note.s1{
		padding: 15px;
		padding-left: 55px;
		line-height: 1.5;
		background: #F1F5DC url(../img/icon-idea.svg) no-repeat 10px 15px;
		background-size: 36px auto;
	}
	.recruit .sub-content.c06 .bottom .title span{
		left: -26px;
	}
	.recruit .sub-content.c06 .bottom .title{
		margin-bottom: 35px;
	}
	.recruit .sub-content.c06 .bottom dl{
		gap: 0 35px;
		padding-bottom: 40px;
	}
	.recruit .sub-content.c06 .bottom dl:has(.sub){
		padding-bottom: 75px;
	}
	.recruit .sub-content.c06 .bottom dl:before{
		top: 13px;
		left: 56px;
		width: 10px;
	}
	.recruit .sub-content.c06 .bottom dl:not(:last-of-type):after{
		left: 70px;
	}
	.recruit .sub-content.c06 .bottom dt{
		padding-top: 5px;
		width: 55px;
		font-size: 20px;
	}
	.recruit .sub-content.c06 .bottom dd{
		font-size: 18px;
	}
	.recruit .sub-content.c06 .bottom .sub{
		padding: 10px;
		padding-bottom: 40px;
		min-height: auto;
	}
	.recruit .sub-content.c06 .bottom .sub i{
		display: inline-block;
		padding-right: 140px;
	}
	.recruit .sub-content.c06 .bottom .sub img{
		top: auto;
		right: 2px;
		bottom: 28px;
		transform: translateY(100%);
	}
	.recruit .sub-content.c07 .upper dt{
		padding: 15px;
		width: 110px;
	}
	.recruit .sub-content.c07 .upper dd{
		padding-right: 20px;
		width: calc(100% - 110px);
	}
	.recruit .sub-content.c07 .upper dd span{
		font-size: 14px;
	}
	.recruit .sub-content.c07 .bottom {
		margin: 0;
		padding: 35px 15px;
	}
	.recruit .sub-content.c07 .bottom b{
		margin-bottom: 20px;
		font-size: 28px;
	}
	.recruit .sub-content.c07 .bottom dt{
		padding-left: 35px;
		min-height: 30px;
		font-size: 20px;
	}
	.recruit .sub-content.c07 .bottom .d1 dt{
		background-size: 24px auto;
	}
	.recruit .sub-content.c07 .bottom .d2 dt{
		background-position: 0 7px;
		background-size: 30px auto;
	}
	.recruit .sub-content.c08 .header{
		margin-bottom: 45px;
	}
	.recruit .sub-content.c08 .body{
		padding: 30px 20px 25px;
	}
	.recruit .sub-content.c08 .image{
		width: 100%;
	}
	.recruit .sub-content.c08 dt{
		font-size: 20px;
	}
	.recruit .sub-content.c08 dt:before{
		font-size: 15px;
	}
	.recruit .sub-content.c08 .design01 {
		margin: 0 auto;
		margin-top: 10px;
        padding: 35px 10px 20px;
        width: 305px;
    }
	.recruit .sub-content.c08 .box:not(:last-child):before{
		bottom: -48px;
	}
	.recruit .sub-content.c09 .body{
		padding: 0;
	}
	.recruit .sub-content.c09 .box{
		margin-bottom: 20px;
	}
	.recruit .sub-content.c09 .box:after,
	.recruit .sub-content.c09 .box:before{
		top: 35px;
		right: 15px;
	}
	.recruit .sub-content.c09 dt,
	.recruit .sub-content.c09 .show dd{
		padding: 10px 50px 10px 60px;
	}
	.recruit .sub-content.c09 dt{
		display: flex;
		align-items: center;
		min-height: 70px;
		line-height: 1.3;
	}
	.recruit .sub-content.c09 .show dd{
		padding: 15px;
		padding-left: 60px;
	}
	.recruit .sub-content.c10 .header{
		margin-bottom: 55px;
	}
	.recruit .sub-content.c10 .body{
		margin: 0 -15px;
		padding: 60px 15px;
	}	
	.recruit .sub-content.c10 .body:after,
	.recruit .sub-content.c10 .body:before{
		top: -32px;
		right: 0;
		width: 78px;
	}
	.recruit .sub-content.c10 .body:after{
		top: auto;
		right: auto;
		left: 0;
		bottom: -42px;
		width: 78px;
	}
	.recruit .sub-content.c10 .image{
		width: 70%;
	}
	.recruit .sub-content.c10 .contact{
		margin-top: 10px;
	}
	.recruit .sub-content.c10 .contact a{
		margin-bottom: 15px;
		width: 345px;
	}
}

@media screen and (max-width:500px) {
	.recruit .sub-content.c03 .bottom dl{
		aspect-ratio: 344 / 229;
	}
	.recruit .sub-content.c03 .bottom dl.d3 span{
		padding-left: 125px;
	}
	.recruit .sub-content.c03 .bottom dl.d3 span:before{
		width: 96px;
	}
	.recruit .sub-content.c03 .bottom dl.d4 span{
		padding-left: 105px;
	}
	.recruit .sub-content.c03 .bottom dl.d4 span:before{
		width: 84px;
	}
	.recruit .sub-content.c03 .bottom dl.d5 span{
		padding-left: 110px;
	}
	.recruit .sub-content.c03 .bottom dl.d5 span:before{
		top: -5px;
		width: 85px;
	}
	.recruit .sub-content.c03 .bottom dl.d6 span{
		padding-right: 20px;
		padding-left: 115px;
	}
	.recruit .sub-content.c03 .bottom dl.d6 span:before{
		width: 102px;
	}
	.recruit .sub-content.c05 .image{
		width: 86%;
	}
}





