@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
/*     animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; */
  }
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  color: #2f2f2f;
}

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

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.inner {
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  max-width: 63.125rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 40rem;
  }
}

.inner.inner--lg {
  max-width: 1280px;
}
@media screen and (max-width: 767px) {
  .inner.inner--lg {
    max-width: none;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.inner.inner--md {
  max-width: 70.5625rem;
}

/* ベーススタイル */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* 項目間の感覚（後で調整可） */
  font-size: 14px;
  align-items: center;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  /* 各リスト項目間の隙間 */
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item::after {
  content: " /";
  margin-left: 10px;
  /* /の前後に隙間 */
}

.breadcrumb-item:last-child::after {
  content: "";
  /* 最後の項目には/を表示しない */
}

/* ホームリンク */
.breadcrumb-home a {
  color: #12929d;
  /* ホームの文字色 */
  text-decoration: none;
  border-bottom: 1px solid #12929d;
  /* ホームリンクの下に青いボーダー */
}

.breadcrumb-home a:hover {
  opacity: 0.8;
}

/* 現在のページ（最終項目）は黒色 */
.breadcrumb-item.breadcrumb-business-detail,
.breadcrumb-item.breadcrumb-product-detail {
  color: #2f2f2f;
}

/* グレーで表示する中間の項目 */
.breadcrumb-item:not(.breadcrumb-business-detail):not(.breadcrumb-product-detail):not(.breadcrumb-home) {
  color: #999999;
}

.breadcrumb-item:not(:first-child) a {
  color: inherit;
  /* 親の文字色を引き継ぐ */
}

.layout-news {
  margin-top: 6.25rem;
}

.layout-group {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .layout-group {
    margin-top: 56px;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  right: 0;
  left: 0;
}

.bg-water3,
.bg-water2,
.bg-water {
  position: absolute;
  background-image: url("../images/bg-water.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 298px;
  height: 224px;
}

.bg-ball {
  position: absolute;
  background-image: url("../images/bg-ball.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 217px;
  height: 217px;
}

.bg-wave {
  position: absolute;
  background-image: url("../images/bg-strength01.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 953px;
  height: 465px;
}

.products-heading .bg-water {
  top: 13%;
  left: -6%;
}
@media screen and (max-width: 767px) {
  .products-heading .bg-water {
    top: 33%;
    left: -12%;
    height: 24%;
    width: 38%;
  }
}

.products-heading .bg-water2 {
  top: 57%;
  right: -11%;
}
@media screen and (max-width: 767px) {
  .products-heading .bg-water2 {
    top: 60%;
    right: -18%;
    height: 36%;
    width: 38%;
  }
}

.mv__polkadots {
  position: absolute;
  left: -14%;
  bottom: -16%;
}
@media screen and (max-width: 767px) {
  .mv__polkadots {
    width: 50%;
  }
}

.works__polkadots {
  position: absolute;
  left: -11%;
  top: -11%;
}
@media screen and (max-width: 767px) {
  .works__polkadots {
    width: 50%;
  }
}

.about__polkadots {
  position: absolute;
  right: -9%;
  top: -13%;
  width: 16%;
}
@media screen and (max-width: 767px) {
  .about__polkadots {
    position: absolute;
    right: -23%;
    top: 15px;
    width: 42%;
  }
}

.contact__polkadots {
  position: absolute;
  left: -11%;
  top: -21%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .contact__polkadots {
    width: 50%;
    top: -12%;
    left: -24%;
  }
}

.contact.contact.contact--reverse .contact__polkadots {
  position: absolute;
  left: -11%;
  top: -24%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contact.contact.contact--reverse .contact__polkadots {
    left: -18%;
    top: -14%;
  }
}

.division-single-head__polkadots {
  position: absolute;
  left: -10%;
  bottom: -8%;
}
@media screen and (max-width: 767px) {
  .division-single-head__polkadots {
    width: 70%;
    left: -58%;
    bottom: -47%;
  }
}

.polkadots {
  overflow: hidden;
}

.mv__watersplash {
  position: absolute;
  left: 17%;
  top: 0;
  transform: rotate(131deg);
}
@media screen and (max-width: 767px) {
  .mv__watersplash {
    width: 50%;
  }
}

.mv__watersplash-sub {
  position: absolute;
  left: -12%;
  bottom: -25%;
}
@media screen and (max-width: 767px) {
  .mv__watersplash-sub {
    width: 50%;
  }
}

.about__watersplash {
  position: absolute;
  right: -12%;
  top: -5%;
  transform: rotate(162deg);
  width: 27%;
}
@media screen and (max-width: 767px) {
  .about__watersplash {
    position: absolute;
    right: -8%;
    top: 5%;
    transform: rotate(102deg);
    width: 50%;
  }
}

.group__watersplash-sub {
  position: absolute;
  left: -15%;
  top: -32%;
  width: 26%;
}
@media screen and (max-width: 767px) {
  .group__watersplash-sub {
    width: 70%;
  }
}

.works__watersplash {
  position: absolute;
  left: -16%;
  top: -4%;
  transform: rotate(36deg);
}

.works__watersplash-sub {
  position: absolute;
  right: -13%;
  bottom: -9%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .works__watersplash-sub {
    width: 50%;
  }
}

.contact__watersplash {
  position: absolute;
  left: -16%;
  bottom: 56%;
  transform: rotate(11deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .contact__watersplash {
    width: 60%;
    bottom: 85%;
    left: -32%;
  }
}

.contact.contact.contact--reverse .contact__watersplash {
  position: absolute;
  left: -18%;
  top: -17%;
  transform: rotate(11deg);
}
@media screen and (max-width: 767px) {
  .contact.contact.contact--reverse .contact__watersplash {
    width: 60%;
    top: -9%;
  }
}

.contact__watersplash-sub {
  position: absolute;
  right: -12%;
  bottom: -43%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .contact__watersplash-sub {
    width: 50%;
    bottom: 2%;
  }
}

.contact.contact--reverse .contact__watersplash-sub {
  z-index: 1;
  position: absolute;
  right: -14%;
  bottom: -16%;
}
@media screen and (max-width: 767px) {
  .contact.contact--reverse .contact__watersplash-sub {
    width: 50%;
    bottom: -7%;
    left: 74%;
  }
}

.division-single-head__watersplash {
  position: absolute;
  left: -19%;
  bottom: -16%;
}
@media screen and (max-width: 767px) {
  .division-single-head__watersplash {
    width: 50%;
    bottom: -36%;
    left: -19%;
  }
}

.heading__watersplash {
  position: absolute;
  left: -12%;
  bottom: -9%;
}
@media screen and (max-width: 767px) {
  .heading__watersplash {
    width: 50%;
    bottom: 27%;
    left: -23%;
  }
}

.heading__watersplash-sub {
  position: absolute;
  right: -16%;
  bottom: -31%;
}
@media screen and (max-width: 767px) {
  .heading__watersplash-sub {
    width: 50%;
    bottom: -17%;
    right: -20%;
  }
}

.customize__watersplash {
  position: absolute;
  right: -16%;
  top: -35%;
}
@media screen and (max-width: 767px) {
  .customize__watersplash {
    display: none;
  }
}

.bg-about {
  position: absolute;
  background-image: url("../images/bg-top.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1435px;
  height: 698px;
  top: 22%;
  left: -6%;
}
@media screen and (max-width: 767px) {
  .bg-about {
    width: 1170px;
    height: 564px;
    top: 36%;
    left: -457px;
    transform: rotate(-90deg);
  }
}

.news__btn {
  width: 16.125rem;
  background-color: #f5f5f5;
  border-radius: 2.5rem;
  opacity: 1;
}

.btn__text {
  font-family: "BIZ UDPGothic", sans-serif;
  padding-top: 1.6875rem;
  padding-bottom: 1.6875rem;
  padding-left: 1.625rem;
  transition: 0.3s color;
  opacity: 1;
  font-size: 0.875rem;
}

.btn {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: inherit;
  border-radius: 2.5rem;
  opacity: 1;
}

.btn:hover {
  opacity: 1;
}

.btn__circle {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  right: 1.25rem;
  border-radius: 50%;
  background-color: #f2950b;
  transition: transform 0.3s;
}

.btn__circle::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  /* 必要に応じて調整 */
  height: 0.75rem;
  /* 必要に応じて調整 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/Arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
}

.news__btn:hover .btn__text {
  color: #f2950b;
  transition: 0.3s color;
  opacity: 1;
}

.news__btn:hover .btn__circle {
  transform: scale(1.5);
  transition: transform 0.3s;
  opacity: 1;
}

.button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 258px;
  background-color: #f9f9f9;
  border-radius: 2.6875rem;
  padding: 16px 20px 16px 25px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .button-container {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .division-list__tops-btn .button-container {
    margin-top: 0;
  }
}

.button:hover,
.button-container:hover,
.about__item:hover {
  opacity: 1;
}

.about__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.button-container.button-container--reverse {
  background-color: #ffffff;
}

.button-text {
  font-size: 0.875rem;
  color: #2f2f2f;
  transform: 0.3s color, 0.3s font-weight;
}

.button-container:hover .button-text {
  color: #ffa500;
  font-weight: 700;
  transform: 0.3s color, 0.3s font-weight;
}

.button-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ffa500;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.button:hover .button-icon,
.button-container:hover .button-icon,
.about__item:hover .button-icon,
.button-wrap:hover .button-icon,
.product-list__item:hover .product-list__btn .button-icon,
.division-others__item:hover .division-others__item-btn .button-icon,
.detail-item:hover .detail-item__btn .button-icon,
.works-list__item:hover .works-list__btn .button-icon,
.guideline__btn:hover .button-icon,
.btn-hover:hover .button-icon {
  transform: scale(1.5);
}

.arrow,
.arrow-reverse {
  position: absolute;
  font-size: 1rem;
  color: #ffffff;
  display: block;
}

.arrow:before,
.arrow:after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

.arrow:after {
  transform: translate(-240%, -50%);
}

.button:hover .arrow:before,
.button-container:hover .arrow:before,
.about__item:hover .arrow:before,
.product-list__item:hover .product-list__btn .button-icon .arrow:before,
.division-others__item:hover .division-others__item-btn .button-icon .arrow:before,
.button-wrap:hover .arrow:before,
.detail-item:hover .detail-item__btn .button-icon .arrow::before,
.works-list__item:hover .works-list__btn .button-icon .arrow::before,
.guideline__btn:hover .button-icon .arrow::before,
.btn-hover:hover .button-icon .arrow::before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

.button:hover .arrow:after,
.button-container:hover .arrow:after,
.about__item:hover .arrow:after,
.product-list__item:hover .product-list__btn .button-icon .arrow:after,
.division-others__item:hover .division-others__item-btn .button-icon .arrow:after,
.button-wrap:hover .arrow:after,
.detail-item:hover .detail-item__btn .button-icon .arrow::after,
.works-list__item:hover .works-list__btn .button-icon .arrow::after,
.guideline__btn:hover .button-icon .arrow::after,
.btn-hover:hover .button-icon .arrow::after {
  animation-name: transformLeftRight;
  animation-delay: 0.3s;
}

@keyframes transformLeftRight {
  0% {
    transform: translate(-240%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(120%, -50%);
  }
}
.btn-arrow-right a,
.btn-arrow-left a {
  display: flex;
  align-items: center;
  width: 100%;
  height: inherit;
}

.btn-arrow-right__name {
  margin-right: 1.875rem;
}

.btn-arrow-left__name {
  margin-left: 1.875rem;
}

.detail-nav__btn:hover .button-icon,
.recruit-about__item:hover .recruit-about__btn .button-icon {
  transform: scale(1.3);
}

.recruit-about__item:hover .recruit-about__btn .arrow::before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

.recruit-about__item:hover .recruit-about__btn .arrow::after {
  animation-name: transformLeftRight;
  animation-delay: 0.3s;
}

.recruit-question__tab.tab .tab__menu-wrap {
  max-width: none;
  width: 100%;
}

@keyframes transformLeftRight-reverse {
  0% {
    transform: translate(240%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes transformRightLeft-reverse {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-240%, -50%);
  }
}
.arrow-reverse:before,
.arrow-reverse:after {
  content: "←";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

.arrow-reverse::after {
  transform: translate(240%, -50%);
}

.button:hover .arrow-reverse:before {
  animation-name: transformRightLeft-reverse;
  animation-delay: 0s;
}

.button:hover .arrow-reverse:after {
  animation-name: transformLeftRight-reverse;
  animation-delay: 0.3s;
}

.c-btn-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.25rem;
  height: 2.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.c-arrow {
  position: absolute;
  display: block;
}

.c-arrow:before,
.c-arrow:after {
  content: "";
  position: absolute;
  background-image: url("../images/movearrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 0.25rem;
  height: 0.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}

.c-arrow:after {
  transform: translate(-240%, -50%);
}

.c-btn-icon:hover .c-arrow:before,
.news-list__item:hover .news-list__item-content__arrow .c-arrow:before {
  animation-name: LeftToRight;
  animation-delay: 0s;
}

.c-btn-icon:hover .c-arrow:after,
.news-list__item:hover .news-list__item-content__arrow .c-arrow:after {
  animation-name: RightToLeft;
  animation-delay: 3s;
}

@keyframes LeftToRight {
  0% {
    transform: translate(-240%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes RightToLeft {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(120%, -50%);
  }
}
.md-small-btn {
  width: 2.5rem;
  height: 2.5rem;
}

.recruit__item-content .button-text {
  margin-right: 0 !important;
}

.title {
  font-size: 2rem;
  font-family: "BIZ UDPMincho", serif;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-weight: 400;
  padding-left: 1.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 28px;
  }
}

.title::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #77bcc2;
  border-radius: 50%;
}

.title.title--vertically {
  writing-mode: vertical-rl;
  padding-left: 0;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .title.title--vertically {
    padding-left: 0rem;
    padding-top: 2rem;
  }
}

.title.title--vertically::before {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .title.title--vertically::before {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}

.md-primary {
  color: #12929d;
}

.md_large {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .md_large {
    font-size: 2rem;
  }
}

.md-capi {
  text-transform: capitalize;
}

.md-upper {
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}

.scrollTopButton {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -4.5rem;
  bottom: 10.1875rem;
  width: 4.5rem;
  height: 4.5rem;
  background: #77bcc2;
  line-height: 4.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: right 0.4s ease-in-out;
  z-index: 10;
  /* 非表示時 */
  opacity: 0;
  visibility: hidden;
}

.scrollTopButton.is-active {
  right: 0rem;
  opacity: 1;
  visibility: visible;
}

.scrollTopButton img {
  width: 68%;
  height: auto;
}

.header {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: 0rem;
    padding-bottom: 1.5rem;
  }
}

.header.scrolled {
  background-color: #ffffff;
}

.header.scrolled .header__nav-item a {
  color: #2f2f2f;
}

.header.scrolled .header__nav-modal-wrap > p {
  color: #2f2f2f;
}

.header.scrolled .header__nav-modal-wrap > p::before {
  border-color: #2f2f2f;
}

.header.scrolled .header__nav-item.header__nav-item--contact a {
  color: #ffffff;
}

.header.scrolled .hamburger__bar-menu {
  color: #2f2f2f;
}

.header.scrolled .header__hamburger span {
  background-color: #2f2f2f;
}

.header.header--sub {
  background-color: #ffffff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .header.header--sub {
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
  }
}

.header__inner {
  padding-left: 2.5rem;
  padding-right: 2.75rem;
  height: inherit;
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.header__logo {
  max-width: 19.125rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 13.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .header.header--sub .header__logo {
    max-width: 210px;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

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

.header__nav {
  position: relative;
  display: block;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item,
.header__nav-modal-wrap {
  height: inherit;
  display: grid;
  place-items: center;
}

.header__nav-modal-wrap {
  transition: 0.5s transform, 0.7s opacity;
}

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

.header__nav-item.header__nav-item--contact > a {
  color: #ffffff;
}

.header.header--sub .header__nav-item.header__nav-item--contact > a {
  color: #ffffff;
}

.header__nav-item.header__nav-item--x > a {
  width: 20px; /* リンクの幅 */
  height: 20px; /* リンクの高さ */
	background-image: url(../images/logo-x-white.png); /* 背景画像 */
  background-size: contain; /* 画像を要素にフィットさせる */
  background-position: center; /* 画像を中央に配置 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  transition: transform 0.3s ease; /* ホバーアニメーション */
	margin-left: 0.5rem;
}

.header__nav-item.header__nav-item--x.header__nav-item--x-black > a {
	background-image: url(../images/logo-x-black.png);
}

.header__nav-item--x a:hover {
}

/* スクロール時 */
.header.scrolled .header__nav-item.header__nav-item--x > a {
	background-image: url(../images/logo-x-black.png);
}

.header__nav-item > a,
.header__nav-modal-wrap > p {
  padding: 0 1.125rem 0 1.375rem;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-align: center;
}

.header.header--sub .header__nav-item > a,
.header.header--sub .header__nav-modal-wrap > p {
  color: #2f2f2f;
}

.header__nav-modal-wrap > p {
  position: relative;
  transition: 0.3s;
}

.header__nav-modal-wrap > p::before {
  content: "";
  position: absolute;
  top: 1.5625rem;
  right: 0.625rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(135deg);
  transition: 0.3s;
}

.header.header--sub .header__nav-modal-wrap > p::before {
  border-top: 1px solid #2f2f2f;
  border-right: 1px solid #2f2f2f;
}

.header__nav-modal-wrap:hover > p::before {
  top: 1.8125rem;
  transform: rotate(-45deg);
}

.header__nav-modal {
  padding: 1.5rem 2.5rem;
  position: absolute;
  max-width: 34.375rem;
  width: 100%;
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s transform, 0.7s opacity;
}

.header__nav-modal-wrap:nth-of-type(2) .header__nav-modal {
  top: 3.125rem;
  left: -4.6875rem;
}

.header__nav-modal-wrap:nth-of-type(3) .header__nav-modal {
  top: 3.125rem;
  left: 5.125rem;
}

.header__nav-modal-wrap:nth-of-type(4) .header__nav-modal {
  top: 3.125rem;
  left: 6.1875rem;
}

.header__nav-modal-wrap:hover > .header__nav-modal {
  opacity: 1;
  visibility: visible;
}

.header__nav-modal-wrap:hover {
  transition: 0.5s transform, 0.7s opacity;
}

.header__nav-modal-item {
  border-bottom: 1px solid #dadee2;
  width: 100%;
}

.header__nav-modal-item a {
  display: block;
}

.header__nav-modal-item-img {
  margin: auto;
  max-width: 3.125rem;
  width: 100%;
}

.header__nav-modal-item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav-modal-item-text {
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding-bottom: 1rem;
}

.header__nav-item.header__nav-item--contact a {
  padding: 0.9375rem 1.5rem;
  font-size: 1rem;
  color: #ffffff;
  background-color: #f2950b;
  border-radius: 1.875rem;
  height: auto;
  letter-spacing: 0;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 3.125rem;
  height: inherit;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.625rem;
  height: 1px;
  background-color: #ffffff;
  transition: 0.5s;
}

.hamburger__bar-close {
  display: none;
  font-size: 0.5rem;
  text-transform: capitalize;
  font-weight: 700;
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger__bar-menu {
  display: block;
  font-size: 0.5rem;
  text-transform: capitalize;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.header__hamburger.header__hamburger--reverse .hamburger__bar-menu {
  color: #2f2f2f;
}

.header__hamburger.header__hamburger--reverse span {
  background-color: #2f2f2f;
}

.js-hamburger.is-open .hamburger__bar-close {
  display: block; /* is-open のときに表示 */
	color: #2f2f2f;
}

.js-hamburger.is-open .hamburger__bar-menu {
  display: none; /* is-open のときに非表示 */
}

.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(20deg);
  background-color: #2f2f2f;
}

.header__hamburger.is-open span:nth-of-type(2) {
  top: -0.1875rem;
  transform: translateX(-50%) rotate(-20deg);
  background-color: #2f2f2f;
}

.header__hamburger.is-open p {
  opacity: 1;
}

.header__hamburger.is-open span:nth-of-type(3) {
  opacity: 0;
}

.header__drawer {
  padding: 5.8125rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-nav {
  margin: auto;
  padding: 0 0.9375rem;
  max-width: 23.4375rem;
  width: 100%;
}

.header__drawer-item > a,
.header__drawer-accordion-title {
  padding: 1rem 0;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2f2f2f;
  text-align: left;
}

.header__drawer-item > a span,
.header__drawer-accordion-title span {
  margin-top: 0.3125rem;
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.header__drawer-accordion-title {
  position: relative;
  cursor: pointer;
  border-bottom: 0.0625rem solid #dadee2;
}

.header__drawer-accordion-title::before,
.header__drawer-accordion-title::after {
  content: "";
  position: absolute;
  top: 1.3125rem;
  right: 1.25rem;
  width: 1.125rem;
  height: 0.09375rem;
  background: #12929d;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header__drawer-accordion-title::before,
  .header__drawer-accordion-title::after {
    top: 1.5rem;
    width: 0.875rem;
  }
}

.header__drawer-accordion-title.is-open::before {
  top: 1.4375rem;
  transform: rotate(-90deg);
}

.header__drawer-item a {
  color: #2f2f2f;
  border-bottom: 0.0625rem solid #dadee2;
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.header__drawer-accordion-item-text {
  margin-left: 0.9375rem;
  font-size: 1rem;
  font-weight: 700;
}

.header__drawer-accordion-item a {
  padding-left: 0.9375rem;
}

.header__drawer-btn {
  margin-top: 2.5rem;
}

.header__drawer-btn a {
  padding: 1.25rem 3.125rem;
  background-color: #f2950b;
  color: #ffffff;
  border-radius: 30%;
  max-width: 18.75rem;
  width: 100%;
}

.header__drawer-accordion-list-wrap {
  display: none;
}

.mv {
  position: relative;
  height: 100vh;
  min-height: 25rem;
}

.mv__inner {
  height: inherit;
  min-height: inherit;
}

.mv__title-wrap {
  position: absolute;
  display: inline-block;
  z-index: 2;
  width: 50%;
  top: 50.7%;
  left: 7%;
}
@media screen and (max-width: 767px) {
  .mv__title-wrap {
    left: 54%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

.mv__title {
  font-weight: 700;
  font-size: 3.5625rem;
  background-color: #eff4f7;
  letter-spacing: 0.08em;
  display: inline-block;
  padding-left: 1.375rem;
  padding-right: 1.125rem;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.mv__title:nth-child(2) {
  margin-top: 0.8125rem;
  padding-right: 0;
}

.mv__img {
  -webkit-clip-path: circle(50% at 66% 35%);
          clip-path: circle(50% at 66% 35%);
}

.mv__img,
.mv__img img,
.mv__img video {
  height: inherit;
  min-height: inherit;
}

.mv__img img,
.mv__img video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1440/820;
}

.mv__btn {
  position: absolute;
  bottom: 2.7%;
  right: 3.5%;
  max-width: 11.25rem;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .mv__btn {
    max-width: 6.25rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

.mv__btn:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}

.mv__btn a:hover {
  opacity: 1;
}

.hidden-div {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(18, 146, 157, 0.8);
  display: flex;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .hidden-div {
    padding: 2.5rem 0;
  }
}

.hidden-div__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .hidden-div__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    flex-direction: column-reverse;
    gap: 1.5rem;
    margin: 0;
    padding-top: 1.875rem;
    justify-content: flex-end;
  }
}

.hidden-div__text,
.hidden-div__map {
  max-width: 34rem;
}

@media screen and (max-width: 767px) {
  .hidden-div__map {
    max-width: 14.5rem;
  }
}

.hidden-div__map img {
  aspect-ratio: 1048/1197;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .hidden-div__map img {
    aspect-ratio: 1048/1230;
  }
}

.hidden-div__text {
  color: #ffffff;
  line-height: 2.8;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  filter: blur(22px);
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .hidden-div__text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-top: 0rem;
  }
}

.mv__scroll {
  position: absolute;
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
}
.mv__scroll .mv-scroll__text {
  margin: 0;
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-align: center;
  padding-bottom: 1.25rem;
  text-transform: capitalize;
}
.mv__scroll .mv-scroll__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 41%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1px solid #2f2f2f;
  border-right: 1px solid #2f2f2f;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out;
  animation: arrow-bounce 2s infinite;
}

@keyframes arrow-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(135deg);
  }
  40% {
    transform: translateY(-15px) rotate(135deg);
  }
  60% {
    transform: translateY(-5px) rotate(135deg);
  }
}
.footer {
  background-color: #12929d;
  padding-top: 119px;
  padding-bottom: 6.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 62px;
    padding-bottom: 1.5rem;
  }
}

.footer__inner {
  width: 100%;
  max-width: 73.75rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 32px;
  }
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .footer__container {
    flex-direction: column;
    gap: 32px;
  }
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    width: 100%;
    margin-top: 1rem;
    row-gap: 29px;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 399px) {
  .footer__nav {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer__nav-item {
  max-width: 11.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__nav-item {
    max-width: none;
  }
}

.footer__nav-item:last-child .footer__nav-title:last-of-type {
  margin-top: 1.1875rem;
}

.footer__nav-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #ffffff;
  padding-bottom: 0.875rem;
  position: relative;
}

.footer__nav-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #dadee2 20%, rgba(255, 255, 255, 0.3) 20%);
}

.footer__nav-list-item {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #ffffff;
  margin-top: 1rem;
  font-weight: 400;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 45px;
  }
}

.footer__policy {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__policy {
    gap: 40px;
  }
}

.footer__policy-item {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #ffffff;
}

.footer__copyright {
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.5rem;
  }
}

.footer__nav-title a,
.footer__nav-list-item a {
  display: flex;
  width: 100%;
  align-items: center;
  height: inherit;
}

.contact {
  position: relative;
  padding-top: 6.1875rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 119px;
    padding-bottom: 5rem;
    min-height: 812px;
  }
}

.contact.contact--reverse {
  background-color: #fafeff;
  overflow: visible;
  padding-bottom: 6.25rem;
}

.contact__inner {
  display: flex;
  align-items: center;
  gap: 3.625rem;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.contact__wrap {
  margin-top: 0px;
}

.contact__description {
  margin-top: 1.4375rem;
  line-height: 2;
  letter-spacing: 0.04em;
  font-size: 1rem;
  font-feature-settings: "palt";
}

.contact__options {
  width: 38.5rem;
  width: 100%;
  position: relative;
  display: block;
}

.contact-option {
  max-width: 21.25rem;
  width: 100%;
  position: relative;
  border-radius: 50%;
}

.contact-option__img {
  position: relative;
  border-radius: 50%;
}

.contact-option__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 21.25rem;
  max-height: 21.25rem;
  width: 100%;
  text-align: center;
}

.contact-option__title {
  font-size: 1.25rem;
  font-family: "BIZ UDPMincho", serif;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact-option__title {
    font-size: 18px;
  }
}

.contact-option__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 1rem;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact-option__link {
    margin-top: 9px;
  }
}

.contact-option__link.contact-option__link--tel {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #77bcc2;
}
@media screen and (max-width: 767px) {
  .contact-option__link.contact-option__link--tel {
    font-size: 15px;
  }
}

.contact-option__link.contact-option__link--tel span {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: capitalize;
}

.circle {
  width: 2.25rem;
  height: 2.25rem;
  position: relative;
  border-radius: 50%;
  background-color: #f2950b;
}

.circle::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/Arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
}

.contact-option__contents {
  position: relative;
}

.circle-container {
  position: relative;
  width: 45rem;
  /* 必要に応じて調整 */
  height: 30.375rem;
  flex: 1;
  /* 必要に応じて調整 */
}
@media screen and (max-width: 767px) {
  .circle-container {
    width: 26.25rem;
    /* 必要に応じて調整 */
    height: 34.25rem;
    /* 必要に応じて調整 */
  }
}
@media screen and (max-width: 399px) {
  .circle-container {
    width: 107%;
    /* 必要に応じて調整 */
    height: 34.375rem;
    /* 必要に応じて調整 */
  }
}

.circle-set {
  position: absolute;
  width: 21.25rem;
  /* 円の幅 */
  height: 21.25rem;
  /* 円の高さ */
  top: 0;
  bottom: 0;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .circle-set {
    width: 20rem;
    /* 円の幅 */
    height: 20rem;
    /* 円の高さ */
  }
}
@media screen and (max-width: 399px) {
  .circle-set {
    width: 255px;
    /* 円の幅 */
    height: 255px;
    /* 円の高さ */
    top: 3px;
    left: 11px;
  }
}

.circle-image {
  width: 100%;
  /* 親の幅に合わせる */
  height: 100%;
  /* 親の高さに合わせる */
  display: block;
  animation: rotate 4.5s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.centered-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .centered-content {
    top: 51%;
  }
}

.circle-set.secondary-set {
  top: auto;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 399px) {
  .circle-set.secondary-set {
    bottom: -459px;
    left: 105px;
  }
}

.a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .a[href^="tel:"] {
    pointer-events: auto;
  }
}

.contact__title.title {
  font-size: 32px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact__title.title {
    font-size: 28px;
  }
}

.form.form--confirm .form__wrap {
  border-bottom: 1px solid #dadee2;
}

.sub-contact__inner--confirm.inner {
  padding-bottom: 40px;
}

.sub-contact .form-select select {
  border-radius: 0.5rem;
}

.company-logos {
  background-color: #f2fcff;
  margin-top: -47px;
  padding-top: 0;
  padding-bottom: 84px;
}
@media screen and (max-width: 767px) {
  .company-logos {
	margin-top:0px;
    padding-top: 38px;
    padding-bottom: 56px;
  }
}

.company-logos__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.company-logos__items {
  display: flex;
  justify-content: center;
  gap: 2.875rem;
}
@media screen and (max-width: 767px) {
  .company-logos__items {
    gap: 13px;
    flex-direction: column;
    align-items: center;
  }
}

.company-logos__item {
  padding-top: 0.1875rem;
}

.company-logos__item img {
  aspect-ratio: 240/52;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.recruit {
  height: 47.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit {
    height: 45rem;
  }
}

.recruit__list {
  display: flex;
  height: inherit;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit__list {
    flex-direction: column-reverse;
  }
}

.recruit__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.recruit__item {
  height: inherit;
  width: 50%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .recruit__item {
    width: 100%;
  }
}

.recruit__item:nth-of-type(1) {
  background-image: url(../images/recruit01.webp);
  margin-right: calc(50% - 50vw);
}

.recruit__item:nth-of-type(2) {
  background-image: url(../images/recruit02.webp);
}

.recruit__item-content {
  position: absolute;
  bottom: 66px;
  right: 4.4375rem;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .recruit__item-content {
    bottom: 23px;
    right: 7px;
    padding-right: 19px;
  }
}

.recruit__item-title {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: right;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .recruit__item-title {
    font-size: 1.5rem;
  }
}

.recruit__item-title span {
  margin-top: 1.5625rem;
  display: block;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .recruit__item-title span {
    font-size: 0.25rem;
    line-height: 1.7;
  }
}

.recruit__item-text {
  margin-top: 0.4375rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-align: right;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .recruit__item-text {
    margin-top: 0.125rem;
    font-size: 1rem;
    line-height: 1.48;
    letter-spacing: 0.01em;
  }
}

.news__btn.news__btn--recruit {
  margin-left: auto;
  margin-top: 1.9375rem;
}

.container {
  position: relative;
  background: #f2fcff;
  height: 8.5rem;
  overflow-x: hidden;
}

.container.container--history {
  background: #f9f9f9;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .container.container--history {
    margin-top: 6.25rem;
  }
}

.container.container--recruit-question {
  background: #ffffff;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .container.container--recruit-question {
    margin-top: 6.25rem;
  }
}

.container.container--others {
  background: #f0fafb;
}

.container.container--product-detail {
  background-color: #fafeff;
  margin-top: 3.125rem;
}

.recruit__item-content .button-container {
  margin-left: auto;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .recruit__item-content .button-container {
    margin-top: 29px;
  }
}

.wave {
  position: absolute;
  height: 3.125rem;
  width: 100%;
  background: #ffffff;
  bottom: 0;
  animation: wave 10s ease-in-out infinite;
}

@keyframes wave {
  0% {
    height: 3.125rem;
  }
  50% {
    height: 4.75rem;
  }
  100% {
    height: 3.125rem;
  }
}
.wave::before,
.wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50% 100%;
}

