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

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd,
ul, ol {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

tbody {
  display: block;
}
@media (min-width: 768px) {
  tbody {
    display: table-row-group;
  }
}

th,
td {
  text-align: left;
  vertical-align: top;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

input[type=submit] {
  cursor: pointer;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.45;
  font-size: inherit;
}

.sp {
  display: block !important;
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.sp-l {
  display: block !important;
}
@media (min-width: 1280px) {
  .sp-l {
    display: none !important;
  }
}

.pc-l {
  display: none !important;
}
@media (min-width: 1280px) {
  .pc-l {
    display: block !important;
  }
}

body {
  background-color: #FFFFFF;
}

.base_inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .base_inner {
    max-width: 1240px;
  }
}

.section {
  position: relative;
}

.pad {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.pad_top {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .pad_top {
    padding-top: 80px;
  }
}

.pad_top_lg {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .pad_top_lg {
    padding-top: 96px;
    padding-bottom: 80px;
  }
}

.pad_btm {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .pad_btm {
    padding-bottom: 80px;
  }
}

.pad_s {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .pad_s {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.mb {
  margin-bottom: 32px;
}

.section-header {
  margin-bottom: 32px;
}

.section-header-center {
  margin-bottom: 32px;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .section-header-center {
    margin-top: 60px;
  }
}

.section-label {
  font-family: "Marcellus", serif;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 500;
  color: #18439A;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.section-header-center .section-label::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background-color: #18439A;
}
@media (min-width: 768px) {
  .section-header-center .section-label::before {
    top: -60px;
    height: 60px;
  }
}
.section-label--small {
  font-size: 1.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #201F26;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #201F26;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
}
.section-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #4B6DFB;
  margin: 12px auto 32px;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: flex;
}

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.section-title-group {
  margin-bottom: 32px;
}
.section-title-group > * {
  margin-bottom: 4px;
}
.section-title-group > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-title-group > * {
    margin-bottom: 6px;
  }
}

.section-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: #201F26;
}
@media (min-width: 768px) {
  .section-title-jp {
    line-height: 1.2;
  }
}
.section-title-jp--white {
  color: #FFFFFF;
}
.section-title-jp--gray {
  color: #333333;
}

.section-title-en {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #18439A;
  margin-bottom: 0;
}
.section-title-en--white {
  color: #FFFFFF;
}
.section-title-en--accent {
  color: #B7A66D;
}

.block-title-group {
  margin-bottom: 32px;
}
.block-title-group > * {
  margin-bottom: 4px;
}
.block-title-group > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .block-title-group > * {
    margin-bottom: 6px;
  }
}

.block-title-en {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #B7A66D;
  margin-bottom: 0;
}

.block-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: #B7A66D;
  margin: 0;
}
@media (min-width: 768px) {
  .block-title-jp {
    line-height: 1.2;
  }
}

.block-catch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #B7A66D;
  margin: 0 0 8px 0;
}
.block-catch--white {
  color: #FFFFFF;
}

.section-bg-dark {
  background-color: #2C3E53;
}

.section-bg-gray {
  background-color: #F2F2F2;
}

.section-subtitle-group {
  margin-bottom: 12px;
}
.section-subtitle-group > * {
  margin-bottom: 2px;
}
.section-subtitle-group > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-subtitle-group {
    margin-bottom: 12px;
  }
}

.section-subtitle-en {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #18439A;
}

.section-subtitle-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #201F26;
}
@media (min-width: 768px) {
  .section-subtitle-jp {
    line-height: 1.2;
  }
}

.lead {
  margin-bottom: 32px;
}

.lead__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 2;
  color: #B7A66D;
}

.lead__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #B7A66D;
  margin: 0;
}

.lead__catch--dark,
.lead__title--dark {
  color: #201F26;
}

.lead__catch--white,
.lead__title--white {
  color: #FFFFFF;
}

.lead--n .lead__catch,
.lead--n .lead__title {
  color: #49649E;
}

.split > .split__media {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .split {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
  .split > .split__media {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .split__content {
    flex: 1 1 0%;
    order: 1;
    max-width: 561px;
    min-width: 0;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .split__media {
    flex: 1 1 0%;
    order: 2;
    max-width: 612px;
    min-width: 0;
    width: 100%;
  }
  .split__media > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .split__media img,
  .split__media video,
  .split__media iframe {
    max-width: 100%;
    width: 100%;
    display: block;
  }
}

.split:has(> .split__media.bg-band-right) > .split__content {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .split--reverse .split__content {
    order: 2;
    max-width: 561px;
  }
  .split--reverse .split__media {
    order: 1;
    max-width: 612px;
  }
}

.split__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.diagram-viewer__media {
  text-align: center;
}

.diagram-viewer__zoom-button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  margin: 12px auto 0;
  display: inline-flex;
  justify-content: center;
}

.diagram-viewer__zoom-label {
  position: relative;
  padding-left: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #201F26;
}

.diagram-viewer__zoom-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("../images/common/ico-search.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.spa-pipe__items {
  margin-top: 128px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 768px) {
  .spa-pipe__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.spa-pipe-item:nth-child(odd) {
  background-color: #F2F2F2;
}

.spa-pipe-item:nth-child(even) {
  background-color: #FFFFFF;
}

.spa-pipe-item__image {
  margin-bottom: 12px;
}

.spa-pipe-item__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.spa-pipe-item__body {
  padding: 30px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .spa-pipe-item__body {
    padding: 30px 30px;
  }
}

.spa-pipe-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #201F26;
  margin: 0 0 8px 0;
  padding-bottom: 8px;
  border-bottom: 1px dashed #333333;
}

.spa-pipe-item__text {
  font-weight: 400;
  color: #201F26;
  margin: 0;
  text-align: left;
}

.slant-bg-1 {
  position: relative;
  padding-top: 10vw;
}
.slant-bg-1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #F2F2F2;
  clip-path: polygon(0 0, 100% 8vw, 100% 100%, 0 100%);
}
.slant-bg-1 > * {
  position: relative;
  z-index: 1;
}

.slant-bg-2 {
  position: relative;
  padding-top: 10vw;
}
.slant-bg-2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2C3E53;
  clip-path: polygon(0 0, 100% 8vw, 100% 100%, 0 100%);
}
.slant-bg-2 > * {
  position: relative;
  z-index: 1;
}

