@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap");
@media screen and (min-width: 769px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
body {
  font-family: "Libre Baskerville", serif, "Noto Serif JP", serif, serif;
  color: #333;
  line-height: 1.7;
  font-size: 0.98rem;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  letter-spacing: 0.05rem;
}

h2 {
  text-align: center;
  letter-spacing: 0.1rem;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3.wave {
  font-size: 1.3rem;
  padding-bottom: 1rem;
  background-image: url("../img/wave-line.svg");
  background-repeat: repeat-x;
  background-size: 420px;
  background-position: bottom;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 1.5rem;
}

.header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

h2.title {
  align-items: center; /* 縦方向の中央揃え */
  font-size: 22px; /* テキストのサイズ（調整可） */
  font-weight: 600;
  color: #333;
  display: flex;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}
h2.title::before {
  /* Font Awesome 6 Free の設定 */
  font-family: "Font Awesome 6 Free";
  content: "\f111"; /* circle のアイコンコード */
  font-weight: 900; /* Solidスタイルに必須 */
  /* スタイル調整 */
  color: #cc9e4b; /* オレンジ色 */
  font-size: 0.7em; /* 文字に対して少し小さめに設定 */
  margin-right: 12px; /* 文字との余白 */
}

@media (max-width: 768px) {
  .offcanvas {
    background-color: #f8f5f1;
  }
  .offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .offcanvas .nav-link {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: bold;
  }
}

.hero {
  height: 100vh;
  display: flex;
  align-items: flex-end;
}
.hero .copy {
  font-family: "Libre Baskerville", serif;
  color: #fff;
  font-size: 40px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-align: left;
}
@media (max-width: 768px) {
  .hero .copy {
    font-size: 24px;
    line-height: 1.5;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-bg .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.hero-bg .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.draw-wipe {
  clip-path: inset(0 100% 0 0);
  animation: wipe-right 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes wipe-right {
  to {
    clip-path: inset(0 0 0 0);
  }
}
.main-v-img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.search-card {
  margin-top: -3rem;
  z-index: 10;
  position: relative;
}
@media (max-width: 768px) {
  .search-card {
    margin-top: 0;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.navbar-nav .nav-link {
  font-size: 15px;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.15rem;
}

.navbar {
  /* 変数の値だけを書き換える */
  --bs-navbar-nav-link-padding-x: 2rem;
}

.btn-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background-image: linear-gradient(90deg, rgb(255, 115, 75), rgb(255, 172, 49));
  color: #fff;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.btn-entry img {
  width: 20px;
  height: auto;
}
.btn-entry {
  transition: all 0.3s ease;
}
.btn-entry:hover {
  box-shadow: 0 5px 5px rgba(255, 115, 75, 0.3);
  filter: brightness(1.05);
}
.btn-entry:hover svg {
  transform: translate(2px, -2px);
}
.btn-entry:active {
  box-shadow: none;
}

.btn-oubo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Montserrat", "Noto Serif JP", serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid #cc9e4b !important;
  cursor: pointer;
  text-decoration: none;
  background-color: white;
  color: #111;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.btn-oubo img {
  width: 20px;
  height: auto;
}
.btn-oubo {
  transition: all 0.3s ease;
}
.btn-oubo:hover {
  background-color: #cc9e4b;
  color: white;
}

.bg-beige {
  background-color: #f8f5f1;
}

#intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.back-text-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 1;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .back-text-wrap {
    font-size: min(15vw, 160px);
    letter-spacing: 0.15em;
  }
}
@media (max-width: 768px) {
  .back-text-wrap {
    font-size: 14vw;
    letter-spacing: 0.05em;
  }
}

.front-content {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #333;
}
.front-content p {
  margin: 0;
  line-height: 2;
}
@media (max-width: 768px) {
  .front-content p br {
    display: none;
  }
}
.front-content .text-kana {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.front-content .text-catch {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .front-content .text-catch {
    font-size: 18px;
  }
}
.front-content .text-desc {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .front-content .text-desc {
    font-size: 14px;
    padding: 0 20px;
  }
}

.search-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: bold;
}
.search-title::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f002";
  margin-right: 0.5rem;
}

.search-box-card {
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
}
@media (min-width: 992px) {
  .search-box-card {
    padding: 3rem;
  }
}
@media (max-width: 768px) {
  .search-box-card {
    border-radius: 30px;
  }
}

.search-item {
  margin-bottom: 3rem;
}
.search-item:last-child {
  margin-bottom: 0;
}

.search-label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.search-label::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f111";
  font-size: 14px;
  color: #cc9e4b;
  margin-right: 0.5rem;
}

.custom-select {
  border: 2px solid #c9c9c9 !important;
  border-radius: 50px !important;
  padding: 10px 25px;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230093d3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 16px 12px;
}
.custom-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(22, 51, 80, 0.1);
  border-color: #163350;
}

