@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/* 3・2・1 */
/* kokorofriends.com */
/* Younger Than Yesterday */

/*
0 Root
1 Reset
2 Base
3 Decoration
3-2 button
4 Index
5 Manager
5-2 Search Filter
5-3 Pagination
6 Main Content
7 Mail Form
8 Post Form
8-2 Post Form Preview
8-3 Post Form Fin
10 Media Queries
*/

/* --------------------------------------------------
0 Root New!
-------------------------------------------------- */

:root {
  --bg: #f8faf5;
  --surface: #fcfdfb;
  --navigation: #f5f2ee;
  --footer: #0b140e;
  --white: #fcfcfc;
  --black: #333;
  --yellow: #fad200;
  --color-accent: #e8956d;
  --color-accent-pale: #fdf0ea;
  --color-accent-deep: #d97e55;
  --color-primary: #5b8a6e;
  --color-primary-pale: #eaf4ee;
  --color-primary-deep: #4e7d62;
  --color-secondary: #e6f0ea;
  --color-tertiary: ;
  --text: #161814;
  --text-primary: #2d4a38;
  --text-haze: #757a70;
  --border: #e6e0d8;
  --border-primary: #c8e0d0;
  --button-primary: #f0ece6;
  --button-primary-text: #6a6260;
  --button-primary-border: #ddd6cc;
  --button-primary-hover: #e6e0d8;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------
1 Reset
-------------------------------------------------- */

h1,
h2,
h3,
h4 {
  line-height: 1;
}

ul {
  list-style: none;
}

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}

#content {
  flex-grow: 1;
}

.date-tags {
  display: none;
}

select,
button {
  appearance: none;
}

/* --------------------------------------------------
2 Base
-------------------------------------------------- */

.page .main {
  padding: 20px;
  background: var(--surface);
  border-radius: 10px;
}

.navi-in a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--white);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.5s;
}

.navi-in a:hover::after {
  transform: scale(1, 1);
}

#menu-item-51 .item-label {
  color: var(--text);
  outline: 2px solid var(--color-primary);
  background: var(--surface);
  border: 2px solid var(--border-primary);
  border-radius: 50vh;
  box-shadow: 0 2px 8px var(--shadow);
}

#menu-smartphone {
  background: #8ab8a0;
}

#menu-smartphone a,
#menu-smartphone .navi-menu-button {
  color: #2e4c40;
}

#menu-smartphone #navi-menu-content {
  background: rgb(242 245 238 / 90%);
}

#menu-smartphone .logo-menu-button {
  margin-left: 25px;
}

#menu-smartphone .menu-close-button {
  margin-top: 4px;
}

#header .site-logo-image,
#menu-smartphone .site-logo-image {
  width: auto;
  height: 32px;
}

#post-32 .entry-content,
#post-34 .entry-content {
  padding: 0 15px;
}

#post-32 .entry-content h3,
#post-34 .entry-content h3 {
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.error404 #main {
  text-align: center;
  background: var(--white);
}

.error404 h1 {
  display: none;
}

.error404 p {
  margin-top: 20px;
}

/* --------------------------------------------------
3 Decoration
-------------------------------------------------- */

h1.entry-title {
  padding: 0;
  margin: 0 0 30px;
  line-height: 1.3;
  text-align: center;
}

.entry-title::after {
  display: block;
  width: 120px;
  height: 10px;
  margin: 10px auto 0;
  content: "";
  background: linear-gradient(
    to left,
    var(--color-primary) 0%,
    var(--color-primary) 33%,
    var(--color-accent-pale) 33%,
    var(--color-accent-pale) 67%,
    var(--color-accent) 67%,
    var(--color-accent) 100%
  );
  border-radius: 5px;
}

h4 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

h4::after {
  display: block;
  width: 70px;
  height: 6px;
  margin: 12px auto 0;
  content: "";
  background: var(--yellow);
  border-radius: 3px;
}

.decoration___center {
  text-align: center;
}

.decoration___right {
  text-align: right;
}

.decoration___small {
  font-size: 14px;
}

.decoration___bold {
  font-weight: bold;
}

.decoration___space-b {
  margin-bottom: 20px !important;
}

.decoration___space-s {
  margin: 0 10px;
}

.decoration___radius {
  border-radius: 10px;
}

.not-found {
  background: #f2f2f5;
  border-radius: var(--radius-sm);
}

/* --------------------
3-2 Button
-------------------- */

.button___80p {
  width: 80%;
}

.button___150 {
  width: 150px;
}

