@charset "UTF-8";
/* mixin
----------------------------------------------------*/
/* variable
----------------------------------------------------*/
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #333;
}

.wrapper {
  position: relative;
  z-index: 2;
}

a {
  outline: none;
  text-decoration: none;
}
img {
  vertical-align: top;
  max-width: 100%;
  outline: none;
}

input,
button,
textarea {
  outline: none;
}
input::placeholder,
button::placeholder,
textarea::placeholder {
  color: #aaa;
}

/* header
----------------------------------------------------*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 82px;
  padding: 30px 20px;
  background: #fff;
}
@media screen and (max-width: 700px) {
  .l-header {
    height: 66px;
    padding: 15px;
  }
}
.l-header_logo {
  width: 176px;
}
@media screen and (max-width: 940px) {
  .l-header_logo {
    position: relative;
    z-index: 801;
    background: url(../images/logo_white.png) no-repeat left top/contain;
  }
  .menu-open .l-header_logo {
    position: fixed;
    left: 20px;
    top: 20px;
  }
}
@media screen and (max-width: 700px) {
  .l-header_logo {
    width: 151px;
  }
  .menu-open .l-header_logo {
    position: fixed;
    left: 15px;
    top: 15px;
  }
}
.l-header_logo img {
  transition: 0.4s ease;
}
.menu-open .l-header_logo img {
  opacity: 0;
}
.l-header_menu {
  display: flex;
}
@media screen and (max-width: 940px) {
  .l-header_menu {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 800;
    width: 100%;
    height: 82px;
    transition: 0.4s ease;
  }
  .l-header_menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #3E2F28;
    transition: 0.4s ease;
    opacity: 0;
    visibility: hidden;
  }
  .menu-open .l-header_menu {
    position: fixed;
    height: 100dvh;
  }
  .menu-open .l-header_menu::before {
    opacity: 1;
    visibility: visible;
  }
}
.l-header_menu_list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 940px) {
  .l-header_menu_list {
    z-index: 801;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 125px 30px 0;
  }
}
@media screen and (max-width: 700px) {
  .l-header_menu_list {
    gap: 20px;
  }
}
.l-header_menu_item {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  transition: 0.4s ease;
}
.l-header_menu_item:not(.--contact):hover {
  opacity: 0.7;
}
@media screen and (max-width: 940px) {
  .l-header_menu_item:not(.--contact) {
    opacity: 0;
    visibility: hidden;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .menu-open .l-header_menu_item:not(.--contact) {
    opacity: 1;
    visibility: visible;
  }
  .l-header_menu_item:not(.--contact) a {
    color: #fff;
  }
}
@media screen and (max-width: 700px) {
  .l-header_menu_item:not(.--contact) {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.l-header_menu_item.--top {
  display: none;
}
@media screen and (max-width: 940px) {
  .l-header_menu_item.--top {
    display: block;
  }
}
@media screen and (max-width: 940px) {
  .l-header_menu_item.--contact {
    position: absolute;
    right: 70px;
    top: 15px;
  }
}
@media screen and (max-width: 700px) {
  .l-header_menu_item.--contact {
    right: 55px;
    top: 15px;
  }
}
.l-header_menu_item.--contact .c-btn {
  margin-left: 20px;
  padding: 18px 60px;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .l-header_menu_item.--contact .c-btn {
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 700px) {
  .l-header_menu_item.--contact .c-btn {
    padding: 11px 20px 13px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.l-header_btn {
  display: none;
  position: absolute;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
@media screen and (max-width: 940px) {
  .l-header_btn {
    display: block;
    right: 10px;
    top: 15px;
    z-index: 801;
  }
  .menu-open .l-header_btn {
    position: fixed;
  }
}
@media screen and (max-width: 700px) {
  .l-header_btn {
    right: 4px;
    top: 8px;
  }
}
.l-header_btn span {
  position: absolute;
  left: 11px;
  display: block;
  width: 26px;
  height: 4px;
  background: #3E2F28;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-header_btn span:nth-of-type(1) {
  top: 12px;
  animation: menu-bar01 0.75s forwards;
}
.l-header_btn span:nth-of-type(2) {
  top: 22px;
  transition: all 0.25s 0.25s;
}
.l-header_btn span:nth-of-type(3) {
  top: 32px;
  animation: menu-bar02 0.75s forwards;
}
.menu-open .l-header_btn span:nth-of-type(1) {
  animation: active-menu-bar01 0.75s forwards;
}
.menu-open .l-header_btn span:nth-of-type(2) {
  opacity: 0;
}
.menu-open .l-header_btn span:nth-of-type(3) {
  animation: active-menu-bar03 0.75s forwards;
}
.menu-open .l-header {
  background: #fff;
}
.menu-open .l-header__logo {
  background: #000;
}
.menu-open .l-header__btn span {
  background: #000;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
    background: #3E2F28;
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
    background: #3E2F28;
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
    background: #fff;
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
    background: #fff;
  }
}
/* kv
----------------------------------------------------*/
.l-kv {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-kv_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  font-size: 36px;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 700px) {
  .l-kv_title {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
}
.l-kv_slider {
  position: absolute;
  left: 0;
  top: 0;
}
.l-kv_slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 8s ease-out;
  transform: scale(1.15);
}
.l-kv_slider .splide__slide.is-active img {
  transform: scale(1);
  transition-delay: 0s;
}
.l-kv.--index {
  position: relative;
  width: 100%;
  height: 490px;
}
@media screen and (max-width: 700px) {
  .l-kv.--index {
    height: 500px;
  }
}
.l-kv.--index .l-kv_title {
  position: relative;
  z-index: 2;
  font-size: 60px;
  font-size: 6rem;
}
@media screen and (max-width: 700px) {
  .l-kv.--index .l-kv_title {
    font-size: 34px;
    font-size: 3.4rem;
    letter-spacing: 0.14em;
  }
}
.l-kv.--about {
  position: relative;
  width: 100%;
  height: 320px;
  background: url(../images/kv_about.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 700px) {
  .l-kv.--about {
    height: 260px;
    background-image: url(../images/kv_about_sp.jpg);
  }
}
.l-kv.--worker {
  position: relative;
  width: 100%;
  height: 320px;
  background: url(../images/kv_worker.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 700px) {
  .l-kv.--worker {
    height: 260px;
    background-image: url(../images/kv_worker_sp.jpg);
  }
}
.l-kv.--interview {
  position: relative;
  width: 100%;
  height: 320px;
  background: url(../images/kv_interview.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 700px) {
  .l-kv.--interview {
    height: 260px;
    background-image: url(../images/kv_interview_sp.jpg);
  }
}
.l-kv.--text {
  height: 144px;
}
.l-kv.--text .l-kv_title {
  text-shadow: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (max-width: 700px) {
  .l-kv.--text .l-kv_title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 700px) {
  .l-kv.--text {
    height: 66px;
  }
}

/* layout
----------------------------------------------------*/
.l-center {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1240px) {
  .l-center {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.l-center.--narrow {
  max-width: 900px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 940px) {
  .l-center.--narrow {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* main
----------------------------------------------------*/
.l-main.--contact {
  padding: 50px 0 65px;
  background: #FFF8E4;
}
@media screen and (max-width: 700px) {
  .l-main.--contact {
    padding: 30px 0;
  }
}

/* breadcrumb
----------------------------------------------------*/
.l-breadcrumb {
  padding: 20px 0;
  overflow-x: auto;
}
.l-breadcrumb .l-breadcrumb_list {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.l-breadcrumb .l-breadcrumb_list .l-breadcrumb_item {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
}
.l-breadcrumb .l-breadcrumb_list .l-breadcrumb_item:not(:last-child) {
  margin-right: 10px;
}
.l-breadcrumb .l-breadcrumb_list .l-breadcrumb_item:not(:last-child):after {
  content: "";
  width: 4px;
  height: 9px;
  display: inline-block;
  background: url(../images/path.svg) no-repeat left top/contain;
  margin-left: 10px;
  vertical-align: middle;
}
.l-breadcrumb .l-breadcrumb_list .l-breadcrumb_item a:hover {
  text-decoration: underline;
}

/* pageimg
----------------------------------------------------*/
.l-pageimg {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 700px) {
  .l-pageimg {
    height: 210px;
  }
}

/* footer
----------------------------------------------------*/
.l-footer {
  padding: 60px 0;
  background: #3E2F28;
}
@media screen and (max-width: 940px) {
  .l-footer {
    padding: 40px 0;
  }
}
.l-footer_inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 940px) {
  .l-footer_inner {
    flex-direction: column;
    gap: 0;
  }
}
.l-footer_head {
  min-width: 190px;
}
.l-footer_logo {
  width: fit-content;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .l-footer_logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer_logo_txt {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #fff;
}
@media screen and (max-width: 700px) {
  .l-footer_logo_txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.l-footer_logo_img {
  width: 170px;
  margin-top: 10px;
}
@media screen and (max-width: 700px) {
  .l-footer_logo_img {
    width: 178px;
    margin-top: 13px;
  }
}
.l-footer_addr {
  margin-top: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 940px) {
  .l-footer_addr {
    white-space: normal;
  }
}
@media screen and (max-width: 700px) {
  .l-footer_addr {
    width: fit-content;
    margin: 20px auto 0;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 940px) {
  .l-footer_nav {
    margin-top: 25px;
  }
}
.l-footer_nav_list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 700px) {
  .l-footer_nav_list {
    flex-direction: column;
    gap: 25px;
  }
}
.l-footer_nav_item {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  letter-spacing: 0.05em;
}
.l-footer_nav_item a:not(.c-btn) {
  color: #fff;
  transition: 0.4s ease;
}
.l-footer_nav_item a:not(.c-btn):hover {
  opacity: 0.7;
}
@media screen and (max-width: 700px) {
  .l-footer_nav_item a:not(.c-btn) {
    padding-left: 10px;
  }
}
.l-footer_nav_item.--instagram a::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(../images/instagram.svg) no-repeat left top/contain;
  margin-left: 5px;
  vertical-align: -5px;
}
.l-footer_nav_item.--contact {
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 700px) {
  .l-footer_nav_item.--contact {
    order: -1;
  }
}
.l-footer_nav_item.--contact .c-btn {
  width: 335px;
  margin-top: 40px;
  padding: 22px 0;
}
@media screen and (max-width: 940px) {
  .l-footer_nav_item.--contact .c-btn {
    margin-top: 0;
  }
}
@media screen and (max-width: 700px) {
  .l-footer_nav_item.--contact .c-btn {
    width: 100%;
    padding: 19px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* btm
----------------------------------------------------*/
.l-btm {
  padding: 20px 0;
  line-height: 1;
}
.l-btm_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 940px) {
  .l-btm_inner {
    justify-content: center;
  }
}
@media screen and (max-width: 700px) {
  .l-btm_inner {
    flex-direction: column;
    gap: 18px;
  }
}
.l-btm_head {
  display: flex;
  align-items: center;
  gap: 15px;
}
.l-btm_head_txt {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.l-btm_head_img {
  width: 200px;
}
@media screen and (max-width: 700px) {
  .l-btm_head_img {
    width: 143px;
  }
}
.l-btm_nav {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  transition: 0.4s ease;
}
.l-btm_nav:hover {
  opacity: 0.7;
}
.l-btm_foot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 940px) {
  .l-btm_foot {
    margin-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .l-btm_foot {
    align-items: center;
    padding: 15px 0 0 0;
    border-top: 1px solid #ccc;
  }
}
.l-btm_privacy {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-btm_privacy_img {
  width: 51px;
}
@media screen and (max-width: 700px) {
  .l-btm_privacy_img {
    width: 45px;
  }
}
.l-btm_privacy_txt {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 700px) {
  .l-btm_privacy_txt {
    line-height: 1.2;
  }
}
.l-btm_copyright {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .l-btm_copyright {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/* other
----------------------------------------------------*/
.l-banner {
  margin: 100px 0;
  text-align: center;
}
@media screen and (max-width: 1240px) {
  .l-banner {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .l-banner {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.l-banner a img {
  transition: 0.4s ease;
}
@media screen and (hover: hover) {
  .l-banner:hover a img {
    opacity: 0.8;
  }
}

.c-title {
  text-align: center;
}
@media screen and (max-width: 700px) {
  .c-title {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.c-title_sub {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 700px) {
  .c-title_sub {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-title_sub::before {
  content: "";
  width: 28px;
  height: 23px;
  background: url("../images/logo_mark.png") no-repeat;
  background-size: contain;
  display: block;
  margin: 0 auto 14px auto;
}
@media screen and (max-width: 700px) {
  .c-title_sub::before {
    width: 23px;
    height: 19px;
  }
}
.c-title_main {
  display: block;
  margin: 20px 0 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 700px) {
  .c-title_main {
    margin-top: 15px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.c-subtitle {
  position: relative;
  padding: 0 0 22px 0;
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 700px) {
  .c-subtitle {
    padding-bottom: 15px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.c-subtitle::before, .c-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 50px;
  height: 2px;
}
@media screen and (max-width: 700px) {
  .c-subtitle::before, .c-subtitle::after {
    width: 35px;
  }
}
.c-subtitle::before {
  left: calc(50% - 50px);
  background-color: #E9A800;
}
@media screen and (max-width: 700px) {
  .c-subtitle::before {
    left: calc(50% - 35px);
  }
}
.c-subtitle::after {
  left: 50%;
  background-color: #3E2F28;
}

.c-txt {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 700px) {
  .c-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-txt + .c-txt {
  margin-top: 1.8em;
}

.c-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid #3E2F28;
  transition: 0.4s ease;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (hover: hover) {
  .c-btn:hover {
    background-color: #eee;
  }
}
.c-btn.--primary {
  border: none;
  background-color: #E9A800;
  color: #3E2F28;
}
@media screen and (hover: hover) {
  .c-btn.--primary:hover {
    background-color: rgb(255, 206.1802575107, 80);
  }
}
.c-btn.--secondary {
  border: none;
  border: 1px solid #3E2F28;
  background-color: #fff;
  color: #3E2F28;
}
@media screen and (hover: hover) {
  .c-btn.--secondary:hover {
    background-color: #E8E6E5;
  }
}
.c-btn.--large {
  min-width: 320px;
  padding: 18px 45px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 700px) {
  .c-btn.--large {
    min-width: calc(100vw - 40px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-btn.--arrow {
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-position: right 21px center;
  background-size: 10px 17px;
}
.c-btn.--download {
  background-image: url("../images/download.svg");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 16px 16px;
}
.c-btn.--back {
  position: relative;
}
.c-btn.--back::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 10px;
  height: 17px;
  transform: translateY(-50%) scaleX(-1);
  background: url("../images/arrow.svg") no-repeat;
  background-size: contain;
}

.c-form {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 700px) {
  .c-form {
    margin: 10px 0 0 0;
  }
}
.c-form_group {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 700px) {
  .c-form_group {
    flex-direction: column;
    gap: 10px;
  }
}
.c-form_label {
  display: block;
  min-width: 225px;
  padding: 15px 0 0;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .c-form_label {
    min-width: initial;
    padding: 0;
  }
}
.c-form_label.--required::after {
  content: "必須";
  display: inline-block;
  margin-left: 10px;
  padding: 0 3px 1px;
  background-color: #c00;
  color: #FFFFFF;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 15px;
  vertical-align: 2px;
}
@media screen and (max-width: 700px) {
  .c-form_label.--required::after {
    padding: 1px 2px 3px;
    line-height: 10px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.c-form_label.--optional::after {
  content: "任意";
  display: inline-block;
  margin-left: 10px;
  padding: 0 3px 1px;
  background-color: #707070;
  color: #FFFFFF;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 15px;
  vertical-align: 2px;
}
.c-form_label.--multiline {
  line-height: 1.4;
}
@media screen and (max-width: 700px) {
  .c-form_label.--multiline {
    line-height: 1;
  }
}
.c-form_field {
  flex-grow: 1;
  font-size: 0;
}
.c-form.--confirm .c-form_label {
  padding-top: 0;
}
.c-form.--confirm .c-form_field {
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
}
.c-form.--confirm .c-form_field p {
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  .c-form.--confirm .c-form_group {
    gap: 20px;
  }
  .c-form.--confirm .c-form_field p {
    line-height: 1.4;
  }
}
.c-form_sub {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-size: 1.2rem;
  color: #333;
}
.c-form_input {
  outline: none;
  width: 380px;
  padding: 10px 13px;
  border: 2px solid #3E2F28;
  box-sizing: border-box;
  border-radius: 3px;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .c-form_input {
    width: 100%;
  }
}
.c-form_input.--error {
  border-color: #c00;
  background-color: #FFE0E0;
}
.c-form_input.--half {
  width: 150px;
}
@media screen and (max-width: 700px) {
  .c-form_input.--half {
    width: calc(50% - 1em - 23px);
  }
}
.c-form_input + .c-form_txt {
  margin-left: 14px;
}
.c-form_txt {
  display: inline-block;
  margin-right: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  vertical-align: middle;
}
.c-form_select {
  position: relative;
  outline: none;
  width: 380px;
  padding: 14px;
  border: 2px solid #3E2F28;
  border-radius: 3px;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .c-form_select {
    width: 100%;
  }
}
.c-form_select.--error {
  border-color: #c00;
  background-color: #FFE0E0;
}
.c-form_select_wrapper {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 700px) {
  .c-form_select_wrapper {
    width: 100%;
  }
}
.c-form_select_wrapper::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 10px;
  width: 9px;
  height: 8px;
  background-color: #333333;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.c-form_textarea {
  outline: none;
  width: 100%;
  height: 260px;
  padding: 10px 13px;
  border: 2px solid #3E2F28;
  box-sizing: border-box;
  border-radius: 3px;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  .c-form_textarea {
    height: 170px;
  }
}
.c-form_textarea.--error {
  border-color: #c00;
  background-color: #FFE0E0;
}
.c-form_checkbox {
  vertical-align: 0;
  margin-right: 5px;
}
.c-form_btm {
  margin: 40px 0 0 0;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 700px) {
  .c-form_btm {
    margin: 25px 0 0 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.c-form_btm_box {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.c-form_btm_box + .c-form_btm_box {
  margin-top: 30px;
}
.c-form_btm a {
  color: #0559A8;
}
.c-form_btm .c-btn {
  margin-top: 20px;
  padding: 25px 75px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 700px) {
  .c-form_btm .c-btn {
    width: 100%;
    padding: 22px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-form_btm a.c-btn {
  color: #3E2F28;
}
.c-form_btm_inner {
  margin-top: 10px;
}
.c-form_btm_inner .c-btn {
  display: block;
  width: fit-content;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 700px) {
  .c-form_btm_inner .c-btn {
    min-width: initial;
    width: 100%;
  }
}
.c-form_error {
  margin-top: 10px;
  padding: 12px 12px 14px 45px;
  background: url(../images/error.svg) no-repeat 15px 50%/20px 20px #FFE0E0;
  line-height: 1;
  color: #c00;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: left;
}
.c-form_confirm {
  padding: 12px 13px;
  border: 2px solid #3E2F28;
  box-sizing: border-box;
  border-radius: 3px;
  background: #f7f7f7;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.c-pagination {
  margin: 80px 0;
}
@media screen and (max-width: 700px) {
  .c-pagination {
    margin: 40px 0;
  }
}
.c-pagination_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagination_item {
  width: 39px;
  height: 39px;
}
.c-pagination_item a, .c-pagination_item span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  line-height: 39px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  transition: 0.4s ease;
}
.c-pagination_item a {
  color: #3E2F28;
}
.c-pagination_item span {
  background: #3E2F28;
  color: #fff;
}
.c-pagination_item.--skip {
  text-align: center;
}
.c-pagination_item.--prev a, .c-pagination_item.--next a {
  position: relative;
  border: 1px solid #3E2F28;
}
.c-pagination_item.--prev a::after, .c-pagination_item.--next a::after {
  content: "";
  position: absolute;
  left: calc(50% - 2px);
  top: calc(50% - 4px);
  display: block;
  width: 6px;
  height: 10px;
  background: url(../images/pagination.svg) no-repeat;
  background-size: contain;
}
.c-pagination_item.--prev {
  margin-right: 39px;
}
.c-pagination_item.--prev a::after {
  transform: rotate(180deg);
}
.c-pagination_item.--next {
  margin-left: 39px;
}
@media screen and (hover: hover) {
  .c-pagination a:hover {
    background-color: #E8E6E5;
  }
}

.u-center {
  text-align: center;
}
.u-center-pc {
  text-align: center;
}
@media screen and (max-width: 700px) {
  .u-center-pc {
    text-align: left;
  }
}

.u-pc {
  display: block;
}
@media screen and (max-width: 700px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .u-sp {
    display: inline-block;
  }
}

/* index
----------------------------------------------------*/
.p-index_content {
  display: flex;
  gap: 50px;
  margin: 40px 0 0 0;
  padding: 0 0 0 100px;
}
@media screen and (max-width: 1240px) {
  .p-index_content {
    padding-left: 50px;
  }
}
@media screen and (max-width: 700px) {
  .p-index_content {
    flex-direction: column;
    gap: 65px;
    margin: 30px 0 0 0;
    padding: 0;
  }
}
.p-index_content.--shiitake {
  margin-top: 50px;
  padding: 0 100px 0 0;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1240px) {
  .p-index_content.--shiitake {
    padding-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  .p-index_content.--shiitake {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding: 0;
  }
}
.p-index_content_txt {
  flex-grow: 1;
}
@media screen and (max-width: 700px) {
  .p-index_content_txt {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.p-index_content_img {
  flex-shrink: 0;
  width: 50vw;
}
@media screen and (max-width: 700px) {
  .p-index_content_img {
    width: auto;
    margin-left: 20px;
  }
}
.p-index_content_img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 700px) {
  .p-index_content_img img {
    min-height: 235px;
    object-fit: cover;
    object-position: left center;
  }
}
@media screen and (max-width: 700px) {
  .p-index_content.--shiitake .p-index_content_img {
    margin: 0 20px 0 0;
  }
  .p-index_content.--shiitake .p-index_content_img img {
    object-position: right center;
  }
}
.p-index_about {
  margin-top: 100px;
}
@media screen and (max-width: 700px) {
  .p-index_about {
    margin-top: 45px;
  }
}
.p-index_about .p-index_content_img {
  position: relative;
}
.p-index_about .p-index_content_img::before {
  content: "";
  position: absolute;
  top: -28px;
  right: 44px;
  width: clamp(102px, 13.3571428571vw, 187px);
  height: clamp(90px, 11.7857142857vw, 165px);
  background: url(../images/award.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 700px) {
  .p-index_about .p-index_content_img::before {
    top: -35px;
    right: 30px;
  }
}
.p-index_about_companies {
  margin-top: 70px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-index_about_companies {
    margin-top: 40px;
  }
}
.p-index_about_companies_list {
  margin-top: 30px;
}
.p-index_about_companies .c-btn {
  margin-top: 60px;
}
@media screen and (max-width: 700px) {
  .p-index_about_companies .c-btn {
    margin-top: 40px;
  }
}
.p-index_shiitake {
  margin-top: 100px;
}
@media screen and (max-width: 700px) {
  .p-index_shiitake {
    margin-top: 60px;
  }
}
.p-index_shiitake_stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 700px) {
  .p-index_shiitake_stats {
    margin-bottom: 30px;
  }
}
.p-index_shiitake_stats_item {
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 100px;
  background: #3E2F28;
  text-align: center;
  line-height: 1;
}
.p-index_shiitake_stats_label {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}
.p-index_shiitake_stats_value {
  margin-top: 10px;
  color: #E9A800;
  font-weight: 700;
  line-height: 40px;
}
.p-index_shiitake_stats_value01 {
  font-size: 34px;
  font-size: 3.4rem;
  font-family: "Roboto", sans-serif;
}
.p-index_shiitake_stats_value02 {
  font-size: 18px;
  font-size: 1.8rem;
}
.p-index_shiitake_stats_value03 {
  font-size: 40px;
  font-size: 4rem;
  font-family: "Roboto", sans-serif;
}
.p-index_shiitake_stores {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-index_shiitake_stores {
    margin-top: 40px;
  }
}
.p-index_shiitake_stores_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-top: 30px;
}
@media screen and (max-width: 1240px) {
  .p-index_shiitake_stores_list {
    padding: 0 50px;
  }
}
@media screen and (max-width: 700px) {
  .p-index_shiitake_stores_list {
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 20px 0;
    padding: 0;
  }
}
@media screen and (max-width: 700px) {
  .p-index_shiitake_stores_item img {
    max-width: 95px;
    height: 72px;
    object-fit: contain;
    object-position: center center;
  }
}
.p-index_shiitake_stores_sub {
  margin: 15px 100px 0 0;
  color: #7A6262;
  text-align: right;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1240px) {
  .p-index_shiitake_stores_sub {
    margin-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  .p-index_shiitake_stores_sub {
    margin-right: 20px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.p-index_news {
  margin-top: 50px;
  padding: 100px 0;
  background: #E8E6E5;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-index_news {
    margin-top: 60px;
    padding: 60px 0;
  }
}
.p-index_news_inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-index_news_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-index_news_title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.p-index_news_list {
  margin-top: 30px;
}
@media screen and (max-width: 700px) {
  .p-index_news_list {
    margin-top: 15px;
  }
}
.p-index_news_item {
  border-bottom: 1px solid #ccc;
}
.p-index_news_link {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  text-align: left;
  transition: 0.4s ease;
}
@media screen and (max-width: 700px) {
  .p-index_news_link {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 15px 0;
  }
}
.p-index_news_link::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 7px;
  height: 15px;
  margin: 0 0 0 auto;
  background: url(../images/arrow.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 700px) {
  .p-index_news_link::after {
    position: absolute;
    right: 0;
    top: calc((100% - 17px) / 2 + 7.5px);
  }
}
@media screen and (hover: hover) {
  .p-index_news_link:hover {
    background-color: #fff;
  }
}
.p-index_news_date {
  align-self: flex-start;
  font-family: "Roboto", sans-serif;
  flex-shrink: 0;
  color: #7A6262;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.2;
  white-space: nowrap;
}
@media screen and (max-width: 700px) {
  .p-index_news_date {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
  }
}
.p-index_news_text {
  max-width: calc(100% - 4em);
  font-weight: 700;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 700px) {
  .p-index_news_text {
    max-width: initial;
    margin-right: 20px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-index_news .c-btn {
  margin-top: 50px;
}
@media screen and (max-width: 700px) {
  .p-index_news .c-btn {
    margin-top: 30px;
  }
}

/* about
----------------------------------------------------*/
.p-about_vision {
  margin-top: 100px;
}
@media screen and (max-width: 700px) {
  .p-about_vision {
    margin-top: 60px;
  }
  .p-about_vision .p-index_content {
    gap: 30px;
  }
}
.p-about_vision .c-title {
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .p-about_vision .c-title {
    text-align: center;
  }
}
.p-about_vision .c-title_sub::before {
  margin-left: 7px;
}
@media screen and (max-width: 700px) {
  .p-about_vision .c-title_sub::before {
    margin-left: auto;
  }
}
.p-about_approach {
  counter-reset: title;
  margin-top: 65px;
  padding: 100px 0;
  background: #E8E6E5;
}
@media screen and (max-width: 1240px) {
  .p-about_approach {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .p-about_approach {
    margin-top: 60px;
    padding: 60px 20px;
  }
}
.p-about_approach_title {
  counter-increment: title 1;
  margin: 120px 0 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.07em;
  vertical-align: middle;
}
@media screen and (max-width: 700px) {
  .p-about_approach_title {
    display: flex;
    align-items: center;
    margin-top: 80px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
    text-align: left;
  }
}
.p-about_approach_title::before {
  content: counter(title, decimal-leading-zero);
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
  color: #E9A800;
  font-family: "Roboto", sans-serif;
  font-size: 96px;
  font-size: 9.6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 700px) {
  .p-about_approach_title::before {
    margin-right: 10px;
    font-size: 50px;
    font-size: 5rem;
    line-height: 1;
  }
}
.p-about_approach_title.--first {
  margin-top: 50px;
}
@media screen and (max-width: 700px) {
  .p-about_approach_title.--first {
    margin-top: 30px;
  }
}
.p-about_approach_text {
  margin-top: 30px;
}
@media screen and (max-width: 700px) {
  .p-about_approach_text.u-center {
    text-align: left;
  }
}
.p-about_approach_link {
  margin-top: 40px;
  text-align: center;
}
.p-about_approach_link a {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (hover: hover) {
  .p-about_approach_link a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 700px) {
  .p-about_approach_link a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-about_approach_link a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 15px;
  margin: 0 0 0 10px;
  background: url(../images/arrow.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.p-about_approach_content {
  margin-top: 50px;
  padding: 60px 50px;
  background: #fff;
}
@media screen and (max-width: 700px) {
  .p-about_approach_content {
    margin-top: 30px;
    padding: 50px 20px;
  }
  .p-about_approach_content.--model {
    padding: 25px 20px;
    border: 6px solid #F2E4BF;
    border-radius: 9px;
  }
}
.p-about_approach_content_title {
  padding: 5px;
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
  color: #C1563D;
}
@media screen and (max-width: 700px) {
  .p-about_approach_content_title {
    padding: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-about_workflow {
  counter-reset: work;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 100px;
  margin-top: 60px;
  padding-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .p-about_workflow {
    flex-direction: column;
    gap: 90px;
    margin-top: 50px;
    padding-bottom: 50px;
  }
}
.p-about_workflow_item {
  counter-increment: work 1;
  position: relative;
  flex-shrink: 0;
  width: 470px;
  padding: 40px 170px 30px 30px;
  border-radius: 0 50px 0 50px;
  background: #FFF8E5;
}
@media screen and (max-width: 1240px) {
  .p-about_workflow_item {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 700px) {
  .p-about_workflow_item {
    width: 100%;
    padding: 25px 20px 160px 20px;
    border-radius: 0 25px 0 25px;
  }
}
.p-about_workflow_item:nth-of-type(2n) {
  background: #F2E4BF;
}
.p-about_workflow_item::before {
  content: counter(work, decimal-leading-zero);
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: #3E2F28;
}
@media screen and (max-width: 700px) {
  .p-about_workflow_item::before {
    top: -20px;
    right: 15px;
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.p-about_workflow_name {
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .p-about_workflow_name {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.p-about_workflow_desc {
  margin-top: 20px;
}
@media screen and (max-width: 700px) {
  .p-about_workflow_desc {
    margin-top: 15px;
  }
}
.p-about_workflow_img {
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 1240px) {
  .p-about_workflow_img {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 700px) {
  .p-about_workflow_img {
    bottom: -60px;
    right: auto;
    left: calc(50% - 97.5px);
    width: 195px;
    height: 195px;
  }
}
.p-about_model {
  text-align: center;
}
.p-about_model img {
  max-width: 462px;
  width: 100%;
}
.p-about_activities {
  display: flex;
  gap: 0 40px;
}
@media screen and (max-width: 700px) {
  .p-about_activities {
    flex-direction: column;
    gap: 40px;
  }
}
.p-about_activities_item {
  flex-shrink: 0;
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 700px) {
  .p-about_activities_item {
    width: 100%;
  }
}
.p-about_activities_title {
  margin-top: 30px;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-about_activities_title {
    margin-top: 20px;
    font-weight: 500;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-about_results {
  padding: 100px 0 60px;
  background: #FFF8E5;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-about_results {
    padding: 60px 0;
  }
}
.p-about_results_lead {
  margin: 40px 0 0 0;
}
@media screen and (max-width: 700px) {
  .p-about_results_lead {
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
  }
}
.p-about_results_note {
  max-width: 1100px;
  margin: 25px auto 0;
  text-align: right;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1240px) {
  .p-about_results_note {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .p-about_results_note {
    margin-top: 20px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.p-about_stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 50px auto 0;
}
@media screen and (max-width: 700px) {
  .p-about_stats {
    gap: 9px;
    margin: 30px 20px 0;
  }
}
.p-about_stats_item {
  width: 340px;
  padding: 30px 0;
  border-radius: 25px;
  background: #fff;
}
@media screen and (max-width: 700px) {
  .p-about_stats_item {
    border-radius: 15px;
    width: calc(50% - 4.5px);
    padding: 20px 0;
  }
}
.p-about_stats_item:nth-of-type(1) img {
  width: 141px;
}
@media screen and (max-width: 700px) {
  .p-about_stats_item:nth-of-type(1) img {
    width: 90px;
  }
}
.p-about_stats_item:nth-of-type(2) img {
  width: 214px;
}
@media screen and (max-width: 700px) {
  .p-about_stats_item:nth-of-type(2) img {
    width: 136px;
  }
}
.p-about_stats_item:nth-of-type(3) img {
  width: 132px;
}
@media screen and (max-width: 700px) {
  .p-about_stats_item:nth-of-type(3) img {
    width: 84px;
  }
}
.p-about_stats_item:nth-of-type(4) img {
  width: 195px;
}
@media screen and (max-width: 700px) {
  .p-about_stats_item:nth-of-type(4) img {
    width: 126px;
  }
}
.p-about_stats_item:nth-of-type(5) img {
  width: 174px;
}
@media screen and (max-width: 700px) {
  .p-about_stats_item:nth-of-type(5) img {
    width: 111px;
  }
}
.p-about_stats_item:nth-of-type(6) img {
  width: 141px;
}
@media screen and (max-width: 700px) {
  .p-about_stats_item:nth-of-type(6) img {
    width: 90px;
  }
}
.p-about_stats_lead {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 700px) {
  .p-about_stats_lead {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-about_stats_note {
  margin-top: 7px;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .p-about_stats_note {
    font-size: 10px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.2;
  }
}
.p-about_products {
  margin-top: 100px;
}
@media screen and (max-width: 1240px) {
  .p-about_products {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .p-about_products {
    margin-top: 60px;
  }
}
.p-about_products_lead {
  margin-top: 40px;
}
@media screen and (max-width: 700px) {
  .p-about_products_lead {
    margin-top: 30px;
    text-align: left;
  }
}
.p-about_products_list {
  display: flex;
  max-width: 1100px;
  gap: 40px;
  margin: 40px auto 0;
}
@media screen and (max-width: 700px) {
  .p-about_products_list {
    flex-direction: column;
    margin-top: 30px;
  }
}
.p-about_products_item {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 700px) {
  .p-about_products_item {
    width: 100%;
  }
}
.p-about_products_item_desc {
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-about_products_item_desc {
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-about_products_item_title {
  margin-top: 15px;
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 700px) {
  .p-about_products_item_title {
    margin-top: 7px;
    font-size: 20px;
    font-size: 2rem;
  }
}

/* worker
----------------------------------------------------*/
.p-worker_merit {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-worker_merit {
    margin-top: 60px;
  }
  .p-worker_merit .p-index_content {
    gap: 30px;
  }
  .p-worker_merit .p-index_content_img {
    display: none;
  }
  .p-worker_merit::after {
    content: "";
    display: block;
    width: calc(100% - 20px);
    height: 235px;
    margin: 40px 0 0 20px;
    object-position: left center;
    background: url(../images/worker01.jpg) no-repeat;
    background-size: cover;
  }
}
.p-worker_merit .p-index_content {
  text-align: left;
}
.p-worker_merit .c-title {
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .p-worker_merit .c-title {
    text-align: center;
  }
}
.p-worker_merit .c-title_main {
  margin: 0 0 40px;
}
.p-worker_merit .c-title_sub::before {
  margin-left: 7px;
}
@media screen and (max-width: 700px) {
  .p-worker_merit .c-title_sub::before {
    margin-left: auto;
  }
}
.p-worker_merit_list {
  counter-reset: merit;
  display: flex;
  gap: 60px;
  margin: 40px 100px 0;
  text-align: left;
}
@media screen and (max-width: 1240px) {
  .p-worker_merit_list {
    margin: 40px 50px 0;
  }
}
@media screen and (max-width: 940px) {
  .p-worker_merit_list {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_merit_list {
    margin: 60px 20px 0;
  }
}
.p-worker_merit_item {
  counter-increment: merit 1;
  flex-shrink: 0;
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1330px) {
  .p-worker_merit_item:nth-of-type(1) br.u-pc {
    display: none;
  }
}
@media screen and (max-width: 940px) {
  .p-worker_merit_item {
    width: 100%;
  }
  .p-worker_merit_item br {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_merit_item {
    width: 100%;
  }
  .p-worker_merit_item br.u-sp {
    display: block;
  }
}
.p-worker_merit_item:nth-of-type(2) .p-worker_merit_title::before, .p-worker_merit_item:nth-of-type(3) .p-worker_merit_title::before {
  margin-right: 10px;
}
@media screen and (max-width: 700px) {
  .p-worker_merit_item:nth-of-type(2) .p-worker_merit_title::before, .p-worker_merit_item:nth-of-type(3) .p-worker_merit_title::before {
    margin-right: 0;
  }
}
.p-worker_merit_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 1050px) {
  .p-worker_merit_title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_merit_title {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-worker_merit_title::before {
  content: counter(merit, decimal-leading-zero);
  display: inline-block;
  color: #E9A800;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 66px;
  font-size: 6.6rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .p-worker_merit_title::before {
    font-size: 50px;
    font-size: 5rem;
  }
}
.p-worker_merit_text {
  margin-top: 30px;
}
@media screen and (max-width: 700px) {
  .p-worker_merit_text {
    margin-top: 20px;
  }
}
.p-worker_merit .c-btn {
  margin-top: 60px;
}
@media screen and (max-width: 700px) {
  .p-worker_merit .c-btn {
    margin-top: 30px;
  }
}
.p-worker_day {
  margin-top: 100px;
  padding: 100px 0;
  background: #E8E6E5;
}
@media screen and (max-width: 1240px) {
  .p-worker_day {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_day {
    margin-top: 60px;
    padding: 60px 20px 70px;
  }
}
.p-worker_day_schedule {
  width: 820px;
  margin: 50px auto 0;
}
@media screen and (max-width: 940px) {
  .p-worker_day_schedule {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_day_schedule {
    margin-top: 30px;
  }
}
.p-worker_day_schedule > div {
  display: flex;
}
.p-worker_day_schedule_label {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  border: 2px solid #fff;
  background: #3E2F28;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.3em;
}
.p-worker_day_schedule_am .p-worker_day_schedule_label {
  position: relative;
  z-index: 2;
  border-bottom: none;
}
.p-worker_day_schedule_am .p-worker_day_schedule_label::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 28px 0 28px;
  border-color: #fff transparent transparent transparent;
}
.p-worker_day_schedule_am .p-worker_day_schedule_label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 28px 0 28px;
  border-color: #3E2F28 transparent transparent transparent;
}
.p-worker_day_schedule_item {
  display: flex;
}
@media screen and (max-width: 940px) {
  .p-worker_day_schedule_item {
    flex-direction: column;
  }
}
.p-worker_day_schedule_list {
  flex-grow: 1;
  overflow: hidden;
}
.p-worker_day_schedule_time {
  position: relative;
  flex-shrink: 0;
  width: 250px;
  margin: 0 0 2px 0;
  padding: 20px 0 0 0;
  border-top: 2px solid #fff;
  border-bottom: 20px solid #E8E6E5;
  background: #3E2F28;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 940px) {
  .p-worker_day_schedule_time {
    width: 100%;
    border-right: 2px solid #fff;
    border-bottom: none;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_day_schedule_time {
    padding-top: 15px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
  }
}
.p-worker_day_schedule_time::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 125px 0 125px;
  border-color: #fff transparent transparent transparent;
}
@media screen and (max-width: 940px) {
  .p-worker_day_schedule_time::before {
    border-width: 20px calc((100vw - 102px) / 2) 0 calc((100vw - 102px) / 2);
  }
}
.p-worker_day_schedule_time::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 125px 0 125px;
  border-color: #3E2F28 transparent transparent transparent;
}
@media screen and (max-width: 940px) {
  .p-worker_day_schedule_time::after {
    border-width: 20px calc((100vw - 102px) / 2) 0 calc((100vw - 102px) / 2);
  }
}
.p-worker_day_schedule_do {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 90px;
  padding: 10px;
  border-bottom: 20px solid #E8E6E5;
  background: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 940px) {
  .p-worker_day_schedule_do {
    height: auto;
    padding: 30px 10px 20px;
    border-bottom: none;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_day_schedule_do {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-worker_select {
  counter-reset: select;
  margin-top: 100px;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .p-worker_select {
    margin-top: 60px;
  }
  .p-worker_select .p-index_content {
    gap: 30px;
  }
  .p-worker_select::after {
    content: "";
    display: block;
    width: calc(100% - 20px);
    height: 235px;
    margin: 40px 20px 0 0;
    object-position: right center;
    background: url(../images/worker02.jpg) no-repeat right top;
    background-size: cover;
  }
}
.p-worker_select .p-index_content {
  flex-direction: row-reverse;
  padding: 0 100px 0 0;
}
@media screen and (max-width: 1240px) {
  .p-worker_select .p-index_content {
    padding-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_select .p-index_content {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding: 0;
  }
  .p-worker_select .p-index_content .p-index_content_img {
    display: none;
  }
}
.p-worker_select .c-title {
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .p-worker_select .c-title {
    text-align: center;
  }
}
.p-worker_select .c-title_main {
  margin: 0 0 40px;
}
.p-worker_select .c-title_sub::before {
  margin-left: 7px;
}
@media screen and (max-width: 700px) {
  .p-worker_select .c-title_sub::before {
    margin-left: auto;
  }
}
.p-worker_select_inner {
  counter-increment: select 1;
  margin-top: 45px;
}
@media screen and (max-width: 700px) {
  .p-worker_select_inner {
    margin-top: 30px;
  }
}
.p-worker_select_inner + .p-worker_select_inner {
  margin-top: 25px;
}
@media screen and (max-width: 700px) {
  .p-worker_select_inner + .p-worker_select_inner {
    margin-top: 40px;
  }
}
.p-worker_select_lead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 700px) {
  .p-worker_select_lead {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.p-worker_select_lead::before {
  content: counter(select, decimal-leading-zero);
  display: inline-block;
  vertical-align: middle;
  font-size: 40px;
  font-size: 4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #E9A800;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .p-worker_select_lead::before {
    font-size: 50px;
    font-size: 5rem;
  }
}
.p-worker_select_lead small {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 700px) {
  .p-worker_select_lead small {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-worker_select_box {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px 50px;
  border-radius: 15px;
  background: #FFF8E5;
}
@media screen and (max-width: 940px) {
  .p-worker_select_box {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_select_box {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
  }
  .p-worker_select_box .c-txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-worker_select_title {
  margin: 0 0 30px 0;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-worker_select_title {
    margin-bottom: 20px;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: left;
  }
}
.p-worker_access {
  margin-top: 100px;
  padding: 100px 0;
  background: #FFF8E5;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-worker_access {
    margin-top: 60px;
    padding: 60px 20px;
    text-align: left;
  }
}
.p-worker_access .c-txt {
  margin: 40px 0;
}
.p-worker_flow {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-worker_flow {
    margin-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
  }
}
.p-worker_flow_lead {
  margin-top: 40px;
}
@media screen and (max-width: 700px) {
  .p-worker_flow_lead {
    margin-top: 30px;
  }
}
.p-worker_flow_list {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1080px;
  margin: 50px auto 0;
}
@media screen and (max-width: 1120px) {
  .p-worker_flow_list {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_flow_list {
    flex-direction: column;
    margin: 30px 0 0 0;
  }
}
.p-worker_flow_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  width: calc((100% - 120px) / 4);
  padding: 50px 20px 25px;
  border-radius: 20px;
  border: 4px solid rgba(62, 47, 40, 0.3);
}
@media screen and (max-width: 700px) {
  .p-worker_flow_item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 20px 30px 20px 60px;
  }
}
.p-worker_flow_item::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: -35px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #7A6262;
}
@media screen and (max-width: 700px) {
  .p-worker_flow_item::after {
    top: auto;
    right: auto;
    left: calc(50% - 10px);
    bottom: -35px;
    border-width: 20px 10px 0 10px;
    border-color: #7A6262 transparent transparent transparent;
  }
}
.p-worker_flow_item:last-of-type::after {
  display: none;
}
.p-worker_flow_step {
  position: absolute;
  left: calc(50% - 30px);
  top: -26px;
  width: 60px;
  height: 60px;
  padding: 10px 0 0 0;
  border-radius: 30px;
  background: #C1563D;
  text-align: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .p-worker_flow_step {
    left: -8px;
    top: calc(50% - 30px);
  }
}
.p-worker_flow_step span {
  display: block;
  font-weight: 700;
  font-size: 27px;
  font-size: 2.7rem;
}
.p-worker_flow_txt {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.1;
  color: #3E2F28;
}
@media screen and (max-width: 700px) {
  .p-worker_flow_txt {
    flex-grow: 1;
    text-align: center;
  }
}
.p-worker_flow_note {
  margin-top: 30px;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 700px) {
  .p-worker_flow_note {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
  }
}
.p-worker_flow .c-btn {
  margin-top: 40px;
}
@media screen and (max-width: 700px) {
  .p-worker_flow .c-btn {
    margin-top: 30px;
  }
}
.p-worker_faq {
  margin-top: 100px;
  padding: 100px 0;
  background: #FFF8E5;
}
@media screen and (max-width: 700px) {
  .p-worker_faq {
    margin-top: 60px;
    padding: 60px 0;
  }
  .p-worker_faq .c-title_sub {
    line-height: 1.4;
  }
}
.p-worker_faq_list {
  max-width: 800px;
  margin: 50px auto 0;
  border-bottom: 1px solid #E8E6E5;
}
@media screen and (max-width: 840px) {
  .p-worker_faq_list {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.p-worker_faq_q {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 30px 50px 30px 0;
  border-top: 1px solid #E8E6E5;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .p-worker_faq_q {
    padding: 20px 50px 20px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-worker_faq_q::before {
  content: "Q.";
  display: inline-block;
  margin-right: 1em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .p-worker_faq_q::before {
    margin-right: 0.5em;
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.p-worker_faq_q::after {
  content: "＋";
  position: absolute;
  right: 10px;
  top: 30px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  font-weight: 400;
  font-size: 24px;
  font-size: 2.4rem;
  pointer-events: none;
}
.p-worker_faq_q.--open::after {
  content: "－";
}
.p-worker_faq_a {
  display: flex;
  align-items: flex-start;
  padding: 0 50px 30px 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 700px) {
  .p-worker_faq_a {
    padding-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-worker_faq_a::before {
  content: "A.";
  display: inline-block;
  margin-right: 1em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .p-worker_faq_a::before {
    margin-right: 0.5em;
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.p-worker_supporter {
  padding: 100px 0;
  text-align: center;
}
@media screen and (max-width: 940px) {
  .p-worker_supporter {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .p-worker_supporter {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: left;
  }
}
.p-worker_supporter .c-txt {
  margin: 40px 0;
}
@media screen and (max-width: 700px) {
  .p-worker_supporter .c-txt {
    margin: 30px 0;
  }
}

/* access
----------------------------------------------------*/
.p-access_bg {
  padding: 90px 0;
  background: #E8E6E5;
}
@media screen and (max-width: 700px) {
  .p-access_bg {
    padding: 60px 0;
  }
}
.p-access_bg + .c-btn {
  display: block;
  width: fit-content;
  margin: 70px auto 100px;
}
@media screen and (max-width: 700px) {
  .p-access_bg + .c-btn {
    margin: 45px auto;
  }
}
.p-access_list {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .p-access_list {
    margin: 0 20px;
  }
}
@media screen and (max-width: 940px) {
  .p-access_list {
    gap: 20px;
  }
}
@media screen and (max-width: 700px) {
  .p-access_list {
    flex-direction: column;
    gap: 60px;
  }
}
.p-access_item {
  flex-shrink: 0;
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 940px) {
  .p-access_item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 700px) {
  .p-access_item {
    width: 100%;
  }
}
.p-access_title {
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 700px) {
  .p-access_title {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-access_title small {
  margin-left: 30px;
  color: #C1563D;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 940px) {
  .p-access_title small {
    margin-left: 1em;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-access_img {
  margin-top: 30px;
}
@media screen and (max-width: 700px) {
  .p-access_img {
    margin-top: 20px;
  }
}
.p-access_txt {
  margin-top: 20px;
}
.p-access_map {
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding-top: 38.46%;
}
@media screen and (max-width: 700px) {
  .p-access_map {
    padding-top: 53.75%;
  }
}
.p-access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* interview
----------------------------------------------------*/
.p-interview_wrap {
  margin-top: 100px;
}
@media screen and (max-width: 700px) {
  .p-interview_wrap {
    margin-top: 60px;
  }
}
.p-interview_list {
  display: flex;
  flex-wrap: wrap;
  gap: 120px 40px;
  max-width: 1100px;
  margin: 50px auto 80px;
}
@media screen and (max-width: 1140px) {
  .p-interview_list {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 940px) {
  .p-interview_list {
    gap: 80px 40px;
  }
}
@media screen and (max-width: 700px) {
  .p-interview_list {
    margin: 30px 20px 55px;
    flex-direction: column;
    gap: 45px;
  }
}
.p-interview_item {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 940px) {
  .p-interview_item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 700px) {
  .p-interview_item {
    width: 100%;
    padding: 0 0 45px 0;
    border-bottom: 1px solid #E8E6E5;
  }
}
.p-interview_item .c-btn {
  min-width: initial;
  width: calc(100% - 20px);
  margin: 33px 10px 0;
}
@media screen and (max-width: 700px) {
  .p-interview_item .c-btn {
    margin: 24px 0 0;
  }
}
.p-interview_item.--external .p-interview_title::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 21px;
  margin: 0 0 0 4px;
  background: url(../images/ext.png) no-repeat;
  background-size: contain;
  vertical-align: -4px;
}
@media screen and (hover: hover) {
  .p-interview_item a:hover .p-interview_img img {
    transform: scale(1.05);
  }
  .p-interview_item a:hover .p-interview_content {
    color: #7A6262;
  }
  .p-interview_item a:hover .c-btn {
    background-color: #E8E6E5;
  }
}
.p-interview_img {
  overflow: hidden;
  border-radius: 15px;
}
.p-interview_img img {
  transition: 0.4s ease;
}
.p-interview_content {
  transition: 0.4s ease;
}
.p-interview_title {
  margin: 17px 0 0 0;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.8;
}
.p-interview_person {
  margin: 7px 0 0 0;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.p-interview_detail {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  .p-interview_detail {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.p-interview_head {
  margin: 120px 0 0 0;
  padding: 0 0 43px;
  border-bottom: 1px solid #E8E6E5;
}
@media screen and (max-width: 700px) {
  .p-interview_head {
    margin-top: 40px;
    padding-bottom: 10px;
  }
}
.p-interview_head_lead {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  color: #7A6262;
}
@media screen and (max-width: 700px) {
  .p-interview_head_lead {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-interview_head_main {
  margin: 12px 0 0 0;
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  .p-interview_head_main {
    margin-top: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-interview_head_person {
  margin: 30px 0 0 0;
  font-weight: 500;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 700px) {
  .p-interview_head_person {
    margin-top: 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-interview_body h3 {
  margin: 80px 0 0 0;
}
@media screen and (max-width: 700px) {
  .p-interview_body h3 {
    margin-top: 35px;
  }
  .p-interview_body h3 .c-title_sub {
    line-height: 1.4;
  }
}
.p-interview_body h4 {
  margin: 60px 0 0 0;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 700px) {
  .p-interview_body h4 {
    margin-top: 30px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-interview_body p + h4 {
  margin: 80px 0 0 0;
}
@media screen and (max-width: 700px) {
  .p-interview_body p + h4 {
    margin-top: 50px;
  }
}
.p-interview_body p {
  margin: 20px 0 0 0;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 700px) {
  .p-interview_body p {
    margin-top: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-interview_body p + h3 {
  margin: 100px 0 0 0;
}
@media screen and (max-width: 700px) {
  .p-interview_body p + h3 {
    margin-top: 60px;
  }
}
.p-interview_body img {
  display: block;
  max-width: 650px;
  width: 100%;
  margin: 60px auto 0;
}
@media screen and (max-width: 700px) {
  .p-interview_body img {
    margin-top: 40px;
  }
}
.p-interview_body img + h3 {
  margin: 100px 0 0 0;
}
@media screen and (max-width: 700px) {
  .p-interview_body img + h3 {
    margin-top: 40px;
  }
}
.p-interview_body img + h4 {
  margin: 80px 0 0 0;
}
@media screen and (max-width: 700px) {
  .p-interview_body img + h4 {
    margin-top: 20px;
  }
}
.p-interview_foot {
  max-width: 320px;
  margin: 80px auto 100px;
}
@media screen and (max-width: 700px) {
  .p-interview_foot {
    margin-top: 40px;
    margin-bottom: 70px;
  }
  .p-interview_foot .c-btn {
    min-width: initial;
    width: 100%;
  }
}
.p-interview_foot .c-btn + .c-btn {
  margin-top: 20px;
}
@media screen and (max-width: 700px) {
  .p-interview_foot .c-btn + .c-btn {
    margin-top: 15px;
  }
}

/* info
----------------------------------------------------*/
.p-info_list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 40px;
  max-width: 1100px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1140px) {
  .p-info_list {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 940px) {
  .p-info_list {
    gap: 80px 40px;
  }
}
@media screen and (max-width: 700px) {
  .p-info_list {
    margin: 30px 20px 55px;
    flex-direction: column;
    gap: 45px;
  }
}
.p-info_item {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 940px) {
  .p-info_item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 700px) {
  .p-info_item {
    width: 100%;
    padding: 0 0 45px 0;
    border-bottom: 1px solid #E8E6E5;
  }
}
.p-info_item .c-btn {
  min-width: initial;
  width: calc(100% - 20px);
  margin: 33px 10px 0;
}
@media screen and (max-width: 700px) {
  .p-info_item .c-btn {
    margin: 24px 0 0;
  }
}
@media screen and (hover: hover) {
  .p-info_item a:hover .p-interview_img img {
    transform: scale(1.05);
  }
  .p-info_item a:hover .p-interview_content {
    color: #7A6262;
  }
  .p-info_item a:hover .c-btn {
    background-color: #E8E6E5;
  }
}
.p-info_img {
  overflow: hidden;
  border-radius: 15px;
}
.p-info_img img {
  transition: 0.4s ease;
}
.p-info_content {
  transition: 0.4s ease;
}
.p-info_date {
  display: block;
  margin: 20px 0 0 0;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  color: #7A6262;
  font-family: "Roboto", sans-serif;
}
.p-info_title {
  margin: 17px 0 0 0;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.8;
}
.p-info_detail {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  .p-info_detail {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.p-info_head {
  margin: 40px 0 0 0;
}
@media screen and (max-width: 700px) {
  .p-info_head {
    margin-top: 40px;
  }
}
.p-info_head_date {
  display: block;
  margin: 20px 0 0 0;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  color: #7A6262;
  font-family: "Roboto", sans-serif;
}
.p-info_head_main {
  margin: 12px 0 0 0;
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  .p-info_head_main {
    margin-top: 10px;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.6;
  }
}
.p-info_eyecatch {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .p-info_eyecatch {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.p-info_eyecatch img {
  max-width: 100%;
  height: auto;
}
.p-info_body {
  word-break: break-all;
}
.p-info_body p {
  margin: 1.8em 0 0 0;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 700px) {
  .p-info_body p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-info_body a {
  display: flex;
  font-weight: 500;
  color: #3E2F28;
}
.p-info_body a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 15px;
  margin: 10px 10px 0 0;
  background: url(../images/arrow.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (hover: hover) {
  .p-info_body a:hover {
    text-decoration: underline;
  }
}
.p-info_foot {
  max-width: 320px;
  margin: 60px auto 80px;
}
@media screen and (max-width: 700px) {
  .p-info_foot {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .p-info_foot .c-btn {
    min-width: initial;
    width: 100%;
  }
}

/* contact
----------------------------------------------------*/
.p-contact_flow {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 666px;
  margin: 0 auto;
  counter-reset: flow;
}
.p-contact_flow::before, .p-contact_flow::after {
  content: "";
  position: absolute;
  bottom: 9px;
  height: 6px;
  width: calc(50% - 12px);
  background-color: #D9D9D9;
}
.p-contact_flow::before {
  left: 12px;
}
.p-contact_flow::after {
  right: 12px;
}
.p-contact_flow_item {
  position: relative;
  z-index: 1;
  counter-increment: flow 1;
  line-height: 1;
  color: #666666;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-contact_flow_item::after {
  content: counter(flow);
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background-color: #D9D9D9;
  display: block;
  margin: 10px auto 0;
  text-align: center;
  line-height: 22px;
  font-weight: 700;
}
.p-contact_flow.--step1 .p-contact_flow_item:nth-of-type(1):after {
  background-color: #E9A800;
  color: #3E2F28;
}
.p-contact_flow.--step2::before {
  background-color: #E9A800;
}
.p-contact_flow.--step2 .p-contact_flow_item:nth-of-type(1):after,
.p-contact_flow.--step2 .p-contact_flow_item:nth-of-type(2):after {
  background-color: #E9A800;
  color: #3E2F28;
}
.p-contact_flow.--step3::before, .p-contact_flow.--step3::after {
  background-color: #E9A800;
}
.p-contact_flow.--step3 .p-contact_flow_item:nth-of-type(1):after,
.p-contact_flow.--step3 .p-contact_flow_item:nth-of-type(2):after,
.p-contact_flow.--step3 .p-contact_flow_item:nth-of-type(3):after {
  background-color: #E9A800;
  color: #3E2F28;
}
.p-contact_lead {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.p-contact_flow + .p-contact_lead {
  margin: 50px 0 0 0;
}
@media screen and (max-width: 700px) {
  .p-contact_flow + .p-contact_lead {
    margin: 30px 0 0 0;
  }
}
.p-contact_end {
  min-width: 320px;
  margin: 50px 0 0 0;
  padding: 17px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 700px) {
  .p-contact_end {
    min-width: initial;
    width: 100%;
    margin: 30px 0 0 0;
    padding: 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-contact_end + .p-contact_end {
  margin-left: 20px;
}
@media screen and (max-width: 700px) {
  .p-contact_end + .p-contact_end {
    margin: 20px 0 0 0;
  }
}

/*# sourceMappingURL=style.css.map */
