@charset "UTF-8";
/*
 * iro code. リセットCSS 2025（本番用・コメント軽量版）
 */
/* ボックスモデル */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* マージンリセット */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* HTML基本設定 */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

/* body基本設定 */
body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* リスト */
ul, ol {
  list-style: none;
}

/* 画像・メディア */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 段落 */
p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

/* リンク */
a {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* フォーム */
input, button, textarea, select {
  color: inherit;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label, button, select {
  cursor: pointer;
}

/* アクセシビリティ配慮 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
/* PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/

/*モバイルのみ表示*/

.long-text {
  display: inline-block;
}

body {
  color: #0F172A;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 0.6em 0 0.5em;
  background-color: #64748B;
  color: #fcfcfc;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: color 0.25s ease, opacity 0.25s ease;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.btn:hover {
  color: #fcfcfc;
  opacity: 0.95;
}

.btn__text {
  display: inline-block;
}

.btn__arrow {
  margin-left: 0.15em;
}

.btn__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(252, 252, 252, 0.85)), color-stop(75%, rgba(252, 252, 252, 0.85)), color-stop(75%, #C5A059), to(#C5A059));
  background: linear-gradient(to right, rgba(252, 252, 252, 0.85) 0%, rgba(252, 252, 252, 0.85) 75%, #C5A059 75%, #C5A059 100%);
  pointer-events: none;
}

.contact-complete {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60vh;
  padding-block: 5rem 7.5rem;
}

.contact-complete__inner {
  max-width: 37.5rem;
  text-align: center;
}

.contact-complete__title {
  margin-bottom: 1.5rem;
  color: #0F172A;
  font-weight: 700;
  font-size: 1.75rem;
  font-family: "Montserrat", sans-serif;
}

.contact-complete__lead {
  margin-bottom: 3rem;
  color: #0F172A;
  font-size: 0.875rem;
  line-height: 1.8;
}

.contact-complete__btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e0e0e0;
}

.contact-form-section__inner.inner {
  margin-inline: auto;
}

.contact-form-section__title {
  color: #0F172A;
  font-weight: 600;
  font-size: 2.5rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.contact-form-section__lead {
  margin-top: 1.25rem;
  color: #0F172A;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.contact-form {
  margin-top: 2.5rem;
}
.contact-form .wpcf7-form {
  margin: 0;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form__row {
  display: block;
  margin-top: 1.5rem;
}

.contact-form__privacy {
  margin-top: 2.5rem;
}

.contact-form__privacy-title {
  color: #0F172A;
  font-weight: 700;
  font-size: 1rem;
}

.contact-form__privacy-body {
  max-height: 13.75rem;
  padding: 1.25rem;
  overflow-y: auto;
  border-radius: 0.25rem;
  background-color: #fcfcfc;
  color: #0F172A;
  font-size: 0.8125rem;
  line-height: 1.8;
  scrollbar-color: #64748B;
  scrollbar-width: thin;
}
.contact-form__privacy-body::-webkit-scrollbar {
  width: 0.5rem;
}
.contact-form__privacy-body::-webkit-scrollbar-track {
  border-radius: 0.25rem;
  background: #64748B;
}
.contact-form__privacy-body::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background: #C5A059;
}
.contact-form__privacy-body p {
  margin-top: 0.75rem;
}
.contact-form__privacy-body p:first-child {
  margin-top: 0;
}

.contact-form__label {
  display: block;
  color: #0F172A;
  font-weight: 400;
  font-size: 1rem;
}

.contact-form__required {
  margin-left: 0.625rem;
  color: #e60615;
  font-size: 0.8125rem;
}

.contact-form__field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.625rem;
}
.contact-form__field .wpcf7-form-control-wrap {
  display: contents;
}
.contact-form__field .contact-form__placeholder {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 0.625rem;
  color: #0F172A;
  font-size: 0.8125rem;
}
.contact-form__field .wpcf7-not-valid-tip {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
.contact-form__field > .wpcf7-form-control, .contact-form__field > input:not([type=submit]), .contact-form__field > textarea {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.contact-form__input,
.contact-form__textarea,
.wpcf7-form-control:not(.wpcf7-submit):not([type=radio]):not([type=file]) {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  border: 1px solid #fcfcfc;
  border-radius: 0.25rem;
  background-color: #fcfcfc;
  color: #0F172A;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder, .wpcf7-form-control:not(.wpcf7-submit):not([type=radio]):not([type=file])::-webkit-input-placeholder {
  color: #64748B;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder, .wpcf7-form-control:not(.wpcf7-submit):not([type=radio]):not([type=file])::-moz-placeholder {
  color: #64748B;
}
.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder, .wpcf7-form-control:not(.wpcf7-submit):not([type=radio]):not([type=file]):-ms-input-placeholder {
  color: #64748B;
}
.contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder, .wpcf7-form-control:not(.wpcf7-submit):not([type=radio]):not([type=file])::-ms-input-placeholder {
  color: #64748B;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder,
.wpcf7-form-control:not(.wpcf7-submit):not([type=radio]):not([type=file])::placeholder {
  color: #64748B;
}
.contact-form__input:focus,
.contact-form__textarea:focus,
.wpcf7-form-control:not(.wpcf7-submit):not([type=radio]):not([type=file]):focus {
  border-color: #C5A059;
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
          box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

.contact-form__row.contact-form__resume .contact-form__input {
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.contact-form__row.contact-form__resume .contact-form__input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-form__textarea,
.wpcf7-textarea {
  min-height: 14.375rem;
  resize: vertical;
}

.contact-form .contact-form__row--radio .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-form .contact-form__row--radio .wpcf7-form-control.wpcf7-radio:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-form__row--radio .wpcf7-form-control-wrap {
  display: block;
}

.contact-form__row--radio .wpcf7-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.contact-form__row--radio .wpcf7-list-item {
  display: block;
  margin: 0;
}
.contact-form__row--radio .wpcf7-list-item:last-child {
  margin: 0;
}

.contact-form__row--radio .wpcf7-list-item-label {
  margin-left: 0.5rem;
  color: #0F172A;
  font-size: 0.875rem;
  cursor: pointer;
}

.contact-form__row--radio input[type=radio] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #000;
  cursor: pointer;
}

.wpcf7-file {
  display: block;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #0F172A;
  font-size: 0.875rem;
  cursor: pointer;
}

.contact-form__submit {
  margin-top: 2.5rem;
  text-align: center;
}

.contact-form__privacy + .contact-form__submit {
  margin-top: 2.5rem;
}

.contact-form__submit-wrap {
  display: inline;
  position: relative;
}
.contact-form__submit-wrap .wpcf7-spinner {
  display: none;
}
.contact-form__submit-wrap::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.3125rem;
  height: 0.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/common/yajirushi.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  pointer-events: none;
  -webkit-transition: right 0.25s ease;
  transition: right 0.25s ease;
}

.contact-form__submit-btn,
.wpcf7-submit {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 20.625rem;
  padding-block: 1.125rem;
  border: none;
  border-radius: 0;
  background-color: #C5A059;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 23, 42, 0.1921568627);
          box-shadow: 0px 0px 20px rgba(15, 23, 42, 0.1921568627);
  color: #fcfcfc;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  -webkit-transition: opacity 0.25s ease, -webkit-filter 0.25s ease;
  transition: opacity 0.25s ease, -webkit-filter 0.25s ease;
  transition: opacity 0.25s ease, filter 0.25s ease;
  transition: opacity 0.25s ease, filter 0.25s ease, -webkit-filter 0.25s ease;
}

.wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  color: #e60615;
  font-size: 0.75rem;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-color: #e60615;
}

.wpcf7 form .wpcf7-response-output:empty {
  display: none;
}

body.is-drawer-open {
  overflow: hidden;
}

html:has(body.is-drawer-open) {
  overflow: hidden;
}

.drawer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding: 0;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: #f2f2f2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1.25rem;
  -webkit-padding-end: 1rem;
          padding-inline-end: 1rem;
}

.drawer__logo {
  display: block;
}
.drawer__logo img {
  display: block;
  width: auto;
  height: 2.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #0F172A;
  color: #fcfcfc;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.drawer__close-icon {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
}
.drawer__close-icon::before, .drawer__close-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5625rem;
  height: 1px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background: currentColor;
  content: "";
}
.drawer__close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(25deg);
          transform: translate(-50%, -50%) rotate(25deg);
}
.drawer__close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-25deg);
          transform: translate(-50%, -50%) rotate(-25deg);
}

