@charset "UTF-8";
:root {
  --gray: #ededed;
  --yellow: #fbb656;
  --red: #e85359;
  --hovercolor: #8c6441;
  --mL: 8rem;
  --mLsp: 6rem;
  --mM: 4.5rem;
  --mMsp: 3rem;
  --mS: 2rem;
  --mSsp: 1rem;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-optical-sizing: auto;
  font-style: normal;
  /*
  -webkit-transform: rotate(0.02deg);
  transform: rotate(0.02deg);
  */
}
*:before, *:after {
  pointer-events: none;
}

html {
  font-size: 62.5%;
}

input,
textarea,
select,
body {
  color: black;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: unset;
  overflow-x: hidden;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  input .main,
  textarea .main,
  select .main,
  body .main {
    width: 100%;
    overflow-x: hidden;
  }
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
}

::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
}

input.w100,
textarea.w100 {
  width: 100%;
}

table {
  border-collapse: collapse;
}

.notlinetable table,
.notlinetable tr,
.notlinetable td {
  border: none;
  padding: 0;
  width: auto;
}
.notlinetable table tr td:not(:first-child),
.notlinetable tr tr td:not(:first-child),
.notlinetable td tr td:not(:first-child) {
  padding-left: 1em;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

sup {
  font-size: 50%;
}

a {
  transition: 0.5s;
  color: black;
  text-decoration: underline;
}
a:hover {
  color: subcolor3(1);
}
a.tel {
  pointer-events: none;
  text-decoration: none;
  color: black;
}
@media screen and (max-width: 768px) {
  a.tel {
    color: subcolor2(1);
    text-decoration: underline;
    pointer-events: all;
  }
  a.tel:hover {
    color: subcolor3(1);
  }
}
a.btn {
  display: inline-block;
  width: 50%;
  padding: 0.5em 0;
  text-align: center;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.2);
  text-shadow: none;
}
a.btn:hover {
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.pc,
.tb,
.sp {
  display: none;
}

@media screen and (min-width: 1348.3684210526px) {
  .pc {
    display: inline-block;
  }
}
@media screen and (min-width: 961px) and (max-width: 1422.2222222222px) {
  .pc {
    display: inline-block;
  }
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  .tb {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: inline-block;
  }
}
.large {
  font-size: 2.4rem;
}

.medium {
  font-size: 1.6rem;
}

.small {
  font-size: 1.2rem;
  display: inline-block;
  line-height: 1.5;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .center.spleft {
    text-align: left;
  }
}

.right {
  text-align: right;
}

.letterspacing {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .letterspacing {
    letter-spacing: 0;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.itemcenter {
  align-items: center;
}
.flex.left {
  justify-content: left;
  align-items: center;
}
.flex.left > *:not(:last-child) {
  margin-right: 1em;
}
.flex.center {
  justify-content: center;
}
.flex.center > *:not(:last-child) {
  margin-right: 1em;
}
.flex.c2 > * {
  width: calc((100% - 3rem) / 2);
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .flex.c2.onecolumn > * {
    width: 100%;
  }
  .flex.c2.onecolumn > *:last-child {
    margin-bottom: 0;
  }
}
.flex.c3 > * {
  width: calc((100% - 6rem) / 3);
  margin-bottom: 1rem;
}
.flex.c4 > * {
  width: calc((100% - 9rem) / 4);
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .flex.c2.spone > *, .flex.c3.spone > *, .flex.c4.spone > * {
    width: 100%;
  }
  .flex.c2.spone > *:not(:last-child), .flex.c3.spone > *:not(:last-child), .flex.c4.spone > *:not(:last-child) {
    margin-bottom: 1em;
  }
}

.grid {
  display: grid;
}
.grid.g2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.g3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.g4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.gap1 {
  gap: 1rem;
}
.grid.gap2 {
  gap: 2rem;
}
.grid.gap3 {
  gap: 3rem;
}
.grid.g2 > *.wide2, .grid.g3 > *.wide2, .grid.g4 > *.wide2 {
  grid-column: span 2;
}
@media screen and (max-width: 768px) {
  .grid.g2.spone, .grid.g3.spone, .grid.g4.spone {
    display: block;
  }
}

.initbox {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .initbox .initbox2,
  .initbox .initbox3 {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .nontable table,
  .nontable tbody,
  .nontable tr,
  .nontable th,
  .nontable td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .nontable thead {
    display: none;
  }
  .nontable th:has([data-title]):before,
  .nontable td:has([data-title]):before {
    content: attr(data-title) "";
    display: block;
    font-size: 75%;
    opacity: 0.7;
  }
}

.pt0 {
  padding-top: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt05 {
  margin-top: 0.5em !important;
}

.mt1 {
  margin-top: 1em !important;
}

.mt2 {
  margin-top: 2em !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 0.5em !important;
}

.mb1 {
  margin-bottom: 1em !important;
}

.mb2 {
  margin-bottom: 2em !important;
}

.mbL {
  margin-bottom: var(--mL);
}
@media screen and (max-width: 768px) {
  .mbL {
    margin-bottom: var(--mLsp);
  }
}

.mbM {
  margin-bottom: var(--mM);
}
@media screen and (max-width: 768px) {
  .mbM {
    margin-bottom: var(--mMsp);
  }
}

.mbS {
  margin-bottom: var(--mS);
}
@media screen and (max-width: 768px) {
  .mbS {
    margin-bottom: var(--mSsp);
  }
}

ul.cautionUl > li {
  text-align: left;
  list-style: none;
  margin-left: 1em;
  text-indent: -1em;
}
ul.myUl {
  margin-left: 2em;
}
ul.myUl li {
  list-style: disc;
  text-indent: 0;
}

ol.parenthesesol {
  counter-reset: parenthesesol;
}
ol.parenthesesol > li {
  position: relative;
  list-style: none;
  counter-increment: parenthesesol;
  margin-left: 2.5em;
}
ol.parenthesesol > li::before {
  content: counter(parenthesesol) "）";
  position: absolute;
  top: 0;
  left: -2em;
}
ol.parenthesesol2 {
  counter-reset: parenthesesol2;
}
ol.parenthesesol2 > li {
  position: relative;
  list-style: none;
  counter-increment: parenthesesol2;
  margin-left: 2em;
}
ol.parenthesesol2 > li::before {
  content: "（" counter(parenthesesol2) "）";
  position: absolute;
  top: 0;
  left: -2em;
}

.indentblock {
  margin-left: 1.25em;
}
@media screen and (max-width: 768px) {
  .indentblock {
    margin-left: 0;
  }
}

.indentlv1 {
  margin-left: 3em;
}
.indentlv1 .indent1 {
  text-indent: -1em;
}

.ggmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
@media screen and (max-width: 768px) {
  .ggmap {
    padding-top: 177.7777777778%;
  }
}
.ggmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#breadcrumbs {
  padding: 1rem 0;
}
#breadcrumbs ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: center;
}
#breadcrumbs ul li {
  font-size: 1.2rem;
  line-height: 1;
  list-style: none;
}
#breadcrumbs ul li:first-child::before {
  font-family: "Material Symbols Outlined";
  content: "\e88a";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
}
#breadcrumbs ul li:not(:last-child)::after {
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  display: inline-block;
}
#breadcrumbs ul li a {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #breadcrumbs {
    overflow-x: auto;
  }
  #breadcrumbs ul li {
    white-space: nowrap;
  }
}