.wave::before {
  width: 55%;
  height: 100%;
  background-color: #ffffff;
  right: -1.5%;
  top: 40%;
}

.wave::after {
  width: 55%;
  height: 109%;
  background-color: #f2fcff;
  left: -1.5%;
  top: 60%;
}

.container.container--history .wave::after {
  background-color: #f9f9f9;
}

.container.container--others .wave::after {
  background-color: #f0fafb;
}

.container.container--product-detail .wave::after {
  background-color: #fafeff;
}

.container.container--recruit-question .wave::after {
  background-color: #ffffff;
}

.js-fade-up {
  opacity: 0;
  transition-duration: 600ms;
  transition-property: opacity, transform;
  transform: translate(0, 50px);
}

.js-fade-down {
  opacity: 0;
  transition-duration: 600ms;
  transition-property: opacity, transform;
  transform: translate(0, -50px);
}

.js-fade-left {
  opacity: 0;
  transition-duration: 600ms;
  transition-property: opacity, transform;
  transform: translate(-50px, 0);
}

.js-fade-right {
  opacity: 0;
  transition-duration: 600ms;
  transition-property: opacity, transform;
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.js-fade-delay1 {
  transition-delay: 2ms;
}

.js-fade-delay2 {
  transition-delay: 4ms;
}

.js-fade-delay3 {
  transition-delay: 6ms;
}

.js-fade-delay4 {
  transition-delay: 8ms;
}

.js-fade-delay5 {
  transition-delay: 10ms;
}

.works {
  padding-top: 164px;
  padding-bottom: 157px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .works {
    padding-top: 98px;
    padding-bottom: 113px;
  }
}

.works__inner {
  display: flex;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .works__inner {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .works__inner.inner {
    align-items: center;
    gap: 51px;
  }
}

.works__title {
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .works__title {
    letter-spacing: 0.24em;
  }
}

.works__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .works__heading {
    flex-direction: column;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .works__heading .button-container {
    width: 258px;
    padding: 21px 19px 16px 26px;
    justify-content: space-between;
  }
}

.works__text {
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .works__text {
    letter-spacing: 0.03em;
    padding: 0 3px;
  }
}

.works-list {
  margin-top: 36px;
  display: grid;
  gap: 1.125rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .works-list {
    margin-top: 39px;
    grid-template-columns: repeat(1, 1fr);
    gap: 42px;
  }
}

.works-list__item {
  display: block;
  height: 100%;
}

.works-list__item-img {
  width: 100%;
  border-radius: 0.4375rem;
  overflow: hidden;
}

.works-list__item-img img {
  width: 100%;
  aspect-ratio: 358/358;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s transform;
}

.works-list__item-content {
  margin-top: 1.5rem;
  padding-right: 0.3125rem;
  padding-left: 0.3125rem;
}

.works-list__item-title {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-family: "BIZ UDPMincho", serif;
  border-bottom: 1px solid #dadee2;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .works-list__item-title {
    font-size: 1.25rem;
    text-align: center;
  }
}

.works-list__item-text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .works-list__item-text {
    margin-top: 0.9375rem;
    font-size: 16px;
  }
}

.contact-option__link.contact-option__link--works {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .contact-option__link.contact-option__link--works {
    margin-inline: auto;
  }
}

.works-list__item:hover .works-list__item-img img {
  transform: scale(1.1);
  transition: 0.3s transform;
}

.works-list__item:hover .works-list__item-text,
.works-list__item:hover .works-list__item-title {
  opacity: 0.7;
  transition: 0.3s transform, 0.3s opacity;
}

.works-list__btn {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .works-list__btn {
    margin-inline: auto;
    justify-content: center;
  }
}

.works-list__btn .button-text {
  margin-right: 1rem;
}

.works-list__item:hover a {
  opacity: 1;
}

.icon {
  position: absolute;
  width: 4.9375rem;
  height: 4.9375rem;
  background-image: url("../images/group-icon-plain.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 10%;
  left: 10%;
}

.icon:hover .icon {
  scale: 1.1;
}

.icon-text {
  position: relative;
  width: 3.25rem;
  height: 1.625rem;
}

.icon-text::after,
.icon-text::before {
  content: "土木工事";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/Arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #12929d;
}

.icon-text::before {
  transform: translate(100%, -50%);
}

.works-list__item a img {
  border-radius: 8px;
}

.group {
/*   position: relative; */
}

.group.group--product.layout-group {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .group.group--product.layout-group {
    margin-top: 6.25rem;
  }
}

.group__title {
  text-align: center;
  padding-top: 2.5rem;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .group__title {
    font-size: 18px;
  }
}

.group__title::after {
  content: url(../images/group-head-icon.svg);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .group__title::after {
    content: "";
    top: 3px;
    left: 51%;
    background: url(../images/group-head-icon.svg);
    background-repeat: no-repeat;
    background-size: 156px;
    width: 160px;
    height: 22px;
  }
}

.group__text {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 13px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .group__text {
    margin-inline: auto;
    margin-top: 9px;
    padding: 0 4px;
    font-size: 15px;
    letter-spacing: 0.03em;
  }
}

.group__wrap {
  position: relative;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  width: 1280;
  margin-top: 1.625rem;
  height: 737px;
  background-image: url(../images/group-map.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .group__wrap {
    background-image: url(../images/group-map-sp.webp);
    width: 1440px;
    height: 40.5rem;
  }
}

.group__map {
	position: absolute;
	z-index: -1;
	inset: 0;
	object-fit: cover;
	object-position: center;
}

.group__wrap span {
  position: absolute;
}

.group01 {
  top: 9%;
  left: 12.8%;
  transition: 0.3s transform;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .group01 {
    top: 6%;
    left: 13%;
  }
}

.group01:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group02 {
  top: 14.1%;
  left: 27.8%;
  transition: 0.3s transform;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .group02 {
    top: 11%;
    left: 27%;
  }
}
.group02 .text {
  font-size: 10px;
}

.group02:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group03 {
  cursor: pointer;
  top: 8.7%;
  left: 46%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group03 {
    top: 6.4%;
    left: 38%;
  }
}

.group03:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group04 {
  cursor: pointer;
  top: 19.5%;
  left: 77.7%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group04 {
    top: 17%;
    left: 77%;
  }
}

.group04:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group05 {
  cursor: pointer;
  top: 31.3%;
  left: 17.9%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group05 {
    top: 30%;
    left: 17%;
  }
}
.group05 .text {
  font-size: 10px;
}

.group05:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group06 {
  cursor: pointer;
  top: 42.2%;
  left: 34.5%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group06 {
    top: 39%;
    left: 34%;
  }
}

.group06:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group07 {
  cursor: pointer;
  top: 27%;
  left: 53%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group07 {
    top: 25%;
    left: 53%;
  }
}
.group07 .text {
  font-size: 10px;
}

.group07:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group08 {
  cursor: pointer;
  top: 42%;
  left: 90.3%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group08 {
    top: 40%;
    left: 90%;
  }
}

.group08:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group09 {
  cursor: pointer;
  top: 51%;
  left: 12.9%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group09 {
    top: 49%;
    left: 12%;
  }
}
.group09 .text {
  font-size: 10px;
}

.group09:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group10 {
  cursor: pointer;
  top: 72.2%;
  left: 34.5%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group10 {
    top: 71%;
    left: 34%;
  }
}
.group10 .text {
  font-size: 10px;
}

.group10:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group11 {
  cursor: pointer;
  top: 60.4%;
  left: 44.3%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group11 {
    top: 58%;
    left: 44%;
  }
}
.group11 .text {
  font-size: 10px;
}

.group11:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group12 {
  cursor: pointer;
  top: 50.8%;
  left: 61%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group12 {
    top: 48%;
    left: 61%;
  }
}

.group12:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group13 {
  cursor: pointer;
  top: 50.8%;
  left: 73%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group13 {
    top: 49%;
    left: 72%;
  }
}

.group13:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.group14 {
  cursor: pointer;
  top: 73.1%;
  left: 10.8%;
  transition: 0.3s transform;
}
@media screen and (max-width: 767px) {
  .group14 {
    top: 71%;
    left: 11%;
  }
}
.group14 .text {
  font-size: 10px;
}

.group14:hover {
  transform: scale(1.2);
  transition: 0.3s transform;
}

.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__body {
  position: relative;
  display: inline-block;
  width: 90%;
  max-width: 62.5rem;
  padding: 2.5rem;
  background-color: #fbfbfb;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .modal__body {
    padding: 1.25rem 1.0625rem 2.5rem;
  }
}

.modal__close-button {
  position: relative;
  margin-left: auto;
  top: 0.625rem;
  right: 0.625rem;
  width: 3.75rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal__close-button {
    width: 3.75rem;
    right: 0;
  }
}

.modal__close-button span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #ffffff;
  transition: 0.5s;
}

.modal__close-button p {
  font-size: 0.5rem;
  text-align: center;
}

.modal__close-button span:nth-of-type(1) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(20deg);
  background-color: #2f2f2f;
}

.modal__close-button span:nth-of-type(2) {
  top: -0.1875rem;
  transform: translateX(-50%) rotate(-20deg);
  background-color: #2f2f2f;
}

.modal__content {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .modal__content {
    width: 100%;
    flex-direction: column;
  }
}

.modal__title-wrap {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #dadee2;
}
@media screen and (max-width: 767px) {
  .modal__title-wrap {
    flex-direction: column;
    width: 100%;
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}

.modal__place {
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.5454545455;
  color: #2a90a9;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .modal__place {
    font-size: 0.625rem;
    padding: 0.25rem 0.75rem;
  }
}

.modal__title {
  font-size: 1.25rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .modal__title {
    font-size: 1.25rem;
    margin-right: 0rem;
    margin-right: auto;
  }
}

.modal__text {
  font-size: 1rem;
  margin-top: 1rem;
  letter-spacing: 0.04em;
  line-height: 2;
  max-width: 32rem;
}
@media screen and (max-width: 767px) {
  .modal__text {
    margin-top: 1rem;
    font-size: 0.625rem;
    margin-top: 0.75rem;
    margin-right: auto;
  }
}

.modal__img {
  border-radius: 0.5rem;
  width: 100%;
  max-width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .modal__img {
    margin-top: 0.9375rem;
  }
}

.modal__img img {
  aspect-ratio: 380/260;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  border-radius: 0.5rem;
}

.modal__btn {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .modal__btn {
    margin-top: 1.625rem;
  }
}

@media screen and (max-width: 767px) {
  .button-text {
    font-size: 0.875rem;
  }
}

.modal__wrap {
  margin-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .modal__wrap {
    margin-left: 0;
  }
}

/* アニメーションテキスト */
.text {
  overflow-y: hidden;
  color: transparent;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 0 0 #12929d;
  transition: text-shadow 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  text-align: center;
  width: 65px;
}

.text.text--col2 {
  text-shadow: 0 0 0 #12929d;
}