.drawer__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1.25rem 2.5rem;
  overflow-y: auto;
}

.drawer__nav {
  padding-block: 0;
}

.drawer__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.25rem;
}

.drawer__list {
  margin-inline: 0.5rem 0.25rem;
  border-bottom: 1px solid #C5A059;
}
.drawer__list:first-child {
  border-top: 1px solid #C5A059;
}

.drawer__link,
.drawer__sublink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 1.3125rem 0;
  padding-left: 1.25rem;
  border: none;
  background: none;
  color: #0F172A;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.drawer__arrow {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: #0F172A;
  font-size: 0.625rem;
}

.drawer__arrow--down {
  display: inline-block;
  width: 0.75rem;
  height: 0.4375rem;
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
  background-color: #0F172A;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.drawer__arrow--right {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
  font-size: 0.75rem;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.drawer__list--accordion {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer__accordion-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.drawer__link--accordion-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: auto;
  min-width: 0;
  padding-top: 1.3125rem;
  padding-right: 0.5rem;
  padding-bottom: 1.3125rem;
  padding-left: 1.25rem;
}

.drawer__link--accordion-toggle {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  min-width: 2.75rem;
  padding-top: 1.3125rem;
  padding-right: 1.25rem;
  padding-bottom: 1.3125rem;
  padding-left: 0.5rem;
}
.drawer__link--accordion-toggle .drawer__arrow--down {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}

.drawer__list:first-child.drawer__list--accordion.is-open {
  border-bottom: none;
}

.drawer__list--accordion.is-open .drawer__arrow--down {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.drawer__sublists {
  padding-bottom: 0.5rem;
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}
.drawer__sublists[hidden] {
  display: none;
}

.drawer__sublist {
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
}
.drawer__sublist:last-child {
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
}

.drawer__sublink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 1.3125rem 0;
  padding-left: 1.25rem;
  color: #0F172A;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.drawer__sublink .drawer__arrow--right {
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
}

.drawer__sublink .drawer__arrow--right img {
  display: block;
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer {
  padding-block: 5rem 1.25rem;
  background-color: #64748B;
}

.footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.footer__brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.footer__logo {
  display: inline-block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 14.5625rem;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__address {
  margin: 1.25rem 0 0;
  color: #fcfcfc;
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.8;
}

.footer__tel {
  margin: 0.625rem 0 0;
  color: #fcfcfc;
  font-size: 0.8125rem;
}
.footer__tel a {
  color: #fcfcfc;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer__txt {
  color: #fcfcfc;
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-top: 0;
}
.footer__txt:nth-of-type(2) {
  margin-top: 0.625rem;
}

.footer__nav {
  display: grid;
  grid-template-areas: "business links-all";
  gap: 1.5rem;
}

.footer__nav-col:first-child {
  grid-area: business;
}

.footer__nav-heading a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #fcfcfc;
  font-weight: 700;
  font-size: 0.8125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__nav-heading a::before {
  display: inline-block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #C5A059;
  content: "";
}

.footer__nav-sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.75rem;
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
  gap: 0.5rem;
}

.footer__nav-sub-item a {
  position: relative;
  padding-left: 0.75rem;
  color: #fcfcfc;
  font-size: 0.8125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__nav-sub-item a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #C5A059;
  content: "";
}

.footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.footer__nav-list--last {
  margin-top: 0.625rem;
}

.footer__nav-item a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #fcfcfc;
  font-weight: 700;
  font-size: 0.8125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__nav-item a::before {
  display: inline-block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #C5A059;
  content: "";
}

.footer__bottom {
  margin-top: 2rem;
  padding-block: 1rem;
}

.footer__copy {
  color: #fcfcfc;
  font-size: 0.75rem;
}
.footer__copy small {
  font-size: inherit;
}

.hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 9999;
  position: fixed;
  top: 0.875rem;
  right: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  aspect-ratio: 1/1;
  width: 2.1875rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
}

.hamburger__bar {
  position: absolute;
  left: 50%;
  width: 60%;
  height: 0.0625rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger__bar:nth-child(1) {
  top: calc(50% - 0.375rem);
}

.hamburger__bar:nth-child(2) {
  top: 50%;
}

.hamburger__bar:nth-child(3) {
  top: calc(50% + 0.375rem);
}

.hamburger.is-active .hamburger__bar:nth-child(1) {
  top: 50%;
  width: 60%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__bar:nth-child(3) {
  top: 50%;
  width: 60%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 50%;
  width: calc(100% - 1.25rem);
  max-width: 64.125rem;
  translate: -50% 0;
  border-radius: 6.25rem;
  background: #ffffff;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 1.25rem;
  padding-block: 0.75rem;
}

.header__logo {
  display: block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 13.875rem;
}

.header__logo a {
  display: block;
}

.header__logo img {
  aspect-ratio: 222/40;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
}

.header__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}

.header__list {
  position: relative;
}

.header__list-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 0.5rem;
  gap: 0.25rem;
  color: #0F172A;
  font-size: 1rem;
  white-space: nowrap;
}

.header__list--dropdown .header__list-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header__list:not(.header__list--dropdown) .header__list-link {
  position: relative;
}
.header__list:not(.header__list--dropdown) .header__list-link::after {
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  background: #C5A059;
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.header__list-arrow {
  display: inline-block;
  width: 0.75rem;
  height: 0.4375rem;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  background: #0F172A;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.header__dropdown {
  visibility: hidden;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0%;
  min-width: 17.5625rem;
  padding-block: 0.5rem;
  border-radius: 0.25rem;
  background: #F2F2F2;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__dropdown::before {
  position: absolute;
  top: -0.75rem;
  left: 18%;
  width: 16px;
  height: 14px;
  translate: -50% 0;
  background: #F2F2F2;
  content: "";
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.header__dropdown-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1.25rem;
  gap: 1rem;
  color: #0F172A;
  font-size: 1rem;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.header__dropdown-arrow {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header__dropdown-arrow img {
  display: block;
  width: 1.25rem;
  height: 0.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 20px;
}

main {
  margin-top: 5rem;
}

.section-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section-title__en-row {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  vertical-align: top;
}

.section-title__bar {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.125rem;
  border-radius: 50%;
}

.section-title__en {
  font-weight: 700;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

.section-title__ja {
  display: block;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.section-title--navy .section-title__en,
.section-title--navy .section-title__ja {
  color: #0F172A;
}
.section-title--navy .section-title__bar {
  background-color: #C5A059;
}

.section-title--white .section-title__en,
.section-title--white .section-title__ja {
  color: #fcfcfc;
}
.section-title--white .section-title__bar {
  background-color: #C5A059;
}

.text-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  margin-block: auto;
  padding-bottom: 1rem;
  gap: 0.625rem;
  color: #0F172A;
  font-weight: 500;
  font-size: 0.875rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.text-btn::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #64748B;
  content: "";
}
.text-btn::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
  height: 1px;
  background: #C5A059;
  content: "";
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.text-btn__arrow,
.text-btn .top-split__arrow,
.text-btn .top-recruit__arrow {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.text-btn__arrow {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-btn__arrow img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-fv {
  min-height: calc(100vh - 5rem);
  min-height: calc(100svh - 5rem);
  overflow-x: clip;
  overflow-y: visible;
}

.top-fv__inner,
.top-fv__slider .swiper-wrapper,
.top-fv__slide {
  min-height: inherit;
}

.top-fv__slider {
  min-height: inherit;
  padding-top: 2.5rem;
  padding-inline: 1.25rem;
}

.top-fv__slide-inner {
  display: block;
  position: relative;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: 2.5rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.top-fv__slide {
  height: auto;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
.top-fv__slide.swiper-slide-active {
  -webkit-transform: translateY(-1.25rem);
          transform: translateY(-1.25rem);
}
.top-fv__slide.swiper-slide-prev, .top-fv__slide.swiper-slide-next {
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  opacity: 0.59;
}

.top-fv__picture {
  position: absolute;
  width: auto;
  inset: 0;
}

.top-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2.5rem;
}

.top-fv__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  min-width: 18.4375rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 0.625rem;
  background-color: #fcfcfc;
  color: #0F172A;
  opacity: 0.9;
}

.top-fv__caption-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: clamp(1.25rem, 3vw + 0.875rem, 2.5rem);
}

.top-fv__caption-title-wrap {
  display: block;
}

.top-fv__caption-title {
  display: block;
  color: #0F172A;
  font-weight: 700;
  font-size: clamp(1rem, 0.75rem + 1.5vw, 1.5rem);
  line-height: 1.35;
  font-family: "Noto Sans JP", sans-serif;
}

.top-fv__caption-title-line {
  display: block;
  width: clamp(12%, 30% - 5vw, 30%);
  height: clamp(1px, 2px - 0.15vw, 0.125rem);
  margin-top: clamp(0.375rem, 0.3vw + 0.3125rem, 0.5rem);
  border-radius: 1px;
  background-color: #C5A059;
}

.top-fv__caption-desc {
  display: block;
  margin-top: clamp(0.875rem, 0.8vw + 0.75rem, 1.25rem);
  color: #0F172A;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
}

.top-fv__caption-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  margin-top: 1.25rem;
  padding-bottom: clamp(0.625rem, 0.5vw + 0.625rem, 0.875rem);
  gap: clamp(1rem, 0.6vw + 1rem, 1.25rem);
  color: #0F172A;
  font-weight: 400;
  font-size: 1rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-fv__caption-link::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #64748B;
  content: "";
}
.top-fv__caption-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
  height: 1px;
  background: #C5A059;
  content: "";
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.top-fv__caption-link-arrow {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.top-fv__caption-link-arrow img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-fv__pagination {
  display: none;
}

.top-fv__arrow {
  display: none;
}

.top-introduction {
  padding-block: 2.5rem 5rem;
  background-color: #fcfcfc;
}

.top-introduction__bar {
  padding-block: 0.6875rem;
  background-color: #0F172A;
}

.top-introduction__bar .top-introduction__title {
  color: #fcfcfc;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}

.top-introduction__head {
  padding-block: 1.25rem 1.5rem;
  text-align: center;
}

.top-introduction__copy {
  color: #0F172A;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.85;
  font-family: "Noto Sans JP", sans-serif;
}

.top-introduction__diagram {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
  padding-inline: 0.625rem;
}

.top-introduction__diagram-img {
  display: block;
  aspect-ratio: 335/335;
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 0.5rem 1.5rem rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0 0.5rem 1.5rem rgba(0, 0, 0, 0.08));
}

.top-movie {
  padding-block: 10rem;
  background-color: #fcfcfc;
}

.top-movie__picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 335/400;
  width: 100%;
  overflow: hidden;
}

.top-news {
  padding-block: 5rem;
  background-color: #64748B;
}

.top-news__inner.inner {
  margin-inline: auto;
}

.top-news__head {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #C5A059;
}

.top-news__title-wrap .section-title__en {
  color: #fcfcfc;
}
.top-news__title-wrap .section-title__bar {
  background-color: #C5A059;
}
.top-news__title-wrap .section-title__ja {
  padding-bottom: 0.5rem;
  color: #fcfcfc;
}

.top-news__archive {
  display: inline-block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  color: #fcfcfc;
  font-size: 1rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.top-news__archive.sp-only {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 2.5rem;
}

.top-news__arrow {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.top-news__arrow img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.top-news__item {
  border-bottom: 1px solid #C5A059;
}

.top-news__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 0;
  padding-block: 1.25rem;
  gap: 0.5rem 1.25rem;
  color: #fcfcfc;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.top-news__date {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: #fcfcfc;
  font-weight: 400;
  font-size: 0.8125rem;
}

.top-news__category {
  display: inline-block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-inline: 0.75rem;
  padding-block: 0.125rem;
  border-radius: 6.25rem;
  background-color: #C5A059;
  color: #fcfcfc;
  font-weight: 400;
  font-size: 0.8125rem;
}

.top-news__title {
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  font-weight: 400;
  font-size: 1rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.top-recruit {
  padding-block: 3.75rem;
}

.top-recruit__grid {
  display: grid;
  grid-template-areas: "text" "btn" "img1" "img2" "img3";
  row-gap: 0.625rem;
  justify-items: center;
}

.top-recruit__text {
  grid-area: text;
  width: 100%;
  min-width: 0;
}

.top-recruit__subtitle-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #C5A059;
}

.top-recruit__img-wrap--1 {
  grid-area: img1;
  margin-top: 1.875rem;
}

.top-recruit__img-wrap--2 {
  grid-area: img2;
}

.top-recruit__img-wrap--3 {
  grid-area: img3;
}

.top-recruit__btn-wrap {
  grid-area: btn;
}

.top-recruit__headline {
  margin-top: 2.5rem;
  color: #0F172A;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}

.top-recruit__body {
  margin-top: 1.25rem;
  color: #0F172A;
  font-size: 1rem;
  line-height: 1.7;
}

.top-recruit__img-wrap.top-recruit__img-wrap--2 {
  -webkit-margin-start: clamp(2.5rem, 25vw, 6.375rem);
          margin-inline-start: clamp(2.5rem, 25vw, 6.375rem);
}

.top-recruit__img {
  width: 14.5625rem;
  height: auto;
  border-radius: 0.625rem;
}

.top-recruit__img img {
  aspect-ratio: 233/160;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  vertical-align: top;
}

.top-recruit__btn-wrap {
  margin-top: 1.875rem;
  text-align: center;
}

.top-recruit__arrow {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-recruit__arrow img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-service {
  padding-block: 5rem;
  background-color: #F2F2F2;
}

.top-service__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1rem;
  gap: 1rem;
  border-bottom: 1px solid #C5A059;
}

.top-service__header .section-title {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.top-service__link-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.top-service__content {
  padding-top: 2.5rem;
}

.top-service__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.top-service__card {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
  background-color: #fcfcfc;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
}

.top-service__img-wrap {
  position: relative;
  aspect-ratio: 240/159;
  width: 100%;
  overflow: hidden;
}

.top-service__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.top-service__body {
  margin-top: 1.25rem;
  padding: 0 1.25rem 1.25rem;
}

.top-service__card-title {
  color: #0F172A;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.45;
}

.top-service__card-desc {
  margin-top: 0.5rem;
  color: #0F172A;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.8;
}

.top-service__link-banner {
  margin-top: 3.75rem;
}

.top-service__link-banner-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.top-service__link-banner img {
  aspect-ratio: 335/300;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-service__link-banner-img {
  margin-inline: auto;
}

.top-split {
  padding-block: 3.75rem;
  background: transparent linear-gradient(160deg, #f8f5ef 0%, #c5a059 100%) 0% 0%;
}

.top-split__inner {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

/* ワイドPCのみ固定幅中央寄せ */
.top-split__container {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2.5rem;
}

.top-split__content {
  max-width: 32.0625rem;
}

.top-split__body-headline {
  color: #0F172A;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
}
.top-split__body-headline::after {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-top: 0.75rem;
  background-color: #C5A059;
  content: "";
}

.top-split__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2.5rem;
  gap: 1.25rem;
}
.top-split__body .top-split__body-text {
  color: #0F172A;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.85;
}

.top-split__link-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.top-split__arrow {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-split__arrow img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-split__img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-split__picture {
  width: 100%;
  height: 100%;
}

.top-split__img {
  aspect-ratio: 335/277;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

@media (prefers-reduced-motion: no-preference){
  html {
    scroll-behavior: smooth;
    interpolate-size: allow-keywords;
  }
}

@media not all and (min-width: 768px){
  .pc-only {
    display: none;
  }
  .contact-form__row--radio .wpcf7-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
  .footer__info {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__nav {
    grid-template-columns: 1fr 1fr;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .top-fv {
    min-height: unset;
  }
  .top-fv__slide-inner {
    aspect-ratio: 670/1000;
    height: auto;
    min-height: unset;
  }
  .top-introduction__head {
    padding-block: 0.625rem;
  }
}

@media screen and (min-width: 768px){
  .sp-only {
    display: none;
  }
  .contact-complete {
    padding-block: 7.5rem 10rem;
  }
  .contact-complete__title {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .contact-complete__lead {
    margin-bottom: 3.5rem;
    font-size: 0.9375rem;
  }
  .contact-form-section {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .contact-form-section__inner.inner {
    max-width: 59.5625rem;
  }
  .contact-form-section__title {
    font-size: 5rem;
  }
  .contact-form {
    margin-top: 5.3125rem;
  }
  .contact-form__row {
    display: grid;
    grid-template-columns: 14.5rem 1fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.25rem;
  }
  .contact-form__row--radio {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact-form__row--textarea {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact-form__privacy {
    margin-right: 0;
    margin-left: 15.75rem;
  }
  .contact-form__privacy-body {
    width: 75%;
    max-height: 8.75rem;
    font-size: 0.875rem;
  }
  .contact-form__field {
    margin-top: 0;
  }
  .contact-form__input,
  .contact-form__textarea,
  .wpcf7-form-control:not(.wpcf7-submit):not([type=radio]):not([type=file]) {
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 0.9375rem;
  }
  .contact-form .contact-form__row .contact-form__input {
    width: 75%;
  }
  .contact-form__textarea,
  .wpcf7-textarea {
    width: 75%;
  }
  .contact-form .contact-form__row--radio .wpcf7-form-control.wpcf7-radio {
    padding: 0;
  }
  .contact-form__row--radio .wpcf7-list-item-label {
    font-size: 0.9375rem;
  }
  .contact-form__submit {
    margin-top: 3rem;
  }
  .contact-form__privacy + .contact-form__submit {
    margin-top: 3.75rem;
  }
  .footer {
    padding-block: 6.25rem 1.3125rem;
  }
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2.5rem;
  }
  .footer__logo img {
    aspect-ratio: 233/41;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer__address {
    margin-top: 1.25rem;
  }
  .footer__tel {
    margin-top: 1.25rem;
  }
  .footer__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-width: 60%;
    gap: 3rem;
  }
  .footer__nav-sub {
    margin-top: 1.25rem;
    gap: 0.625rem;
  }
  .footer__bottom {
    width: 100%;
    margin-top: 2.5rem;
  }
  .inner {
    max-width: 1076px;
    padding-inline: 25px;
  }
  main {
    margin-top: 7.75rem;
  }
  .text-btn {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    font-size: 0.9375rem;
  }
  .top-fv {
    min-height: calc(100vh - 7.75rem);
    min-height: calc(100svh - 7.75rem);
  }
  .top-fv__slider {
    padding-top: 2.25rem;
    padding-inline: 1.25rem;
  }
  .top-introduction {
    padding-block: 3.75rem 6.25rem;
  }
  .top-introduction__bar .top-introduction__title {
    font-size: 2.5rem;
    line-height: 1.45;
  }
  .top-introduction__head {
    padding-top: 1.25rem;
  }
  .top-introduction__copy {
    font-size: 1.5rem;
  }
  .top-introduction__diagram {
    margin-top: 3.75rem;
  }
  .top-introduction__diagram-img {
    max-width: 37.5rem;
  }
  .top-movie {
    padding-block: 17.5rem;
  }
  .top-movie__picture {
    aspect-ratio: 21/8;
  }
  .top-news {
    padding-block: 6.25rem;
  }
  .top-news__inner.inner {
    max-width: 59.5625rem;
  }
  .top-news__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 0.9375rem;
    gap: 1.5rem;
  }
  .top-news__archive {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .top-news__link {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 1.25rem;
  }
  .top-news__category {
    padding-inline: 0.6875rem;
  }
  .top-news__title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    min-width: 0;
    padding-left: 1.25rem;
    -webkit-line-clamp: 1;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .top-recruit {
    padding-block: 6.25rem 5rem;
  }
  .top-recruit__grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "img1 img2 img3" "text text text" "btn  btn  btn";
    -webkit-column-gap: 1.125rem;
       -moz-column-gap: 1.125rem;
            column-gap: 1.125rem;
    row-gap: 2.5rem;
    justify-items: baseline;
  }
  .top-recruit__text {
    margin-top: 1.25rem;
  }
  .top-recruit__img-wrap--1 {
    margin-top: 0;
  }
  .top-recruit__headline {
    font-size: 2rem;
  }
  .top-recruit__body {
    margin-top: 2.5rem;
  }
  .top-recruit__img-wrap.top-recruit__img-wrap--2 {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-before: clamp(3.75rem, 8vw, 6.3125rem);
            margin-block-start: clamp(3.75rem, 8vw, 6.3125rem);
  }
  .top-recruit__img {
    width: 20.9375rem;
  }
  .top-recruit__img img {
    aspect-ratio: 335/277;
  }
  .top-recruit__btn-wrap {
    margin-top: 0;
    text-align: left;
  }
  .top-service {
    padding-block: 6.25rem;
  }
  .top-service__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.5rem;
  }
  .top-service__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.375rem;
  }
  .top-service__body {
    padding: 0 0.625rem 1.875rem;
  }
  .top-service__card-desc {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
  .top-service__link-banner {
    margin-top: 5rem;
  }
  .top-service__link-banner img {
    aspect-ratio: 830/200;
  }
}

@media (any-hover: hover){
  .contact-form__submit-wrap:hover::after {
    right: 0.75rem;
  }
  .contact-form__submit-btn:hover,
  .wpcf7-submit:hover {
    color: #fcfcfc;
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
    opacity: 0.95;
  }
  .drawer__close:hover {
    opacity: 0.9;
  }
  .drawer__link:hover,
  .drawer__sublink:hover {
    opacity: 0.8;
  }
  .drawer__link:hover .drawer__arrow--right, .drawer__sublink:hover .drawer__arrow--right {
    -webkit-transform: translateX(0.375rem);
            transform: translateX(0.375rem);
  }
  .drawer__sublink:hover {
    opacity: 0.8;
  }
  .footer__tel a:hover {
    opacity: 0.7;
  }
  .footer__nav-heading a:hover {
    opacity: 0.7;
  }
  .footer__nav-sub-item a:hover {
    opacity: 0.7;
  }
  .footer__nav-item a:hover {
    opacity: 0.7;
  }
  .header__list--dropdown .header__list-link:hover {
    opacity: 0.6;
  }
  .header__list:not(.header__list--dropdown) .header__list-link:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .header__dropdown-item a:hover {
    background-color: rgba(15, 23, 42, 0.06);
  }
  .header__dropdown-item a:hover .header__dropdown-arrow {
    -webkit-transform: translateX(0.375rem);
            transform: translateX(0.375rem);
  }
  .header__list--dropdown:hover .header__dropdown {
    visibility: visible;
    opacity: 1;
  }
  .header__list--dropdown:hover .header__list-arrow {
    -webkit-transform: rotate(180deg) translateY(-2px);
            transform: rotate(180deg) translateY(-2px);
  }
  .text-btn:hover::after {
    opacity: 0;
  }
  .text-btn:hover .text-btn__arrow,
  .text-btn:hover .top-split__arrow,
  .text-btn:hover .top-recruit__arrow {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
  .top-fv__slide-inner:hover {
    opacity: 0.98;
  }
  .top-fv__caption-link:hover::after {
    opacity: 0;
  }
  .top-fv__slide-inner:hover .top-fv__caption-link-arrow {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
  .top-news__archive:hover {
    opacity: 0.7;
  }
  .top-news__archive:hover .top-news__arrow {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
  .top-news__link:hover {
    opacity: 0.7;
  }
  .top-service__card:hover .top-service__img-wrap img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media screen and (min-width: 940px){
  .drawer {
    display: none;
  }
  .hamburger {
    display: none;
  }
  .header {
    top: 2rem;
    width: calc(100% - 5rem);
    -webkit-box-shadow: 0px 3px 10px rgba(51, 51, 51, 0.1);
            box-shadow: 0px 3px 10px rgba(51, 51, 51, 0.1);
  }
  .header__inner {
    padding-inline: 3.75rem;
    padding-block: 0.5625rem 0.75rem;
  }
  .header__logo {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
    width: 14.75rem;
  }
  .header__logo img {
    aspect-ratio: 236/41;
  }
  .header__nav {
    display: block;
  }
}

@media screen and (min-width: 1200px){
  .footer__nav {
    gap: 4.375rem;
  }
  .top-fv__slide.swiper-slide-active {
    -webkit-transform: translateY(-2.25rem);
            transform: translateY(-2.25rem);
  }
  .top-fv__caption {
    top: 70%;
    left: 75%;
    width: 40%;
    border-radius: 2.5rem;
  }
}

@media screen and (max-width: 374px){
  .header__logo {
    width: 12.5rem;
  }
}

@media (min-width: 801px){
  .top-service__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 1260px){
  .top-split {
    padding-block: 6.25rem 5rem;
    background-image: url(../images/top/top-philosophy-backPC.png);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .top-split__inner {
    padding-right: 0;
    padding-left: 1.25rem;
  }
  .top-split__container {
    display: grid;
    grid-template-columns: minmax(0, 513px) minmax(0, 600px);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2.6875rem;
  }
  .top-split__body {
    margin-top: 3.75rem;
    gap: 2.5rem;
  }
  .top-split__body .top-split__body-text {
    font-size: 0.9375rem;
  }
  .top-split__link-wrap {
    margin-top: 3.75rem;
    text-align: left;
  }
  .top-split__img-wrap--sp {
    display: none;
  }
}

@media screen and (min-width: 2200px){
  .top-split {
    padding-block: 7.5rem 7.5rem;
  }
}

@media screen and (min-width: 1600px){
  .top-split__inner {
    max-width: 90rem;
    margin-inline: auto;
  }
}
/*# sourceMappingURL=map/main.css.map */