.scrollin.nonactive {
  opacity: 0;
}
.scrollin.isactive:not(.leftin) {
  animation: fadeIn 1s ease 0s 1 normal backwards;
}
.scrollin.isactive.leftin {
  animation: fadeInLeft 1s ease 0s 1 normal backwards;
}

figure.graycover,
picture.graycover {
  position: relative;
}
figure.graycover::after,
picture.graycover::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  background: rgba(62, 58, 57, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
figure.scrollin,
picture.scrollin {
  position: relative;
  overflow: hidden;
  display: block;
}
figure.scrollin img,
picture.scrollin img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
}
figure.scrollin::before,
picture.scrollin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: black;
  transform: translateX(100%);
  z-index: 3;
}
figure.scrollin.graycover::after,
picture.scrollin.graycover::after {
  inset: 0;
  transform: translateX(100%);
  transition: 0.9s;
}
figure.scrollin.isactive::before,
picture.scrollin.isactive::before {
  animation: slideCover 0.6s ease forwards;
}
figure.scrollin.isactive img,
picture.scrollin.isactive img {
  animation: fadeIn 0.3s ease forwards;
  animation-delay: 0.6s;
}
figure.scrollin.isactive.graycover::after,
picture.scrollin.isactive.graycover::after {
  transform: translateX(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#page-skip {
  position: relative;
}
#page-skip a {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px 1px 1px 1px);
}

.slick-slider div {
  transition: none;
}

@media screen and (max-width: 768px) {
  .spscroll {
    position: relative;
    width: 100%;
    overflow-x: scroll;
  }
  .spscroll::before, .spscroll::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .spscroll::before {
    content: "";
    width: 7rem;
    height: 7rem;
    background: rgba(0, 0, 0, 0.75);
  }
  .spscroll::after {
    font-family: "Material Symbols Outlined";
    content: "\e9ec";
    vertical-align: middle;
    font-size: 150%;
    font-weight: 200;
    font-size: 5rem;
    color: white;
    animation: spscrollicon_after ease-in 1s infinite;
  }
  .spscroll.isactive::before, .spscroll.isactive::after {
    animation: spscrollicon 1s forwards;
  }
  .spscroll > * {
    width: auto;
    max-width: auto;
  }
  .spscroll > table th {
    white-space: nowrap;
  }
}
@keyframes spscrollicon_after {
  0% {
    transform: translate(-50%, -50%) rotate(-20deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(20deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-20deg);
  }
}
@keyframes spscrollicon {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideCover {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-101%);
  }
}
.wp-block-button .wp-block-button__link {
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  color: black;
}
.wp-block-button .wp-block-button__link:hover {
  background: black;
  color: white;
}

