@charset "UTF-8";
/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  /* Remove gray overlay on links */
}

/* Sections */
body {
  margin: 0;
  /* Remove margin */
}

main {
  display: block;
  /* Render `main` consistently */
}

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

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

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
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;
}

/* Text-level semantics */
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;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
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;
}

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;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
body {
  font-family: "Shippori Mincho", "serif";
  color: #414141;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.section-ttl {
  font-size: clamp(20px, 2.5vw, 32px);
}

.section-ttl span {
  color: #a69a6c;
  font-family: "Cormorant Garamond", "serif";
  font-size: clamp(12px, 2.5vw, 16px);
}

/* ========================================
    コンテナ幅
    ======================================== */
.contents {
  padding: 80px 0 0 0;
}
@media (max-width: 600px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(800px + 40px);
}

.container-md {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(900px + 40px);
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1080px + 40px);
}

.container-lg {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1200px + 40px);
}

.container-xl {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1300px + 40px);
}

/* ========================================
    共通
    ======================================== */
body {
  background: url("../img/common/backgrount-img.webp") center center/contain repeat;
}

.m-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .m-grid-4col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.m-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .m-grid-3col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.m-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .m-grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.m-section-ttl {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .m-section-ttl {
    font-size: 16px;
  }
}

.m-section-ttl span {
  display: block;
  font-family: "Cormorant Garamond", "serif";
  color: #a69a6c;
  font-size: 40px;
}

.m-news-item__arrow {
  width: 12px;
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .m-news-item__arrow {
    width: 8px;
  }
}

.m-news-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  padding-left: 10px;
  border-bottom: 1px solid #a1a1a1;
  transition: opacity 0.3s ease;
}
@media (max-width: 600px) {
  .m-news-item a {
    padding: 14px 10px;
  }
}

.m-news-item a:hover {
  opacity: 0.7;
}
.m-news-item a:hover .m-news-item__arrow {
  transform: translateX(5px);
}

.m-news-item__body {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 10px;
}
@media (max-width: 600px) {
  .m-news-item__body {
    gap: 2px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.m-more-btn a {
  display: flex;
  align-items: center;
  height: 60px;
}

.m-more-btn span {
  position: relative;
  display: block;
  width: 70px;
  height: 1px;
  margin-left: 10px;
}

.m-more-btn span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #a1a1a1;
  z-index: 2;
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .m-more-btn span::before {
    width: 45px;
  }
}

.m-more-btn span::after {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(50%, -50%);
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: #e5e4db;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .m-more-btn span::after {
    width: 45px;
    height: 45px;
  }
}

.m-more-btn:hover span::before {
  transform: translateX(20px);
}
.m-more-btn:hover span::after {
  background: #636363;
}

.m-gradation-container {
  background: linear-gradient(to bottom, #e0dcc5, #e0ddd7);
}

.m-gradation-container--02 {
  background: linear-gradient(to bottom, #e0dcc5 35%, #e0dcc5 7%);
}

.m-bg-accent {
  position: relative;
}

.m-gb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0);
  z-index: -999;
}

.m-bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
}

.m-bg-accent--02,
.m-gb-inner--02 {
  height: 50vh;
}

.m-bg-img--02 {
  background-image: url("../img/style/style-bg.webp");
}

.style-environment--sp-img {
  height: 30vh;
}
.style-environment--sp-img img {
  object-fit: cover;
}

.m-switch-content {
  margin-top: 230px;
  padding-top: 80px;
  padding-bottom: 200px;
}
@media (max-width: 600px) {
  .m-switch-content {
    padding-top: 60px;
    margin-top: 120px;
    padding-bottom: 120px;
  }
}

.m-switch-content-list {
  display: flex;
  align-items: end;
}

.m-switch-content-item {
  flex: 1;
  cursor: pointer;
  transition: all opacity 0.6s ease;
}
.m-switch-content-item p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  font-size: 18px;
  font-weight: 500;
  background: #cacaca;
  transition: all opacity 0.6s ease;
  color: #fff;
}
@media (max-width: 600px) {
  .m-switch-content-item p {
    height: 50px;
    font-size: 16px;
  }
}
.m-switch-content-item:hover:not(.is-active) p {
  opacity: 0.7;
}
.m-switch-content-item.is-active p {
  background: #fff;
  color: #7b755e;
  height: 120px;
}
@media (max-width: 600px) {
  .m-switch-content-item.is-active p {
    height: 100px;
  }
}

.m-switch-content-body {
  position: relative;
  padding: 0 80px;
  padding-top: 108px;
  padding-bottom: 120px;
  background: #fff;
}
@media (max-width: 600px) {
  .m-switch-content-body {
    padding: 0 20px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.m-switch-content-body-inner {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.m-switch-content-body-inner.is-active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.m-switch-content-body-inner__content th,
.m-switch-content-body-inner__content td {
  border: none !important;
  border-top: 1px solid #9d9d9d !important;
}

.m-switch-content-body-inner__content tr:last-child th,
.m-switch-content-body-inner__content tr:last-child td {
  border-bottom: 1px solid #9d9d9d !important;
}

.m-switch-content-body-inner__content tr td:first-child {
  white-space: nowrap;
}

.m-switch-content-body-inner__content {
  line-height: 1.8;
}
.m-switch-content-body-inner__content h2,
.m-switch-content-body-inner__content h3,
.m-switch-content-body-inner__content h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .m-switch-content-body-inner__content h2,
  .m-switch-content-body-inner__content h3,
  .m-switch-content-body-inner__content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
.m-switch-content-body-inner__content h2 {
  font-size: 24px;
}
@media (max-width: 600px) {
  .m-switch-content-body-inner__content h2 {
    font-size: 20px;
  }
}
.m-switch-content-body-inner__content h3 {
  font-size: 20px;
}
@media (max-width: 600px) {
  .m-switch-content-body-inner__content h3 {
    font-size: 18px;
  }
}
.m-switch-content-body-inner__content h4 {
  font-size: 18px;
}
@media (max-width: 600px) {
  .m-switch-content-body-inner__content h4 {
    font-size: 16px;
  }
}
.m-switch-content-body-inner__content p {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .m-switch-content-body-inner__content p {
    margin-bottom: 15px;
  }
}
.m-switch-content-body-inner__content ul,
.m-switch-content-body-inner__content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
@media (max-width: 600px) {
  .m-switch-content-body-inner__content ul,
  .m-switch-content-body-inner__content ol {
    margin-bottom: 15px;
  }
}
.m-switch-content-body-inner__content li {
  margin-bottom: 10px;
}
.m-switch-content-body-inner__content table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}
@media (max-width: 600px) {
  .m-switch-content-body-inner__content table {
    margin-bottom: 20px;
  }
}
.m-switch-content-body-inner__content th,
.m-switch-content-body-inner__content td {
  padding: 26px;
  border: 1px solid #ddd;
}
@media (max-width: 600px) {
  .m-switch-content-body-inner__content th,
  .m-switch-content-body-inner__content td {
    padding: 15px;
    font-size: 14px;
  }
}
.m-switch-content-body-inner__content th {
  background: #f5f5f5;
  font-weight: 600;
  text-align: left;
}

.recruit-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-top: 170px;
  gap: 40px;
}
@media (max-width: 600px) {
  .recruit-links {
    gap: 20px;
    margin-top: 100px;
    grid-template-columns: 1fr;
  }
}

.new-graduate-links {
  margin: 0 auto;
  max-width: 500px;
  margin-top: 170px;
}
@media (max-width: 600px) {
  .new-graduate-links {
    margin-top: 100px;
  }
}

.recruit-links__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  transition: opacity 0.3s ease;
}

.recruit-links__item a:hover {
  opacity: 0.7;
}

.recruit-links__item-text {
  display: inline-block;
  width: fit-content;
  font-size: 20px;
}

.recruit-links__item--01 {
  background: #a69a6c;
  color: #fff;
}

.recruit-links__mail-icon {
  width: 30px;
  margin-right: 23px;
}

.recruit-links__item--02 a {
  border: 5px solid #0a4188;
  background: #fff;
  position: relative;
}

.recruit-links__item--02 a::after {
  content: "※エンゲージ経由の応募も可能です。";
  position: absolute;
  bottom: -10px;
  right: 0;
  transform: translateY(100%);
}

