@charset "UTF-8";
/*カラー*/
/*フォント*/
/*共通パーツ*/
html {
  scroll-behavior: smooth;
  font-size: 10px;
}

body {
  width: 100%;
  color: #0A0505;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  background-color: #FAF5F5;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #0A0505;
}

p {
  font-size: clamp(1.6rem, 1.486rem + 0.57vw, 2rem);
  line-height: 1.6;
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  p {
    line-height: 1.8;
  }
}
p:last-of-type {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  ._pc {
    display: none;
  }
}

._sp {
  display: none;
}
@media screen and (max-width: 768px) {
  ._sp {
    display: block;
  }
}

/*header*/
.hd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: #FAF5F5;
  z-index: 50;
}
@media screen and (max-width: 768px) {
  .hd {
    height: 60px;
    padding: 0 20px;
  }
}
.hd .title {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .hd .title {
    width: 120px;
  }
}
.hd .hd_menu-list {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .hd .hd_menu-list {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .hd .hd_menu-item {
    text-align: right;
  }
}
.hd .hd_menu-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  transition: all 0.5s;
}
.hd .hd_menu-link:hover {
  opacity: 0.7;
}
.hd .sp-hd_list {
  display: none;
}
@media screen and (max-width: 768px) {
  .hd .sp-hd_list {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.hd .menu-content {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 40px 20px;
  width: 100%;
  background: #FAF5F5;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}
.hd .contact-button {
  padding: 8px 16px;
}
@media screen and (max-width: 768px) {
  .hd .contact-button {
    font-size: 1.2rem;
  }
}
.hd .menu-btn span {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
}
.hd .menu-btn span::before, .hd .menu-btn span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background-color: #910000;
  transition: all 0.5s;
}
.hd .menu-btn span::before {
  transform: translate(-50%, -3px);
}
.hd .menu-btn span::after {
  transform: translate(-50%, 3px);
}
.hd #menu-btn-check {
  display: none;
}
.hd #menu-btn-check:checked ~ .menu-btn span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hd #menu-btn-check:checked ~ .menu-btn span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hd #menu-btn-check:checked ~ .menu-content {
  visibility: visible;
  opacity: 1;
}

/*footer*/
.ft {
  background: #FFEDED;
}
.ft .ft_contact {
  padding: 160px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ft .ft_contact {
    padding: 80px 20px;
  }
}
.ft .ft_contact .ft_contact-txt {
  font-size: clamp(1.6rem, 1.486rem + 0.57vw, 2rem);
  padding-bottom: 40px;
}
.ft .contact-button {
  padding: 8px 40px;
  width: 224px;
  font-size: clamp(2rem, 1.886rem + 0.57vw, 2.4rem);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  text-align: center;
}
.ft .contact-button.--recruit {
  color: #0A0505;
  background: linear-gradient(to right, #E60012 0%, #E60012 50%, #FAF5F5 60%, #FAF5F5 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  border: solid 2px #910000;
  transition: all 0.5s;
}
.ft .contact-button.--recruit:hover {
  background-position: 0 0;
  color: #FAF5F5;
  border: solid 2px #E60012;
}
.ft .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 160px 0 80px;
}
@media screen and (max-width: 768px) {
  .ft .links {
    flex-direction: column;
    gap: 16px;
    padding: 80px 20px;
  }
}
.ft .ft_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  padding-top: 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .ft .ft_content {
    flex-direction: column;
    gap: 40px;
  }
}
.ft .ft_content .ft_ov-logo-wrap {
  display: block;
  width: 200px;
  margin: auto;
}
.ft .ft_content .ft_ov-txt {
  font-size: 1.6rem;
  padding-top: 40px;
}
.ft .ft_content .ft_menu-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .ft .ft_content .ft_menu-list {
    flex-direction: column;
    gap: 8px;
    font-weight: 400;
  }
}
.ft .ft_content .ft_menu-link {
  font-size: clamp(1.2rem, 1.086rem + 0.57vw, 1.6rem);
  transition: all 0.5s;
}
.ft .ft_content .ft_menu-link:hover {
  opacity: 0.7;
}
.ft .ft_copy {
  font-size: 1.2rem;
  text-align: center;
  padding: 48px 0 8px;
  color: #0A0505;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .ft .ft_copy {
    padding: 40px 20px 0;
  }
}