@keyframes rotation360 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360);
  }
}
#header {
  background: rgba(255, 255, 255, 0.9);
}
#header #spsitenav-check {
  display: none;
}
@media screen and (max-width: 768px) {
  #header #spsitenav-check:checked ~ .global .navigation {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    display: block;
    width: 100%;
    height: calc(100vh - 80px);
    z-index: 10;
    flex-wrap: wrap;
  }
  #header #spsitenav-check:checked ~ .global .navigation::before {
    display: block;
    content: "株式会社サン";
    text-align: center;
    width: 100%;
    background: var(--gray);
    font-size: 2.8rem;
  }
  #header #spsitenav-check:checked ~ .global .navigation li {
    width: 100%;
    margin-left: 0;
    border-bottom: 1px dotted black;
  }
  #header #spsitenav-check:checked ~ .global .navigation li::before {
    content: none;
  }
  #header #spsitenav-check:checked ~ .global .navigation li a {
    text-align: center;
    padding: 1em 0;
    display: block;
  }
  #header #spsitenav-check:checked ~ .global .navigation li.contact, #header #spsitenav-check:checked ~ .global .navigation li.forvendor {
    border-bottom: 0;
    margin-top: 1em;
    padding: 0 1em;
  }
}
#header nav.global {
  padding: 0.5em 0;
}
#header nav.global > .initbox .flex {
  align-items: center;
}
#header nav.global > .initbox .flex h1 {
  font-size: 3.6rem;
  font-weight: 200;
}
#header nav.global > .initbox .flex h1 a {
  text-decoration: none;
}
#header nav.global > .initbox .flex h1 a img {
  height: 6rem;
}
@media screen and (max-width: 768px) {
  #header nav.global > .initbox .flex h1 {
    font-size: 2.8rem;
  }
  #header nav.global > .initbox .flex h1 a img {
    height: 4rem;
  }
}
#header nav.global > .initbox .flex > ul {
  flex: 1;
  justify-content: right;
  flex-wrap: nowrap;
}
#header nav.global > .initbox .flex > ul > li {
  list-style: none;
  display: inline-block;
  font-size: 1.6rem;
}
#header nav.global > .initbox .flex > ul > li:not(:first-child)::before {
  content: "｜";
}
#header nav.global > .initbox .flex > ul > li a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
#header nav.global > .initbox .flex > ul > li a:hover {
  color: var(--yellow);
}
#header nav.global > .initbox .flex > ul > li.forvendor::before, #header nav.global > .initbox .flex > ul > li.contact::before {
  content: none;
}
#header nav.global > .initbox .flex > ul > li.forvendor a, #header nav.global > .initbox .flex > ul > li.contact a {
  border: 1px solid black;
  border-radius: 8px;
  padding: 0.5em 1em;
}
#header nav.global > .initbox .flex > ul > li.forvendor {
  margin-left: 1em;
}
#header nav.global > .initbox .flex > ul > li.forvendor a:hover {
  color: black;
  background: rgba(0, 0, 0, 0.1);
}
#header nav.global > .initbox .flex > ul > li.contact {
  margin-left: 0.25em;
}
#header nav.global > .initbox .flex > ul > li.contact a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: white;
}
#header nav.global > .initbox .flex > ul > li .spsitenav-check-sub {
  display: none;
}
#header nav.global > .initbox .flex > ul > li ul {
  display: none;
  position: absolute;
  left: 0;
  padding-top: 0.5em;
  top: 1.8em;
  width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}
#header nav.global > .initbox .flex > ul > li ul li {
  list-style: none;
}
#header nav.global > .initbox .flex > ul > li ul li:not(:last-child) {
  border-bottom: 1px dotted white;
}
#header nav.global > .initbox .flex > ul > li ul li a {
  padding: 0.5em;
  display: block;
  text-decoration: none;
  position: relative;
}
#header nav.global > .initbox .flex > ul > li ul li a::after {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
@media screen and (min-width: 809.4210526316px) {
  #header nav.global > .initbox .flex > ul > li:hover ul {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #header nav.global .initbox > ul {
    flex-wrap: wrap;
  }
  #header nav.global .initbox > ul > li {
    width: 100%;
  }
  #header nav.global .initbox > ul > li > label,
  #header nav.global .initbox > ul > li > a {
    display: block;
    border-right: none;
    border-bottom: 1px dotted white;
    padding: 1em 0;
    text-align: center;
    text-decoration: none;
    position: relative;
  }
  #header nav.global .initbox > ul > li > label::after,
  #header nav.global .initbox > ul > li > a::after {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
  }
  #header nav.global .initbox > ul > li > label::after {
    font-family: "Material Symbols Outlined";
    content: "\e7cd";
    vertical-align: middle;
    font-size: 150%;
    font-weight: 200;
  }
  #header nav.global .initbox > ul > li a::after {
    font-family: "Material Symbols Outlined";
    content: "\e5cc";
    vertical-align: middle;
    font-size: 150%;
    font-weight: 200;
  }
  #header nav.global .initbox > ul > li:first-child a {
    border-left: none;
  }
  #header nav.global .initbox > ul > li ul {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
  }
  #header nav.global .initbox > ul > li .spsitenav-check-sub:checked ~ ul {
    display: block;
  }
  #header nav.global .initbox > ul > li .spsitenav-check-sub:checked ~ label::after {
    font-family: "Material Symbols Outlined";
    content: "\f5d2";
    vertical-align: middle;
    font-size: 150%;
    font-weight: 200;
  }
  #header nav.global .initbox > ul > li.area, #header nav.global .initbox > ul > li.service {
    display: none;
  }
  #header nav.global .initbox > ul > li.about > a, #header nav.global .initbox > ul > li.recruit > a {
    display: none;
  }
  #header nav.global .initbox > ul > li.contact > a {
    margin-top: 1em;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  #header nav.global .initbox > ul > li.recruit ul {
    bottom: auto;
  }
  #header nav.global .navigation {
    display: none;
  }
}
#header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  animation: fadeIn 1s ease 0s 1 normal backwards;
  z-index: 10;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
#header.fixed > .initbox > .flex {
  padding: 1rem 0;
}
#header.fixed > .initbox > .flex h1 {
  line-height: 1;
}
#header.fixed > .initbox > .flex h1 span {
  display: none;
}

.main:has(#spsitenav-check:checked) .spmenu .menu:before {
  font-family: "Material Symbols Outlined";
  content: "\e5cd";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  transition: 0.6s;
  transform: rotate(360deg);
  animation: rotation360 0.6s ease forwards;
}
.main:has(#spsitenav-check:checked) .spmenu .menu span {
  display: none;
}