.recruit-links__en-icon {
  width: 60%;
}

.recruit-links__en-text {
  text-align: end;
}

/* fade-in-text FOUC対策 */
.fade-in-text {
  visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.fade-in-text.is-loaded {
  visibility: visible;
}
.fade-in-text span {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ========================================
    ヘッダー
    ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.45);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4vw;
}
@media (max-width: 600px) {
  .header__inner {
    height: 70px;
  }
}

.header__logo a {
  display: block;
  width: clamp(100px, 9vw, 140px);
}

.header__nav-wrap {
  display: flex;
  align-items: center;
  gap: 3.5vw;
}
@media (max-width: 1200px) {
  .header__nav-wrap {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
}

.header__nav-item {
  margin-left: 2vw;
  transition: 0.3s ease;
}
.header__nav-item:hover {
  color: #a69a6c;
}

.header__entry {
  font-family: "Noto Sans JP", "serif";
}

.header__entry-btn-wrap {
  position: relative;
  z-index: 1;
}

.header__entry-btn a {
  width: 230px;
  display: block;
  border-radius: 28px;
  background: #a69a6c;
  color: #fff;
  padding: 10px 24px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
.header__entry-btn a .text-animation {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1.4em;
  line-height: 1.4;
}
.header__entry-btn a .text-animation__main,
.header__entry-btn a .text-animation__clone {
  display: block;
  transition: transform 0.15s ease-in-out;
}
.header__entry-btn a .text-animation__clone {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.header__entry-btn a:hover .text-animation__main {
  transform: translateY(-100%);
}
.header__entry-btn a:hover .text-animation__clone {
  transform: translateY(0);
}

.header__entry-btn--default a {
  width: 150px;
  text-align: center;
  border-radius: 28px;
  transition: all 0.25s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
}

.header__entry-btn-wrap:hover .header__entry-btn--default a,
.header__entry-btn-wrap.is-active .header__entry-btn--default a {
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #fff;
  width: 200px;
  text-align: end;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: end;
}

.header__entry-btn-wrap .header__entry-btn--default a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-135deg);
  margin-bottom: 4px;
}

.header__entry-btn--open {
  pointer-events: none;
}

.header__entry-btn-wrap.header__entry-btn--open {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: #a69a6c;
  border-radius: 0 0 16px 16px;
  text-align: end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease-in-out 0.1s, transform 0.25s ease-in-out 0.1s, visibility 0.25s 0.1s, border-radius 0.25s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

.header__entry-btn-wrap.header__entry-btn--open .header__entry-btn {
  margin-top: 8px;
  width: 100%;
}

.header__entry-btn-wrap.header__entry-btn--open .header__entry-btn a {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  cursor: pointer;
}

.header__entry-btn-wrap.header__entry-btn--open .header__entry-btn a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.header__entry-btn-wrap.header__entry-btn--open .header__entry-btn:first-child {
  margin-top: 0;
}

.header__entry-btn-wrap:hover .header__entry-btn--open,
.header__entry-btn-wrap.is-active .header__entry-btn--open {
  pointer-events: auto;
}

.header__entry-btn-wrap:hover .header__entry-btn-wrap.header__entry-btn--open,
.header__entry-btn-wrap.is-active .header__entry-btn-wrap.header__entry-btn--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 200px;
  transition: opacity 0.25s ease-in-out 0.1s, transform 0.25s ease-in-out 0.1s, visibility 0.25s 0.1s, max-height 0.25s ease-in-out 0.1s;
}

.header__corp-btn a {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 4px;
  border-bottom: 1px solid #414141;
  font-family: "Noto Sans JP", "serif";
  margin-top: 10px;
  position: relative;
  z-index: 0;
  cursor: pointer;
}
.header__corp-btn a span {
  display: block;
  width: 12px;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 28px;
    right: 4vw;
    z-index: 103;
  }
}

.hamburger__icon {
  width: 32px;
  height: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger__icon span {
  display: block;
  width: 100%;
  height: 1px;
  background: #414141;
  transition: all 0.3s ease;
}

.hamburger.is-open .hamburger__icon span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.hamburger.is-open .hamburger__icon span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* ========================================
    フッター
    ======================================== */
.footer {
  background: #7b755e;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
  padding: 100px 7vw;
  color: #fff;
}
@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0px;
    padding-top: 0;
  }
}

.footer__left-text {
  font-size: 24px;
}
@media (max-width: 600px) {
  .footer__left-text {
    font-size: 16px;
    text-align: center;
    margin-top: 18px;
  }
}

.footer__entry {
  display: flex;
  gap: 32px;
  margin-top: 84px;
}
@media (max-width: 600px) {
  .footer__entry {
    gap: 20px;
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
  }
}

.footer__btn {
  width: 100%;
  max-width: 300px;
}

.footer__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 68px;
  font-size: 18px;
  background: #fff;
  color: #a69a6c;
  font-weight: 500;
  letter-spacing: 0.2em;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.footer__btn a::after {
  background: #a69a6c;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.footer__btn a:hover {
  color: #fff;
}

.footer__btn a:hover::after {
  transform: scale(1, 1);
}

.footer__right {
  position: relative;
}
@media (max-width: 600px) {
  .footer__right {
    order: -1;
  }
}

.footer__accent {
  width: 100%;
  max-width: 500px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0%, 50%);
}
@media (max-width: 600px) {
  .footer__accent {
    max-width: 200px;
  }
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__bottom-inner {
    flex-direction: column;
    gap: 32px;
  }
}

.footer__logo {
  width: clamp(150px, 10vw, 180px);
}

.footer__nav-list {
  display: flex;
  align-items: center;
  color: #fff;
}
@media (max-width: 600px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}

.footer__nav-item {
  font-size: 14px;
  margin-left: 2.7vw;
}

.footer__bottom {
  padding: 15px 7vw;
}
@media (max-width: 600px) {
  .footer__bottom {
    padding: 60px 20px;
    padding-top: 20px;
  }
}

/* ========================================
    メインビジュアル
    ======================================== */
.mainV {
  width: 100%;
  height: 100vh;
}
@media (max-width: 600px) {
  .mainV {
    height: auto;
  }
}

.mainV__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.mainV__copy {
  position: absolute;
  bottom: 0;
  left: 45%;
  transform: translate(-50%, 20%);
  width: clamp(200px, 30vw, 450px);
}

.mainV__img {
  width: 100%;
  height: 100%;
}

.mainV__img img {
  object-fit: cover;
  object-position: left bottom;
}

/* ========================================
    下層ページメインビジュアル
    ======================================== */
.page-mainV {
  width: 100%;
  padding-top: 200px;
}
@media (max-width: 600px) {
  .page-mainV {
    padding-top: 120px;
  }
}

.page-mainV__inner {
  padding-left: 10vw;
}
@media (max-width: 600px) {
  .page-mainV__inner {
    padding-left: 16px;
  }
}

.page-mainV__ttl {
  font-size: clamp(20px, 2.7vw, 40px);
}

.page-mainV__accent {
  font-size: clamp(20px, 2.2vw, 32px);
  font-family: "Cormorant Garamond", "serif";
  color: #a69a6c;
  margin-top: 38px;
}

.page-mainV__img-recruit {
  max-width: 420px;
  margin-top: 0px;
}

/* ========================================
    ナビゲーションドロワー
    ======================================== */
.nav-drawer {
  display: none;
}
@media (max-width: 1200px) {
  .nav-drawer {
    display: block;
  }
}

.nav-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 98;
}

.nav-drawer.is-open .nav-drawer__overlay {
  opacity: 1;
  visibility: visible;
}

.nav-drawer__content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 102;
  padding: 100px 6vw 40px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

.nav-drawer.is-open .nav-drawer__content {
  right: 0;
}

