/* ==============================================
MV
============================================== */

.mv {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background: url(../img/index/mv_img.webp) no-repeat center center / cover;
  position: relative;
}

.mv::after {
  content: "";
  width: 100%;
  aspect-ratio: 1920/80;
  background: #F7FAFB;
  mask-image: url('../img/index/semicircle.svg');
  -webkit-mask-image: url('../img/index/semicircle.svg');
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (hover: hover) and (pointer: fine) {

  .mv_hover_mask {
    display: block;
    position: absolute;
    inset: 0;
  }

  .mv_hover_mask::before {
    content: '';
    width: 50%;
    height: 100%;
    background: #29B4FF;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .mv_hover_mask.is-active-left::before {
    opacity: 0.4;
  }

  .mv_hover_mask::after {
    content: '';
    width: 50%;
    height: 100%;
    background: #8045B6;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .mv_hover_mask.is-active-right::after {
    opacity: 0.4;
  }
}

.mv .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 200px;
  position: relative;
  z-index: 1;
}

.mv_catch {
  margin-bottom: 95px;
  position: relative;
  z-index: 0;
}

.mv_catch_title {
  color: #fff;
  font-size: clamp(3rem, 4vw, 4.8rem);
  letter-spacing: -0.0em;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.mv_catch_title_en {
  width: max-content;
  color: rgba(255, 255, 255, 0.50);
  font-size: clamp(8rem, 9vw, 12.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.mv_catch_title_en em {
  font-size: clamp(10rem, 13vw, 18rem);
}

.mv_button_area {
  display: flex;
  gap: clamp(40px, 10vw, 140px);
}

.mv_button {
  max-width: 594px;
  width: 100%;
}

.mv_button a {
  display: grid;
  grid-template-columns: 1fr 90px;
  grid-template-rows: auto auto;
  gap: 17px 0;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 40px rgba(39, 42, 100, 0.25);
  text-decoration: none;
  padding: 8px 8px 20px 8px;
  position: relative;
}

.mv_button a::after {
  content: '';
  background: #fff;
  border-radius: 4px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.mv_button a:hover::after {
  opacity: 0.4;
}

.mv_button_img {
  grid-row: 1 / 2;
  grid-column: 1 / -1;
}

.mv_button_img img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1!important;
}

.mv_button_text {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  align-self: center;
  color: #2F2F2F;
  font-weight: 500;
  border-right: 1px solid #EAEAEA;
  padding: 0 12px 0 52px;
  position: relative;
}

.mv_button_text::before {
  content: "";
  width: 25px;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  top: 14px;
  left: 14px;
}

.mv_button_arrow {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  justify-self: center;
  align-self: center;
  width: 40px;
  aspect-ratio: 1;
  background: var(--sub-color);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.mv_button_arrow::after {
  content: "";
  width: 13px;
  aspect-ratio: 13/11;
  background: url(../img/common/arrow_icon.svg) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll_down {
  position: absolute;
  bottom: -78px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll_down_line {
  display: block;
  width: 1px;
  height: 72px;
  background: var(--main-color);
  position: relative;
}

.scroll_down_dot {
  width: 5px;
  height: 5px;
  background: var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-dot-move 2.8s ease-in-out infinite;
}

.scroll_down_dot::before {
  content: "";
  width: 19px;
  aspect-ratio: 1;
  background: rgba(5, 56, 216, 0.20);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: scroll-dot-pulse 2.8s ease-in-out infinite;
}

@keyframes scroll-dot-move {
  0% {
    top: 0;
  }

  80% {
    top: calc(100% - 5px);
  }

  100% {
    top: calc(100% - 5px);
  }
}

@keyframes scroll-dot-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.5);
  }

  25% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(0.5);
  }

  75% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.scroll_down_text {
  color: var(--main-color);
  font-size: 1rem;
  font-family: "Alata", sans-serif;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

@media (max-width : 767px) {

  .mv {
    height: auto;
    min-height: calc(580 / 400 * 100vw);
    background: #F7FAFB;
    padding-bottom: calc(60 / 400 * 100vw);
  }

  .mv::before {
    content: '';
    width: 100%;
    height: calc(510 / 400 * 100vw);
    background: url(../img/index/mv_img_sp.webp) no-repeat center top / cover;
    position: absolute;
    top: 0;
    bottom: auto;
  }

  .mv::after {
    content: none;
  }

  .mv .inner {
    display: block;
    padding-top: calc(229 / 400 * 100vw);
  }

  .mv_catch {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: calc(47 / 400 * 100vw);
  }

  .mv_catch_title {
    font-size: calc(36 / 400 * 100vw);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.60);
  }

  .mv_catch_title_en {
    font-size: calc(27 / 400 * 100vw);
    position: static;
    transform: none;
  }

  .mv_catch_title_en em {
    font-size: calc(39 / 400 * 100vw);
  }

  .mv_button_area {
    flex-direction: column;
    align-items: center;
    gap: calc(16 / 400 * 100vw);
  }

  .mv_button {
    max-width: calc(361 / 400 * 100vw);
    width: 100%;
  }

  .mv_button a {
    grid-template-columns: 1fr calc(57 / 400 * 100vw);
    gap: calc(10 / 400 * 100vw) 0;
    width: 100%;
    padding: calc(5 / 400 * 100vw) calc(5 / 400 * 100vw) calc(11 / 400 * 100vw) calc(5 / 400 * 100vw);
  }

  .mv_button_text {
    font-size: calc(13 / 400 * 100vw);
    padding: 0 calc(11 / 400 * 100vw) 0 calc(31 / 400 * 100vw);
  }

  .mv_button_text::before {
    width: calc(15 / 400 * 100vw);
    top: calc(11 / 400 * 100vw);
    left: calc(10 / 400 * 100vw);
  }

  .mv_button_arrow {
    width: calc(24 / 400 * 100vw);
  }

  .mv_button_arrow::after {
    width: calc(8 / 400 * 100vw);
  }

  .scroll_down {
    display: none;
  }
}

/* ==============================================
お知らせセクション
============================================== */

.section_news {
  background: #F7FAFB;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.section_news::before {
  content: '';
  width: clamp(500px, 40vw, 760px);
  aspect-ratio: 760/305;
  background: url(../img/index/bg_deco01.webp) no-repeat center center / cover;
  position: absolute;
  top: 23%;
  left: -14%;
  z-index: -1;
}

.section_news::after {
  content: '';
  width: clamp(500px, 40vw, 760px);
  aspect-ratio: 760/305;
  background: url(../img/index/bg_deco02.webp) no-repeat center top / cover;
  position: absolute;
  top: 31%;
  right: -10%;
  z-index: -1;
}

.section_news_tab_area {

}

.section_news_tab_list {
  width: 100%;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 53, 150, 0.3);
}

.tab_item {
  display: block;
  font-size: 1.8rem;
  text-align: center;
  color: #000;
  text-align: center;
  font-weight: 500;
  padding: 10px 22px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.tab_item::after {
  content: '';
  width: 100%;
  height: 5px;
  background: transparent;
  border-radius: 4px 4px 0 0;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: all 0.3s ease;
}

.tab_item:hover {
  color: var(--sub-color);
}

.tab_item:hover::after {
  background: var(--sub-color);
}

.section_news_tab_list input:checked + .tab_item {
  color: var(--sub-color);
}

.section_news_tab_list input:checked + .tab_item::after {
  background: var(--sub-color);
}

input[name="tab_item"] {
  display: none;
}

.tab_content {
  display: none;
  padding: 80px 40px 0;
  clear: both;
  overflow: hidden;
}

.section_news_tab_area:has(#all:checked) ~ .section_news_contents_area #all_content,
.section_news_tab_area:has(#notice:checked) ~ .section_news_contents_area #notice_content,
.section_news_tab_area:has(#event:checked) ~ .section_news_contents_area #event_content {
  display: block;
}

.section_news_contents_list {
  margin-bottom: 64px;
}

/* スライダー */

.section_news_swiper.swiper {
  width: 100%;
  overflow: hidden;
}

.section_news_contents_swiper_button {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.section_news_contents_swiper_prev,
.section_news_contents_swiper_next {
  width: 44px;
  aspect-ratio: 1;
  background: var(--sub-color);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section_news_contents_swiper_prev:hover,
.section_news_contents_swiper_next:hover {
  opacity: 0.7;
}

.section_news_contents_swiper_prev::after,
.section_news_contents_swiper_next::after {
  content: '';
  width: 12px;
  aspect-ratio: 1;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #fff;
  position: absolute;
}

.section_news_contents_swiper_prev::after {
  top: 50%;
  left: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.section_news_contents_swiper_next::after {
  top: 50%;
  left: calc(50% - 2px);
  transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-button-disabled {
  background: #FFABAB;
  cursor: inherit;
}

.section_news_btn {
  text-align: center;
}

.section_news_btn a {
  width: max-content;
  display: inline-block;
  color: #303030;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 17px 50px;
  border: 1px solid #2D2D2D;
  border-radius: 100vmax;
  position: relative;
  transition: all 0.3s ease;
}

.section_news_btn a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--main-color);
  border-color: var(--main-color);
}

.section_news_btn a::after {
  content: '';
  width: 12px;
  aspect-ratio: 12/11;
  background: #000;
  mask-image: url('../img/common/arrow_icon.svg');
  -webkit-mask-image: url('../img/common/arrow_icon.svg');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}

.section_news_btn a:hover::after {
  background: #fff;
}

@media (max-width: 1024px) {

  .section_news::before {
    content: none;
  }

  .section_news::after {
    content: none;
  }

  .section_news_contents_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .section_news_contents_item:nth-child(n + 4) {
    display: none;
  }

  /* スライダー */

  .section_news_contents_swiper_button {
    display: none;
  }

  .section_news_swiper.swiper {
    overflow: visible;
  }
}

@media (max-width : 767px) {

  .section_news {
    padding: 0 0 calc(90 / 400 * 100vw);
    position: relative;
  }

  .section_news_tab_list {
    gap: calc(8 / 400 * 100vw);
  }

  .tab_item {
    font-size: calc(15 / 400 * 100vw);
    padding: calc(10 / 400 * 100vw) calc(16 / 400 * 100vw);
  }

  .tab_content:has(.section_news_btn) .section_news_swiper {
    margin-bottom: calc(40 / 400 * 100vw);
  }

  .tab_content {
    padding: calc(23 / 400 * 100vw) 0 0;
  }

  .section_news_contents_list {
    margin-bottom: 0;
    gap: calc(40 / 400 * 100vw);
  }

  .section_news_btn a {
    font-size: calc(16 / 400 * 100vw);
    padding: calc(17 / 400 * 100vw) calc(50 / 400 * 100vw);
  }

  .section_news_btn a::after {
    width: calc(12 / 400 * 100vw);
    right: calc(20 / 400 * 100vw);
  }
}

/* ==============================================
製品サービスセクション
============================================== */

.section_service {
  background: linear-gradient(271deg, #1C50B1 3.92%, #003596 98.09%);
  position: relative;
  z-index: 0;
}

.section_service::before {
  content: "";
  width: 100%;
  aspect-ratio: 1920/80;
  background: linear-gradient(271deg, #1C50B1 3.92%, #003596 98.09%);
  mask-image: url('../img/index/semicircle.svg');
  -webkit-mask-image: url('../img/index/semicircle.svg');
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: -1;
}

.section_service::after {
  content: '';
  width: clamp(500px, 40vw, 760px);
  aspect-ratio: 760/305;
  background: url(../img/index/bg_deco03.webp) no-repeat center center / contain;
  position: absolute;
  top: 9%;
  left: -3%;
  z-index: -1;
}

.section_service_text_area {
  max-width: 855px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 46px;
  position: relative;
  z-index: 0;
}

.section_service_text_area::before {
  content: 'Service';
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: clamp(30rem, 18vw, 33.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, rgba(118, 164, 248, 0.20) 0%, rgba(50, 104, 203, 0.00) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  bottom: -124%;
  left: -30%;
  z-index: -1;
}

.section_service_text {
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 2;
}

.section_service_btn_area {
  display: flex;
  justify-content: center;
  gap: 39px;
  margin-bottom: 110px;
}

.section_service_btn {
  max-width: 337px;
  width: 100%;
}

.section_service_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 100vmax;
  padding: 12px 42px 12px 20px;
  position: relative;
}

.section_service_btn a:hover {
  color: var(--main-color);
  background: #fff;
}

.section_service_btn_arrow {
  display: block;
  width: 25px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}

.section_service_btn a:hover .section_service_btn_arrow {
  background: var(--main-color);
}

.section_service_btn_arrow::after {
  content: '';
  width: 11px;
  aspect-ratio: 1;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: var(--main-color);
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% + 0.5px);
  transform: translate(-50%, -50%) rotate(135deg);
  transition: all 0.3s ease;
}

.section_service_btn a:hover .section_service_btn_arrow::after {
  border-color: #fff;
}

.section_service_contents_area {
  max-width: 1800px;
  width: 95%;
  margin-inline: auto;
  background: #fff;
  border-radius: 15px;
  padding: 80px 0;
  margin-bottom: 50px;
  position: relative;
  z-index: 0;
}

.section_service_contents_area_last {
  margin-bottom: 60px;
}

.section_service_contents_area::before {
  content: '';
  width: clamp(400px, 27vw, 513px);
  aspect-ratio: 513/511;
  background: url(../img/index/bg_deco04.webp) no-repeat center center / cover;
  position: absolute;
  top: 8px;
  left: 7%;
  z-index: -1;
}

.section_service_contents_title_area {
  display: grid;
  grid-template-columns: 127px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 18px 19px;
  margin-bottom: 94px;
}

.section_service_contents_title_number {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  width: 127px;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  background: var(--main-color);
  border-radius: 100vmax;
  padding: 6px 10px;
}

.section_service_contents_title_sub {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  color: var(--main-color);
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.section_service_contents_title {
  grid-row: 2 / 3;
  grid-column: 1 / -1;
  color: #171717;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.section_service_contents_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 38px;
}

.section_service_contents_item {
  width: calc((100% - 38px) / 2);
}

.section_service_contents_item a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.section_service_contents_item_img_area {
  border-radius: 15px;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
}

.section_service_contents_item_img_logo {
  background: #fff;
  border-radius: 4px 0 0 0;
  padding: 20px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.section_service_contents_item_title_area {
  padding-right: 60px;
  position: relative;
}

.section_service_contents_item_title {
  font-size: 2.6rem;
  color: #171717;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 22px;
}

.section_service_contents_item_title_underline {
  display: inline-block;
  border-bottom: 1px solid var(--sub-color);
  padding-bottom: 2px;
}

.section_service_contents_item_arrow {
  width: 50px;
  aspect-ratio: 1;
  background: var(--sub-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}

.section_service_contents_item a:hover .section_service_contents_item_arrow {
  background: #2E2F2F;
}

.section_service_contents_item_arrow::after {
  content: "";
  width: 16px;
  aspect-ratio: 13/11;
  background: url(../img/common/arrow_icon.svg) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section_service_contents_item_text {
  color: #2f2f2f;
  font-weight: 500;
}

.section_service02_contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 767px) {

  .section_service {
    padding: calc(68 / 400 * 100vw) 0 calc(60 / 400 * 100vw);
  }

  .section_service::after {
    width: calc(402 / 400 * 100vw);
    aspect-ratio: 402/306;
    background: url(../img/index/bg_deco03_sp.webp) no-repeat center center / contain;
    top: calc(60 / 400 * 100vw);
    left: 0;
  }

  .section_service_text_area {
    margin-bottom: calc(29 / 400 * 100vw);
  }

  .section_service_text_area::before {
    font-size: calc(127 / 400 * 100vw);
    bottom: calc(-226 / 400 * 100vw);
    left: calc(-26 / 400 * 100vw);
  }

  .section_service_text {
    text-align: left;
    font-size: calc(16 / 400 * 100vw);
  }

  .section_service_btn_area {
    flex-direction: column;
    align-items: center;
    gap: calc(16 / 400 * 100vw);
    margin-bottom: calc(34 / 400 * 100vw);
  }

  .section_service_btn {
    max-width: calc(337 / 400 * 100vw);
  }

  .section_service_btn a {
    font-size: calc(16 / 400 * 100vw);
    padding: calc(17 / 400 * 100vw) calc(42 / 400 * 100vw) calc(17 / 400 * 100vw) calc(20 / 400 * 100vw);
  }

  .section_service_btn_arrow {
    width: calc(25 / 400 * 100vw);
    right: calc(17 / 400 * 100vw);
  }

  .section_service_btn_arrow::after {
    width: calc(11 / 400 * 100vw);
  }

  .section_service_contents_area::before {
    content: none;
  }

  .section_service_contents_area {
    padding: calc(40 / 400 * 100vw) 0;
    margin-bottom: calc(50 / 400 * 100vw);
  }

  .section_service_contents_area_last {
    margin-bottom: calc(40 / 400 * 100vw);
  }

  .section_service_contents_title_area {
    grid-template-columns: calc(82 / 400 * 100vw) 1fr;
    gap: calc(14 / 400 * 100vw);
    margin-bottom: calc(26 / 400 * 100vw);
  }

  .section_service_contents_title_number {
    width: calc(82 / 400 * 100vw);
    font-size: calc(18 / 400 * 100vw);
    padding: calc(4 / 400 * 100vw) calc(8 / 400 * 100vw);
  }

  .section_service_contents_title_sub {
    display: none;
  }

  .section_service_contents_title {
    font-size: calc(27 / 400 * 100vw);
    letter-spacing: 0.04em;
  }

  .section_service_contents_list {
    flex-direction: column;
    gap: calc(40 / 400 * 100vw);
  }

  .section_service_contents_item {
    width: 100%;
  }

  .section_service_contents_item_img_area {
    border-radius: calc(15 / 400 * 100vw);
    margin-bottom: calc(10 / 400 * 100vw);
  }

  .section_service_contents_item_img_logo {
    background: #fff;
    border-radius: calc(4 / 400 * 100vw) 0 0 0;
    padding: calc(14 / 400 * 100vw) calc(14 / 400 * 100vw);
  }

  .section_service_contents_item_img_logo img {
    zoom: 0.6;
  }

  .section_service_contents_item_title_area {
    padding-right: calc(40 / 400 * 100vw);
  }

  .section_service_contents_item_title {
    font-size: calc(15 / 400 * 100vw);
    margin-bottom: calc(14 / 400 * 100vw);
  }

  .section_service_contents_item_title_underline {
    border-bottom: calc(1 / 400 * 100vw) solid var(--sub-color);
    padding-bottom: calc(2 / 400 * 100vw);
  }

  .section_service_contents_item_arrow {
    width: calc(28 / 400 * 100vw);
  }

  .section_service_contents_item_arrow::after {
    width: calc(9 / 400 * 100vw);
  }

  .section_service02_contents {
    flex-direction: column;
    gap: 0;
  }
}

/* ==============================================
会社案内セクション
============================================== */

.section_company {
  background: #fff;
  position: relative;
  z-index: 0;
}

.section_company::before {
  content: "";
  width: 100%;
  aspect-ratio: 1920/80;
  background: #fff;
  mask-image: url('../img/index/semicircle.svg');
  -webkit-mask-image: url('../img/index/semicircle.svg');
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: -1;
}

.section_company_deco {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.section_company_deco::after {
  content: '';
  width: clamp(500px, 40vw, 760px);
  aspect-ratio: 760/305;
  background: url(../img/index/bg_deco06.webp) no-repeat center top / cover;
  opacity: 0.14;
  position: absolute;
  top: 17%;
  right: -9%;
  z-index: -1;
}

.section_title02_area:has(.section_company_title) {
  margin-bottom: 118px;
}

.section_company_title {
  position: relative;
}

.section_company_title::after {
  content: 'COMPANY';
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: clamp(15rem, 14vw, 19.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, rgba(118, 164, 248, 0.20) 0%, rgba(50, 104, 203, 0.00) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: calc(100% - 20px);
  left: -10px;
  z-index: -1;
}

.section_company_contents_area {
  display: flex;
  align-items: center;
  gap: 90px;
}

.section_company_img {
  max-width: 666px;
  width: 50%;
}

.section_company_contents {
  flex: 1;
}

.section_company_contents_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 33px;
}

.section_company_contents_item a {
  display: flex;
  align-items: center;
  gap: 26px;
  text-decoration: none;
  color: #171717;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0 0 14px 0 #EEF5F6;
  padding: 19px 10px 19px 20px;
}

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

.section_company_contents_item_title {
  flex: 1;
}

.section_company_contents_item_arrow {
  width: 42px;
  aspect-ratio: 1;
  background: #EAEFF3;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.section_company_contents_item a:hover .section_company_contents_item_arrow {
  background: var(--sub-color);
}

.section_company_contents_item_arrow::after {
  content: '';
  width: 13px;
  aspect-ratio: 12/11;
  background: #2A2A2A;
  mask-image: url('../img/common/arrow_icon.svg');
  -webkit-mask-image: url('../img/common/arrow_icon.svg');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.section_company_contents_item a:hover .section_company_contents_item_arrow::after {
  background: #fff;
}

@media (max-width: 1024px) {

  .section_company_contents_area {
    flex-direction: column;
  }

  .section_company_img {
    width: 100%;
  }

  .section_company_contents {
    max-width: 666px;
    width: 100%;
  }
}

@media (max-width: 767px) {

  .section_company_deco::after {
    content: none;
  }

  .section_title02_area:has(.section_company_title) {
    margin-bottom: calc(8 / 400 * 100vw);
  }

  .section_company_title::after {
    font-size: calc(77 / 400 * 100vw);
    top: calc(100% - (31 / 400 * 100vw));
    left: calc(10 / 400 * 100vw);
  }

  .section_company_contents_area {
    gap: calc(23 / 400 * 100vw);
  }

  .section_company_contents_list {
    gap: calc(12 / 400 * 100vw);
    margin-bottom: calc(29 / 400 * 100vw);
  }

  .section_company_contents_item a {
    gap: calc(26 / 400 * 100vw);
    font-size: calc(20 / 400 * 100vw);
    border-radius: calc(5 / 400 * 100vw);
    padding: calc(12 / 400 * 100vw) calc(12 / 400 * 100vw) calc(12 / 400 * 100vw) calc(20 / 400 * 100vw);
  }

  .section_company_contents_item_icon {
    width: calc(19 / 400 * 100vw);
  }

  .section_company_contents_item_icon img {
    width: 100%;
  }

  .section_company_contents_item_title {
    font-size: calc(16 / 400 * 100vw);
  }

  .section_company_contents_item_arrow {
    width: calc(42 / 400 * 100vw);
  }

  .section_company_contents_item_arrow::after {
    width: calc(13 / 400 * 100vw);
  }
}

/* ==============================================
採用情報セクション
============================================== */

.section_recruit_area {
  background: url(../img/index/recruit_img.webp) no-repeat center center / cover;
  border-radius: 10px;
  padding: 165px 40px 100px;
}

.section_recruit_area .section_title02_area {
  margin-bottom: 0;
}

.section_recruit_title_en {
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: clamp(14rem, 14vw, 19.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, rgba(118, 164, 248, 0.80) 0%, rgba(50, 104, 203, 0.00) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.section_recruit_text_area {
  max-width: 1135px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 40px;
}

.section_recruit_text {
  color: #fff;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 767px) {

  .section_recruit {
    padding: 0 0 calc(36 / 400 * 100vw);
  }

  .section_recruit_area {
    background: url(../img/index/recruit_img.webp) no-repeat center center / cover;
    border-radius: calc(10 / 400 * 100vw);
    padding: calc(70 / 400 * 100vw) calc(20 / 400 * 100vw) calc(50 / 400 * 100vw);
  }

  .section_recruit_area .section_title02_area {
    margin-bottom: 0;
  }

  .section_recruit_title_en {
    font-size: calc(72 / 400 * 100vw);
    margin-top: calc(-40 / 400 * 100vw);
  }

  .section_recruit_text_area {
    margin-bottom: calc(40 / 400 * 100vw);
  }

  .section_recruit_text {
    font-size: calc(16 / 400 * 100vw);
    text-align: left;
  }
}