.slant-bg-frame {
  position: relative;
  padding-top: 10vw;
  padding-bottom: 10vw;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .slant-bg-frame {
    padding-top: calc(10vw + 30px);
    padding-bottom: calc(10vw - 120px);
    margin-bottom: 80px;
  }
}
.slant-bg-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #F2F2F2;
  clip-path: polygon(0 0, 100% 8vw, 100% 100%, 0 calc(100% - 8vw));
}
.slant-bg-frame > * {
  position: relative;
  z-index: 1;
}

.slant-bg-frame-2 {
  position: relative;
  padding-top: 10vw;
  padding-bottom: 10vw;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .slant-bg-frame-2 {
    padding-top: calc(10vw + 30px);
    padding-bottom: calc(10vw - 30px);
    margin-bottom: 80px;
  }
}
.slant-bg-frame-2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2C3E53;
  clip-path: polygon(0 0, 100% 8vw, 100% 100%, 0 calc(100% - 8vw));
}
.slant-bg-frame-2 > * {
  position: relative;
  z-index: 1;
}

.slant-band-gray {
  position: relative;
  background-color: transparent;
}
.slant-band-gray::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 37%;
  height: 60%;
  background-color: #F2F2F2;
  clip-path: polygon(0 12vw, 100% 0, 100% calc(100% - 12vw), 0 100%);
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .slant-band-gray::before {
    top: 38%;
    height: 50%;
  }
}
.slant-band-gray > * {
  position: relative;
  z-index: 1;
}

.bg-band-right {
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .bg-band-right::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(50vw + 40px + 50px);
    right: calc((1240px - 100vw) / 2 - 40px - 50px);
    z-index: 0;
    pointer-events: none;
    background-color: #F2F2F2;
    transform: translateY(50px);
  }
}
.bg-band-right > * {
  position: relative;
  z-index: 1;
}

.main > .section.page-title {
  padding-top: calc(50px + 8vw);
  padding-bottom: 20px;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .main > .section.page-title {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .main > .section.page-title {
    padding-top: calc(10px + 8vw);
    margin-bottom: 60px;
  }
}
.main > .section.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2C3E53;
  clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 100%);
}
.main > .section.page-title > * {
  position: relative;
  z-index: 1;
}

.main .page-title .label-en {
  position: absolute;
  top: -15px;
  right: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(4.5rem, 12vw, 8rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) {
  .main .page-title .label-en {
    top: 5px;
  }
}

.main .page-title .page-title__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.main .page-title .page-title__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.6rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.main .page-title .page-title__pad {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .main .page-title .page-title__pad {
    padding-top: 40px;
    padding-bottom: 18px;
  }
}

.main .page-title .page-title__heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 0.5em;
  margin-bottom: 12px;
}

.main .page-title .page-title__line {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  box-sizing: border-box;
  gap: 0;
}
.main .page-title .page-title__line::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  width: 100vw;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.22);
  z-index: 0;
}
.main .page-title .page-title__line > span:first-child {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 48px;
  height: 4px;
  background-color: #B7A66D;
}
.main .page-title .page-title__line > span:last-child {
  flex: 1;
  min-width: 0;
  height: 1px;
  pointer-events: none;
}

.gallery-row {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.gallery-row__item {
  flex: 1;
  min-width: 0;
}

.gallery-row__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.triple-media-gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin: 0;
  margin-top: 30px;
  padding: 0;
}
@media (min-width: 768px) {
  .triple-media-gallery {
    gap: 40px;
    margin-top: 50px;
  }
}

.triple-media-gallery__item {
  flex: 1 1 0;
  min-width: 0;
}

.triple-media-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.spec-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 32px 0 0 0;
  padding: 0;
}
@media (min-width: 768px) {
  .spec-card-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 60px;
  }
}

.spec-card-grid__item {
  min-width: 0;
}

.spec-card-grid--gray .spec-card-grid__item {
  background-color: #F2F2F2;
}

.spec-card-grid--white .spec-card-grid__item {
  background-color: #FFFFFF;
}

.spec-card-grid__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin: 0;
}

.spec-card-grid__body {
  padding: 32px;
}

.spec-card-grid__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #201F26;
  margin: 0 0 8px 0;
}
.spec-card-grid__title:first-child {
  margin-top: 0;
}

.spec-card-grid__line {
  border: none;
  border-bottom: 1px dotted #D9D9D9;
  margin: 0 0 12px 0;
}

.spec-card-grid__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: #201F26;
  margin: 0;
}

.spec-card-grid__table th,
.spec-card-grid__table td {
  padding: 4px 0;
  vertical-align: top;
  text-align: left;
}

.spec-card-grid__table th {
  font-weight: 400;
  width: 140px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .spec-card-grid__table th {
    width: 200px;
  }
}

.spec-card-grid__table td {
  font-weight: 400;
}

.photo-slider {
  width: 100%;
}

.photo-slider__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.photo-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.photo-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.photo-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (min-width: 768px) {
  .photo-slider__arrow {
    width: 50px;
    height: 50px;
  }
}

.photo-slider__arrow--prev {
  left: 12px;
  right: auto;
}
@media (min-width: 768px) {
  .photo-slider__arrow--prev {
    left: 24px;
    right: auto;
  }
}

.photo-slider__arrow--next {
  right: 12px;
  left: auto;
}
@media (min-width: 768px) {
  .photo-slider__arrow--next {
    right: 24px;
    left: auto;
  }
}

.photo-slider__arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
}

.photo-slider__arrow--prev::before {
  transform: rotate(-135deg) translateX(-2px);
}

.photo-slider__arrow--next::before {
  transform: rotate(45deg) translateX(-2px);
}

.profile-table__wrap {
  background-color: #FFFFFF;
  padding: 32px 32px 64px 32px;
}
@media (min-width: 768px) {
  .profile-table__wrap {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 64px 64px 64px;
  }
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #201F26;
  display: block;
}
@media (min-width: 768px) {
  .profile-table {
    display: table;
  }
}

.profile-table__row {
  border-bottom: 1px solid #C1C1C1;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .profile-table__row {
    display: table-row;
    width: auto;
    margin-bottom: 0;
  }
}

.profile-table__th {
  font-size: 1.5rem;
  font-weight: 700;
  color: #201F26;
  padding: 12px 32px 6px 32px;
  text-align: left;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .profile-table__th {
    width: 200px;
    display: table-cell;
    padding: 20px 20px 20px 32px;
    font-weight: 400;
    white-space: nowrap;
  }
}