.nav-drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-drawer__nav-item a {
  display: block;
  color: #414141;
  font-size: 16px;
  font-family: "Noto Sans JP", "serif";
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav-drawer__nav-item a:hover {
  border-bottom-color: #a69a6c;
}

.nav-drawer__entry {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-drawer__entry-btn a {
  display: block;
  background: #a69a6c;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  border-radius: 28px;
  font-family: "Noto Sans JP", "serif";
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
.nav-drawer__entry-btn a:hover {
  opacity: 0.8;
}

.nav-drawer__corp-btn {
  margin-top: 32px;
  text-align: center;
}

.nav-drawer__corp-btn a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #414141;
  font-family: "Noto Sans JP", "serif";
  font-size: 14px;
  border-bottom: 1px solid #414141;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.nav-drawer__corp-btn a:hover {
  opacity: 0.7;
}
.nav-drawer__corp-btn a span {
  display: block;
  width: 12px;
  transform: translateY(-2px);
}

/* ========================================
    投稿一覧ページ
    ======================================== */
.news__inner {
  margin-top: 130px;
  padding-bottom: 180px;
}
@media (max-width: 600px) {
  .news__inner {
    margin-top: 80px;
    padding-bottom: 120px;
  }
}

/* ========================================
    投稿詳細ページ
    ======================================== */
.back-btn a {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 1px solid #414141;
  padding: 10px 20px;
  border-radius: 6px;
  color: #414141;
  min-width: 200px;
  transition: all 0.3s ease;
  margin-top: 150px;
}
@media (max-width: 600px) {
  .back-btn a {
    margin-top: 80px;
  }
}

.back-btn a:hover {
  background: #a69a6c;
  color: #fff;
  border-color: #a69a6c;
}

.m-post-main img {
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .m-post-main img {
    margin-bottom: 30px;
    max-width: 90%;
  }
}
.m-post-main p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 2;
}
@media (max-width: 600px) {
  .m-post-main p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.m-post-main a {
  display: inline-block;
  margin-bottom: 30px;
  color: #a69a6c;
  text-decoration: underline;
  word-break: break-all;
}
@media (max-width: 600px) {
  .m-post-main a {
    margin-bottom: 20px;
  }
}
.m-post-main h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .m-post-main h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.m-post-main h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .m-post-main h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.m-post-main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .m-post-main h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

figure.wp-block-image.size-large {
  text-align: center;
}

.m-post-main__head {
  border-bottom: 1px solid #949494;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .m-post-main__head {
    margin-bottom: 20px;
  }
}

.m-post-main__date {
  display: block;
  margin-bottom: 16px;
}

.m-post-main__title {
  font-size: 32px;
}
@media (max-width: 600px) {
  .m-post-main__title {
    font-size: 24px;
  }
}

.pagenation-wrapper {
  margin-top: 160px;
}
@media (max-width: 600px) {
  .pagenation-wrapper {
    margin-top: 60px;
  }
}
.pagenation-wrapper .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
.pagenation-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  text-decoration: none;
  color: #a1a1a1;
  font-size: 16px;
  font-weight: 500;
}
.pagenation-wrapper .page-numbers.current {
  color: #000000;
}
.pagenation-wrapper .page-numbers.dots {
  pointer-events: none;
}
.pagenation-wrapper .prev {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
  color: #414141;
}
.pagenation-wrapper .prev::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}
.pagenation-wrapper .next {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  color: #414141;
}
.pagenation-wrapper .next::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}
@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

.u-center {
  text-align: center;
}

.u-mt-120 {
  margin-top: 120px;
}
@media (max-width: 600px) {
  .u-mt-120 {
    margin-top: 60px;
  }
}

/* ========================================
    トップページ
    ======================================== 
*/
.top-concept {
  margin-top: 221px;
  position: relative;
}
@media (max-width: 600px) {
  .top-concept {
    margin-top: 10px;
  }
}

.top__concept-body {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .top__concept-body {
    order: 3;
  }
}

.top__concept-head {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 70px;
}
@media (max-width: 600px) {
  .top__concept-head {
    margin-bottom: 40px;
  }
}

.top__concept-text {
  line-height: 2;
  margin-top: 2em;
}

.top__concept-text--nowrap {
  white-space: nowrap;
}

