@charset "UTF-8";
/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  position: relative;
  width: 100%;
  min-width: 390px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #171717;
}
body.is-locked {
  overflow: hidden;
}
@media (min-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

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

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/*------------------------------
Fade In Animation (Reusable)
------------------------------*/
.fade-in {
  opacity: 0;
  transition: opacity 1s 0.2s;
}
.fade-in.is-visible {
  opacity: 1;
}

.mv__catchcopy.fade-in {
  opacity: 0;
  transition: opacity 2s 1.2s;
}
.mv__catchcopy.fade-in.is-visible {
  opacity: 1;
}

.recruit__content.fade-in {
  opacity: 0;
  transition: opacity 1s 0.8s;
}
.recruit__content.fade-in.is-visible {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.2s, transform 1s 0.2s;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/*------------------------------
Header
------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 54px;
  background-color: #ffffff;
  border-bottom: 1px solid #bcbcbc;
  backdrop-filter: blur(15px);
}
@media (min-width: 1048px) {
  .header {
    height: 80px;
    border-bottom: none;
  }
}
.header__inner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 1048px) {
  .header__inner {
    justify-content: space-between;
    padding: 0 36px 0 12px;
    width: min(100%, 1366px);
  }
}
.header__logo a {
  display: block;
  line-height: 1;
}
.header__logo a img {
  width: 62px;
  height: 45.5px;
  object-fit: contain;
}
@media (min-width: 1048px) {
  .header__logo a img {
    width: 92.66px;
    height: 68px;
  }
}
.header__nav {
  position: fixed;
  top: 54px;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: #0095d0;
  overflow-y: auto;
  transform: translateX(100%);
  padding: 0 20px 40px;
  transition: transform 0.3s ease;
}
.header__nav.is-active {
  transform: translateX(0);
}
.header__nav.is-resizing {
  transition: none;
}
@media (min-width: 1048px) {
  .header__nav {
    position: static;
    width: auto;
    height: 100%;
    background-color: transparent;
    overflow-y: visible;
    transform: none;
    padding: 0;
    display: block;
    transition: none;
    opacity: 1;
  }
}
.header__list {
  display: block;
  padding-top: 0;
}
@media (min-width: 1048px) {
  .header__list {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
.header__item {
  display: block;
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-size: 1.4rem;
}
@media (min-width: 1048px) {
  .header__item {
    display: flex;
    align-items: center;
    height: 100%;
    border-bottom: none;
    color: #464646;
  }
}
.header__item:last-of-type {
  border-bottom: none;
}
.header__item > a,
.header__item > span {
  display: block;
  color: inherit;
  width: 100%;
  height: 100%;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  transition: color 0.3s, background-color 0.3s;
  position: relative;
  font-weight: 700;
  cursor: pointer;
}
@media (min-width: 1048px) {
  .header__item > a,
  .header__item > span {
    width: auto;
    position: static;
  }
}
@media (min-width: 1048px) {
  .header__item > a:hover,
  .header__item > span:hover {
    background-color: #0095d0;
    color: #ffffff;
  }
}
@media (min-width: 1048px) {
  .header__item--has-sub:hover > a, .header__item--has-sub:hover > span, .header__item--has-sub.is-open-pc > a, .header__item--has-sub.is-open-pc > span {
    background-color: #0095d0;
    color: #ffffff;
  }
}
.header__item--has-sub > a::after, .header__item--has-sub > span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M7 0v14M0 7h14' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s;
}
@media (min-width: 1048px) {
  .header__item--has-sub > a::after, .header__item--has-sub > span::after {
    display: none;
  }
}
.header__item {
  /* Toggle to Minus (-) */
}
.header__item.is-open > a::after, .header__item.is-open > span::after {
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M0 7h14' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
}
.header__sub-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  background-color: transparent;
}
@media (min-width: 1048px) {
  .header__sub-menu {
    height: auto;
    overflow: visible;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100vw;
    background-color: #0095d0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  .header__sub-menu::before {
    display: none;
  }
}
@media (min-width: 1048px) {
  .header__item--has-sub.is-open-pc .header__sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header__nav.is-resizing-submenu .header__sub-menu {
  transition: none;
}
.header__sub-list {
  padding-bottom: 10px;
}
@media (min-width: 1048px) {
  .header__sub-list {
    padding-bottom: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    height: 60px;
  }
}
.header__sub-item {
  font-size: 1.4rem;
}
.header__sub-item a {
  display: block;
  color: #ffffff;
  padding: 10px 0 10px 27px;
}
.header__sub-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1048px) {
  .header__sub-item a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .header__sub-item a::before {
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 12'%3E%3Cpath d='M1 1l5 5-5 5' fill='none' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .header__sub-item a:hover {
    background-color: transparent;
    color: #ffffff;
    opacity: 0.8;
  }
}
.header__item--contact {
  padding: 18px 0;
}
.header__item--contact a {
  color: #0095d0;
  margin: 0 auto;
  padding: 15px 20px;
  border-radius: 999px;
  text-align: center;
  width: min(100%, 236px);
  height: min-content;
  display: block;
  color: #ffffff;
  transition: opacity 0.3s;
  background-color: #ffffff;
  color: #0095d0;
  font-weight: 500;
}
.header__item--contact a:hover {
  opacity: 0.9;
}
@media (min-width: 1048px) {
  .header__item--contact a {
    margin: 0 0 0 18px;
    padding: 7.5px 20px;
    width: auto;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    background: linear-gradient(90deg, #74d5f8 0%, #57acf6 35%, #2c7dc4 100%);
  }
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 100%;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0095d0;
  transition: all 0.3s;
  border-radius: 2px;
}
.header__hamburger.is-active span {
  background-color: #0095d0;
}
.header__hamburger.is-active span:nth-child(1) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(2) {
  transform: none;
}
.header__hamburger.is-active span:nth-child(3) {
  opacity: 0;
}
@media (min-width: 1048px) {
  .header__hamburger {
    display: none;
  }
}

/*------------------------------
Main Visual
------------------------------*/
.mv {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 54px;
}
@media (min-width: 768px) {
  .mv {
    min-height: auto;
    padding-top: 56.22%;
  }
}
@media (min-width: 1048px) {
  .mv {
    margin-top: 80px;
  }
}
.mv__video {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 39/49;
  background-color: #000;
}
@media (min-width: 768px) {
  .mv__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 683/384;
  }
}
.mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv__video-pc {
  display: none;
}
@media (min-width: 768px) {
  .mv__video-pc {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.mv__video-sp {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .mv__video-sp {
    display: none;
  }
}
.mv__content {
  position: relative;
  background-color: #ffffff;
  padding: 30px 20px 40px;
}
@media (min-width: 768px) {
  .mv__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.mv__catchcopy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .mv__catchcopy {
    position: absolute;
    left: 2.635431918vw;
    bottom: 8.4919472914vw;
    padding: 8px 7px 8px 13px;
    margin-bottom: 0;
  }
}
.mv__title {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.4;
  color: #464646;
  margin: 0;
}
@media (min-width: 768px) {
  .mv__title {
    font-size: 4.5rem;
    color: #ffffff;
    text-shadow: 0 0 12.5px rgba(0, 0, 0, 0.46);
    white-space: nowrap;
  }
}
.mv__title-line {
  display: block;
}
@media (min-width: 768px) {
  .mv__title-line {
    display: inline;
  }
}
.mv__subtitle {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #464646;
  padding: 0 0 6px 4px;
  margin: 0;
}
@media (min-width: 768px) {
  .mv__subtitle {
    font-size: 1.9rem;
    color: #ffffff;
    text-shadow: 0 0 7.5px rgba(0, 0, 0, 0.46);
    white-space: nowrap;
  }
}
.mv__subtitle-line {
  display: block;
}
@media (min-width: 768px) {
  .mv__subtitle-line {
    display: inline;
  }
}
.mv__bg-sp {
  position: absolute;
  right: 0;
  top: 50px;
  width: 130px;
  height: auto;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .mv__bg-sp {
    display: none;
  }
}
.mv__bg-sp img {
  width: 100%;
  height: auto;
}
.mv__buttons {
  position: fixed;
  left: 0;
  bottom: 10px;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .mv__buttons {
    display: none;
  }
}
.mv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.mv__btn:hover {
  opacity: 0.8;
}
.mv__btn--recruit {
  height: 45px;
  padding: 12.5px 15px;
  gap: 3px;
  background: linear-gradient(146.039deg, #74d5f8 2.8433%, #57acf6 35.853%, #2c7dc4 97.157%);
  border-radius: 7px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
}
.mv__btn--recruit .mv__btn-icon {
  width: 19px;
  height: 19px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mv__btn--unirobo {
  height: 45px;
  padding: 12.5px 15px;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
}
.mv__btn--unirobo img {
  width: 150px;
  height: auto;
}

/*------------------------------
Fixed Banner (PC)
------------------------------*/
.fixed-bnr {
  display: none;
}
@media (min-width: 768px) {
  .fixed-bnr {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: -3px;
    bottom: 111.25px;
    z-index: 100;
  }
}
.fixed-bnr__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.fixed-bnr__item:hover {
  opacity: 0.8;
}
.fixed-bnr__item--recruit {
  width: 148px;
  height: 85px;
  padding: 7.5px 20px;
  gap: 7.5px;
  flex-direction: column;
  background: linear-gradient(122.874deg, #74d5f8 2.8433%, #57acf6 35.853%, #2c7dc4 97.157%);
  border-radius: 7px 0 0 7px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 768px) {
  .fixed-bnr__item--recruit {
    position: relative;
    padding: 22px;
  }
}
.fixed-bnr__item--recruit .fixed-bnr__text {
  text-align: left;
}
.fixed-bnr__item--recruit .fixed-bnr__icon {
  width: 19px;
  height: 19px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .fixed-bnr__item--recruit .fixed-bnr__icon {
    position: absolute;
    right: 41px;
    bottom: 17.5px;
  }
}
.fixed-bnr__item--unirobo {
  width: 148px;
  height: 85px;
  padding: 7.5px 20px;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 7px 0 0 7px;
}
@media (min-width: 768px) {
  .fixed-bnr__item--unirobo {
    padding: 18px 22px 6px;
  }
}
.fixed-bnr__item--unirobo img {
  width: 100%;
  height: auto;
}

/*------------------------------
Page Top Button (fixed, visible after main visual)
------------------------------*/
.pagetop-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: fixed;
  right: 20px;
  bottom: 65px;
  z-index: 100;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: #464646;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (min-width: 768px) {
  .pagetop-btn {
    bottom: 20px;
  }
}
.pagetop-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pagetop-btn:hover {
  opacity: 0.8;
}
.pagetop-btn__icon {
  display: block;
  line-height: 0;
}
.pagetop-btn__icon img {
  display: block;
  width: 45px;
  height: 45px;
}
@media (min-width: 768px) {
  .pagetop-btn__icon img {
    width: 51px;
    height: 51px;
  }
}
.pagetop-btn__text {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .pagetop-btn__text {
    font-size: 1.3rem;
  }
}

/*------------------------------
Sub-page Main Visual (下層ページ共通MV)
------------------------------*/
.sub-mv {
  position: relative;
  width: 100%;
  margin-top: 54px;
  background-color: #e7eded;
}
@media (min-width: 768px) {
  .sub-mv {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 1048px) {
  .sub-mv {
    margin-top: 80px;
  }
}
.sub-mv__img-wrap {
  width: 50%;
  margin-left: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sub-mv__img-wrap {
    width: 54.83%;
  }
}
.sub-mv__img {
  display: block;
  width: 100%;
  height: auto;
}
.sub-mv__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  z-index: 1;
  max-width: 1040px;
  margin: auto;
  padding: 0;
  box-sizing: content-box;
}
@media (min-width: 1048px) {
  .sub-mv__inner {
    align-items: flex-start;
    left: 0;
    right: 0;
    order: 1;
    width: 1000px;
    padding: 0 20px;
  }
}
.sub-mv__head {
  position: relative;
  padding-left: 0;
}
.sub-mv__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 31px;
  height: 46px;
  pointer-events: none;
}
@media (min-width: 1048px) {
  .sub-mv__icon {
    top: 0;
    left: -43px;
    width: 43px;
    height: 122px;
  }
}
.sub-mv__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.sub-mv__heading {
  margin: 0;
  margin-bottom: 28px;
  padding: 28px 0 0 31px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (min-width: 1048px) {
  .sub-mv__heading {
    gap: 18px;
    margin-bottom: 37.5px;
    padding: 37.5px 0 0;
  }
}
.sub-mv__title-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #0095d0;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 1048px) {
  .sub-mv__title-en {
    font-size: 3rem;
  }
}
.sub-mv__title-ja {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: #171717;
  margin: 0;
}
@media (min-width: 1048px) {
  .sub-mv__title-ja {
    font-size: 3.8rem;
  }
}
@media (min-width: 768px) {
  .sub-mv__title-ja br {
    display: none;
  }
}

/*------------------------------
Breadcrumb (パンくずリスト / PCのみ)
------------------------------*/
.breadcrumb {
  display: none;
}
@media (min-width: 768px) {
  .breadcrumb {
    display: block;
    padding: 12px 0;
  }
}
.breadcrumb__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #464646;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: none;
}
.breadcrumb__item a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}
.breadcrumb__sep {
  display: flex;
  align-items: center;
  line-height: 0;
}
.breadcrumb__sep img {
  display: block;
  width: 5px;
  height: 8px;
}

/* Sub-page content area (下層ページコンテンツ) */
.sub-content {
  padding: 40px 0 80px;
}
@media (min-width: 768px) {
  .sub-content {
    padding: 60px 0 120px;
  }
}
.sub-content__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.sub-content__none {
  margin: 0;
  color: #464646;
}

.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.archive-item__header {
  margin-bottom: 8px;
}
.archive-item__date {
  display: block;
  font-size: 1.4rem;
  color: #464646;
  margin-bottom: 4px;
}
.archive-item__title {
  font-size: 1.6rem;
  margin: 0;
}
.archive-item__title a {
  color: inherit;
  text-decoration: none;
}
.archive-item__title a:hover {
  text-decoration: underline;
}
.archive-item__excerpt {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #464646;
  margin: 0;
}

.archive-nav {
  margin-top: 40px;
}
.archive-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.archive-nav__links .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  font-size: 1.4rem;
  color: #464646;
  text-decoration: none;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.archive-nav__links .page-numbers:hover {
  border-color: #0095d0;
  color: #0095d0;
}
.archive-nav__links .page-numbers.current {
  border-color: #0095d0;
  color: #0095d0;
  font-weight: 700;
}

/*------------------------------
Intro Section
------------------------------*/
.intro {
  background-color: #171717;
  padding: 60px 20px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .intro {
    padding: 130px 0 0;
  }
}
.intro__inner {
  position: relative;
}
@media (min-width: 768px) {
  .intro__inner {
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 100px;
  }
}
.intro__img-wrap {
  position: absolute;
  top: -58px;
  right: 0;
  display: inline-block;
  width: 534px;
  height: 723px;
  transition: opacity 2s 0.4s, scale 0.4s;
}
.intro__img-wrap:hover {
  scale: 1.05;
}
.intro__img--01 {
  display: none;
}
@media (min-width: 768px) {
  .intro__img--01 {
    position: relative;
    display: block;
    width: calc(100% - 636px - 100px);
  }
}
.intro__img--02 {
  display: none;
}
@media (min-width: 768px) {
  .intro__img--02 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .intro__img--02 img {
    width: 307px;
    height: auto;
  }
}
.intro__img--sp {
  width: 100%;
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .intro__img--sp {
    display: none;
  }
}
.intro__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
@media (min-width: 768px) {
  .intro__content {
    width: 636px;
    gap: 10px;
  }
}
.intro__heading {
  width: 100%;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: #464646;
  margin: 0;
}
@media (min-width: 768px) {
  .intro__heading {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.intro__heading-line {
  display: block;
}
.intro__text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
  color: #464646;
  margin: 0;
}
@media (min-width: 768px) {
  .intro__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.intro__title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 5.6rem;
  line-height: 1.15;
  color: #cceaf7;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .intro__title {
    font-size: 10.8rem;
    line-height: 1.15;
  }
}
.intro__title-line {
  display: block;
}

/*------------------------------
Company Section
------------------------------*/
.company {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .company {
    margin-top: -47px;
    padding: 0;
  }
}
.company__inner {
  position: relative;
  padding: 0 0 100px 0;
}
@media (min-width: 768px) {
  .company__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 180px;
  }
}
.company__headline {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 20px 21px;
}
@media (min-width: 768px) {
  .company__headline {
    margin: 0 0 40px 0;
  }
}
.company__headline-decoration {
  position: absolute;
  left: -31px;
  top: 0;
  width: 31px;
  height: 46px;
}
@media (min-width: 768px) {
  .company__headline-decoration {
    left: -43px;
    width: 43px;
    height: 122px;
  }
}
.company__headline-decoration img {
  width: 100%;
  height: auto;
}
.company__headline-text {
  padding-top: 32px;
}
.company__headline-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.15;
  color: #0095d0;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .company__headline-en {
    font-size: 5.1rem;
  }
}
.company__headline-ja {
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.25;
  color: #171717;
  margin: 0;
}
@media (min-width: 768px) {
  .company__headline-ja {
    font-size: 2.5rem;
  }
}
.company__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company__description {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  color: #464646;
}
.company__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .company__main {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.company__image {
  width: 100%;
}
@media (min-width: 768px) {
  .company__image {
    width: min(50%, 544px);
  }
}
.company__image img {
  width: 100%;
  height: auto;
  display: block;
}
.company__links {
  display: flex;
  gap: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .company__links {
    gap: 40px;
    width: min(50%, 415px);
  }
}
.company__links-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.company__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #bcbcbc;
  text-decoration: none;
  transition: opacity 0.3s;
}
.company__link:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .company__link {
    padding: 20px 0;
  }
}
.company__link-text {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #464646;
}
@media (min-width: 768px) {
  .company__link-text {
    font-size: 2rem;
  }
}
.company__link-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .company__link-icon {
    width: 35px;
    height: 35px;
  }
}
.company__link-icon img {
  width: 100%;
  height: auto;
  display: block;
}