/* --- 検索フォームのボタンスタイルまとめ --- */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-item {
  width: calc((100% - 24px) / 4);
}
@media (max-width: 768px) {
  .chip-item {
    width: calc((100% - 8px) / 2);
  }
}
.chip-item input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.chip-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #c9c9c9;
  background-color: transparent;
  border-radius: 50px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 4px;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.chip-item label:hover {
  background-color: rgba(22, 51, 80, 0.1);
  color: #163350;
}
@media (max-width: 768px) {
  .chip-item label {
    font-size: 13px;
  }
}
.chip-item input[type=checkbox]:checked + label {
  background-color: #163350;
  border-color: #163350;
  color: #fff;
}

.job-item input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.job-item label {
  display: block;
  width: 100%;
  border: 2px solid #c9c9c9;
  border-radius: 30px;
  color: #333;
  font-weight: 700;
  padding: 15px;
  text-align: center;
  background-color: #fff;
  transition: background-color 0.2s;
  cursor: pointer;
}
.job-item label:hover {
  background-color: rgba(201, 201, 201, 0.05);
}
.job-item input[type=radio]:checked + label {
  background-color: #163350;
  border-color: #163350;
  color: #fff;
}

.salary-box {
  border: 2px solid #c9c9c9 !important;
  border-radius: 20px !important;
  max-width: 200px;
  padding: 1rem;
}
.salary-box .form-check-input:checked {
  background-color: #163350;
  border-color: #163350;
}
.salary-box .form-check-label {
  font-weight: 700;
}

.btn-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(90deg, #e65c3c, #f0984e);
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  padding: 15px 0;
  width: 100%;
  max-width: 600px;
  border-radius: 50px;
  border: none;
  transition: filter 0.3s;
}
.btn-search-submit:hover {
  color: #fff !important;
  filter: brightness(1.1);
}
.btn-search-submit i {
  padding-right: 1rem;
}

#why {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background-image: url("img/why-back.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  #why {
    padding: 60px 0;
  }
}

.why-back-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  z-index: 2;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .why-back-text {
    font-size: min(10vw, 100px);
    letter-spacing: 0.1em;
  }
}
@media (max-width: 768px) {
  .why-back-text {
    font-size: 15vw;
    letter-spacing: 0.05em;
  }
}

.why-content {
  position: relative;
  z-index: 3;
}
.why-content .why-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .why-content .why-subtitle {
    font-size: 18px;
  }
}
.why-content .why-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .why-content .why-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.why-content .why-description p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .why-content .why-description p {
    font-size: 14px;
    padding: 0 15px;
  }
}

.section-padding {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.reason-box {
  margin-bottom: 3rem;
}
.reason-box h3 {
  color: #cc9e4b;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.reason-box img {
  border-radius: 20px;
}

.reason-desc {
  padding: 1.5rem;
}

.custom-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title-set h3 {
  font-family: "Libre Baskerville", serif;
  color: #f7943e;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
.section-title-set .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.flow-container {
  position: relative;
  padding-top: 20px;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 40px;
}
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background-color: #fce4d2;
  z-index: 1;
}
@media (max-width: 768px) {
  .flow-item {
    flex-direction: column;
    align-items: center;
  }
  .flow-item::after {
    display: none;
  }
}

.flow-circle {
  width: 60px;
  height: 60px;
  background-color: #f7943e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Baskerville", serif;
  font-size: 25px;
  font-weight: 500;
  flex-shrink: 0;
  margin-right: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .flow-circle {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.flow-content-card {
  display: flex;
  background-color: #f2f4f7;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .flow-content-card {
    flex-direction: column;
  }
}

.flow-img {
  width: 40%;
  flex-shrink: 0;
}
.flow-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .flow-img {
    width: 100%;
    height: 200px;
  }
}

.flow-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flow-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #f7943e;
  margin-bottom: 15px;
  letter-spacing: 0.15rem;
}
.flow-text p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