.top-concept__inner {
  display: grid;
  grid-template-columns: 0.3fr 0.5fr 0.2fr;
  gap: 90px;
}
@media (max-width: 1200px) {
  .top-concept__inner {
    gap: 40px;
  }
}
@media (max-width: 1080px) {
  .top-concept__inner {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .top-concept__inner {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .top-concept__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.top__concept-img-inner {
  display: flex;
  flex-direction: column;
  gap: 150px;
}
@media (max-width: 600px) {
  .top__concept-img-inner {
    display: none;
  }
}

.top__concept-img-inner--sp {
  display: none;
}
@media (max-width: 600px) {
  .top__concept-img-inner--sp {
    display: flex;
    gap: 20px;
  }
}

.top__concept-img-inner--sp-inner {
  display: none;
}
@media (max-width: 600px) {
  .top__concept-img-inner--sp-inner {
    padding: 0 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 20px;
    align-self: flex-start;
    transform: translateY(-50px);
  }
}

.top__concept-img-1-pc {
  transform: translateY(-20%);
}

@media (max-width: 600px) {
  .top__concept-img-1 {
    margin-top: 100px;
  }
}

.top__concept-img-3-sp {
  display: none;
}
@media (max-width: 600px) {
  .top__concept-img-3-sp {
    display: block;
    width: 30%;
  }
}

.top-news {
  padding-top: 130px;
}
@media (max-width: 600px) {
  .top-news {
    padding-top: 80px;
  }
}

.top-news__inner {
  background: #fff;
  padding: 36px 64px;
  padding-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 600px) {
  .top-news__inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }
}

.top-news__left {
  flex-shrink: 0;
}

.top-news__right {
  width: 100%;
}

@media (max-width: 600px) {
  .m-section-ttl-news {
    text-align: center;
  }
}

.top-btn-news {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .top-btn-news {
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
  }
}

.top-about {
  margin-top: 180px;
  background: linear-gradient(to right, #e0dcc5, #e0ddd7);
  padding-top: 170px;
  padding-bottom: 238px;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 1200px) {
  .top-about {
    padding-top: 90px;
    padding-bottom: 120px;
    margin-top: 120px;
    overflow: visible;
    height: auto;
  }
}
@media (max-width: 600px) {
  .top-about {
    margin-top: 72px;
    padding-top: 72px;
    padding-bottom: 80px;
  }
}

.top-about__inner {
  padding-left: 15vw;
  padding-right: 120px;
  display: flex;
  align-items: center;
  gap: 100px;
  width: fit-content;
}
@media (max-width: 1200px) {
  .top-about__inner {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    gap: 60px;
    width: 100%;
  }
}

.top-about__left {
  flex-shrink: 0;
  width: 394px;
}
@media (max-width: 1200px) {
  .top-about__left {
    width: 100%;
  }
}

.top-about__right {
  flex-shrink: 0;
  width: fit-content;
}
@media (max-width: 1200px) {
  .top-about__right {
    width: 100%;
  }
}

.top-about__list {
  display: grid;
  grid-template-columns: repeat(4, 700px);
  gap: 100px;
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .top-about__list {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .top-about__list {
    gap: 80px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

.top-about__head {
  font-size: 28px;
  margin: 42px 0;
  font-weight: 500;
}
@media (max-width: 600px) {
  .top-about__head {
    font-size: 20px;
    margin: 30px 0;
  }
}

.top-about__text {
  line-height: 2;
}

.top-about__item-title {
  font-size: 20px;
  font-weight: 600;
  margin: 18px 0;
}
@media (max-width: 600px) {
  .top-about__item-title {
    font-size: 18px;
    margin: 13px 0;
  }
}

.top-about__item-text {
  line-height: 1.7;
}

.top-about__btn {
  width: fit-content;
  margin: 0 0 0 auto;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .top-about__btn {
    margin: 0 auto;
    margin-top: 50px;
  }
}

.top-interview {
  margin-top: 120px;
  padding-bottom: 238px;
}
@media (max-width: 600px) {
  .top-interview {
    padding-bottom: 80px;
    margin-top: 72px;
  }
}

@media (max-width: 600px) {
  .top-interview .m-section-ttl {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .top-interview .container-xl {
    padding: 0px;
  }
}

.top-interview__inner {
  display: flex;
  gap: 100px;
}
@media (max-width: 600px) {
  .top-interview__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.top-interview__left {
  flex-shrink: 0;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .top-interview__left {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-left: 20px;
  }
}

@media (max-width: 600px) {
  .top-interview__left .m-section-ttl span {
    text-align: left;
  }
}
.top-interview__text {
  font-size: 28px;
  writing-mode: vertical-rl;
  margin-top: 40px;
  line-height: 1.7;
  letter-spacing: 5px;
}
@media (max-width: 600px) {
  .top-interview__text {
    writing-mode: horizontal-tb;
    margin-top: 30px;
    font-size: 20px;
  }
}

.top-interview__right {
  width: 100%;
}

.top-interview__list {
  gap: 60px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .top-interview__list {
    gap: 15px;
  }
}

.top-interview__item {
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  transition: 0.3s;
}

.top-interview__item:hover {
  transform: scale(1.01);
}

.top-interview__item-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .top-interview__item-img {
    border-radius: 0px;
  }
}

.top-interview__item-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  z-index: 1;
}
@media (max-width: 600px) {
  .top-interview__item-img::before {
    background: 0;
    border-radius: 0px;
  }
}

.top-interview__item:hover .top-interview__item-img::before {
  background: rgba(0, 0, 0, 0);
}

.top-interview__item-body {
  position: absolute;
  bottom: 46px;
  left: 46px;
}
@media (max-width: 600px) {
  .top-interview__item-body {
    bottom: 20px;
    left: 20px;
  }
}

.top-interview__item-en-title {
  font-size: 20px;
  font-family: "Cormorant Garamond", "serif";
  color: #a69a6c;
  margin-bottom: 20px;
}

.top-interview__item-title {
  font-size: clamp(15px, 1.66vw, 28px);
  margin-bottom: 40px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .top-interview__item-title {
    font-size: clamp(15px, 1.66vw, 28px);
    margin-bottom: 12px;
  }
}

.top-interview__item-name {
  font-size: clamp(12px, 1.38vw, 22px);
  margin-bottom: 10px;
}

.top-interview__item-date {
  font-size: 13px;
}

.top-works-style {
  margin-top: 120px;
  position: relative;
}
@media (max-width: 600px) {
  .top-works-style {
    margin-top: 50px;
  }
}

.top-works-style__content {
  width: 100%;
  height: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0 60px;
  text-align: center;
}
@media (max-width: 600px) {
  .top-works-style__content {
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.75);
  }
}

.top-works-style__head {
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .top-works-style__head {
    position: relative;
    transform: translateY(0%);
    margin-top: 40px;
  }
}

.top-works-style__accent {
  display: block;
  margin: 0 auto;
  position: relative;
  font-size: clamp(36px, 4vw, 60px) !important;
}

.top-works-style__content-inner {
  position: absolute;
  top: calc(50% + 45px);
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 600px) {
  .top-works-style__content-inner {
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    margin-top: 25px;
  }
}

.top-works-style__img {
  font-size: 18px;
  font-family: "Cormorant Garamond", "serif";
  color: #a69a6c;
  margin-top: 24px;
}
@media (max-width: 600px) {
  .top-works-style__img {
    font-size: 13px;
  }
}

.top-works-style__btn {
  width: fit-content;
  margin: 0 auto;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .top-works-style__btn {
    margin-top: 25px;
  }
}

.top-works-style__text {
  font-size: clamp(20px, 2.7vw, 40px);
  margin-bottom: 24px;
}

.splide,
.splide-wrapper,
.splide__list,
.splide__track,
.splide__slide {
  min-height: 400px;
  max-height: 500px;
}
.splide img,
.splide-wrapper img,
.splide__list img,
.splide__track img,
.splide__slide img {
  object-fit: cover;
}

.top-movie-container {
  padding-top: 180px;
}
@media (max-width: 600px) {
  .top-movie-container {
    padding-top: 80px;
  }
}

.top-movie {
  width: calc(100% - 7vw);
  margin: 0 0 0 auto;
  background: #fff;
  border-radius: 20px;
  padding-top: 54px;
  padding-bottom: 130px;
}
@media (max-width: 600px) {
  .top-movie {
    padding-top: 22px;
    padding-bottom: 40px;
    width: 100%;
    border-radius: 10px 0 0 10px;
  }
}

@media (max-width: 600px) {
  .top-movie-container__inner {
    padding-left: 20px;
  }
}

.top-movie__text {
  margin-top: 35px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.top-faq {
  padding-bottom: 190px;
}
@media (max-width: 600px) {
  .top-faq {
    padding-bottom: 100px;
  }
}

.top-faq__inner {
  display: flex;
  gap: 110px;
}
@media (max-width: 600px) {
  .top-faq__inner {
    flex-direction: column;
    gap: 10px;
  }
}

.top-faq__left {
  flex-shrink: 0;
}

.top-faq__left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .top-faq__left-content {
    align-items: flex-start;
  }
  .top-faq__left-content .u-center {
    text-align: left;
  }
}

.top-faq__text {
  writing-mode: vertical-rl;
  font-size: 28px;
  margin-top: 60px;
  line-height: 2;
  letter-spacing: 5px;
}
@media (max-width: 600px) {
  .top-faq__text {
    writing-mode: horizontal-tb;
    font-size: 20px;
    margin-top: 30px;
    line-height: 1.5;
  }
}

.top-faq__right {
  width: 100%;
}

.top-faq__list {
  gap: 60px;
  display: flex;
  flex-direction: column;
}

/*--------------------------------------------------
accordion_section
--------------------------------------------------*/
.accordion {
  padding-top: 80px;
}
@media (max-width: 600px) {
  .accordion {
    padding-top: 40px;
  }
}

.accordion__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}
@media (max-width: 600px) {
  .accordion__list {
    row-gap: 20px;
  }
}

.accordion__item {
  border-radius: 8px;
  background: #fff;
}

.accordion__q {
  display: flex;
  border-radius: 8px;
  background: #fff;
  padding: 30px 4em 30px 50px;
  cursor: pointer;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .accordion__q {
    font-size: 15px;
    padding: 20px 2em 20px 1em;
  }
}
.accordion__q::before {
  content: "Q.";
  display: inline-block;
  margin-right: 10px;
  font-family: "Noto Sans JP", "serif";
  font-size: 17px;
  flex-shrink: 0;
}

.accordion__q::after {
  content: "";
  width: 11px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 1.5em;
  background: url(../../assets/img/common/arrow.webp) center/cover;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.15s ease;
}
@media (max-width: 600px) {
  .accordion__q::after {
    width: 8px;
    height: 16px;
  }
}

@media screen and (max-width: 600px) {
  .accordion__q::after {
    width: 8px;
    height: 16px;
  }
}
.accordion__q.is-active::after {
  content: "";
  background: url(../../assets/img/common/arrow.webp) center/cover;
  transform: translateY(-50%) rotate(0deg);
}

.accordion__a {
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
  line-height: 1.9;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: none;
  padding: 0 50px;
}
@media (max-width: 600px) {
  .accordion__a {
    padding: 0 20px;
  }
}

.accordion__a-inner:before {
  content: "A.";
  display: inline-block;
  margin-right: 10px;
  font-family: "Noto Sans JP", "serif";
  font-size: 18px;
  flex-shrink: 0;
}

.accordion__a-inner {
  padding: 20px 0;
  display: flex;
}

.accordion__q.is-active {
  border-bottom: 1px solid #afafaf;
  border-radius: 8px 8px 0 0;
}

.accordion__q.is-active + .accordion__a {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: height 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

.accordion__a p {
  font-size: 17px;
}

@media screen and (max-width: 768px) {
  .accordion__a p {
    font-size: 14px;
  }
}
.m-bg-accent {
  position: relative;
}

.m-gb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0);
  z-index: -999;
}

.m-bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
}

.top-section-accent,
.top-section-accent__inner {
  height: 50vh;
}
@media (max-width: 600px) {
  .top-section-accent,
  .top-section-accent__inner {
    height: 35vh;
  }
}

.top-section-accent__img {
  background-image: url("../img/top/top-section-bg.webp");
}

.top-recruit {
  margin-top: 150px;
  padding-bottom: 180px;
}
@media (max-width: 600px) {
  .top-recruit {
    padding-bottom: 100px;
    margin-top: 90px;
  }
}

.top-recruit__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .top-recruit__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.top-recruit__head span {
  max-width: 420px;
}

.top-recruit__item span {
  display: block;
  width: 11px;
  height: 22px;
  transform: translateY(-2px);
  position: relative;
  z-index: 1;
}

.top-recruit__item span img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s;
}

.top-recruit__item span img:first-child {
  opacity: 1;
}

.top-recruit__item span img:last-child {
  opacity: 0;
}

.top-recruit__item--reverse span img:first-child {
  opacity: 0;
}

.top-recruit__item--reverse span img:last-child {
  opacity: 1;
}

.top-recruit__text {
  font-size: 28px;
  margin-top: 35px;
}
@media (max-width: 600px) {
  .top-recruit__text {
    font-size: 20px;
    margin-top: 30px;
  }
}

.top-recruit__list {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.top-recruit__item a {
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 20px;
  padding-left: 40px;
  border-radius: 10px;
  background: #a69a6c;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #a69a6c;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.top-recruit__item a::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  border-radius: 10px;
}

.top-recruit__item--reverse a {
  color: #a69a6c;
  background: #fff;
}

.top-recruit__item--reverse a::after {
  background: #a69a6c;
}

.top-recruit__item a:hover {
  color: #a69a6c;
}

.top-recruit__item a:hover::after {
  transform: scale(1, 1);
}

.top-recruit__item--reverse a:hover {
  color: #fff;
}

.top-recruit__item a:hover span img:first-child {
  opacity: 0;
}

.top-recruit__item a:hover span img:last-child {
  opacity: 1;
}

.top-recruit__item--reverse a:hover span img:first-child {
  opacity: 1;
}

.top-recruit__item--reverse a:hover span img:last-child {
  opacity: 0;
}

.interview-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.interview-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.interview-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.interview-popup__content {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #fff;
  background-image: url(../../assets/img/common/backgrount-img.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
}
@media (max-width: 600px) {
  .interview-popup__content {
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
  }
}

.interview-popup__close {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 27px;
  height: 27px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 600px) {
  .interview-popup__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 27px;
    height: 27px;
  }
}
.interview-popup__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #a69a6c;
}
.interview-popup__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.interview-popup__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.interview-popup__left {
  flex-shrink: 0;
  width: 100%;
  max-width: 35vw;
  height: auto;
  overflow-y: auto;
}
@media (max-width: 600px) {
  .interview-popup__left {
    max-width: 100%;
    height: auto;
    overflow-y: visible;
  }
}

.interview-popup__left-inner {
  position: sticky;
  top: 0;
  padding: 0;
}
@media (max-width: 600px) {
  .interview-popup__left-inner {
    position: relative;
  }
}

.interview-popup__left-img {
  height: 100vh;
}
@media (max-width: 600px) {
  .interview-popup__left-img {
    height: 50vh;
  }
}

.interview-popup__left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-popup__right {
  flex: 1;
  height: calc(100vh - 50px);
  overflow-y: auto;
  padding: 60px 60px 0 0;
  position: relative;
  display: flex;
  padding-left: 60px;
  flex-direction: column;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .interview-popup__right {
    height: auto;
    padding: 0 20px 0;
    overflow-y: visible;
    margin-top: 20px;
  }
}

.interview-popup__right-inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}
@media (max-width: 600px) {
  .interview-popup__right-inner {
    width: 100%;
  }
}