/*------------------------------
Product Section
------------------------------*/
.product {
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .product {
    overflow: hidden;
    padding: 38px 0 72px;
  }
}
.product__bg {
  width: 100%;
  background-color: #e7eded;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .product__bg {
    padding: 50px 0;
  }
}
.product__inner {
  position: relative;
}
@media (min-width: 768px) {
  .product__inner {
    width: min(100%, 1214px);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.product__decoration-top {
  position: absolute;
  top: -40px;
  left: -10px;
  width: 82px;
  height: 117px;
  z-index: 3;
}
@media (min-width: 768px) {
  .product__decoration-top {
    top: -155px;
    left: 45px;
    width: 145px;
    height: 208px;
  }
}
.product__decoration-top img {
  width: 100%;
  height: auto;
}
.product__decoration-bottom {
  position: absolute;
  bottom: -56px;
  right: -15px;
  width: 80px;
  height: 117px;
  z-index: 4;
}
@media (min-width: 768px) {
  .product__decoration-bottom {
    bottom: -188px;
    right: -559px;
    width: 158px;
    height: 233px;
  }
}
.product__decoration-bottom img {
  width: 100%;
  height: auto;
}
.product__content {
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  padding: 60px 20px 20px 20px;
  width: min(100% - 40px, 350px);
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .product__content {
    width: 422px;
    padding: 40px 87px;
    margin: 0 -100px 0 0;
    flex-shrink: 0;
  }
}
.product__headline {
  margin-bottom: 10px;
}
.product__headline-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.15;
  color: #0095d0;
  text-transform: uppercase;
  margin: 0;
}
.product__headline-ja {
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.25;
  color: #171717;
  margin: 0;
}
.product__text {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  color: #464646;
  margin: 0 0 10px;
}
.product__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #0095d0;
  color: #ffffff;
  text-decoration: none;
  width: 232px;
  height: 46px;
  border-radius: 999px;
  margin: 0 auto;
  border: 1px solid #0095d0;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .product__btn:hover {
    color: #0095d0;
    background-color: #ffffff;
    border: 1px solid #0095d0;
  }
}
@media (min-width: 768px) {
  .product__btn {
    margin: 0;
  }
}
.product__btn-text {
  font-size: 1.4rem;
  font-weight: 500;
}
.product__btn-icon {
  position: relative;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product__btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.product__images {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .product__images {
    width: 948px;
    margin-right: -100px;
    flex: 0 0 auto;
  }
}
.product__images img {
  width: 100%;
  height: auto;
  display: block;
}

/*------------------------------
Business Section
------------------------------*/
.business {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .business {
    padding: 0;
  }
}
.business__inner {
  position: relative;
  padding: 0 0 100px 0;
}
@media (min-width: 768px) {
  .business__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 180px;
  }
}
.business__headline {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 20px 21px;
}
@media (min-width: 768px) {
  .business__headline {
    margin: 0 0 40px 0;
  }
}
.business__headline-decoration {
  position: absolute;
  left: -31px;
  top: 0;
  width: 31px;
  height: 46px;
}
@media (min-width: 768px) {
  .business__headline-decoration {
    left: -43px;
    width: 43px;
    height: 122px;
  }
}
.business__headline-decoration img {
  width: 100%;
  height: auto;
}
.business__headline-text {
  padding-top: 32px;
}
.business__headline-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.15;
  color: #0095d0;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .business__headline-en {
    font-size: 5.1rem;
  }
}
.business__headline-ja {
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.25;
  color: #171717;
  margin: 0;
}
@media (min-width: 768px) {
  .business__headline-ja {
    font-size: 2.5rem;
  }
}
.business__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .business__content {
    gap: 40px;
  }
}
.business__description {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  color: #464646;
}
.business__main {
  width: 100%;
}
.business__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: calc(100% + 40px);
  margin-bottom: 264px;
  translate: -20px 0;
}
@media (min-width: 768px) {
  .business__list {
    width: 1183px;
    margin-bottom: 164px;
    translate: -200px 0;
  }
}
.business__list:last-of-type {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .business__list:last-of-type {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .business__list--reverse {
    translate: 0 0;
  }
  .business__list--reverse .business__item-content {
    left: 40px;
    right: auto;
  }
}
.business__bg picture {
  display: block;
}
.business__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business__item-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -204px;
  transform: translate(-50%, 0);
  text-align: center;
}
@media (min-width: 768px) {
  .business__item-content {
    top: -50px;
    left: inherit;
    right: 40px;
    width: fit-content;
    height: fit-content;
    transform: none;
    text-align: left;
  }
}
.business__item-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 350px;
  min-height: 260px;
  padding: 36px 40px;
}
@media (min-width: 768px) {
  .business__item-info {
    align-items: flex-start;
    gap: 0;
    padding: 71.5px 24px 67.5px 40px;
    width: 433px;
    min-height: 349px;
  }
}
.business__item-info::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #74d5f8 0%, #2e7fc6 36.45%, #3072ac 65.52%, #014d90 100%);
  clip-path: polygon(23.22% 0%, 100% 0%, 100% 83.61%, 78.2% 100%, 0% 100%, 0% 17.46%);
  opacity: 0.8;
  z-index: -1;
}
.business__item-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
}
@media (min-width: 768px) {
  .business__item-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
}
.business__item-text {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.3;
  color: #ffffff;
}
@media (min-width: 768px) {
  .business__item-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.business__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  border-radius: 999px;
  width: 248px;
  height: 46px;
  color: #0095d0;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .business__item-link:hover {
    color: #ffffff;
    background-color: #0095d0;
  }
}
.business__item-link-text {
  font-size: 1.3rem;
  font-weight: 500;
}
.business__item-link-icon {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.business__item-link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/*------------------------------
News Section
------------------------------*/
.news {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .news {
    padding: 0;
  }
}
.news__inner {
  position: relative;
  padding: 0 0 100px 0;
}
@media (min-width: 768px) {
  .news__inner {
    display: flex;
    align-items: flex-start;
    gap: 151px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 90px;
  }
}
.news__headline {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 20px 21px;
}
@media (min-width: 768px) {
  .news__headline {
    margin: 0 0 40px 0;
  }
}
.news__headline-decoration {
  position: absolute;
  left: -31px;
  top: 0;
  width: 31px;
  height: 46px;
}
@media (min-width: 768px) {
  .news__headline-decoration {
    left: -43px;
    width: 43px;
    height: 122px;
  }
}
.news__headline-decoration img {
  width: 100%;
  height: auto;
}
.news__headline-text {
  padding-top: 32px;
}
.news__headline-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.15;
  color: #0095d0;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .news__headline-en {
    font-size: 5.1rem;
  }
}
.news__headline-ja {
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.25;
  color: #171717;
  margin: 0;
}
@media (min-width: 768px) {
  .news__headline-ja {
    font-size: 2.5rem;
  }
}
.news__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(100%, 737px);
}
@media (min-width: 768px) {
  .news__content {
    margin-top: 40px;
  }
}
.news__main {
  width: 100%;
}
.news__tabs {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.news__tab {
  min-width: 92px;
  padding: 4px 20px;
  background-color: #d8d8d8;
  color: #464646;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  transition: color 0.3s, background-color 0.3s;
}
.news__tab.is-active, .news__tab:hover {
  background-color: #0095d0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .news__tab {
    min-width: 134px;
    padding: 4px 30px;
  }
}
.news__lists {
  margin-bottom: 20px;
}
.news__list-group {
  display: none;
}
.news__list-group.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.news__item {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #bcbcbc;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.news__item:hover {
  opacity: 0.8;
}
.news__item:first-child {
  border-top: 1px solid #bcbcbc;
}
@media (min-width: 768px) {
  .news__item {
    display: flex;
    align-items: center;
    padding: 20px 0;
  }
}
.news__item-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .news__item-meta {
    gap: 0;
    margin-bottom: 0;
    margin-right: 40px;
    flex-shrink: 0;
  }
}
.news__item-cat {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 92px;
  padding: 4px 20px;
  background-color: #464646;
  color: #ffffff;
  font-size: 1.3rem;
}
.news__item-date {
  font-size: 1.3rem;
  color: #464646;
}
@media (min-width: 768px) {
  .news__item-date {
    margin-left: 20px;
    font-size: 1.4rem;
  }
}
.news__item-title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #464646;
  margin: 0;
}
@media (min-width: 768px) {
  .news__item-title {
    font-size: 1.5rem;
  }
}
.news__empty {
  text-align: center;
  padding: 40px;
  color: #464646;
}
.news__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid #0095d0;
  border-radius: 999px;
  width: 248px;
  height: 46px;
  margin: 0 auto;
  color: #0095d0;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .news__item-link:hover {
    color: #ffffff;
    background-color: #0095d0;
    border: 1px solid #ffffff;
  }
}
.news__item-link-text {
  font-size: 1.3rem;
  font-weight: 500;
}
.news__item-link-icon {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news__item-link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/*------------------------------
News Archive (お知らせ一覧ページ)
------------------------------*/
.news-archive {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .news-archive {
    padding: 0;
  }
}
.news-archive__inner {
  position: relative;
  padding: 0 0 100px 0;
}
@media (min-width: 768px) {
  .news-archive__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 90px;
  }
}
.news-archive__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 737px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .news-archive__content {
    margin-top: 40px;
  }
}
.news-archive__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .news-archive__heading {
    font-size: 2.4rem;
  }
}
.news-archive__heading-icon {
  width: 9px;
  height: 14px;
}
@media (min-width: 768px) {
  .news-archive__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.news-archive__main {
  width: 100%;
}
.news-archive__tabs {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.news-archive__tab {
  display: inline-block;
  min-width: 92px;
  padding: 4px 20px;
  background-color: #d8d8d8;
  color: #464646;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}
.news-archive__tab.is-active, .news-archive__tab:hover {
  background-color: #0095d0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .news-archive__tab {
    min-width: 134px;
    padding: 4px 30px;
  }
}
.news-archive__lists {
  margin-bottom: 20px;
}
.news-archive__list-group {
  display: block;
}
.news-archive__item {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #bcbcbc;
  text-decoration: none;
  color: inherit;
}
.news-archive__item:first-child {
  border-top: 1px solid #bcbcbc;
}
@media (min-width: 768px) {
  .news-archive__item {
    display: flex;
    align-items: center;
    padding: 30px 0;
  }
}
.news-archive__item-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .news-archive__item-meta {
    gap: 0;
    margin-bottom: 0;
    margin-right: 40px;
    flex-shrink: 0;
  }
}
.news-archive__item-cat {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 92px;
  padding: 4px 20px;
  background-color: #464646;
  color: #ffffff;
  font-size: 1.3rem;
}
.news-archive__item-date {
  font-size: 1.3rem;
  color: #464646;
}
@media (min-width: 768px) {
  .news-archive__item-date {
    margin-left: 20px;
    font-size: 1.4rem;
  }
}
.news-archive__item-title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #464646;
  margin: 0;
}
@media (min-width: 768px) {
  .news-archive__item-title {
    font-size: 1.5rem;
  }
}
.news-archive__empty {
  text-align: center;
  padding: 40px;
  color: #464646;
}
.news-archive__item-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .news-archive__item-links {
    margin-top: 50px;
  }
}
.news-archive__item-links .news__item-link {
  width: 165px;
  min-height: 46px;
  margin: 0;
  padding: 15px 20px;
  border-radius: 23px;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .news-archive__item-links .news__item-link {
    width: 232px;
  }
}