.fade-in-up {
  opacity: 0;
}

.accordion-item {
  margin-bottom: 1rem !important;
  border: none !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  border-radius: 10px !important;
  overflow: hidden;
  background-color: #fff;
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 700;
  color: #333;
  background-color: transparent;
  box-shadow: none !important;
}
.accordion-button .q-label {
  color: #cc9e4b;
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  margin-right: 15px;
  font-weight: 500;
}
.accordion-button::after {
  background-image: none !important;
  content: "+";
  font-family: "Libre Baskerville", serif;
  font-size: 30px;
  font-weight: 400;
  color: #cc9e4b;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #333;
}
.accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}
@media (max-width: 768px) {
  .accordion-button {
    padding: 15px;
  }
  .accordion-button .q-label {
    font-size: 20px;
  }
  .accordion-button .q-text {
    font-size: 14px;
  }
}

.accordion-body {
  display: flex;
  padding: 0 25px 25px;
}
.accordion-body .a-label {
  color: #333;
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  font-weight: 500;
  margin-right: 15px;
  line-height: 1;
}
.accordion-body .a-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}
@media (max-width: 768px) {
  .accordion-body {
    padding: 0 15px 15px;
  }
  .accordion-body .a-label {
    font-size: 20px;
  }
  .accordion-body .a-text {
    font-size: 14px;
  }
}

#banner-links .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.banner-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  text-decoration: none;
}
.banner-card .banner-img {
  width: 100%;
  height: 100%;
}
.banner-card .banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s ease;
}
.banner-card .banner-content {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  color: #fff;
  z-index: 2;
}
.banner-card .banner-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}
.banner-card .banner-title .en {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 30px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
.banner-card .banner-icon {
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s ease;
}
.banner-card:hover .banner-img img {
  filter: brightness(1.7);
}
.banner-card:hover .banner-icon {
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .banner-card .banner-content {
    padding: 20px;
  }
  .banner-card .banner-title {
    font-size: 16px;
  }
  .banner-card .banner-title .en {
    font-size: 20px;
  }
  .banner-card .banner-icon {
    right: 20px;
    bottom: 20px;
  }
}

.fr-banner {
  max-width: 650px;
  height: 200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(img/bana-back.jpg);
  background-size: cover;
  padding: 1.5rem;
  position: relative;
  transition: filter 0.3s ease;
}
.fr-banner:hover {
  filter: brightness(1.1);
}
.fr-banner .title {
  width: 425px;
  margin: auto;
}
.fr-banner .ic-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

#footer {
  background-color: #1d1614;
  color: #fff;
  padding: 50px 0 20px;
}
@media (max-width: 768px) {
  #footer {
    padding: 40px 15px 20px;
  }
}

.subpage {
  margin-top: 6rem;
}

.narrow-container {
  max-width: 1000px;
  margin: 0 auto;
}

.narrow {
  max-width: 700px;
  margin: 0 auto;
}

.result-box {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 900px; /* 画像の比率に合わせて少し調整しました */
  margin: 0 auto 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* 軽い影をつけるとよりカードらしくなります */
  font-family: sans-serif;
}

/* 画像エリア */
.main-visual {
  text-align: center;
  margin-bottom: 2.5rem; /* ドット（ページネーション）が表示されるスペースを確保 */
  max-width: 300px; /* スライダー全体の幅を制限 */
  margin-left: auto; /* 中央寄せ */
  margin-right: auto; /* 中央寄せ */
}
.main-visual img {
  max-width: 300px;
  height: auto;
}
.main-visual .splide__arrows .splide__arrow {
  background: transparent;
  border: none;
  padding: 0;
  width: 2em;
  height: 2em;
  opacity: 1;
}
.main-visual .splide__arrows .splide__arrow svg {
  fill: #000;
  width: 100%;
  height: 100%;
}
.main-visual .splide__arrows .splide__arrow--prev {
  left: -2.5rem;
}
.main-visual .splide__arrows .splide__arrow--next {
  right: -2.5rem;
}
.main-visual .splide__arrows .splide__arrow:disabled {
  opacity: 0.3;
}
.main-visual .splide__pagination {
  bottom: -1.5rem;
}
.main-visual .splide__pagination__page {
  background: #ccc;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border: none;
  opacity: 1;
}
.main-visual .splide__pagination__page.is-active {
  background: #163350;
  transform: scale(1);
}
.main-visual .splide__slide img {
  width: 100%; /* max-width: 300px に対して100%にする */
  height: auto;
  border-radius: 8px;
  display: block;
}