.interview-popup__right-content {
  flex: 1;
  padding-bottom: 80px;
  margin-top: 132px;
}
@media (max-width: 600px) {
  .interview-popup__right-content {
    margin-top: 0px;
  }
}

.interview-popup__right-footer {
  position: sticky;
  bottom: 0;
  width: 65vw;
  margin-left: -60px;
  margin-right: -60px;
  background: #a69a6c;
  padding: 20px 60px;
  margin-top: auto;
  flex-shrink: 0;
  font-family: "Noto Sans JP", "serif";
  z-index: 5;
  color: #fff;
}
@media (max-width: 600px) {
  .interview-popup__right-footer {
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px;
  }
}

.interview-popup__right-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.current-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-btn span {
  display: block;
  width: 11px;
  height: 22px;
  transform: translateY(-2px);
  position: relative;
}

.current-btn__inner {
  display: flex;
  align-items: center;
  gap: 4px;
}

.next-btn,
.back-btn {
  cursor: pointer;
}

.interview-popup__right-en-title {
  font-size: 36px;
  color: #a69a6c;
  font-family: "Cormorant Garamond", "serif";
}
@media (max-width: 600px) {
  .interview-popup__right-en-title {
    font-size: 26px;
  }
}

.interview-popup__right-title {
  font-size: 40px;
  margin-top: 60px;
}
@media (max-width: 600px) {
  .interview-popup__right-title {
    font-size: 26px;
    margin-top: 30px;
  }
}

.interview-popup__right-name {
  margin-top: 40px;
}

.interview-popup__right-name-date {
  font-size: 14px;
}

.interview-popup__right-name-ja {
  font-size: 20px;
}

.interview-popup__right-question {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid #a69a6c;
}

.interview-popup__right-answer {
  padding-top: 20px;
  line-height: 2;
}

.interview-popup__right-content-img {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .interview-popup__right-content-img {
    margin-top: 40px;
  }
}

.interview-popup__right-content-item {
  margin-top: 65px;
}
@media (max-width: 600px) {
  .interview-popup__right-content-item {
    margin-top: 40px;
  }
}

.my-style {
  margin-top: 65px;
}

.my-style__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  gap: 30px;
  background: linear-gradient(to left, #e0dcc5, #eaeada);
}
@media (max-width: 600px) {
  .my-style__inner {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 20px;
  }
}

.my-style__right {
  width: 30%;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .my-style__right {
    width: 100%;
  }
}

.my-style__left-title {
  font-size: 36px;
  color: #a69a6c;
  font-family: "Cormorant Garamond", "serif";
}
@media (max-width: 600px) {
  .my-style__left-title {
    font-size: 26px;
  }
}

.my-style__left-head {
  margin-top: 10px;
}

.my-style ul {
  margin-top: 42px;
}
@media (max-width: 600px) {
  .my-style ul {
    margin-top: 20px;
  }
}

.my-style ul li {
  margin-top: 12px;
}

.my-style ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #a69a6c;
  border-radius: 50%;
  margin-right: 10px;
}

.my-style__left-text {
  margin-top: 20px;
}

.my-style__left-text {
  line-height: 2;
}

.page-mainV-works-style {
  padding-top: 130px;
}

.page-mainV__content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .page-mainV__content {
    gap: 10px;
  }
}

.page-mainV__content-head {
  width: 40%;
  flex-shrink: 0;
  margin-top: 120px;
}
@media (max-width: 600px) {
  .page-mainV__content-head {
    width: 45%;
    margin-top: 80px;
  }
}

.page-mainV__content-head-text {
  margin-top: 120px;
  font-size: clamp(18px, 1.8vw, 26px);
}
@media (max-width: 600px) {
  .page-mainV__content-head-text {
    margin-top: 80px;
  }
}

.page-mainV__content-head-text-sub {
  margin-top: 50px;
  line-height: 1.8;
  font-size: 15px;
}

.page-mainV__content-img {
  position: relative;
}

.page-mainV__content-img-accent {
  width: 70%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0%, 50%);
}

.style-environment {
  margin-top: 200px;
}
@media (max-width: 600px) {
  .style-environment {
    margin-top: 120px;
  }
}

.style-environment__inner {
  margin-bottom: 64px;
}