.button___300 {
  width: 90%;
  max-width: 300px;
}

.button___submit,
#job_preview .job-manager-button-submit-listing,
.customize___submit input.button,
.contact___submit input.wpcf7-form-control,
.job_application input.application_button {
  height: 50px;
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  background: var(--color-primary);
  border: none;
  border-radius: 25px;
  transition: 0.6s;
}

.button___submit:hover,
#job_preview .button___submit:hover,
#job_preview .job-manager-button-submit-listing:hover,
.customize___submit input.button:hover,
.contact___submit input.wpcf7-form-control:hover,
.job_application input.application_button:hover {
  transform: scale(1.05);
}

.customize___submit input.button,
#job_preview .job-manager-button-edit-listing,
#job_preview .job-manager-button-submit-listing,
.contact___submit input.wpcf7-form-control,
.job_application input.application_button {
  display: block;
  width: 80%;
  max-width: 450px;
  margin: 0 auto;
}

.button___cancel,
#job_preview .job-manager-button-edit-listing,
#job_preview .button___cancel {
  height: 50px;
  font-size: 16px;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  cursor: pointer;
  background: var(--white);
  border: 2px var(--black) solid;
  border-radius: 8px;
}

#job_preview .job-manager-button-edit-listing {
  margin: 35px auto;
}

.button___cancel:hover,
#job_preview .job-manager-button-edit-listing:hover,
#job_preview .button___cancel:hover {
  color: var(--white);
  background: var(--black);
  border: 2px var(--black) solid;
}

.badge___first,
.badge___second {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 1;
}

.badge___first {
  font-weight: bold;
  background: var(--color-accent-pale);
  border: 1px solid #eea849;
  border-radius: 12px;
}

.badge___second {
  background: var(--color-primary-pale);
  border: 1px solid #f5ccb0;
  border-radius: 40px;
}

/* --------------------------------------------------
4 Index
-------------------------------------------------- */

body.page-id-2 .content,
body.page-id-2 .footer {
  margin-top: 0;
}

body.page-id-2 .content-in {
  width: 100%;
}

body.page-id-2 .main {
  padding: 0;
  background: var(--bg);
  border-radius: 0;
}

.index___wrapper {
  padding: 50px 0;
  margin: 0 auto;
}

.index___container {
  max-width: 860px;
  margin: 0 auto;
}

#index___about {
  max-width: 860px;
  padding: 10px;
  margin: 0 auto;
  color: var(--text-primary);
  text-align: center;
}

.hero___description {
  margin: 10px 0;
  color: var(--text-haze);
}

.hero___catch {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.hero___badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hero___badge span {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-accent);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 40px;
}

.index___hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5ed 0%, #fef7f0 60%, #f9fff3 100%);
}

.index___hero::before {
  position: absolute;
  top: -60px;
  right: 420px;
  width: 220px;
  height: 220px;
  content: "";
  background: rgba(91, 138, 110, 0.07);
  border-radius: 50%;
}

.index___hero::after {
  position: absolute;
  bottom: -40px;
  left: 480px;
  width: 160px;
  height: 160px;
  content: "";
  background: rgba(232, 149, 109, 0.07);
  border-radius: 50%;
}

#index___list {
  max-width: 860px;
  margin: 0 auto;
}

.google_ad {
  padding: 25px 0;
}

.adsense_responsive {
  margin: 0 auto;
}

/* --------------------------------------------------
5 List
-------------------------------------------------- */

li.job_listing {
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    border-color 0.18s;
  animation: fadeUp 0.4s ease forwards;
}

li.job_listing:hover {
  border-color: var(--border-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

li.job_listing a {
  display: block;
  color: var(--black);
  text-decoration: none;
}

.list___header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  background: var(--color-secondary);
  border-bottom: 1px solid var(--border);
}

.list___icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: bold;
  outline: 2px solid var(--border-primary);
  background: var(--surface);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

.list___icon::first-letter {
  display: inline-block;
}

span.list___symbol {
  width: 1em;
  overflow: hidden;
  color: var(--color-primary);
  text-align: center;
  white-space: nowrap;
}

.list___header .list___feature {
  width: calc(100% - 66px);
}

.list___title {
  padding: 20px 20px 0;
}

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

.list___status {
  display: flex;
  align-items: center;
  color: #486153;
}

.list___time {
  font-size: 14px;
}

li.job_listing .list___data {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 15px 20px;
}

/* --------------------------------------------------
5-2 Search Filter
-------------------------------------------------- */

summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 40px;
  margin: -10px 0 0 auto;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.14em;
  cursor: pointer;
  background: var(--color-primary);
  border-radius: 20px;
}