@media (min-width: 767px) {
	.text {
		text-shadow: 0 1.5em 0 #12929d, 0 0 0 #12929d;
	}
	
	.text.text--col2 {
	  text-shadow: 0 40px 0 #12929d, 0 0 0 #12929d;
	}
	
	.group01:hover .text {
	  text-shadow: 0 0 0 #12929d, 0 -1.5em 0 #12929d;
	}

	.group02:hover .text {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group03:hover .text {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group04:hover .text {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group05:hover .text.text--col2 {
	  text-shadow: 0 0 0 #12929d, 0 -1.5em 0 #12929d;
	}

	.group06:hover .text {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group07:hover .text.text--col2 {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group08:hover .text {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group09:hover .text.text--col2 {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group10:hover .text.text--col2 {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group11:hover .text.text--col2 {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group12:hover .text {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group13:hover .text {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}

	.group14:hover .text.text--col2 {
	  text-shadow: 0 0 0 #12929d, 0 -2.8125rem 0 #12929d;
	}
}


.about {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 139px;
    padding-bottom: 37px;
    overflow-x: hidden;
  }
}

.about__inner {
  display: flex;
  flex-direction: row-reverse;
  gap: 4.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.about__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 22rem;
  gap: 4rem;
  transform: translateX(12px);
}
@media screen and (max-width: 767px) {
  .about__heading {
    max-width: none;
    gap: 54px;
    transform: none;
  }
}

.about__text {
  line-height: 2;
  letter-spacing: 0.04em;
  font-size: 1rem;
  padding: 0 13px;
}
@media screen and (max-width: 767px) {
  .about__text {
    padding: 0 1px;
  }
}

.about__items {
  max-width: 48.25rem;
  width: 100%;
  padding-top: 66px;
}
@media screen and (max-width: 767px) {
  .about__items {
    padding-top: 0rem;
  }
}

.about__item.about__item--large {
  border-radius: 0.625rem;
}

.about__item-wrap {
  display: flex;
  gap: 3.5rem;
  margin-top: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .about__item-wrap {
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }
}

.about__item-wrap .contact-option__link.contact-option__link--about {
  font-size: 1.25rem;
  width: 86.8%;
  bottom: 9%;
  z-index: 1;
}

.contact-option__link.contact-option__link--about {
  position: absolute;
  bottom: 0.875rem;
  margin-top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 93.8%;
  justify-content: space-between;
  color: #ffffff;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .contact-option__link.contact-option__link--about {
    font-size: 1.25rem;
  }
}

.about__item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.5s;
}

.about__item a img {
  height: 100%;
}

.about__item a picture img {
  aspect-ratio: 772/249;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0px -99px;
     object-position: 0px -99px;
  height: 100%;
  transition: transform 0.5s;
}
@media screen and (max-width: 767px) {
  .about__item a picture img {
    aspect-ratio: 690/408;
    -o-object-position: center;
       object-position: center;
  }
}

.about__item-img {
  transition: transform 0.5s;
}

.about__item-img img {
  aspect-ratio: 358/204;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  transition: transform 0.5s;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__item-img img {
    aspect-ratio: 690/408;
  }
}

.about__title {
  letter-spacing: 0.375rem;
}
@media screen and (max-width: 767px) {
  .about__title {
    margin-right: 0;
  }
}

.about__item-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.about__item-button-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffa500;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.5s ease;
  transform: translate(-24px, -9px);
  width: 36px;
  height: 36px;
}

.about__item:hover img {
  transform: scale(1.1);
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}

.about__item:hover a {
  opacity: 1;
}

.news {
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .news {
    padding-bottom: 114px;
  }
}

.news__title {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news__title {
    font-size: 28px;
    padding-left: 26px;
  }
}
@media screen and (max-width: 767px) {
  .news__title::before {
    left: -3px;
    top: 46%;
  }
}

.news_heading {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .news_heading {
    flex-direction: column;
    align-items: start;
    gap: 36px;
  }
}

@media screen and (max-width: 767px) {
  .news_heading .button-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 258px;
    padding: 16px 13px 16px 34px;
    justify-content: space-between;
  }
  .news_heading .button-container .button-text {
    margin: 0;
  }
}

.news_heading .button-container .button-icon {
  margin-left: 0.9375rem;
}

.news__nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .news__nav-wrap {
    flex-direction: column;
    align-items: baseline;
  }
}

.news-nav__list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 28.125rem;
}
@media screen and (max-width: 767px) {
  .news-nav__list {
    gap: 1rem;
  }
}

.news-nav__list-item {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #999999;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.news-nav__list-item.is-current {
  font-weight: 700;
  color: #2a90a9;
}

@media screen and (max-width: 767px) {
  .news__btn {
    margin-top: 2rem;
  }
}

.js-tab-content.news-list__item {
  display: none;
}

.js-tab-content.news-list__item.is-active {
  display: block;
}


.news-list__item a {
  display: flex;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .sub-news-list__news.news .news-list__item a {
    padding: 0;
  }
}

.news-list__item-img {
  max-width: 13.125rem;
  width: 100%;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-list__item-img {
    max-width: 7.5rem;
  }
}

.news-list__item-img img {
  width: 100%;
  aspect-ratio: 210/120;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .news-list__item-img img {
    aspect-ratio: 120/68;
  }
}

.news-list__item-content {
  position: relative;
  margin-left: 2rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .news-list__item-content {
    margin-left: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.news-list__item-content__arrow {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .news-list__item-content__arrow {
    display: none;
  }
}

.news-list__item-meta {
  display: flex;
  align-items: center;
}

.news-list__item-date {
  font-size: 0.875rem;
  line-height: 1;
  color: #999999;
}

.news-list__item-category {
  margin-left: 1.25rem;
  padding: 0.3125rem;
  min-width: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #2a90a9;
  background-color: #f5f5f5;
  text-align: center;
  border-radius: 1.25rem;
}

.news-list__item-title {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news-list__item-title {
    line-height: 1.8;
    margin-top: 9px;
  }
}

.news__list {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #dadee2;
  border-bottom: 1px solid #dadee2;
}

.news-list__item:hover .news-list__item-img img {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

.news-list__item:hover a {
  opacity: 1;
}

.news-list__item:hover a .news-list__item-title {
  opacity: 0.7;
}

.wave {
  position: relative;
}

canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .news_bottom__btn {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .news_bottom__btn .button-icon {
    margin-left: 6.375rem;
    margin-top: 0;
  }
}

.js-tab-content.news__list.is-current {
  display: block;
}

.js-tab-content.news__list {
  display: none;
}

.company-history__list {
  background-color: #fff;
}

.swiper-box {
  position: relative;
}

@media screen and (max-width: 767px) {
  .button-container.button-container--news {
    display: flex;
    align-items: center;
    margin-inline: auto;
    margin-top: 2.5rem;
  }
}

.heading {
  padding-top: 15.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .heading {
    padding-top: 6.875rem;
  }
}

.heading__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .heading__inner {
    flex-direction: column;
    align-items: normal;
  }
}

.heading__inner.inner {
  max-width: 1250px;
}
.heading__title {
  font-family: "BIZ UDPMincho", serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .heading__title {
    font-size: 1.75rem;
    margin-top: 0rem;
  }
}

.heading__title-sub {
  font-size: 1rem;
  font-family: "BIZ UDPGothic", sans-serif;
  color: #12929d;
  display: block;
  margin-top: 1.25rem;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .heading__title-sub {
    padding-left: 0.125rem;
    margin-top: 1rem;
    font-size: 0.75625rem;
  }
}

.customize {
  position: relative;
}

.layout-customize.layout-customize--single-business {
  margin-top: 18rem;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .layout-customize.layout-customize--single-business {
    margin-top: 7.5rem;
    margin-bottom: 6.25rem;
  }
}

.customize__inner.inner {
  max-width: 63.125rem;
}

.customize__wrap {
  background-image: url(../images/customize.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 4.4375rem;
  padding-bottom: 4.4375rem;
  padding-left: 1.5rem;
  width: 100%;
  max-width: 60rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .customize__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.customize__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #2f2f2f, transparent);
  opacity: 0.5;
}

.customize__title {
  padding-left: 1.75rem;
  position: relative;
  font-size: 1.625rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .customize__title {
    font-size: 1.625rem;
  }
}

.customize__title::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-color: #77bcc2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.customize__text {
  margin-top: 1rem;
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #ffffff;
  width: 66.4%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .customize__text {
    width: 93%;
  }
}

.customize__btn {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.customize__btn .button-text {
  margin-right: 0rem;
}


.customize__contents-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0.5rem;
}

.customize__contents-wrap .customize__img img {
  transition: 0.3s transform;
  aspect-ratio: 960/360;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .customize__contents-wrap .customize__img img {
    aspect-ratio: 342/440;
  }
}

.customize__contents-wrap:hover .customize__img img {
  transform: scale(1.1);
  transition: 0.3s transform;
}

.customize__contents {
  display: flex;
  align-items: center;
  padding-left: 5rem;
  margin-top: 0rem;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .customize__contents {
    padding-left: 0rem;
  }
}

.layout-product-detail {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .layout-product-detail {
    margin-top: 7.5rem;
  }
}

.division-head__title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .division-head__title {
    font-size: 1.5rem;
  }
}

.division-head__cards {
  counter-reset: list-counter;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .division-head__cards {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.5rem;
  }
}

.division-head__card {
  position: relative;
}
@media screen and (max-width: 767px) {
  .division-head__card {
    max-width: 25rem;
    margin-inline: auto;
  }
}

/* .division-list__tops-btn .button-icon {
  margin-left: 5rem;
} */

.division-head__card a {
  display: inline-block;
  padding-right: 2.8125rem;
  padding-bottom: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .division-head__card a {
    padding-right: 0rem;
    padding-bottom: 3.25rem;
  }
}

@media screen and (max-width: 767px) {
  .division-head__card:not(:first-child) {
    border-top: 0.0625rem solid #dadee2;
    padding-top: 1.5rem;
  }
}

.division-head__card::before {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  right: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #000;
  border-right: 0.125rem solid #000;
  transform: translateX(-50%) rotate(135deg);
  transition: 0.3s;
}

.division-head__card:not(:first-child) {
  padding-left: 2.8125rem;
  border-left: 0.0625rem solid #dadee2;
}
@media screen and (max-width: 767px) {
  .division-head__card:not(:first-child) {
    border-left: none;
    padding-left: 0;
  }
}

.division-head__card-title {
  position: relative;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  font-weight: 700;
  color: #12929d;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .division-head__card-title {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .division-head__title.md-dots {
    padding-left: 1.5rem;
  }
}

.division-head__card-title::before {
  counter-increment: list-counter 1;
  content: "0" counter(list-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: #12929d;
}

@media screen and (max-width: 767px) {
  .division-head__card-text {
    margin-top: 1rem;
  }
}

.division__list > li {
  counter-increment: list-counter;
}

.division__list {
  counter-reset: list-counter;
  margin-top: 10rem;
  max-width: 78.9375rem;
  display: flex;
  flex-direction: column;
  gap: 17.5rem;
}
@media screen and (max-width: 767px) {
  .division__list {
    display: block;
    gap: 0;
    margin-top: 6.25rem;
    gap: 6.25rem;
  }
}

.division-list .division-list__item + .division-list__item {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .division-list .division-list__item + .division-list__item {
    margin-top: 6.25rem;
  }
}

.division-list__tops {
  display: flex;
  gap: 2.5625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .division-list__tops {
    flex-direction: column;
    gap: 0;
  }
}

.division-list__tops-contents {
  max-width: 38.75rem;
  width: 100%;
  padding-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .division-list__tops-contents {
    display: contents;
  }
}

.division-list__tops-title {
  position: relative;
  padding-left: 6.5625rem;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .division-list__tops-title {
    font-size: 1.5rem;
    padding-left: 4.6875rem;
    margin-right: auto;
  }
}

.division-list__tops-title::before {
  content: "0" counter(list-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: #65c0c8;
}
@media screen and (max-width: 767px) {
  .division-list__tops-title::before {
    font-size: 3.5rem;
  }
}

.division-list__tops-text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.038em;
  line-height: 2;
  font-feature-settings: "palt";
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .division-list__tops-text {
    margin-top: 1rem;
    order: 3;
    max-width: 33.75rem;
    margin-inline: auto;
  }
}

.division-list__tops-btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .division-list__tops-btn {
    order: 4;
    margin-top: 1rem;
  }
}

.division-list__tops-btn .button-text {
  margin-right: 0rem;
}
/* 
.division-list__tops-btn .button-icon {
  margin-left: 7.625rem;
} */

@media screen and (max-width: 767px) {
  .division-list__tops-btn .button-container {
    margin-inline: auto;
  }
}

.division-list__tops-img {
  max-width: 33.75rem;
  width: 100%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .division-list__tops-img {
    margin-top: 1.9375rem;
  }
}

.division-list__tops-img img {
  aspect-ratio: 540/540;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.division-list__products {
  position: relative;
  display: grid;
  -moz-column-gap: 5.0625rem;
       column-gap: 5.0625rem;
  row-gap: 2.875rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4.875rem;
  max-width: 66.25rem;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .division-list__products {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 4rem;
    max-width: 37.5rem;
  }
}

.division-list__products-item {
  position: relative;
  padding-bottom: 1rem;
  max-width: 17.5rem;
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.division-list__products-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #12929d 20%, rgba(190, 200, 201, 0.3) 20%);
}

.customize__inner.inner {
  max-width: 63.125rem;
}

.customize__contents-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0.5rem;
}

.customize__contents-wrap .customize__img img {
  transition: 0.3s transform;
  aspect-ratio: 960/360;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .customize__contents-wrap .customize__img img {
    aspect-ratio: 342/440;
  }
}

.customize__contents-wrap:hover .customize__img img {
  transform: scale(1.1);
  transition: 0.3s transform;
}

.customize__contents {
  display: flex;
  align-items: center;
  padding-left: 5rem;
  margin-top: 0rem;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .customize__contents {
    padding-left: 0rem;
  }
}

.layout-group.layout-group-sub {
  margin-top: 9.75rem;
}

.layout-group.layout-group-sub .group__title {
  padding-top: 2.25rem;
}

.layout-group.layout-group-sub .group__text:nth-child(2) {
  margin-top: 0.625rem;
}

.group.group-sub .group__wrap {
  height: 741px;
}
@media screen and (max-width: 767px) {
  .group.group-sub .group__wrap {
    height: 648px;
  }
}

.group-scroll-wrap {
  overflow-x: scroll;
  scrollbar-width: none;
}

.group-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.division {
  margin-top: 10.25rem;
}
@media screen and (max-width: 767px) {
  .archive .division {
    margin-top: 0rem;
  }
}

#business-bg-1 {
  /* 1番目のspanに適用 */
  position: absolute;
  background-image: url(../images/bg-business1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1339px;
  height: 500px;
  top: -104%;
  z-index: -1;
  left: -7%;
}
@media screen and (max-width: 767px) {
  #business-bg-1 {
    top: 23%;
    transform: rotate(8deg);
  }
}

#business-bg-2 {
  position: absolute;
  background-image: url(../images/bg-business2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1400px;
  height: 500px;
  top: -441%;
  z-index: -1;
  left: -28%;
}
@media screen and (max-width: 767px) {
  #business-bg-2 {
    left: -3%;
    top: -32%;
    transform: rotate(8deg);
  }
}

#business-bg-3 {
  position: absolute;
  background-image: url(../images/bg-business3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1409px;
  height: 500px;
  top: -62%;
  z-index: -1;
  left: -9%;
}
@media screen and (max-width: 767px) {
  #business-bg-3 {
    top: -36%;
    transform: rotate(20deg);
  }
}

.recruit-question__contents {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .recruit-question__contents {
    margin-top: 3rem;
  }
}

.customize__contents {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .customize__contents {
    align-items: baseline;
    width: 86%;
    top: 34%;
    left: 12%;
  }
}

.customize__contents:hover {
  transition: transform 0.3s;
}

.customize__inner {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .company-access__tab.tab .tab__menu-wrap .tab__menu {
    border: #aeb8c2 1px solid;
  }
}

.strength-list__item:nth-of-type(1) .bg-water {
  top: 83%;
  left: -4%;
  width: 15%;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(1) .bg-water {
    top: 81%;
    left: -2%;
    width: 29%;
    height: 11%;
  }
}

.strength-list__item:nth-of-type(2) .bg-water {
  top: 86%;
  right: -12%;
  width: 20%;
  height: 77%;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(2) .bg-water {
    top: 64%;
    right: -17%;
    width: 37%;
    height: 69%;
  }
}

.strength-list__item:nth-of-type(3) .bg-water {
  top: 87%;
  left: -5%;
  width: 17%;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(3) .bg-water {
    top: 80%;
    left: -2%;
    width: 34%;
    height: 42%;
  }
}

.strength-list__item:nth-of-type(4) .bg-water {
  top: 90%;
  right: -8%;
  width: 17%;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(4) .bg-water {
    top: 80%;
    right: -17%;
    width: 41%;
  }
}

.strength-list__item:nth-of-type(1) .bg-wave {
  top: 14%;
  left: 1%;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(1) .bg-wave {
    top: 48%;
    left: -66%;
    width: 136%;
    height: 43%;
  }
}

.strength-list__item:nth-of-type(2) .bg-wave {
  top: 14%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(2) .bg-wave {
    top: 60%;
    left: 17%;
    width: 163%;
    height: 59%;
    transform: rotate(200deg);
  }
}

.strength-list__item:nth-of-type(3) .bg-wave {
  top: 19%;
  left: -3%;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(3) .bg-wave {
    top: 53%;
    left: -75%;
    width: 151%;
    height: 55%;
  }
}

.strength-list__item:nth-of-type(4) .bg-wave {
  top: 0%;
  left: 0%;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(4) .bg-wave {
    top: 60%;
    left: 21%;
    width: 126%;
    height: 49%;
    transform: rotate(200deg);
  }
}

.strength {
  padding-bottom: 7.75rem;
}
@media screen and (max-width: 767px) {
  .strength {
    padding-bottom: 3.125rem;
  }
}

.layout-strength {
  margin-top: 15.125rem;
}
@media screen and (max-width: 767px) {
  .layout-strength {
    margin-top: 8.75rem;
  }
}

.strength__inner.inner {
  max-width: 93.125rem;
}
@media screen and (max-width: 767px) {
  .strength__inner.inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.strength-list {
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .strength-list {
    max-width: 37.5rem;
  }
}

.strength-list__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .strength-list__item {
    flex-direction: column;
  }
}

.strength-list__item-img::before {
  counter-increment: number;
  content: "0" counter(number);
  font-size: 8.75rem;
  line-height: 1;
  position: absolute;
  top: -6.5rem;
  right: -6%;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #65c0c8;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .strength-list__item-img::before {
    font-size: 3.5rem;
    right: -5%;
    top: -2.5625rem;
  }
}

.strength-list__item:nth-of-type(even) .strength-list__item-img::before {
  right: auto;
  left: -6%;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(even) .strength-list__item-img::before {
    left: -5%;
  }
}

.strength-list__item + .strength-list__item {
  margin-top: 18.25rem;
}
@media screen and (max-width: 767px) {
  .strength-list__item + .strength-list__item {
    margin-top: 7.5rem;
  }
}

.strength-list__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(even) {
    flex-direction: column;
  }
}

.strength-list__item-img {
  position: relative;
  width: 95%;
  z-index: 1;
  margin-left: calc(50% - 50vw);
}

.strength-list__item:nth-of-type(even) .strength-list__item-img {
  margin-left: 5.6875rem;
  border-radius: 0.5rem 0 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(even) .strength-list__item-img {
    margin-left: auto;
  }
}

.strength-list__item:nth-of-type(even) .strength-list__item-img img {
  border-radius: 0.5rem 0 0 0.5rem;
}

.strength-list__item-img img {
  width: 100%;
  aspect-ratio: 740/400;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .strength-list__item-img img {
    aspect-ratio: 358/194;
  }
}

.strength-list__item-text-wrap {
  margin-top: 3.3125rem;
  margin-left: 6.25rem;
  position: relative;
  z-index: 1;
  max-width: 27.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .strength-list__item-text-wrap {
    margin-right: auto;
    margin-left: auto;
    width: 91.8%;
    margin-top: 2.0625rem;
  }
}

.strength-list__item:nth-of-type(even) .strength-list__item-text-wrap {
  margin-left: 0rem;
}
@media screen and (max-width: 767px) {
  .strength-list__item:nth-of-type(even) .strength-list__item-text-wrap {
    margin-left: auto;
  }
}

.strength-list__item-title {
  padding-top: 0.5rem;
  font-size: 1.75rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #12929d;
  font-family: "BIZ UDPGothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .strength-list__item-title {
    font-size: 1.5625rem;
    line-height: 1.69;
    letter-spacing: -0.029em;
    padding-top: 0;
  }
}

.strength-list__item-text {
  margin-top: 1.9375rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .strength-list__item-text {
    margin-top: 1.625rem;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-left: 0;
    margin-right: auto;
    gap: 0.4375rem;
    margin-top: 1.4375rem;
  }
}

.breadcrumb span a span {
  color: #2a90a9;
  border-bottom: solid 0.0625rem #2a90a9;
}

.breadcrumb__between {
  display: inline-block;
  width: 12px;
  height: 2px;
  margin: 0 8px;
  background-color: #000;
}

.layout-recruit.layout-recruit--feature {
  margin-top: 0;
}

.sdgs-goal .bg-ball {
  top: 71%;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .sdgs-goal .bg-ball {
    top: 181%;
    left: -20%;
    height: 24%;
    width: 38%;
  }
}

.sdgs-goal .bg-water {
  top: 95%;
  left: -8%;
}
@media screen and (max-width: 767px) {
  .sdgs-goal .bg-water {
    top: 176%;
    width: 23%;
    left: -8%;
  }
}

.sdgs-theme__item:nth-child(3) .bg-water {
  top: -59%;
  left: -16%;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item:nth-child(3) .bg-water {
    display: none;
  }
}

.sdgs-theme__item:nth-child(2) .bg-water {
  top: -69%;
  right: -21%;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item:nth-child(2) .bg-water {
    top: -27%;
    right: 71%;
    width: 37%;
    height: 29%;
  }
}

.sdgs-goal {
  position: relative;
}

.layout-sdgs-goal {
  margin-top: 9.875rem;
}
@media screen and (max-width: 767px) {
  .layout-sdgs-goal {
    margin-top: 3.125rem;
  }
}

.sdgs-goal__inner.inner {
  max-width: 63.125rem;
}
@media screen and (max-width: 767px) {
  .sdgs-goal__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: none;
  }
}

.sdgs-purpose__inner.inner {
  max-width: 63.8125rem;
}
@media screen and (max-width: 767px) {
  .sdgs-purpose__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: none;
  }
}