.style-environment__content-img {
  width: 100%;
  max-width: 120px;
  height: 90px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.style-environment__content-list {
  position: relative;
  z-index: 10;
  background: #fff;
  padding: 60px;
  gap: 100px;
  transform: translateY(-50%);
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .style-environment__content-list {
    gap: 40px;
    padding: 40px;
  }
}
@media (max-width: 1080px) {
  .style-environment__content-list {
    gap: 20px;
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .style-environment__content-list {
    transform: translateY(-10%);
    gap: 60px;
  }
}

.style-environment__content-list h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .style-environment__content-list h3 {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .style-benefits {
    margin-top: 40px;
  }
}

.style-benefits__content-list {
  align-items: start;
  gap: 30px 90px;
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .style-benefits__content-list {
    margin-top: 80px;
    gap: 30px 40px;
  }
}
@media (max-width: 600px) {
  .style-benefits__content-list {
    gap: 30px;
    margin-top: 40px;
  }
}

.style-benefits__content-list li {
  padding: 60px 40px;
  max-width: 480px;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .style-benefits__content-list li {
    padding: 20px;
  }
}
@media (max-width: 1080px) {
  .style-benefits__content-list li {
    padding: 15px;
  }
}
.style-benefits__content-list li h3 {
  font-size: 20px;
  color: #a69a6c;
  font-weight: 500;
  text-align: center;
}
.style-benefits__content-list li h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #a69a6c;
  margin: 0 auto;
  margin-top: 10px;
}
.style-benefits__content-list li p {
  line-height: 1.75;
  margin-top: 50px;
}

.style-benefits__content-img {
  width: 100%;
  max-width: 130px;
  margin: 0 auto;
  margin-top: 40px;
}

.style-benefits__content-img--large {
  max-width: 100%;
}

.style-benefits__content-list-item--02 {
  margin-top: -50px;
}

@media screen and (max-width: 830px) {
  .style-benefits__content-list-item--02 {
    margin-top: 0px;
  }
}
.style-benefits__content-list-item--04 {
  margin-top: -140px;
}

@media screen and (max-width: 830px) {
  .style-benefits__content-list-item--04 {
    margin-top: 0px;
  }
}
.style-numbers {
  margin-top: 100px;
}

.style-numbers__inner {
  margin-bottom: 100px;
}
@media (max-width: 600px) {
  .style-numbers__inner {
    margin-bottom: 60px;
  }
}

.style-numbers__content-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .style-numbers__content-list {
    gap: 10px;
    margin-top: 80px;
  }
}
@media (max-width: 600px) {
  .style-numbers__content-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
}
.style-numbers__content-list li:nth-child(-n+3) {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .style-numbers__content-list li:nth-child(-n+3) {
    grid-column: span 1;
  }
}
.style-numbers__content-list li:nth-child(4) {
  grid-column: 1/4;
}
@media (max-width: 600px) {
  .style-numbers__content-list li:nth-child(4) {
    grid-column: span 1;
  }
}
.style-numbers__content-list li:nth-child(5) {
  grid-column: 4/7;
}
@media (max-width: 600px) {
  .style-numbers__content-list li:nth-child(5) {
    grid-column: span 1;
  }
}
.style-numbers__content-list li {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .style-numbers__content-list li {
    padding: 30px;
  }
}
@media (max-width: 1080px) {
  .style-numbers__content-list li {
    padding: 20px;
  }
}
.style-numbers__content-list li h3 {
  font-size: 20px;
  color: #a69a6c;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .style-numbers__content-list li h3 {
    margin-bottom: 20px;
  }
}
.style-numbers__content-list li h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #a69a6c;
  margin: 0 auto;
  margin-top: 10px;
}

.style-numbers__content-img {
  width: 100%;
  max-width: 130px;
  height: 100px;
  margin-top: 40px;
  transform: translateY(-20%);
}
@media (max-width: 600px) {
  .style-numbers__content-img {
    max-width: 100px;
  }
}

.style-numbers__content-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1080px) {
  .style-numbers__content-item {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .style-numbers__content-item {
    gap: 20px;
  }
}

.style-numbers__content-item-text-num {
  font-size: clamp(80px, 8vw, 110px);
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: end;
}
.style-numbers__content-item-text-num span {
  color: #a69a6c;
  font-size: clamp(18px, 2.2vw, 32px);
  margin-left: 5px;
}

.style-numbers__content-item-text-text {
  font-size: 16px;
  margin-top: 15px;
}
@media (max-width: 600px) {
  .style-numbers__content-item-text-text {
    font-size: 14px;
    margin-top: 10px;
  }
}

.style-numbers__content-item-text-caption {
  font-size: 13px;
  margin-top: 10px;
  text-align: end;
  color: #666;
}
@media (max-width: 600px) {
  .style-numbers__content-item-text-caption {
    font-size: 12px;
  }
}

.style-career {
  margin-top: 260px;
}
@media (max-width: 600px) {
  .style-career {
    margin-top: 140px;
  }
}

.style-career__inner {
  margin-bottom: 100px;
}
@media (max-width: 600px) {
  .style-career__inner {
    margin-bottom: 60px;
  }
}

.style-career__content-img {
  width: 100%;
  max-width: 70px;
  height: 116px;
  margin: 0 auto;
  margin-top: 40px;
}

.style-career__text {
  margin-top: 60px;
  line-height: 1.75;
}
@media (max-width: 600px) {
  .style-career__text {
    margin-top: 40px;
  }
}

.style-career__content-list {
  margin-top: 100px;
  overflow: visible;
  gap: 90px;
}
@media (max-width: 768px) {
  .style-career__content-list {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .style-career__content-list {
    gap: 60px;
    margin-top: 40px;
  }
}
.style-career__content-list li {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 1080px) {
  .style-career__content-list li {
    padding: 30px 20px;
  }
}
.style-career__content-list li:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 25px;
  height: 25px;
  border-top: 3px solid #a69a6c;
  border-right: 3px solid #a69a6c;
  z-index: 10;
}
@media (max-width: 1080px) {
  .style-career__content-list li:not(:nth-child(3n))::after {
    right: -45px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 768px) {
  .style-career__content-list li:not(:nth-child(3n))::after {
    right: -25px;
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 600px) {
  .style-career__content-list li:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -35px;
    transform: translateX(-50%) rotate(135deg);
    width: 20px;
    height: 20px;
    border-top: 2px solid #a69a6c;
    border-right: 2px solid #a69a6c;
  }
}
.style-career__content-list li h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.style-career__content-list li h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #a69a6c;
  margin: 0 auto;
  margin-top: 10px;
}
.style-career__content-list li p {
  line-height: 1.75;
  margin-top: 50px;
}

.style-schedule {
  margin-top: 260px;
  margin-bottom: 300px;
}
@media (max-width: 600px) {
  .style-schedule {
    margin-top: 140px;
    margin-bottom: 160px;
  }
}

.style-schedule__inner {
  margin-bottom: 100px;
}

.style-schedule__head {
  text-align: center;
}

.style-schedule__content-list {
  margin-top: 100px;
}
.style-schedule__content-list li {
  background: #fff;
  border-radius: 10px;
  padding: 50px;
}
@media (max-width: 1080px) {
  .style-schedule__content-list li {
    padding: 30px 20px;
  }
}
.style-schedule__content-list li h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.style-schedule__content-list li h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #a69a6c;
  margin: 0 auto;
  margin-top: 10px;
}

.style-schedule__content-img,
.style-schedule__content {
  width: 77%;
  margin: 0 auto;
  margin-top: 60px;
  pointer-events: none;
}
@media (max-width: 600px) {
  .style-schedule__content-img,
  .style-schedule__content {
    width: 90%;
    margin-top: 40px;
  }
}

.about-message {
  padding-top: 200px;
}
@media (max-width: 600px) {
  .about-message {
    padding-top: 80px;
  }
}

.about-message__inner {
  padding-left: 10vw;
  display: flex;
  gap: 70px;
  align-items: center;
}
@media (max-width: 600px) {
  .about-message__inner {
    flex-direction: column-reverse;
    padding-left: 20px;
    padding-right: 20px;
    gap: 0px;
  }
}

@media (max-width: 600px) {
  .about-message__left {
    margin-top: 20px;
  }
}

.about-message__right {
  width: 55%;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .about-message__right {
    width: 100%;
  }
}

.about-message__accent {
  font-size: clamp(24px, 3vw, 46px);
  font-family: "Cormorant Garamond", "serif";
  color: #a69a6c;
  transform: translateY(50%);
}

.about-message__title {
  font-size: 20px;
  font-weight: 500;
}

.about-message__text {
  margin-top: 66px;
  line-height: 2;
}
@media (max-width: 600px) {
  .about-message__text {
    margin-top: 20px;
  }
}

.about-message__name {
  margin-top: 40px;
  font-size: 20px;
  text-align: right;
}
@media (max-width: 600px) {
  .about-message__name {
    font-size: 17px;
    margin-top: 20px;
  }
}