/*------------------------------
Privacy Page（個人情報の取り扱い）
------------------------------*/
.privacy-page {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .privacy-page {
    padding: 0;
  }
}
.privacy-page__inner {
  position: relative;
  padding: 0 0 100px;
}
@media (min-width: 768px) {
  .privacy-page__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 90px;
  }
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .privacy-content {
    margin-top: 40px;
    gap: 50px;
  }
}
.privacy-content__section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.privacy-content__section:not(:first-child) {
  padding-top: 30px;
  border-top: 1px solid #707070;
}
@media (min-width: 768px) {
  .privacy-content__section:not(:first-child) {
    padding-top: 50px;
  }
}
.privacy-content__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .privacy-content__heading {
    font-size: 2.4rem;
  }
}
.privacy-content__heading-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .privacy-content__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.privacy-content__body {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #464646;
}
.privacy-content__body p {
  margin: 0 0 1em;
  line-height: 2;
}
.privacy-content__body p:last-child {
  margin-bottom: 0;
}

/*------------------------------
Company Page（会社情報）
------------------------------*/
.company-mv {
  position: relative;
  width: 100%;
  margin-top: 54px;
  background-color: #e7eded;
}
@media (min-width: 768px) {
  .company-mv {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 1048px) {
  .company-mv {
    margin-top: 80px;
  }
}
.company-mv__img-wrap {
  width: 50%;
  margin-left: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .company-mv__img-wrap {
    width: 54.83%;
  }
}
.company-mv__img {
  display: block;
  width: 100%;
  height: auto;
}
.company-mv__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  z-index: 1;
  max-width: 1040px;
  margin: auto;
  padding: 0;
  box-sizing: content-box;
}
@media (min-width: 1048px) {
  .company-mv__inner {
    align-items: flex-start;
    left: 0;
    right: 0;
    order: 1;
    width: 1000px;
    padding: 0 20px;
  }
}
.company-mv__head {
  position: relative;
  padding-left: 0;
}
.company-mv__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 31px;
  height: 46px;
  pointer-events: none;
}
@media (min-width: 1048px) {
  .company-mv__icon {
    top: 0;
    left: -43px;
    width: 43px;
    height: 122px;
  }
}
.company-mv__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.company-mv__heading {
  margin: 0;
  margin-bottom: 28px;
  padding: 28px 0 0 31px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (min-width: 1048px) {
  .company-mv__heading {
    gap: 18px;
    margin-bottom: 37.5px;
    padding: 37.5px 0 0;
  }
}
.company-mv__title-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #0095d0;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 1048px) {
  .company-mv__title-en {
    font-size: 3rem;
  }
}
.company-mv__title-ja {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: #171717;
  margin: 0;
}
@media (min-width: 1048px) {
  .company-mv__title-ja {
    font-size: 3.8rem;
  }
}
@media (min-width: 768px) {
  .company-mv__title-ja br {
    display: none;
  }
}

.company-page {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .company-page {
    padding: 0;
  }
}
.company-page__inner {
  position: relative;
  padding: 0 0 100px;
}
@media (min-width: 768px) {
  .company-page__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 90px;
  }
}

.business-page {
  background-color: #ffffff;
  padding: 60px 20px 0;
}
@media (min-width: 768px) {
  .business-page {
    padding: 40px 20px 0;
  }
}
.business-page__inner {
  position: relative;
  padding: 0;
}
@media (min-width: 768px) {
  .business-page__inner {
    max-width: 1040px;
    margin: 0 auto;
  }
}
.business-page__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .business-page__heading {
    font-size: 2.4rem;
  }
}
.business-page__section {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (min-width: 1048px) {
  .business-page__section {
    margin-bottom: 160px;
  }
}
@media (min-width: 768px) {
  .business-page__section:first-of-type {
    margin-bottom: 0;
  }
}
@media (min-width: 1048px) {
  .business-page__section:first-of-type {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
  }
}
.business-page__section:last-of-type {
  margin-bottom: 0;
}
.business-page__section-description {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
.business-page__section--related {
  gap: 30px;
  border-top: none;
  padding-top: 0;
}
@media (min-width: 768px) {
  .business-page__section--related {
    position: relative;
    z-index: 1;
    padding-top: 30px;
    background-color: #e7eded;
  }
}
.business-page__section--related::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #e7eded;
  z-index: -1;
}
.business-page__related-heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  translate: -12px 0;
}
.business-page__related-heading-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #464646;
}
.business-page__related-heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.business-page__related-heading-icon img {
  display: block;
  width: 31px;
  height: 46px;
}
@media (min-width: 768px) {
  .business-page__related-heading-icon img {
    width: 43px;
    height: 64px;
  }
}
.business-page__related-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background-color: #e7eded;
  padding: 60px 20px;
  width: calc(100% + 40px);
  translate: -20px 0;
}
@media (min-width: 768px) {
  .business-page__related-cards {
    position: relative;
    padding: 0 20px 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.business-page__related-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #e7eded;
  z-index: -1;
}
.business-page__related-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) {
  .business-page__related-card:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  }
}
.business-page__related-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 490/280;
}
.business-page__related-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-page__related-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  flex: 1;
}
@media (min-width: 768px) {
  .business-page__related-card-content {
    padding: 30px 60px;
  }
}
.business-page__related-card-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: #171717;
}
@media (min-width: 768px) {
  .business-page__related-card-title {
    font-size: 1.8rem;
  }
}
.business-page__related-card-description {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .business-page__related-card-description {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .business-page__related-card-arrow {
    right: 24px;
    bottom: 24px;
  }
}
.business-page__related-card-arrow img {
  display: block;
  width: 29px;
  height: 29px;
}
@media (min-width: 768px) {
  .business-page__equipment-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 90px;
  }
}
.business-page__equipment-item {
  margin-bottom: 60px;
}
.business-page__equipment-item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .business-page__equipment-item {
    display: flex;
    flex-direction: column;
    width: calc(50% - 45px);
    margin-bottom: 0;
  }
}
.business-page__equipment-title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0095d0;
}
@media (min-width: 768px) {
  .business-page__equipment-title {
    font-size: 2rem;
  }
}
.business-page__equipment-image {
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
}
.business-page__equipment-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 455/271;
  object-fit: contain;
}
.business-page__equipment-description {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .business-page__equipment-description {
    flex: 1;
    font-size: 1.5rem;
  }
}
.business-page__equipment-table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
}
.business-page__equipment-table tr {
  border-top: 1px solid #707070;
}
.business-page__equipment-table tr:last-of-type {
  border-bottom: 1px solid #707070;
}
.business-page__equipment-table th,
.business-page__equipment-table td {
  padding: 10px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #464646;
  text-align: left;
}
@media (min-width: 768px) {
  .business-page__equipment-table th,
  .business-page__equipment-table td {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .business-page__equipment-table th br,
  .business-page__equipment-table td br {
    display: none;
  }
}
.business-page__equipment-table th {
  min-width: 106px;
  vertical-align: middle;
  background-color: #ebebeb;
}
.business-page__equipment-table td {
  vertical-align: middle;
}
.business-page__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 20px;
}
@media (min-width: 1048px) {
  .business-page__intro {
    width: 40%;
    margin-bottom: 120px;
    padding-top: 30px;
  }
}
.business-page__intro-text {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
.business-page__intro-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 232px;
  height: 46px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffffff;
  background-color: #0095d0;
  border: 1px solid #0095d0;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .business-page__intro-btn {
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  .business-page__intro-btn:hover {
    color: #0095d0;
    background-color: #ffffff;
  }
}
.business-page__intro-btn--sp {
  display: flex;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .business-page__intro-btn--sp {
    display: none;
  }
}
.business-page__intro-btn-text {
  line-height: 1;
}
.business-page__intro-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.business-page__intro-btn-icon svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.business-page__intro-btn-icon img {
  display: block;
  width: 12px;
  height: 12px;
}
.business-page__map {
  width: min(100%, 719px);
  margin: 0 auto;
}
@media (min-width: 1048px) {
  .business-page__map {
    position: relative;
    width: 60%;
    scale: 1.33;
    transform-origin: 200px top;
  }
}
.business-page__map-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
@media (min-width: 1048px) {
  .business-page__map-note {
    position: absolute;
    top: 30px;
    left: 114px;
    scale: 0.77;
    transform-origin: left top;
  }
}
.business-page__map-note img {
  width: 33px;
  height: 27px;
}
@media (min-width: 1048px) {
  .business-page__map-note img {
    width: 37px;
    height: 30px;
  }
}
.business-page__map-note-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #0095d0;
  line-height: 1.625;
  margin: 0;
}
@media (min-width: 1048px) {
  .business-page__map-note-text {
    font-size: 1.6rem;
  }
}
.business-page__map-note-text br {
  display: none;
}
@media (min-width: 1048px) {
  .business-page__map-note-text br {
    display: inline;
  }
}
.business-page__map-svg {
  display: block;
  width: 100%;
  height: auto;
}
.business-page__map-svg .map-pin {
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .business-page__map-svg .map-pin:hover {
    opacity: 0.8;
  }
}
.business-page__map-svg .map-pin circle {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  transition: filter 0.3s;
}
@media (min-width: 768px) {
  .business-page__map-svg .map-pin:hover circle {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  }
}

/*------------------------------
Control Page (制御システム事業)
------------------------------*/
.ctrl-business {
  background-color: #ffffff;
  padding: 60px 20px 0;
}
@media (min-width: 768px) {
  .ctrl-business {
    padding: 40px 20px 0;
  }
}
.ctrl-business__inner {
  position: relative;
  padding: 0;
}
@media (min-width: 768px) {
  .ctrl-business__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.ctrl-business__section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .ctrl-business__section {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .ctrl-business__section:first-of-type {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
  }
}
.ctrl-business__section + .ctrl-business__section {
  margin-bottom: 120px;
}
.ctrl-business__section:last-of-type {
  margin-bottom: 0;
}
.ctrl-business__section--related {
  border-top: none;
  padding-top: 0;
}
@media (min-width: 768px) {
  .ctrl-business__section--related {
    position: relative;
    z-index: 1;
    padding-top: 30px;
    background-color: #e7eded;
  }
}
.ctrl-business__section--related::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #e7eded;
  z-index: -1;
}
.ctrl-business__related-heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  translate: -12px 0;
}
.ctrl-business__related-heading-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #464646;
}
.ctrl-business__related-heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctrl-business__related-heading-icon img {
  display: block;
  width: 31px;
  height: 46px;
}
@media (min-width: 768px) {
  .ctrl-business__related-heading-icon img {
    width: 43px;
    height: 64px;
  }
}
.ctrl-business__related-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background-color: #e7eded;
  padding: 60px 20px;
  width: calc(100% + 40px);
  translate: -20px 0;
}
@media (min-width: 768px) {
  .ctrl-business__related-cards {
    position: relative;
    padding: 0 20px 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ctrl-business__related-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #e7eded;
  z-index: -1;
}
.ctrl-business__related-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) {
  .ctrl-business__related-card:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  }
}
.ctrl-business__related-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 490/280;
}
.ctrl-business__related-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ctrl-business__related-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  flex: 1;
}
@media (min-width: 768px) {
  .ctrl-business__related-card-content {
    padding: 30px 60px;
  }
}
.ctrl-business__related-card-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: #171717;
}
@media (min-width: 768px) {
  .ctrl-business__related-card-title {
    font-size: 1.8rem;
  }
}
.ctrl-business__related-card-description {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .ctrl-business__related-card-description {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .ctrl-business__related-card-arrow {
    right: 24px;
    bottom: 24px;
  }
}
.ctrl-business__related-card-arrow img {
  display: block;
  width: 29px;
  height: 29px;
}
.ctrl-business__equipment-list-wrapper {
  position: relative;
  width: 100%;
}
.ctrl-business__equipment-list-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 143px;
  height: 93px;
  margin: auto;
  background: url(../img/scrollable.svg) no-repeat center center;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
@media (min-width: 768px) {
  .ctrl-business__equipment-list-wrapper::before {
    display: none;
  }
}
.ctrl-business__equipment-list-wrapper.fade-out::before {
  opacity: 0;
  pointer-events: none;
}
.ctrl-business__equipment-list-table-scroll {
  overflow-x: auto;
  min-width: 0;
  scrollbar-color: #0095d0 #e7eded;
}
.ctrl-business__equipment-list-table {
  position: relative;
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  font-size: 1.2rem;
  font-weight: 400;
  color: #464646;
}
@media (min-width: 768px) {
  .ctrl-business__equipment-list-table {
    font-size: 1.4rem;
  }
}
.ctrl-business__equipment-list-table thead tr:first-of-type {
  background-color: #0095d0;
  color: #ffffff;
  border-bottom: 1px solid #707070;
}
.ctrl-business__equipment-list-table thead tr th + th {
  border-left: 1px solid #ffffff;
}
.ctrl-business__equipment-list-table tbody tr {
  border-bottom: 1px solid #707070;
}
.ctrl-business__equipment-list-table tbody tr td {
  border-right: 1px solid #707070;
}
.ctrl-business__equipment-list-table tbody tr td:last-of-type {
  border-right: none;
}
.ctrl-business__equipment-list-table th,
.ctrl-business__equipment-list-table td {
  padding: 12px;
  text-align: left;
  vertical-align: middle;
}
.ctrl-business__equipment-list-table thead th {
  font-weight: 400;
}
.ctrl-business__equipment-list-table thead th:last-child {
  white-space: nowrap;
}
.ctrl-business__equipment-list-table-td--group-1, .ctrl-business__equipment-list-table-td--group-3, .ctrl-business__equipment-list-table-td--group-5, .ctrl-business__equipment-list-table-td--group-7 {
  background-color: #ebebeb;
}
.ctrl-business__equipment-list-table-td--group-2, .ctrl-business__equipment-list-table-td--group-4, .ctrl-business__equipment-list-table-td--group-6, .ctrl-business__equipment-list-table-td--group-8 {
  background-color: #dddddd;
}
.ctrl-business__equipment-list-table-tr--group-1 td:not([class*=td--group-]), .ctrl-business__equipment-list-table-tr--group-3 td:not([class*=td--group-]), .ctrl-business__equipment-list-table-tr--group-5 td:not([class*=td--group-]), .ctrl-business__equipment-list-table-tr--group-7 td:not([class*=td--group-]) {
  background-color: #ffffff;
}
.ctrl-business__equipment-list-table-tr--group-2 td:not([class*=td--group-]), .ctrl-business__equipment-list-table-tr--group-4 td:not([class*=td--group-]), .ctrl-business__equipment-list-table-tr--group-6 td:not([class*=td--group-]), .ctrl-business__equipment-list-table-tr--group-8 td:not([class*=td--group-]) {
  background-color: #ddd;
}
.ctrl-business__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .ctrl-business__intro {
    width: calc(48.8% - 15px);
    margin-bottom: 120px;
    padding-top: 30px;
  }
}
.ctrl-business__intro-text {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
.ctrl-business__intro-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 232px;
  height: 46px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffffff;
  background-color: #0095d0;
  border: 1px solid #0095d0;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .ctrl-business__intro-btn {
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  .ctrl-business__intro-btn:hover {
    color: #0095d0;
    background-color: #ffffff;
  }
}
.ctrl-business__intro-btn--sp {
  display: flex;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .ctrl-business__intro-btn--sp {
    display: none;
  }
}
.ctrl-business__intro-btn-text {
  line-height: 1;
}
.ctrl-business__intro-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctrl-business__intro-btn-icon svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.ctrl-business__intro-btn-icon img {
  display: block;
  width: 12px;
  height: 12px;
}
.ctrl-business__top-image {
  width: 100%;
}
@media (min-width: 768px) {
  .ctrl-business__top-image {
    width: calc(51.2% - 15px);
  }
}
.ctrl-business__top-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*------------------------------
ctrl-business-about (アスカの技術・サービス概要・技術サポート)
------------------------------*/
.ctrl-business-about {
  display: flex;
  flex-direction: column;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .ctrl-business-about {
    margin-bottom: 160px;
  }
}
.ctrl-business-about__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .ctrl-business-about__heading {
    font-size: 2.4rem;
  }
}
.ctrl-business-about__heading-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .ctrl-business-about__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.ctrl-business-about__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .ctrl-business-about__group:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1048px) {
  .ctrl-business-about__group:nth-of-type(even) .ctrl-business-about__description {
    width: calc(100% - 583px - 70px);
  }
}
@media (min-width: 1048px) {
  .ctrl-business-about__group:nth-of-type(even) .ctrl-business-about__image {
    width: 583px;
  }
}
@media (min-width: 768px) {
  .ctrl-business-about__group {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px 70px;
  }
}
.ctrl-business-about__image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .ctrl-business-about__image {
    width: 394px;
  }
}
.ctrl-business-about__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ctrl-business-about__description {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .ctrl-business-about__description {
    width: calc(100% - 394px - 70px);
    font-size: 1.5rem;
  }
}
.ctrl-business-about__subheading {
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0095d0;
}
@media (min-width: 768px) {
  .ctrl-business-about__subheading {
    font-size: 2rem;
  }
}
.ctrl-business-about__list {
  margin-bottom: 50px;
}
.ctrl-business-about__list:last-of-type {
  margin-bottom: 0;
}
.ctrl-business-about__item-description {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .ctrl-business-about__item-description {
    font-size: 1.5rem;
  }
}
.ctrl-business-about__item-image img {
  width: 100%;
}