.sdgs-declare__inner.inner {
  max-width: 63.9375rem;
}
@media screen and (max-width: 767px) {
  .sdgs-declare__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: none;
  }
}

.sdgs-goal__contents {
  display: flex;
  justify-content: space-between;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .sdgs-goal__contents {
    flex-direction: column-reverse;
    gap: 1.875rem;
  }
}

.sdgs-goal__item-img {
  max-width: 33rem;
}

.sdgs-goal__item-img img {
  aspect-ratio: 528/325;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.sdgs-goal__wrap {
  max-width: 23.5rem;
  width: 100%;
  padding-top: 3.125rem;
}

.sdgs-goal__wrap-title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .sdgs-goal__wrap-title {
    letter-spacing: 0.01em;
	  font-size: 1.5rem;
  }
}

.sdgs-goal__wrap-text {
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 1.375rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .sdgs-goal__wrap-text {
    letter-spacing: 0.07em;
    line-height: 1.9;
  }
}

@media screen and (max-width: 767px) {
  .sdgs-goal__wrap-text + .sdgs-goal__wrap-text {
    margin-top: 0.5rem;
  }
}

.md-dots {
  padding-left: 1.875rem;
  position: relative;
}

.md-dots::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  left: 0;
  top: 0.5625rem;
  background-color: #77bcc2;
  border-radius: 50%;
}

.layout-sdgs-purpose {
  margin-top: 11.3125rem;
}
@media screen and (max-width: 767px) {
  .layout-sdgs-purpose {
    margin-top: 5rem;
  }
}

.sdgs-purpose__title,
.sdgs-theme__title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.sdgs-declare__title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.sdgs-purpose__text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .sdgs-purpose__text {
    margin-top: 1.8125rem;
  }
}

.sdgs-declare__text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  font-feature-settings: "palt";
}

.sdgs-declare__text {
  margin-top: 1.4375rem;
  letter-spacing: 0.08em;
}

.sdgs-declare__text + .sdgs-declare__text {
  margin-top: 0.625rem;
}

.sdgs-purpose__text {
  margin-top: 1.4375rem;
}

.sdgs-purpose__date,
.sdgs-purpose__sign {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  display: block;
  text-align: right;
}

.sdgs-purpose__date {
  letter-spacing: 0.09em;
  margin-top: 3rem;
  padding-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .sdgs-purpose__date {
    padding-right: 0;
    margin-top: 2.1875rem;
  }
}

.sdgs-purpose__sign {
  margin-top: 0.0625rem;
  padding-right: 0.6875rem;
  letter-spacing: 0.026em;
}
@media screen and (max-width: 767px) {
  .sdgs-purpose__sign {
    padding-right: 0;
  }
}

.sdgs-declare {
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .sdgs-declare {
    padding-bottom: 6.25rem;
  }
}

.layout-sdgs-declare {
  margin-top: 15.125rem;
}
@media screen and (max-width: 767px) {
  .layout-sdgs-declare {
    margin-top: 6.375rem;
  }
}

.sdgs-declare__btn {
  margin-top: 2.25rem;
}

.sdgs-theme {
  overflow: hidden;
  padding-bottom: 3.125rem;
}

.layout-sdgs-theme {
  margin-top: 12.75rem;
}
@media screen and (max-width: 767px) {
  .layout-sdgs-theme {
    margin-top: 6.25rem;
  }
}

.sdgs-theme__inner.inner {
  max-width: 78.125rem;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: none;
  }
}

.sdgs-theme__item {
  position: relative;
}

@media screen and (max-width: 767px) {
  .sdgs-theme__item:nth-child(1) {
    padding-bottom: 17.25rem;
  }
}

.sdgs-theme__item-contents-icon {
  position: absolute;
  max-width: 31.625rem;
  width: 100%;
  bottom: -12%;
  right: -3%;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-contents-icon {
    max-width: 20.9375rem;
    bottom: 0;
    right: -10%;
  }
}

.sdgs-theme__item-contents-icon img {
  aspect-ratio: 506/211;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-contents-icon img {
    aspect-ratio: 335/223;
  }
}

@media screen and (max-width: 767px) {
  .sdgs-theme__title {
    font-size: 1.5rem;
  }
}

.sdgs-theme__list {
  max-width: 79.0625rem;
  width: 100%;
  margin-top: 4.5625rem;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__list {
    margin-top: 0.6875rem;
  }
}

.sdgs-theme__item:nth-child(2) {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item:nth-child(2) {
    margin-top: 6.3125rem;
  }
}

.sdgs-theme__item:nth-child(3) {
  margin-top: 25rem;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item:nth-child(3) {
    margin-top: 7rem;
  }
}

.sdgs-theme__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-header {
    flex-direction: column;
  }
}

.sdgs-theme__item-header-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
  padding-left: 1.25rem;
  color: #12929d;
  position: relative;
  padding-left: 6.5625rem;
  max-width: 35.875rem;
  width: 100%;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-header-title {
    font-size: 1.375rem;
    line-height: 1.44;
    padding-left: 4.875rem;
    margin-left: 0.5rem;
  }
}

.sdgs-theme__item-header-title::before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-header-title::before {
    font-size: 3.5625rem;
    margin-top: 0rem;
    margin-right: 0;
  }
}

.sdgs-theme__item-header-nav {
  display: flex;
  gap: 1.00625rem;
  padding-right: 0.875rem;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-header-nav {
    padding-right: 0;
    margin-top: 0.9375rem;
    gap: 0.3125rem;
  }
}

.sdgs-theme__item-header-nav-img img {
  aspect-ratio: 116/116;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.sdgs-theme__item-contents {
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-contents {
    margin-top: 2.875rem;
  }
}

.sdgs-theme__item-content {
  display: flex;
  gap: 3.5625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-content {
    flex-direction: column;
    gap: 1.4375rem;
  }
}

.sdgs-theme__item-content + .sdgs-theme__item-content {
  margin-top: 3.1875rem;
}

.sdgs-theme__item-content-img {
  width: 100%;
  max-width: 25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.sdgs-theme__item-content-img img {
  aspect-ratio: 400/400;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.sdgs-theme__item-content-wrap {
  width: 100%;
  max-width: 46.5rem;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-content-wrap {
    max-width: 21.875rem;
  }
}

.sdgs-theme__item-content-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.sdgs-theme__item-content-text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.093em;
  line-height: 2;
  margin-top: 0.9375rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-content-text {
    margin-top: 1rem;
  }
}

.sdgs-theme__item-content-tag {
  display: inline-block;
  border-radius: 0.25rem;
  padding: 0.5rem 0.625rem;
  background-color: #12929d;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-content-tag {
    margin-top: 1rem;
  }
}

.sdgs-theme__item-content-sub-text,
.sdgs-theme__item-content-sub-item {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-top: 0.5rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item-content-sub-text,
  .sdgs-theme__item-content-sub-item {
    margin-top: 0.5rem;
  }
}

.sdgs-theme__item-content-sub-text + .sdgs-theme__item-content-sub-text {
  margin-top: 0rem;
}

.sdgs-theme__item-content-sub-item + .sdgs-theme__item-content-sub-item {
  margin-top: 0rem;
}

.sdgs-declare__inner .button-container .button-text {
  margin-right: 2.125rem;
}

.sdgs-theme__item-contents-bg {
  position: absolute;
  z-index: -20;
  margin: 0 calc(50% - 50vw);
}

.sdgs-theme__item:nth-of-type(1) .sdgs-theme__item-contents-bg {
  top: -11%;
  left: -31%;
  width: 157vw;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item:nth-of-type(1) .sdgs-theme__item-contents-bg {
    top: 0;
    left: -74%;
    width: 247vw;
  }
}

.sdgs-theme__item:nth-of-type(2) .sdgs-theme__item-contents-bg {
  top: -1%;
  left: 6%;
  width: 112vw;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item:nth-of-type(2) .sdgs-theme__item-contents-bg {
    top: 0;
    left: -74%;
    width: 247vw;
  }
}

.sdgs-theme__item:nth-of-type(3) .sdgs-theme__item-contents-bg {
  top: -6%;
  left: -12%;
  width: 112vw;
}
@media screen and (max-width: 767px) {
  .sdgs-theme__item:nth-of-type(3) .sdgs-theme__item-contents-bg {
    top: 0;
    left: -74%;
    width: 247vw;
  }
}

.company-heading.heading .heading__inner.inner {
  width: 99%;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.sub-title {
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-weight: 400;
}

.company-massage__title.sub-title {
  font-size: 1.6875rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-weight: 400;
  margin-left: 7.4375rem;
}
@media screen and (max-width: 767px) {
	.sub-title{
	font-size:24px;	
	}
	p.company-plan__text {
    line-height: 1.8;
}
  .company-massage__title.sub-title {
    letter-spacing: -0.06em;
    font-size: 24px;
    margin-left: 1.0625rem;
    padding-left: 1.6875rem;
  }
}

.layout__menu {
  margin-top: 7.375rem;
}
@media screen and (max-width: 767px) {
  .layout__menu {
    margin-top: 6.0625rem;
  }
}

.menu__list {
  background-color: #f9f9f9;
  display: grid;
  gap: 0.875rem 3.5625rem;
  grid-template-columns: repeat(4, 1fr);
  padding: 2.3125rem 4.75rem;
}
@media screen and (max-width: 767px) {
  .menu__list {
    padding-top: 1.1875rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0rem;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .menu__item + .menu__item {
    padding-top: 0rem;
  }
}

.menu__inner.inner {
  max-width: 78.125rem;
}
@media screen and (max-width: 767px) {
  .menu__inner.inner {
    max-width: 22.75rem;
  }
}

.menu__item {
  position: relative;
  width: 100%;
  max-width: 14rem;
}
.menu__item a {
  display: inline-block;
  padding: 1.5625rem 0rem 1.5625rem 0rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .menu__item a {
    padding: 1.5625rem 0rem 1.25rem 0rem;
  }
}

.menu__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #12929d 20%, rgba(190, 200, 201, 0.3) 20%);
}

.menu__button {
  position: relative;
  font-size: 0.875rem;
  line-height: 0;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .menu__button {
    letter-spacing: 0.04em;
  }
}

.menu__arrow {
  position: absolute;
  top: 50%;
  right: 0.6875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #000;
  border-right: 0.125rem solid #000;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .menu__arrow {
    right: 1rem;
  }
}

.company__inner.inner {
  max-width: 78.125rem;
}

.company__profile-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .company__profile-wrap {
    flex-direction: column;
    margin-top: 1.4375rem;
  }
}

.company__profile {
  max-width: 35rem;
  width: 100%;
}

.company__profile:nth-child(2) {
  border-top: 1px solid #dadee2;
}
@media screen and (max-width: 767px) {
  .company__profile:nth-child(2) {
    border: none;
  }
}

.company-profile__list {
  padding-bottom: 2.1875rem;
  padding-top: 2.1875rem;
  display: flex;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #dadee2;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .company-profile__list {
    padding-bottom: 2rem;
    padding-top: 2rem;
    font-size: 1rem;
    flex-direction: column;
  }
}

.company__profile-wrap > .company__profile:first-child > .company-profile__list:first-child {
  padding-top: 2.125rem;
  border-top: 1px solid #dadee2;
}
@media screen and (max-width: 767px) {
  .company__profile-wrap > .company__profile:first-child > .company-profile__list:first-child {
    padding-top: 1.3125rem;
  }
}

.company-profile__term {
  max-width: 10.9375rem;
  width: 100%;
  flex-shrink: 0;
  color: #12929d;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company-profile__term {
    max-width: 8.75rem;
    margin-right: auto;
  }
}

.company-profile__description {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .company-profile__description {
    margin-right: auto;
/*     margin-top: 1.0625rem; */
  }
}

.company-profile__description a {
  display: flex;
  align-items: center;
	gap: 0.5rem;
}
.layout-company-message {
  margin-top: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .layout-company-message {
    margin-top: 5.25rem;
  }
}

.company-massage__inner.inner {
  max-width: 78.125rem;
}

.company-massage__img {
  margin-top: 4.0625rem;
  -moz-text-align-last: left;
       text-align-last: left;
  width: 75%;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .company-massage__img {
    margin-top: 2.25rem;
    width: 88%;
  }
}

.company-massage__img img {
  aspect-ratio: 1080/560;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.company-massage__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
  max-width: 70.5rem;
  margin-top: 6.3125rem;
}
@media screen and (max-width: 767px) {
  .company-massage__contents {
    flex-direction: column;
    margin-top: 2.0625rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.company-massage__content-title-wrap {
  max-width: 27.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company-massage__content-title-wrap {
    display: contents;
  }
}

.company-massage__contents-title {
  font-size: 1.6875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.85;
  font-family: "BIZ UDPMincho", serif;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .company-massage__contents-title {
    letter-spacing: 0.04em;
    font-size: 1.25rem;
    letter-spacing: 0.03;
    line-height: 1.8;
  }
}

.company-massage__contents-name {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .company-massage__contents-name {
    margin-top: 1.5625rem;
    order: 1;
    margin-left: auto;
    font-size: 0.75rem;
  }
}

.company-massage__contents-name span {
  font-family: "BIZ UDPMincho", serif;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .company-massage__contents-name span {
    font-size: 1.3125rem;
    margin-left: 1.125rem;
  }
}

.company-massage__content-text-wrap {
  max-width: 30.375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company-massage__content-text-wrap {
    margin-top: 0.875rem;
  }
}

.company-massage__contents-text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 2;
  font-feature-settings: "palt";
}

.company-massage__contents-text + .company-massage__contents-text {
  margin-top: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .company-massage__contents-text + .company-massage__contents-text {
    margin-top: 1.5rem;
  }
}

.company-vision {
  position: relative;
}

.layout-company-vision {
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .layout-company-vision {
    padding-top: 6rem;
  }
}

.company-vision__inner.inner {
  max-width: 78.125rem;
}
@media screen and (max-width: 767px) {
  .company-vision__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: none;
  }
}

.company-vision__text {
  margin-top: 1.6875rem;
  line-height: 1.9;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .company-vision__text {
    margin-top: 1.5625rem;
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
    line-height: 1.87;
  }
}

.company-vision__contents {
  display: flex;
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .company-vision__contents {
    margin-top: 2.6875rem;
    flex-direction: column;
  }
}

.company-vision__img {
  max-width: 27.6875rem;
  width: 100%;
  padding-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .company-vision__img {
    max-width: 21rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.company-vision__img img {
  aspect-ratio: 435/582;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.company-vision__item {
  position: relative;
  padding-left: 5.0625rem;
  padding-bottom: 2rem;
  border-bottom: 0.125rem #12929d dashed;
}
@media screen and (max-width: 767px) {
  .company-vision__item {
    padding-left: 4.125rem;
    padding-top: 2.25rem;
    padding-bottom: 1.625rem;
  }
}

.company-vision__item + .company-vision__item {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .company-vision__item + .company-vision__item {
    margin-top: 0rem;
  }
}

.company-vision__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #12929d;
}

.company-vision__item-list {
  margin-top: 0.5rem;
}

.company-vision__item-list li {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .company-vision__item-list li {
    font-feature-settings: "palt";
  }
}

.company-vision__item-list li:not(:first-child) {
  margin-top: 0.5rem;
}

.company-vision__item-category {
  position: absolute;
  left: 1.125rem;
  writing-mode: vertical-rl;
  text-transform: capitalize;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #a7dce0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .company-vision__item-category {
    left: 0;
    top: 2.3125rem;
  }
}

.layout-company-organization {
  margin-top: 12.3125rem;
}
@media screen and (max-width: 767px) {
  .layout-company-organization {
    margin-top: 6.4375rem;
  }
}

.company-organization__inner.inner {
  max-width: 70.625rem;
}
@media screen and (max-width: 767px) {
  .company-organization__inner.inner {
    max-width: 75rem;
  }
}

.wrap {
  flex-wrap: nowrap;
  overflow-x: scroll;
}

.company-organization__img {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-organization__img {
    margin-top: 2.3125rem;
    width: 100vw;
    width: 35.6875rem;
  }
}

.company-organization__img img {
  aspect-ratio: 1080/925;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company-organization__img img {
    aspect-ratio: 580/487;
  }
}

.layout-company-access {
  margin-top: 11.1875rem;
}
@media screen and (max-width: 767px) {
  .layout-company-access {
    margin-top: 10.875rem;
  }
}

.company-access__map {
  margin-top: 4.9375rem;
}
@media screen and (max-width: 767px) {
  .company-access__map {
    margin-top: 0;
  }
}

.company-access__inner.inner {
  max-width: 78.125rem;
}
@media screen and (max-width: 767px) {
  .company-access__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: none;
  }
}

.company-access__contents {
  margin-top: 4.0625rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .company-access__contents {
    flex-direction: column;
  }
}

.company-access__img {
  width: 100%;
  max-width: 35rem;
}

.company-access__img img {
  aspect-ratio: 560/320;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .company-access__img img {
    aspect-ratio: 358/205;
  }
}

.company-access__text-wrap {
  width: 100%;
  max-width: 35rem;
  padding-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .company-access__text-wrap {
    padding-top: 2.0625rem;
  }
}

.company-access__how {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #2a90a9;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #ffffff;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .company-access__how {
    padding: 0.5rem 1rem;
  }
}

.company-access__how:nth-of-type(2) {
  margin-top: 1.1875rem;
}

.company-access__text-wrap > .company-access__how:nth-child(2) {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-access__text-wrap > .company-access__how:nth-child(2) {
    margin-top: 0.625rem;
  }
}

.company-access__text {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  font-feature-settings: "palt";
  letter-spacing: -0.08em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .company-access__text {
    margin-top: 0.625rem;
    line-height: 1.7;
    letter-spacing: -0.08em;
  }
}

.company-access__how:nth-child(2) {
  margin-top: 0.9375rem;
}

.company-access__btn {
  text-transform: capitalize;
  margin-top: 3.125rem;
  width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .company-access__btn {
    margin-top: 2.0625rem;
    width: 100%;
  }
}

.company-access__btn .button-container {
  width: 16.125rem;
}

.company-access__btn .button-text {
  text-transform: capitalize;
  margin-right: 1.875rem;
}

.company-access__googlemap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-access__googlemap {
    margin-top: 0.625rem;
  }
}

.company-access__tab {
  display: flex;
  grid-area: 1.25rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .company-access__tab {
    flex-direction: column;
  }
}

.company-access__tab.item .tab__content {
  margin-top: 0rem;
}

.tab__menu {
  display: flex;
  flex-direction: column;
  border: #aeb8c2 1px solid;
  border-radius: 0.5rem;
  max-width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .tab__menu {
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  .company-access__tab.tab .tab__content {
    overflow-x: scroll;
  }
}

@media screen and (max-width: 767px) {
  .company-access__tab.tab .tab__content-item {
    width: 55rem;
  }
}

.company-access__tab.tab .tab__menu-item::before,
.company-access__tab.tab .tab__menu-item.is-active::before {
  display: none;
}

.company-access__tab.tab .tab__menu-item {
  padding: 1.1875rem 6.625rem 1.1875rem 0rem;
}
@media screen and (max-width: 767px) {
  .company-access__tab.tab .tab__menu-item {
    padding: 0.9375rem 0rem 0.8125rem 0rem;
    font-size: 0.8125rem;
  }
}

.tab__menu-item {
  padding: 1.1875rem 7.875rem 1.1875rem 0.4375rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  position: relative;
  padding-left: 1.25rem;
  width: 100%;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .tab__menu-item {
    padding: 0.9375rem 0rem 0.8125rem 0rem;
    font-size: 0.8125rem;
  }
}

.tab__menu-item + .tab__menu-item {
  border-top: 1px solid #aeb8c2;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .tab__menu-item + .tab__menu-item {
    font-size: 0.8125rem;
    border-top: none;
    border-left: #aeb8c2 1px solid;
  }
}

.tab__menu-item.is-active .tab__menu-item.is-active {
  color: #73b2c8;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .tab__menu-item.is-active .tab__menu-item.is-active {
    font-size: 0.8125rem;
  }
}

.tab__menu-item::before {
  position: absolute;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #999999;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .tab__menu-item::before {
    left: 0.5625rem;
  }
}

.tab__menu-item span {
  display: inline-block;
  padding-left: 0.875rem;
  position: relative;
}

.tab__menu-item span::before {
  position: absolute;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  left: 0rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #999999;
  border-radius: 50%;
}

.tab__menu-item.is-active span {
  padding-left: 1rem;
  color: #73b2c8;
}

.tab__menu-item.is-active span::before {
  background-color: #73b2c8;
  width: 0.5rem;
  height: 0.5rem;
}

.guideline__tab.tab .tab__menu-item,
.recruit-question__tab.tab .tab__menu-item {
  border: none;
}
@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__menu-item,
  .recruit-question__tab.tab .tab__menu-item {
    padding: 0;
    width: auto;
  }
}

.guideline__tab.tab .tab__menu-item {
  padding: 1.1875rem 2.125rem 1.1875rem 0.4375rem;
}

.recruit-question__tab.tab .tab__menu-item {
  padding: 1.1875rem 0rem 1.1875rem 0.8125rem;
  padding-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .recruit-question__tab.tab .tab__menu-item {
    padding: 0;
  }
}

.recruit-question__tab.tab .tab__menu-item {
  padding-left: 1.0625rem;
}

@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__menu-item::before,
  .recruit-question__tab.tab .tab__menu-item::before {
    display: none;
  }
}