/*ボタン*/
.c_button {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.486rem + 0.57vw, 2rem);
  padding-left: 32px;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  transition: all 0.5s;
}
.c_button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-30%);
  width: 16px;
  height: 10px;
  background-color: #910000;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition: all 0.5s;
}
.c_button::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: calc(100% - 32px);
  height: 1px;
  background-color: #0A0505;
  transform: translateX(-30%);
  opacity: 0;
  transition: all 0.5s;
}
.c_button:hover::before {
  animation: 1s 0s blink ease-in-out;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c_button:hover::after {
  transform: translateY(0%);
  opacity: 1;
}

.contact-button {
  color: #FAF5F5;
  background: linear-gradient(to right, #E60012 0%, #E60012 50%, #910000 60%, #910000 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  border-radius: 8px;
  transition: all 0.5s;
}
.contact-button:hover {
  background-position: 0 0;
}

.topbutton {
  position: fixed;
  right: 40px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  background: #910000;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 40;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .topbutton {
    right: 20px;
  }
}
.topbutton:hover {
  background: #E60012;
}
.topbutton.is-visible {
  opacity: 1;
  visibility: visible;
}
.topbutton::before, .topbutton::after {
  position: absolute;
  content: "";
}
.topbutton::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 24px;
  background: #FAF5F5;
}
.topbutton::after {
  top: 22%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: solid 2px #FAF5F5;
  border-left: solid 2px #FAF5F5;
}

/*下層fv*/
.page_ttl-wrap {
  position: relative;
  line-height: 1;
}

.page_ttl {
  position: absolute;
  top: 45%;
  left: 40px;
  text-shadow: 0 0 4px #FFFFFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 1.771rem + 5.14vw, 6.4rem);
}
@media screen and (max-width: 768px) {
  .page_ttl {
    left: 20px;
  }
  .page_ttl.--recruit {
    top: 70%;
  }
}

.breadcrumb {
  font-size: 1.6rem;
  color: #910000;
  padding: 10px 40px;
  background-color: #FFEDED;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 10px 20px;
  }
}

.wp-block-columns,
.c_content { /*セクション*/
  width: min(1000px, 92%);
  margin: auto;
  padding: 160px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wp-block-columns,
  .c_content {
    padding: 100px 20px;
  }
}
.wp-block-columns::after,
.c_content::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(224, 224, 224, 0.8), rgba(145, 0, 0, 0.8) 50%, rgba(224, 224, 224, 0.8) 100%);
}
.wp-block-columns:last-of-type::after,
.c_content:last-of-type::after {
  content: none;
}

.c_sec-head { /*見出し*/ }
.c_sec-head.--en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 0 5px 8px;
  display: block;
}
.c_sec-head.--ja {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 1.714rem + 3.43vw, 4.8rem);
  line-height: 1.2;
  color: #0A0505;
}
@media screen and (max-width: 768px) {
  .c_sec-head.--ja {
    padding-bottom: 40px;
  }
}

.c_subhead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.371rem + 1.14vw, 2.4rem);
  padding: 1em 0 0;
}

.c_list {
  font-size: clamp(1.6rem, 1.486rem + 0.57vw, 2rem);
  line-height: 1.6;
  list-style: disc;
  padding-left: 1.3em;
}

/*会社概要表*/
.about-Identity .wp-block-table {
  font-size: clamp(1.6rem, 1.486rem + 0.57vw, 2rem);
  line-height: 1.6;
}
.about-Identity .wp-block-table td {
  border: none;
  padding: 0;
  vertical-align: top;
}
.about-Identity .wp-block-table td:first-of-type {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .about-Identity .wp-block-table td:first-of-type {
    width: 90px;
  }
}
.about-Identity .wp-block-table td:last-of-type {
  text-indent: -1em;
  padding-left: 1em;
}