.profile-table__td {
  padding: 12px 32px;
  display: block;
  width: 100%;
  padding: 6px 32px 12px 32px;
}
@media (min-width: 768px) {
  .profile-table__td {
    width: auto;
    display: table-cell;
    padding: 20px;
  }
}
.profile-table__td a {
  color: inherit;
}

.profile-table__tel-pc {
  display: none;
}
@media (min-width: 768px) {
  .profile-table__tel-pc {
    display: inline;
  }
}

@media (min-width: 768px) {
  .profile-table__tel-sp {
    display: none;
  }
}

.profile-table__list {
  margin: 0;
  padding-left: 1.2em;
  list-style-type: disc;
}
.profile-table__list li {
  margin-bottom: 8px;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}

.label,
.label--slant-split {
  position: relative;
}

.main > .section.label-set-plain > .label > .label-en,
.main > .section.label-set-plain > .label--slant-split > .label-en {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(4.8rem, 12vw, 10rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(51, 51, 51, 0.12);
  pointer-events: none;
  user-select: none;
}

.main > .section.label-below-title > .label > .label-en,
.main > .section.label-below-title > .label--slant-split > .label-en {
  position: absolute;
  top: -15px;
  right: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(4.8rem, 12vw, 10rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(51, 51, 51, 0.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .main > .section.label-below-title > .label > .label-en,
  .main > .section.label-below-title > .label--slant-split > .label-en {
    top: -30px;
  }
}

.main > .section.label-below-title > .label {
  padding-top: clamp(3.6rem, 10vw, 7.2rem);
}
@media (min-width: 768px) {
  .main > .section.label-below-title > .label {
    padding-top: clamp(4rem, 8vw, 8rem);
  }
}

.main > .section.label-set-slant-light > .label > .label-en,
.main > .section.label-set-slant-light > .label--slant-split > .label-en {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(4.8rem, 12vw, 10rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(51, 51, 51, 0.12);
  pointer-events: none;
  user-select: none;
}

.main > .section.label-set-slant-light > .label--slant-split > .label-en {
  top: -15px;
}
@media (min-width: 768px) {
  .main > .section.label-set-slant-light > .label--slant-split > .label-en {
    top: -40px;
  }
}

.main > .section.label-set-slant-dark > .label > .label-en,
.main > .section.label-set-slant-dark > .label--slant-split > .label-en {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(4.8rem, 12vw, 10rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
}

.main > .section.label-set-slant-dark > .label--slant-split > .label-en {
  top: -15px;
}
@media (min-width: 768px) {
  .main > .section.label-set-slant-dark > .label--slant-split > .label-en {
    top: -40px;
  }
}

.btn {
  display: inline-block;
  padding: 14px 60px;
  background-color: #4B6DFB;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 100vh;
}
.btn:hover {
  opacity: 0.9;
}
@media (min-width: 768px) {
  .btn {
    padding: 17px 108px;
    font-size: 1.6rem;
  }
}

.btn-primary {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 400px;
  width: 100%;
  padding: 15px 44px 15px 30px;
  background-color: #18439A;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}
.btn-primary:hover {
  background-color: #000;
  opacity: 1;
}
.btn-primary::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .btn-primary:hover::after {
    transform: translateY(-50%) translateX(4px);
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background-color: transparent;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #FFFFFF;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: #FFFFFF;
  color: #18439A;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1000;
  height: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 1024px) {
  .header {
    height: 120px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .header__inner {
    display: block;
  }
}
@media (min-width: 1024px) {
  .header__pc-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }
  .header__pc-top::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.12);
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) {
  .header__pc-bottom {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
  }
}
.header__logo-wrapper {
  flex-shrink: 0;
  padding-left: 20px;
}
.header__logo {
  height: 30px;
  width: auto;
  display: block;
  transform: translateY(1px);
}
@media (min-width: 1024px) {
  .header__logo {
    height: 44px;
  }
}
.header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .header__right {
    display: block;
  }
  .header__right .header__top {
    margin-bottom: 8px;
  }
}
.header__top {
  display: none;
}
@media (min-width: 1024px) {
  .header__top {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 0;
    flex-wrap: nowrap;
  }
}
.header__top-links {
  display: flex;
  align-items: stretch;
  gap: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #505050;
  justify-content: flex-end;
}
.header__top-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media (min-width: 1024px) {
  .header__top-link {
    height: 60px;
  }
}
.header__top-link:hover {
  color: #18439A;
  opacity: 1;
}
.header__top-divider {
  color: #505050;
}
@media (min-width: 1024px) {
  .header__top-link--company {
    background-color: #4B6DFB;
    color: #FFFFFF;
  }
  .header__top-link--company:hover {
    background-color: #333333;
    color: #FFFFFF;
  }
}
@media (min-width: 1024px) {
  .header__top-link--recruit {
    background-color: #244CF3;
    color: #FFFFFF;
  }
  .header__top-link--recruit:hover {
    background-color: #333333;
    color: #FFFFFF;
  }
}
@media (min-width: 1024px) {
  .header__top-link--contact {
    background-color: #18439A;
    color: #FFFFFF;
  }
  .header__top-link--contact:hover {
    background-color: #333333;
    color: #FFFFFF;
  }
}
.header__nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  padding: 32px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.header__nav a {
  display: block;
  margin-bottom: 8px;
}
.header__nav a:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    transform: translateX(0);
    padding: 0;
    background-color: transparent;
  }
  .header__nav a {
    display: inline-block;
    margin-bottom: 0;
  }
}
.header__nav.is-open {
  transform: translateX(0);
}
.header__nav-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.448;
  color: #505050;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid #C1C1C1;
  transition: color 0.3s ease;
  position: relative;
}
@media (min-width: 1024px) {
  .header__nav-item {
    padding: 8px 0;
    border-bottom: none;
  }
}
.header__nav-item:hover {
  color: #18439A;
}
@media (min-width: 1024px) {
  .header__nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #18439A;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease-out;
  }
  .header__nav-item:hover::after {
    transform: scaleX(1);
  }
}
.header__buttons {
  display: none;
}
@media (min-width: 1024px) {
  .header__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
}
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #18439A;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.448;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header__btn:hover {
  opacity: 0.8;
  transform: none;
}
.header__hamburger {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  width: 100%;
  height: 3px;
  background-color: #333333;
  transition: all 0.3s ease;
  position: absolute;
}
.header__hamburger span:nth-child(1) {
  top: 6px;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  bottom: 6px;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.footer {
  position: relative;
  background-color: #2a3142;
  color: #FFFFFF;
  padding: 64px 20px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-color: #2a3142;
  background-image: url("../images/common/ft-bg-sp.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (min-width: 768px) {
  .footer__bg {
    background-image: url("../images/common/ft-bg.webp");
  }
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}
.footer__inner > * + * {
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .footer__inner > * + * {
    margin-top: 64px;
  }
}

@media (min-width: 1024px) {
  .footer__contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
  }
}

.footer__contact-head {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .footer__contact-head {
    margin-bottom: 0;
  }
}

.footer__contact-en {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 4px 0;
}

.footer__contact-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.footer__contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .footer__contact-methods {
    flex-direction: row;
    gap: 48px;
    flex-shrink: 0;
  }
}