.tab__menu-item.is-active::before {
  background-color: #73b2c8;
  width: 0.5rem;
  height: 0.5rem;
  left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .tab__menu-item.is-active::before {
    left: 0.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .tab__content {
    margin-top: 1.25rem;
  }
}

.tab__content-item {
  display: none;
  width: 100%;
  max-width: 55rem;
}

.company-access__tab.tab .tab__content-item {
  width: 100%;
  max-width: 55rem;
}
@media screen and (max-width: 767px) {
  .company-access__tab.tab .tab__content-item {
    width: 1000px;
  }
}

.tab__content-item-img img {
  aspect-ratio: 880/378;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.tab__content-item.is-active {
  display: block;
  animation: fade 0.3s;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.company-access__tab.tab {
  gap: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .company-access__tab.tab {
    gap: 1.25rem;
  }
}

.company-access__tab.tab .tab__content {
  max-width: 55rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company-access__tab.tab .tab__content {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    white-space: nowrap;
    overflow-x: scroll;
    padding: 0;
  }
}

.guideline__tab.tab .tab__content {
  max-width: 55rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__content {
    padding: 0;
  }
}

.test-wrap {
  flex-wrap: nowrap;
  overflow-x: scroll;
}

.company-access__tab.tab .tab__menu-wrap .tab__menu-title {
  font-size: 1.3125rem;
}

.company-access__tab.tab .tab__menu-wrap .tab__menu {
  margin-top: 1.125rem;
  max-width: 15.0625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company-access__tab.tab .tab__menu-wrap .tab__menu {
    max-width: none;
    margin-top: 0.625rem;
  }
}

.company-access__tab.tab .tab__menu-wrap {
  max-width: 15.0625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company-access__tab.tab .tab__menu-wrap {
    margin-top: 3.5rem;
    max-width: none;
  }
}

.company-access__tab.tab .tab__content .tab__content-item img {
  aspect-ratio: 880/378;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.recruit-question {
  padding-top: 6.875rem;
  padding-bottom: 8.75rem;
  background-color: #fbfbfb;
}
@media screen and (max-width: 767px) {
  .recruit-question {
    padding-bottom: 6.25rem;
  }
}

.recruit-question__tab.tab {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-question__tab.tab {
    flex-direction: column;
    gap: 0rem;
  }
}

.recruit-question__tab.tab .tab__menu-item {
  text-align: left;
}

.recruit-question__tab.tab .tab__menu-item::before {
  left: 0.5rem;
}

.guideline__tab.tab {
  display: flex;
  gap: 6.8125rem;
}
@media screen and (max-width: 767px) {
  .guideline__tab.tab {
    gap: 0;
    flex-direction: column;
  }
}

.guideline__tab.tab .tab__menu {
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__menu {
    background-color: #f0fafb;
  }
}

.guideline__tab.tab .tab__content {
  border-top: #dadee2 1px solid;
}

.guideline__tab.tab .tab__menu-wrap,
.recruit-question__tab.tab .tab__menu-wrap {
  text-align: left;
  max-width: 15rem;
}
@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__menu-wrap,
  .recruit-question__tab.tab .tab__menu-wrap {
    max-width: none;
    width: 100%;
    text-align: center;
    justify-content: space-between;
    padding: 0rem;
  }
}

.recruit-question__tab.tab .tab__menu-wrap {
  padding: 1.125rem 1.875rem 1.25rem 2.4375rem;
	overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .recruit-question__tab.tab .tab__menu-wrap {
    padding: 0;
  }
}

.recruit-question__tab.tab .tab__content {
  max-width: 55rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .recruit-question__tab.tab .tab__content .tab__content-item {
    width: 100%;
    padding: 0;
  }
}

.guideline__tab.tab .tab__menu-item.is-active,
.recruit-question__tab.tab .tab__menu-item.is-active {
  left: 0;
  color: #77bcc2;
}

.guideline__tab.tab .tab__menu-item + .tab__menu-item,
.recruit-question__tab.tab .tab__menu-item + .tab__menu-item {
  border-bottom: none;
  border-top: #aeb8c2 1px solid;
}
@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__menu-item + .tab__menu-item,
  .recruit-question__tab.tab .tab__menu-item + .tab__menu-item {
    border: none;
  }
}

.company-history {
  background-color: #f9f9f9;
  padding-top: 4.125rem;
  padding-bottom: 3.125rem;
}

.company-history__inner.inner {
  width: 90%;
  max-width: 78.125rem;
  margin-left: auto;
  margin-left: auto;
}

.company-history__text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 2;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-history__text {
    margin-top: 0.625rem;
  }
}

.company-history__item {
  padding-left: 0;
  padding-right: 2.1875rem;
  flex-shrink: 0;
  width: 16.5625rem;
  position: relative;
  padding-bottom: 1.5rem;
}
.js-history-swiper .swiper-slide:first-child .company-history__item {
  padding-left: 47px;
}
@media screen and (max-width: 767px) {
  .company-history__item {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    flex-shrink: 0;
    width: 12.5rem;
  }
}

.company-history__item::before {
  content: "";
  position: absolute;
  height: 10.9375rem;
  width: 0.125rem;
  background-color: #f5f5f5;
  right: 0%;
}

.company-history__item:not(:first-child) {
  border-left: 0.0625rem solid #f9f9f9;
}

.company-history__number {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  padding-bottom: 1.9375rem;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  color: #12929D;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .company-history__number {
    padding-bottom: 1.25rem;
  }
}

.company-history__number span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  color: #12929D;
}

.company-history__number::after {
  content: "";
  height: 0.0625rem;
  width: 2.625rem;
  background-color: #2a90a9;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .company-history__number::after {
    width: 0.625rem;
  }
}

.company-history__text {
  margin-top: 1.625rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .company-history__text {
    margin-top: 0.625rem;
  }
}

.js-history-swiper .swiper-scrollbar-wrapper {
  height: 6.25rem;
}

.js-history-swiper .swiper-scrollbar {
  margin-bottom: 3.125rem;
}

.js-history-swiper .swiper-scrollbar-drag {
  height: 80px;
  width: 79px;
  position: relative;
  border-radius: 78%;
  left: 0;
  top: -40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../images/detail/company-button.svg);
}

.history-swiper .swiper-scrollbar-wrapper {
  height: 6.25rem;
  margin-top: 75px;
  margin-right: calc(50% - 50vw);
}

.history-swiper .swiper-scrollbar {
  margin-bottom: 3.125rem;
  position: static;
}

.history-swiper .swiper-scrollbar-drag {
  height: 80px;
  width: 79px;
  position: relative;
  border-radius: 78%;
  left: 0;
  top: -40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../images/detail/company-button.svg);
}

.js-history-swiper {
  margin-right: calc(50% - 50vw);
  padding-top: 2.125rem;
  background-color: #ffffff;
  display: flex;
  margin-top: 3.9375rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .js-history-swiper {
    margin-top: 0.625rem;
    gap: 1.875rem;
  }
}

.layout-company-plan {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .layout-company-plan {
    margin-top: 7.5rem;
  }
}

.company-plan__inner.inner {
  max-width: 81.25rem;
}

.company-plan__text {
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .company-plan__text {
    margin-top: 1.25rem;
  }
}

.company-group {
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .company-group {
    padding-bottom: 6.25rem;
  }
}

.layout-company-group {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .layout-company-group {
    margin-top: 7.5rem;
  }
}

.company-group__inner.inner {
  max-width: 78.125rem;
}

.company-group__content {
  padding-top: 3.375rem;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .company-group__content {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}

.company-group__content-inner {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.company-plan__btn {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-plan__btn {
    margin-top: 1.25rem;
  }
}

.company-group__contents {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .company-group__contents {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}

.company-group__content {
  background-color: #f2fcff;
  width: 100%;
  max-width: 36.75rem;
}

.company-group__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .company-group__title {
    margin-top: 1.25rem;
  }
}

.company-group__text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 2;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .company-group__text {
    margin-top: 1.25rem;
  }
}

.layout-company {
  margin-top: 23.25rem;
}
@media screen and (max-width: 767px) {
  .layout-company {
    margin-top: 12.5rem;
  }
}

@media screen and (max-width: 767px) {
  .company__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: none;
  }
}

.company__profile.company-profile--group .company-profile__list .company-profile__term {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0;
  color: #12929d;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .company-group__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: none;
  }
}

.company-group__content-inner .company__profile {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .company-group__content-inner .company__profile {
    margin-top: 2rem;
  }
}

.company-profile.company-profile--group .company-profile__list:last-child {
  border-bottom: none;
}

.company-group__content-inner .company__profile .company-profile__list .company-profile__term {
  max-width: 10.9375rem;
  font-weight: 700;
}

.company-group__content-inner .company__profile .company-profile__list .company-profile__description {
  font-size: 1.0625rem;
  line-height: 1.47;
  font-feature-settings: "palt";
}

.company-group__content-inner .company__profile .company-profile__list {
  padding-bottom: 1.9375rem;
}

.company-group__content-inner .company__profile .company-profile__list:not(:first-child) {
  padding-top: 1.1875rem;
}

@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__menu .recruit-question__tab.tab .tab__menu {
    border: none;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__menu-wrap,
  .recruit-question__tab.tab .tab__menu-wrap {
    max-width: none;
  }
}

.guideline__tab.tab .tab__menu-wrap,
.recruit-question__tab.tab .tab__menu-wrap {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__menu {
    border: none;
    max-width: none;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .recruit-question__tab.tab .tab__menu {
    border: none;
    max-width: none;
    justify-content: space-between;
	  white-space: nowrap;
  }
}

.guideline__tab.tab .tab__menu-wrap,
.recruit-question__tab.tab .tab__menu-wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .guideline__tab.tab .tab__menu-wrap,
  .recruit-question__tab.tab .tab__menu-wrap {
    max-width: none;
  }
}

.news-list__item a {
  display: flex;
}

.news-list__item-meta {
  display: flex;
  align-items: center;
}

.news-list__item-date {
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.news-list__item-category {
  margin-left: 1.25rem;
  padding: 0.3125rem;
  min-width: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  line-height: 1;
  color: #12929d;
  background-color: #f5f5f5;
  text-align: center;
}

.news-list__item-title {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news-list__item-title {
    line-height: 1.8;
    margin-top: 9px;
  }
}

.md-hide {
  display: none;
}

.division-single-head {
  position: relative;
}

.layout-division-single-head {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .layout-division-single-head {
    margin-top: 1.25rem;
  }
}

.division-single-head__inner.inner {
  max-width: 63.125rem;
}

.division-single-head__title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.division-single-head__text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.031em;
  line-height: 2;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
	.division-single-head__title {
  font-size: 24px;
}
  .division-single-head__text {
    margin-top: 1.25rem;
  }
}

.division-single-head__img {
  margin-top: 3.125rem;
  width: 70vw;
  margin: 0 calc(50% - 35vw);
}
@media screen and (max-width: 767px) {
  .division-single-head__img {
    margin-top: 1.25rem;
	width: auto;
	margin: 0;
  }
}

.division-single-head__img img {
  height: auto;
  width: 100%;
}

.layout-division-products {
  margin-top: 10.0625rem;
}
@media screen and (max-width: 767px) {
  .layout-division-products {
    margin-top: 1.25rem;
  }
}

.division-products__inner.inner {
  max-width: 79rem;
}

.division-products__title,
.division-others__title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.division-products__list {
  display: grid;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .division-products__list {
    margin-top: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.25rem;
  }
}

.product-list__item {
  max-width: 23.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  align-items: flex-start;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product-list__item {
    margin-inline: auto;
  }
}

.product-list__item a {
  padding: 3.625rem 2rem 1.8125rem 2rem;
}
@media screen and (max-width: 767px) {
  .product-list__item a {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.product-list__category {
  display: inline-block;
  padding: 0.76875rem 1.25rem;
  background-color: #ffffff;
  color: #12929d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
}

.product-list__title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1.0625rem;
  padding-bottom: 0.9375rem;
  width: 100%;
  border-bottom: 0.0625rem solid #dadee2;
}
@media screen and (max-width: 767px) {
  .product-list__title {
    margin-top: 1.25rem;
  }
}

.product-list__text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.066em;
  line-height: 2;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .product-list__text {
    margin-top: 1.25rem;
  }
}

.product-list__btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0.8125rem;
}

.product-list__btn .button-text {
  font-size: 1.0625rem;
  margin-right: 1.5rem;
  letter-spacing: -0.14em;
}

.layout-division-single-head {
  margin-top: 9.9375rem;
}
@media screen and (max-width: 767px) {
  .layout-division-single-head {
    margin-top: 6.25rem;
  }
}

.division-single-head__inner.inner {
  max-width: 63.9375rem;
}

.division-single-head__text {
  margin-top: 1.4375rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .division-single-head__text {
    margin-top: 2rem;
  }
}

.division-single-head__img {
  margin-top: 1.9375rem;
  border-radius: 0.5rem;
	overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .division-single-head__img {
    margin-top: 1.75rem;
  }
}

.division-single-head__img img {
  height: auto;
  width: 100%;
}

@media (max-width: 767px) {
	.division-single-head__img img {
		max-width: none;
		width: 800px;
	}
}

@media screen and (max-width: 767px) {
  .layout-division-products {
    margin-top: 6.25rem;
  }
}

.division-list__item + .division-list__item {
  margin-top: 4.375rem;
}

.division-others {
  background-color: #f0fafb;
  padding-bottom: 13.125rem;
}

.division-others__inner.inner {
  max-width: 63.9375rem;
}

.division-others__list {
  display: grid;
  gap: 7.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .division-others__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.division-others__item {
  max-width: 33.75rem;
  width: 100%;
}

.division-others__item .division-others__item-img img {
  transition: 0.3s transform;
}

.division-others__item:hover .division-others__item-img {
  overflow: hidden;
}

.division-others__item:hover .division-others__item-img img {
  transform: scale(1.1);
  transition: 0.3s transform;
}

.division-others__item-img {
  border-radius: 0.5rem;
  overflow: hidden;
}

.division-others__item-img img {
  aspect-ratio: 540/280;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.division-others__item-title {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #dadee2;
}

.division-others__item-text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .division-others__item-text {
    margin-top: 1.25rem;
  }
}

.division-others__item-btn {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .division-others__item-btn {
    margin-top: 1.25rem;
  }
}

.division-others__btn .button-text {
  font-size: 1.0625rem;
  margin-right: 1.5rem;
  letter-spacing: -0.14em;
}

.division-others__item-btn .button-text {
  font-size: 1.0625rem;
  margin-right: 1.875rem;
  letter-spacing: -0.14em;
}

.hidden-page {
  overflow-x: hidden;
}

.layout-product-detail {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .layout-product-detail {
    margin-top: 6.25rem;
  }
}

@media screen and (max-width: 767px) {
  .product-detail__contents {
    max-width: 37.5rem;
    width: 100%;
  }
}

.product-detail__contents h1 {
  position: relative;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-top: 5rem;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .product-detail__contents h1 {
    font-size: 1.5rem;
  }
}

.product-detail__contents h1::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #77bcc2;
  border-radius: 50%;
}

.product-detail__contents h2 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #12929d;
  margin-top: 2.5rem;
}

.product-detail__contents h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 2.5rem;
  color: #2f2f2f;
}

.product-detail__contents p,
.product-detail__contents h4 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.product-detail__contents p a {
  color: #73b2c8;
  -webkit-text-decoration: underline #73b2c8;
          text-decoration: underline #73b2c8;
}

.product-detail__contents ul {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #fbfbfb;
  list-style: inside;
}
@media screen and (max-width: 767px) {
  .product-detail__contents ul {
    margin-top: 2.375rem;
  }
}

.product-detail__contents ul li {
  padding-left: 1.375rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -1.125rem;
}

.product-detail__contents ul li:not(:first-of-type),
.product-detail__contents ol li:not(:first-of-type) {
  margin-top: 1rem;
}

.product-detail__contents .product-detail__contents ul li::before {
  content: "";
  margin-right: 0.625rem;
  position: relative;
  top: -0.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  background-color: #73b2c8;
  border-radius: 50%;
}

.product-detail__contents ol {
  margin-top: 2rem;
  counter-reset: number;
  padding: 2rem;
  background-color: #fbfbfb;
}
@media screen and (max-width: 767px) {
  .product-detail__contents ol {
    margin-top: 2.375rem;
  }
}

.product-detail__contents h1 > p:first-of-type {
  margin-top: 1rem;
}

.product-detail__contents ol li {
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -0.75rem;
}

.product-detail__contents ol li::before {
  counter-increment: number;
  content: counter(number) ".";
  margin-right: 0.625rem;
  display: inline-block;
  line-height: 1;
}

.product-detail__contents figure {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product-detail__contents figure {
    margin-top: 3rem;
  }
}

.product-detail__contents figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-detail__contents hr {
  border-color: #12929d;
}

.products-other__list {
  display: grid;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.4375rem;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .products-other__list {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-top: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.25rem;
  }
}

.products-other__inner.inner {
  max-width: 79rem;
}

.products-other__title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.layout-products-other {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .layout-products-other {
    margin-top: 6.25rem;
  }
}

.sub-recruit-desc .bg-ball {
  top: 23%;
  left: -10%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc .bg-ball {
    top: 7%;
    left: -19%;
    height: 8%;
    width: 27%;
  }
}

.sub-recruit-desc .bg-ball3 {
  top: -1%;
  right: 0%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc .bg-ball3 {
    top: 181%;
    right: -20%;
    height: 24%;
    width: 38%;
  }
}

.sub-recruit-desc .bg-water {
  top: 25%;
  left: -10%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc .bg-water {
    top: 5%;
    left: -12%;
    height: 16%;
    width: 36%;
  }
}

.sub-recruit-desc .bg-water2 {
  top: -1%;
  right: 0%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc .bg-water2 {
    top: -4%;
    left: 87%;
    height: 11%;
    width: 27%;
  }
}

.sub-recruit-desc .bg-water3 {
  top: 98%;
  right: 0%;
  z-index: -20;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc .bg-water3 {
    top: 94%;
    left: 75%;
    height: 12%;
    width: 35%;
  }
}

.service-swiper {
  position: relative;
}

.service-swiper .swiper-slide {
  transform: scale(0.7);
  transition: 1s;
}

.service-swiper .swiper-slide-active {
  transform: scale(1);
  border-radius: 0.5rem;
}

.service-swiper .service-slide img {
  width: 100%;
  aspect-ratio: 1140/540;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .service-swiper .service-slide img {
    aspect-ratio: 326/280;
  }
}

.recruit-about {
  padding-bottom: 22.5rem;
  margin-bottom: -15rem;
}

.guideline {
  padding-top: 1.25rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
	.guideline {
	  padding-bottom: 5rem;
	}
}

.recruit-heading-wrap {
  padding-left: 8.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-heading-wrap {
    padding-left: 5rem;
  }
}

.sub-recruit__title-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -1.875rem;
  z-index: 1;
}

.sub-recruit__title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-color: #f4f9fa;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sub-recruit__title {
    font-size: 2rem;
  }
}

.sub-recruit__title + .sub-recruit__title {
  margin-top: 0.5rem;
}

.recruit-about .recruit-heading-wrap::before {
  content: "01";
}

.recruit-member__heading .recruit-heading-wrap::before {
  content: "02";
}

.recruit-area__heading .recruit-heading-wrap::before {
  content: "03";
}

.guideline__heading .recruit-heading-wrap::before {
  content: "04";
}

.recruit-question__heading .recruit-heading-wrap::before {
  content: "05";
}

.detail-data__heading .recruit-heading-wrap::before {
  content: "01";
}

.detail-question__heading .recruit-heading-wrap::before {
  content: "02";
}

.detail-works__heading .recruit-heading-wrap::before {
  content: "03";
}

.recruit-heading-wrap::before {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6.25rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: #65c0c8;
}
@media screen and (max-width: 767px) {
  .recruit-heading-wrap::before {
    font-size: 3.5rem;
  }
}

.recruit-heading-wrap.recruit-heading-wrap--reverse::before {
  color: #ffffff;
}

.recruit-member {
  background-color: #53bdc6;
  padding-bottom: 6.25rem;
}

.recruit-member__inner.inner {
  max-width: 78.125rem;
  padding-left: 7.5rem;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .recruit-member__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.recruit-member__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.sub-recruit-mv {
  padding-top: 6.25rem;
}

.recruit-member__swiper {
  margin-top: 3.5rem;
}

.sub-recruit-desc {
  position: relative;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc {
    padding-bottom: 22.375rem;
  }
}

.sub-recruit-desc__img {
  width: 16.25rem;
  height: 16.25rem;
  content: "";
  display: block;
  position: absolute;
  top: 66%;
  left: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/desc01.svg");
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc__img {
    top: 75%;
    height: 11.25rem;
  }
}

.sub-recruit-desc__img02 {
  width: 28.625rem;
  height: 24.3125rem;
  display: block;
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/desc02.svg");
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc__img02 {
    width: 17.5rem;
    height: 10rem;
    top: 9%;
  }
}

.sub-recruit-desc__contents {
  margin-top: 4.875rem;
  max-width: 42.8125rem;
  margin-inline: auto;
  width: 100%;
  position: relative;
  padding-left: 2.75rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc__contents {
    margin-top: 2.5rem;
    padding-left: 0;
  }
}

.sub-recruit-desc__contents::after {
  width: 260px;
  height: 269px;
  content: "";
  position: absolute;
  bottom: -52%;
  right: -24%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/desc03.svg");
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc__contents::after {
    width: 168px;
    height: 168px;
    bottom: -80%;
    z-index: 1;
    right: 0%;
  }
}

.sub-recruit-desc__text span {
  color: #45b4bd;
}

.sub-recruit-desc__text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2.8;
}

.sub-recruit-desc__text + .sub-recruit-desc__text {
  margin-top: 1rem;
}

.sub-recruit-desc__title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 2;
  margin-top: 15.125rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc__title {
    font-size: 1.125rem;
  }
}

.sub-recruit-desc__title span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background-color: #45b4bd;
  color: #ffffff;
  display: inline-block;
  padding: 0.25rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit-desc__title span {
    font-size: 1.125rem;
  }
}

.sub-recruit-desc__title.md-small {
  font-size: 3.5rem;
}