#contents .borderline {
  padding-bottom: 0.5em;
  border-bottom: 1px solid black;
  margin-bottom: 0.5em;
}
#contents h2 {
  font-size: 15rem;
  font-weight: 100;
  line-height: 1;
}
#contents h2.mytitle {
  position: relative;
  z-index: 2;
}
#contents h2 span {
  font-size: 1.8rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  #contents h2 {
    font-size: 5rem;
  }
  #contents h2 span {
    margin-top: 1rem;
    display: block;
  }
}
#contents h3 {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #contents h3 {
    letter-spacing: 0;
    font-size: 2rem;
  }
}
#contents h4 {
  padding: 0.5em 3em;
  font-size: 1.8rem;
  font-weight: 400;
  position: relative;
  line-height: 1;
  border: 1px solid black;
  border-radius: 1.5em;
  display: inline-block;
}
#contents h4::before, #contents h4::after {
  content: "";
  aspect-ratio: 1/1;
  border: 1px solid black;
  border-radius: 50%;
  background: white;
  position: absolute;
}
#contents h4::before {
  width: 1.5em;
  top: -2px;
  left: -2px;
}
#contents h4::after {
  width: 0.75em;
  bottom: 0.1em;
  left: 1.4em;
}
#contents h5 {
  font-size: 1.6rem;
  font-weight: 300;
}
#contents h5.line {
  border-bottom: 1px solid var(--gray);
}
#contents h6 {
  font-size: 1.4rem;
}
#contents input,
#contents select,
#contents textarea {
  padding: 0.5em 1em;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  background: white;
}
#contents input.w10em,
#contents select.w10em,
#contents textarea.w10em {
  max-width: 10em !important;
}
#contents table.designtable1 {
  width: 100%;
}
#contents table.designtable1 tr {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
#contents table.designtable1 tr th {
  text-align: left;
  font-weight: 300;
  vertical-align: top;
  padding: 1em 0;
  width: 40%;
}
#contents table.designtable1 tr td {
  width: 60%;
  padding: 1em 0;
}
#contents table.designtable1 tr td input,
#contents table.designtable1 tr td select {
  width: auto;
  max-width: 100%;
}
#contents table.designtable1 tr td input[type=text],
#contents table.designtable1 tr td textarea {
  width: 100%;
}
#contents table.designtable1 tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
#contents .leadbox {
  position: relative;
  z-index: 1;
  padding: var(--mL) 0;
}
#contents .leadbox::after {
  content: "";
  pointer-events: none;
  display: block;
  width: 100vw;
  height: calc(100% + 1em);
  background: white;
  z-index: -1;
  position: absolute;
  top: -1em;
  left: -2.5vw;
}
@media screen and (min-width: 1348.3684210526px) {
  #contents .leadbox::after {
    left: calc((100vw - 1280px) / 2 * -1);
  }
}
#contents .widthover {
  width: calc(100% + 5vw);
}
@media screen and (min-width: 1348.3684210526px) {
  #contents .widthover {
    width: calc(100% + (100vw - 1280px) / 2);
  }
}
#contents .widthoverbg {
  position: relative;
  padding: var(--mM) 0;
}
#contents .widthoverbg::after {
  content: "";
  pointer-events: none;
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -1;
  position: absolute;
  background: var(--gray);
  top: 0;
  left: -5vw;
}
@media screen and (min-width: 1348.3684210526px) {
  #contents .widthoverbg::after {
    left: calc((100vw - 1280px) / 2 * -1);
  }
}
#contents .size-full img {
  width: 100%;
}
#contents ol.whitebox {
  padding-left: 4em;
}
#contents #pagecontent {
  padding-top: var(--mL);
  min-height: 80vh;
}
#contents #pagecontent .contentfooterlink {
  border-top: 1px solid var(--gray);
  padding: var(--mM) 0;
  border-bottom: 1px solid var(--gray);
}
#contents #pagecontent .contentfooterlink .flex.c3 li {
  list-style: none;
  text-align: center;
}
#contents #pagecontent .contentfooterlink .flex.c3 li a {
  display: inline-block;
  background: var(--gray);
  line-height: 1;
  padding: 1em 2.5em;
  position: relative;
  color: black;
  text-decoration: none;
  text-align: center;
}
#contents #pagecontent .contentfooterlink .flex.c3 li a:hover {
  background: var(--yellow);
  padding: 1em 3em;
}
#contents #pagecontent .contentfooterlink .flex.c3 li:first-child a::before, #contents #pagecontent .contentfooterlink .flex.c3 li:last-child a::before {
  content: "";
  width: calc(2em - 8px);
  height: calc(2em - 8px);
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
#contents #pagecontent .contentfooterlink .flex.c3 li:first-child a::after, #contents #pagecontent .contentfooterlink .flex.c3 li:last-child a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: maincolor(1);
  z-index: 2;
}
#contents #pagecontent .contentfooterlink .flex.c3 li:first-child a:hover::after, #contents #pagecontent .contentfooterlink .flex.c3 li:last-child a:hover::after {
  color: black;
}
#contents #pagecontent .contentfooterlink .flex.c3 li:first-child {
  text-align: left;
}
#contents #pagecontent .contentfooterlink .flex.c3 li:first-child a::before {
  left: 4px;
}
#contents #pagecontent .contentfooterlink .flex.c3 li:first-child a::after {
  font-family: "Material Symbols Outlined";
  content: "\e5cb";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  left: 0.125em;
}
#contents #pagecontent .contentfooterlink .flex.c3 li:last-child {
  text-align: right;
}
#contents #pagecontent .contentfooterlink .flex.c3 li:last-child a::before {
  right: 4px;
}
#contents #pagecontent .contentfooterlink .flex.c3 li:last-child a::after {
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  right: 0.125em;
}
@media screen and (max-width: 768px) {
  #contents #pagecontent .contentfooterlink .flex.c3 {
    flex-wrap: wrap;
  }
  #contents #pagecontent .contentfooterlink .flex.c3 li a {
    display: block;
    padding: 1em 0;
    width: 100%;
  }
  #contents #pagecontent .contentfooterlink .flex.c3 li:nth-child(1) {
    order: 2;
    width: 48%;
  }
  #contents #pagecontent .contentfooterlink .flex.c3 li:nth-child(2) {
    order: 1;
    width: 100%;
    margin-bottom: 1em;
  }
  #contents #pagecontent .contentfooterlink .flex.c3 li:nth-child(3) {
    order: 3;
    width: 48%;
  }
}
#contents #pagecontent .contentfooterlink .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#contents #pagecontent .contentfooterlink .pagination .nav-links > span,
#contents #pagecontent .contentfooterlink .pagination .nav-links > a {
  display: inline-block;
  text-align: center;
  width: 2em;
  padding: 0.5em 0;
  margin: 0 0.5em;
}
#contents #pagecontent .contentfooterlink .pagination .nav-links > span.page-numbers,
#contents #pagecontent .contentfooterlink .pagination .nav-links > a.page-numbers {
  border: 1px solid black;
}
#contents #pagecontent .contentfooterlink .pagination .nav-links > span.dots, #contents #pagecontent .contentfooterlink .pagination .nav-links > span.prev, #contents #pagecontent .contentfooterlink .pagination .nav-links > span.next,
#contents #pagecontent .contentfooterlink .pagination .nav-links > a.dots,
#contents #pagecontent .contentfooterlink .pagination .nav-links > a.prev,
#contents #pagecontent .contentfooterlink .pagination .nav-links > a.next {
  border: none;
}
#contents #pagecontent .contentfooterlink .pagination .nav-links > span.current,
#contents #pagecontent .contentfooterlink .pagination .nav-links > a.current {
  background: black;
  color: white;
}
#contents #pagecontent .contentfooterlink .pagination .nav-links > a {
  text-decoration: none;
}
#contents #pagecontent .contentfooterlink .pagination .nav-links > a:hover {
  background: rgba(0, 0, 0, 0.5);
  color: white;
}
#contents #pagecontent .contentfooterlink .pagination .nav-links > a:hover.prev, #contents #pagecontent .contentfooterlink .pagination .nav-links > a:hover.next {
  background: none;
  color: var(--hovercolor);
}
#contents #pagetitle picture {
  height: 20vh;
}
#contents #pagetitle picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#contents .wp-block-group ul,
#contents .wp-block-group ol {
  margin-left: 1em;
}
#contents .wp-block-group ul > li > ul.cautionUl,
#contents .wp-block-group ol > li > ul.cautionUl {
  margin-left: 0;
}
#contents .wp-block-group ul.mylists,
#contents .wp-block-group ol.mylists {
  margin-left: 0;
  list-style: none;
}
#contents .wp-block-group ul.mylists > *,
#contents .wp-block-group ol.mylists > * {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#contents .wp-block-group ul.mylists > *:not(:has(a)),
#contents .wp-block-group ol.mylists > *:not(:has(a)) {
  padding: 1em 0;
  text-align: center;
}
#contents .wp-block-group ul.mylists > *:has(a) a,
#contents .wp-block-group ol.mylists > *:has(a) a {
  text-decoration: none;
  display: block;
  padding: 1em 0;
  text-align: center;
}
#contents .wp-block-group ul.mylists > *:has(a) a::after,
#contents .wp-block-group ol.mylists > *:has(a) a::after {
  font-family: "Material Symbols Outlined";
  content: "\f591";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  margin-left: 0.25em;
}
#contents .wp-block-group ul.mylists > *:has(a) a:hover,
#contents .wp-block-group ol.mylists > *:has(a) a:hover {
  color: white;
}
#contents .wp-block-group ul.countol,
#contents .wp-block-group ol.countol {
  counter-reset: countol;
}
#contents .wp-block-group ul.countol > li,
#contents .wp-block-group ol.countol > li {
  position: relative;
  list-style: none;
  counter-increment: countol;
  margin-left: 3em;
}
#contents .wp-block-group ul.countol > li::before,
#contents .wp-block-group ol.countol > li::before {
  content: counter(countol) ".";
  font-size: 200%;
  font-weight: normal;
  position: absolute;
  top: -0.25em;
  left: -1em;
  font-style: italic;
}
#contents .wp-block-group ul.roundol,
#contents .wp-block-group ol.roundol {
  counter-reset: roundol;
}
#contents .wp-block-group ul.roundol > li,
#contents .wp-block-group ol.roundol > li {
  position: relative;
  list-style: none;
  counter-increment: roundol;
  margin-left: 1.25em;
}
#contents .wp-block-group ul.roundol > li::before,
#contents .wp-block-group ol.roundol > li::before {
  content: "" counter(roundol);
  position: absolute;
  top: 0;
  left: -1.125em;
}
#contents .wp-block-group ul.roundol > li::after,
#contents .wp-block-group ol.roundol > li::after {
  content: "";
  width: 1.25em;
  height: 1.25em;
  border: 1px solid black;
  border-radius: 1em;
  position: absolute;
  top: 0.25em;
  left: -1.5em;
}
#contents .wp-block-group ul.roundol > li ul li,
#contents .wp-block-group ol.roundol > li ul li {
  list-style: disc;
}
#contents .wp-block-group ul.indentol,
#contents .wp-block-group ol.indentol {
  margin-left: 1em !important;
}
#contents .wp-block-group.unitbox {
  padding: var(--mL) 0;
}
@media screen and (max-width: 768px) {
  #contents .wp-block-group.unitbox {
    padding: 5rem 0;
  }
}
#contents .wp-block-group.unitbox + .unitbox {
  padding-top: 0;
}
#contents .mypasswordset {
  display: flex;
  justify-content: left;
  flex-wrap: nowrap;
  align-items: flex-end;
}
#contents .mypasswordset > *:not(:first-child) {
  margin-left: 0.5em;
}
#contents .mypasswordset input[type=submit] {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #contents .mypasswordset {
    flex-wrap: wrap;
  }
  #contents .mypasswordset label,
  #contents .mypasswordset input {
    max-width: 100%;
    margin-bottom: 0.25em;
  }
  #contents .mypasswordset > *:not(:first-child) {
    margin-left: 0;
  }
}
#contents .date.new::after {
  content: "NEW";
  background: var(--red);
  color: white;
  padding: 0 1em;
  margin-left: 1em;
}
#contents .date.close {
  display: none;
}
#contents .archivelists_item {
  list-style: none;
}
#contents .archivelists_item a {
  text-decoration: none;
  display: flex;
  flex-wrap: nowrap;
}
#contents .archivelists_item a .imagebox {
  width: 30%;
  max-width: 320px;
}
#contents .archivelists_item a .textbox {
  flex: 1;
}
#contents .archivelists_item a .textbox .title {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #contents .archivelists_item a .textbox .title {
    font-size: 1.6rem;
    font-weight: 400;
  }
}
#contents .archivelists_item a .textbox table.detail tr th {
  font-weight: normal;
  font-weight: 300;
  font-size: 1.2rem;
  text-align: left;
  white-space: nowrap;
}
#contents .archivelists_item a .textbox table.detail tr td {
  padding-left: 1em;
}
#contents .archivelists_item a:has(.imagebox) .textbox {
  padding-left: 1em;
}
#contents .archivelists_item a:hover {
  padding: 0 0.5em;
  background: var(--gray);
}
@media screen and (max-width: 768px) {
  #contents .archivelists_item a {
    flex-wrap: wrap;
  }
  #contents .archivelists_item a .imagebox {
    width: 100%;
    margin-bottom: 0.5em;
    max-width: none;
  }
  #contents .archivelists_item a .textbox {
    padding-left: 0;
  }
  #contents .archivelists_item a:hover {
    padding: 0.5em;
  }
}
#contents .archivelists_item + .archivelists_item {
  margin-top: 0.5em;
}
#contents .grouplists {
  display: flex;
  justify-content: left;
  align-items: center;
}
#contents .grouplists li {
  list-style: none;
  border: 1px solid black;
  padding: 0.25em 1em;
  border-radius: 8px;
}
#contents .grouplists li + li {
  margin-left: 1em;
}
#contents .jsmodal input.modalset__flag {
  display: none;
}
#contents .jsmodal input.modalset__flag + *,
#contents .jsmodal input.modalset__flag ~ .contenttitle,
#contents .jsmodal input.modalset__flag ~ .modalset__close {
  display: none;
}
#contents .jsmodal input.modalset__flag:checked + *,
#contents .jsmodal input.modalset__flag:checked ~ .contenttitle,
#contents .jsmodal input.modalset__flag:checked ~ .modalset__close {
  display: block;
  position: fixed;
}
#contents .jsmodal input.modalset__flag:checked + * {
  width: 80%;
  height: 75%;
  top: 15%;
  left: 10%;
  z-index: 100;
  overflow-y: scroll;
}
#contents .jsmodal input.modalset__flag:checked + *::before {
  content: "";
  position: fixed;
  display: block;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: white;
  border-radius: 1vw;
  z-index: -1;
}
#contents .jsmodal input.modalset__flag:checked ~ .modalset__close {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  pointer-events: all;
  z-index: 98;
  cursor: pointer;
}
#contents .jsmodal input.modalset__flag:checked ~ .modalset__close::before {
  font-family: "Material Symbols Outlined";
  content: "\e5c9";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  position: fixed;
  top: 2.5%;
  right: 2.5%;
  font-size: 2.5vw;
  color: white;
  z-index: 1;
}
#contents .jsmodal input.modalset__flag:checked ~ .contenttitle {
  top: 8%;
  left: 10%;
  font-size: 1.8rem;
  z-index: 101;
}
#contents .jsmodal .modalset__confirm table td {
  text-align: left;
}
#contents .jsmodal .modalset__confirm table td .c2 > * {
  width: auto;
}
#contents .jsmodal .modalset__confirm table td .wpcf7-list-item {
  margin-left: 0;
}
#contents .jsmodal.nontitle input.modalset__flag:checked ~ .contenttitle {
  display: none;
}
#contents .jsmodal .confirm {
  position: relative;
}
#contents .jsmodal .confirm .forsendbox {
  display: inline-block;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#contents .modalset__title label {
  display: inline-block;
  padding: 1em 2em;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.6s;
}
#contents .modalset__title label:hover {
  background: black;
  color: white;
}
#contents .datadownloadbox {
  margin-top: var(--mM);
}
#contents .datadownloadbox .wp-block-button__link {
  width: 100%;
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents p {
    text-align: left;
  }
  #contents p.right {
    text-align: right;
  }
}