/*------------------------------
ctrl-business-equipment (設備・技術)
------------------------------*/
.ctrl-business-equipment {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .ctrl-business-equipment {
    margin-bottom: 160px;
  }
}
.ctrl-business-equipment__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .ctrl-business-equipment__heading {
    font-size: 2.4rem;
  }
}
.ctrl-business-equipment__heading-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .ctrl-business-equipment__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.ctrl-business-equipment__list {
  margin-bottom: 50px;
}
.ctrl-business-equipment__list:last-of-type {
  margin-bottom: 0;
}
.ctrl-business-equipment__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .ctrl-business-equipment__item {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 0 20px;
  }
}
@media (min-width: 1048px) {
  .ctrl-business-equipment__item {
    gap: 0 90px;
  }
}
.ctrl-business-equipment__item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .ctrl-business-equipment__item:last-of-type .ctrl-business-equipment__item-content {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .ctrl-business-equipment__item-content {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
  }
}
@media (min-width: 1048px) {
  .ctrl-business-equipment__item-content {
    width: calc(50% - 45px);
  }
}
.ctrl-business-equipment__title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0095d0;
}
@media (min-width: 768px) {
  .ctrl-business-equipment__title {
    font-size: 2rem;
  }
}
.ctrl-business-equipment__image {
  margin-bottom: 20px;
}
.ctrl-business-equipment__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ctrl-business-equipment__description {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .ctrl-business-equipment__description {
    font-size: 1.5rem;
  }
}

/*------------------------------
Robot Page (ロボットシステム事業)
------------------------------*/
.robot-business {
  background-color: #ffffff;
  padding: 60px 20px 0;
}
@media (min-width: 768px) {
  .robot-business {
    padding: 40px 20px 0;
  }
}
.robot-business__inner {
  position: relative;
  padding: 0;
}
@media (min-width: 768px) {
  .robot-business__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.robot-business__section {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .robot-business__section {
    margin-bottom: 0;
  }
}
.robot-business__section + .robot-business__section {
  margin-bottom: 120px;
}
.robot-business__section:last-of-type {
  margin-bottom: 0;
}
.robot-business__section--related {
  gap: 30px;
  border-top: none;
  padding-top: 0;
}
@media (min-width: 768px) {
  .robot-business__section--related {
    position: relative;
    z-index: 1;
    padding-top: 30px;
    background-color: #e7eded;
  }
}
.robot-business__section--related::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #e7eded;
  z-index: -1;
}
.robot-business__heading {
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0095d0;
}
@media (min-width: 768px) {
  .robot-business__heading {
    font-size: 2rem;
  }
}
.robot-business__related-heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  translate: -12px 0;
}
.robot-business__related-heading-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #464646;
}
.robot-business__related-heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.robot-business__related-heading-icon img {
  display: block;
  width: 31px;
  height: 46px;
}
@media (min-width: 768px) {
  .robot-business__related-heading-icon img {
    width: 43px;
    height: 64px;
  }
}
.robot-business__related-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background-color: #e7eded;
  padding: 60px 20px;
  width: calc(100% + 40px);
  translate: -20px 0;
}
@media (min-width: 768px) {
  .robot-business__related-cards {
    position: relative;
    padding: 0 20px 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.robot-business__related-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #e7eded;
  z-index: -1;
}
.robot-business__related-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) {
  .robot-business__related-card:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  }
}
.robot-business__related-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 490/280;
}
.robot-business__related-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.robot-business__related-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  flex: 1;
}
@media (min-width: 768px) {
  .robot-business__related-card-content {
    padding: 30px 60px;
  }
}
.robot-business__related-card-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: #171717;
}
@media (min-width: 768px) {
  .robot-business__related-card-title {
    font-size: 1.8rem;
  }
}
.robot-business__related-card-description {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .robot-business__related-card-description {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .robot-business__related-card-arrow {
    right: 24px;
    bottom: 24px;
  }
}
.robot-business__related-card-arrow img {
  display: block;
  width: 29px;
  height: 29px;
}
.robot-business__intro-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .robot-business__intro-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
  }
}
.robot-business__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 30px;
  order: 2;
}
@media (min-width: 768px) {
  .robot-business__intro {
    width: calc(56.33% - 10px);
    margin-bottom: 120px;
    order: 1;
  }
}
.robot-business__intro-text {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
.robot-business__intro-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 232px;
  height: 46px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffffff;
  background-color: #0095d0;
  border: 1px solid #0095d0;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .robot-business__intro-btn {
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  .robot-business__intro-btn:hover {
    color: #0095d0;
    background-color: #ffffff;
  }
}
.robot-business__intro-btn--sp {
  display: flex;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .robot-business__intro-btn--sp {
    display: none;
  }
}
.robot-business__intro-btn-text {
  line-height: 1;
}
.robot-business__intro-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.robot-business__intro-btn-icon svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.robot-business__intro-btn-icon img {
  display: block;
  width: 12px;
  height: 12px;
}
.robot-business__top-image {
  width: 100%;
  margin-bottom: 30px;
  order: 1;
}
@media (min-width: 768px) {
  .robot-business__top-image {
    width: calc(43.67% - 10px);
    margin-bottom: 0;
    order: 2;
  }
}
.robot-business__top-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*------------------------------
robot-business-about
------------------------------*/
.robot-business-about {
  display: flex;
  flex-direction: column;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .robot-business-about {
    margin-bottom: 120px;
  }
}
.robot-business-about__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .robot-business-about__heading {
    font-size: 2.4rem;
  }
}
.robot-business-about__heading:first-of-type {
  margin: 0 0 42px;
}
@media (min-width: 768px) {
  .robot-business-about__heading:first-of-type {
    margin: 0 0 72px;
  }
}
.robot-business-about__heading-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .robot-business-about__heading-icon {
    width: 14px;
    height: 21px;
  }
}
@media (min-width: 768px) {
  .robot-business-about__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 50px 20px;
  }
}
.robot-business-about__item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  padding: 42px 20px 20px;
  background-color: #e7eded;
}
.robot-business-about__item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .robot-business-about__item {
    width: calc(33.33% - 13.33px);
    margin-bottom: 0;
  }
}
.robot-business-about__num {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: inline-block;
  width: 55px;
  height: 44px;
  margin: auto;
  translate: 0 -50%;
}
.robot-business-about__title {
  font-size: 2rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .robot-business-about__title {
    font-size: 2rem;
  }
}
.robot-business-about__image {
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.robot-business-about__image img {
  width: 100%;
}
.robot-business-about__description {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .robot-business-about__description {
    flex: 1;
    font-size: 1.5rem;
  }
}
.robot-business-about__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .robot-business-about__group {
    flex-direction: row;
    gap: 30px;
  }
}
.robot-business-about__group-description {
  line-height: 2;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .robot-business-about__group-description {
    width: calc(100% - min(50%, 480px) - 30px);
    font-size: 1.5rem;
  }
}
.robot-business-about__group-image {
  text-align: center;
}
.robot-business-about__group-image img {
  width: 100%;
}
@media (min-width: 768px) {
  .robot-business-about__group-image {
    width: min(50%, 480px);
  }
}
.robot-business-about__subheading {
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0095d0;
}
@media (min-width: 768px) {
  .robot-business-about__subheading {
    font-size: 2rem;
  }
}

/*------------------------------
robot-business-solution
------------------------------*/
.robot-business-solution {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .robot-business-solution {
    margin-bottom: 90px;
  }
}
.robot-business-solution__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .robot-business-solution__heading {
    margin: 0 0 30px;
    font-size: 2.4rem;
  }
}
.robot-business-solution__heading-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .robot-business-solution__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.robot-business-solution__subheading {
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0095d0;
}
@media (min-width: 768px) {
  .robot-business-solution__subheading {
    width: 100%;
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .robot-business-solution__subheading br {
    display: none;
  }
}
.robot-business-solution__group {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .robot-business-solution__group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 55px 30px;
  }
}
.robot-business-solution__group-description {
  margin-bottom: 40px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .robot-business-solution__group-description {
    width: calc(48.14% - 15px);
    margin-bottom: 0;
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .robot-business-solution__group-list {
    width: calc(51.86% - 15px);
  }
}
.robot-business-solution__group-item {
  display: flex;
  gap: 17px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8d8d8;
}
.robot-business-solution__group-item:first-of-type {
  padding-top: 10px;
  border-top: 1px solid #d8d8d8;
}
.robot-business-solution__group-item-title-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 60px;
  min-height: 22px;
  margin-top: 4px;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #0095d0;
  color: #ffffff;
  border-radius: 2px;
}
.robot-business-solution__group-item-description {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .robot-business-solution__group-item-description {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .robot-business-solution__group-image {
    width: calc(51.86% - 15px);
  }
}

/*------------------------------
robot-business-process
------------------------------*/
.robot-business-process {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .robot-business-process {
    margin-bottom: 90px;
  }
}
.robot-business-process__subheading {
  margin-bottom: 46px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0095d0;
}
@media (min-width: 768px) {
  .robot-business-process__subheading {
    width: 100%;
    margin-bottom: 56px;
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .robot-business-process__flow {
    container-type: inline-size;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 36px 0;
  }
}
.robot-business-process__flow:first-of-type .robot-business-process__flow-item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .robot-business-process__flow:first-of-type .robot-business-process__flow-item {
    margin-left: 0;
    margin-right: -22px;
  }
}
.robot-business-process__flow:first-of-type .robot-business-process__flow-item:first-of-type .robot-business-process__flow-item-description {
  min-height: 77px;
  padding-top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
@media (min-width: 768px) {
  .robot-business-process__flow:first-of-type .robot-business-process__flow-item:first-of-type .robot-business-process__flow-item-description {
    width: 163px;
    min-height: 140px;
    clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%, 0% 50%);
  }
}
.robot-business-process__flow:first-of-type .robot-business-process__flow-item:first-of-type .robot-business-process__flow-item-step {
  top: -26px;
}
@media (min-width: 768px) {
  .robot-business-process__flow:first-of-type .robot-business-process__flow-item:first-of-type .robot-business-process__flow-item-step {
    left: -15px;
    right: 0;
  }
}
@media (min-width: 768px) {
  .robot-business-process__flow:first-of-type .robot-business-process__flow-item:first-of-type .robot-business-process__flow-item-description {
    padding: 0 15px 0 0;
  }
}
.robot-business-process__flow:first-of-type .robot-business-process__flow-item:nth-of-type(even) .robot-business-process__flow-item-description {
  background-color: #b2dff4;
}
.robot-business-process__flow-item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .robot-business-process__flow-item {
    margin-left: 0;
    margin-right: -22px;
  }
}
.robot-business-process__flow-item-step {
  position: absolute;
  top: -2px;
  left: -20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin: auto;
  font-family: "Outfit", sans-serif;
  background-color: #0095d0;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .robot-business-process__flow-item-step {
    top: -26px;
    left: 0;
    right: 0;
  }
}
.robot-business-process__flow-item-step-text {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.robot-business-process__flow-item-step-number {
  display: block;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
.robot-business-process__flow-item-description {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 102px;
  padding-top: 10px;
  line-height: 1.25;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #2c2b2b;
  background-color: #80caed;
  clip-path: polygon(0 0, 50% 20%, 100% 0, 100% 80%, 50% 100%, 0 80%);
}
@media (min-width: 768px) {
  .robot-business-process__flow-item-description {
    width: 185px;
    min-height: 140px;
    padding-top: 0;
    padding-left: 15px;
    clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%, 30px 50%);
  }
}
.robot-business-process__flow-item-description br {
  display: none;
}
@media (min-width: 768px) {
  .robot-business-process__flow-item-description br {
    display: inline;
  }
}

/*------------------------------
robot-business-equipment
------------------------------*/
.robot-business-equipment {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .robot-business-equipment {
    gap: 30px;
    margin-bottom: 160px;
  }
}
.robot-business-equipment__list {
  margin-bottom: 50px;
}
.robot-business-equipment__list:last-of-type {
  margin-bottom: 0;
}
.robot-business-equipment__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .robot-business-equipment__item {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 0 70px;
  }
}
.robot-business-equipment__item:last-of-type {
  margin-bottom: 0;
}
.robot-business-equipment__item-content {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .robot-business-equipment__item-content {
    width: 39.4%;
  }
}
.robot-business-equipment__title {
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0095d0;
}
@media (min-width: 768px) {
  .robot-business-equipment__title {
    width: 100%;
    font-size: 2rem;
  }
}
.robot-business-equipment__image {
  width: 100%;
  overflow: hidden;
}
.robot-business-equipment__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .robot-business-equipment__description-wrapper {
    width: 48.8%;
  }
}
.robot-business-equipment__description {
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .robot-business-equipment__description {
    font-size: 1.5rem;
  }
}
.robot-business-equipment__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 46px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #0095d0;
  background-color: #ffffff;
  border: 1px solid #0095d0;
  border-radius: 999px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .robot-business-equipment__btn {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .robot-business-equipment__btn:hover {
    color: #ffffff;
    background-color: #0095d0;
    border: 1px solid #0095d0;
  }
}
.robot-business-equipment__btn-icon {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/*------------------------------
Product Modal
------------------------------*/
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.product-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.product-modal.is-open .product-modal__container {
  opacity: 1;
  transform: translateY(0);
}
.product-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 70, 70, 0.8);
  cursor: pointer;
}
.product-modal__container {
  position: relative;
  width: calc(100% - 40px);
  max-width: 630px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
@media (min-width: 768px) {
  .product-modal__container {
    width: 630px;
  }
}
.product-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 36px 20px;
  background-color: #ffffff;
  border-radius: 18px;
}
@media (min-width: 768px) {
  .product-modal__content {
    padding: 36px 46px;
  }
}
.product-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1;
}
.product-modal__close-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #707070;
}
.product-modal__close-line:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.product-modal__close-line:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.product-modal__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .product-modal__header {
    width: 100%;
    padding-left: 260px;
  }
}
.product-modal__number-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #0095d0;
  flex-shrink: 0;
}
.product-modal__number {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
.product-modal__title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #464646;
}
.product-modal__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .product-modal__body {
    flex-direction: row;
  }
}
.product-modal__image {
  width: 100%;
}
@media (min-width: 768px) {
  .product-modal__image {
    width: 240px;
  }
}
.product-modal__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-modal__description {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .product-modal__description {
    width: calc(100% - 260px);
    font-size: 1.5rem;
  }
}
.product-modal__btn {
  width: min(100%, 240px);
  padding: 15px 20px;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  color: #ffffff;
  background-color: #0095d0;
  border: 1px solid transparent;
  border-radius: 23px;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .product-modal__btn:hover {
    color: #0095d0;
    background-color: #ffffff;
    border: 1px solid #0095d0;
  }
}