.recruit-member__img {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.recruit-member__img ::before {
  content: ""; /* 擬似要素を表示させるための必須プロパティ */
  position: absolute; /* 親要素内で絶対配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 8%, #FC00FF 50%);
  z-index: -1; /* 背景のように動作させるため、コンテンツの後ろに配置 */
  pointer-events: none; /* 背景部分がクリックを妨げないようにする */
}

.recruit-member__img img {
  aspect-ratio: 440/280;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.recruit-member__icon {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  display: inline-block;
  padding: 0.5rem 0.625rem;
  background-color: #3dc176;
  color: #ffffff;
  border-radius: 0.25rem;
  position: absolute;
  bottom: 4%;
  right: 4%;
}

.green {
  color: #45b4bd;
}

.sub-recruit__title .md-small-text {
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .sub-recruit__title .md-small-text {
    font-size: 1.75rem;
  }
}

.recruit-member__text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #ffffff;
  margin-top: 1.5rem;
}

.recruit-member__name {
  color: #ffffff;
  font-weight: 700;
}

.recruit-member__name-small {
  font-size: 0.875rem;
  font-weight: #53bdc6;
}

.recruit-member__category {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  display: inline-block;
  padding: 1px 1px;
  background-color: #ffffff;
  color: #53bdc6;
  margin-top: 1.5rem;
  margin-right: 1.5rem;
  padding: 0.25rem 1rem;
  border-radius: 0.125rem;
}

.recruit-heading__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .recruit-heading__title {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 0.25rem;
  }
}

.recruit-heading__title.recruit-heading-wrap--reverse .recruit-heading__title,
.recruit-heading__title.recruit-heading-wrap--reverse .recruit-heading__title::before,
.recruit-heading__title.recruit-heading-wrap--reverse .recruit-heading__text {
  color: #ffffff;
}

.recruit-heading__text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
  margin-top: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .recruit-heading__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0.25rem;
  }
}

.layout-recruit-area {
  margin-top: 8.75rem;
}

.recruit-area {
  margin-top: 8.75rem;
}

.recruit-area__contents {
  max-width: 59.75rem;
  width: 100%;
  display: flex;
  gap: 3.5rem;
  margin-top: 4rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .recruit-area__contents {
    margin-top: 1px;
    gap: 24px;
    flex-direction: column;
  }
}

.recruit-area__img {
  max-width: 33.75rem;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.recruit-area__img img {
  aspect-ratio: 540/540;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-area__img img {
    aspect-ratio: 358/256;
  }
}

.recruit-area__text-wrap {
  max-width: 22.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-area__text-wrap {
    max-width: none;
  }
}

.recruit-area__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  display: inline-block;
  padding: 0.5rem 0.625rem;
  background-color: #3dc176;
  color: #ffffff;
  border-radius: 0.5rem;
}

.recruit-heading__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.recruit-heading__text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 1px;
}
@media screen and (max-width: 767px) {
  .recruit-heading__text {
    margin-top: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit-member__heading .recruit-heading__text {
    margin-top: 1rem;
  }
}

.recruit-heading-wrap--reverse .recruit-heading__text {
  color: #ffffff;
}

.recruit-area__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dadee2;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .recruit-area__title {
    margin-top: 1.5rem;
  }
}

.recruit-area__text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2;
}
.recruit-area__inner.inner {
  max-width: 78.125rem;
}

.js-recruit-area-swiper .swiper-slide {
  transform: scale(0.7);
  transition: 1s;
  opacity: 0.7;
  transform-origin: bottom center;
}

.js-recruit-area-swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

.recruit-about {
  background-color: #f0fafb;
}

.recruit-about__inner.inner {
  max-width: 75rem;
  width: 100%;
}

.recruit-about__list {
  margin-top: 2.1875rem;
}

.recruit-about__item {
  overflow: hidden;
}

.recruit-about__item + .recruit-about__item {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .recruit-about__item + .recruit-about__item {
    margin-top: 2rem;
  }
}

.recruit-about__contents {
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit-about__contents {
    flex-direction: column-reverse;
  }
}

.recruit-about__content {
  max-width: 37.5rem;
  width: 100%;
  padding: 2rem 3rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .recruit-about__content {
    padding: 1.5rem 1rem;
  }
}

.recruit-heading__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.recruit-heading-wrap--reverse .recruit-heading__title {
  color: #ffffff;
}

.recruit-about__content-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recruit-about__content-sub-title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background-color: #3dc176;
  color: #ffffff;
  padding: 0.25rem 1rem;
  margin-top: 1.5rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .recruit-about__content-sub-title {
    margin-top: 0rem;
    font-size: 0.875rem;
  }
}

.recruit-about__contents:hover .recruit-about__btn {
  opacity: 1;
  transition: 0.3s opacity;
}

.recruit-about__contents:hover .recruit-about__contents-img img {
  transform: scale(1.1);
  transition: 0.3s transform;
}

.recruit-about__contents-img {
  overflow: hidden;
}

.recruit-about__contents .recruit-about__contents-img img {
  transition: 0.3s transform;
}

.recruit-about__content-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08m;
  line-height: 1.6;
  padding: 1;
  background-color: #45b4bd;
  color: #ffffff;
  padding: 0.25rem 1rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .recruit-about__content-title {
    font-size: 1.25rem;
  }
}

.recruit-about__content-text {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.recruit-about__btn {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
}

.recruit-about__item a:hover .recruit-about__contents-img {
  opacity: 1;
}

.recruit-about__btn .btn-arrow-right__name {
  margin-right: 1rem;
  font-weight: 700;
}

.recruit-about__contents-img {
  aspect-ratio: 600/300;
  max-width: 37.5rem;
  width: 100%;
  opacity: 1;
}

.recruit-about__contents-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.recruit-question {
  background-color: #ffffff;
}

.faq-list__item {
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
}

.faq-list__item + .faq-list__item {
  margin-top: 1.25rem;
  padding: 0;
}

.faq-list__item-question {
  padding: 2.0625rem 2.5rem 2.0625rem 3.75rem;
  position: relative;
  font-size: 1rem;
  text-indent: -1.25rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 700;
  background-color: #fbfbfb;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question {
    padding: 0.875rem 3.75rem 0.875rem 5rem;
    font-size: 1.125rem;
  }
}

.faq-list__item-question::before,
.faq-list__item-question::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 1.125rem;
  height: 0.09375rem;
  background: #45b4bd;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question::before,
  .faq-list__item-question::after {
    top: 1.5rem;
    width: 1.125rem;
  }
}

.faq-list__item-question::after {
  transform: rotate(90deg);
}

.faq-list__item-question.is-open::after {
  transform: rotate(0deg);
}

.faq-list__item-question span {
  margin-right: 1.25rem;
  display: inline-block;
  color: #45b4bd;
}

.faq-list__item-answer {
  padding: 2.0625rem 1.875rem 2.0625rem 3.75rem;
  display: none;
  letter-spacing: 1.6;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-indent: -1.25rem;
  background-color: #fbfbfb;
}
@media screen and (max-width: 767px) {
  .faq-list__item-answer {
    padding: 1.25rem 2.5rem 0.9375rem 4rem;
/*     font-size: 1.125rem; */
  }
}

.faq-list__item-answer span {
  margin-right: 1.25rem;
  display: inline-block;
  color: #3dc176;
  background-color: #fbfbfb;
}

.recruit-area__swiper {
  margin-left: 0; /* 左側の余白を消す */
  text-align: left; /* 内部の要素が左寄せになる場合に必要 */
  margin-top: 16px;
}

.recruit-area-swiper__button-wrap {
  margin-top: 3.75rem;
  display: flex;
  justify-content: left;
}
@media screen and (max-width: 767px) {
  .recruit-area-swiper__button-wrap {
    margin-top: 4.375rem;
    justify-content: center;
  }
}

.recruit-area-swiper .swiper-pagination {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .recruit-area-swiper .swiper-pagination {
    text-align: center;
  }
}

.recruit-area-swiper__button-wrap .swiper-button-prev,
.recruit-area-swiper__button-wrap .swiper-button-next {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #f2950b;
  border-radius: 50%;
}

.recruit-area-swiper__button-wrap .swiper-button-next {
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .recruit-area-swiper__button-wrap .swiper-button-next {
    margin-left: 10.75rem;
  }
}

.recruit-area-swiper__button-wrap .swiper-button-prev::before,
.recruit-area-swiper__button-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8125rem;
  height: 0.8125rem;
  background-image: url("../images/Arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.recruit-area-swiper__button-wrap .swiper-button-prev::before {
  background-image: url("../images/Arrow-reverse-back.svg");
}

.recruit-area-swiper {
  position: relative;
}

.recruit-area-swiper .swiper-pagination-current {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .recruit-area-swiper .swiper-pagination-current {
    font-size: 0.9375rem;
  }
}

.service-swiper .swiper-pagination-total {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .service-swiper .swiper-pagination-total {
    font-size: 1.5rem;
  }
}

.guideline {
  background-color: #f0fafb;
}

.guideline__contents {
  margin-top: 3rem;
}

.recruit-member-swiper__button-wrap {
  margin-top: 6%;
  display: flex;
  justify-content: right;
  padding-right: 6.25rem;
}
@media screen and (max-width: 767px) {
  .recruit-member-swiper__button-wrap {
    margin-top: 4.5rem;
    justify-content: right;
    padding-right: 0rem;
  }
}

.recruit-member-swiper .swiper-pagination {
  text-align: right;
}

.recruit-member-swiper__button-wrap .swiper-button-prev,
.recruit-member-swiper__button-wrap .swiper-button-next {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ffffff;
  border-radius: 50%;
}

.recruit-member-swiper__button-wrap .swiper-button-next {
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .recruit-member-swiper__button-wrap .swiper-button-next {
    margin-left: 2rem;
  }
}

.recruit-member-swiper__button-wrap .swiper-button-prev::before,
.recruit-member-swiper__button-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8125rem;
  height: 0.8125rem;
  background-image: url("../images/Arrow-member-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.recruit-member-swiper__button-wrap .swiper-button-prev::before {
  background-image: url("../images/Arrow-member-left.svg");
}

.recruit-member-swiper .swiper-pagination {
  top: 95%;
  width: 70%;
  background: rgba(255, 255, 255, 0.3);
  height: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .recruit-member-swiper .swiper-pagination {
    width: 61%;
  }
}

.recruit-member-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #ffffff;
  height: 0.0625rem;
}

.detail-item.div7 .detail-item__img {
  margin-top: 2rem;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .detail-item.div7 .detail-item__img {
    width: 40rem;
  }
}

@media screen and (max-width: 767px) {
  .detail-item.div7 {
    overflow-x: scroll;
  }
}

@media screen and (max-width: 767px) {
  .recruit-member__heading.recruit-heading p {
    color: #ffffff;
  }
}

.recruit-heading__text.recruit-heading__text--detail {
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .recruit-member__inner .recruit-heading__text {
    color: #ffffff;
  }
}

.guideline__btn {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #f2950b;
  justify-content: center;
  padding: 24px;
  border-radius: 57px;
}

.guideline__btn .btn-arrow-right__name {
  margin-left: 1.5rem;
  color: #ffffff;
}

.guideline__btn .button-icon {
  background-color: #fff;
}

.guideline__btn .button-icon .arrow::after,
.guideline__btn .button-icon .arrow::before {
  color: #f2950b;
}

.faq-list__item-answer a {
  border-bottom: #12929d 0.0625rem solid;
  color: #12929d;
  font-weight: 700;
}

.recruit-member__swiper .swiper-slide .recruit-member__item .recruit-member__img img {
  transition: transform 0.3s;
}

.recruit-member__swiper .swiper-slide:hover .recruit-member__item .recruit-member__img img {
  transform: scale(1.1);
  transition: transform 0.3s;
}

.layout-sub-news {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .layout-sub-news {
    margin-top: 6.25rem;
  }
}

.sub-news__inner {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .sub-news__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .sub-news-list__menu-item {
    padding: 0;
  }
}

.sub-news-list__menu,
.sub-news-list__contents {
  width: 100%;
}

.sub-news-list__menu {
  max-width: 15rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sub-news-list__menu {
    max-width: none;
  }
}

.sub-news-list__contents {
  max-width: 55rem;
}

.sub-news-list__menu {
  border: 0.0625rem solid #aeb8c2;
}
@media screen and (max-width: 767px) {
  .sub-news-list__menu {
    border: none;
  }
}

.detail__item .detail__link {
  display: inline-block;
  width: 100%;
  padding: 1rem 1.3125rem 1rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .detail__item .detail__link {
    padding: 0rem;
  }
}

.sub-news-list__menu-list {
  width: 100%;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sub-news-list__menu-list {
    color: #999999;
    display: flex;
    gap: 0.875rem;
  }
}

.sub-news-list__menu-item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub-news-list__menu-item {
    padding: 0;
  }
}

.sub-news-list__menu-item::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
  background-color: #aeb8c2;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .sub-news-list__menu-item::before {
    display: none;
  }
}

.sub-news-list__menu-item.news-list__item--active::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  transform: translateY(-50%);
  background-color: #12929d;
}

.sub-news-list__menu-item + .sub-news-list__menu-item:not(:first-child) {
  border-top: 0.0625rem solid #aeb8c2;
}
@media screen and (max-width: 767px) {
  .sub-news-list__menu-item + .sub-news-list__menu-item:not(:first-child) {
    border: none;
  }
}

.sub-news-list__menu-item.news-list__item--active {
  color: #12929d;
  font-weight: 700;
  background-color: #f2fafc;
}
@media screen and (max-width: 767px) {
  .sub-news-list__menu-item.news-list__item--active {
    background-color: #ffffff;
  }
}

.pagenavi__inner {
  margin: auto;
  padding: 2.5rem 2.5rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .pagenavi__inner {
    max-width: 75rem;
    padding: 1.25rem 0;
  }
}

.pagenavi .wp-pagenavi {
  clear: both;
  text-align: center;
}

.pagenavi .wp-pagenavi a,
.pagenavi .wp-pagenavi span {
  margin: 0 0.3125rem;
  padding: 1.1875rem 1.3125rem;
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
  transition: 0.3s;
  border: none;
}
@media screen and (max-width: 767px) {
  .pagenavi .wp-pagenavi a,
  .pagenavi .wp-pagenavi span {
    padding: 0.5rem 0.5625rem;
  }
}

.pagenavi .wp-pagenavi a:hover {
  color: #fff;
  background-color: #73b2c8;
  border-color: transparent;
  opacity: 1;
  border: none;
}

.pagenavi .wp-pagenavi .current {
  color: white;
  background-color: #f2950b;
  border-color: #f2950b;
  border-radius: 50%;
  border: none;
}

.pagenavi .wp-pagenavi .pages {
  display: none;
}

.pagenavi .wp-pagenavi .previouspostslink,
.pagenavi .wp-pagenavi .nextpostslink {
  border: 1px solid #f2950b;
  border-radius: 50%;
  color: #f2950b;
  padding: 1.125rem 1.1875rem;
}
@media screen and (max-width: 767px) {
  .pagenavi .wp-pagenavi .previouspostslink,
  .pagenavi .wp-pagenavi .nextpostslink {
    padding: 0.5rem 0.5625rem;
  }
}

.detail-head__img img {
  aspect-ratio: 960/411;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.layout-detail-head {
  padding-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .layout-detail-head {
    padding-top: 7.3125rem;
  }
}

.layout-detail {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .layout-detail {
    margin-top: 4rem;
  }
}

.detail-head__title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 0.5rem;
}

.detail-head__img {
  margin-top: 2.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .detail-head__img {
    margin-top: 1.5rem;
  }
}

.sub-contact__title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sub-contact__title {
    margin-top: 3rem;
  }
}

.sub-contact__text {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 2;
  text-align: center;
}

.sub-contact__text:first-child {
  margin-top: 1.5rem;
}

.sub-contact__text + .sub-contact__text {
  margin-bottom: 3.5rem;
}

.news-list__item-img.news-list__item-img--infomation {
  max-width: 13.125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .news-list__item-img.news-list__item-img--infomation {
    max-width: 7.5rem;
  }
}

.news-list__item-img.news-list__item-img--infomation img {
  aspect-ratio: 210/120;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .news-list__item-img.news-list__item-img--infomation img {
    aspect-ratio: 120/68;
  }
}

.news__list.news__list--infomation {
  padding-top: 0px;
  padding-bottom: 0px;
  border-top: none;
  border-bottom: none;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .news__list.news__list--infomation {
    padding-top: 1.5rem;
    border-top: 0.0625rem solid #dadee2;
  }
}

.news__list.news__list--infomation .news-list__item {
  border-bottom: 1px solid #dadee2;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .news__list.news__list--infomation .news-list__item {
    padding-bottom: 1.5rem;
  }
}