.footer__contact-methods > .footer__contact-item + .footer__contact-item {
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .footer__contact-methods > .footer__contact-item + .footer__contact-item {
    margin-top: 0;
  }
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__contact-icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}
.footer__contact-icon--mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.footer__contact-body > * + * {
  margin-top: 8px;
}

.footer__contact-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
}

.footer__contact-tel {
  margin: 0;
}
.footer__contact-tel a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
}
.footer__contact-tel a:hover {
  opacity: 0.9;
}

.footer__contact-hours {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__contact-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #FFFFFF;
  color: #201F26;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}
.footer__contact-btn:hover {
  opacity: 0.9;
}

.footer__main {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 1024px) {
  .footer__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 128px;
    padding-top: 48px;
  }
}

.footer__company {
  margin-bottom: 32px;
}
.footer__company > * + * {
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .footer__company {
    flex: 0 0 360px;
    margin-bottom: 0;
  }
}

.footer__company-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0 0 12px 0;
}

.footer__address,
.footer__tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}

.footer__tel a {
  display: inline;
}

.footer__tel-number {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin-left: 2px;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 64px;
}
@media (min-width: 1024px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    flex: 1;
    max-width: 550px;
    margin-left: auto;
  }
}

.footer__nav-column {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 12px;
}
@media (min-width: 1024px) {
  .footer__nav-column {
    display: block;
  }
  .footer__nav-column li + li {
    margin-top: 12px;
  }
}

.footer__nav-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__nav-item:hover {
  color: #B7A66D;
}

.footer__affiliations {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 1024px) {
  .footer__affiliations {
    padding-top: 64px;
  }
}

.footer__affiliations-head {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__affiliations-head {
    margin-bottom: 64px;
  }
}

.footer__affiliations-title-en {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 4px 0;
}

.footer__affiliations-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.footer__affiliations-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .footer__affiliations-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.footer__affiliation-item {
  border-radius: 4px;
  text-align: center;
}

.footer__affiliation-link {
  display: block;
  padding: 12px 32px calc(12px + 2px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  color: inherit;
  text-decoration: none;
}
.footer__affiliation-link:hover {
  color: inherit;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.12);
}
.footer__affiliation-link > * + * {
  margin-top: 2px;
}
@media (min-width: 768px) {
  .footer__affiliation-link > * + * {
    margin-top: 4px;
  }
}

.footer__affiliation-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

.footer__affiliation-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  display: block;
}

.mv {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin-top: 0;
}
@media (min-width: 768px) {
  .mv {
    height: 620px;
  }
}
.mv .base_inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mv__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #201F26;
  background-image: url("../images/home/slide01.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.mv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 2;
}

.mv__content {
  position: relative;
  z-index: 3;
  text-align: left;
}
@media (min-width: 768px) {
  .mv__content {
    margin-top: 75px;
  }
}

.mv__subtitle {
  font-family: "Marcellus", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.mv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.45;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .mv__title {
    line-height: 1.448;
  }
}

.equip {
  position: relative;
  background-color: transparent;
}
.equip::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 60%;
  background-color: #F2F2F2;
  clip-path: polygon(0 12vw, 100% 0, 100% calc(100% - 12vw), 0 100%);
  transform: translateY(-50%);
  z-index: -1;
}
@media (min-width: 768px) {
  .equip::before {
    top: 53%;
    height: 50%;
  }
}

@media (min-width: 768px) {
  .equip__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 128px;
  }
}

.equip__text {
  margin-top: 64px;
}
@media (min-width: 768px) {
  .equip__text {
    margin-top: 0;
  }
}

.equip__media {
  flex: 0 0 auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .equip__media {
    max-width: 600px;
    margin-left: 50px;
  }
}

.equip__media-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 352/626;
}

.equip__media-inner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.equip__media-inner iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .equip__text {
    flex: 1;
  }
}

.equip__description {
  font-weight: 400;
  color: #201F26;
  margin-bottom: 32px;
}

.equip__button {
  margin-top: 12px;
}

.equip__thumbs {
  margin-top: 64px;
}
.equip__thumbs > * + * {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .equip__thumbs {
    display: flex;
  }
  .equip__thumbs > * + * {
    margin-top: 0;
  }
}

.equip__thumb {
  display: block;
  text-decoration: none;
  color: inherit;
}

.equip__thumb-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.equip__thumb-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.equip__thumb-title {
  position: absolute;
  left: 15px;
  bottom: 15px;
  margin: 0;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .equip__thumb-title {
    left: 40px;
    bottom: 40px;
  }
}

.equip__thumb-title-en {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.equip__thumb-title-jp {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .excavation .split {
    align-items: stretch;
  }
  .excavation .split__media {
    min-height: 0;
    display: flex;
  }
  .excavation .split__img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
  }
}

.excavation__text {
  font-weight: 400;
  color: #333333;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .excavation__text {
    margin-bottom: 64px;
  }
}

.excavation__buttons > * {
  display: block;
}
.excavation__buttons > * + * {
  margin-top: 12px;
}