.about-subaco {
  margin-top: 228px;
  padding-top: 138px;
}
@media (max-width: 600px) {
  .about-subaco {
    padding-top: 60px;
    margin-top: 80px;
  }
}

.about-subaco__content-accent {
  margin: 0 auto;
  font-size: clamp(40px, 4vw, 60px) !important;
  font-family: "Cormorant Garamond", "serif";
  color: #a69a6c;
}

.about-subaco__message {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-subaco__message-head {
  font-size: 20px;
  margin-top: 110px;
}
@media (max-width: 600px) {
  .about-subaco__message-head {
    font-size: 18px;
    margin-top: 60px;
  }
}

.about-subaco__message-text {
  line-height: 1.8;
  margin-top: 80px;
  letter-spacing: 0.2em;
}
@media (max-width: 600px) {
  .about-subaco__message-text {
    margin-top: 40px;
    text-align: left;
  }
}

.about-subaco__list {
  margin-top: 148px;
  padding-bottom: 200px;
}
@media (max-width: 600px) {
  .about-subaco__list {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}

.about-subaco__item {
  display: flex;
  gap: 64px;
  background: #fff;
  padding: 50px;
  margin-top: 70px;
  border: 1px solid #a69a6c;
}
@media (max-width: 600px) {
  .about-subaco__item {
    flex-direction: column;
    gap: 20px;
    padding: 32px 20px;
    margin-top: 40px;
  }
}

.about-subaco__item-left {
  width: 45%;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .about-subaco__item-left {
    width: 100%;
  }
  .about-subaco__item-left img {
    aspect-ratio: 1/0.6;
    object-fit: cover;
  }
}

.about-subaco__list .about-subaco__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 600px) {
  .about-subaco__list .about-subaco__item:nth-child(even) {
    flex-direction: column;
  }
}

.about-subaco__item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .about-subaco__item-title {
    font-size: 18px;
  }
}

.about-subaco__item-num {
  max-width: 90px;
}
@media (max-width: 600px) {
  .about-subaco__item-num {
    max-width: 60px;
  }
}

.about-subaco__item-text {
  line-height: 1.75;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .about-subaco__item-text {
    margin-top: 20px;
  }
}

.about-works {
  margin-top: 140px;
}
@media (max-width: 600px) {
  .about-works {
    margin-top: 80px;
  }
}

.about-works__head {
  margin-bottom: 90px;
}
@media (max-width: 600px) {
  .about-works__head {
    margin-bottom: 60px;
  }
}

@media (max-width: 600px) {
  .about-works__inner {
    margin-bottom: 50px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

.swiper-button-prev {
  background-image: url(../../assets/img/common/slide-prev.webp);
  left: 15%;
}
@media (max-width: 600px) {
  .swiper-button-prev {
    left: 5%;
  }
}

.swiper-button-next {
  background-image: url(../../assets/img/common/slide-next.webp);
  right: 15%;
}
@media (max-width: 600px) {
  .swiper-button-next {
    right: 5%;
  }
}

.about-btn-works {
  width: fit-content;
  margin: 0 auto;
  margin-top: 110px;
}
@media (max-width: 600px) {
  .about-btn-works {
    margin-top: 50px;
  }
}

.about-section-accent {
  position: relative;
  height: 50vh;
  margin-top: 200px;
}
@media (max-width: 600px) {
  .about-section-accent {
    margin-top: 120px;
    height: 40vh;
  }
}

.about-section-accent__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  clip-path: inset(0);
  z-index: -999;
}
@media (max-width: 600px) {
  .about-section-accent__inner {
    height: 40vh;
  }
}

.about-section-accent__01 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../../assets/img/about/about-section-bg.webp);
  background-size: cover;
  background-position: bottom;
  z-index: -1;
}

.about-section-accent--sp-img img {
  object-fit: cover;
  object-position: center;
}