summary::after {
  color: var(--white);
  content: "絞り込み検索+";
}

details[open] summary {
  display: none;
}

/* --------------------------------------------------

details[open] summary {
  background: var(--color-primary-pale);
}

details[open] summary::after {
  font-size: 16px;
  color: var(--text-haze);
  content: "閉じる-";
}

-------------------------------------------------- */

.filter___wrapper {
  padding: 20px 18px;
  background: var(--color-accent-pale);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius);
}

.search_jobs {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.search_jobs select,
.search_jobs #search_keywords {
  background: var(--white);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
}

.search_jobs label {
  display: none;
}

.search_submit input {
  display: block;
  height: 100%;
  padding: 0;
  font-size: 16px;
  color: var(--white);
  background: var(--color-primary);
  border-radius: calc(infinity * 1px);
  box-shadow: 0 2px 8px rgba(91, 138, 110, 0.25);
  transition:
    background 0.18s,
    transform 0.15s;
}

.search_submit input:hover {
  background: var(--color-primary-deep);
  transform: translateY(-1px);
}

#search_job--keyword {
  display: flex;
  flex-wrap: wrap;
  order: 3;
}

#search_job--keyword .search_keywords {
  width: calc(100% - 120px);
  padding-right: 10px;
}

#search_job--keyword .search_submit {
  min-width: 120px;
}

.search_categories {
  order: 2;
}

.search_age {
  order: 1;
}

div.search_jobs div.search_categories .select2-selection {
  background: var(--white);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
}

div.search_jobs div.search_categories ul.select2-selection__rendered {
  padding: 6px 10px;
  vertical-align: middle;
}

.job_filters .job_types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 13px;
}

.job_filters .job_types li {
  padding: 2px 10px;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border-primary);
  border-radius: 50px;
}

input#search_keywords::placeholder,
input.select2-search__field::placeholder,
select.job-manager-filter {
  color: var(--text-primary);
}

.showing_jobs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  margin-top: 10px;
  background: var(--surface);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-sm);
  opacity: 0;
  animation: fadein 0.3s ease-in 0.6s forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.showing_jobs span {
  font-weight: bold;
}

.showing_jobs .reset {
  padding: 4px 16px;
  margin: 0 0 0 auto;
  font-size: 15px;
  color: var(--text-haze);
  text-decoration: none;
  background: var(--button-primary);
  border: 1px solid var(--button-primary-border);
  border-radius: 50px;
  box-shadow: var(--shadow);
}

.showing_jobs .reset:hover {
  background: var(--button-primary-hover);
}

.no_job_listings_found {
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: var(--white);
  border-radius: 8px;
}

/* --------------------------------------------------
5-3 Pagination
-------------------------------------------------- */

.job-manager-pagination {
  margin: 30px auto 20px;
}

.job-manager-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.job-manager-pagination ul li {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 6px;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
  background: var(--surface);
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  transition: 0.6s;
}

.job-manager-pagination ul li:has(> span) {
  color: var(--color-primary);
}

.job-manager-pagination ul li:hover:has(> span) {
  background: var(--white);
}

.job-manager-pagination ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.6s;
}

.job-manager-pagination ul li:hover {
  background: var(--white);
  transform: scale(1.2);
}

.job-manager-pagination ul li a:hover {
  transform: scale(1.1);
}

/* --------------------------------------------------
6 Main Content
-------------------------------------------------- */

.single-job_listing .main {
  background: var(--bg);
}

.content___wrapper {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius);
}

.content___data {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 20px;
  margin-bottom: 25px;
  overflow: hidden;
  background: var(--color-primary-pale);
  border-bottom: 1px solid var(--color-primary-deep);
}

.content___data::before {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  content: "";
  background: rgba(91, 138, 110, 0.08);
  border-radius: 50%;
}

.content___data::after {
  position: absolute;
  bottom: -30px;
  left: 20px;
  width: 90px;
  height: 90px;
  content: "";
  background: rgba(91, 138, 110, 0.05);
  border-radius: 50%;
}

.content___logo {
  margin: auto 0;
}

.content___logo img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

.content___feature {
  flex-grow: 2;
}

.content___feature li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.content___data .content___name {
  margin-bottom: 2px;
  font-size: 20px;
  font-weight: bold;
  color: var(--text-primary);
  letter-spacing: 0.1em;
}

.content___data .content___age {
  padding: 2px 12px;
  color: #486153;
  background: var(--white);
  border: 1px solid var(--border-primary);
  border-radius: 40px;
}