.service-top {
  position: relative;
  background-color: #F2F2F2;
  /* overflow は __body で指定（帯が上にはみ出すため） */
}
.service-top::before {
  content: "";
  position: absolute;
  top: calc(-12vw - 50px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #2C3E53;
  clip-path: polygon(0 18vw, 100% 0, 100% 72vw, 0 90vw);
}
@media (min-width: 768px) {
  .service-top::before {
    top: calc(-18vw - 150px);
    clip-path: polygon(0 18vw, 100% 0, 100% calc(36vw - 50px), 0 calc(54vw - 50px));
  }
}
.service-top > * {
  position: relative;
  z-index: 1;
}

.service-top .section-title-en,
.service-top .section-title-jp {
  color: #FFFFFF;
}

.service-top .section-title-dot {
  background-color: #FFFFFF;
}

.service-top .label-en {
  opacity: 0.04;
}

.service-top__body {
  overflow-x: hidden;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .service-top__body {
    padding-left: max(20px, (100vw - 1240px) / 2 + 20px);
    padding-right: 0;
  }
}

.service-top__content {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .service-top__content {
    margin-bottom: 64px;
  }
}

.service-top__slider {
  position: relative;
  margin-left: calc(-1 * 20px);
  margin-right: calc(-1 * 20px);
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .service-top__slider {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 64px;
    overflow-x: hidden;
  }
}

.service-top__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.service-top__arrow:hover {
  opacity: 0.9;
}
.service-top__arrow::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #201F26;
  border-right: 2px solid #201F26;
}
@media (min-width: 768px) {
  .service-top__arrow {
    width: 48px;
    height: 48px;
    box-shadow: none;
  }
  .service-top__arrow::after {
    width: 10px;
    height: 10px;
  }
}

.service-top__arrow--prev {
  left: 12px;
}
.service-top__arrow--prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}
@media (min-width: 768px) {
  .service-top__arrow--prev {
    left: 32px;
  }
  .service-top__arrow--prev::after {
    margin-left: 4px;
  }
}

.service-top__arrow--next {
  right: 12px;
}
.service-top__arrow--next::after {
  transform: rotate(45deg);
  margin-right: 3px;
}
@media (min-width: 768px) {
  .service-top__arrow--next {
    right: 32px;
  }
  .service-top__arrow--next::after {
    margin-right: 4px;
  }
}

.service-top__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.service-top__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .service-top__track {
    gap: 32px;
    scroll-snap-type: none;
  }
}

.service-top__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 65%;
  max-width: 250px;
}
@media (min-width: 768px) {
  .service-top__item {
    scroll-snap-align: none;
    width: calc(26% - 32px * 2.25 / 4);
    max-width: none;
  }
}

.service-top__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-top__item-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: calc(58% + 72px);
  overflow: hidden;
}
@media (min-width: 768px) {
  .service-top__item-image {
    padding-bottom: calc(80% + 80px);
  }
}

.service-top__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-top__item-title {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 500;
  line-height: 0.83;
  color: #333333;
  text-align: left;
}
@media (min-width: 768px) {
  .service-top__item-title {
    margin-top: 20px;
  }
}

.service-top__item-num {
  display: inline-flex;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}
.service-top__item-num::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.45em;
  background-color: #333333;
  margin-left: 12px;
  margin-right: 12px;
  align-self: center;
}

.drill-video {
  background-color: #F2F2F2;
}

.drill-video .label-en {
  opacity: 0.04;
}

@media (min-width: 768px) {
  .drill-video__body .drill-video__content {
    position: relative;
    z-index: 0;
    margin-top: 170px;
  }
  .drill-video__body .drill-video__media {
    position: relative;
    z-index: 1;
  }
  .drill-video__body .drill-video__box {
    margin-right: -200px;
    padding-right: 200px;
  }
}

.drill-video__box {
  background-color: #FFFFFF;
  padding: 32px;
  color: #201F26;
}
@media (min-width: 768px) {
  .drill-video__box {
    padding: 64px;
  }
}

.drill-video__label {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  color: #18439A;
  margin-bottom: 8px;
}

.drill-video__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: #201F26;
  margin-bottom: 32px;
}

.drill-video__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333333;
}

.drill-video__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.drill-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.drill-video__thumb.is-playing .drill-video__poster {
  opacity: 0;
  pointer-events: none;
}

.drill-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.drill-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.drill-video__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.drill-video__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #201F26;
}

.news-top {
  background-color: #F2F2F2;
}

.news-top__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-top__list > * + * {
  margin-top: 12px;
}

.news-top__item {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}

.news-top__link {
  display: block;
  padding: 32px;
  text-decoration: none;
  color: inherit;
}
.news-top__link:hover {
  opacity: 0.95;
}

.news-top__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.news-top__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #201F26;
}

.news-top__tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: #D9D9D9;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #201F26;
}

.news-top__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333333;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.intro-equipment {
  position: relative;
  background-color: transparent;
}

.intro-equipment__text .block-title-group {
  margin-bottom: 32px;
}

.intro-equipment__lead {
  font-weight: 400;
  color: #201F26;
  margin: 0;
}

.intro-equipment__video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #D9D9D9;
}

.intro-equipment__video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.intro-equipment__bottom {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .intro-equipment__bottom {
    margin-top: 128px;
    align-items: flex-start;
  }
}

.intro-equipment__bottom-image {
  margin-bottom: 32px;
}
.intro-equipment__bottom-image .photo-slider__frame {
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .intro-equipment__bottom-image {
    margin-bottom: 0;
    order: -1;
  }
}

.intro-equipment__body-text {
  font-weight: 400;
  color: #201F26;
  margin: 0;
}

@media (min-width: 768px) {
  .spa-flow__body {
    align-items: flex-start;
  }
}

.spa-flow__text .spa-flow__label-en {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #18439A;
}
.spa-flow__text .spa-flow__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #201F26;
  margin: 0 0 12px 0;
}
.spa-flow__text .spa-flow__lead {
  font-weight: 400;
  color: #201F26;
  margin: 0;
}
@media (min-width: 768px) {
  .spa-flow__text {
    flex: 0 0 360px;
    max-width: 360px;
  }
}

@media (min-width: 768px) {
  .spa-flow__media {
    flex: 1;
    min-width: 0;
    max-width: none;
  }
}

.spa-flow__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.spa-pipe {
  position: relative;
  background-color: #F2F2F2;
}

.spa-pipe.slant-bg-1::before {
  background-color: #FFFFFF;
}

.spa-pipe::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  bottom: 280px;
  height: 300px;
  background-color: #2C3E53;
  transform: translateX(-50%) skewY(-15deg);
  z-index: 0;
}
@media (min-width: 768px) {
  .spa-pipe::after {
    height: 400px;
  }
}

.spa-pipe__lead {
  font-weight: 400;
  color: #201F26;
  margin: 0;
}