.news__list--infomation .news-list__item + .news-list__item {
  margin-top: 0;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .news__list--infomation .news-list__item + .news-list__item {
    padding-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .news__list.news__list--infomation .news-list__item a {
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  .news__list.news__list--infomation .news-list__item a .news-list__item-content {
    margin-left: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.heading {
  position: relative;
}

.detail-item__img.detail-item__img--ratio {
  max-width: 15.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .detail-item__img.detail-item__img--ratio {
    max-width: 8.3125rem;
  }
}

.news-list__item-content .c-btn-icon {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateX(-50%);
}

.pagenavi {
  margin-top: 5rem;
  margin-bottom: 12.5rem;
}

.sub-news-list__news .pagenavi .wp-pagenavi a:hover {
  background-color: white;
  color: #2f2f2f;
  border-color: #f2950b;
}

@media screen and (max-width: 767px) {
  .sub-news-list__news.news .news-list__item {
    border-top: 0.0625rem solid #dadee2;
  }
}

@media screen and (max-width: 767px) {
  .sub-news-list__news.news .news-list__item a {
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  .sub-news-list__news.news .news-list__item a .news-list__item-content {
    margin-left: 1rem;
  }
}

.sub-contact-heading .bg-water {
  top: 13%;
  left: -6%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sub-contact-heading .bg-water {
    top: 33%;
    left: -12%;
    height: 24%;
    width: 38%;
  }
}

.sub-contact-heading .bg-water2 {
  top: 53%;
  right: -12%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sub-contact-heading .bg-water2 {
    top: 33%;
    right: -10%;
    height: 86%;
    width: 38%;
  }
}

.sub-contact__inner.inner {
  background-color: #f5f5f5;
  padding: 5rem 0;
  border-radius: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .sub-contact__inner.inner {
    max-width: 37.5rem;
  }
}

.sub-contact-tel {
  text-align: center;
}

.layout-sub-contact-tel {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .layout-sub-contact-tel {
    margin-top: 6.25rem;
  }
}

@media screen and (max-width: 767px) {
  .sub-contact-tel__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.sub-contact__tel-btn {
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #2a90a9;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  display: flex;
  flex-direction: column;
  background-color: #f2fafc;
  gap:8px;
}

.sub-contact__tel-text {
  color: #2f2f2f;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  display: inline-block;
}

.sub-contact__tel-number {
  color: #2a90a9;
  font-size: 1.625rem;
}

.sub-contact__tel-icon {
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 700;
}

.sub-contact {
  max-width: 60rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 0.9375rem;
  overflow: hidden;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sub-contact {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-top: 1.5rem;
    padding-bottom: 2.875rem;
  }
}

.form__wrap {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .form__wrap.form__wrap--textarea {
    align-items: flex-start;
  }
}

.form__wrap + .form__wrap {
  margin-top: 2rem;
}

.form__label {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form__label {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .form__wrap.form__wrap--textarea .form__label {
    margin-top: 0.625rem;
  }
}

.form__label span {
  margin-right: 0.625rem;
  padding: 0.25rem 0.5rem;
  display: inline-block;
  font-weight: 400;
  font-size: 0.625rem;
  color: #ffffff;
  background-color: #2a90a9;
  border-radius: 0.25rem;
}

.form__input,
.form__select,
.form__radio,
.form__checkbox,
.form__textarea {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .form__input,
  .form__select,
  .form__radio,
  .form__checkbox,
  .form__textarea {
    margin-top: 0.5rem;
  }
}

.form__input,
.form__textarea {
  flex-grow: 1;
}

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

.form-input input {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  background-image: none;
}

.form-input input:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.form-select select {
  padding: 0.71875rem 3.125rem 0.71875rem 0.9375rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 0;
  border: 1px solid #ccc;
  background-image: url(./../images/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: 0.9375rem;
  background-position: right 0.9375rem top 0.9375rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.form-select select::-ms-expand {
  display: none;
}

.form-select select:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.form-checkbox label {
  display: block;
}
@media screen and (max-width: 767px) {
  .form-checkbox label {
    display: inline-block;
  }
}

.form-checkbox label:not(:first-of-type) {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form-checkbox label:not(:first-of-type) {
    margin-top: 0;
    margin-left: 1.25rem;
  }
}

.form-checkbox input {
  display: none;
}

.form-checkbox input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1.5625rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1;
}

.form-checkbox input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
}

.form-checkbox input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #000;
  border-left: 0.1875rem solid #000;
  transition: 0.3s;
  opacity: 0;
}

.form-checkbox input:checked + span::after {
  opacity: 1;
}

.form-textarea textarea {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  height: 9.375rem;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  background-image: none;
}

.form-textarea textarea:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.form-submit input {
  padding: 1.5625rem 0;
  color: #ffffff;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  background-color: #f2950b;
  background-image: none;
  border: none;
  border-radius: 2.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  max-width: 17.25rem;
}

.form-submit input:hover,
.form-submit input:focus {
  outline: none;
}

@media screen and (max-width: 767px) {
  .form-submit input:hover {
    opacity: 0.8;
  }
}

.form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.contact__form-privacy span a {
  color: #2a90a9;
  border-bottom: 0.0625rem solid #2a90a9;
}

.sub-contact .wpcf7 {
  width: 68%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .sub-contact .wpcf7 {
    margin-top: 3rem;
    width: 93%;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-list-item-label {
  font-feature-settings: "palt";
}

.form__submit p {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__submit p {
    flex-direction: column;
  }
}

/* .form__submit p .wpcf7-form-control:first-child {
  background-color: #2a90a9;
} */

.custom-product {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.custom-product__content {
  position: absolute;
  padding: 20px;
}

.customize__img {
  font-size: 16px;
}

.custom-product__image {
  flex: 1;
}

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

.layout-detail-data {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .layout-detail-data {
    margin-top: 6.25rem;
  }
}

.recruit-heading__title,
.detail-data__heading.recruit-heading .recruit-heading__title,
.detail-question__heading.recruit-heading .recruit-heading__title,
.detail-works__heading.recruit-heading .recruit-heading__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .recruit-heading__title,
  .detail-data__heading.recruit-heading .recruit-heading__title,
  .detail-question__heading.recruit-heading .recruit-heading__title,
  .detail-works__heading.recruit-heading .recruit-heading__title {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 0.25rem;
  }
}

.recruit-heading__text,
.detail-data__heading.recruit-heading .recruit-heading-wrap .recruit-heading__text,
.detail-question__heading.recruit-heading .recruit-heading-wrap .recruit-heading__text,
.detail-works__heading.recruit-heading .recruit-heading-wrap .recruit-heading__text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
  margin-top: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .recruit-heading__text,
  .detail-data__heading.recruit-heading .recruit-heading-wrap .recruit-heading__text,
  .detail-question__heading.recruit-heading .recruit-heading-wrap .recruit-heading__text,
  .detail-works__heading.recruit-heading .recruit-heading-wrap .recruit-heading__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-top: 1rem;
  }
}

.detail-data__heading.recruit-heading .recruit-heading-wrap .recruit-heading__text {
  color: #2f2f2f;
}

.detail-item {
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4.25rem 0;
  width: 100%;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .detail-item {
    gap: 3.125rem;
    padding: 4.25rem 0.5rem;
  }
}

.detail-item__contents {
  margin-top: 1.5rem;
}

.detail-data__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-left: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #dadee2;
}
@media screen and (max-width: 767px) {
  .detail-data__title {
    font-size: 1.25rem;
  }
}

.detail-data__title::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  top: 30%;
  left: 0%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #77bcc2;
}

.detail-data__title:first-child {
  margin-top: 5rem;
}

.detail-data__title:not(:first-child) {
  margin-top: 4rem;
}

.detail-item__contents-item {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .detail-item__contents-item {
    font-size: 1.125rem;
  }
}

.detail-item__contents-item-attention {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #999999;
  margin-top: 0.125rem;
  text-align: center;
}

.detail-item.detail-item--btn {
  display: block;
  background-color: #f9f9f9;
  padding: 4.25rem 0;
  width: 100%;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .detail-item.detail-item--btn {
    padding: 4.25rem 0.5rem;
  }
}

.detail-item__contents-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .detail-item__contents-flex {
    gap: 3.125rem;
  }
}

.detail-item__btn {
  display: flex;
  align-items: center;
  margin-top: 0.9375rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .detail-item__btn {
    margin-top: 0.75rem;
  }
}

.detail-item__btn .button-icon {
  margin-left: 1rem;
}

.detail-item__contents-data-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #12929d;
}

.detail-item.div5 .detail-item__contents-data-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .detail-item.div5 .detail-item__contents-data-wrap {
    flex-direction: column;
    align-items: center;
  }
}

.detail-item__contents-data {
  margin-top: 0.875rem;
  font-size: 66px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "Oswald", sans-serif;
/*   overflow: hidden; */
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .detail-item__contents-data {
    font-size: 3.5rem;
  }
}

.detail-item__contents-unit {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  display: inline-block;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .detail-item__contents-unit {
    font-size: 1.25rem;
  }
}

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

.detail-item__img img {
/*   aspect-ratio: 90/90; */
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.time-list__data {
  padding-left: 0.5rem;
  position: relative;
  font-feature-settings: "palt";
  font-size: 0.75rem;
}

.time-list__line {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  position: relative;
  width: 100%;
}

.time-list__line:before {
  content: "";
  position: absolute;
  top: 50%; /* フレックスアイテムの中央に線を配置 */
  left: 0; /* 線を1つ目のアイテム側に引く */
  width: 100%; /* フレックスアイテム間の距離 */
  height: 1px; /* 線の太さ */
  background-color: black; /* 線の色 */
  transform: translateY(-50%); /* 垂直方向に中央寄せ */
}

.time-list__term {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 1.25rem;
  position: relative;
  padding-right: 0.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .time-list__term {
    font-size: 0.625rem;
  }
}

.time-list__term::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.time-list:nth-child(1) .time-list__term:before {
  background-color: #f4d45f;
}

.time-list:nth-child(2) .time-list__term:before {
  background-color: #f59160;
}

.time-list:nth-child(3) .time-list__term:before {
  background-color: #6091f5;
}

.time-list:nth-child(4) .time-list__term:before {
  background-color: #60c5f5;
}

.time-list:nth-child(5) .time-list__term:before {
  background-color: #80f560;
}

.md-attention {
  font-weight: 400;
  font-size: 1rem;
  font-family: "Oswald", sans-serif;
}

.detail-data-wrap {
  display: grid;
  gap: 1.3125rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .detail-data-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.detail-data-wrap:nth-of-type(2) {
  display: grid;
  gap: 1.3125rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .detail-data-wrap:nth-of-type(2) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.detail-data-wrap:nth-of-type(4) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .detail-data-wrap:nth-of-type(4) {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
}

.detail-item.div1 {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 767px) {
  .detail-item.div1 {
    grid-area: auto;
  }
}

.detail-item.div2 {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 767px) {
  .detail-item.div2 {
    grid-area: auto;
  }
}

.detail-item.div3 {
  grid-area: 1/3/2/4;
}
@media screen and (max-width: 767px) {
  .detail-item.div3 {
    grid-area: auto;
  }
}

.detail-item.div4 {
  grid-area: 2/1/3/2;
}
@media screen and (max-width: 767px) {
  .detail-item.div4 {
    grid-area: auto;
  }
}

.detail-item.div5 {
  grid-area: 2/2/3/4;
}
@media screen and (max-width: 767px) {
  .detail-item.div5 {
    grid-area: auto;
  }
}

.detail-item.div6 {
  grid-area: 3/1/4/4;
}
@media screen and (max-width: 767px) {
  .detail-item.div6 {
    grid-area: auto;
    overflow-y: scroll;
  }
}

.detail-item.div6,
.detail-item.div7 {
  display: block;
}

@media screen and (max-width: 767px) {
  .detail-item.div6 .detail-item__img {
/*     width: 47rem; */
	  width: 752px;
  }
}

.detail-item.div6 .detail-item__img img {
/*   aspect-ratio: 1124/230; */
	aspect-ratio: auto;
	image-rendering: auto;
}

.detail-item.div7 .detail-item__img img {
/*   aspect-ratio: 1063/973; */
	aspect-ratio: auto;
}

.detail-question {
  background-color: #f0fafb;
  margin-top: -0.9375rem;
}

.details-question__contents {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .details-question__contents {
    margin-top: 3rem;
  }
}

.detail-question__inner .recruit-question__tab.tab .tab__menu-wrap {
  padding: 0;
}

.detail-question__inner .recruit-question__tab.tab .tab__menu {
  background-color: #ffffff;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .detail-question__inner .recruit-question__tab.tab .tab__menu {
    background-color: #f2fcff;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    justify-content: flex-start;
  }
}

.detail-question__inner .recruit-question__tab.tab .tab__menu-wrap .tab__menu-item {
  text-align: left;
  padding-left: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .detail-question__inner .recruit-question__tab.tab .tab__menu-wrap .tab__menu-item {
    padding: 0;
    color: #999999;
  }
}

@media screen and (max-width: 767px) {
  .detail-question__inner .recruit-question__tab.tab .tab__menu-wrap .tab__menu-item.is-active {
    color: #45b4bd;
  }
}

.tab__content.tab__content--detail .faq-list__item-question {
  background-color: #65c0c8;
  color: #ffffff;
}

.tab__content.tab__content--detail .faq-list__item-question span {
  color: #ffffff;
}

.tab__content.tab__content--detail .faq-list__item-answer {
  font-weight: 400;
}

.tab__content.tab__content--detail .faq-list__item-answer {
  background-color: #f0fafb;
}

.tab__content.tab__content--detail .faq-list__item-question::before,
.tab__content.tab__content--detail .faq-list__item-question::after {
  background-color: #ffffff;
}

.tab__content.tab__content--detail .faq-list__item-question::before,
.tab__content.tab__content--detail .faq-list__item-question::after {
  top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .tab__content.tab__content--detail .faq-list__item-question::before,
  .tab__content.tab__content--detail .faq-list__item-question::after {
    top: 1.5625rem;
  }
}

.detail-item__contents-data.detail-item__contents-data--birth {
  font-size: 2.75rem;
  font-weight: 700;
}

.detail-data-wrap.div7 {
  display: block;
  padding-top: 2.5rem;
  padding-bottom: 3.375rem;
}

.detail-item__img--ratio2,
.detail-item__img--ratio3,
.detail-item__img--ratio4 {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.detail-item__img--ratio2 img {
  aspect-ratio: 215/176;
}
@media screen and (max-width: 767px) {
  .detail-item__img--ratio2 img {
    aspect-ratio: 172/139;
  }
}

.detail-item__img--ratio3 img {
  aspect-ratio: 227/168;
}
@media screen and (max-width: 767px) {
  .detail-item__img--ratio3 img {
    aspect-ratio: 135/99;
  }
}

.detail-item__img--ratio4 img {
  aspect-ratio: 263/203;
}
@media screen and (max-width: 767px) {
  .detail-item__img--ratio4 img {
    aspect-ratio: 153/117;
  }
}

.detail.question__inner .recruit-question__tab.tab .tab__menu-item {
  padding: 0;
}

.detail-roll-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.detail-roll-swiper .swiper-slide {
  border-radius: 0.5rem;
  overflow: hidden;
}

.detail-roll-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 400/260;
}
@media screen and (max-width: 767px) {
  .detail-roll-swiper .swiper-slide img {
    aspect-ratio: 328/213;
  }
}

.detail-data__contents::after {
  position: absolute;
  content: "";
  width: 259px;
  height: 286px;
  background-image: url("../images/detail/ball.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 642%;
  left: -14%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .detail-data__contents::after {
    display: none;
  }
}

.detail-data__contents::before {
  position: absolute;
  content: "";
  width: 259px;
  height: 286px;
  background-image: url("../images/detail/ball.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 308%;
  left: -14%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .detail-data__contents::before {
    display: none;
  }
}

.detail-works {
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .detail-works {
    padding-bottom: 6.25rem;
  }
}

.layout-detail-works {
  margin-top: 5rem;
}

.map {
  display: block;
}

.detail-works__img {
  position: relative;
  width: 1200px;
   @media screen and (max-width: 767px) {
    width: 642px;
  }
}

.detail-works__img img{
  aspect-ratio: 1200/645;
  width: 100%;
  height: auto;
  @media screen and (max-width: 767px) {
  aspect-ratio:642 /471;
  }
}


.detail-works-map-wrap {
  overflow-x: scroll;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .detail-works-map-wrap {
    margin-top: 2rem;
  }
}

.details-question__contents-map .tab__content .faq-list__item {
  box-shadow: none;
}

.details-question__contents-map .tab__content .faq-list__item .faq-list__item-question {
  border-radius: 0.5rem;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .details-question__contents-map .tab__content .faq-list__item .faq-list__item-question {
    font-size: 0.875rem;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit-heading__text.recruit-heading__text--detail {
    line-height: 1.8;
    color: #2f2f2f;
  }
}

.detail-works__inner .interview-list__item-img {
  max-width: 28.75rem;
}

.detail-works__inner .interview-list__item-content {
  max-width: 42.75rem;
}

.detail-question__heading.recruit-heading .recruit-heading__text {
  color: #2f2f2f;
}

.detail-works__heading.recruit-heading .recruit-heading__text {
  color: #2f2f2f;
}

.detail-works__inner .interview-list__item-img img {
  aspect-ratio: 460/320;
}

.faq-list__item-answer.recruit-answer {
  padding: 1.5rem 1.75rem;
  letter-spacing: 0;
  letter-spacing: normal;
  text-indent: 0;
}

.recruit-answer__list {
  display: flex;
  align-items: flex-end;
  padding-bottom: 1.5rem;
}

.recruit-answer__list + .recruit-answer__list {
  padding-bottom: 1.5rem;
}

.recruit-answer__number {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #12929d;
  max-width: 3.75rem;
  width: 100%;
  flex-shrink: 0;
}

.recruit-answer__number span {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #12929d;
  margin-right: 0.1875rem;
  font-weight: 500;
}

.recruit-answer__description {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-feature-settings: "palt";
}

.recruit-answer__list.recruit-answer__list--others {
  padding-top: 1.5rem;
  border-top: 0.0625rem solid #12929d;
}

.recruit-answer__list.recruit-answer__list--others .recruit-answer__number {
  max-width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-answer__list.recruit-answer__list--others .recruit-answer__number {
    max-width: 8.75rem;
  }
}

.recruit-answer__items li {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-feature-settings: "palt";
  padding-left: 1.75rem;
  position: relative;
}

.recruit-answer__items li:before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #12929d;
  border-radius: 50%;
}

.recruit-answer__items li + li {
  margin-top: 1rem;
}

.md-center {
  margin-inline: auto;
}

.detail-works__icon {
  position: absolute;
}

.detail-works__icon.icon--office {
  top: 173px;
  left: 38px;
}

.detail-works__icon.icon--sales {
  top: 173px;
  left: 117px;
}

.detail-works__icon.icon--analysis {
  top: 348px;
  left: 74px;
}

.detail-works__icon.icon--engineering {
  top: 173px;
  left: 364px;
}

.detail-works__icon.icon--operations {
  top: 173px;
  left: 447px;
}

.detail-works__icon.icon--production {
    top: 302px;
    left: 391px;
}

.service__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.interview {
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .interview {
    padding-bottom: 6.25rem;
  }
}

.layout-interview {
	position: relative;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .layout-interview {
    margin-top: 6.25rem;
  }
}

.interview__inner.inner {
  max-width: 65.625rem;
}
@media screen and (max-width: 767px) {
  .interview__inner.inner {
    max-width: none;
  }
}

.interview__list {
  margin-top: 6.25rem;
}

.interview-list__item:not(:last-child) {
  padding-bottom: 5rem;
  border-bottom: 0.0625rem solid #dadee2;
}
@media screen and (max-width: 767px) {
  .interview-list__item:not(:last-child) {
    padding-bottom: 3rem;
  }
}

.interview-list__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .interview-list__item {
    flex-direction: column;
  }
}

.interview-list__item + .interview-list__item {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .interview-list__item + .interview-list__item {
    padding-top: 3rem;
  }
}

.interview-list__item-img {
  max-width: 35rem;
  width: 100%;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .interview-list__item-img {
    max-width: none;
  }
}

.interview-list__item-img img {
  aspect-ratio: 493/329;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .interview-list__item-img img {
    aspect-ratio: 358/255;
  }
}

.interview-list__item-content {
  max-width: 22.5rem;
  width: 100%;
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .interview-list__item-content {
    margin-left: 0;
    margin-top: 1.5rem;
    max-width: none;
  }
}

.interview-list__item-age,
.interview-list__item-division {
  padding: 0.25rem 1rem;
  color: #ffffff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .interview-list__item-age,
  .interview-list__item-division {
    padding: 0.25rem 1rem;
  }
}

.interview-list__item-age {
  min-width: 5rem;
  font-size: 0.875rem;
  background-color: #3dc176;
}
@media screen and (max-width: 767px) {
  .interview-list__item-age {
    font-size: 0.75rem;
  }
}

.interview-list__item-division {
  min-width: 5rem;
  font-size: 1.5rem;
  background-color: #45b4bd;
}
@media screen and (max-width: 767px) {
  .interview-list__item-division {
    font-size: 1rem;
  }
}

.interview-list__item-title {
  margin-top: 1.5rem;
  font-size: 1.75rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.interview-list__item-name {
  margin-top: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .interview-list__item-name {
    font-size: 1.125rem;
  }
}

.interview-list__item-text {
  margin-top: 1.5rem;
}

.interview-list__btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .interview-list__btn {
    top: 188%;
    left: 71%;
  }
}

.interview-list__btn:hover .interview-list__item-img img {
  transform: scale(1.1);
}

.interview__bg-left,
.interview__bg-left-second {
  width: 16.1875rem;
  height: 18.75rem;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/bg-interview-right.svg");
}
@media screen and (max-width: 767px) {
  .interview__bg-left,
  .interview__bg-left-second {
    bottom: -570%;
    left: 70%;
  }
}

.interview__bg-left {
  top: 8%;
  left: -9%;
}

.interview__bg-left-second {
  top: 69%;
  left: -9%;
}
@media screen and (max-width: 767px) {
  .interview__bg-left-second {
    top: 380%;
    left: -32%;
  }
}

.interview__bg-right,
.interview__bg-right-second {
  width: 16.1875rem;
  height: 18.75rem;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/bg-interview-right.svg");
}

.interview__bg-right {
  top: 38%;
  right: -6%;
}

.interview__bg-right-second {
  top: 101%;
  right: -6%;
}

.detail-nav__inner.inner {
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 0.0625rem solid #dadee2;
  border-bottom: 0.0625rem solid #dadee2;
}
@media screen and (max-width: 767px) {
  .detail-nav__inner.inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .detail-nav__btn .btn-arrow-left__name {
    margin-left: 0.375rem;
  }
}

@media screen and (max-width: 767px) {
  .detail-nav__btn .btn-arrow-right__name {
    margin-right: 0.375rem;
  }
}

.btn-arrow-right--reverse {
  margin-top: 5rem;
  background-color: #f5f5f5;
  margin-inline: auto;
  max-width: 14.625rem;
  width: 100%;
  border-radius: 2.5rem;
}
@media screen and (max-width: 767px) {
  .btn-arrow-right--reverse {
    margin-top: 3rem;
    margin-bottom: 6.25rem;
  }
}

.btn-arrow-right--reverse .button {
  padding: 1rem 1.25rem 1rem 1rem;
}

.interview-list__btn .button-text {
  margin-right: 8.125rem;
}

.interview-list__item-img {
  overflow: hidden;
}

.recruit-member__name span {
  font-size: 0.8125rem;
}

.interview-mv {
  height: 43.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview-mv {
    height: 17.5rem;
  }
}

.interview-mv__inner {
  max-width: 73.125rem;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .interview-mv__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.interview-mv__contents {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .interview-mv__contents {
    bottom: -15.625rem;
  }
}

.interview-mv__title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 1.5rem;
  width: 53%;
}
@media screen and (max-width: 767px) {
  .interview-mv__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.8;
    margin-top: 6.3125rem;
    width: 89%;
  }
}

.interview-mv__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 2.75rem;
}

.interview-mv__img {
  width: 69.4444444444%;
  margin-left: auto;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview-mv__img {
    bottom: -5.625rem;
    width: 100%;
    padding-top: 10.9375rem;
  }
}

.interview-mv__img::before {
  content: ""; /* 擬似要素を表示させるための必須プロパティ */
  position: absolute; /* 親要素内で絶対配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none; /* 背景部分がクリックを妨げないようにする */
}

.interview-mv__img img {
  aspect-ratio: 716/510;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.interview-mv__age,
.interview-mv__division {
  padding: 0.25rem 1rem;
  color: #ffffff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .interview-mv__age,
  .interview-mv__division {
    padding: 0.25rem 1rem;
  }
}

.interview-mv__age {
  min-width: 5rem;
  font-size: 0.875rem;
  background-color: #3dc176;
}
@media screen and (max-width: 767px) {
  .interview-mv__age {
    font-size: 0.75rem;
    margin-top: 12.5rem;
  }
}

.interview-mv__division {
  min-width: 5rem;
  font-size: 1.25rem;
  background-color: #53bdc6;
}
@media screen and (max-width: 767px) {
  .interview-mv__division {
    font-size: 1rem;
  }
}

.layout-single-interview {
  margin-top: 16.875rem;
}

.single-interview__item {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .single-interview__item {
    display: block;
  }
}

.single-interview__item + .single-interview__item {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .single-interview__item + .single-interview__item {
    margin-top: 7.5rem;
  }
}

.single-interview__item:nth-child(even) {
  flex-direction: row-reverse;
}

.single-interview__item-texts {
  max-width: 37.5rem;
  width: 100%;
}

.single-interview__item-title {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #dadee2;
  position: relative;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .single-interview__item-title {
    font-size: 1.25rem;
  }
}

.single-interview__item-title::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  left: 0%;
  transform: translateY(-122%);
  border-radius: 50%;
  background-color: #77bcc2;
}

.single-interview__item-sub-title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1.8;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .single-interview__item-sub-title {
    font-size: 1.125rem;
  }
}

.single-interview__item-texts > .single-interview__item-title:not(:first-child) {
  margin-top: 2.8125rem;
}

.single-interview__item-text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 2;
  margin-top: 1rem;
}

.single-interview__item-img {
  max-width: 32.5rem;
  width: 100%;
  flex-shrink: 0;
  border-radius: 0.5rem;
}

.single-interview__item-img:nth-child(even) {
  border-radius: 0.5rem;
  top: 6.25rem;
}

.single-interview__item-img img {
  aspect-ratio: 520/549;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.schedule {
  position: relative;
}

.schedule__title {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-left: 1.75rem;
  position: relative;
}

.schedule__title::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  background-color: #4894a7;
  border-radius: 50%;
}

.schedule__inner {
  background-color: #f9f9f9;
  padding: 5rem 0;
  padding-left: 7.5rem;
}
@media screen and (max-width: 767px) {
  .schedule__inner {
    padding: 5rem 0.625rem;
    padding-bottom: 2.5rem;
  }
}

.schedule__list {
  margin-top: 3.5rem;
}

.layout-schedule {
  margin-top: 6.6875rem;
}
@media screen and (max-width: 767px) {
  .layout-schedule {
    padding-bottom: 18.9375rem;
  }
}

.schedule-list__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.schedule-list__term {
  width: 10%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0em;
  color: #4894a7;
}
@media screen and (max-width: 767px) {
  .schedule-list__term {
    width: 20%;
    font-size: 0.75rem;
  }
}

.schedule-list__description {
  padding-bottom: 3.25rem;
  padding-left: 1.75rem;
  width: 86%;
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .schedule-list__description {
    font-size: 0.875rem;
  }
}