.content___data .content___time {
  font-size: 14px;
  color: var(--text-haze);
}

.content___remain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 58px;
  padding: 6px 0;
  line-height: 1.2;
  background: var(--surface);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
}

.days-count {
  font-size: 20px;
  font-weight: bold;
}

.days-label-before {
  width: 100%;
  text-align: center;
}

.days-label-before,
.days-label-after {
  font-size: 12px;
  font-weight: bold;
}

.content___text,
.content___type {
  padding: 0px 25px 25px;
}

.content___caption {
  padding-bottom: 19px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.content___caption::first-letter {
  font-size: 30px;
}

.content___type ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.content___type ul .badge___first,
.content___type ul .badge___second {
  padding: 8px 14px;
}

.job_application {
  margin: 10px 0 30px;
}

/* --------------------------------------------------
7 Mail Form
-------------------------------------------------- */

#contact___wrapper,
.application_details {
  max-width: 800px;
  padding: 30px;
  margin: 0 auto;
  background: var(--color-primary-pale);
  border-radius: var(--radius);
}

#contact___wrapper {
  border: 2px solid var(--border);
}

.contact___caption,
form#submit-job-form label {
  margin: 0 0 3px 3px;
}

.contact___input,
.contact___select {
  margin-bottom: 30px;
}

.contact___check {
  padding-bottom: 10px;
}

.contact___input input,
.contact___input textarea,
.contact___select select {
  background: var(--surface);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
}

.contact___input textarea {
  height: 350px;
}

div.wpcf7 .wpcf7-turnstile {
  margin-bottom: 20px;
}

.contact___notice {
  width: fit-content;
  margin: 0 auto 20px;
}

.job_application input.application_button:active {
  box-shadow: none;
  transform: translateY(3px);
}

div.wpcf7 form.wpcf7-form div.wpcf7-response-output {
  width: 98%;
  max-width: 550px;
  padding: 12px 12px 16px;
  margin: -15px auto 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: var(--white);
  border: 4px solid var(--yellow);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

div.wpcf7 form.wpcf7-form div.wpcf7-response-output::first-letter {
  font-size: 22px;
}

.contact___submit,
.customize___submit {
  text-align: center;
}

/* --------------------------------------------------
8 Post Form
-------------------------------------------------- */

body.page-id-11 .content___remain {
  display: none;
}

#post___warning {
  padding: 20px;
  background: var(--color-accent-pale);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
}

#post___warning p {
  max-width: 700px;
  margin: 0 auto;
}

form#submit-job-form {
  display: flex;
  flex-flow: column wrap;
  padding: 50px 40px 40px;
  margin: 30px auto 0;
  background: var(--color-primary-pale);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  reading-flow: flex-visual;
}

form#submit-job-form .input-text,
form#submit-job-form #job_salary,
form#submit-job-form .wp-editor-container,
form#submit-job-form .select2-selection--multiple {
  background: var(--surface);
  border: 1px solid var(--border-primary);
}

form#submit-job-form fieldset {
  margin-bottom: 30px;
}

form#submit-job-form .fieldset-company_name {
  order: 1;
}

form#submit-job-form .fieldset-job_salary {
  order: 2;
}

form#submit-job-form .fieldset-application {
  order: 3;
}

form#submit-job-form .fieldset-job_type {
  order: 4;
}

form#submit-job-form .fieldset-job_category {
  order: 5;
}

form#submit-job-form .fieldset-job_title {
  order: 6;
}

form#submit-job-form .fieldset-job_description {
  order: 7;
}

form#submit-job-form .customize___submit {
  order: 8;
  margin-top: 20px;
}

fieldset.fieldset-type-text,
fieldset.fieldset-type-term-multiselect,
fieldset.fieldset-type-wp-editor,
fieldset.fieldset-type-select {
  border: none;
}

label[for="job_type"]::after,
label[for="job_category"]::after {
  font-weight: normal;
  content: "（複数選べます）";
}

#wp-job_description-wrap iframe#job_description_ifr {
  min-height: 380px !important;
}

#wp-job_description-wrap p {
  margin: 0;
}

.job-manager-error {
  background: #fdecea;
  border: 3px solid #b81c23;
  border-radius: 6px;
}

/* --------------------------------------------------
8-2 Post Form Preview
-------------------------------------------------- */

#post___warning-preview {
  width: fit-content;
  padding: 5px 12px;
  margin: 0 auto 25px;
  font-size: 18px;
  border: 4px solid var(--yellow);
  border-radius: 6px;
}