.about-vision {
  padding-top: 128px;
  padding-bottom: 200px;
}
@media (max-width: 600px) {
  .about-vision {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.about-vision__copy {
  font-size: 24px;
  font-weight: 600;
  margin-top: 90px;
  text-align: center;
}
@media (max-width: 600px) {
  .about-vision__copy {
    font-size: 18px;
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .about-vision__copy {
    font-size: 16px;
    margin-top: 40px;
  }
}

.about-vision__list {
  gap: 54px;
  margin-top: 150px;
}
@media (max-width: 600px) {
  .about-vision__list {
    margin-top: 60px;
    gap: 40px;
  }
}

.about-vision__item {
  background: #fff;
  padding: 40px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 600px) {
  .about-vision__item {
    gap: 30px;
    padding: 40px 35px;
  }
}

.about-vision__item-img {
  width: auto;
  height: 120px;
  margin: 0 auto;
}

.about-vision__item-img--01 {
  width: 51%;
}
@media (max-width: 600px) {
  .about-vision__item-img--01 {
    width: 70%;
  }
}

.about-vision__item-img--02 {
  width: 21%;
}
@media (max-width: 600px) {
  .about-vision__item-img--02 {
    width: 30%;
  }
}

.about-vision__item-img--03 {
  width: 52%;
}
@media (max-width: 600px) {
  .about-vision__item-img--03 {
    width: 60%;
  }
}

.about-vision__item-img--04 {
  width: 46%;
}
@media (max-width: 600px) {
  .about-vision__item-img--04 {
    width: 55%;
  }
}

.about-vision__item-img--05 {
  width: 25%;
}
@media (max-width: 600px) {
  .about-vision__item-img--05 {
    width: 35%;
  }
}

.about-vision__item-img--06 {
  width: 27%;
}
@media (max-width: 600px) {
  .about-vision__item-img--06 {
    width: 35%;
  }
}

.about-vision__item-title {
  font-size: 20px;
  font-weight: bold;
  color: #a69a6c;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .about-vision__item-title {
    margin-bottom: 13px;
  }
}

.about-vision__item-text {
  font-weight: 700;
  line-height: 1.75;
}

.about-company {
  padding-top: 128px;
  padding-bottom: 200px;
}
@media (max-width: 600px) {
  .about-company {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.about-company__head {
  text-align: center;
}

.about-company__accent {
  margin: 0 auto;
  max-width: 400px !important;
  transform: translateY(25%);
}

.about-company__overview {
  margin-top: 140px;
}
@media (max-width: 600px) {
  .about-company__overview {
    margin-top: 72px;
  }
}

.about-company__unit {
  padding: 28px 8px;
  border-top: 1px solid #9d9d9d;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 600px) {
  .about-company__unit {
    padding: 28px 0;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-company__inner .about-company__unit:last-child {
  border-bottom: 1px solid #9d9d9d;
}

.about-company__unit-title {
  min-width: 12em;
}

@media (max-width: 600px) {
  .about-company__unit-text {
    font-size: 14px;
  }
}

.recruit {
  margin-top: 200px;
}
@media (max-width: 600px) {
  .recruit {
    margin-top: 100px;
  }
}

.recruit__container {
  padding-left: 7vw;
}
@media (max-width: 600px) {
  .recruit__container {
    padding-left: 0;
  }
}

.recruit__inner {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .recruit__inner {
    flex-direction: column;
    gap: 60px;
  }
}

.recruit__left {
  padding: 0 16px;
}

.recruit__left-text {
  margin-top: 60px;
  line-height: 1.75;
  font-size: 16px;
}
@media (max-width: 600px) {
  .recruit__left-text {
    margin-top: 30px;
    font-size: 14px;
  }
}

.recruit__right {
  width: 65%;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .recruit__right {
    width: 100%;
  }
}

.recruit__right-inner {
  padding: 8% 10%;
}
@media (max-width: 600px) {
  .recruit__right-inner {
    padding: 30px 15px;
  }
}

.recruit__right-unit {
  display: flex;
  gap: 40px;
  margin-bottom: 70px;
}
@media (max-width: 600px) {
  .recruit__right-unit {
    gap: 18px;
    margin-bottom: 50px;
  }
}

.recruit__right-unit-head {
  background: #fff;
  width: 100px;
  height: 100px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #a69a6c;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 600px) {
  .recruit__right-unit-head {
    width: 70px;
    height: 70px;
    padding: 20px;
    border-radius: 5px;
  }
}

.recruit__right-unit:not(:last-child) .recruit__right-unit-head::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 80px;
  background-color: #fff;
}
@media (max-width: 600px) {
  .recruit__right-unit:not(:last-child) .recruit__right-unit-head::after {
    height: 100px;
    bottom: -100px;
    width: 2px;
  }
}

.recruit__right-unit-head span {
  font-size: 54px;
  line-height: 1;
}
@media (max-width: 600px) {
  .recruit__right-unit-head span {
    font-size: 36px;
  }
}

.recruit__right-unit-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .recruit__right-unit-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.recruit__right-unit-content p {
  font-size: 16px;
  line-height: 1.75;
}
@media (max-width: 600px) {
  .recruit__right-unit-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ========================================
    募集要項
    ======================================== */
.recruit-job {
  margin-top: 180px;
  padding-bottom: 260px;
}
@media (max-width: 600px) {
  .recruit-job {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}

.recruit-job__container {
  padding: 0 7vw;
}

.recruit-job__wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 200px;
}
@media (max-width: 600px) {
  .recruit-job__wrap {
    flex-direction: column;
    gap: 30px;
    margin-top: 100px;
  }
}

.recruit-job__btn {
  width: 100%;
}

.recruit-job__btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  padding: 0 40px;
  height: 100px;
  font-size: clamp(18px, 1.66vw, 24px);
  border: 1px solid #414141;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 600px) {
  .recruit-job__btn a {
    max-width: 100%;
    padding: 0 14px;
    height: 80px;
    font-size: 18px;
  }
}

.recruit-job__btn span {
  position: relative;
  display: block;
  width: 70px;
  height: 1px;
  margin-right: 40px;
}
@media (max-width: 600px) {
  .recruit-job__btn span {
    width: 50px;
    margin-right: 20px;
  }
}

.recruit-job__btn span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #a1a1a1;
  z-index: 2;
  transition: transform 0.3s ease;
}

.recruit-job__btn span::after {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(50%, -50%);
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: #e5e4db;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .recruit-job__btn span::after {
    width: 50px;
    height: 50px;
  }
}

.recruit-job__btn:hover span::before {
  transform: translateX(20px);
}
.recruit-job__btn:hover span::after {
  background: #636363;
}

/* ========================================
    プライバシーポリシー
    ======================================== */
.policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.policy__title {
  font-size: 24px;
  margin-bottom: 40px;
}

.policy__content {
  line-height: 1.75;
}
.policy__content .wp-block-heading {
  font-size: 20px;
  margin-top: 30px;
}
.policy__content .wp-block-spacer {
  height: 40px !important;
}
.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}
.policy__content p,
.policy__content a,
.policy__content li {
  margin-top: 1em;
}

/* ========================================
    お問い合わせ
    ======================================== */
.contact {
  padding: 200px 0;
  padding-bottom: 260px;
}
@media (max-width: 600px) {
  .contact {
    padding: 80px 0;
  }
}

.contact__info {
  font-size: 14px;
  text-align: center;
  line-height: 2;
}
@media (max-width: 600px) {
  .contact__info {
    font-size: 13px;
  }
}

.contact__form {
  width: 100%;
}

.form-unit {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .form-unit {
    margin-bottom: 24px;
  }
}

.form-unit__head {
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  margin-bottom: 0.5em;
}

.m-required::after {
  content: "※";
  color: #da0000;
  font-size: 12px;
  margin-left: 2px;
  border-radius: 4px;
  padding: 0 5px;
}

.form-unit__input,
.form-unit__input-wrap {
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid #c1c1c1;
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
  min-height: 40px;
}

.form-unit__textarea,
.form-unit__textarea-wrap {
  width: 100%;
  padding: 8px;
  height: 210px;
  border: 1px solid #c1c1c1;
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
}

.form-unit__radio {
  margin-top: 20px;
}

.form-unit__date {
  width: 40%;
  height: 70px;
  padding: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .form-unit__date {
    width: 50%;
    height: 54px;
  }
}
.wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-right: 20px;
  margin-top: 14px;
}

.wpcf7-submit,
.form__submit {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 210px;
  margin: 40px auto 0;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #414141;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
}

.wpcf7-submit.is-consent-checked,
.form__submit.is-consent-checked {
  background-color: #a69a6c !important;
  color: #fff !important;
  border-color: #a69a6c !important;
}

.wpcf7-submit.is-consent-checked:hover,
.form__submit.is-consent-checked:hover {
  background-color: #8d7d52 !important;
  border-color: #8d7d52 !important;
}

.wpcf7-radio {
  -webkit-appearance: button !important;
  appearance: button !important;
  display: flex;
}

.wpcf7-radio input:hover,
.wpcf7-radio label:hover {
  cursor: pointer;
}

.wpcf7-response-output {
  border-color: transparent !important;
  text-align: center !important;
}

input[type=radio] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #555;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #555;
  transform: translate(-50%, -50%);
}

input[type=checkbox],
.form-checkbox {
  -webkit-appearance: none;
  appearance: none;
  width: 19px;
  height: 19px;
  border: 1px solid #555;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

input[type=checkbox]:checked,
.form-checkbox:checked {
  background-color: #a69a6c;
}

input[type=checkbox]:checked::after,
.form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: translate(-50%, -60%) rotate(45deg);
}

.form-unit__policy-link {
  border-bottom: 1px solid #555;
}

@media screen and (max-width: 768px) {
  .form-unit__policy-link {
    font-size: 15px;
  }
}
.form-consent {
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
  cursor: pointer;
  width: fit-content;
  transition: opacity 0.3s ease;
}
.form-consent span {
  cursor: pointer;
}
.form-consent .under-line {
  border-bottom: 1px solid #555;
}
.form-consent.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.form-consent.is-disabled span {
  cursor: not-allowed;
}
.form-consent.is-disabled input[type=checkbox] {
  cursor: not-allowed;
}
.form-consent.is-enabled {
  opacity: 1;
}

input.wpcf7-form-control.wpcf7-previous {
  display: block;
  margin: 0 auto;
}

.form-unit__file {
  position: relative;
  width: 100%;
  min-height: 120px;
  border: 2px dashed #a9a9a9;
  border-radius: 8px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.form-unit__file:hover {
  border-color: #888;
  background-color: #f9f9f9;
}
.form-unit__file.has-file {
  border-color: #a69a6c;
  background-color: #f5f3e8;
}

.form-unit__file-text {
  color: #a9a9a9;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.form-unit__file.has-file .form-unit__file-text {
  color: #a69a6c;
}

.form-unit__file input[type=file],
.form-unit__file .wpcf7-form-control-wrap input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.form-unit__file-name {
  display: none;
  color: #a69a6c;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}
.form-unit__file.has-file .form-unit__file-name {
  display: block;
}

.form-unit__file-remove {
  display: none;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 8px;
}
.form-unit__file.has-file .form-unit__file-remove {
  display: inline-block;
}
.form-unit__file-remove:hover {
  background: #ff5252;
}

@media screen and (max-width: 768px) {
  .form-unit__file {
    min-height: 100px;
  }
  .form-unit__file-text {
    font-size: 13px;
  }
}
.form-unit-span {
  color: #585858;
  font-size: 14px;
}

.privacy-policy-box {
  max-height: 200px;
  overflow-y: scroll;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  padding: 24px;
  background-color: #f9f9f9;
  margin-bottom: 16px;
  margin-top: 100px;
}
@media (max-width: 600px) {
  .privacy-policy-box {
    max-height: 250px;
    padding: 20px;
    margin-top: 50px;
  }
}

.privacy-policy-box__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}
@media (max-width: 600px) {
  .privacy-policy-box__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.privacy-policy-box__text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .privacy-policy-box__text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
}

.privacy-policy-box__section {
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .privacy-policy-box__section {
    margin-bottom: 20px;
  }
}

.privacy-policy-box__section-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}
@media (max-width: 600px) {
  .privacy-policy-box__section-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.privacy-policy-box__section-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 600px) {
  .privacy-policy-box__section-text {
    font-size: 13px;
    line-height: 1.7;
  }
}/*# sourceMappingURL=main.css.map */