.schedule-list__description::before,
.schedule-list__description::after {
  content: "";
  position: absolute;
  top: 0.5rem;
}

.schedule-list__description::before {
  left: 0;
  width: 1px;
  height: 100%;
  background: #4894a7;
  top: -0.375rem;
}
@media screen and (max-width: 767px) {
  .schedule-list__description::before {
    top: -1.4375rem;
  }
}

.schedule-list__description::after {
  left: -0.1875rem;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: #4894a7;
}

.schedule-list__text {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.schedule__icon {
  position: absolute;
  background-image: url("../images/bg-single-interview.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 32.25rem;
  height: 15.5rem;
  bottom: -8%;
  right: 4%;
}
@media screen and (max-width: 767px) {
  .schedule__icon {
    width: 16.4375rem;
    height: 8rem;
    bottom: 8%;
    right: 4%;
  }
}

.header__nav-modal-nav {
  display: flex;
  align-items: flex-start;
  margin-top: 1.75rem;
  gap: 1.5rem;
}

.header__drawer-accordion-top {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-bottom: 1.375rem;
  position: relative;
}

.header__drawer-accordion-top::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #2f2f2f 20%, rgba(190, 200, 201, 0.3) 20%);
}

.header__drawer-accordion-top a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.25rem;
}

.single-interview__item-img {
  position: sticky;
  top: 100px;
}

.single-interview__item-texts {
  opacity: 0;
  transition: all 0.8s ease;
}

.single-interview__item-texts.active {
  opacity: 1;
}

.recruit-heading__title.recruit-heading__title--single-interview {
  color: #ffffff;
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.75rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .recruit-heading__title.recruit-heading__title--single-interview {
    font-size: 1.5rem;
  }
}

.recruit-heading__title.recruit-heading__title--single-interview::after {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 50%;
}

.layout-contact-confirm {
  margin-top: 10rem;
}

.contact-complete__text {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 2;
}

.contact-complete__btn {
  margin-top: 3rem;
}

.layout-page404 {
  margin-top: 10rem;
}

.page404__text {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 2;
}

.page404__btn {
  margin-top: 3rem;
}

.page404__btn .button-text {
  margin-right: 6rem;
}
/* 商品詳細ページレイアウト調整 */
.hidden-page {
  overflow-x: hidden;
}

.layout-product-detail {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .layout-product-detail {
    margin-top: 6.25rem;
  }
}

@media screen and (max-width: 767px) {
  .product-detail__contents {
    max-width: 37.5rem;
    width: 100%;
  }
}

.product-detail__contents h2 {
  position: relative;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-top: 5rem;
  padding-left: 1.75rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .product-detail__contents h2 {
    font-size: 1.5rem;
  }
}

.product-detail__contents h2::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  left: 0;
  top: 28%;
  transform: translateY(-50%);
  background-color: #77bcc2;
  border-radius: 50%;
}

.product-detail__contents h3 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #12929d;
}

.product-detail__contents h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 2.5rem;
  color: #2f2f2f;
}

.product-detail__contents p,
.product-detail__contents h5 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.product-detail__contents p a {
  color: #73b2c8;
  -webkit-text-decoration: underline #73b2c8;
          text-decoration: underline #73b2c8;
}

.product-detail__contents ul {
  list-style: inside;
}

.product-detail__contents ul li {
  font-size: 1rem;
  padding-left: 1.375rem;
  line-height: 2;
  text-indent: -1.125rem;
}

.product-detail__contents .product-detail__contents ul li::before {
  content: "";
  margin-right: 0.625rem;
  position: relative;
  top: -0.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  background-color: #73b2c8;
  border-radius: 50%;
}

.product-detail__contents ol {
  counter-reset: number;
}

.product-detail__contents h1 > p:first-of-type {
  margin-top: 1rem;
}

.product-detail__contents ol li {
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -0.75rem;
}

.product-detail__contents ol li::before {
  counter-increment: number;
  content: counter(number) ".";
  margin-right: 0.625rem;
  display: inline-block;
  line-height: 1;
}

.product-detail__contents .wp-block-media-text + .wp-block-media-text {
  margin-top: 2rem;
}

.product-detail__contents figure {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product-detail__contents figure {
    margin-top: 3rem;
  }
}

.product-detail__contents figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-detail__contents hr {
  border-color: #dadee2;
  padding-bottom: 0.25rem;
}

.product-detail__contents .wp-block-media-text > .wp-block-media-text__content {
  padding: 0;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .product-detail__contents .wp-block-media-text > .wp-block-media-text__content {
    margin-left: 0;
  }
}

.products-other__inner.inner {
  max-width: 79rem;
}
@media screen and (max-width: 767px) {
  .products-other__inner.inner {
    max-width: none;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.layout-products-other {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .layout-products-other {
    margin-top: 6.25rem;
  }
}

.products-other__list {
  display: grid;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.4375rem;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .products-other__list {
    margin-top: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.25rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.products-other__title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* SCSS更新していない（12/26 渡邊） */
.modal__btn {
    gap: 16px;
}
.modal__wrap .modal__title-wrap:not(:nth-child(1)){
    padding-top: 40px;
}
.modal__content {
  align-items: flex-start;
}
.group__wrap {
    width: 100% !important;
}
.header__drawer-btn a {
    display: inline-block;
    padding: 19px 56px;
    background-color: #f2950b;
    color: #ffffff;
    border-radius: 30px;
    max-width: 205px;
    width: 100%;
    font-size: 15px;
}
.header__drawer-btn {
    text-align: center;
}
.header__drawer-accordion-title.is-open::before {
    top: 1.4375rem;
	transform: rotate(90deg);
}
.header__drawer-accordion-title::before {
    top: 1.4375rem;
    transform: rotate(0deg);
}
.division-list__tops-btn .button-icon{
	    margin-left: 0;
}
.c_viewmore {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 0!important;
}
@media (max-width: 1200px){
	.group__wrap {
        width: 1260px !important;
    }
   .group-scroll-wrap {
    overflow-x: scroll;
    scrollbar-width: none;
}
}
@media screen and (max-width: 767px) {
  .c_viewmore {
    gap: 10px;
}
 .modal__place {
        font-size: 12px;
        padding: 8px 16px;
        margin-top: 12px;
        margin-right: auto;
    }
   .modal__text {
        font-size: 16px;
    }
	.modal__body {
    width: 100%;
	}
	 .group__wrap {
        width: 1260px !important;
    }
	.modal__wrap .modal__title-wrap:not(:nth-child(1)) {
    padding-top: 0;
}
	    .header {
        padding-top: 0rem;
        padding-bottom: 0.5rem;
    }
	.circle-set {
        max-width: 255px;
    }
	 .circle-container {
        width: 100%;
        height: 0;
    }
	.contact__inner {
    align-items: baseline;
	}
	body.archive.post-type-archive.post-type-archive-product.logged-in section.division.layout-division {
    margin-top: 0;
}
	.division__list {
        margin-top: 100px!important;
    }
	    #business-bg-2 {
        left: -100px;
        top: -5%;
        transform: rotate(8deg);
    }
	    #business-bg-3 {
        top: 50px;
        transform: rotate(20deg);
    }
 .division-products__title, .division-others__title{
    font-size: 24px;
}
	    .division-products__list {
        margin-top: 40px;
    }
}
.division-head__card a {
    display: inline-block;
    padding-right: 2.8125rem;
    padding-bottom: 2.5rem;
}
p.division-head__card-text {
    padding-top: 12px;
    line-height: 1.6;
}
.interview-list__btn .button-text {
    margin-right: 0;
}
.page404__btn .button-text {
    margin-right: 0;
}
.product-list__category {
	border-radius:4px;
}
/* コンテンツ幅（news） */
.inner.inner--lg {
    max-width: 1250px;
}
/* news */
   .c_bloglist .news-list__item-content {
    position: relative;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
}
    .c_bloglist li.news-list__item:nth-of-type(1) {
    padding-top: 0;
}
    .c_bloglist li.news-list__item:nth-of-type(1) a {
    padding-top: 0;
    border-top: 0;
}
   .c_bloglist .news-list__item a {
    gap: 40px;
    padding-bottom: 48px;
    padding-top: 48px;
    border-bottom: 1px solid #DADEE2;
}
/* トップページのnews箇所 */
.c_top .news-list__item a {
    padding-bottom: 24px;
}
.c_top .news-list__item a:last-of-type {
    padding-bottom: 24px;
}

@media screen and (max-width: 767px) {
	main.c_archive.hidden-page li.news-list__item a {
    gap: 16px;
}
    .c_bloglist .sub-news-list__news.news .news-list__item a {
    gap: 16px;
    padding-bottom: 24px;
    padding-top: 24px;
}
    .sub-news-list__news.news .news-list__item a .news-list__item-content {
      margin-left: 0;
   }
   .c_bloglist .sub-news-list__news.news .news-list__item {
        border-top: none;
    }
   .c_bloglist li.news-list__item:nth-of-type(1) a {
    border-top: 1px solid #DADEE2;
}
   .c_bloglist .detail__item .detail__link {
        font-size: 13px;
    }
	
   .c_bloglist .pagenavi {
    margin-top: 48px;
    margin-bottom: 0;
}
   .pagenavi .wp-pagenavi .current {
    padding: 18px 20px;
}
   .c_bloglist pagenavi .wp-pagenavi .previouspostslink, .pagenavi .wp-pagenavi .nextpostslink {
        padding: 19px;
    }
.pagenavi .wp-pagenavi .previouspostslink{
        padding: 19px;
	}
   .heading__inner.inner {
    max-width: 78rem;
    padding-left: 15px;
    padding-right: 15px;
}
   .c_bloglist .sub-news-list__menu-list {
        gap: 24px;
    }
	 .sub-news-list__news.news .news-list__item {
        border-top: 0;
    }
	li.detail__item.sub-news-list__menu-item {
    font-size: 13px;
	}
	ul.sub-news-list__menu-list {
    gap: 24px;
	}
.c_postdetail .detail-head__title {
    font-size: 24px;
    line-height: 1.5;
}
.c_postdetail .product-detail__contents figure {
    margin-top: 24px;
}
	.c_postdetail .detail-nav__btn.btn-arrow-right a.button {
    gap: 10px;
}
	.detail-nav__btn.btn-arrow-right.btn-arrow-right--reverse span.btn-arrow-left__name {
    margin-left: 20px;
}
	.c_postdetail .btn-arrow-right--reverse {
    max-width: 260px;
}
	.detail-nav__btn .btn-arrow-left__name {
        margin-left: 0;
    }
	span.btn-arrow-left__name {
    font-size: 14px;
}
}
/* news */
/* contact */
p.sub-contact__title {
    padding-bottom: 22px;
}
dl.form__wrap p {
    font-weight: 400;
    font-size: 16px;
}
@media screen and (max-width: 767px) {
	p.sub-contact__title {
    padding-bottom: 16px;
}
	.sub-contact__tel-icon {
    margin-right: 6px;
}
}
/* contact */
/* interview */
.interview-list__btn {
    margin-top: 44px;
}
span.recruit-member__name {
    display: inline-block;
    margin-top: 10px;
}
.recruit-member {
    background-color: #53bdc6;
    padding-bottom: 140px;
}
.c_interviewbg-water{
    position: absolute;
    background-image: url(../images/interview.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    max-width: 180px;
    max-height: 223px;
    top: 200px;
    left: -31px;
}
@media screen and (max-width: 767px) {
.c_interviewbg-water {
    position: absolute;
    background-image: url(../images/interview.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    max-width: 180px;
    max-height: 223px;
    top: 24px;
    left: -142px;
}
	.interview__bg-left {
    display: none;
}
	.interview.layout-interview {
    margin-bottom: 0;
}
	.interview-list__item-name {
    margin-top: 24px;
    font-weight: 700;
}
	.interview-list__item-title {
    font-size: 24px;
}
    .interview__bg-right {
    top: 242%;
    right: -34%;
}
	.interview__bg-right-second {
    bottom: -507%;
    right: 84%;
}
    .interview-mv__img {
        bottom: -5.625rem;
        width: 100%;
        padding-top: 8.25rem;
        height: 356px;
        box-sizing: content-box;
    }
	.interview-mv__img img {
    height: 100%;
}
	.interview-mv__age {
        margin-top: 13.5rem;
    }
    .schedule__inner {
        padding: 5rem 0.625rem;
        padding-bottom: 2.5rem;
        padding-left: 15px;
        padding-right: 15px;
    }
	.schedule-list__description {
    padding-bottom: 31px;
}
	.schedule__list {
    margin-top: 5rem;
}
	 .layout-schedule {
        padding-bottom: 12.9375rem;
        position: relative;
    }
	 .schedule__icon {
        width: 16.4375rem;
        bottom: 16%;
        right: 4%;
        max-width: 345px;
        width: 100%;
    }
	.schedule__icon {
    background-image: none;
}
	.interview-mv__name {
    margin-top: 14px;
}
	.layout-single-interview {
    margin-top: 20.875rem;
}
	.single-interview__item-img {
    margin-top: 24px;
}
    .interview-list__item-name {
        margin-top: 18px;
        font-weight: 700;
    }
	.interview-list__btn {
    margin-top: 34px;
}
	.interview__inner.inner {
    padding-left: 15px;
    padding-right: 15px;
}
	.recruit-member {
    background-color: #53bdc6;
    padding-bottom: 80px;
}
}
/* strength 強み */
.strength {
    padding-bottom: 220px;
}
.strength-list__item-img img {
    border-radius: 0.5rem;
}
.strength-list__item:nth-of-type(even) .strength-list__item-img img{
    border-radius: 0.5rem;
}

@media screen and (max-width: 767px) {
.strength {
    padding-bottom: 220px;
}	
    .strength-list__item:nth-of-type(even) .strength-list__item-text-wrap {
        margin-right: 0;
        padding-left: 16px;
        margin-left: 0;
    }
.strength .heading {
        padding-top: 7.875rem;
	}
	.detail-item.div7 .detail-item__img img {
/*     aspect-ratio: 1002 / 732; */
}
}
/* 深く知るページ */
.c_detail-item__careerimg.detail-item__img img {
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .detail-item {
        padding: 44px 0.5rem;
    }
	 .detail-item__contents-unit {
        margin-left: 1px;
    }
	.detail-item.detail-item--btn{
        padding: 44px 0.5rem;
	}
	p.detail-item__contents-item-attention {
    font-size: 11px;
    padding-bottom: 10px;
}
	    .detail-item__contents-item {
        font-size: 14px;
    }
}
/* 会社案内 */
.heading__inner.inner {
    max-width: 1210px;
}
.blog .heading__inner.inner {
    max-width: 1250px;
}
.single.single-post .detail-nav__btn.btn-arrow-right.btn-arrow-right--reverse {
    margin-bottom: 100px;
}
h2.company-massage__title.sub-title.md-dots {
    max-width: 1200px;
    margin: 0 auto;
}
.company-vision__contents {
    justify-content: space-between;
}
ul.menu__list {
    border-radius: 8px;
}
.company-group__content {
    border-radius: 8px;
}
.company__profile.company-profile p,dd {
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
	.single.single-post .detail-nav__btn.btn-arrow-right.btn-arrow-right--reverse {
    margin-bottom: 80px;
}
	.company-group__content-inner .company__profile .company-profile__list:not(:first-child) {
    margin-top: 20px;
}
	.company__profile.company-profile p,dd {
    font-size: 16px;
    line-height: 1.6;
}
	.company-group__content-inner {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 24px;
    padding-right: 24px;
}
	h2.company-massage__title.sub-title.md-dots {
    margin-left: 15px;
	font-size:24px;
}
p.company-vision__text {
    font-size: 16px;
}
	.company-history__inner.inner {
    width: 100%;
    max-width: 78.125rem;
    margin-left: auto;
    margin-left: auto;
}
.company-history__item p.company-history__text{
    padding-bottom: 21px;
    font-size: 14px;
	padding-right:24px;
padding-top: 20px;
}
	.company-history__number::after {
        width: 40px;
    }
    .company-history__item {
        width: 100%;
    }
	.company-history__item p.company-history__number {
    font-size: 24px;
    padding-bottom: 32px;
	}
	.company-history__number span {
    font-size: 14px;
	}
}
/* 採用 */
li.swiper-slide img {
    border-radius: 8px;
	max-height: 643.8px;
}
li.swiper-slide img {
    border-radius: 8px;
}
.sub-recruit-mv {
    padding-top: 7.5rem;
}
.sub-recruit__title-wrap{
	margin-top: -3.875rem;
}
.service-swiper .swiper-slide{
	transform:scale(0.8);
}
.service-swiper .swiper-slide-active{
	transform:scale(1)!important;
}
p.sub-recruit__title {
    padding: 16px 20px;
    border-radius: 4px;
}
.recruit-area__swiper.recruit-area-swiper {
    margin-top: 48px;
}
    .recruit-area__title {
        line-height: 1.5;
    }
.recruit-question__tab.tab .tab__menu-item {
    line-height: 1.5;
}
.recruit-question__tab.tab .tab__menu-wrap {
    padding: 1.125rem 0rem 1.25rem 0rem;
}
.recruit-question__tab.tab .tab__menu-item {
    padding-left: 1.5rem;
}
.circle-set {
    position: absolute;
    width: 29.25rem;
    height: 21.25rem;
    top: 0;
    bottom: 0;
    border-radius: 50%;
}
.circle-set:not(.secondary-set) {
	z-index: 1;
}
@media screen and (max-width: 767px) {
	p.recruit-heading__text.md-show {
    margin-top: 28px;
}
	p.recruit-heading__text.md-show {
    margin-top: 28px;
}
p.faq-list__item-question.js-faq-question{
    font-size: 16px!important;
	}
	.recruit-question__tab.tab .tab__menu-item{
    padding-left: 0 !important;
}
	.faq-list__item-question{
     padding:0.875rem 3.75rem 0.875rem 4rem!important;
	}
	ul.tab__menu {
    gap: 24px;
}
	.sub-recruit-desc__text {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 2.8;
}
	.sub-recruit-desc__text + .sub-recruit-desc__text {
    margin-top: 6px;
}
	.p.faq-list__item-answer{
    font-size: 16px;
     padding:0.875rem 3.75rem 0.875rem 4rem!important;
	}
    .recruit-area__title {
        margin-top: 16px;
    }
	.sub-recruit-desc {
        padding-bottom: 26.375rem;
    }
	.sub-recruit-desc__contents::after {
        width: 168px;
        height: 168px;
        bottom: -55%;
        z-index: 1;
        right: 0%;
    }
	p.sub-recruit__title {
    padding: 12px 16px;
    border-radius: 4px;
    font-size:27px;
}
	.service-swiper .swiper-slide{
	transform:scale(0.9)!important;
	}
	.service-swiper .swiper-slide-active{
	transform:scale(1)!important;
}
	    .sub-recruit-desc__img02 {
        width: 17.5rem;
        height: 10rem;
        top: 12%;
    }
	.sub-recruit-mv {
    padding-top: 5.5rem;
}
	.recruit-area__swiper.recruit-area-swiper {
    margin-top: 48px;
}
}
@media screen and (max-width: 500px) {
		  .interview-mv__img {
        bottom: -5.625rem;
        width: 100%;
        padding-top: 8.25rem;
        height: 222px;
        box-sizing: content-box;
    }
    .circle-set.secondary-set {
        bottom: -459px;
        left: 95px;
		margin-top: -88px;
    }
	.circle-set.secondary-set.js-top {
    position: absolute;
    bottom: 45px;
	}
	.circle-set{
		position:relative!important;
	}
}
/* 1/4 */
p.single-interview__item-sub-title {
    background-color: #53bdc6;
    font-weight: normal;
    color: #fff;
    border-radius: 5px;
    padding: 4px 3px 4px 8px;
    margin-top: 25px;
	font-size:20px;
}
@media screen and (max-width: 767px) {
p.single-interview__item-sub-title {
	font-size:18px;
}
.c_postdetail .product-detail__contents ol.wp-block-list {
    padding-left: 10px;
}
}
.c_postdetail .detail-head.layout-detail-head {
    padding-bottom: 30px;
}
.c_postdetail .product-detail__contents p {
    padding-top: 10px;
}
/*# sourceMappingURL=style.css.map */

/* 表の画像など */
.u-border-radius--0 {
	border-radius: 0 !important;
}

/* Xアイコン */
.header__drawer-btn-x {
	display: grid;
    place-items: center;
    margin-top: 2.5rem;
}

.btn-x {
	width: 25px; /* リンクの幅 */
	height: 25px; /* リンクの高さ */
	background-image: url(../images/logo-x-black.png); /* 背景画像 */
	background-size: contain; /* 画像を要素にフィットさせる */
	background-position: center; /* 画像を中央に配置 */
	background-repeat: no-repeat; /* 画像を繰り返さない */
}

/* 改行調整 */
.u-br {
	display: inline-block;
}

/* 記事内数字 */
.c-title-number {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.5rem;
	align-items: start;
}
.c-title-number__number {
	display: inline-grid;
	place-items: center;
	width: 2rem;
	color: white;
	background-color: #12929D;
	border-radius: 4px;
}

/* スクロール時のpadding-top */
html {
	scroll-padding-top: 80px;
}

/* 1位内テキスト */
.c-no-1 {
    font-size: 1.4rem;
    color: #12929d;
}

/* 1位 */
.c-no-1-number {
	font-size: 1.4rem;
/* 	line-height: 1.2; */
}

.c-no-1-number span {
	font-size: 2.4rem;
}

/* Lazy Blockの入力フィールド調整 */
.components-base-control__label {
	padding-top: 10px;
}

/* 他の先輩社員の声セクション */
.recruit-member .inner.inner--lg {
/*     max-width: 1671px;
    margin-right: 0; */
	padding-left: 25px;
}

.js-recruit-member-swiper {
	overflow: visible !important;
}

/* topのabout */
@media (max-width: 768px) {
	.about__item picture {
		aspect-ratio: 345 / 204;
	}
}