#content__home #topconcept .textbox,
#content__home #topgroup .textbox {
  position: relative;
}
#content__home #topconcept .textbox_init,
#content__home #topgroup .textbox_init {
  width: 50%;
  color: white;
  padding-top: var(--mM);
}
#content__home #topconcept .textbox_init a.btn,
#content__home #topgroup .textbox_init a.btn {
  background: rgba(255, 255, 255, 0.7);
}
#content__home #topconcept .textbox_init a.btn:hover,
#content__home #topgroup .textbox_init a.btn:hover {
  background: rgba(0, 0, 0, 0.7);
  color: white;
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  #content__home #topconcept .textbox_init,
  #content__home #topgroup .textbox_init {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #content__home #topconcept .textbox_init,
  #content__home #topgroup .textbox_init {
    width: 100% !important;
  }
}
#content__home #topconcept p,
#content__home #topgroup p {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  line-height: 2;
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
}
#content__home #topconcept {
  position: relative;
  margin-top: var(--mL);
}
#content__home #topconcept h2 {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #content__home #topconcept h2 {
    margin-bottom: 0.5em;
  }
}
#content__home #topconcept .textbox {
  position: relative;
}
#content__home #topconcept .textbox_init {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  padding-top: var(--mM);
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  #content__home #topconcept .textbox_init {
    width: 80%;
  }
}
#content__home #topconcept .imagebox {
  overflow: visible;
  position: relative;
  z-index: -1;
}
#content__home #topconcept .imagebox.graycover::after {
  top: -1em;
}
@media screen and (max-width: 768px) {
  #content__home #topconcept .imagebox.graycover::after {
    top: 0;
  }
}
#content__home #topconcept .imagebox img {
  transform: translateY(-1em);
}
@media screen and (max-width: 768px) {
  #content__home #topconcept .imagebox img {
    transform: translateY(0);
  }
}
#content__home #topproducts {
  padding: var(--mL) 0;
}
#content__home #topproducts .textbox {
  width: 35%;
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  #content__home #topproducts .textbox {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #content__home #topproducts .textbox {
    width: 100%;
  }
}
#content__home #topproducts .productlists_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 100%;
  width: -moz-min-content;
  width: min-content;
  animation: 20s linear infinite sliderAnimation;
}
#content__home #topproducts .productlists_slide li {
  list-style: none;
  width: calc((100vw - 10rem) / 6);
  margin: 0 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #content__home #topproducts .productlists_slide li {
    width: calc((100vw - 4rem) / 3);
  }
}
@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}
#content__home #topgroup {
  position: relative;
  color: white;
  padding: var(--mM) 0;
  overflow: hidden;
}
#content__home #topgroup .textbox .affiliatedcompanies {
  display: flex;
  justify-content: right;
}
#content__home #topgroup .textbox .affiliatedcompanies ul {
  display: grid;
  grid-template-columns: repeat(1fr, 2);
  gap: 0.5rem;
}
#content__home #topgroup .textbox .affiliatedcompanies ul::before {
  content: "関連会社";
  margin-bottom: 0.5rem;
  grid-column: span 2;
}
#content__home #topgroup .textbox .affiliatedcompanies ul li {
  list-style: none;
}
#content__home #topgroup .textbox .affiliatedcompanies ul li:not(:first-child) {
  margin-left: 0.5rem;
}
#content__home #topgroup .textbox .affiliatedcompanies ul li a {
  width: 12em;
  display: inline-block;
  background: rgba(0, 0, 0, 0.9);
  padding: 0.5em 0;
  text-align: center;
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #content__home #topgroup .textbox .affiliatedcompanies {
    display: block;
    margin-top: 2em;
  }
  #content__home #topgroup .textbox .affiliatedcompanies ul {
    display: block;
  }
  #content__home #topgroup .textbox .affiliatedcompanies ul li {
    margin-left: 0 !important;
  }
  #content__home #topgroup .textbox .affiliatedcompanies ul li:not(:last-child) {
    margin-bottom: 0.5em;
  }
  #content__home #topgroup .textbox .affiliatedcompanies ul li a {
    width: 100%;
  }
}
#content__home #topgroup .imagebox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}
#content__home #topgroup .imagebox img {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #content__home #topgroup .textbox_init {
    padding-top: 0;
  }
}
#content__home #topnews {
  margin: var(--mL) 0;
}
#content__home #topnews .recruitbox .archivelists_item picture {
  overflow: hidden;
}
#content__home #topnews .recruitbox .archivelists_item picture img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  #content__home #topnews .newsbox {
    margin-bottom: var(--mM);
  }
}
#content__products {
  background: var(--gray);
}
#content__products .products {
  padding-top: var(--mL);
}
#content__products .products_list > * {
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid white;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
#content__products .products_list > * p {
  font-size: 2rem;
  padding-top: 1em;
  text-align: center;
}
#content__products .products_list > *::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#content__company #pagecontent {
  padding-bottom: 0;
}
#content__company .groupbox {
  position: relative;
  z-index: 1;
  padding: var(--mL) 0;
}
#content__company .groupbox h5 {
  font-size: 2.2rem;
  font-weight: 300;
}
#content__company .groupbox table tr td:first-child {
  width: 25%;
}
@media screen and (max-width: 768px) {
  #content__company .groupbox table tr td:first-child {
    width: 35%;
  }
}
#content__company .groupbox::after {
  content: "";
  pointer-events: none;
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -1;
  position: absolute;
  background: white;
  top: 0;
  left: -5vw;
}
@media screen and (min-width: 1348.3684210526px) {
  #content__company .groupbox::after {
    left: calc((100vw - 1280px) / 2 * -1);
  }
}
#content__company .groupbox:nth-child(2n)::after {
  background: var(--gray);
}
#content__recruit .recruitbox .archivelists_item a {
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid white;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  align-items: center;
}
#content__recruit .recruitbox .archivelists_item a::after {
  font-family: "Material Symbols Outlined";
  content: "\e5e1";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  transition: 0.5s;
}
#content__recruit .recruitbox .archivelists_item a p {
  font-size: 2rem;
  padding-top: 1em;
  text-align: center;
}
#content__recruit .recruitbox .archivelists_item a:hover {
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
}
#content__recruit .recruitbox .archivelists_item a:hover::after {
  right: 1em;
}
#content__recruit .guidelineflex {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
#content__recruit .guidelineflex .guideline {
  width: 50%;
}
#content__recruit .guidelineflex .guideline .guidelineTable tbody {
  border-top: 2px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#content__recruit .guidelineflex .guideline .guidelineTable tbody tr th,
