@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: noto-sans, sans-serif;
  color: #333;
  line-height: 1.5;
  background-color: #FAF8F5;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

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

img {
  width: 100%;
  height: auto;
}

.md {
  display: block;
}
@media (max-width: 599px) {
  .md {
    display: none;
  }
}

.md-sm {
  display: block;
}
@media (max-width: 1299px) {
  .md-sm {
    display: none;
  }
}

.sm {
  display: none;
}
@media (max-width: 1299px) {
  .sm {
    display: block; /* 1200px未満で表示 */
  }
}

.ss {
  display: none;
}
@media (max-width: 599px) {
  .ss {
    display: block;
  }
}

/**
 * Modern CSS Reset Tweaks
 * ==================================================
 * A collection of modern CSS reset and normalization styles
 * to ensure consistent behavior across browsers, OS and devices.
 */
/* Ensure consistent font resizing on mobile devices */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * URL: http://meyerweb.com/eric/tools/css/reset/
 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
rtc,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
  outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
  display: block;
}

canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default list styling */
ol,
ul {
  list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
  box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

video {
  background: #000;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/**
 * Make media easier to work with
 */
audio,
img,
picture,
svg,
video {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled=true],
[aria-disabled=true] {
  pointer-events: none;
}

/**
 * Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

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

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * Show the overflow in IE and Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
template {
  display: none;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

.header .global-nav-wrapper {
  backdrop-filter: blur(5px) brightness(0.76);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  position: relative;
  z-index: 10;
  width: 403px;
  box-sizing: border-box;
  height: 100vh;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  padding: 50px 20px 60px;
  position: fixed;
}
.header .header__inner h1 {
  font-size: 15px;
  text-align: center;
  font-weight: 600;
}
.header .header__inner img {
  width: 304px;
  height: 34px;
  margin: 17px auto 0;
  display: block;
}
.header .header__inner .divider-1 {
  width: 90%;
  height: 1px;
  margin: 40px auto 0;
  background-color: #fff;
}
.header .header__inner .divider-2 {
  width: 90%;
  height: 1px;
  margin: 40px auto 0;
  background-color: #fff;
}
.header .header__inner .nav .nav__list a {
  font-size: 20px;
  margin-top: 30px;
  margin-left: 50px;
  position: relative;
  display: block;
  font-weight: 600;
}
.header .header__inner .nav .nav__list a:hover {
  opacity: 0.6;
}
.header .header__inner .nav .nav__list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/header/arrow-icon.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
.header .header__inner .nav .nav__list a.is-active {
  color: #F0BF75 !important;
}
.header .header__inner .nav .nav__list a.is-active::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.1em;
  background-color: #F0BF75;
  border-radius: 50px;
}
.header .header__inner .nav .nav__list a.is-active::after {
  background-image: url("../img/header/arrow-icon-beige.webp") !important;
}
.header .header__inner .nav .nav__list li[data-num="6"] a::after {
  background-image: url("../img/header/representative-icon.svg");
}
.header .footer-social {
  margin-top: 3px;
  display: flex;
  gap: 10px;
  margin-left: 46px;
}
.header .footer-social a img {
  width: 46px;
  height: 46px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.header .footer-social a img:hover {
  transform: scale(1.1);
  opacity: 0.6;
}
.header .footer-social a img:hover {
  opacity: 0.6;
}

.header-sp {
  z-index: 999;
  position: relative;
  height: auto;
  position: fixed;
  width: 100%;
  height: 75px;
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: center;
}
.header-sp .global-nav-wrapper {
  color: #fff;
}
.header-sp .global-nav-wrapper .header__inner .site-title-wrapper {
  height: 75px;
  width: 100%;
  background: #91775f;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 0 auto;
}
.header-sp .global-nav-wrapper .header__inner .site-title-wrapper .title-texts {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
.header-sp .global-nav-wrapper .header__inner .site-title-wrapper .logo {
  font-size: 12px;
}
.header-sp .global-nav-wrapper .header__inner .site-title-wrapper .site-name-text {
  font-size: 23px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}
.header-sp .global-nav-wrapper .header__inner .hamburger {
  width: 42px;
  height: 30px;
  left: 85%;
  position: static;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header-sp .global-nav-wrapper .header__inner .hamburger span {
  display: block;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center center;
}
.header-sp .global-nav-wrapper .header__inner .hamburger span:nth-child(1) {
  width: 100%;
}
.header-sp .global-nav-wrapper .header__inner .hamburger span:nth-child(2) {
  width: 85%;
}
.header-sp .global-nav-wrapper .header__inner .hamburger span:nth-child(3) {
  width: 70%;
}
.header-sp .global-nav-wrapper .header__inner .hamburger.open span {
  width: 100%;
}
.header-sp .global-nav-wrapper .header__inner .hamburger.open span:nth-child(1) {
  transform: rotate(35deg) translate(15px, 5px);
  width: 100%;
}
.header-sp .global-nav-wrapper .header__inner .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header-sp .global-nav-wrapper .header__inner .hamburger.open span:nth-child(3) {
  transform: rotate(-35deg) translate(15px, -6px);
  width: 100%;
}
.header-sp .global-nav-wrapper .nav-sp {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  top: 75px;
  height: calc(100vh - 75px);
  display: flex;
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
}
.header-sp .global-nav-wrapper .nav-sp.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  display: flex;
}
.header-sp .global-nav-wrapper .nav-sp .nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/header/header-sp-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.header-sp .global-nav-wrapper .nav-sp .nav__list {
  text-align: center;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  overflow-x: auto;
}
.header-sp .global-nav-wrapper .nav-sp .nav__list li {
  border-bottom: 1px solid #fff;
  padding: 18px 0;
}
.header-sp .global-nav-wrapper .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  gap: 10px;
}
.header-sp .global-nav-wrapper .footer-social img {
  display: inline-block;
  width: 47px;
  height: 47px;
}
.header-sp .global-nav-wrapper .footer-social img:hover {
  transform: scale(1.1);
  opacity: 0.6;
}
.header-sp .global-nav-wrapper .footer-social img:hover {
  opacity: 0.6;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero/hero-background.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 599px) {
  .background {
    display: none;
  }
}

.scroll-box {
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  max-width: 481px;
  width: 100%;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 599px) {
  .scroll-box {
    max-width: 100.2083333333vw;
    top: 12.5vw;
  }
}
.scroll-box * {
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.hero {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  height: auto;
  padding: 29px 20px 35px;
}
@media (max-width: 599px) {
  .hero {
    padding: 6.0416666667vw 2.0833333333vw 9.7916666667vw 4.1666666667vw;
    width: 100vw;
  }
}
.hero .hero-text p {
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .hero .hero-text p {
    font-size: 2.7083333333vw;
  }
}
.hero .hero-text h3 {
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: 900;
}
@media (max-width: 599px) {
  .hero .hero-text h3 {
    font-size: 5.2083333333vw;
  }
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero/hero-sec.png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}
.hero .hero-caption p {
  position: relative;
  text-align: left;
  z-index: 1;
  font-size: 20px;
  margin-left: 36px;
  margin-top: 442px;
  color: #fff;
  line-height: 1.75;
  font-weight: 500;
}
@media (max-width: 599px) {
  .hero .hero-caption p {
    font-size: 4.1666666667vw;
    margin-left: 7.5vw;
    margin-top: 92.0833333333vw;
  }
}
.hero .infinit-slider {
  padding: 20px 0;
  overflow-x: hidden;
  background-color: #ffffff;
}
@media (max-width: 599px) {
  .hero .infinit-slider {
    padding: 20px 0;
    overflow-x: hidden;
    background-color: #ffffff;
  }
}

.hero-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 55px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.hero-btn-wrapper:hover {
  transform: scale(1.1);
  opacity: 0.6;
}
.hero-btn-wrapper:hover {
  opacity: 0.6;
}
@media (max-width: 599px) {
  .hero-btn-wrapper {
    display: none;
  }
}
.hero-btn-wrapper .line-btn {
  background: #16C45C;
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  color: #fff;
  padding: 20.9px 53px 21.1px 53px;
}
@media (max-width: 599px) {
  .hero-btn-wrapper .line-btn {
    display: none;
  }
}
.hero-btn-wrapper .line-btn .line-logo {
  width: 37px;
  height: 35.26px;
  margin-top: 0;
  margin-right: 15px;
}
.hero-btn-wrapper .line-btn .line-text {
  font-size: 20px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
}
.hero-btn-wrapper .line-btn {
  background: #16C45C;
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  padding: 15px 46px 15.7px 18px;
}
.hero-btn-wrapper .line-btn .line-logo {
  width: 37px;
  height: 35.26px;
  margin-top: 0;
  margin-right: 17px;
}
.hero-btn-wrapper .line-btn .line-text {
  font-size: 20px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
}

.header-btn-wrapper-pc {
  width: 100%;
  justify-content: center;
  margin: 55px auto 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
}
.header-btn-wrapper-pc:hover {
  transform: scale(1.1);
  opacity: 0.6;
}
.header-btn-wrapper-pc:hover {
  opacity: 0.6;
}
@media (max-width: 599px) {
  .header-btn-wrapper-pc {
    margin-top: 11.4583333333vw;
  }
}
.header-btn-wrapper-pc .line-btn {
  background: #16C45C;
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  padding: 15px 46px 15.7px 18px;
}
.header-btn-wrapper-pc .line-btn .line-logo {
  width: 37px;
  height: 35.26px;
  margin-top: 0;
  margin-right: 17px;
}
.header-btn-wrapper-pc .line-btn .line-text {
  font-size: 20px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
}

.header-btn-wrapper-sp {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 28px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.header-btn-wrapper-sp:hover {
  transform: scale(1.1);
  opacity: 0.6;
}
.header-btn-wrapper-sp:hover {
  opacity: 0.6;
}
@media (max-width: 599px) {
  .header-btn-wrapper-sp {
    margin-top: 5.8333333333vw;
  }
}
.header-btn-wrapper-sp .line-btn {
  background: #16C45C;
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  padding: 17px 52.6px 16px 23px;
}
.header-btn-wrapper-sp .line-btn .line-logo {
  width: 37px;
  height: 35.26px;
  margin-top: 0;
  margin-right: 20.4px;
}
.header-btn-wrapper-sp .line-btn .line-text {
  font-size: 20px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
}

.private-jobs-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.private-jobs-btn-wrapper:hover {
  transform: scale(1.1);
  opacity: 0.6;
}
.private-jobs-btn-wrapper:hover {
  opacity: 0.6;
}
@media (max-width: 599px) {
  .private-jobs-btn-wrapper {
    display: none;
  }
}
.private-jobs-btn-wrapper .line-btn {
  background: #16C45C;
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  padding: 17px 52.6px 16px 23px;
  color: #fff;
}
.private-jobs-btn-wrapper .line-btn .line-logo {
  width: 37px;
  height: 35.26px;
  margin-top: 0;
  margin-right: 20.4px;
}
.private-jobs-btn-wrapper .line-btn .line-text {
  font-size: 20px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
}

.hero-btn-wrapper-sp {
  position: fixed;
  bottom: 4.1666666667vw;
  right: 4.1666666667vw;
  z-index: 100;
  display: block;
  width: auto;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.hero-btn-wrapper-sp:hover {
  transform: scale(1.1);
  opacity: 0.6;
}
.hero-btn-wrapper-sp:hover {
  opacity: 0.6;
}
.hero-btn-wrapper-sp .line-btn {
  display: block;
}
.hero-btn-wrapper-sp .line-btn .line-text {
  font-size: 2.9166666667vw;
  background: #fff;
  color: #222222;
  padding: 1.0416666667vw 2.0833333333vw;
  border-radius: 10.4166666667vw;
  margin-bottom: 1.0416666667vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.hero-btn-wrapper-sp .line-btn .line-icon .line-logo {
  width: 13.5416666667vw;
  height: 13.5416666667vw;
  border-radius: 50%;
  margin: 0 auto;
}

@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-wrapper {
  background-color: #fff;
  padding: 20px 0;
  max-width: none;
  width: 100%;
}
@media (max-width: 599px) {
  .logo-wrapper {
    padding: 4.1666666667vw 0;
  }
}
.logo-wrapper .infinit-slider {
  width: 100%;
  overflow-x: hidden;
}
.logo-wrapper .infinit-slider .scroll-infinity__list--left {
  animation: infinity-scroll-left 40s linear infinite;
  display: flex;
  gap: 15px;
  width: max-content;
}
@media (max-width: 599px) {
  .logo-wrapper .infinit-slider .scroll-infinity__list--left {
    gap: 3.125vw;
  }
}
.logo-wrapper .infinit-slider ul.scroll-infinity__list--left li {
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}
.logo-wrapper .infinit-slider ul.scroll-infinity__list--left li img {
  height: 80px;
  width: auto;
  display: block;
}
@media (max-width: 599px) {
  .logo-wrapper .infinit-slider ul.scroll-infinity__list--left li img {
    height: 16.6666666667vw;
  }
}

.job-search {
  position: relative;
  overflow: hidden;
  padding: 94px 20px 240px;
  height: auto;
}
@media (max-width: 599px) {
  .job-search {
    padding: 19.5833333333vw 4.1666666667vw 50vw;
  }
}
.job-search .job-search-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/job-search/background-job.svg");
  background-size: cover;
  z-index: -1;
}
.job-search .income-up-case {
  text-align: center;
  font-family: "zen-old-mincho", sans-serif;
}
.job-search .job-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
@media (max-width: 599px) {
  .job-search .job-list {
    display: flex;
    gap: 4.1666666667vw;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
}
.job-search .section-subtitle {
  font-size: 15px;
  color: #F0BF75;
  letter-spacing: 0.08em;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 599px) {
  .job-search .section-subtitle {
    font-size: 3.125vw;
  }
}
.job-search .section-title {
  font-size: 34px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  line-height: 1.44;
  font-weight: 700;
}
@media (max-width: 599px) {
  .job-search .section-title {
    font-size: 7.0833333333vw;
    margin-top: 2.0833333333vw;
    margin-bottom: 8.3333333333vw;
  }
}
.job-search .section-title span {
  color: #F0BF75;
}
.job-search .testimonial-box {
  position: relative;
  width: 390px;
  height: 462px;
  margin: 0;
  flex: 0 0 auto;
  z-index: 10;
  background: #EDEDED;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 599px) {
  .job-search .testimonial-box {
    width: 81.25vw;
    height: 96.25vw;
    margin-bottom: 6.25vw;
    border-radius: 1.0416666667vw;
  }
}
.job-search .testimonial-header {
  background: linear-gradient(45deg, #e1c293, #c39a5c, #c39a5c, #debe8d, #e1c293);
  z-index: 20;
  display: flex;
  position: relative;
}
.job-search .testimonial-header::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 20px solid #c39a5c;
  z-index: 22;
}
@media (max-width: 599px) {
  .job-search .testimonial-header::after {
    bottom: -3.9583333333vw;
    border-left: 5.2083333333vw solid transparent;
    border-right: 5.2083333333vw solid transparent;
    border-top: 4.1666666667vw solid #c39a5c;
  }
}
.job-search .chef-image {
  position: relative;
  width: 100px;
  height: 100px;
  z-index: 21;
  margin-left: 24px;
  top: 15px;
}
@media (max-width: 599px) {
  .job-search .chef-image {
    width: 20.8333333333vw;
    height: 20.8333333333vw;
    margin-left: 5vw;
    top: 3.125vw;
  }
}
.job-search .testimonial-info {
  align-items: center;
  font-family: "zen-old-mincho", sans-serif;
  justify-content: center;
  flex-direction: column;
  margin-left: 19px;
  height: 126px;
}
@media (max-width: 599px) {
  .job-search .testimonial-info {
    margin-left: 3.9583333333vw;
    height: 26.25vw;
  }
}
.job-search .testimonial-info .name {
  font-size: 32px;
  margin-top: 19px;
  color: #2c1c03;
  margin-left: 22px;
  line-height: 1.44;
  font-weight: 700;
}
@media (max-width: 599px) {
  .job-search .testimonial-info .name {
    font-size: 7.0833333333vw;
    margin-top: 3.9583333333vw;
    margin-left: 4.5833333333vw;
  }
}
.job-search .testimonial-info .age {
  font-size: 18px;
  background: #fff;
  border-radius: 50px;
  padding: 3px 20px;
  margin-top: 9px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .job-search .testimonial-info .age {
    font-size: 3.75vw;
    padding: 0.625vw 4.1666666667vw;
    border-radius: 10.4166666667vw;
    margin-top: 1.875vw;
  }
}
.job-search .testimonial-text {
  text-align: center;
  color: #2C1C03;
  font-family: "Noto Sans JP", sans-serif;
}
.job-search .testimonial-text p {
  font-size: 13px;
  margin-top: 42px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .job-search .testimonial-text p {
    font-size: 2.7083333333vw;
    margin-top: 8.75vw;
  }
}
.job-search .testimonial-text h3 {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .job-search .testimonial-text h3 {
    font-size: 3.75vw;
    margin-top: 2.0833333333vw;
  }
}
.job-search .testimonial-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  text-align: center;
  position: relative;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer {
    gap: 4.1666666667vw;
    margin-top: 5.2083333333vw;
  }
}
.job-search .testimonial-footer .left-box {
  width: 166px;
  height: 176px;
  background: #fff;
  overflow: hidden;
  border-radius: 5px;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .left-box {
    width: 34.5833333333vw;
    height: 36.6666666667vw;
    border-radius: 1.0416666667vw;
  }
}
.job-search .testimonial-footer .left-box .left-box-upper {
  font-size: 18px;
  color: #fff;
  background: #a09e9e;
  padding: 14px 56px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 17px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .left-box .left-box-upper {
    font-size: 3.75vw;
    padding: 2.9166666667vw 11.6666666667vw;
    margin-bottom: 3.5416666667vw;
  }
}
.job-search .testimonial-footer .left-box .left-box-lower {
  color: #2C1C03;
  position: relative;
}
.job-search .testimonial-footer .left-box .left-box-lower p {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .left-box .left-box-lower p {
    font-size: 3.3333333333vw;
    margin-bottom: 3.3333333333vw;
  }
}
.job-search .testimonial-footer .left-box .left-box-lower .salary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .left-box .left-box-lower .salary {
    gap: 2.0833333333vw;
    font-size: 3.3333333333vw;
  }
}
.job-search .testimonial-footer .left-box .left-box-lower .salary .label {
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .left-box .left-box-lower .salary .label {
    font-size: 2.9166666667vw;
  }
}
.job-search .testimonial-footer .left-box .left-box-lower .salary .amount {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .left-box .left-box-lower .salary .amount {
    font-size: 8.3333333333vw;
  }
}
.job-search .testimonial-footer .left-box .left-box-lower .salary .unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.job-search .testimonial-footer .arrow-box {
  position: absolute;
  z-index: 30;
  top: 63%;
  left: 48.5%;
}
.job-search .testimonial-footer .arrow-box img {
  width: 20px;
  height: 42px;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .arrow-box img {
    width: 4.1666666667vw;
    height: 8.75vw;
  }
}
.job-search .testimonial-footer .right-box {
  width: 166px;
  height: 176px;
  background: #fff;
  overflow: hidden;
  border-radius: 5px;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .right-box {
    width: 34.5833333333vw;
    height: 36.6666666667vw;
    border-radius: 1.0416666667vw;
  }
}
.job-search .testimonial-footer .right-box .right-box-upper {
  font-size: 18px;
  color: #fff;
  background: #A82838;
  padding: 14px 56px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 17px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .right-box .right-box-upper {
    font-size: 3.75vw;
    padding: 2.9166666667vw 11.6666666667vw;
    margin-bottom: 3.5416666667vw;
  }
}
.job-search .testimonial-footer .right-box .right-box-lower {
  color: #2C1C03;
}
.job-search .testimonial-footer .right-box .right-box-lower p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .right-box .right-box-lower p {
    font-size: 3.3333333333vw;
    margin-bottom: 3.3333333333vw;
  }
}
.job-search .testimonial-footer .right-box .right-box-lower .salary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .right-box .right-box-lower .salary {
    gap: 2.0833333333vw;
    font-size: 3.3333333333vw;
  }
}
.job-search .testimonial-footer .right-box .right-box-lower .salary .label {
  font-size: 14px;
  writing-mode: vertical-rl;
  font-weight: 500;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .right-box .right-box-lower .salary .label {
    font-size: 2.9166666667vw;
  }
}
.job-search .testimonial-footer .right-box .right-box-lower .salary .amount {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: #E0102B;
  font-weight: 700;
  font-family: "nimbus-sans", sans-serif;
}
@media (max-width: 599px) {
  .job-search .testimonial-footer .right-box .right-box-lower .salary .amount {
    font-size: 8.3333333333vw;
  }
}
.job-search .testimonial-footer .right-box .right-box-lower .salary .unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.why-japanese-chefs {
  background-color: #EDEDED;
  height: auto;
  padding: 100px 20px;
}
@media (max-width: 599px) {
  .why-japanese-chefs {
    padding: 14.5833333333vw 4.1666666667vw;
  }
}
.why-japanese-chefs .section-header {
  text-align: center;
  font-family: "zen-old-mincho", sans-serif;
}
.why-japanese-chefs .section-header p {
  font-size: 15px;
  color: #AA8953;
  margin-bottom: 9px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (max-width: 599px) {
  .why-japanese-chefs .section-header p {
    font-size: 3.125vw;
    margin-bottom: 1.875vw;
  }
}
.why-japanese-chefs .section-header h2 {
  font-size: 32px;
  color: #2C1C03;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 599px) {
  .why-japanese-chefs .section-header h2 {
    font-size: 6.6666666667vw;
  }
}
.why-japanese-chefs .section-header span {
  font-size: 32px;
  color: #AA8953;
  font-weight: 700;
}
@media (max-width: 599px) {
  .why-japanese-chefs .section-header span {
    font-size: 6.6666666667vw;
  }
}
.why-japanese-chefs .highlight-image {
  margin: 44px auto 0;
  width: 100%;
}
@media (max-width: 599px) {
  .why-japanese-chefs .highlight-image {
    margin: 8.5416666667vw auto 0;
  }
}
.why-japanese-chefs .divider {
  width: 95%;
  height: 1px;
  margin: 36px auto 30px;
  background-color: #DDDDDD;
}
.why-japanese-chefs .chef-benefit-content {
  background: #fff;
  padding: 40px 13px 68px 15px;
}
@media (max-width: 599px) {
  .why-japanese-chefs .chef-benefit-content {
    padding: 8.3333333333vw 2.7083333333vw 14.1666666667vw 3.125vw;
  }
}
.why-japanese-chefs .chef-benefit-content h3 {
  font-size: 20px;
  color: #AA8953;
  margin-bottom: 29px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 599px) {
  .why-japanese-chefs .chef-benefit-content h3 {
    font-size: 4.1666666667vw;
    margin-bottom: 6.0416666667vw;
  }
}
.why-japanese-chefs .chef-benefit-content .diamond-heading-1 {
  position: relative;
  padding-left: 25px;
  font-size: 20px;
  color: #AA8953;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .why-japanese-chefs .chef-benefit-content .diamond-heading-1 {
    padding-left: 5.2083333333vw;
    font-size: 4.1666666667vw;
    margin-bottom: 4.1666666667vw;
  }
}
.why-japanese-chefs .chef-benefit-content .diamond-heading-1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background-color: #AA8953;
}
@media (max-width: 599px) {
  .why-japanese-chefs .chef-benefit-content .diamond-heading-1::before {
    top: 50%;
    left: 1%;
    transform: translateY(-50%) rotate(45deg);
    width: 2.9166666667vw;
    height: 2.9166666667vw;
  }
}
.why-japanese-chefs .chef-benefit-content .diamond-heading {
  position: relative;
  font-size: 20px;
  padding-left: 10px;
  color: #AA8953;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .why-japanese-chefs .chef-benefit-content .diamond-heading {
    font-size: 4.1666666667vw;
    padding-left: 2.0833333333vw;
    margin-bottom: 4.1666666667vw;
  }
}
.why-japanese-chefs .chef-benefit-content .diamond-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background-color: #AA8953;
}
@media (max-width: 599px) {
  .why-japanese-chefs .chef-benefit-content .diamond-heading::before {
    top: 50%;
    left: 1%;
    transform: translateY(-50%) rotate(45deg);
    width: 2.9166666667vw;
    height: 2.9166666667vw;
  }
}
.why-japanese-chefs .chef-benefit-content p {
  position: relative;
  font-size: 15px;
  color: #2C1C03;
  margin: 0 0 0 29px;
  text-align: left;
  width: 375px;
  line-height: 1.8;
}
@media (max-width: 599px) {
  .why-japanese-chefs .chef-benefit-content p {
    font-size: 3.125vw;
    width: 78.125vw;
    margin: 0 0 0 4.1666666667vw;
  }
}
.why-japanese-chefs .chef-benefit-content .salary-example-text {
  width: 365px;
  margin: 0 0 0 30px;
}
@media (max-width: 599px) {
  .why-japanese-chefs .chef-benefit-content .salary-example-text {
    width: 76.0416666667vw;
    margin: 0 0 0 6.25vw;
  }
}

.private-jobs-section {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  height: auto;
}
@media (max-width: 599px) {
  .private-jobs-section {
    padding: 20.8333333333vw 4.1666666667vw;
  }
}
.private-jobs-section .private-jobs-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/private-jobs-section/private-jobs-background.webp");
  background-size: cover;
  z-index: -1;
}
.private-jobs-section .private-jobs-heading {
  text-align: center;
  color: #F0BF75;
  font-family: "zen-old-mincho", sans-serif;
}
.private-jobs-section .private-jobs-heading p {
  font-size: 15px;
  margin-bottom: 9px;
}
@media (max-width: 599px) {
  .private-jobs-section .private-jobs-heading p {
    font-size: 3.125vw;
    margin-bottom: 1.875vw;
  }
}
.private-jobs-section .private-jobs-heading h2 {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .private-jobs-section .private-jobs-heading h2 {
    font-size: 6.6666666667vw;
  }
}
.private-jobs-section .private-jobs-description {
  font-size: 15px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin: 20px 0 46px;
  line-height: 1.8;
  font-weight: 400;
}
@media (max-width: 599px) {
  .private-jobs-section .private-jobs-description {
    font-size: 3.125vw;
    margin: 4.1666666667vw 0 9.5833333333vw;
  }
}
.private-jobs-section .job-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
@media (max-width: 599px) {
  .private-jobs-section .job-list {
    display: flex;
    gap: 4.1666666667vw;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
}
.private-jobs-section .job-offer-box {
  flex: 0 0 auto;
  width: 390px;
  height: 414px;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto;
  background: #EDEDED;
  padding-bottom: 30px;
}
@media (max-width: 599px) {
  .private-jobs-section .job-offer-box {
    flex: 0 0 auto;
    width: 81.25vw;
    height: 86.25vw;
    border-radius: 1.0416666667vw;
  }
}
.private-jobs-section .job-header {
  width: 390px;
  height: 114px;
  background: #f7e8cf;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 599px) {
  .private-jobs-section .job-header {
    width: 81.25vw;
    height: 23.75vw;
    padding-top: 5.2083333333vw;
    padding-bottom: 5.2083333333vw;
  }
}
.private-jobs-section .job-header h3 {
  font-size: 20px;
  color: #2C1C03;
  margin-bottom: 8px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .private-jobs-section .job-header h3 {
    font-size: 4.1666666667vw;
    margin-bottom: 1.6666666667vw;
  }
}
.private-jobs-section .job-header p {
  font-size: 16px;
  color: #AA8953;
  font-weight: 600;
}
@media (max-width: 599px) {
  .private-jobs-section .job-header p {
    font-size: 3.3333333333vw;
  }
}
.private-jobs-section .job-salary {
  text-align: center;
  color: #2C1C03;
  margin-top: 27px;
}
@media (max-width: 599px) {
  .private-jobs-section .job-salary {
    text-align: center;
    margin-top: 5.625vw;
  }
}
.private-jobs-section .job-salary p {
  font-size: 16px;
  margin-bottom: 26px;
}
@media (max-width: 599px) {
  .private-jobs-section .job-salary p {
    font-size: 3.3333333333vw;
    margin-bottom: 5.4166666667vw;
  }
}
.private-jobs-section .job-salary .salary {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 38px;
}
@media (max-width: 599px) {
  .private-jobs-section .job-salary .salary {
    display: flex;
    gap: 2.0833333333vw;
    font-size: 3.3333333333vw;
    margin-bottom: 7.9166666667vw;
  }
}
.private-jobs-section .job-salary .salary .label {
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .private-jobs-section .job-salary .salary .label {
    writing-mode: vertical-rl;
    font-size: 2.9166666667vw;
  }
}
.private-jobs-section .job-salary .salary .amount {
  font-size: 56px;
  line-height: 0.6;
  color: #E0102B;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 599px) {
  .private-jobs-section .job-salary .salary .amount {
    font-size: 11.6666666667vw;
  }
}
.private-jobs-section .job-salary .salary .unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.private-jobs-section .job-description-box {
  width: 350px;
  background: #fff;
  border-radius: 5px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 599px) {
  .private-jobs-section .job-description-box {
    width: 72.9166666667vw;
    border-radius: 1.0416666667vw;
  }
}
.private-jobs-section .job-description-box p {
  font-size: 16px;
  color: #fff;
  background: #C39A5C;
  width: 350px;
  height: 35px;
  text-align: center;
  padding: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
@media (max-width: 599px) {
  .private-jobs-section .job-description-box p {
    font-size: 3.3333333333vw;
    width: 72.9166666667vw;
    height: 7.2916666667vw;
    height: 7.2916666667vw;
    padding: 1.0416666667vw;
  }
}
.private-jobs-section .job-description-box ul {
  font-size: 15px;
  color: #2C1C03;
  font-family: "Noto Sans JP", sans-serif;
  margin: 25px auto;
  width: 270px;
  line-height: 1.87;
}
@media (max-width: 599px) {
  .private-jobs-section .job-description-box ul {
    font-size: 3.125vw;
    margin: 5.2083333333vw auto;
    width: 56.25vw;
  }
}
.private-jobs-section .job-description-box .job-description-list-2 {
  margin: 25px 125px 55px;
}
@media (max-width: 599px) {
  .private-jobs-section .job-description-box .job-description-list-2 {
    margin: 5.2083333333vw 26.0416666667vw 11.4583333333vw;
  }
}

.section-overseas-support {
  background: #fff;
  padding: 80px 20px 84px;
}
@media (max-width: 599px) {
  .section-overseas-support {
    padding: 16.6666666667vw 4.1666666667vw 17.5vw;
  }
}
.section-overseas-support .section-overseas-support__title {
  font-size: 24px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  color: #2C1C03;
  font-weight: 600;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__title {
    font-size: 5vw;
  }
}
.section-overseas-support .section-overseas-support__title span {
  font-size: 32px;
  color: #AA8953;
  margin-top: 5px;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__title span {
    font-size: 6.6666666667vw;
    margin-top: 1.0416666667vw;
  }
}
.section-overseas-support .section-overseas-support__subtitle {
  font-size: 17px;
  color: #2C1C03;
  margin: 42px auto 0;
  text-align: center;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.8;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__subtitle {
    font-size: 3.5416666667vw;
    margin: 8.75vw auto 0;
  }
}
.section-overseas-support .section-overseas-support__subtitle span {
  font-size: 24px;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__subtitle span {
    font-size: 5vw;
  }
}
.section-overseas-support .section-overseas-support__subtitle span::before, .section-overseas-support .section-overseas-support__subtitle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 83px;
  height: 1px;
  background-color: #2C1C03;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__subtitle span::before, .section-overseas-support .section-overseas-support__subtitle span::after {
    width: 17.2916666667vw;
    height: 1px;
  }
}
.section-overseas-support .section-overseas-support__subtitle span::before {
  left: 0;
  transform: translateX(0%);
}
.section-overseas-support .section-overseas-support__subtitle span::after {
  right: 0;
  transform: translateX(0%);
}
.section-overseas-support .section-overseas-support__questions {
  width: 440px;
  height: 215px;
  background: #F7F7F7;
  margin: 24px auto 0;
  padding: 30px 0 30px 72px;
  border-radius: 5px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__questions {
    width: 91.6666666667vw;
    height: 44.7916666667vw;
    padding: 6.25vw 0 6.25vw 15vw;
    border-radius: 1.0416666667vw;
  }
}
.section-overseas-support .section-overseas-support__questions li {
  font-size: 16px;
  color: #2C1C03;
  position: relative;
  margin: 0 auto;
  margin: 14px 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__questions li {
    font-size: 3.3333333333vw;
    margin: 2.9166666667vw 0;
  }
}
.section-overseas-support .section-overseas-support__questions li::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 33%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(../img/section-overseas-support/check.webp) no-repeat center;
  background-size: contain;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__questions li::before {
    left: -12%;
    top: 33%;
    transform: translateY(-50%);
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
.section-overseas-support .section-overseas-support__questions li span {
  border-bottom: 1px solid #ccc;
  display: inline-block;
  line-height: 1.4;
  padding-bottom: 14px;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__questions li span {
    border-bottom: 1px solid #ccc;
    padding-bottom: 2.9166666667vw;
  }
}
.section-overseas-support .section-overseas-support__arrow {
  width: 111px;
  height: 49px;
  margin: 30px auto 0;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__arrow {
    width: 23.125vw;
    height: 10.2083333333vw;
    margin: 6.25vw auto 0;
  }
}
.section-overseas-support .section-overseas-support__solution {
  text-align: center;
  margin: 30px auto 0;
  font-size: 17;
  color: #2C1C03;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__solution {
    margin: 6.25vw auto 0;
    font-size: 3.5416666667vw;
  }
}
.section-overseas-support .section-overseas-support__solution span {
  font-size: 24px;
  color: #A82838;
  margin-top: 5px;
  display: block;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__solution span {
    font-size: 5vw;
    margin-top: 1.0416666667vw;
  }
}
.section-overseas-support .section-overseas-support__support-images {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__support-images {
    gap: 1.6666666667vw;
    margin: 5vw auto 0;
  }
}
.section-overseas-support .section-overseas-support__support-images img {
  width: 141px;
  height: 113px;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__support-images img {
    width: 29.375vw;
    height: 23.5416666667vw;
  }
}
.section-overseas-support .section-overseas-support__note p {
  text-align: center;
  font-size: 20px;
  color: #2C1C03;
  margin-top: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media (max-width: 599px) {
  .section-overseas-support .section-overseas-support__note p {
    font-size: 4.1666666667vw;
    margin-top: 5.2083333333vw;
  }
}

.support-system {
  position: relative;
  overflow: hidden;
  padding: 100px 20px 119px;
  height: auto;
}
@media (max-width: 599px) {
  .support-system {
    padding: 20.8333333333vw 4.1666666667vw 24.7916666667vw;
  }
}
.support-system .support-system__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/support-system/support-system-background.webp");
  background-size: cover;
  z-index: -1;
}
.support-system .support-system__title {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}
.support-system .support-system__title .support-system__title-en {
  font-size: 15px;
  display: inline-block;
  color: #F0BF75;
  margin-bottom: 10px;
  font-weight: 700;
}
@media (max-width: 599px) {
  .support-system .support-system__title .support-system__title-en {
    font-size: 3.125vw;
    margin-bottom: 2.0833333333vw;
  }
}
.support-system .support-system__title .support-system__title-ja {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 599px) {
  .support-system .support-system__title .support-system__title-ja {
    font-size: 6.6666666667vw;
  }
}
.support-system .support-system__title .support-system__title-ja span {
  color: #F0BF75;
}
.support-system .support-system__description {
  text-align: center;
  font-size: 15px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 20px;
  line-height: 1.8;
}
@media (max-width: 599px) {
  .support-system .support-system__description {
    font-size: 3.125vw;
    margin-top: 4.1666666667vw;
  }
}
.support-system .support-system__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 460px;
  margin: 66px auto 0;
}
@media (max-width: 599px) {
  .support-system .support-system__items {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 4.1666666667vw;
    max-width: 95.8333333333vw;
    margin: 13.75vw auto 0;
    width: 100%;
  }
}
.support-system .support-system__items .support-system__item {
  width: 210px;
  text-align: center;
}
@media (max-width: 599px) {
  .support-system .support-system__items .support-system__item {
    width: 43.75vw;
  }
}
.support-system .support-system__items .support-system__item img {
  width: 100%;
  height: auto;
}
@media (max-width: 599px) {
  .support-system .support-system__items .support-system__item img {
    width: 100%;
    height: auto;
  }
}
.support-system .support-system__item-5 {
  margin: 20px auto 0;
  width: 251px;
}
@media (max-width: 599px) {
  .support-system .support-system__item-5 {
    margin: 4.1666666667vw auto 0;
    width: 52.2916666667vw;
  }
}
.support-system .support-system__item-5 img {
  width: 100%;
  height: auto;
}
@media (max-width: 599px) {
  .support-system .support-system__item-5 img {
    width: 100%;
    height: auto;
  }
}

.work-flow {
  background: #EDEDED;
  padding: 80px 20px;
}
@media (max-width: 599px) {
  .work-flow {
    padding: 16.6666666667vw 4.1666666667vw;
  }
}
.work-flow .work-flow__title {
  font-size: 15px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  color: #AA8953;
  font-weight: 500;
}
@media (max-width: 599px) {
  .work-flow .work-flow__title {
    font-size: 3.125vw;
  }
}
.work-flow .work-flow__title span {
  font-size: 32px;
  color: #2C1C03;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .work-flow .work-flow__title span {
    font-size: 6.6666666667vw;
    margin-top: 2.0833333333vw;
  }
}
.work-flow .work-flow__step {
  width: 440px;
  height: 198px;
  background: #fff;
  margin: 49px auto 0;
  border-radius: 5px;
  text-align: center;
  position: relative;
}
@media (max-width: 599px) {
  .work-flow .work-flow__step {
    width: 91.6666666667vw;
    height: 41.25vw;
    margin: 10.2083333333vw auto 0;
    border-radius: 1.0416666667vw;
  }
}
.work-flow .work-flow__step .step-number {
  font-size: 42px;
  font-family: "Zen Old Mincho", serif;
  color: #AA8953;
  position: absolute;
  top: -35px;
  left: 45%;
}
@media (max-width: 599px) {
  .work-flow .work-flow__step .step-number {
    font-size: 8.75vw;
    top: -7.2916666667vw;
    left: 45%;
  }
}
.work-flow .work-flow__step .step-title {
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
  color: #AA8953;
  padding-top: 44px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .work-flow .work-flow__step .step-title {
    font-size: 5vw;
    padding-top: 9.1666666667vw;
  }
}
.work-flow .work-flow__step .step-text {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 25px;
  line-height: 2;
}
@media (max-width: 599px) {
  .work-flow .work-flow__step .step-text {
    font-size: 3.125vw;
    margin-top: 5.2083333333vw;
  }
}
.work-flow .work-flow__result {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.work-flow .work-flow__result .arrow-image {
  width: 111px;
  height: 49px;
  margin: 30px auto 0;
  display: block;
}
@media (max-width: 599px) {
  .work-flow .work-flow__result .arrow-image {
    width: 23.125vw;
    height: 10.2083333333vw;
    margin: 6.25vw auto 0;
  }
}
.work-flow .work-flow__result p {
  font-size: 28px;
  color: #A82838;
  margin-bottom: 10px;
  margin-top: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
}
@media (max-width: 599px) {
  .work-flow .work-flow__result p {
    font-size: 5.8333333333vw;
    margin-bottom: 2.0833333333vw;
    margin-top: 6.25vw;
  }
}
.work-flow .work-flow__result p::before, .work-flow .work-flow__result p::after {
  content: "";
  position: absolute;
  top: 57%;
  width: 35px;
  height: 1px;
  background-color: #A82838;
}
@media (max-width: 599px) {
  .work-flow .work-flow__result p::before, .work-flow .work-flow__result p::after {
    width: 7.2916666667vw;
    height: 0.2083333333vw;
  }
}
.work-flow .work-flow__result p::before {
  left: 65px;
  transform: translateY(-50%) rotate(58deg);
}
@media (max-width: 599px) {
  .work-flow .work-flow__result p::before {
    left: 13.5416666667vw;
  }
}
.work-flow .work-flow__result p::after {
  right: 65px;
  transform: translateY(-50%) rotate(-58deg);
}
@media (max-width: 599px) {
  .work-flow .work-flow__result p::after {
    right: 13.5416666667vw;
  }
}
.work-flow .work-flow__result h3 {
  background: #A82838;
  width: 409px;
  height: 48px;
  color: #fff;
  font-size: 20px;
  padding: 7px 70px;
  margin: 0 auto;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media (max-width: 599px) {
  .work-flow .work-flow__result h3 {
    width: 85.2083333333vw;
    height: 10vw;
    font-size: 4.1666666667vw;
    padding: 1.4583333333vw 14.5833333333vw;
    border-radius: 1.0416666667vw;
  }
}

.faq-section {
  background: #fff;
  padding: 60px 30px;
}
@media (max-width: 599px) {
  .faq-section {
    padding: 12.5vw 6.25vw;
  }
}
.faq-section .faq-heading {
  text-align: center;
}
.faq-section .faq-heading h2 {
  font-size: 15px;
  font-family: "Zen Old Mincho", serif;
  color: #AA8953;
  font-weight: 600;
}
@media (max-width: 599px) {
  .faq-section .faq-heading h2 {
    font-size: 3.125vw;
  }
}
.faq-section .faq-heading h2 span {
  font-size: 32px;
  font-family: "Zen Old Mincho", serif;
  color: #2C1C03;
  margin-bottom: 20px;
  margin-top: 10px;
  display: inline-block;
}
@media (max-width: 599px) {
  .faq-section .faq-heading h2 span {
    font-size: 6.6666666667vw;
    margin-bottom: 4.1666666667vw;
    margin-top: 2.0833333333vw;
  }
}
.faq-section .faq-item {
  width: 419px;
  height: auto;
  background: #fff;
  border: #C39A5C solid 1px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
}
@media (max-width: 599px) {
  .faq-section .faq-item {
    width: 87.2916666667vw;
    height: auto;
    border: #C39A5C solid 0.2083333333vw;
    border-radius: 1.0416666667vw;
    margin-top: 4.1666666667vw;
  }
}
.faq-section .faq-item .faq-question {
  width: 419px;
  height: 54px;
  background: #C39A5C;
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 54px;
}
@media (max-width: 599px) {
  .faq-section .faq-item .faq-question {
    width: 87.2916666667vw;
    height: 11.25vw;
    font-size: 3.75vw;
    padding-left: 11.25vw;
  }
}
.faq-section .faq-item .faq-question h3 {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.faq-section .faq-item .faq-question::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 37px;
  background-image: url("../img/faq-section/q-icon.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 599px) {
  .faq-section .faq-item .faq-question::before {
    left: 4.1666666667vw;
    top: 50%;
    transform: translateY(-50%);
    width: 4.1666666667vw;
    height: 7.7083333333vw;
  }
}
.faq-section .faq-item .faq-question::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  right: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-image: url("../img/faq-section/plus-icon.webp");
}
@media (max-width: 599px) {
  .faq-section .faq-item .faq-question::after {
    right: 4.1666666667vw;
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
.faq-section .faq-item .faq-question span {
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 599px) {
  .faq-section .faq-item .faq-question span {
    font-size: 5.4166666667vw;
  }
}
.faq-section .faq-item.open .faq-question::after {
  background-image: url("../img/faq-section/minus-icon.webp");
}
.faq-section .faq-item.open .faq-answer {
  max-height: 500px;
  padding: 12px 20px 20px;
}
@media (max-width: 599px) {
  .faq-section .faq-item.open .faq-answer {
    max-height: 104.1666666667vw;
    padding: 2.5vw 4.1666666667vw 4.1666666667vw;
  }
}
.faq-section .faq-item .faq-answer {
  font-size: 16px;
  padding: 0 20px;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  max-height: 0;
  overflow: hidden;
  transition: grid-template-rows 0.5s;
}
@media (max-width: 599px) {
  .faq-section .faq-item .faq-answer {
    font-size: 3.3333333333vw;
    padding: 0 4.1666666667vw;
  }
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

.contact-form-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  height: auto;
}
@media (max-width: 599px) {
  .contact-form-section {
    padding: 16.6666666667vw 4.1666666667vw;
  }
}
.contact-form-section .contact-form-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/contact-form-section/contact-form-background.webp");
  background-size: cover;
  z-index: -1;
}
.contact-form-section .contact-form-title {
  text-align: center;
  font-family: "zen-old-mincho", sans-serif;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-title {
    font-size: 6.6666666667vw;
  }
}
.contact-form-section .contact-form-inner {
  background: #fff;
  width: 391px;
  height: auto;
  margin: 44px auto 0;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner {
    width: 81.4583333333vw;
    height: auto;
    margin: 9.1666666667vw auto 0;
  }
}
.contact-form-section .contact-form-inner.confirm form {
  padding-top: 0;
}
.contact-form-section .contact-form-inner.complete {
  padding: 29px 20px 31px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner.complete {
    padding: 6.0416666667vw 4.1666666667vw 6.4583333333vw;
  }
}
.contact-form-section .contact-form-inner.complete p {
  line-height: 2;
  text-align: center;
  font-size: 14px;
}
.contact-form-section .contact-form-inner.complete span {
  font-weight: 600;
  font-size: 21px;
  text-align: center;
}
.contact-form-section .contact-form-inner.complete .c-btn {
  position: relative;
  height: 70px;
  width: 346px;
  margin-top: 30px;
  border-radius: 5px;
  background-color: #c39a5c;
  z-index: 1;
  transition: all 350ms cubic-bezier(0.36, 0.1, 0.16, 1);
  color: #fff;
  text-align: center;
  padding: 20px;
}
.contact-form-section .contact-form-inner.complete .c-btn:hover {
  opacity: 0.6;
}
.contact-form-section .contact-form-inner .Form {
  padding: 29px 20px 31px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form {
    padding: 6.0416666667vw 4.1666666667vw 6.4583333333vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item {
  border-bottom: 1px solid #f2f2f2;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item {
    padding-bottom: 4.1666666667vw;
    padding-top: 4.1666666667vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 13px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Label {
    font-size: 2.9166666667vw;
    margin-bottom: 2.7083333333vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Label span {
  color: #e0102b;
  font-weight: 500;
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Label .optional {
  color: #000;
  font-weight: 500;
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Label.cf {
  margin-bottom: 13px !important;
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 18px 18px 18px;
  margin-bottom: 6px;
  height: 60px;
  width: 100%;
  background: #f5f5f5;
  font-size: 16px;
  color: #bfc0cb;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Input {
    border-radius: 1.0416666667vw;
    padding: 3.75vw 3.75vw 3.75vw;
    margin-bottom: 1.25vw;
    height: 12.5vw;
    font-size: 3.3333333333vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Input.flex-input {
  text-align: center;
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Input:not(:placeholder-shown) {
  color: #000;
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Input::placeholder {
  color: #bfc0cb;
}
.contact-form-section .contact-form-inner .Form .Form-Item .fullName {
  font-size: 12px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .fullName {
    font-size: 2.5vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Label-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Label-flex {
    gap: 2.5vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Label-flex p {
  white-space: nowrap;
  font-size: 14px;
  margin-bottom: -33px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Label-flex p {
    font-size: 2.9166666667vw;
    margin-bottom: -6.875vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .sex-wrap {
  justify-content: flex-start;
}
.contact-form-section .contact-form-inner .Form .Form-Item .sex-wrap .radioText {
  color: #bfc0cb;
}
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio {
  background: #f5f5f5;
  align-items: center;
  padding: 18px 75px 18px 18px;
  border-radius: 5px;
  margin-right: 10px;
  width: 150px;
  cursor: pointer;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio {
    padding: 3.75vw 11.4583333333vw 3.75vw 3.75vw;
    border-radius: 1.0416666667vw;
    margin-right: 2.0833333333vw;
    width: 31.25vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item.RadioLastItem .radio {
  padding: 16px 20px 16px 5px !important;
}
.contact-form-section .contact-form-inner .Form .Form-Item.RadioLastItem .Form-Item-Label {
  margin-bottom: 0;
}
.contact-form-section .contact-form-inner .Form .Form-Item .experienceWrap {
  gap: 10px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .experienceWrap {
    gap: 2.0833333333vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .experienceWrap .radio {
  padding: 22px 50px 19px 18px;
  font-size: 16px;
  margin-right: 0;
  color: #bfc0cb;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .experienceWrap .radio {
    padding: 4.5833333333vw 10.4166666667vw 3.9583333333vw 3.75vw;
    font-size: 3.3333333333vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .phoneNote {
  font-size: 12px !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .phoneNote {
    font-size: 2.5vw;
    margin-top: 0;
    margin-bottom: 3.125vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap.timeZoneWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-start;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .radioWrap.timeZoneWrap {
    gap: 1.0416666667vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .radio.callTimeSelector {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 16px 5px;
  width: 113px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  margin-right: 0;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .radio.callTimeSelector {
    border-radius: 1.0416666667vw;
    padding: 3.3333333333vw 1.0416666667vw;
    width: 23.5416666667vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .radio.callTimeSelector .radioText {
  font-size: 16px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .radio.callTimeSelector .radioText {
    font-size: 3.3333333333vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .radio.callTimeSelector .tz-text {
  font-size: 14px;
  color: #bfc0cb;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .radio.callTimeSelector .tz-text {
    font-size: 2.9166666667vw;
    white-space: nowrap;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .radio.callTimeSelector:hover {
  background: #ececec;
}
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio input[type=radio],
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 14px;
  height: 14px;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio input[type=radio],
  .contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio input[type=checkbox] {
    width: 2.9166666667vw;
    height: 2.9166666667vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio .radioText::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 4px solid #999;
  border-radius: 50%;
  background: #fff;
  margin-right: 9px;
  position: relative;
  top: 1.5px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio .radioText::before {
    width: 2.9166666667vw;
    height: 2.9166666667vw;
    margin-right: 1.875vw;
    top: 0.3125vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio input[type=radio]:checked + .radioText,
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio input[type=checkbox]:checked + .radioText {
  color: #000;
}
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio input[type=checkbox]:checked + .radioText::before {
  border-color: #e0102b !important;
  box-shadow: inset 0 0 0 2px #fff !important;
}
.contact-form-section .contact-form-inner .Form .Form-Item .radioWrap .radio input[type=radio]:checked + .radioText::before {
  border-color: #e0102b !important;
  box-shadow: inset 0 0 0 2px #fff !important;
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Textarea {
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  background: #fafafa;
  height: 120px;
  font-size: 16px;
  margin-top: 14px;
  border: 1px solid #ddd;
  line-height: 1.5;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Textarea {
    padding: 2.0833333333vw;
    border-radius: 1.0416666667vw;
    height: 25vw;
    font-size: 3.3333333333vw;
    margin-top: 2.9166666667vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-Item .Form-Item-Textarea::placeholder {
  color: #bfc0cb;
  line-height: 1.5;
}
.contact-form-section .contact-form-inner .Form .Form-Item.formLastIten {
  border-bottom: none !important;
}
.contact-form-section .contact-form-inner .Form .sampleText {
  font-size: 13px;
  border-bottom: 3px solid #f2f2f2;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .sampleText {
    font-size: 2.7083333333vw;
  }
}
.contact-form-section .contact-form-inner .Form .sampleText p:last-child {
  margin-bottom: 25px;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .sampleText p:last-child {
    margin-bottom: 5.2083333333vw;
  }
}
.contact-form-section .contact-form-inner .Form .privacySec {
  width: 100%;
  padding: 18px 71px 17px 10px;
  margin-top: 20px;
  border: 1px solid #444444;
  border-radius: 5px;
  font-size: 12px;
  line-height: 2;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .privacySec {
    padding: 3.75vw 14.7916666667vw 3.5416666667vw 2.0833333333vw;
    margin-top: 4.1666666667vw;
    border-radius: 1.0416666667vw;
    font-size: 2.5vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-submit,
.contact-form-section .contact-form-inner .Form .c-btn {
  position: relative;
  height: 70px;
  width: 346px;
  margin-top: 30px;
  border-radius: 5px;
  background-color: #c39a5c;
  z-index: 1;
  transition: all 350ms cubic-bezier(0.36, 0.1, 0.16, 1);
  color: #fff;
}
.contact-form-section .contact-form-inner .Form .Form-submit:hover,
.contact-form-section .contact-form-inner .Form .c-btn:hover {
  opacity: 0.6;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-submit,
  .contact-form-section .contact-form-inner .Form .c-btn {
    height: 14.5833333333vw;
    width: 72.0833333333vw;
    margin-top: 6.25vw;
    border-radius: 1.0416666667vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-submit p,
.contact-form-section .contact-form-inner .Form .c-btn p {
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
}
@media (max-width: 599px) {
  .contact-form-section .contact-form-inner .Form .Form-submit p,
  .contact-form-section .contact-form-inner .Form .c-btn p {
    font-size: 2.9166666667vw;
  }
}
.contact-form-section .contact-form-inner .Form .Form-submit span,
.contact-form-section .contact-form-inner .Form .c-btn span {
  font-weight: 500;
}

#contactForm span.validation-error {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20px;
  margin-top: 8px;
  background-color: #ffe5e5;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 400;
  color: red;
  line-height: 1;
}

.site-footer {
  background: #2C1C03;
  padding: 65.2px 35px 30px 40px;
}
@media (max-width: 599px) {
  .site-footer {
    padding: 13.5833333333vw 7.2916666667vw 6.25vw 8.3333333333vw;
  }
}
.site-footer .footer-info .tagline {
  font-size: 13px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
@media (max-width: 599px) {
  .site-footer .footer-info .tagline {
    font-size: 2.7083333333vw;
  }
}
.site-footer .footer-info .site-name {
  width: 294px;
  height: 33px;
  margin-top: 17px;
  margin-bottom: 22.5px;
}
@media (max-width: 599px) {
  .site-footer .footer-info .site-name {
    width: 61.25vw;
    height: 6.875vw;
    margin-top: 3.5416666667vw;
    margin-bottom: 4.6875vw;
  }
}
.site-footer .footer-info .company-name,
.site-footer .footer-info .address,
.site-footer .footer-info .license,
.site-footer .footer-info .ceo {
  font-size: 12px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
@media (max-width: 599px) {
  .site-footer .footer-info .company-name,
  .site-footer .footer-info .address,
  .site-footer .footer-info .license,
  .site-footer .footer-info .ceo {
    font-size: 2.5vw;
  }
}
.site-footer .footer-info .fcci-logo {
  width: 281px;
  height: 59px;
  margin-top: 29.1px;
}
@media (max-width: 599px) {
  .site-footer .footer-info .fcci-logo {
    width: 58.5416666667vw;
    height: 12.2916666667vw;
    margin-top: 6.0625vw;
  }
}
.site-footer .footer-social {
  margin-top: 35px;
}
@media (max-width: 599px) {
  .site-footer .footer-social {
    margin-top: 7.2916666667vw;
  }
}
.site-footer .footer-social img {
  width: 47px;
  height: 47px;
  margin-right: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.site-footer .footer-social img:hover {
  transform: scale(1.1);
  opacity: 0.6;
}
.site-footer .footer-social img:hover {
  opacity: 0.6;
}
@media (max-width: 599px) {
  .site-footer .footer-social img {
    width: 9.7916666667vw;
    height: 9.7916666667vw;
    margin-right: 2.0833333333vw;
    display: inline-block;
  }
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 39px 0 0;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
}
@media (max-width: 599px) {
  .site-footer .footer-links {
    margin: 8.125vw 0 0;
    font-size: 2.7083333333vw;
  }
}
.site-footer .footer-links .footer-link-row {
  display: flex;
  margin-bottom: 21px;
}
@media (max-width: 599px) {
  .site-footer .footer-links .footer-link-row {
    margin-bottom: 4.375vw;
  }
}
.site-footer .footer-links .footer-link-row a {
  text-decoration: none;
  font-size: 14px;
  min-width: 170px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}
@media (max-width: 599px) {
  .site-footer .footer-links .footer-link-row a {
    font-size: 2.9166666667vw;
    min-width: 35.4166666667vw;
    gap: 1.4583333333vw;
  }
}
.site-footer .footer-links .footer-link-row a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../img/footer/iconmonstr-arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 599px) {
  .site-footer .footer-links .footer-link-row a::after {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
.site-footer .footer-links .footer-link-row a:hover {
  text-decoration: underline;
}
.site-footer .footer-links .footer-link-row a.right-align {
  margin-left: 170px;
}
@media (max-width: 599px) {
  .site-footer .footer-links .footer-link-row a.right-align {
    margin-left: 35.4166666667vw;
  }
}
.site-footer .copyright {
  font-size: 12px;
  color: #707070;
  margin-top: 42px;
}
@media (max-width: 599px) {
  .site-footer .copyright {
    font-size: 2.5vw;
    margin-top: 8.75vw;
  }
}

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