/* タイトルエリア */
.job-id {
  color: #888;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.job-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #cc9e4b; /* オレンジのアンダーライン */
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .job-title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

/* リスト部分 */
.job-details {
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}
.detail-row:last-child {
  border-bottom: none;
}
.detail-row dt {
  flex: 0 0 140px; /* 見出しの幅を固定 */
  font-weight: bold;
  display: flex;
  align-items: center;
}
.detail-row dt i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
  color: #555;
}
.detail-row dd {
  flex: 1;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}
.detail-row dd small {
  color: #666;
  font-size: 0.85rem;
}
.detail-row {
  /* スマホ向け：縦並びに変更 */
}
@media (max-width: 768px) {
  .detail-row {
    flex-direction: column;
  }
  .detail-row dt {
    width: 100%;
    margin-bottom: 0.5rem;
    flex: 0 0 auto;
  }
  .detail-row dd {
    width: 100%;
    padding-left: 0;
  }
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags .tag {
  background-color: #163350;
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  display: inline-block;
}

strong {
  font-weight: bold;
  color: #000;
}

/* ボタンエリア */
.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
  justify-content: center;
}
.action-buttons .btn {
  width: 100%;
}
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
  }
}

.Pagination {
  display: flex;
  align-items: center;
  list-style: none;
  font-family: "Libre Baskerville", serif;
  justify-content: center;
  padding-inline-start: 0;
}

.Pagination-Item-Link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  color: #111;
  font-weight: bold;
  transition: all 0.15s linear;
  text-decoration: none;
}

.Pagination-Item-Link-Icon {
  width: 20px;
}

.Pagination-Item-Link.isActive {
  background: #111;
  color: #fff;
  pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
  background: #111;
  color: #fff;
}

.Pagination > * + * {
  margin-left: 8px;
}

.charge-box img {
  border-radius: 20px;
}

.charge-name {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 2rem;
  letter-spacing: 0.2rem;
}
.charge-name span {
  font-size: 15px;
  display: block;
  letter-spacing: 0.05rem;
}
.charge-name .tag {
  background-color: #cc9e4b;
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.staff-area {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 768px) {
  .staff-area {
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.staff-area a {
  text-decoration: none;
  color: #525252;
  transition: 0.3s;
}
.staff-area a:hover {
  color: black;
}
.staff-area a:hover img {
  filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.3));
}
.staff-area a img {
  border-radius: 20px;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.staff-name {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 2rem;
  letter-spacing: 0.4rem;
}
@media (max-width: 768px) {
  .staff-name {
    font-size: 20px;
    letter-spacing: 0.2rem;
  }
}
.staff-name span {
  font-size: 15px;
  display: block;
  letter-spacing: 0.05rem;
}
@media (max-width: 768px) {
  .staff-name span {
    font-size: 13px;
    letter-spacing: 0;
  }
}
.staff-name .tag {
  background-color: #cc9e4b;
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.qa-area .q {
  font-weight: bold;
}
.qa-area {
  margin-bottom: 1rem;
}

.slider-container {
  padding: 2rem 4rem;
  margin-bottom: 5rem;
}

.multislide .splide__slide {
  height: auto;
}
.multislide .job-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  transition: opacity 0.3s;
}
.multislide .job-card-link:hover {
  opacity: 0.8;
}
.multislide .job-card .card-img {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
}
.multislide .job-card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.multislide .job-card .card-text {
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.multislide .splide__arrow {
  background: transparent;
}
.multislide .splide__arrow svg {
  fill: #000;
  width: 2.5em;
  height: 2.5em;
}
.multislide .splide__arrow--prev {
  left: -3rem;
}
.multislide .splide__arrow--next {
  right: -3rem;
}
.multislide .splide__pagination {
  bottom: -2rem;
}
.multislide .splide__pagination__page.is-active {
  background: #ff9f22;
}

.entry-job {
  font-size: 1.2rem;
}

.entry-form .form-label {
  font-weight: bold;
  font-size: 0.9rem;
}
.entry-form .form-control {
  background-color: #fff;
  border: 1px solid #ced4da;
  padding: 0.75rem;
}
.entry-form .form-control::-moz-placeholder {
  color: #9e9e9f;
}
.entry-form .form-control::placeholder {
  color: #9e9e9f;
}
.entry-form .form-control:focus {
  border-color: #e67e22;
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
}
.entry-form .btn-orange {
  background: linear-gradient(to right, #e67e22, #f39c12);
  border: none;
  font-size: 1.1rem;
  max-width: 400px;
  transition: opacity 0.3s;
}
.entry-form .btn-orange:hover {
  opacity: 0.9;
}
.entry-form .accordion-header .toggle-icon {
  display: inline-block;
  transition: transform 0.3s;
}
.entry-form .accordion-header[aria-expanded=true] .toggle-icon {
  transform: rotate(-45deg);
}
.entry-form .accordion-header::before, .entry-form .accordion-header::after {
  content: "";
  display: block;
}

.toggle-icon {
  border-style: solid;
  border-width: 2px 2px 0 0;
  display: inline-block;
  height: 8px;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  transform: rotate(135deg);
  vertical-align: middle;
  width: 8px;
}

#policy_msg h5 {
  font-size: 0.9rem;
}
#policy_msg p {
  font-size: 13px;
}

.company-info .custom-table {
  border-top: 1px solid #dee2e6;
}
.company-info .custom-table tr {
  border-bottom: 1px solid #dee2e6;
}
.company-info .custom-table th {
  width: 30%;
  background-color: transparent;
  font-weight: bold;
  padding: 1.25rem 0.5rem;
  border: none;
  vertical-align: middle;
}
.company-info .custom-table td {
  background-color: transparent;
  padding: 1.25rem 0.5rem;
  border: none;
  vertical-align: middle;
}

.company-visuals img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .header.fixed-top {
    position: absolute !important;
  }
  .navbar-toggler {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1035;
    background-color: #415970;
    padding: 10px;
    border-radius: 6px;
  }
  .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}
#service-img {
  background-image: url("img/service-back.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  padding: 2rem;
  height: 500px;
  margin-bottom: 3rem;
}
#service-img img {
  margin-bottom: 1rem;
}