.diagram-viewer__media {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .diagram-viewer__media {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.diagram-viewer__thumb {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.diagram-viewer__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.spa-pipe-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1100;
}

.spa-pipe-lightbox.is-active {
  display: flex;
}

.spa-pipe-lightbox__overlay {
  position: absolute;
  inset: 0;
}

.spa-pipe-lightbox__content {
  position: relative;
  max-width: min(960px, 90vw);
  max-height: 90vh;
  padding: 12px;
  background-color: #FFFFFF;
  z-index: 1;
}

.spa-pipe-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.spa-pipe-lightbox__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.spa-pipe-lightbox__close::before,
.spa-pipe-lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: #FFFFFF;
  transform-origin: center;
}

.spa-pipe-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.spa-pipe-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#well-development .intro-equipment__bottom {
  margin-top: 32px;
}
@media (min-width: 768px) {
  #well-development .intro-equipment__bottom {
    margin-top: 64px;
  }
}

#well-development .intro-equipment__slider {
  width: 100%;
}

#well-development .intro-equipment__slider .photo-slider__frame {
  aspect-ratio: 4/3;
  background-color: #D9D9D9;
}

#well-development .intro-equipment__bottom-text {
  margin-top: 32px;
}
@media (min-width: 768px) {
  #well-development .intro-equipment__bottom-text {
    margin-top: 0;
  }
}

#well-development .intro-equipment__bottom-lead {
  margin: 0;
}

.equip-plant {
  position: relative;
  background-color: transparent;
}

.equip-plant__text {
  position: relative;
  z-index: 1;
}
.equip-plant__text .section-title-group {
  margin-bottom: 32px;
}

.equip-plant__lead {
  font-weight: 400;
  color: #201F26;
  margin: 0;
}

.equip-plant__media {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .equip-plant__media {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.equip-processing {
  position: relative;
  background-color: transparent;
}

.equip-processing__text .section-title-group {
  margin-bottom: 32px;
}

.equip-processing__lead {
  font-weight: 400;
  color: #201F26;
  margin: 0;
}

.equip-processing__media {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .equip-processing__media {
    margin-top: 0;
  }
}
.equip-processing__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.equip-gas {
  background-color: transparent;
}

@media (min-width: 768px) {
  .equip-gas__body .equip-gas__content {
    position: relative;
    z-index: 0;
    margin-top: 170px;
  }
  .equip-gas__body .equip-gas__media {
    position: relative;
    z-index: 1;
  }
  .equip-gas__body .equip-gas__box {
    margin-right: -200px;
    padding-right: 200px;
  }
}

.equip-gas__box {
  background-color: #FFFFFF;
  padding: 32px;
  color: #201F26;
}
@media (min-width: 768px) {
  .equip-gas__box {
    padding: 64px;
  }
}

.equip-gas__label {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  color: #18439A;
  margin-bottom: 8px;
}

.equip-gas__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: #201F26;
  margin-bottom: 32px;
}

.equip-gas__text {
  font-weight: 400;
  color: #333333;
  margin: 0;
}

#maintenance .maint-pump::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  bottom: 280px;
  height: 300px;
  background-color: rgba(24, 67, 154, 0.18);
  transform: translateX(-50%) skewY(-15deg);
  z-index: 0;
  pointer-events: none;
}
#maintenance .maint-pump > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  #maintenance .maint-pump::after {
    height: 400px;
  }
}

.maint-pump {
  position: relative;
  background-color: transparent;
}

.maint-pump__text .section-title-group {
  margin-bottom: 32px;
}

.maint-pump__lead {
  font-weight: 400;
  color: #201F26;
  margin: 0;
}

.maint-pump__media {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .maint-pump__media {
    margin-top: 0;
  }
}

.maint-pump__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.maint-equipment__text {
  font-weight: 400;
  color: #201F26;
  margin: 0 0 32px 0;
}
@media (min-width: 768px) {
  .maint-equipment__text {
    margin-bottom: 64px;
  }
}

.maint-restoration__text {
  font-weight: 400;
  color: #201F26;
  margin: 0 0 32px 0;
}
@media (min-width: 768px) {
  .maint-restoration__text {
    margin-bottom: 64px;
  }
}

.maint-restoration-gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .maint-restoration-gallery {
    gap: 60px;
  }
}

.maint-restoration-gallery__item {
  flex: 1;
  min-width: 0;
}

.maint-restoration-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.maint-cleaning__content .section-title-group {
  margin-bottom: 32px;
}

.maint-cleaning__media {
  position: relative;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .maint-cleaning__media {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.maint-cleaning__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.875;
  color: #FFFFFF;
  margin: 0;
}

#equipment-list .equip-list-intro--drilling {
  position: relative;
}
#equipment-list .equip-list-intro--drilling::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  bottom: 280px;
  height: 300px;
  background-color: rgba(24, 67, 154, 0.18);
  transform: translateX(-50%) skewY(-15deg);
  z-index: 0;
  pointer-events: none;
}
#equipment-list .equip-list-intro--drilling > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  #equipment-list .equip-list-intro--drilling::after {
    height: 400px;
  }
}

.equip-list-intro__content .section-title-group {
  margin-bottom: 32px;
}

.equip-list-intro__lead {
  font-weight: 400;
  color: #201F26;
  margin: 0;
}

#equipment-list .gallery-row {
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  #equipment-list .gallery-row {
    flex-wrap: nowrap;
  }
}

#equipment-list .gallery-row__item {
  flex: 0 0 calc((100% - 15px) / 2);
  min-width: 0;
}
@media (min-width: 768px) {
  #equipment-list .gallery-row__item {
    flex: 1;
  }
}

#equipment-list .gallery-row__caption {
  width: 100%;
  margin: 10px 0 0 0;
  text-align: center;
  color: #201F26;
}
@media (min-width: 768px) {
  #equipment-list .gallery-row__caption {
    margin-top: 20px;
  }
}

#sales .block-catch {
  color: #333333;
}

#sales .spec-card-grid__title {
  text-align: center;
}

#sales .spec-card-grid__item {
  display: flex;
  flex-direction: column;
}

#sales .spec-card-grid__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

#sales .spec-card-grid__text {
  margin-bottom: 32px;
}

#sales .spec-card-grid__body .equip__button {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  #sales section.slant-bg-frame.equip-list-intro {
    padding-bottom: calc(10vw - 80px);
  }
}

#sales .sales-spec-table {
  margin-top: 32px;
  max-width: 400px;
}

#sales .sales-spec-table-row {
  margin-top: 32px;
}
@media (min-width: 768px) {
  #sales .sales-spec-table-row {
    display: flex;
    gap: 60px;
    flex-wrap: nowrap;
  }
}