.company-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .company-content {
    margin-top: 40px;
    gap: 50px;
  }
}
.company-content__section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  scroll-margin-top: 63px;
}
@media (min-width: 768px) {
  .company-content__section {
    scroll-margin-top: 90px;
  }
}
.company-content__section:not(:first-child) {
  padding-top: 30px;
  border-top: 1px solid #707070;
}
@media (min-width: 768px) {
  .company-content__section:not(:first-child) {
    padding-top: 50px;
  }
}
.company-content__section.exception {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .company-content__section.exception {
    flex-direction: row;
    align-items: flex-end;
  }
}
.company-content__group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.company-content__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .company-content__heading {
    font-size: 2.4rem;
  }
}
.company-content__heading-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .company-content__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.company-content__lead {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0095d0;
}
@media (min-width: 768px) {
  .company-content__lead {
    font-size: 2.7rem;
  }
}
.company-content__body {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #464646;
}
.company-content__body p {
  margin: 0 0 1em;
  line-height: 2;
}
.company-content__body p:last-child {
  margin-bottom: 0;
}
.company-content__president {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .company-content__president {
    width: 219px;
    flex: 0 0 auto;
  }
}
.company-content__president-figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0;
}
.company-content__president-img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
}
.company-content__president-caption {
  width: fit-content;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #464646;
}
.company-content__figure {
  margin: 0;
}
.company-content__figure-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.6737/1;
}
.company-content__photos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: calc(100% + 40px);
  translate: -20px 0;
}
@media (min-width: 768px) {
  .company-content__photos {
    gap: 12.5px;
    width: 100%;
    translate: 0 0;
  }
}
.company-content__photos-item {
  flex: 1 1 0;
  min-width: 0;
}
.company-content__photos-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (min-width: 768px) {
  .company-content__photos-item img {
    aspect-ratio: 1.438/1;
  }
}
@media (min-width: 768px) {
  .company-content__photos-item {
    flex: 0 1 calc((100% - 25px) / 3);
  }
}
.company-content__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .company-content__actions {
    padding-top: 50px;
  }
}
.company-content__actions .recruit__btn {
  border: 1px solid #0095d0;
}
@media (max-width: 767px) {
  .company-content__actions .recruit__btn {
    width: 165px;
  }
}

/*------------------------------
Company Summary Page（会社概況・沿革）
Figma node 1231-8091 globalVars 準拠（fileKey: ea87TUkDyS2KvEnMhBDEtB）
------------------------------*/
.summary-mv {
  position: relative;
  width: 100%;
  margin-top: 54px;
  background-color: #e7eded;
}
@media (min-width: 768px) {
  .summary-mv {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 1048px) {
  .summary-mv {
    margin-top: 80px;
  }
}
.summary-mv__img-wrap {
  width: 50%;
  margin-left: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .summary-mv__img-wrap {
    width: 54.83%;
  }
}
.summary-mv__img {
  display: block;
  width: 100%;
  height: auto;
}
.summary-mv__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  z-index: 1;
  max-width: 1040px;
  margin: auto;
  padding: 0;
  box-sizing: content-box;
}
@media (min-width: 1048px) {
  .summary-mv__inner {
    align-items: flex-start;
    left: 0;
    right: 0;
    order: 1;
    width: 1000px;
    padding: 0 20px;
  }
}
.summary-mv__head {
  position: relative;
  padding-left: 0;
}
.summary-mv__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 31px;
  height: 46px;
  pointer-events: none;
}
@media (min-width: 1048px) {
  .summary-mv__icon {
    top: 0;
    left: -43px;
    width: 43px;
    height: 122px;
  }
}
.summary-mv__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.summary-mv__heading {
  margin: 0;
  margin-bottom: 28px;
  padding: 28px 0 0 31px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (min-width: 1048px) {
  .summary-mv__heading {
    gap: 18px;
    margin-bottom: 37.5px;
    padding: 37.5px 0 0;
  }
}
.summary-mv__title-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #0095d0;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 1048px) {
  .summary-mv__title-en {
    font-size: 3rem;
  }
}
.summary-mv__title-ja {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: #171717;
  margin: 0;
}
@media (min-width: 1048px) {
  .summary-mv__title-ja {
    font-size: 3.8rem;
  }
}
@media (min-width: 768px) {
  .summary-mv__title-ja br {
    display: none;
  }
}

.summary-page {
  background-color: #ffffff;
  padding: 60px 20px 90px;
}
@media (min-width: 768px) {
  .summary-page {
    padding: 0;
  }
}
.summary-page__inner {
  position: relative;
  padding: 0;
}
@media (min-width: 768px) {
  .summary-page__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 90px;
  }
}

.summary-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .summary-content {
    margin-top: 40px;
    gap: 50px;
  }
}
.summary-content__section {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.summary-content__heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .summary-content__heading {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.summary-content__heading-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .summary-content__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.summary-content__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(100%, 848px);
  margin: 0 auto;
}
.summary-content__block:first-of-type .summary-content__table .summary-content__table-row .summary-content__table-label {
  text-align: left;
}
.summary-content__block:first-of-type .summary-content__table .summary-content__table-row .summary-content__table-label-text {
  margin-left: 0;
}
.summary-content__block + .summary-content__block {
  margin-top: 100px;
}
.summary-content__block + .summary-content__block .summary-content__table-row .summary-content__table-label {
  padding: 20px 0;
}
.summary-content__block + .summary-content__block .summary-content__table-row .summary-content__table-value {
  padding: 20px 0 20px 20px;
}
@media (min-width: 768px) {
  .summary-content__block + .summary-content__block .summary-content__table-row .summary-content__table-value {
    padding: 20px 0 20px 50px;
  }
}
.summary-content__block-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .summary-content__block-title {
    font-size: 2rem;
  }
}
.summary-content__table {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.summary-content__table-row {
  position: relative;
  display: flex;
  border-bottom: 2px solid #bcbcbc;
}
.summary-content__table-row::before {
  position: absolute;
  left: 0;
  bottom: -2px;
  display: inline-block;
  content: "";
  width: 80px;
  height: 2px;
  margin: auto;
  background-color: #0095d0;
}
@media (min-width: 768px) {
  .summary-content__table-row {
    flex-direction: row;
    align-items: stretch;
  }
  .summary-content__table-row:first-child .summary-content__table-label,
  .summary-content__table-row:first-child .summary-content__table-value {
    padding-top: 0;
  }
}
.summary-content__table-label {
  width: 76px;
  margin: 0;
  padding: 20px 0 20px;
  text-align: right;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  color: #0095d0;
}
@media (min-width: 768px) {
  .summary-content__table-label {
    font-size: 1.5rem;
    flex: 0 0 auto;
    padding: 54.5px 0 47.5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.summary-content__table-column {
  position: relative;
  border-bottom: 2px solid #bcbcbc;
}
.summary-content__table-column::before {
  position: absolute;
  left: 0;
  bottom: -2px;
  display: inline-block;
  content: "";
  width: 76px;
  height: 2px;
  margin: auto;
  background-color: #0095d0;
}
.summary-content__table-column .summary-content__table-row-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.summary-content__table-column .summary-content__table-row-group:first-of-type .summary-content__table-label {
  padding-top: 20px;
}
.summary-content__table-column .summary-content__table-row-group:first-of-type .summary-content__table-value {
  padding-top: 20px;
}
.summary-content__table-column .summary-content__table-row-group:last-of-type .summary-content__table-label {
  padding-bottom: 20px;
}
.summary-content__table-column .summary-content__table-row-group:last-of-type .summary-content__table-value {
  padding-bottom: 20px;
}
.summary-content__table-column .summary-content__table-row-group .summary-content__table-label {
  align-self: flex-start;
  padding: 0;
  border-bottom: none;
}
.summary-content__table-column .summary-content__table-row-group .summary-content__table-value {
  padding: 0 0 0 20px;
  border-bottom: none;
}
@media (min-width: 768px) {
  .summary-content__table-column .summary-content__table-row-group .summary-content__table-value {
    width: calc(100% - 76px);
    padding: 0 0 0 50px;
  }
}
.summary-content__table-label-text {
  display: inline-block;
  width: fit-content;
  margin-left: auto;
  text-align: right;
  word-break: break-all;
  white-space: nowrap;
}
.summary-content__table-value {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 76px);
  margin: 0;
  padding: 20px 0 20px 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .summary-content__table-value {
    font-size: 1.5rem;
    padding: 54.5px 0 47.5px 50px;
  }
}
.summary-content__table-value br {
  display: none;
}
@media (min-width: 768px) {
  .summary-content__table-value br {
    display: inline;
  }
}
.summary-content__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.summary-content__actions .recruit__btn {
  border: 1px solid #0095d0;
}
@media (min-width: 768px) {
  .summary-content__actions .recruit__btn {
    width: 232px;
  }
}
@media (max-width: 767px) {
  .summary-content__actions .recruit__btn {
    width: 165px;
  }
}

.manufacture-map {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .manufacture-map {
    margin: -48px 0 150px;
  }
}
.manufacture-map picture {
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .manufacture-map picture {
    margin-bottom: 0;
  }
}
.manufacture-map__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
}
@media (min-width: 768px) {
  .manufacture-map__nav {
    display: none;
  }
}
.manufacture-map__list {
  width: calc(50% - 5px);
}
.manufacture-map__item {
  margin-bottom: 10px;
}
.manufacture-map__item:last-of-type {
  margin-bottom: 0;
}
.manufacture-map a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 5px;
  width: fit-content;
}
.manufacture-map a[href="#manufacture-01"] .manufacture-map__item-number, .manufacture-map a[href="#manufacture-05"] .manufacture-map__item-number, .manufacture-map a[href="#manufacture-07"] .manufacture-map__item-number, .manufacture-map a[href="#manufacture-11"] .manufacture-map__item-number {
  background-color: #0095d0;
}
.manufacture-map a[href="#manufacture-02"] .manufacture-map__item-number, .manufacture-map a[href="#manufacture-03"] .manufacture-map__item-number, .manufacture-map a[href="#manufacture-06"] .manufacture-map__item-number, .manufacture-map a[href="#manufacture-10"] .manufacture-map__item-number, .manufacture-map a[href="#manufacture-12"] .manufacture-map__item-number {
  background-color: #f44395;
}
.manufacture-map a[href="#manufacture-04"] .manufacture-map__item-number {
  background: linear-gradient(135deg, #58ce61 0%, #58ce61 50%, #0095d0 50%, #0095d0 100%);
}
.manufacture-map a[href="#manufacture-08"] .manufacture-map__item-number {
  background-color: #464646;
}
.manufacture-map__item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-top: 2.5px;
  padding: 2px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #0095d0;
}
.manufacture-map__item-text {
  display: inline-block;
  width: calc(100% - 16px - 5px);
  word-break: break-all;
  font-size: 1.4rem;
  font-weight: 500;
  color: #171717;
}