/*表*/
.about-ov .c_subhead,
.recruit-type .c_subhead {
  padding: 80px 0 16px;
}
.about-ov .c_subhead:first-of-type,
.recruit-type .c_subhead:first-of-type {
  padding: 0 0 16px;
}
.about-ov .wp-block-table,
.recruit-type .wp-block-table {
  font-size: clamp(1.6rem, 1.486rem + 0.57vw, 2rem);
  line-height: 1.6;
}
.about-ov .wp-block-table td,
.recruit-type .wp-block-table td {
  border: solid 1px rgba(0, 230, 230, 0.5);
  padding: 10px;
}
.about-ov .wp-block-table td:first-of-type,
.recruit-type .wp-block-table td:first-of-type {
  background-color: rgba(0, 230, 230, 0.1);
  font-weight: 700;
  width: 28.5%;
  vertical-align: top;
}
.about-ov .wp-block-table.--common td,
.recruit-type .wp-block-table.--common td {
  border: solid 1px rgba(10, 5, 5, 0.5);
}
.about-ov .wp-block-table.--common td:first-of-type,
.recruit-type .wp-block-table.--common td:first-of-type {
  background-color: rgba(10, 5, 5, 0.1);
}
.about-ov a,
.recruit-type a {
  transition: all 0.5s;
}
.about-ov a:hover,
.recruit-type a:hover {
  border-bottom: solid 1px;
}
.about-ov a:has(> img):hover,
.recruit-type a:has(> img):hover {
  border: none;
  opacity: 0.7;
}
.about-ov a img,
.recruit-type a img {
  vertical-align: text-bottom;
}

/*お知らせページ*/
.news-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .news-block {
    grid-template-columns: 1fr;
  }
}
.news-block .news_link {
  transition: all 0.5s;
}
.news-block .news_link:hover {
  opacity: 0.7;
}

.news_date {
  font-size: clamp(1.2rem, 0.971rem + 1.14vw, 2rem);
}

.news_cat {
  font-size: clamp(1rem, 0.829rem + 0.86vw, 1.6rem);
  color: #FAF5F5;
  background-color: #910000;
  padding: 0 8px;
  margin: 0 40px 0 16px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .news_cat {
    padding: 0 4px;
    margin: 0 8px;
    min-width: 4.8em;
  }
}

.news_ttl {
  font-size: clamp(1.4rem, 1.229rem + 0.86vw, 2rem);
}
@media screen and (max-width: 768px) {
  .news_ttl {
    padding-right: 2em;
  }
}

.post_ttl {
  font-size: clamp(2rem, 1.886rem + 0.57vw, 2.4rem);
  padding-bottom: 1em;
}

/*フォーム*/
form {
  padding-top: 80px;
}
form input,
form select,
form textarea {
  width: 100%;
  background-color: #FAF5F5;
  border: solid 1px rgba(145, 0, 0, 0.5);
  border-radius: 8px;
  padding: 16px;
  margin-top: 8px;
}
form .wpcf7-acceptance input {
  width: unset;
}
form .wpcf7-acceptance a {
  border-bottom: solid 1px;
  transition: all 0.5s;
}
form .wpcf7-acceptance a:hover {
  opacity: 0.7;
}
form select,
form ::picker(select) {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  border-radius: 8px;
}
form select::picker-icon,
form ::picker(select)::picker-icon {
  color: #910000;
}
form option:hover {
  background-color: rgba(145, 0, 0, 0.5);
}
form input[type=submit] {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  padding: 16px;
  color: #FAF5F5;
  background-color: #910000;
  transition: all 0.5s;
}
form input[type=submit]:hover {
  background-color: #E60012;
}
form .required {
  font-size: 1.2rem;
  padding: 0 8px;
  color: #FAF5F5;
  background-color: #910000;
  border-radius: 8px;
  margin-left: 4px;
  transform: translateY(-10%);
  display: inline-block;
}

.contact-message::after {
  content: none;
}/*# sourceMappingURL=style.css.map */