#sales .sales-spec-table-row .sales-spec-table {
  margin-top: 0 !important;
}
#sales .sales-spec-table-row .sales-spec-table:not(:first-of-type) {
  margin-top: 32px !important;
}
@media (min-width: 768px) {
  #sales .sales-spec-table-row .sales-spec-table {
    margin-top: 0 !important;
    flex: 1;
    min-width: 0;
  }
  #sales .sales-spec-table-row .sales-spec-table:not(:first-of-type) {
    margin-top: 0 !important;
  }
}

#sales .sales-spec-table__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #201F26;
  margin: 0 0 12px 0;
  padding-left: 12px;
  border-left: 4px solid #B7A66D;
}

#sales .sales-spec-table__single {
  display: inline-block;
  padding: 12px 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #201F26;
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
}

#sales .sales-spec-table__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #201F26;
  border: 1px solid #D9D9D9;
}
#sales .sales-spec-table__table th,
#sales .sales-spec-table__table td {
  padding: 12px 12px;
  text-align: left;
  border-bottom: 1px solid #D9D9D9;
}
#sales .sales-spec-table__table th {
  background-color: #E5E5E5;
  font-weight: 500;
  width: 40%;
}
#sales .sales-spec-table__table td {
  background-color: #FFFFFF;
}
#sales .sales-spec-table__table tr:last-child th,
#sales .sales-spec-table__table tr:last-child td {
  border-bottom: none;
}

.achievements__intro {
  text-align: center;
  margin-bottom: 20px;
}
.achievements__intro .achievements__intro-title {
  font-weight: 700;
  color: #201F26;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .achievements__intro {
    margin-bottom: 64px;
  }
  .achievements__intro .achievements__intro-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }
}

.achievements__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
}

.achievements__chip {
  padding: 8px 20px;
  border-radius: 999px;
  background-color: #F2F2F2;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  text-align: center;
  white-space: nowrap;
  font-size: 1.4rem;
}
.achievements__chip:nth-child(even) {
  background-color: rgb(220.2, 224.5, 233.2);
}

@media (min-width: 768px) {
  #achievements .achievements .base_inner.pad {
    padding-top: 30px;
  }
}

.achievements__table-wrap {
  margin-top: 64px;
  overflow-x: auto;
}

.achievements__table-note {
  font-size: 1.3rem;
  color: #201F26;
  margin: 0 0 8px 0;
}

.achievements-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.achievements-table tbody {
  display: table-row-group;
}

.achievements-table th,
.achievements-table td {
  padding: 12px 12px;
  border-bottom: 1px solid #D9D9D9;
  text-align: left;
  vertical-align: top;
}

.achievements-table thead {
  background-color: #F2F2F2;
}

.achievements-table thead th {
  text-align: center;
}

.achievements-table th:nth-child(1),
.achievements-table td:nth-child(1) {
  width: 14%;
  white-space: nowrap;
  text-align: center;
}

.achievements-table th:nth-child(2),
.achievements-table td:nth-child(2) {
  width: 14%;
  white-space: nowrap;
  text-align: center;
}

.achievements-table th:nth-child(3),
.achievements-table td:nth-child(3) {
  width: 42%;
}

.achievements-table th:nth-child(4),
.achievements-table td:nth-child(4) {
  width: 30%;
}

.achievements-table td:nth-child(3),
.achievements-table td:nth-child(4) {
  padding-left: 24px;
}
@media (min-width: 768px) {
  .achievements-table td:nth-child(3),
  .achievements-table td:nth-child(4) {
    padding-left: 40px;
  }
}

.achievements-table th:not(:last-child),
.achievements-table td:not(:last-child) {
  border-right: 1px solid #D9D9D9;
}

#achievements .bg_fix.bg-achievements {
  position: relative;
  height: 400px;
  margin-bottom: 32px;
  background-image: url("../images/achievements/bg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
@media (min-width: 768px) {
  #achievements .bg_fix.bg-achievements {
    margin-bottom: 64px;
    background-attachment: fixed;
    background-image: url("../images/achievements/bg-pc.webp");
    background-position: center 15%;
  }
}

#faq .page-title {
  margin-bottom: 0;
}

#faq .section-faq {
  background-color: #F2F2F2;
  padding-top: 50px;
}
@media (min-width: 768px) {
  #faq .section-faq {
    padding-top: 60px;
  }
}

#faq .section-faq__list > .section-faq__item + .section-faq__item {
  margin-top: 32px;
}

#faq .section-faq__item {
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  overflow: hidden;
}

#faq .section-faq__item-question {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 32px 32px;
  border: none;
  background: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #201F26;
  text-align: left;
  gap: 12px;
}
@media (min-width: 768px) {
  #faq .section-faq__item-question {
    padding-top: calc(32px - 15px);
    padding-bottom: calc(32px - 15px);
  }
}
#faq .section-faq__item-question::before {
  content: "";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url("../images/faq/ico-qu.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#faq .section-faq__item-question-text {
  flex: 1;
  min-width: 0;
  margin-top: -2px;
  font-size: calc(1.5rem + 2px);
}

#faq .section-faq__item-answer {
  position: relative;
  padding: 12px 32px 32px;
  padding-left: calc(32px + 32px + 12px);
  border-top: 1px solid #D9D9D9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #201F26;
  line-height: 1.7;
}
@media (min-width: 768px) {
  #faq .section-faq__item-answer {
    padding-bottom: calc(32px - 5px);
  }
}
#faq .section-faq__item-answer::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 32px;
  width: 32px;
  height: 32px;
  background-image: url("../images/faq/ico-ans.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#faq .section-faq__item-answer-text {
  margin: 0;
}

#recruit #company-profile {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  #recruit #company-profile {
    padding-bottom: 60px;
  }
}

#recruit .recruit-dorm-heading {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #201F26;
  margin: 64px 0 0;
  line-height: 1.4;
}

#recruit .triple-media-gallery {
  margin-top: 32px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #recruit .triple-media-gallery {
    margin-top: 64px;
  }
}

#contact .section-contact {
  padding-top: 90px;
}
@media (min-width: 768px) {
  #contact .section-contact {
    padding-top: 150px;
  }
}

.section-contact__inner > * + * {
  margin-top: 64px;
}

.section-contact__info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.section-contact__description {
  font-weight: 400;
  color: #333333;
  margin-bottom: 32px;
}

.section-contact__tel {
  text-align: center;
  margin-bottom: 12px;
}

.section-contact__tel-pc {
  display: none;
}
@media (min-width: 768px) {
  .section-contact__tel-pc {
    display: inline;
  }
}

@media (min-width: 768px) {
  .section-contact__tel-sp {
    display: none;
  }
}
.section-contact__tel-sp a {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #18439A;
  line-height: 1;
  text-decoration: none;
}