dt {
  font-size: 1.4rem;
  font-weight: 400;
}

dd {
  padding-left: 1.5rem;
}

#greeting {
  background: url(img/greeting-bg.jpg) no-repeat center center;
  background-size: cover;
  background-position: center bottom;
}

.tate-title {
  font-size: 4rem;
  letter-spacing: 0.5rem;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .tate-title {
    font-size: 2rem;
  }
}
.tate-title::before {
  content: "";
  display: block;
  width: 6px;
  height: 342px;
  background-image: url(img/wave-tate.png);
  background-position: center;
  background-size: contain;
}

.greeting-content {
  margin: 5rem;
}
@media (max-width: 768px) {
  .greeting-content {
    margin: 1rem;
  }
}

.sign {
  text-align: right;
  font-size: 1rem;
  letter-spacing: 0.2rem;
}

.table > :not(caption) > * > * {
  padding: 1.5rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .table > :not(caption) > * > * {
    padding: 1rem;
    border-top: none;
  }
}

.table th {
  white-space: nowrap;
  color: #163350;
  font-weight: bold;
}
@media (max-width: 768px) {
  .table th {
    border-bottom: 0px;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .table th,
  .table td {
    display: block;
    width: 100%;
  }
}

form dt {
  font-size: 1rem;
}

form#mail_form input[type=button] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 60px;
  background: #163350;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  border: 0;
  transition: all 0.3s ease;
}

form#mail_form input[type=button]:hover {
  filter: brightness(1.6);
}

#footer {
  position: relative;
  background-image: linear-gradient(to bottom, #305882, #212529);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 150px;
  color: #ffffff;
}
#footer .custom-shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
#footer .custom-shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}
#footer .custom-shape-divider-top .shape-fill {
  fill: #f8f5f1;
}
#footer .text-center {
  text-align: center;
}
#footer .footer-logo img {
  margin-bottom: 15px;
}
#footer .footer-mail {
  margin-bottom: 40px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
#footer .footer-copyright {
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-close {
  --bs-btn-close-color: #fff;
  filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas {
  max-width: 90%;
  background-color: #163350;
}
@media (max-width: 768px) {
  .offcanvas .nav-link {
    color: white;
  }
}

@media (max-width: 991.98px) {
  .instagram-icon {
    filter: invert(1);
  }
}
.instagram-icon-footer {
  filter: invert(1);
}/*# sourceMappingURL=mtm.css.map */