.manufacture-cards {
  width: 100%;
}
.manufacture-cards__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .manufacture-cards__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 50px;
  }
}
.manufacture-cards__list + .manufacture-cards__list {
  margin-top: 140px;
}
.manufacture-cards__list:last-of-type {
  margin-bottom: 70px;
}
.manufacture-cards__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-margin-top: 63px;
}
.manufacture-cards__item:not(:has(.manufacture-cards__ul)) .manufacture-cards__body {
  margin-top: 10px;
  flex: 1;
  justify-content: flex-end;
}
.manufacture-cards__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .manufacture-cards__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.manufacture-cards__title-text {
  display: inline;
}
.manufacture-cards__img-wrap {
  width: 100%;
  overflow: hidden;
}
.manufacture-cards__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.manufacture-cards__ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.manufacture-cards__ul-item {
  display: inline-block;
  padding: 2px 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #464646;
  border-radius: 100px;
}
.manufacture-cards__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.manufacture-cards__address {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  color: #464646;
}
@media (min-width: 768px) {
  .manufacture-cards__address {
    font-size: 1.4rem;
  }
}
.manufacture-cards__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 4px;
}
.manufacture-cards__links + .manufacture-cards__address {
  margin-top: 10px;
}
.manufacture-cards__link:not(.manufacture-cards__link--hp) {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0095d0;
  text-decoration: underline;
}
.manufacture-cards__link:not(.manufacture-cards__link--hp)::before {
  content: "[ ";
}
.manufacture-cards__link:not(.manufacture-cards__link--hp)::after {
  content: " ]";
}
@media (min-width: 768px) {
  .manufacture-cards__link:not(.manufacture-cards__link--hp) {
    font-size: 1.4rem;
  }
}
.manufacture-cards__link:not(.manufacture-cards__link--hp):hover {
  text-decoration: none;
}
.manufacture-cards__link:not(.manufacture-cards__link--hp) .manufacture-cards__icon {
  display: inline-block;
  margin-left: 4px;
}
.manufacture-cards__link--hp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1.5px 10px;
  font-size: 1.2rem;
  color: #464646;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #171717;
  border-radius: 100px;
  transition: background-color 0.3s, color 0.3s;
}
.manufacture-cards__link--hp .manufacture-cards__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #464646;
  transition: color 0.3s;
}
.manufacture-cards__link--hp .manufacture-cards__link-icon svg {
  display: block;
}
@media (min-width: 768px) {
  .manufacture-cards__link--hp:hover {
    background-color: #464646;
    color: #ffffff;
  }
  .manufacture-cards__link--hp:hover .manufacture-cards__link-icon {
    color: #ffffff;
  }
}

.product-page {
  background-color: #ffffff;
  padding: 60px 20px 90px;
}
@media (min-width: 768px) {
  .product-page {
    padding: 0 20px 90px;
  }
}
.product-page__inner {
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .product-page__inner {
    padding: 40px 20px 0;
  }
}

.product-tabs {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .product-tabs {
    margin-bottom: 60px;
  }
}
.product-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .product-tabs__list {
    gap: 20px;
  }
}
.product-tabs__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #0095d0;
  border-radius: 999px;
  width: fit-content;
  min-width: 165px;
  height: 46px;
  color: #0095d0;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .product-tabs__link {
    width: fit-content;
    min-width: 180px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .product-tabs__link:hover {
    color: #ffffff;
    background-color: #0095d0;
  }
}
.product-tabs__link.is-active {
  color: #ffffff;
  background-color: #0095d0;
}

.product-page__section {
  margin-bottom: 40px;
  scroll-margin-top: 63px;
}
@media (min-width: 768px) {
  .product-page__section {
    margin-bottom: 100px;
    scroll-margin-top: 90px;
  }
}
.product-page__section:last-of-type {
  margin-bottom: 0;
}
.product-page__section--parent {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .product-page__section--parent {
    margin-bottom: 100px;
  }
}
.product-page__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .product-page__heading {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.product-page__heading-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .product-page__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.product-page__actions {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .product-page__actions {
    margin: 70px 0;
  }
}
.product-page__actions .recruit__btn {
  width: fit-content;
  padding: 0 20px;
  border: 1px solid #0095d0;
}
.product-page__empty {
  padding: 40px 20px;
  text-align: center;
  font-size: 1.4rem;
  color: #464646;
}
@media (min-width: 768px) {
  .product-page__empty {
    padding: 60px 20px;
    font-size: 1.5rem;
  }
}

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

.product-card {
  display: flex;
  flex-direction: column;
  background-color: #e7eded;
  overflow: hidden;
  padding: 20px;
}
.product-card__image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
}
.product-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
}
.product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0 0;
}
@media (min-width: 768px) {
  .product-card__header {
    padding: 20px 0 0;
  }
}
.product-card__title {
  margin: 0;
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #464646;
  text-decoration: underline solid #0095d0 1px;
  text-underline-offset: 9px;
  line-height: 2;
}
.product-card__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background-color: #ffffff;
  color: #0095d0;
  cursor: pointer;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .product-card__toggle {
    display: none;
  }
}
.product-card__toggle svg {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__toggle-vertical {
  transition: opacity 0.2s;
}
.product-card__toggle-horizontal {
  transition: opacity 0.2s;
}
.product-card.is-open .product-card__toggle-vertical {
  opacity: 0;
}
.product-card__body {
  display: none;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
.product-card.is-open .product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__description {
  flex: 1;
  margin: 0 0 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .product-card__description {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
.product-card__description p {
  margin: 0 0 1em;
}
.product-card__description p:last-child {
  margin-bottom: 0;
}
.product-card__description p a {
  color: #0095d0;
  text-decoration: underline;
}
.product-card__description p a:hover {
  text-decoration: none;
}
.product-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 232px;
  height: 46px;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #0095d0;
  background-color: #ffffff;
  border: 1px solid #0095d0;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .product-card__link:hover {
    color: #ffffff;
    background-color: #0095d0;
  }
}
.product-card__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-card__link-icon svg,
.product-card__link-icon img {
  display: block;
  width: 12px;
  height: 12px;
}

/*------------------------------
News Single（お知らせ記事詳細）
------------------------------*/
.news-single {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .news-single {
    padding: 0;
  }
}
.news-single__inner {
  position: relative;
  padding: 0 0 100px;
}
@media (min-width: 768px) {
  .news-single__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 90px;
  }
}
.news-single__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 737px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .news-single__content {
    margin-top: 40px;
  }
}
.news-single__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.news-single__date {
  font-size: 1.4rem;
  line-height: 1.25;
  color: #464646;
}
@media (min-width: 768px) {
  .news-single__date {
    font-size: 1.4rem;
  }
}
.news-single__cat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 92px;
  padding: 5px;
  background-color: #0095d0;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.25;
  text-decoration: none;
  transition: opacity 0.3s;
}
.news-single__cat:hover {
  opacity: 0.9;
}
@media (min-width: 768px) {
  .news-single__cat {
    min-width: 134px;
    padding: 5px 30px;
    font-size: 1.5rem;
  }
}
.news-single__title {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #0095d0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: #464646;
}
@media (min-width: 768px) {
  .news-single__title {
    font-size: 2.4rem;
  }
}
.news-single__body {
  font-size: 1.4rem;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .news-single__body {
    font-size: 1.5rem;
  }
}
.news-single__body > * + * {
  margin-top: 20px;
}
.news-single__body p,
.news-single__body ul,
.news-single__body ol,
.news-single__body h2,
.news-single__body h3,
.news-single__body h4,
.news-single__body figure,
.news-single__body .wp-block-image,
.news-single__body .wp-block-gallery {
  margin-bottom: 20px;
}
.news-single__body p:last-child,
.news-single__body ul:last-child,
.news-single__body ol:last-child,
.news-single__body h2:last-child,
.news-single__body h3:last-child,
.news-single__body h4:last-child,
.news-single__body figure:last-child,
.news-single__body .wp-block-image:last-child,
.news-single__body .wp-block-gallery:last-child {
  margin-bottom: 0;
}
.news-single__body img {
  max-width: 100%;
  height: auto;
}
.news-single__body .wp-block-columns {
  margin-bottom: 90px;
}
.news-single__body .wp-block-columns:first-of-type {
  margin-top: 90px;
  margin-bottom: 20px;
}
.news-single__body .wp-block-columns + .wp-block-columns {
  margin-bottom: 20px;
}
.news-single__body .wp-block-columns:last-of-type {
  margin-bottom: 90px;
}
.news-single__body .wp-block-column figure:has(+ p) {
  margin-bottom: 10px;
}
.news-single__body .wp-block-column figure:has(+ p) p {
  line-height: 1.5;
}
.news-single__back {
  margin-top: 60px;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .news-single__back {
    margin: 100px auto 0;
  }
}
.news-single__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: #0095d0;
  text-decoration: none;
  width: 232px;
  height: 46px;
  margin: auto;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid #0095d0;
  border-radius: 23px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .news-single__btn:hover {
    color: #ffffff;
    background-color: #0095d0;
  }
}

/*------------------------------
Pagination
------------------------------*/
.pagination {
  margin-top: 40px;
}
.pagination__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .pagination__inner {
    gap: 20px;
  }
}
.pagination__prev, .pagination__next {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  color: #707070;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .pagination__prev, .pagination__next {
    gap: 6px;
    font-size: 1.4rem;
  }
}
.pagination__prev:hover:not(.is-disabled), .pagination__next:hover:not(.is-disabled) {
  opacity: 0.8;
}
.pagination__prev.is-disabled, .pagination__next.is-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.pagination__arrow {
  display: block;
  width: 19px;
  height: 11px;
}
@media (min-width: 768px) {
  .pagination__arrow {
    width: 22px;
    height: 13px;
  }
}
.pagination__arrow--next {
  transform: rotate(180deg);
}
.pagination__numbers {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
@media (min-width: 768px) {
  .pagination__numbers {
    gap: 10px;
  }
}
.pagination__numbers--sp {
  display: none;
}
.pagination__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 0;
  color: #707070;
  text-decoration: none;
  border: 1px solid #707070;
  background-color: #ffffff;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
@media (min-width: 768px) {
  .pagination__num {
    width: 36px;
    height: 36px;
  }
}
.pagination__num:hover:not(.is-current) {
  border-color: #0095d0;
  color: #0095d0;
}
.pagination__num.is-current {
  background-color: #0095d0;
  color: #ffffff;
  border-color: #0095d0;
}
.pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 36px;
  font-size: 1.5rem;
  color: #707070;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*------------------------------
Links Section
------------------------------*/
.links {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .links {
    padding: 0;
  }
}
.links__inner {
  position: relative;
  padding: 0 0 100px 0;
}
@media (min-width: 768px) {
  .links__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 180px;
  }
}
.links__headline {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 26.4px 21px;
}
@media (min-width: 768px) {
  .links__headline {
    margin: 0 0 53.4px 0;
  }
}
.links__headline-decoration {
  position: absolute;
  left: -31px;
  top: 0;
  width: 31px;
  height: 46px;
}
@media (min-width: 768px) {
  .links__headline-decoration {
    left: -43px;
    width: 43px;
    height: 122px;
  }
}
.links__headline-decoration img {
  width: 100%;
  height: auto;
}
.links__headline-text {
  padding-top: 32px;
}
.links__headline-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.15;
  color: #0095d0;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .links__headline-en {
    font-size: 5.1rem;
  }
}
.links__headline-ja {
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.25;
  color: #171717;
  margin: 0;
}
@media (min-width: 768px) {
  .links__headline-ja {
    font-size: 2.5rem;
  }
}
.links__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.links__main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.links__section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .links__section {
    gap: 30px;
  }
}
.links__section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.links__section-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .links__section-text {
    font-size: 2rem;
  }
}
.links__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .links__grid {
    gap: 0 40px;
  }
}
.links__grid-item {
  width: calc(33.33% - 13.33px);
  text-align: center;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .links__grid-item {
    width: calc(33.33% - 26.66px);
  }
}
.links__grid-item:hover {
  opacity: 0.8;
}
.links__banner {
  width: 100%;
  position: relative;
}
.links__banner-link {
  display: block;
  position: relative;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.links__banner-link:hover {
  opacity: 0.8;
}
.links__banner-image {
  display: block;
  width: 100%;
  margin: 0;
}
.links__banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/*------------------------------
Recruit Section
------------------------------*/
.recruit {
  background-color: #ffffff;
  position: relative;
}
.recruit__bg {
  width: 100%;
  position: relative;
}
.recruit__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 107.69%;
  background: url(../img/recruit_bg-sp.png) no-repeat center top/cover;
  background-size: cover;
}
@media (min-width: 768px) {
  .recruit__bg::before {
    padding-top: 51.46%;
    background: url(../img/recruit_bg-pc.png) no-repeat center top/cover;
  }
}
.recruit__inner {
  position: relative;
  min-height: calc(90vw + 120px);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .recruit__inner {
    min-height: calc(51vw + 130px);
  }
}
.recruit__content {
  position: relative;
  z-index: 2;
  max-width: 350px;
  margin: 0;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .recruit__content {
    max-width: 1040px;
    margin: 0 auto;
    padding: 9.52vw 20px;
  }
}
.recruit__headline {
  margin-bottom: 10px;
}
.recruit__headline-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.15;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .recruit__headline-en {
    font-size: 5.1rem;
  }
}
.recruit__headline-ja {
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .recruit__headline-ja {
    font-size: 2.5rem;
  }
}
.recruit__text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
  color: #ffffff;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .recruit__text {
    font-size: 1.5rem;
  }
}
.recruit__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: #0095d0;
  text-decoration: none;
  width: 232px;
  height: 46px;
  border-radius: 23px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .recruit__btn:hover {
    color: #ffffff;
    background-color: #0095d0;
  }
}
.recruit__btn-text {
  font-size: 1.3rem;
  font-weight: 500;
}
.recruit__btn-icon {
  position: relative;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.recruit__btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/*------------------------------
IR/CSR Section
------------------------------*/
.ir-csr {
  background-color: #e7eded;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .ir-csr {
    padding: 80px 20px;
  }
}
.ir-csr__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.ir-csr__grid {
  display: grid;
  grid-template-columns: auto;
  width: fit-content;
  margin: 0 auto;
  gap: 40px;
}
@media (min-width: 768px) {
  .ir-csr__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}
.ir-csr__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ir-csr__card:hover .ir-csr__card-image img {
    scale: 1.05;
  }
}
.ir-csr__card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 768px) {
  .ir-csr__card-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.ir-csr__card-image img {
  transition: scale 0.4s;
}
.ir-csr__card-content {
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 768px) {
  .ir-csr__card-content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    gap: 20px;
  }
}
.ir-csr__card-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: #0095d0;
}
@media (min-width: 768px) {
  .ir-csr__card-title {
    font-size: 2.5rem;
  }
}
.ir-csr__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: #0095d0;
  background-color: #ffffff;
  border-radius: 50%;
  border: 2px solid #0095d0;
}
@media (min-width: 768px) {
  .ir-csr__card-icon {
    width: 35px;
    height: 35px;
  }
}
.ir-csr__card-icon img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #0095d0;
  border-radius: 50%;
}

/*------------------------------
Contact Banner Section
------------------------------*/
.contact-banner {
  background-color: #ffffff;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .contact-banner {
    padding: 170px 20px;
  }
}
.contact-banner__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.contact-banner__link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}
.contact-banner__link:hover {
  opacity: 0.9;
}
.contact-banner__link picture {
  display: block;
  width: 100%;
}
.contact-banner__link img {
  width: 100%;
  height: auto;
  display: block;
}