#post___warning-preview::before {
  font-size: 20px;
  content: "⚠️";
}

#job_preview h2 {
  padding: 15px 0;
  color: var(--white);
  text-align: center;
  background: var(--black);
  border-radius: var(--radius-sm);
}

.job_listing_preview {
  margin: 30px 0 50px;
}

.job_listing_preview h1 {
  display: none;
}

.job_listing_preview .content___caption {
  font-size: 20px;
}

.create_a_newpost {
  display: none;
}

/* --------------------------------------------------
8-3 Post Form Fin
-------------------------------------------------- */

div.job-manager-message {
  position: relative;
  max-width: 420px;
  padding: 20px;
  margin: 20px auto;
  overflow: hidden;
  text-align: center;
  background: var(--color-primary-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

div.job-manager-message::before {
  position: absolute;
  top: -30px;
  right: -30px;
  left: inherit;
  width: 100px;
  height: 100px;
  content: "";
  background: rgba(91, 138, 110, 0.08);
  border-radius: 50%;
}

div.job-manager-message::after {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70px;
  height: 70px;
  content: "";
  background: rgba(91, 138, 110, 0.06);
  border-radius: 50%;
}

.post___success {
  position: relative;
  z-index: 1;
  line-height: 2;
  color: var(--text-primary);
}

.post___success::before {
  display: block;
  margin-bottom: 12px;
  font-size: 40px;
  line-height: 1;
  content: "🎉";
}

.post___success-title {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: bold;
  color: var(--text);
  letter-spacing: 0.06em;
}

.post___success a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  margin-top: 16px;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.03em;
  text-decoration: none;
  background: var(--color-primary);
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(91, 138, 110, 0.25);
  transition:
    background 0.18s,
    transform 0.15s;
}

.post___success a:hover {
  background: var(--color-primary-deep);
  box-shadow: 0 6px 16px rgba(91, 138, 110, 0.3);
  transform: translateY(-1px);
}

/* --------------------------------------------------
10 Media Queries
-------------------------------------------------- */

/* 1280px以下 */
@media screen and (width <= 1400px) {
  .index___hero::before {
    right: 100px;
  }

  .index___hero::after {
    left: 120px;
  }
}

/* 1024px以下 */
@media screen and (width <= 1024px) {
  .page .main {
    width: 94%;
    padding: 20px 0;
    margin: 0 auto;
  }

  body.page-id-2 .main {
    width: 100%;
    padding: 0;
  }

  body.page-id-11 main#main {
    padding: 10px 8px;
  }

  #index___about,
  #index___list,
  .index___container,
  .content___wrapper {
    width: 94%;
  }

  .content___wrapper {
    margin: 0 auto;
  }

  #index___about {
    padding: 0;
  }

  .index___hero::before {
    right: -60px;
  }

  .index___hero::after {
    left: -40px;
  }

  /* --------------------------------------------------
    Hamburger Menu
    -------------------------------------------------- */

  #menu-smartphone .menu-drawer {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }

  #menu-smartphone .menu-drawer .menu-item {
    margin: 15px;
  }

  #menu-smartphone .menu-drawer .menu-item a {
    padding: 12px;
  }

  #menu-smartphone .menu-drawer .menu-item a:hover {
    background: rgb(0 0 0 / 10%);
    border-radius: 10px;
  }
}

/* 834px以下 */
@media screen and (width <= 834px) {
  .decoration___br {
    display: none;
  }

  #index___about {
    text-align: left;
  }

  .hero___catch {
    font-size: 18px;
    text-align: center;
  }

  .filter___wrapper {
    padding: 14px 12px;
  }

  #search_job--keyword .search_submit {
    min-width: 90px;
  }

  #search_job--keyword .search_keywords {
    width: calc(100% - 90px);
  }

  .content___logo img {
    width: 56px;
    height: 56px;
  }

  .application_details {
    width: 96%;
    padding: 20px 10px 5px;
  }

  #contact___wrapper {
    width: 96%;
    padding: 20px 10px;
  }

  #post___warning {
    padding: 20px 12px;
  }

  form#submit-job-form {
    width: 100%;
    padding: 30px 10px 0;
  }

  form#submit-job-form .customize___submit {
    margin-top: 10px;
  }
}

/* 600px以下 */
@media screen and (width <= 600px) {
  .job_filters .job_types {
    gap: 6px;
  }

  .job_filters .job_types li {
    padding: 2px 7px;
  }

  .showing_jobs span {
    margin-bottom: 5px;
  }
}