#content__recruit .guidelineflex .guideline .guidelineTable tbody tr td {
  padding: 0.5em 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#content__recruit .guidelineflex .guideline .guidelineTable tbody tr th {
  text-align: left;
  font-weight: 300;
  white-space: nowrap;
}
#content__recruit .guidelineflex .guideline .guidelineTable tbody tr td .address .description {
  font-size: 86%;
  color: rgba(0, 0, 0, 0.8);
}
#content__recruit .guidelineflex .guideline .guidelineTable tbody tr:nth-child(2n) {
  background: var(--gray);
}
#content__recruit .guidelineflex .content {
  width: 40%;
  position: sticky;
  top: calc(6.48rem + 1em + 9.44rem);
  align-self: flex-start;
}
#content__recruit .recruittext {
  border-left: 2px solid var(--gray);
  padding-left: 1em;
}
#content__recruit .entrybtnbox a {
  border-radius: 8px;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 3.5em;
  color: white;
  text-decoration: none;
}
#content__recruit .entrybtnbox a:hover {
  background: var(--yellow);
  color: black;
}
#content__recruit .entrybtnbox + p {
  margin-top: 2em;
}
#content__recruit .idealcandidate {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#content__recruit .idealcandidate dt {
  display: flex;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  background: var(--gray);
  border-radius: 50%;
  padding: 0 1em;
  margin: 1em 0;
  line-height: 1.25;
}
#content__recruit .idealcandidate dd {
  padding-left: 3em;
  margin: 1em 0;
}
#content__recruit .idealcandidate dd ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2em;
}
@media screen and (max-width: 768px) {
  #content__recruit .recruittitle {
    position: relative;
    top: auto;
  }
  #content__recruit .guidelineflex {
    flex-wrap: wrap;
  }
  #content__recruit .guidelineflex .guideline,
  #content__recruit .guidelineflex .content {
    width: 100%;
    position: relative;
    top: auto;
  }
  #content__recruit .guidelineflex .guideline {
    order: 1;
    margin-bottom: 2em;
  }
  #content__recruit .guidelineflex .content {
    order: 2;
  }
  #content__recruit .idealcandidate dd ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