/*------------------------------
Footer
------------------------------*/
.footer {
  background-color: #0095d0;
  padding: 36px 0 73px;
}
@media (min-width: 1048px) {
  .footer {
    padding: 76px 20px 18px;
  }
}
.footer__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 1048px) {
  .footer__inner {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    gap: 70px;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
}
@media (min-width: 1048px) {
  .footer__brand {
    padding: 0;
    flex-direction: column;
  }
}
.footer__logo {
  width: 200px;
  height: 147px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.footer__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #0095d0;
  text-decoration: none;
  width: 236px;
  padding: 15px 20px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  transition: background-color 0.3s;
  order: 1;
}
@media (min-width: 1048px) {
  .footer__contact-btn {
    order: 2;
  }
}
@media (min-width: 768px) {
  .footer__contact-btn:hover {
    background-color: #daf1fc;
  }
}
.footer__nav {
  width: 100%;
  order: 1;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}
@media (min-width: 1048px) {
  .footer__nav {
    order: 2;
    flex: 1;
    flex-direction: row;
    gap: 100px;
    padding: 0;
  }
}
.footer__nav-col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1048px) {
  .footer__nav-col {
    width: auto;
  }
}
@media (min-width: 1048px) {
  .footer__nav-col--sp-only {
    display: none;
  }
}
.footer__nav-item {
  display: block;
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-size: 1.4rem;
}
@media (min-width: 1048px) {
  .footer__nav-item {
    border-bottom: none;
  }
}
.footer__nav-item > a,
.footer__nav-item > span {
  display: block;
  color: inherit;
  width: 100%;
  height: 100%;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
  position: relative;
  font-weight: 700;
  cursor: pointer;
}
@media (min-width: 1048px) {
  .footer__nav-item > a,
  .footer__nav-item > span {
    height: 30px;
    padding: 0 18px;
  }
}
@media (min-width: 1048px) {
  .footer__nav-item > a:hover {
    opacity: 0.8;
  }
}
.footer__nav-item--has-sub > a, .footer__nav-item--has-sub > span {
  font-weight: 700;
}
.footer__nav-item--has-sub > a::after, .footer__nav-item--has-sub > span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M7 0v14M0 7h14' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s;
}
@media (min-width: 1048px) {
  .footer__nav-item--has-sub > a::after, .footer__nav-item--has-sub > span::after {
    display: none;
  }
}
@media (min-width: 1048px) {
  .footer__nav-item--has-sub > a::before, .footer__nav-item--has-sub > span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #ffffff;
  }
}
@media (min-width: 1048px) {
  .footer__nav-item > a::before, .footer__nav-item > span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #ffffff;
  }
}
.footer__nav-item.is-open > a::after, .footer__nav-item.is-open > span::after {
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M0 7h14' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
}
.footer__nav-item--copyright {
  border-bottom: none;
}
@media (min-width: 1048px) {
  .footer__nav-item--copyright {
    display: none;
  }
}
.footer__nav-item--copyright small {
  font-weight: lighter;
  text-align: center;
  padding-top: 18px;
}
.footer__sub-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
@media (min-width: 1048px) {
  .footer__sub-menu {
    height: auto;
    overflow: visible;
    display: block !important;
    transition: none;
  }
}
.footer__sub-list {
  list-style: none;
  margin: 0;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .footer__sub-list {
    padding: 0;
  }
}
.footer__sub-item {
  font-size: 1.4rem;
}
.footer__sub-item a {
  display: block;
  color: #ffffff;
  padding: 10px 0 10px 27px;
  text-decoration: none;
}
.footer__sub-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1048px) {
  .footer__sub-item a {
    height: 30px;
    padding: 0 18px;
    display: flex;
    align-items: center;
  }
  .footer__sub-item a:hover {
    background-color: transparent;
    opacity: 0.8;
  }
}
.footer__bottom {
  display: none;
}
@media (min-width: 1048px) {
  .footer__bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 36px;
    width: 100%;
    order: 3;
  }
}
.footer__privacy-link {
  display: flex;
  align-items: center;
  height: 40px;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.25;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__privacy-link:hover {
  opacity: 0.8;
}
.footer__copyright {
  display: flex;
  align-items: center;
  height: 40px;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 400;
}
.footer__copyright-sp {
  display: block;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 400;
}

/*------------------------------
Contact Page (company styles cloned)
------------------------------*/
.contact-mv {
  position: relative;
  width: 100%;
  margin-top: 54px;
  background-color: #e7eded;
}

@media (min-width: 768px) {
  .contact-mv {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 1048px) {
  .contact-mv {
    margin-top: 80px;
  }
}
.contact-mv__img-wrap {
  width: 50%;
  margin-left: auto;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-mv__img-wrap {
    width: 54.83%;
  }
}
.contact-mv__img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-mv__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  z-index: 1;
  max-width: 1040px;
  margin: auto;
  padding: 0;
  box-sizing: content-box;
}

@media (min-width: 1048px) {
  .contact-mv__inner {
    align-items: flex-start;
    left: 0;
    right: 0;
    order: 1;
    width: 1000px;
    padding: 0 20px;
  }
}
.contact-mv__head {
  position: relative;
  padding-left: 0;
}

.contact-mv__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 31px;
  height: 46px;
  pointer-events: none;
}

@media (min-width: 1048px) {
  .contact-mv__icon {
    top: 0;
    left: -43px;
    width: 43px;
    height: 122px;
  }
}
.contact-mv__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-mv__heading {
  margin: 0;
  margin-bottom: 28px;
  padding: 28px 0 0 31px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

@media (min-width: 1048px) {
  .contact-mv__heading {
    gap: 18px;
    margin-bottom: 37.5px;
    padding: 37.5px 0 0;
  }
}
.contact-mv__title-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #0095d0;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 1048px) {
  .contact-mv__title-en {
    font-size: 3rem;
  }
}
.contact-mv__title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: #171717;
  margin: 0;
}

@media (min-width: 1048px) {
  .contact-mv__title-ja {
    font-size: 3.8rem;
  }
}
@media (min-width: 768px) {
  .contact-mv__title-ja br {
    display: none;
  }
}
.contact-page {
  background-color: #ffffff;
  padding: 60px 20px;
}

@media (min-width: 768px) {
  .contact-page {
    padding: 0;
  }
}
.contact-page__inner {
  position: relative;
  padding: 0 0 100px;
}

@media (min-width: 768px) {
  .contact-page__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 90px;
  }
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-content {
    margin-top: 40px;
    gap: 50px;
  }
}
.contact-content__section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-content__section:not(:first-child) {
  padding-top: 30px;
  border-top: 1px solid #707070;
}

@media (min-width: 768px) {
  .contact-content__section:not(:first-child) {
    padding-top: 50px;
  }
}
.contact-content__section.exception {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .contact-content__section.exception {
    flex-direction: row;
    align-items: flex-end;
  }
}
.contact-content__group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-content__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #2c2b2b;
}

@media (min-width: 768px) {
  .contact-content__heading {
    font-size: 2.4rem;
  }
}
.contact-content__heading-icon {
  width: 9px;
  height: 14px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-content__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.contact-content__lead {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: #0095d0;
}

@media (min-width: 768px) {
  .contact-content__lead {
    font-size: 2.7rem;
  }
}
.contact-content__body {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #464646;
}

.contact-content__body p {
  margin: 0 0 1em;
  line-height: 2;
}

.contact-content__body p:last-child {
  margin-bottom: 0;
}

.contact-content__president {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

@media (min-width: 768px) {
  .contact-content__president {
    width: 219px;
    flex: 0 0 auto;
  }
}
.contact-content__president-figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0;
}

.contact-content__president-img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
}

.contact-content__president-caption {
  width: fit-content;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #464646;
}

.contact-content__figure {
  margin: 0;
}

.contact-content__figure-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.6737/1;
}

.contact-content__photos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: calc(100% + 40px);
  translate: -20px 0;
}

@media (min-width: 768px) {
  .contact-content__photos {
    gap: 12.5px;
    width: 100%;
    translate: 0 0;
  }
}
.contact-content__photos-item {
  flex: 1 1 0;
  min-width: 0;
}

.contact-content__photos-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media (min-width: 768px) {
  .contact-content__photos-item img {
    aspect-ratio: 1.438/1;
  }
}
@media (min-width: 768px) {
  .contact-content__photos-item {
    flex: 0 1 calc((100% - 25px) / 3);
  }
}
.contact-content__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
}

@media (min-width: 768px) {
  .contact-content__actions {
    padding-top: 50px;
  }
}
.contact-content__actions .recruit__btn {
  border: 1px solid #0095d0;
}

@media (max-width: 767px) {
  .contact-content__actions .recruit__btn {
    width: 165px;
  }
}
/*------------------------------
Contact Form (moved from page-contact.php)
------------------------------*/
.mwform-wrap {
  margin: 0 auto;
  font-size: 15px;
}
.mwform-wrap p.form-topinfo {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .mwform-wrap p.form-topinfo {
    font-size: 1.5rem;
  }
}

.form-row {
  display: flex;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
  .form-row {
    gap: 60px;
    padding: 30px 0;
  }
}
.form-row--first {
  border-top: 1px solid #ddd;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .form-label {
    justify-content: space-between;
    width: 177px;
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.form-label:not(.required)::after {
  content: "任意";
  display: inline-block;
  background: #909090;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 4px;
  border-radius: 3px;
  vertical-align: middle;
}

.form-label.required::after {
  content: "必須";
  display: inline-block;
  background: #f00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 4px;
  border-radius: 3px;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .form-field {
    width: calc(100% - 177px - 60px);
  }
}
.form-field .error {
  color: #f00 !important;
  font-size: 1.2rem !important;
  margin-top: 10px;
}
.form-field .horizontal-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.form-field .horizontal-item label input[type=checkbox] {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #464646;
  border-radius: 2px;
  cursor: pointer;
}
.form-field .horizontal-item label input[type=checkbox]:checked {
  background-color: #0095d0;
}
.form-field .horizontal-item label input[type=checkbox]:checked::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  margin: auto;
  width: 4px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translate(0, -2px) rotate(45deg);
}
.form-field .horizontal-item label .mwform-checkbox-field-text {
  position: relative;
  margin-right: 25px;
  padding-left: 30px;
  font-size: 1.4rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .form-field .horizontal-item label .mwform-checkbox-field-text {
    font-size: 1.5rem;
    font-weight: 500;
  }
}
.form-field .horizontal-item label .mwform-checkbox-field-text::after {
  content: "必須";
  display: inline-block;
  width: 32px;
  height: 20px;
  margin: auto;
  background: #f00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 4px;
  border-radius: 3px;
  vertical-align: baseline;
  box-sizing: border-box;
}
.form-field .horizontal-item label .mwform-checkbox-field-text a {
  color: #0095d0;
  text-decoration: underline;
}
.form-field .horizontal-item label .mwform-checkbox-field-text a:hover {
  text-decoration: none;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 22.5px 17px;
  background: #ebebeb;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .form-field input,
  .form-field textarea {
    font-size: 1.5rem;
  }
}

.form-field label {
  display: inline-block;
}

.mw_wp_form_error {
  color: #f00 !important;
  font-size: 12px !important;
  margin-top: 10px;
}

.form-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin: 50px 0;
}
@media (min-width: 768px) {
  .form-buttons {
    margin: 80px 0;
  }
}

.form-buttons input,
.form-buttons .btn,
.form-buttons .btn-submit,
.form-buttons .form-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: #0095d0;
  border: 1px solid #0095d0;
  text-decoration: none;
  width: 232px;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 23px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  cursor: pointer;
}
@media (min-width: 768px) {
  .form-buttons input:hover,
  .form-buttons .btn:hover,
  .form-buttons .btn-submit:hover,
  .form-buttons .form-buttons:hover {
    background-color: #0095d0;
    color: #ffffff;
    border-color: #ffffff;
  }
}

.form-buttons input[type=reset],
.form-buttons .btn[type=reset] {
  background: #fff;
}

.mwform-wrap.confirm .form-field {
  padding-top: 18px;
}

@media screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .form-label,
  .form-field {
    width: 100%;
  }
  .form-label {
    background: none;
    border-bottom: none;
  }
  .form-buttons {
    display: flex;
    gap: 10px;
  }
  .form-buttons input {
    width: 100%;
    margin: 0;
  }
}
.form-row-type {
  width: 100%;
  border-bottom: none;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .form-row-type {
    width: min(100%, 287px);
    margin-bottom: 50px;
  }
}

.form-row-type .form-field.full {
  width: 100%;
  padding: 0;
}

.mw_wp_form_preview .form-field.full {
  background: #0095d9;
  color: #fff;
  display: block;
  padding: 18px;
  border-radius: 6px;
  font-weight: bold;
  margin: 0 auto;
}

.contact-type-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

@media (min-width: 768px) {
  .contact-type-list {
    max-width: 40%;
  }
}
.mwform-radio-field {
  display: block;
  margin-bottom: 10px;
}

.mwform-radio-field input[type=radio] {
  display: none;
}

.mwform-radio-field-text {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .mwform-radio-field-text {
    font-size: 1.5rem;
  }
}

.mwform-radio-field label {
  display: block;
  padding: 18px;
  border: 2px solid #0095d9;
  border-radius: 6px;
  color: #0095d9;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 47px;
}

.mwform-radio-field label::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #0095d9;
  border-radius: 50%;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}

.mwform-radio-field label:has(input[type=radio]:checked) {
  background: #0095d9;
  color: #fff;
}

.mwform-radio-field label:has(input[type=radio]:checked)::before {
  background: #0095d9;
  border-color: #fff;
}

.mwform-radio-field label::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #0095d9;
  border-radius: 50%;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.mwform-radio-field label:has(input[type=radio]:checked)::after {
  background: #fff;
}

.mwform-radio-field label:hover {
  background: rgba(0, 149, 217, 0.08);
}

.mw_wp_form .horizontal-item.horizontal-item + .horizontal-item {
  margin-left: 0;
}

.contact-page__inner:has(.mw_wp_form_complete) {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .contact-page__inner:has(.mw_wp_form_complete) {
    padding-bottom: 90px;
  }
}

.mw_wp_form_complete {
  font-size: 1.4rem;
  color: #171717;
}
@media (min-width: 768px) {
  .mw_wp_form_complete {
    font-size: 1.5rem;
  }
}