.section-contact__tel-number {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #18439A;
  line-height: 1;
}
@media (min-width: 768px) {
  .section-contact__tel-number {
    font-size: 4rem;
  }
}

.section-contact__hours {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  text-align: center;
}

.section-contact__form-wrap {
  background-color: #FFFFFF;
  border-radius: 4px;
}

.section-contact__form {
  width: 100%;
}

.section-contact__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  display: block;
}
@media (min-width: 768px) {
  .section-contact__table {
    display: table;
  }
}

.section-contact__table-row {
  border-bottom: 1px solid #C1C1C1;
  display: block;
  width: 100%;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .section-contact__table-row {
    display: table-row;
    width: auto;
    margin-bottom: 0;
  }
}

.section-contact__table-header {
  font-size: 1.5rem;
  font-weight: 500;
  color: #201F26;
  padding: 12px;
  padding-bottom: 8px;
  text-align: left;
  background-color: #F2F2F2;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .section-contact__table-header {
    display: table-cell;
    width: 360px;
    padding: 32px;
    vertical-align: top;
  }
}

.section-contact__table-data {
  padding: 12px;
  padding-top: 8px;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .section-contact__table-data {
    display: table-cell;
    width: auto;
    padding: 32px;
  }
}

.section-contact__radio-group {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 64px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .section-contact__radio-group {
    grid-template-columns: repeat(4, auto);
  }
}

.section-contact__radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  cursor: pointer;
}
.section-contact__radio-label input[type=radio] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #18439A;
}

.section-contact__required {
  display: inline-block;
  padding: 3px 10px;
  margin-left: 5px;
  font-size: 1.3rem;
  line-height: 1;
  color: #FFFFFF;
  background-color: #18439A;
  border-radius: 2px;
}

.section-contact__input,
.section-contact__textarea {
  width: 100%;
  padding: 9px 10px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  box-sizing: border-box;
}
.section-contact__input:focus,
.section-contact__textarea:focus {
  outline: none;
  border-color: #18439A;
}

.section-contact__textarea {
  height: 15em;
  resize: vertical;
}

.section-contact__approval {
  text-align: center;
  margin: 64px 0;
}
@media (min-width: 768px) {
  .section-contact__approval {
    margin: 64px 0;
  }
}

.section-contact__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  cursor: pointer;
}

.section-contact__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.section-contact__approval-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333333;
  margin-top: 12px;
  text-align: center;
}

.section-contact__link {
  color: #18439A;
  text-decoration: underline;
}
.section-contact__link:hover {
  text-decoration: none;
}

.section-contact__approval-note {
  font-size: 1.3rem;
  color: #333333;
}

.section-contact__submit {
  text-align: center;
  margin-top: 64px;
}

.section-contact__submit-wrap {
  margin-top: 64px;
  text-align: center;
}
.section-contact__submit-wrap > * + * {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .section-contact__submit-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
  .section-contact__submit-wrap > * + * {
    margin-top: 0;
  }
}

.section-contact__submit-item {
  width: 100%;
  max-width: 240px;
}
@media (min-width: 768px) {
  .section-contact__submit-item {
    width: auto;
  }
}

.section-contact__submit-btn,
.section-contact__btn-back {
  display: inline-block;
  width: 100%;
  max-width: 240px;
  padding: 13px 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #18439A;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}
.section-contact__submit-btn:hover,
.section-contact__btn-back:hover {
  background-color: #4B6DFB;
}

.section-contact__btn-back {
  background-color: #D9D9D9;
}
.section-contact__btn-back:hover {
  background-color: #C1C1C1;
}

.section-contact__error-title {
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #18439A;
  margin-bottom: 32px;
  text-align: center;
}

.section-contact__error-message {
  font-size: 1.5rem;
  font-weight: 400;
  color: #d32f2f;
  background-color: #ffebee;
  padding: 12px;
  border-left: 4px solid #d32f2f;
  margin-bottom: 12px;
  border-radius: 4px;
}

.section-contact__confirm-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  margin-bottom: 32px;
  text-align: center;
}

#privacy .section-privacy {
  padding-top: 90px;
}
@media (min-width: 768px) {
  #privacy .section-privacy {
    padding-top: 150px;
  }
}

.section-privacy__inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-privacy__intro {
  margin-bottom: 64px;
  text-align: center;
}
@media (min-width: 768px) {
  .section-privacy__intro {
    text-align: left;
  }
}

.section-privacy__intro-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.section-privacy__intro-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
}

.section-privacy__content > * + * {
  margin-top: 64px;
}

.section-privacy__item {
  padding-bottom: 64px;
  border-bottom: 1px solid #C1C1C1;
}
.section-privacy__item:last-child {
  border-bottom: none;
}

.section-privacy__item-title {
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #201F26;
  margin-bottom: 12px;
}

.section-privacy__item-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  margin-bottom: 12px;
}

.section-privacy__list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.section-privacy__list-item {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  margin-bottom: 8px;
  padding-left: 12px;
}

.section-privacy__contact {
  margin-top: 32px;
}

.section-privacy__contact-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #201F26;
  margin-bottom: 12px;
}

.section-privacy__contact-address {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  margin-bottom: 12px;
  font-style: normal;
}

.section-privacy__contact-tel {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
}

.section-privacy__tel-number {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #18439A;
}

@media (min-width: 768px) {
  .section-privacy__br-sp {
    display: none;
  }
}

#thanks .section-thanks {
  padding-top: 90px;
}
@media (min-width: 768px) {
  #thanks .section-thanks {
    padding-top: 150px;
  }
}

.section-thanks__inner {
  text-align: center;
}

.section-thanks__info {
  max-width: 600px;
  margin: 0 auto;
}

.section-thanks__message {
  font-weight: 400;
  color: #333333;
  margin-bottom: 32px;
}

.section-thanks__tel {
  text-align: center;
  margin-bottom: 12px;
}

.section-thanks__tel-number {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #18439A;
  line-height: 1;
}
@media (min-width: 768px) {
  .section-thanks__tel-number {
    font-size: 4rem;
  }
}

.section-thanks__hours {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
}

#company .sign {
  text-align: right;
  margin-top: 32px;
}

#company .company-map__frame {
  width: 100%;
  margin-top: 32px;
  overflow: hidden;
  border: none;
  border-top: 1px solid #D9D9D9;
}
#company .company-map__frame iframe {
  display: block;
  width: 100%;
  height: 400px;
}

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