@charset "utf-8";

/*////////////////////////////////////////////////////////////
Name : corpotate.css
////////////////////////////////////////////////////////////*/

/*----------------------------------------------------------------------------------------
	Reset
---------------------------------------------------------------------------------------- */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
ol,ul {list-style:none}

/*----------------------------------------------------------------------------------------
	common settting
---------------------------------------------------------------------------------------- */
html {
	font-size:62.5%;
	height:100vh;
}
body {
	color:#848488;
	line-height:1.4;
}
a {
	color: #444;
	text-decoration: none;
	border:0;
	outline:none;
}
a:hover {
	filter:alpha(opacity=90);
	-moz-opacity: 0.9;
	opacity: 0.9;
	text-decoration: underline;
}
a:hover img {
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}
.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.text-center {
	text-align: center;
}
.display-none {
	display: none;
}

.btn {
    background-color: #64b32e;
    color: #fff;
    font-size: 1.6rem;
    padding: 15px 60px;
    border-radius: 6px;
    display: inline-block;
}
.btn-outline {
    background-color: #fff;
    border: 1.5px solid #64b32e;
    color: #64b32e;
    font-size: 1.6rem;
    padding: 15px 60px;
    border-radius: 6px;
    display: inline-block;
}
/*----------------------------------------------------------------------------------------
    top
---------------------------------------------------------------------------------------- */
.top {
    margin-top: 60px;
    background: linear-gradient(135deg, #f4faf0 0%, #e8f5e0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(100, 179, 46, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(100, 179, 46, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.top .top-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.top-title {
    margin: 0 0 16px 0;
    font-family: Inter;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    color: #2c3e50;
}
.top-location {
    color: #64b32e;
    font-size: 42px;
    margin-bottom: 8px;
}
.top-job-type {
    font-size: 28px;
    color: #5E4A42;
    font-weight: 600;
}
.top-subtitle {
    margin: 0 0 32px 0;
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    color: #5E4A42;
    padding: 0 20px;
}
.top-description {
    margin: 32px 0 48px 0;
    padding: 0 20px;
}
.top-description-main {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    color: #333;
}
.top-description-sub {
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
    color: #666;
    margin: 0;
}
.top .top-container .btn-container {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    background-color: #64b32e;
    color: #fff;
    font-size: 1.6rem;
    padding: 16px 48px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(100, 179, 46, 0.3);
}
.btn-primary:hover {
    background-color: #5aa028;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(100, 179, 46, 0.4);
}
.btn-outline {
    background-color: transparent;
    color: #64b32e;
    border: 2px solid #64b32e;
    font-size: 1.6rem;
    padding: 14px 46px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background-color: #64b32e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 179, 46, 0.3);
}

/* スマホ版 - top */
@media screen and (max-width: 897px) {
    .top {
        padding: 72px 16px 48px 16px;
        margin-top: 0;
    }
    .top-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .top-location {
        display: block;
        font-size: 28px;
        margin-bottom: 6px;
    }
    .top-job-type {
        display: block;
        font-size: 18px;
    }
    .top-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        padding: 0;
    }
    .top-description {
        margin: 24px 0 32px 0;
        padding: 0;
    }
    .top-description-main {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .top-description-sub {
        font-size: 13px;
    }
    .top .top-container .btn-container {
        margin-top: 32px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .btn-primary,
    .btn-outline {
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/*----------------------------------------------------------------------------------------
	ideal-candidate
---------------------------------------------------------------------------------------- */
.ideal-candidate {
    padding: 64px 0;
    background-color: #fff;
}
.ideal-candidate-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.ideal-candidate-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}
.ideal-candidate-left {
    flex: 1;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
}
.ideal-candidate-right {
    flex: 1;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
}
.ideal-candidate-left h2,
.ideal-candidate-right h2 {
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #333;
    margin-bottom: 24px;
}
.candidate-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.candidate-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-family: Inter;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.candidate-list li:last-child {
    margin-bottom: 0;
}
.candidate-list-sub {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}
.check-icon svg {
    width: 100%;
    height: 100%;
    fill: #64b32e;
}
.condition-list {
    margin: 0;
    padding: 0;
}
.condition-list dt {
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 16px;
    margin-bottom: 4px;
}
.condition-list dt:first-child {
    margin-top: 0;
}
.condition-list dd {
    font-family: Inter;
    font-size: 14px;
    color: #333;
    margin: 0 0 0 0;
    line-height: 1.6;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}
.condition-list dd:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.condition-note {
    margin-top: 24px;
    padding: 16px;
    background-color: #f4faf0;
    border-radius: 6px;
}
.condition-note p {
    font-family: Inter;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* スマホ版 */
@media screen and (max-width: 897px) {
    .ideal-candidate {
        padding: 40px 0;
    }
    .ideal-candidate-container {
        padding: 0 16px;
    }
    .ideal-candidate-content {
        flex-direction: column;
        gap: 32px;
    }
    .ideal-candidate-left {
        padding: 24px;
        border-radius: 8px;
    }
    .ideal-candidate-right {
        padding: 24px;
        border-radius: 8px;
    }
    .ideal-candidate-left h2,
    .ideal-candidate-right h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .candidate-list {
        margin-bottom: 20px;
    }
    .candidate-list li {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .candidate-list-sub {
        margin-top: 20px;
        padding-top: 20px;
    }
    .condition-list dt,
    .condition-list dd {
        font-size: 13px;
    }
    .condition-list dt {
        margin-top: 12px;
    }
    .condition-list dd {
        padding-bottom: 10px;
    }
    .condition-note {
        margin-top: 20px;
        padding: 12px;
    }
    .condition-note p {
        font-size: 13px;
    }
}

/*----------------------------------------------------------------------------------------
	job-description
---------------------------------------------------------------------------------------- */
.job-description {
    margin: 80px 0;
}
.job-description-header {
    text-align: center;
}
.job-description-subtitle {
    margin-bottom: 8px;
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #5E4A42;
}
.job-description h2 {
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: #5E4A42;
}
.job-description-intro {
    margin: 40px 0;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #5E4A42;
}
.job-description-list {
    width: 95.2%;
    max-width: 960px;
    margin: 0 auto;
}
.job-description-card {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0px 4px 10px 0px #8C6A4F33;
    border-radius: 10px;
}
.job-description-card:first-child {
    margin-bottom: 40px;
}
.job-description-image {
    width: 40%;
}
.job-description-image img {
    width: 100%;
    height: auto;
    display: block;
}
.job-description-content {
    width: 50%;
    margin: 16px 12px 8px 0;
}
.job-description-title {
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    padding-left: 10px;
    border-left: 4px solid #64B32E;
    margin-bottom: 32px;
    color: #5E4A42;
}
.job-description-text {
    margin: 32px 0;
    width: 86%;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #5E4A42;
}
.job-description-item {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.job-description-tag {
    padding: 8px 0;
    background-color: #64B32E;
    color: #fff;
    border-radius: 4px;
    margin-right: 5px;
    width: 80px;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    flex-shrink: 0;
}
.job-description-example {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #5E4A42;
    margin: 0;
}

/* スマホ版 */
@media screen and (max-width: 897px) {
    .job-description {
        margin: 140px 0 100px 0;
    }
    .job-description-subtitle {
        font-size: 16px;
    }
    .job-description h2 {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .job-description-intro {
        width: 350px;
        margin: 40px auto 20px;
        font-size: 12px;
        line-height: 18px;
    }
    .job-description-list {
        width: 90%;
        max-width: 350px;
    }
    .job-description-card {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 0;
    }
    .job-description-card:first-child {
        margin-bottom: 40px;
    }
    .job-description-image {
        width: 85.7%;
        max-width: 300px;
    }
    .job-description-content {
        width: 85.7%;
        max-width: 300px;
        margin: 20px 0 0 0;
    }
    .job-description-title {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 18px;
    }
    .job-description-text {
        margin: 18px 0;
        width: 86%;
        font-size: 14px;
    }
    .job-description-tag {
        padding: 4px 0;
        width: 58px;
        font-size: 14px;
        line-height: 14px;
    }
    .job-description-example {
        font-size: 12px;
        max-width: 234px;
    }
}

/*----------------------------------------------------------------------------------------
	flow
---------------------------------------------------------------------------------------- */
.flow {
    padding: 64px 136px;
    background-color: #fff;
}
.flow-container {
    max-width: 1040px;
    margin: 0 auto;
}
.flow h2 {
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 20px;
    color: #5E4A42;
}
.flow-separator {
    margin-bottom: 64px;
}
.flow-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.flow-item {
    flex: 1;
    max-width: 32%;
}
.flow-image {
    margin-bottom: 24px;
    width: 330px;
    height: 250px;
    overflow: hidden;
}
.flow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.flow-title {
    color: #5E4A42;
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    margin-bottom: 16px;
    white-space: nowrap;
}
.flow-step {
    color: #64B32E;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin-right: 3px;
}
.flow-text {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #5E4A42;
}
.flow-text a {
    color: #64B32E;
    text-decoration: underline;
}

/* スマホ版 */
@media screen and (max-width: 897px) {
    .flow {
        padding: 64px 5.12vw;
    }
    .flow h2 {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .flow-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .flow-item {
        width: 100%;
        max-width: 350px;
        margin-bottom: 56px;
    }
    .flow-item:last-child {
        margin-bottom: 0;
    }
    .flow-image {
        width: 330px;
        height: 250px;
    }
    .flow-text {
        font-size: 12px;
        line-height: 16px;
    }
}

/*----------------------------------------------------------------------------------------
	apply-form
---------------------------------------------------------------------------------------- */
.apply-form {
    padding: 64px 0;
    background-color: #fff;
}
.apply-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.apply-form-header {
    border: 1px solid #64b32e;
    border-bottom: none;
    background-color: #f4faf0;
    padding: 40px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}
.apply-form-header h2 {
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    margin-bottom: 16px;
}
.apply-form-header p {
    font-family: Inter;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}
.apply-form-header p + p {
    margin-top: 8px;
}
.apply-form-content {
    background-color: #fff;
    border: 1px solid #64b32e;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 40px;
}
.form-group {
    margin-bottom: 24px;
}
.form-group:last-child {
    margin-bottom: 0;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-group-half {
    flex: 1;
}
.form-group label {
    display: block;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.required {
    color: #e74c3c;
}
.form-note {
    font-weight: 400;
    font-size: 12px;
    color: #666;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-family: Inter;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #64b32e;
    background-color: #fff;
}
.form-input-error {
    border-color: #e74c3c;
    background-color: #fff5f5;
}
.form-input-error:focus {
    border-color: #e74c3c;
    background-color: #fff;
}
.form-error-message {
    display: block;
    color: #e74c3c;
    font-family: Inter;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.4;
}
.form-errors {
    background-color: #fee;
    border: 1px solid #e74c3c;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 24px;
}
.form-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.form-errors li {
    color: #e74c3c;
    font-family: Inter;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 4px;
}
.form-errors li:last-child {
    margin-bottom: 0;
}
.form-success {
    background-color: #d4edda;
    border: 1px solid #64b32e;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 24px;
    color: #155724;
    font-family: Inter;
    font-size: 14px;
    line-height: 1.6;
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    background-color: #f4faf0;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.checkbox-label:hover {
    background-color: #e8f5e0;
}
.checkbox-input {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #64b32e;
}
.checkbox-label span {
    font-family: Inter;
    font-size: 14px;
    color: #333;
    flex: 1;
}
.form-submit {
    margin-top: 32px;
    text-align: center;
}
.submit-btn {
    background-color: #64b32e;
    color: #fff;
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 80px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.submit-btn:hover {
    background-color: #5aa028;
}
.submit-btn:active {
    background-color: #4d8f22;
}

/* スマホ版 */
@media screen and (max-width: 897px) {
    .apply-form {
        padding: 40px 0;
    }
    .apply-form-container {
        padding: 0 16px;
    }
    .apply-form-header {
        padding: 24px 16px;
    }
    .apply-form-header h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .apply-form-header p {
        font-size: 13px;
    }
    .apply-form-content {
        padding: 24px 16px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .form-input,
    .form-textarea {
        font-size: 16px; /* iOSでズームを防ぐ */
    }
    .submit-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
}
/*----------------------------------------------------------------------------------------
	footer
---------------------------------------------------------------------------------------- */
footer {
	margin-top:80px;
}
footer .footerTop {
	background-color:#fbfbfb;
	border-top:1px solid #dee2e6;
	padding:30px 0;
}
footer .footerBottom {
	border-top:1px solid #dee2e6;
	background-color:#f2f2f2;
	padding:20px 0;
}
footer .inner {
	padding:0 20px;
}
footer .footerNav {
	letter-spacing: -.4em;
	font-size:1.3rem;
}
footer .footerNav > div {
	display:inline-block;
	vertical-align: middle;
	letter-spacing: normal;
	margin-right:12px;
	padding-right:12px;
	border-right:1px solid #ddd;
}
footer .footerNav > div:last-child {
	border-right:0;
}
footer .footerCopyright {
	margin-top:12px;
}
footer .footerCopyright p {
	color:#999;
	font-size:1rem;
}
footer .footerSocial {
	text-align:center;
}
footer .footerSocial dt {
	font-size:1.8rem;
	font-weight:bold;
}
footer .footerSocial dd {
	text-align:center;
	letter-spacing:-.4em;
	margin-top:20px;
}
footer .footerSocial dd > div {
	display:inline-block;
	width:60px;
	margin:0 5px;
	letter-spacing: normal;
}
footer .footerSocial dd > div img {
	width:100%;
	height:auto;
}