/*------------------------------
IR Shareholder
------------------------------*/
.ir-shareholder {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .ir-shareholder {
    padding: 0;
  }
}
.ir-shareholder__inner {
  position: relative;
  padding: 0 0 100px;
}
@media (min-width: 768px) {
  .ir-shareholder__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 90px;
  }
}
.ir-shareholder__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 737px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .ir-shareholder__content {
    margin-top: 40px;
  }
}
.ir-shareholder__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .ir-shareholder__heading {
    font-size: 2.4rem;
  }
}
.ir-shareholder__heading-icon {
  width: 9px;
  height: 14px;
}
@media (min-width: 768px) {
  .ir-shareholder__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.ir-shareholder__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.ir-shareholder__date {
  font-size: 1.4rem;
  line-height: 1.25;
  color: #464646;
}
@media (min-width: 768px) {
  .ir-shareholder__date {
    font-size: 1.4rem;
  }
}
.ir-shareholder__cat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 92px;
  padding: 5px;
  background-color: #0095d0;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.25;
  text-decoration: none;
  transition: opacity 0.3s;
}
.ir-shareholder__cat:hover {
  opacity: 0.9;
}
@media (min-width: 768px) {
  .ir-shareholder__cat {
    min-width: 134px;
    padding: 5px 30px;
    font-size: 1.5rem;
  }
}
.ir-shareholder__title {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #0095d0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: #464646;
}
@media (min-width: 768px) {
  .ir-shareholder__title {
    font-size: 2.4rem;
  }
}
.ir-shareholder__body {
  font-size: 1.4rem;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .ir-shareholder__body {
    font-size: 1.5rem;
  }
}
.ir-shareholder__body > * + * {
  margin-top: 20px;
}
.ir-shareholder__body p,
.ir-shareholder__body ul,
.ir-shareholder__body ol,
.ir-shareholder__body h2,
.ir-shareholder__body h3,
.ir-shareholder__body h4,
.ir-shareholder__body figure,
.ir-shareholder__body .wp-block-image,
.ir-shareholder__body .wp-block-gallery {
  margin-bottom: 20px;
}
.ir-shareholder__body p:last-child,
.ir-shareholder__body ul:last-child,
.ir-shareholder__body ol:last-child,
.ir-shareholder__body h2:last-child,
.ir-shareholder__body h3:last-child,
.ir-shareholder__body h4:last-child,
.ir-shareholder__body figure:last-child,
.ir-shareholder__body .wp-block-image:last-child,
.ir-shareholder__body .wp-block-gallery:last-child {
  margin-bottom: 0;
}
.ir-shareholder__body img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.ir-shareholder__body .wp-block-columns {
  margin-bottom: 90px;
}
.ir-shareholder__body .wp-block-columns:first-of-type {
  margin-top: 90px;
  margin-bottom: 20px;
}
.ir-shareholder__body .wp-block-columns + .wp-block-columns {
  margin-bottom: 20px;
}
.ir-shareholder__body .wp-block-columns:last-of-type {
  margin-bottom: 90px;
}
.ir-shareholder__body .wp-block-column figure:has(+ p) {
  margin-bottom: 10px;
}
.ir-shareholder__body .wp-block-column figure:has(+ p) p {
  line-height: 1.5;
}
.ir-shareholder__back {
  margin-top: 60px;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .ir-shareholder__back {
    margin: 100px auto 0;
  }
}
.ir-shareholder__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: #0095d0;
  text-decoration: none;
  width: 232px;
  height: 46px;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid #0095d0;
  border-radius: 23px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .ir-shareholder__btn:hover {
    color: #ffffff;
    background-color: #0095d0;
  }
}
.ir-shareholder__item-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .ir-shareholder__item-links {
    margin-top: 50px;
  }
}
.ir-shareholder__item-links .ir-shareholder__item-link {
  width: 165px;
  min-height: 46px;
  margin: 0;
  padding: 15px 20px;
  border-radius: 23px;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .ir-shareholder__item-links .ir-shareholder__item-link {
    width: 232px;
  }
}
.ir-shareholder__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid #0095d0;
  border-radius: 999px;
  width: 248px;
  height: 46px;
  margin: 0 auto;
  color: #0095d0;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .ir-shareholder__item-link:hover {
    color: #ffffff;
    background-color: #0095d0;
    border: 1px solid #ffffff;
  }
}
.ir-shareholder__item-link-text {
  font-size: 1.3rem;
  font-weight: 500;
}
.ir-shareholder__item-link-icon {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ir-shareholder__item-link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/*------------------------------
Public Notice
------------------------------*/
.public-notice {
  background-color: #ffffff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .public-notice {
    padding: 0;
  }
}
.public-notice__inner {
  position: relative;
  padding: 0 0 100px 0;
}
@media (min-width: 768px) {
  .public-notice__inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px 90px;
  }
}
.public-notice__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 737px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .public-notice__content {
    margin-top: 40px;
  }
}
.public-notice__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .public-notice__heading {
    font-size: 2.4rem;
  }
}
.public-notice__heading-icon {
  width: 9px;
  height: 14px;
}
@media (min-width: 768px) {
  .public-notice__heading-icon {
    width: 14px;
    height: 21px;
  }
}
.public-notice__main {
  width: 100%;
}
.public-notice__tabs {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.public-notice__tab {
  display: inline-block;
  min-width: 92px;
  padding: 4px 20px;
  background-color: #d8d8d8;
  color: #464646;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}
.public-notice__tab.is-active, .public-notice__tab:hover {
  background-color: #0095d0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .public-notice__tab {
    min-width: 134px;
    padding: 4px 30px;
  }
}
.public-notice__lists {
  margin-bottom: 20px;
}
.public-notice__list-group {
  display: block;
}
.public-notice__item {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #bcbcbc;
  text-decoration: none;
  color: inherit;
}
.public-notice__item:first-child {
  border-top: 1px solid #bcbcbc;
}
@media (min-width: 768px) {
  .public-notice__item {
    display: flex;
    align-items: center;
    padding: 30px 0;
  }
}
.public-notice__item-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .public-notice__item-meta {
    gap: 0;
    margin-bottom: 0;
    margin-right: 40px;
    flex-shrink: 0;
  }
}
.public-notice__item-cat {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 92px;
  padding: 4px 20px;
  background-color: #464646;
  color: #ffffff;
  font-size: 1.3rem;
}
.public-notice__item-date {
  font-size: 1.3rem;
  color: #464646;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .public-notice__item-date {
    margin-left: 20px;
    font-size: 1.4rem;
  }
}
.public-notice__item-title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #464646;
  margin: 0;
}
@media (min-width: 768px) {
  .public-notice__item-title {
    font-size: 1.5rem;
  }
}
.public-notice__empty {
  color: #464646;
}
.public-notice__item-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .public-notice__item-links {
    margin-top: 50px;
  }
}
.public-notice__item-links .public-notice__item-link {
  width: 165px;
  min-height: 46px;
  margin: 0;
  padding: 15px 20px;
  border-radius: 23px;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .public-notice__item-links .public-notice__item-link {
    width: 232px;
  }
}
.public-notice__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid #0095d0;
  border-radius: 999px;
  width: 248px;
  height: 46px;
  margin: 0 auto;
  color: #0095d0;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .public-notice__item-link:hover {
    color: #ffffff;
    background-color: #0095d0;
    border: 1px solid #ffffff;
  }
}
.public-notice__item-link-text {
  font-size: 1.3rem;
  font-weight: 500;
}
.public-notice__item-link-icon {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.public-notice__item-link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sponsorship-archive {
  padding: 60px 20px 90px;
}
@media (min-width: 768px) {
  .sponsorship-archive {
    padding: 0 20px 90px;
  }
}
.sponsorship-archive__mv {
  margin-top: 54px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px 0;
}
@media (min-width: 1048px) {
  .sponsorship-archive__mv {
    margin-top: 80px;
    padding: 80px 20px 0;
  }
}
.sponsorship-archive__mv .links__banner-image {
  display: block;
  width: 100%;
}
.sponsorship-archive__mv .links__banner-image img {
  display: block;
  width: 100%;
  height: auto;
}
.sponsorship-archive__inner {
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sponsorship-archive__inner {
    padding: 125px 20px 0;
  }
}
.sponsorship-archive__lists {
  margin-bottom: 20px;
}
.sponsorship-archive__list-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .sponsorship-archive__list-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 35px;
  }
}
.sponsorship-archive__item {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: none;
}
.sponsorship-archive__empty {
  padding: 40px 20px;
  text-align: center;
  font-size: 1.4rem;
  color: #464646;
}
@media (min-width: 768px) {
  .sponsorship-archive__empty {
    padding: 60px 20px;
    font-size: 1.5rem;
  }
}

.sponsorship-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: none;
}

.sponsorship-card__link {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.sponsorship-card__link:hover {
  opacity: 0.8;
}

.sponsorship-card__image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

.sponsorship-card__title {
  width: calc(100% + 20px);
  min-height: 3em;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #464646;
  translate: -10px 0;
}

.sponsorship-card__excerpt {
  font-size: 1.4rem;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .sponsorship-card__excerpt {
    font-size: 1.5rem;
  }
}
.sponsorship-card__excerpt p {
  margin: 0 0 1em;
}
.sponsorship-card__excerpt p:last-child {
  margin-bottom: 0;
}

/*------------------------------
CSR・サステナビリティ
------------------------------*/
.csr-mv {
  position: relative;
  width: 100%;
  margin-top: 54px;
}
@media (min-width: 1048px) {
  .csr-mv {
    margin-top: 80px;
  }
}
.csr-mv__img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
}
@media (min-width: 768px) {
  .csr-mv__img-wrap {
    height: auto;
  }
}
.csr-mv__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .csr-mv__img {
    height: auto;
    object-fit: contain;
  }
}
.csr-mv__inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.csr-mv__heading {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
@media (min-width: 768px) {
  .csr-mv__heading {
    font-size: 3.8rem;
  }
}

.csr-content {
  width: 100%;
}
.csr-content__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 40px 20px 50px;
  gap: 50px;
}
@media (min-width: 768px) {
  .csr-content__inner {
    padding: 40px 20px 50px;
  }
}
.csr-content__intro {
  width: 100%;
}
@media (min-width: 768px) {
  .csr-content__intro {
    max-width: 1040px;
  }
}
.csr-content__intro-text {
  font-size: 1.4rem;
  line-height: 2;
  color: #464646;
  text-align: left;
}
@media (min-width: 768px) {
  .csr-content__intro-text {
    font-size: 1.5rem;
    text-align: center;
  }
}
.csr-content__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: stretch;
}
@media (min-width: 768px) {
  .csr-content__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

.csr-nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background-color: #ffffff;
  border: 1px solid #0095d0;
  border-radius: 999px;
  color: #0095d0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  gap: 8px;
}
@media (min-width: 768px) {
  .csr-nav-btn:hover {
    background-color: #0095d0;
    color: #ffffff;
  }
}
@media (min-width: 768px) {
  .csr-nav-btn {
    width: auto;
    min-width: 180px;
    font-size: 1.5rem;
  }
}

.csr-section {
  width: 100%;
  background-color: #f0f8fc;
}
.csr-section:nth-child(odd) {
  background-color: #ffffff;
}
.csr-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 50px 20px;
  gap: 40px;
}
@media (min-width: 768px) {
  .csr-section__inner {
    padding: 100px 20px;
    gap: 50px;
  }
}
.csr-section__header {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1040px;
  gap: 20px;
}
@media (min-width: 768px) {
  .csr-section__header {
    gap: 40px;
  }
}
.csr-section__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}
@media (min-width: 768px) {
  .csr-section__title-wrap {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.csr-section__title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2c2b2b;
}
@media (min-width: 768px) {
  .csr-section__title {
    font-size: 2.4rem;
  }
}
.csr-section__title-icon {
  display: block;
  width: 14px;
  height: 21px;
  flex-shrink: 0;
}
.csr-section__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.csr-section__icons img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .csr-section__icons img {
    width: 50px;
    height: 50px;
  }
}
.csr-section__lead {
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .csr-section__lead {
    font-size: 1.5rem;
  }
}
.csr-section__cards {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1040px;
  gap: 30px;
}
@media (min-width: 768px) {
  .csr-section__cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
}

.csr-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  border-top: 4px solid #0095d0;
  padding: 24px 20px 30px;
  gap: 24px;
}
.csr-section:nth-child(odd) .csr-card {
  background-color: #f0f8fc;
}
@media (min-width: 768px) {
  .csr-card {
    width: calc(50% - 20px);
    padding: 24px 36px 36px;
    gap: 30px;
  }
}
.csr-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: #0095d0;
}
@media (min-width: 768px) {
  .csr-card__title {
    font-size: 2rem;
  }
}
.csr-card__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}
@media (min-width: 768px) {
  .csr-card__body {
    gap: 40px;
  }
}
.csr-card__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
@media (min-width: 768px) {
  .csr-card__content {
    gap: 20px;
  }
}
.csr-card__icon-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
.csr-card__icon-wrap img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .csr-card__icon-wrap img {
    width: 50px;
    height: 50px;
  }
}
.csr-card__text {
  font-size: 1.4rem;
  line-height: 2;
  color: #464646;
}
@media (min-width: 768px) {
  .csr-card__text {
    font-size: 1.5rem;
  }
}
.csr-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
  position: relative;
}
.csr-card__image-trigger {
  display: block;
  position: relative;
  width: 100%;
  max-width: 300px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.csr-card__image-trigger img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.csr-card__image-trigger:hover .csr-card__image-zoom {
  opacity: 0.8;
}
.csr-card__image-zoom {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: #0095d0;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.csr-card__image-zoom-icon {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
}
.csr-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background-color: #ffffff;
  border: 1px solid #0095d0;
  border-radius: 23px;
  color: #0095d0;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  transition: all 0.3s;
  gap: 8px;
}
@media (min-width: 768px) {
  .csr-card__btn:hover {
    background-color: #0095d0;
    color: #ffffff;
  }
  .csr-card__btn:hover svg {
    color: #ffffff;
  }
}
.csr-card__btn svg {
  width: 11px;
  height: 12px;
  color: #0095d0;
  flex-shrink: 0;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .csr-card__btn {
    max-width: 294px;
    margin: 0 auto;
    font-size: 1.3rem;
  }
}

.csr-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.csr-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.csr-modal__wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.csr-modal__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100% - 44px, 640px);
}
@media (max-height: 430px) {
  .csr-modal__content {
    width: fit-content;
    max-height: calc(100vh - 44px);
  }
}
.csr-modal__image {
  position: relative;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 1;
}
.csr-modal__close {
  position: absolute;
  top: -22px;
  right: -22px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: #0095d0;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.csr-modal__close:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .csr-modal__close {
    width: 44px;
    height: 44px;
  }
}
.csr-modal__close-icon {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  clip-path: polygon(0 45%, 45% 45%, 45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%);
  transform: rotate(45deg);
}/*# sourceMappingURL=style.css.map */