#content__contact #pagecontent {
  padding-bottom: 0;
}
#content__contact .formbox strong {
  color: var(--red);
}
#content__contact .formbox .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input,
#content__contact .formbox .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) textarea {
  background: rgba(232, 83, 89, 0.1);
}
#content__contact .formbox .wpcf7-form-control-wrap .wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  #content__contact .formbox .wpcf7-form-control-wrap .wpcf7-radio {
    display: block;
  }
  #content__contact .formbox .wpcf7-form-control-wrap .wpcf7-radio > span {
    display: block;
  }
  #content__contact .formbox .wpcf7-form-control-wrap input[type=text],
  #content__contact .formbox .wpcf7-form-control-wrap textarea {
    width: 100%;
  }
}
#content__contact .formbox input[type=submit] {
  cursor: pointer;
}

#pagecontent {
  padding-bottom: var(--mL);
}

.wp-block-file {
  margin-top: 2em;
}
.wp-block-file:not(.wp-element-button) {
  font-size: 1em;
}
.wp-block-file .wp-block-file__button {
  padding: 0 2em;
}

#footer {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding-top: var(--mM);
}
@media screen and (max-width: 768px) {
  #footer {
    margin-bottom: 80px;
  }
}
#footer h1 {
  font-size: 3.6rem;
  font-weight: 200;
}
#footer h1 img {
  height: 4.2rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #footer h1 {
    font-size: 2.4rem;
  }
  #footer h1 a img {
    height: 3rem;
  }
}
#footer a {
  color: white;
}
#footer a:hover {
  color: var(--yellow);
}
#footer #pagetopbtnbox {
  position: fixed;
  bottom: 1em;
  right: -2em;
  transition: 0.6s;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #footer #pagetopbtnbox {
    bottom: calc(80px + 1em);
  }
}
#footer #pagetopbtnbox a {
  font-size: 2rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
}
#footer #pagetopbtnbox a::after {
  font-family: "Material Symbols Outlined";
  content: "\e316";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  font-size: 2rem;
  color: white;
}
#footer #pagetopbtnbox.fixed {
  right: 1em;
}
#footer .spmenu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #footer .spmenu {
    display: flex;
    flex-wrap: wrap;
  }
  #footer .spmenu > * {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 80px;
    color: black;
  }
  #footer .spmenu > *:nth-child(1) {
    background: var(--gray);
  }
  #footer .spmenu > *:nth-child(2) {
    background: #DDD;
  }
  #footer .spmenu > *:nth-child(3) {
    background: #BBB;
  }
  #footer .spmenu a {
    text-decoration: none;
  }
}
#footer .footernav .mainnav {
  margin-bottom: 1rem;
}
#footer .footernav .mainnav ul {
  display: flex;
  justify-content: right;
}
#footer .footernav .mainnav ul li {
  list-style: none;
  display: inline-block;
}
#footer .footernav .mainnav ul li:not(:first-child)::before {
  content: "｜";
}
#footer .footernav .mainnav ul li a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #footer .footernav .mainnav ul {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #footer .footernav .mainnav ul li {
    width: calc((100% - 0.5rem) / 2);
    list-style: none;
  }
  #footer .footernav .mainnav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 8px;
    padding: 0.75em 0;
  }
  #footer .footernav .mainnav ul li a:hover {
    border-color: var(--yellow);
  }
  #footer .footernav .mainnav ul li:not(:first-child)::before {
    content: none;
  }
  #footer .footernav .mainnav ul li:nth-child(1), #footer .footernav .mainnav ul li:nth-child(2) {
    margin-bottom: 1rem;
  }
}
#footer .footernav .subnav {
  display: flex;
  justify-content: right;
}
#footer .footernav .subnav ul {
  display: flex;
  justify-content: space-between;
  width: 20em;
}
@media screen and (max-width: 768px) {
  #footer .footernav .subnav ul {
    width: 100%;
  }
}
#footer .footernav .subnav ul li {
  width: calc((100% - 0.5rem) / 2);
  list-style: none;
}
#footer .footernav .subnav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 8px;
  padding: 0.75em 0;
}
#footer .footernav .subnav ul li a:hover {
  border-color: var(--yellow);
}
#footer .copyright {
  padding: var(--mM) 0 1em;
  text-align: center;
}/*# sourceMappingURL=style.css.map */