/* =========================
  ROOT / COMMON
========================= */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}
:root {
  --aibi-color-main: #ee9988;
  --aibi-color-orange: #f26b2f;
  --aibi-color-text: #111;
  --aibi-color-gray: #666;
  --aibi-color-gray-text: #b3b3b3;
  --aibi-color-bg-gray: #e9e9e9;
  --aibi-color-bg-gray-dark: #d9d9d9;

  --aibi-inner: 1100px;
  --aibi-inner-wide: 1200px;
  --aibi-width: 100%;
  --aibi-sp-width: calc(100% - 32px);

  --aibi-title-size: 42px;
  --aibi-title-size-sp: 32px;
  --aibi-title-weight: 600;
  --aibi-title-en-size: 22px;
  --aibi-title-en-size-sp: 18px;

  --aibi-btn-width: 180px;
  --aibi-btn-height: 58px;
  --aibi-btn-font-size: 16px;
  --aibi-radius-pill: 999px;

  --aibi-line-color: #666;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--aibi-color-text);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  background: #fff;
}
a{
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.19, 0.865, 0.295, 1);
}
a:hover{
  opacity: 0.6;
}

img {
  max-width: 100%;
}
.pc{display: block!important;}
.sp{display: none!important;}
@media screen and (max-width:767px) {
  .pc{display: none!important;}
  .sp{display: block!important;}
}
/*パララックス設定*/
[data-aibi-parallax] {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
  [data-aibi-parallax] {
    transform: none !important;
  }
}
.aibi-parallax-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.2;
}

.aibi-parallax-img img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: calc(100% + 18%);
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0,0,0);
}

@media (max-width: 768px) {
  .aibi-parallax-img img {
    height: auto;
    transform: none !important;
  }
}
/* =========================
  COMMON INNER
========================= */

.aibi-concept__inner,
.aibi-service__inner,
.aibi-service-more__inner,
.aibi-news__inner,
.aibi-model__inner,
.aibi-voice__inner,
.aibi-column__inner,
.aibi-about__inner {
  width: var(--aibi-width);
  max-width: var(--aibi-inner);
  margin-inline: auto;
}

.aibi-works__inner {
  width: 100%;
  max-width: var(--aibi-inner-wide);
  margin-inline: auto;
}

/* =========================
  COMMON SECTION TITLE
========================= */

.aibi-service__title h2,
.aibi-works__title h2,
.aibi-model__title h2,
.aibi-about__title h2,
.aibi-news__title-main h2,
.aibi-voice__title h2,
.aibi-column__title h2 {
  margin: 0;
  font-size: var(--aibi-title-size);
  font-weight: var(--aibi-title-weight);
  line-height: 1;
}

.aibi-service__title h2 span,
.aibi-works__title h2 span,
.aibi-model__title h2 span,
.aibi-about__title h2 span,
.aibi-news__title-main h2 em,
.aibi-voice__title h2 span,
.aibi-column__title h2 span,
.aibi-section-title h2 span {
  color: var(--aibi-color-main);
  font-style: normal;
}

.aibi-service__title i,
.aibi-works__title i,
.aibi-model__title i,
.aibi-about__title i,
.aibi-news__title-main i,
.aibi-section-title i {
  height: 1px;
  background: var(--aibi-line-color);
}

.aibi-service__title em,
.aibi-works__title em,
.aibi-model__title em,
.aibi-about__title em,
.aibi-voice__title p,
.aibi-column__title p,
.aibi-news__title > span {
  color: var(--aibi-color-gray-text);
  font-size: var(--aibi-title-en-size);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

/* 左タイトル型 voice / column */
.aibi-voice__title h2,
.aibi-column__title h2 {
  width: fit-content;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--aibi-line-color);
  margin-bottom: 30px;
}

/* =========================
  COMMON BUTTON
========================= */

.aibi-btn,
.aibi-works__more a,
.aibi-news__more a,
.aibi-voice__more a,
.aibi-column__more a {
  width: var(--aibi-btn-width);
  height: var(--aibi-btn-height);
  border-radius: var(--aibi-radius-pill);
  background: var(--aibi-color-main);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: var(--aibi-btn-font-size);
  font-weight: 800;
}

.aibi-btn {
  height: 38px;
  gap: 14px;
  font-size: 15px;
  margin: auto;
}

.aibi-works__more span,
.aibi-news__more span,
.aibi-voice__more span,
.aibi-column__more span {
  width: 20px;
  line-height: 1;
}

/* 丸矢印ボタン */
.aibi-btn span {
  position: relative;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.aibi-btn span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 11px;
  width: 15px;
  height: 1px;
  background: #fff;
}

.aibi-btn span::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media (max-width: 1100px) {
  .aibi-concept__inner,
  .aibi-service__inner,
  .aibi-service-more__inner,
  .aibi-news__inner,
  .aibi-model__inner,
  .aibi-voice__inner,
  .aibi-column__inner,
  .aibi-about__inner,
  .aibi-works__inner {
    width: var(--aibi-sp-width);
  }

  .aibi-service__title h2,
  .aibi-works__title h2,
  .aibi-model__title h2,
  .aibi-about__title h2,
  .aibi-voice__title h2,
  .aibi-column__title h2 {
    font-size: var(--aibi-title-size-sp);
  }

  .aibi-service__title em,
  .aibi-works__title em,
  .aibi-model__title em,
  .aibi-about__title em,
  .aibi-voice__title p,
  .aibi-column__title p,
  .aibi-news__title > span {
    font-size: var(--aibi-title-en-size-sp);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #111;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  background: #fff;
}

.aibi-header {
  height: 108px;
  display: grid;
  grid-template-columns: auto 1fr 116px;
  align-items: stretch;
  padding: 0 5rem;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .18);
  position: sticky;
  top: 0;
  z-index: 100;
}

.aibi-header__logo {
  display: flex;
  align-items: center;
}

.aibi-header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  max-width: 200px;
}
.aibi-header__logo img{
  width: 100%;
}

.aibi-header__body {
  display: grid;
  grid-template-rows: 58px 50px;
  min-width: 0;
}

.aibi-header__top {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 42px;
  padding-right: 30px;
}

.aibi-subnav ul {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aibi-subnav a {
  color: #111;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.aibi-header__tel {
  text-align: center;
  white-space: nowrap;
}

.aibi-header__tel span {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.aibi-header__tel strong {
  display: block;
  font-size: 30px;
  letter-spacing: .04em;
  line-height: 1;
}

.aibi-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 30px;
}

.aibi-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 46px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aibi-nav a {
  color: #111;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.aibi-header__tel a{
  color: #111;
  text-decoration: none;
}

.aibi-line {
  height: 105px;
  background: #ee9988;
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 0 0 16px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-top: -4px;
}

.aibi-line img {
  width: 100%;
  max-width: 60px;
}

/* MV */
.aibi-mv {
  padding: 30px 0 80px;
}

.aibi-mv__inner {
  width: 95%;
  margin: 0 auto;
}

.aibi-mv-swiper {
  position: relative;
  height: 665px;
  overflow: visible;
}

.aibi-mv-swiper .swiper-wrapper {
  height: 100%;
  overflow: hidden;
  background: #eee;
  /* filter: brightness(0.7); */
}

.aibi-mv-swiper .swiper-slide {
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.aibi-mv__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eee;
}

.aibi-mv__img-inner {
  width: 100%;
  height: 100%;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform;
  backface-visibility: hidden;
}
.swiper-slide.is-zooming .aibi-mv__img-inner {
  transform: scale(1.15);
  transition: transform 9000ms linear;
}

.aibi-mv__copy {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(1px 1px 3px black);
}

.aibi-mv__vertical {
  position: absolute;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 27px;
  font-weight: 500;
  line-height: 3.5;
  letter-spacing: .16em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .22);
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: fit-content;
  height: fit-content;
}

.aibi-mv__vertical--01 {
  right: 42%;
  top: 29%;
}

.aibi-mv__vertical--02 {
  right: 47%;
  top: 29%;
}

.aibi-mv__vertical--03 {
  right: 53%;
  top: 29%;
}

.aibi-mv__bottom {
  position: absolute;
  right: 0;
  bottom: -33px;
  z-index: 6;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.aibi-mv__bottom p {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.aibi-mv__bottom strong {
  display: block;
  color: #ee9988;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .8;
  letter-spacing: .03em;
}

/* SP */
.aibi-hamburger {
  display: none;
}
.aibi-spnav {
  display: none;
}
@media (max-width: 1100px) {

  .aibi-header {
    grid-template-columns: 1fr auto auto;
    gap: 0;
    height: 78px;
    padding-left: 20px;
    padding-right: 0 !important;
  }

  .aibi-header__body,
  .aibi-nav,
  .aibi-subnav,
  .aibi-header__tel {
    display: none;
  }

  .aibi-header__logo img {
    width: 150px;
    height: auto;
  }

  .aibi-hamburger {
    position: relative;
    width: 78px;
    height: 78px;
    border: 0;
    background: #fff;
    display: block;
    cursor: pointer;
    padding: 0;
  }

  .aibi-hamburger span {
    position: absolute;
    left: 50%;
    width: 28px;
    height: 2px;
    background: #111;
    transform: translateX(-50%);
    transition: .3s;
  }

  .aibi-hamburger span:nth-child(1) {
    top: 28px;
  }

  .aibi-hamburger span:nth-child(2) {
    top: 38px;
  }

  .aibi-hamburger span:nth-child(3) {
    top: 48px;
  }

  .aibi-hamburger.is-open span:nth-child(1) {
    top: 38px;
    transform: translateX(-50%) rotate(45deg);
  }

  .aibi-hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .aibi-hamburger.is-open span:nth-child(3) {
    top: 38px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .aibi-line {
    width: 78px;
    height: 78px;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    font-size: 10px;
    gap: 4px;
  }

  .aibi-line img {
    width: 42px;
    height: auto;
  }

  .aibi-spnav {
    display: block;
    position: fixed;
    inset: 78px 0 0;
    background: rgba(255,255,255,.98);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    overflow-y: auto;
    pointer-events: none;
  }

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

  .aibi-spnav nav {
    padding: 32px 24px 100px;
    pointer-events: auto;
  }

  .aibi-spnav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .aibi-spnav li {
    border-bottom: 1px solid #ddd;
  }

  .aibi-spnav a {
    display: block;
    padding: 18px 0;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
  }
}


/* =========================

  イントロ

========================= */
.aibi-btn {
  width: var(--aibi-btn-width);
  height: var(--aibi-btn-height);
  border-radius: 999px;
  background: #ee9988;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  margin: auto;
}

.aibi-btn span {
  position: relative;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.aibi-btn span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 11px;
  width: 15px;
  height: 1px;
  background: #fff;
}

.aibi-btn span::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/* concept */
.aibi-concept {
  padding: 95px 0 78px;
}

.aibi-concept__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 550px 1fr;
  column-gap: 70px;
  align-items: start;
}

.aibi-concept__image {
  margin: 0;
}

.aibi-concept__image img {
  width: 100%;
  height: auto;
  display: block;
}

.aibi-concept__textArea {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 0;
  align-items: start;
}

.aibi-concept__label {
  writing-mode: vertical-rl;
  color: #999;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: -26px;
}


.aibi-concept__label i {
  width: 1px;
  height: 68px;
  background: #999;
  display: block;
  flex-shrink: 0;
}

.aibi-concept__label em {
  font-style: normal;
}

.aibi-concept__body {
  display: grid;
  justify-items: center;
}

.aibi-concept__body p {
  writing-mode: vertical-rl;
  margin: 0;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 2.05;
  letter-spacing: .12em;
}

.aibi-concept__body .aibi-btn {
  margin-top: 38px;
  margin-left: 20px;
}

/* service */
.aibi-service {
  padding: 0 0 110px;
}

.aibi-service__inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
}

.aibi-service__title {
  width: 735px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 14px;
  margin: 0 0 72px;
}

.aibi-service__title h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .07em;
}

/* common card */
.aibi-service-item {
  position: relative;
}

.aibi-service-item__img {
  margin: 0;
  position: relative;
  z-index: 2;
}

.aibi-service-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aibi-service-item__box {
  background: #e9e9e9;
  position: relative;
}

.aibi-service-item__head {
  display: grid;
  grid-template-columns: 72px 78px;
  column-gap: 10px;
  align-items: start;
}

.aibi-service-item__head p {
  margin: 0;
  color: #ee9988;
  font-size: 56px;
  font-weight: 900;
  line-height: .9;
}

.aibi-service-item__head div {
  writing-mode: vertical-rl;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.aibi-service-item__head h3 {
  margin: 0;
  padding-left: 13px;
  border-left: 1px solid #999;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .14em;
}

.aibi-service-item__head span {
  color: #777;
  font-size: 14px;
  font-weight: 700;
}

.aibi-service-item__text p {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
}

.aibi-service-item__text h4 {
  margin: 0 0 8px;
  color: #ee9988;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
}
/* =========================
  SERVICE 01 修正版
========================= */


.aibi-service01 {
  width: 100%;
  max-width: 1100px;
  height: 570px;
  margin: 0 auto 110px;
  position: relative;
}

/* 左画像 */
.aibi-service01__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 550px;
  height: 500px;
  margin: 0;
  z-index: 2;
}

.aibi-service01__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* グレーBOX */
.aibi-service01__box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 760px;
  height: 470px;
  background: #e9e9e9;
}

/* 見出しブロック：BOX基準で配置 */
.aibi-service01__head {
  position: absolute;
  right: 45%;
  top: -30%;
  display: block;
}

.aibi-service01__num {
  margin: 0 0 10px;
  color: #ee9988;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  margin-left: -0.3em;
  font-family: sans-serif;
}
.aibi-service01__num sup{
      font-size: 2rem;
}

.aibi-service01__title {
  position: relative;
  writing-mode: vertical-rl;
  padding-left: 10px;
  border-left: 1px solid #999;
}

.aibi-service01__title h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.3em;
}

.aibi-service01__title span {
  position: absolute;
  right: -24px;
  top: 0;
  color: #7f8080;
  font-size: 14px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

/* 本文 */
.aibi-service01__text {
  position: absolute;
  left: 35%;
  width: auto;
  bottom: 10%;
}

.aibi-service01__text p {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.75;
}

.aibi-service01__text h4 {
  margin: 0 0 8px;
  color: #ee9988;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.25;
}

.aibi-service01__text .aibi-btn {
  margin-top: 30px!important;
  margin: auto;
}
/* =========================
  SERVICE 02
========================= */

.aibi-service02 {
  width: 100%;
  max-width: 1100px;
  height: 820px;
  margin: 0 auto 110px;
  position: relative;
}

/* グレーBOX */
.aibi-service02__box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 840px;
  height: 720px;
  background: #e9e9e9;
}

/* 右画像 */
.aibi-service02__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 550px;
  height: 500px;
  margin: 0;
  z-index: 2;
}

.aibi-service02__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 見出し */
.aibi-service02__head {
  position: absolute;
  left: 40%;
  top: -20%;
  display: block;
}

.aibi-service02__num {
  margin: 0 0 10px;
  color: #ee9988;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  margin-left: -0.3em;
  font-family: sans-serif;
}
.aibi-service02__num sup{
      font-size: 2rem;
}

.aibi-service02__title {
  position: relative;
  writing-mode: vertical-rl;
  padding-left: 10px;
  border-left: 1px solid #999;
}

.aibi-service02__title h3 {
  margin: 0;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.1em;
}

.aibi-service02__title span {
  position: absolute;
  right: -24px;
  top: 0;
  color: #7f8080;
  font-size: 14px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

/* 本文 */
.aibi-service02__text {
  position: absolute;
  left: 95px;
  bottom: 10%;
  width: auto;
}

.aibi-service02__text p {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.75;
}

.aibi-service02__text h4 {
  margin: 0 0 8px;
  color: #ee9988;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.25;
}

.aibi-service02__text .aibi-btn {
  margin: 30px auto 0!important;
}


@media (max-width: 1100px) {

  /* =========================
    Concept SP
  ========================= */

  .aibi-concept {
    padding: 64px 0 58px;
  }

  .aibi-concept__inner {
    width: calc(100% - 32px);
    display: block;
  }

  .aibi-concept__image img {
    width: 100%;
    height: auto;
  }

  .aibi-concept__textArea {
    width: 100%;
  }

  .aibi-concept__label {
    font-size: 110%;
  }


  .aibi-concept__body .aibi-btn {
    margin-top: 26px;
    margin-left: auto;
  }

  /* =========================
    Service Common SP
  ========================= */

  .aibi-service {
    padding-bottom: 0px;
  }

  .aibi-service__inner {
    width: calc(100% - 32px);
  }

  .aibi-service__title {
    width: 100%;
    margin-bottom: 42px;
  }

  .aibi-service__title h2 {
    font-size: 35px;
  }

  /* =========================
    Service 01 SP
  ========================= */

  .aibi-service01 {
    width: 100%;
    height: auto;
    margin: 0 auto 70px;
    position: relative;
  }

  .aibi-service01__image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin: 0;
    z-index: 2;
  }

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

  .aibi-service01__box {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin: 0px 0 0 auto;
    padding: 30px 22px 30px;
    background: unset!important;
  }

  .aibi-service01__head {
    position: static;
    display: flex;
    margin-bottom: 24px;
    align-items: end;
    gap: 15px;
  }

  .aibi-service01__num {
    margin: 0 0 8px;
    margin-left: 0;
    font-size: 52px;
    line-height: 1;
  }

  .aibi-service01__title {
    writing-mode: horizontal-tb;
    padding-left: 0;
    padding-bottom: 10px;
    border-left: 0;
    border-bottom: unset;
    display: flex;
    flex-wrap: wrap-reverse;
  }

  .aibi-service01__title h3 {
    font-size: 28px;
    letter-spacing: .08em;
    line-height: 1.2;
    width: 100%;
  }

  .aibi-service01__title span {
    position: static;
    display: block;
    margin-top: 6px;
    writing-mode: horizontal-tb;
    font-size: 13px;
  }

  .aibi-service01__text {
    position: static;
    width: auto;
  }

  .aibi-service01__text p {
    font-size: 15px;
    line-height: 1.75;
  }

  .aibi-service01__text h4 {
    font-size: 24px;
  }

  .aibi-service01__text .aibi-btn {
    margin-left: 0;
  }

  /* =========================
    Service 02 SP
  ========================= */

  .aibi-service02 {
    width: 100%;
    height: auto;
    margin: 0 auto 70px;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
  }

  .aibi-service02__image {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin: 0;
    z-index: 2;
  }

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

  .aibi-service02__box {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin: 0px 0 0 auto;
    padding: 30px 12px 30px;
    background: unset!important;
  }

  .aibi-service02__head {
    position: static;
    display: flex;
    margin-bottom: 24px;
    align-items: end;
    gap: 15px;
  }

  .aibi-service02__num {
    margin: 0 0 8px;
    margin-left: 0;
    font-size: 52px;
    line-height: 1;
  }

  .aibi-service02__title {
    writing-mode: horizontal-tb;
    padding-left: 0;
    padding-bottom: 10px;
    border-left: 0;
    border-bottom: unset;
    display: flex;
    flex-wrap: wrap-reverse;
  }

  .aibi-service02__title h3 {
    font-size: 28px;
    letter-spacing: .08em;
    line-height: 1.2;
    width: 100%;
  }

  .aibi-service02__title span {
    position: static;
    display: block;
    margin-top: 6px;
    writing-mode: horizontal-tb;
    font-size: 13px;
  }

  .aibi-service02__text {
    position: static;
    width: auto;
  }

  .aibi-service02__text p {
    font-size: 15px;
    line-height: 1.75;
  }

  .aibi-service02__text h4 {
    font-size: 24px;
  }

  .aibi-service02__text .aibi-btn {
    margin-left: 0!important;
  }
}

/* =========================
  SERVICE 03 / 04
========================= */

.aibi-service-more {
  padding: 10px 0 90px;
}

.aibi-service-more__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
}

.aibi-service-mini {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 34px;
  align-items: start;
}

.aibi-service-mini__head {
  display: block;
}

.aibi-service-mini__num {
  margin: 0 0 12px;
  color: #ee9988;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  margin-left: -0.3em;
  font-family: sans-serif;
}

.aibi-service-mini__title {
  position: relative;
  writing-mode: vertical-rl;
  padding-left: 0;
  padding-bottom: 235px;
  border-left: 0;
}

.aibi-service-mini__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 215px;
  background: #999;
  transform: translateX(-50%);
}
.aibi-service-mini--03 .aibi-service-mini__title {
  padding-bottom: 245px;
}

.aibi-service-mini--03 .aibi-service-mini__title::after {
  height: 225px;
}

.aibi-service-mini--04 .aibi-service-mini__title {
  padding-bottom: 90px;
}

.aibi-service-mini--04 .aibi-service-mini__title::after {
  height: 80px;
}
.aibi-service-mini__title h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .18em;
}

.aibi-service-mini__title span {
  position: absolute;
  right: -25px;
  top: 0;
  color: #7f8080;
  font-size: 14px;
  font-weight: 700;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.aibi-service-mini__image {
  margin: 8px 0 0;
}

.aibi-service-mini__image img {
  width: 100%;
  aspect-ratio: 1 / 1.35;
  object-fit: cover;
  display: block;
}

.aibi-service-mini__text {
  grid-column: 1 / 3;
  margin-top: 26px;
}

.aibi-service-mini__text p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .02em;
}

.aibi-service-mini__text .aibi-btn {
  margin-top: 24px;
  margin-left: 90px;
}

@media (max-width: 1100px) {
  .aibi-service-more {
    padding: 0;
  }

  .aibi-service-more__inner {
    width: calc(100% - 32px);
    display: block;
  }

  .aibi-service-mini {
    display: block;
    margin-bottom: 64px;
  }

  .aibi-service-mini__head {
    margin-bottom: 20px;
  }
  .aibi-service-mini__head.sp{
    display: flex!important;
    align-items: end;
    gap: 15px;
    padding: 30px 22px 0;
  }

  .aibi-service-mini__num {
    font-size: 52px;
    margin-bottom: 0px;
    margin-left: 0;
  }

  .aibi-service-mini__title {
    writing-mode: horizontal-tb;
    padding-left: 0;
    padding-bottom: 10px;
    border-left: 0;
    border-bottom: unset;
    display: flex;
    flex-wrap: wrap-reverse;
    padding-bottom: 0 !important;
  }
  .aibi-service-mini__title::after{
    content: unset;
  }


  .aibi-service-mini__title h3 {
    font-size: 28px;
    letter-spacing: .08em;
  }

  .aibi-service-mini__title span {
    position: static;
    display: block;
    margin-top: 6px;
    writing-mode: horizontal-tb;
    font-size: 13px;
    width: 100%;
  }

  .aibi-service-mini__image {
    margin: 0;
  }

  .aibi-service-mini__image img {
    aspect-ratio: auto;
    width: 100%;
    height: auto;
    max-height: 350px;
  }

  .aibi-service-mini__text {
    margin-top: 22px;
    padding: 0px 22px 30px;
  }

  .aibi-service-mini__text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .aibi-service-mini__text .aibi-btn {
    margin: 30px 0 0;
  }
}

/* =========================
  施工事例
========================= */
.aibi-works {
  padding: 80px 0 70px;
  background: #fff;
}

.aibi-works__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.aibi-works__title {
  display: grid;
  grid-template-columns: auto 220px auto;
  align-items: center;
  column-gap: 18px;
  width: fit-content;
  margin: 0 0 100px 50px;
}
.aibi-works__slider.swiper.js-aibi-works-swiper {
    overflow: unset;
}

.aibi-works__title h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
}

.aibi-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
}

.aibi-works-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.aibi-works-card a {
  position: relative;
}
.aibi-works-card__img {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.aibi-works-card__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .3s ease;
  vertical-align: bottom;
}
.aibi-works-card__img:hover img {
  transform: scale(1.1);
}
.aibi-works-card a figcaption {
    position: absolute;
    left: 0;
    top: -36px;
    min-width: 100px;
    height: auto;
    padding: 10px;
    background: #d4eef8;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    z-index: 2;
}

.aibi-works__more {
  margin-top: 48px;
  text-align: center;
}

.aibi-works__more a {
  width: var(--aibi-btn-width);
  height: var(--aibi-btn-height);
  border-radius: 999px;
  background: #ee9988;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.aibi-works__more span {
  font-size: 17px;
  line-height: 1;
  width: 20px;
}

.aibi-works__empty {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .aibi-works {
    padding: 60px 0;
    overflow: hidden;
  }

  .aibi-works__inner {
    width: calc(100% - 32px);
  }

  .aibi-works__title {
    grid-template-columns: auto 1fr auto;
    width: 100%;
    margin: 0 0 44px;
    column-gap: 14px;
  }

  .aibi-works__title h2 {
    font-size: 35px;
  }

  .aibi-works__title i {
    min-width: 60px;
  }

  .aibi-works__title em {
    font-size: 18px;
  }

  .aibi-works__list {
    grid-template-columns: 1fr;
    row-gap: 46px;
  }

  .aibi-works-card__img figcaption {
    top: -28px;
    height: 52px;
    min-width: 84px;
    padding: 10px 20px 0;
    font-size: 20px;
  }

  .aibi-works__more {
    margin-top: 38px;
  }

  .aibi-works__slider {
    width: 100%;
    max-width: none;
    margin-top: 100px;
  }

  .aibi-works__list {
    display: flex;
    column-gap: 0!important;
    row-gap: 0!important;
  }

  .aibi-works-card {
    width: auto;
    flex-shrink: 0;
  }

  .aibi-works-card__img img {
                min-height: 200px;
        max-height: 450px;
        height: auto;
    /* height: 200px; */
    object-fit: cover;
  }
}
@media screen and (max-width:767px) {

  .aibi-works-card__img img {
    height: 200px;
    object-fit: cover;
  }
}


/* =========================
  NEWS
========================= */

.aibi-news {
  padding: 90px 0 80px;
}

.aibi-news__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  column-gap: 5vw;
  align-items: stretch;
}

/* LEFT */

.aibi-news__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aibi-news__title > span {
  display: block;
  margin: 0 0 12px;
  color: #777;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.aibi-news__title-main {
  display: grid;
  grid-template-columns: auto 90px;
  column-gap: 16px;
  align-items: end;
}

.aibi-news__title-main h2 {
  margin: 0;
  white-space: nowrap;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .03em;
  border-bottom: solid 1px;
  padding-bottom: 20px;
}

.aibi-news__title-main h2 em {
  color: #ee9988;
  font-style: normal;
}

.aibi-news__title-main i {
  width: 90px;
  height: 1px;
  background: #999;
  margin-bottom: 7px;
}

/* MORE */

.aibi-news__more a {
  width: var(--aibi-btn-width);
  height: var(--aibi-btn-height);
  border-radius: 999px;
  background: #ee9988;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
}

.aibi-news__more span {
  font-size: 15px;
  line-height: 1;
  width: 20px;
}

/* LIST */

.aibi-news__list {
  border-top: 1px solid #999;
}

.aibi-news-item {
  border-bottom: 1px solid #999;
}

.aibi-news-item a {
  display: grid;
  grid-template-columns: 165px 1fr;
  column-gap: 44px;
  padding: 14px 0 36px;
  min-height: 155px;
  color: inherit;
  text-decoration: none;
}

.aibi-news-item__meta {
  display: contents;
}

.aibi-news-item__meta time {
  grid-column: 1;
  grid-row: 1;
  color: #666;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.aibi-news-item__meta span {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  padding-left: 48px;
  color: #f26b2f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.aibi-news-item__meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 24px;
  height: 1px;
  background: #f26b2f;
}

.aibi-news-item__body {
  grid-column: 2;
  grid-row: 2;
  padding-top: 30px;
}

.aibi-news-item__body h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: .02em;
}
/* SP */

@media (max-width: 1100px) {
  .aibi-news {
    padding: 64px 0 70px;
  }

  .aibi-news__inner {
    width: calc(100% - 32px);
    display: block;
  }

  .aibi-news__left {
    min-height: auto;
    display: flex;
    margin-bottom: 20px;
    flex-direction: row;
  }

  .aibi-news__title-main {
    grid-template-columns: auto 10px;
  }

  .aibi-news__title-main h2 {
    font-size: 35px;
  }

  .aibi-news__more {
    margin-top: 28px;
  }

  .aibi-news__more a{
    width: 120px;
    height: 50px;
  }
  .aibi-news-item a {
    display: block;
    min-height: 0;
    padding: 22px 0 26px;
  }

  .aibi-news-item__meta {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 14px;
  }

  .aibi-news-item__meta time,
  .aibi-news-item__meta span {
    font-size: 15px;
  }

  .aibi-news-item__meta span {
    padding-left: 32px;
  }

  .aibi-news-item__meta span::before {
    width: 18px;
  }

  .aibi-news-item__body {
    padding-top: 0;
  }

  .aibi-news-item__body h3 {
    font-size: 18px;
  }
}


/* =========================
  MODEL HOUSE
========================= */

.aibi-model {
  padding: 95px 0 90px;
}

.aibi-model__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* TITLE */

.aibi-model__title {
  display: grid;
  grid-template-columns: auto 200px auto;
  align-items: center;
  column-gap: 18px;
  width: fit-content;
  margin: 0 0 56px;
}

.aibi-model__title h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .03em;
}

/* WRAP */

.aibi-model__wrap {
  position: relative;
  height: 550px;
}

/* IMAGE */

.aibi-model__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 550px;
  margin: 0;
  z-index: 2;
}

.aibi-model__image img {
  width: 100%;
  display: block;
}

/* BOX */

.aibi-model__box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1000px;
  height: 500px;
  background: #d9d9d9;
}

/* CONTENT */

.aibi-model__content {
  width: 500px;
  margin-left: auto;
  padding: 52px 55px 52px 0px;
}

.aibi-model__content h3 {
  margin: 0 0 30px;
  color: #f26b2f;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.4;
}

.aibi-model__content p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: .02em;
}

.aibi-model__content .aibi-btn {
  margin-top: 34px;
}

/* GREEN BANNER */

.aibi-model__banner {
  position: absolute;
  left: 34px;
  bottom: 52px;
  padding: 20px;
  width: auto;
  /* height: 78px; */
  background: #27ff00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

/* =========================
  SP
========================= */

@media (max-width: 1100px) {

  .aibi-model {
    padding: 64px 0 70px;
  }

  .aibi-model__inner {
    width: calc(100% - 32px);
  }

  /* title */

  .aibi-model__title {
    grid-template-columns: auto 1fr auto;
    width: 100%;
    margin-bottom: 40px;
    column-gap: 14px;
  }

  .aibi-model__title h2 {
    font-size: 35px;
    border-bottom: solid 1px #7f8080;
    padding-bottom: 10px;
  }

  .aibi-model__title i {
    display: none;
  }

  .aibi-model__title em {
    font-size: 18px;
    width: 100%;
  }

  /* wrap */

  .aibi-model__wrap {
    height: auto;
  }

  .aibi-model__image {
    position: relative;
    width: 100%;
  }

  .aibi-model__box {
    position: relative;
    width: 100% !important;
    height: auto;
    margin: 0px 0 0 auto;
    padding: 88px 22px 28px;
    background: unset !important;
  }

  .aibi-model__content {
    width: auto;
    margin-left: 0;
    padding: 0;
  }

  .aibi-model__content h3 {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1.5;
  }

  .aibi-model__content p {
    font-size: 15px;
    line-height: 2;
  }

  .aibi-model__content .aibi-btn {
      margin-top: 30px;
      margin-left: 0;
  }

  .aibi-model__banner {
    left: 0px;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
    padding: 0 12px;
  }
}


/* =========================
  VOICE
========================= */

.aibi-voice {
  padding: 90px 0 80px;
}

.aibi-voice__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 60px;
}

.aibi-voice__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aibi-voice__title p {
  margin: 0 0 10px;
  color: var(--aibi-color-gray-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.aibi-voice__title h2 {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--aibi-line-color);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  width: fit-content;
  margin-bottom: 30px;

}

.aibi-voice__more a {
  width: var(--aibi-btn-width);
  height: var(--aibi-btn-height);
  border-radius: 999px;
  background: var(--aibi-color-main);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 800;
}

.aibi-voice__more span {
  width: 20px;
}
.aibi-voice__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 38px 0 26px;
}

.aibi-google-logo {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.aibi-google-logo i {
  font-style: normal;
}

.aibi-google-logo i:nth-child(1) { color: #4285f4; }
.aibi-google-logo i:nth-child(2) { color: #ea4335; }
.aibi-google-logo i:nth-child(3) { color: #fbbc05; }
.aibi-google-logo i:nth-child(4) { color: #4285f4; }
.aibi-google-logo i:nth-child(5) { color: #34a853; }
.aibi-google-logo i:nth-child(6) { color: #ea4335; }

.aibi-voice__rating-label {
  font-size: 18px;
  font-weight: 800;
}

.aibi-voice__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}

.aibi-voice__stars span {
  font-size: 28px;
}

.aibi-voice__stars .is-full {
  color: #f6bf26;
}

.aibi-voice__stars .is-half {
  color: #f6bf26;
  opacity: .45;
}

.aibi-voice__stars .is-empty {
  color: #ddd;
}

.aibi-voice__rating strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.aibi-voice__stars {
  color: #f6bf26;
  letter-spacing: .06em;
}

.aibi-voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}

.aibi-voice-card a {
  color: inherit;
  text-decoration: none;
}

.aibi-voice-card__image {
  margin: 0 0 12px;
  position: relative;
  background: #000;
}

.aibi-voice-card__image img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.aibi-voice-card__image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 8px;
  background: rgba(0, 0, 0, .9);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.aibi-voice-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .aibi-voice {
    padding: 64px 0 70px;
    overflow: hidden;
  }

  .aibi-voice__inner {
    width: calc(100% - 32px);
    display: block;
  }

  .aibi-voice__left {
    display: block;
    margin-bottom: 32px;
  }

  .aibi-voice__title h2 {
    font-size: 35px;
  }

  .aibi-voice__more {
    margin-top: 28px;
  }

  .aibi-voice__rating {
    flex-wrap: wrap;
    margin: 0 0 24px;
    font-size: 15px;
  }

  .aibi-google-logo {
    font-size: 24px;
  }

  .aibi-voice__list {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .aibi-voice-card__image img {
            min-height: 200px;
        max-height: 450px;
        height: auto;
    /* height: 200px; */
    object-fit: cover;
  }

  .aibi-voice__slider {
    width: 100%;
    max-width: none;
    margin-top: 50px;
    overflow: visible;
  }

  .aibi-voice__list {
    display: flex;
    column-gap: 0!important;
    row-gap: 0!important;
  }

  .aibi-voice-card {
    width: auto;
    flex-shrink: 0;
  }

}
@media screen and (max-width:767px) {

  .aibi-voice-card__image img {
    height: 200px;
    object-fit: cover;
  }

}

/* =========================
  COLUMN
========================= */

.aibi-column {
  padding: 90px 0 80px;
}

.aibi-column__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  column-gap: 70px;
}

.aibi-column__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aibi-column__title p {
  margin: 0 0 12px;
  color: var(--aibi-color-gray-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.aibi-column__title h2 {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--aibi-line-color);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  width: fit-content;
  margin-bottom: 30px;

}

.aibi-column__more a {
  width: var(--aibi-btn-width);
  height: var(--aibi-btn-height);
  border-radius: 999px;
  background: var(--aibi-color-main);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 800;
}

.aibi-column__more span {
  width: 20px;
}

.aibi-column__list {
  border-top: 1px solid var(--aibi-line-color);
}

.aibi-column-item {
  border-bottom: 1px solid var(--aibi-line-color);
}

.aibi-column-item a {
  display: grid;
  grid-template-columns: 260px 1fr;
  column-gap: 54px;
  align-items: center;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
}

.aibi-column-item__image {
  margin: 0;
  overflow: hidden;
}

.aibi-column-item__image img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  display: block;
}

.aibi-column-item h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .aibi-column {
    padding: 64px 0 70px;
  }

  .aibi-column__inner {
    width: calc(100% - 32px);
    display: block;
  }

  .aibi-column__left {
    display: block;
    margin-bottom: 0px;
  }

  .aibi-column__list{
    width: 100%;
  }

  .aibi-column__title h2 {
    font-size: 35px;
  }

  .aibi-column__more {
    margin-top: 28px;
  }

  .aibi-column-item a {
    display: block;
    padding: 18px 0;
    text-align: center;
  }

  .aibi-column-item__image img {
    height: 150px;
    width: 70%;
    margin: 0 auto 10px;
  }

  .aibi-column-item h3 {
    font-size: 16px;
    line-height: 1.6;
  }
}


/* =========================
  ABOUT
========================= */

.aibi-about {
  padding: 95px 0 90px;
}

.aibi-about__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.aibi-about__title {
  display: grid;
  grid-template-columns: auto 250px auto;
  align-items: center;
  column-gap: 18px;
  width: fit-content;
  margin: 0 0 58px;
}

.aibi-about__title h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
}

.aibi-about__body {
  display: grid;
  grid-template-columns: 620px 1fr;
  column-gap: 60px;
  align-items: start;
}

.aibi-about__image {
  margin: 0;
}

.aibi-about__image img {
  width: 100%;
  display: block;
}

.aibi-about__content {
  display: grid;
  justify-items: center;
}

.aibi-about__copy {
  writing-mode: vertical-rl;
  margin: -150px 0 54px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .1em;
}

.aibi-about__nav {
  width: auto;
  margin-bottom: 42px;
}

.aibi-about__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aibi-about__nav li + li {
  margin-top: 38px;
}

.aibi-about__nav a {
  position: relative;
  display: inline-block;
  padding-left: 66px;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
}

.aibi-about__nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  height: 1px;
  background: var(--aibi-line-color);
}

.aibi-about__sns {
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid var(--aibi-line-color);
  text-align: center;
}

.aibi-about__sns p {
  margin: 0 0 28px;
  color: #666;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .08em;
}

.aibi-about__sns a {
  width: 280px;
  height: 62px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 28px;
  font-weight: 800;
}

.aibi-about__insta {
  position: relative;
  width: 42px;
  height: 42px;
  border: 4px solid #fff;
  border-radius: 12px;
}

.aibi-about__insta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 4px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.aibi-about__insta::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .aibi-about {
    padding: 64px 0 70px;
  }

  .aibi-about__inner {
    width: calc(100% - 32px);
  }

  .aibi-about__title {
    grid-template-columns: auto 1fr auto;
    width: 100%;
    margin-bottom: 40px;
  }

  .aibi-about__title h2 {
    font-size: 35px;
  }

  .aibi-about__title i {
    min-width: 60px;
  }

  .aibi-about__title em {
    font-size: 18px;
  }

  .aibi-about__body {
    display: block;
  }

  .aibi-about__content {
    display: flex;
    margin-top: 0px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .aibi-about__copy {
    writing-mode: horizontal-tb;
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.8;
    writing-mode: vertical-rl;
  }

  .aibi-about__nav li + li {
    margin-top: 22px;
  }

  .aibi-about__nav a {
    padding-left: 0;
    font-size: 18px;
  }

  .aibi-about__nav a::before {
    content: unset;
  }

  .aibi-about__sns p {
    font-size: 16px;
    line-height: 1.7;
  }

  .aibi-about__sns a {
    width: 240px;
    height: 56px;
    font-size: 22px;
  }
}

/* =========================

フッター

========================= */
.aibi-footer {
  padding: 80px 0 26px;
  background: #fff;
  color: #000;
}

.aibi-contact {
  display: block;
  width: min(92%, 760px);
  margin: 0 auto 42px;
}

.aibi-section-title {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 16px;
  width: fit-content;
  margin: 0 auto 36px;
}

.aibi-section-title h2 {
  grid-column: 1 / 2;
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
}

.aibi-section-title i {
  grid-column: 2 / 3;
  display: block;
  width: 210px;
  height: 1px;
  background: #999;
}

.aibi-section-title p {
  grid-column: 3 / 4;
  margin: 0;
  color: var(--aibi-color-gray-text);
  font-size: 22px;
  font-weight: 700;
}

.aibi-section-title small {
  grid-column: 1 / 4;
  display: block;
  margin-top: 10px;
  color: #999;
  font-size: 17px;
  font-weight: 700;
}

.aibi-contact-banner {
  position: relative;
  min-height: 138px;
  padding: 28px 58px 24px 28px;
  border: 1px solid #111;
  background: #f3f3f3;
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 36px;
}

.aibi-contact-banner__head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.aibi-contact-banner__mail {
  position: relative;
  width: 36px;
  height: 22px;
  display: inline-block;
  background: #000;
}

.aibi-contact-banner__mail::before,
.aibi-contact-banner__mail::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 20px;
  height: 1px;
  background: #fff;
}

.aibi-contact-banner__mail::before {
  left: 1px;
  transform: rotate(32deg);
  transform-origin: left center;
}

.aibi-contact-banner__mail::after {
  right: 1px;
  transform: rotate(-32deg);
  transform-origin: right center;
}

.aibi-contact-banner__head strong {
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.aibi-contact-banner__arrow {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  flex-shrink: 0;
}
.aibi-contact-banner__arrow::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 53%;
  width: 17px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}

.aibi-contact-banner__arrow::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 52%;
  width: 10px;
  height: 8px;
  border-top: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.aibi-contact-banner__text p {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.aibi-contact-banner__text small {
  display: block;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 700;
}

.aibi-contact-banner__plus {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ee776d;
  font-size: 13px;
}

.aibi-footer__main {
  width: min(92%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 190px;
  align-items: end;
}

.aibi-footer__logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 0 26px 48px;
}

.aibi-footer__info p {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.aibi-footer__info span {
  display: inline-block;
  padding-left: 68px;
}
.aibi-footer__nav .aibi-nav__sub li{
  margin-top: 0px;
}
.aibi-footer__nav .aibi-nav__sub a::before{
  content: unset;
}

.aibi-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  padding-bottom: 20px;
}

.aibi-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aibi-footer__nav li + li {
  margin-top: 26px;
}

.aibi-footer__nav a {
  position: relative;
  display: inline-block;
  padding-left: 50px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.aibi-footer__nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 1px;
  background: #999;
}

.aibi-footer__copy {
  margin: 30px 0 0;
  text-align: center;
  font-family: sans-serif;
  font-size: 20px;
}

@media (max-width: 1100px) {
  .aibi-contact {
    display: none;
  }
  .aibi-footer {
    padding: 56px 0 100px;
  }

  .aibi-section-title h2 {
    font-size: 32px;
  }

  .aibi-section-title i {
    width: 90px;
  }

  .aibi-contact-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 42px 24px 22px;
  }

  .aibi-footer__main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .aibi-footer__logo {
    margin: 0 auto 30px;
  }

  .aibi-footer__nav {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .aibi-section-title {
    grid-template-columns: auto 1fr;
  }

  .aibi-section-title h2 {
    font-size: 28px;
  }

  .aibi-section-title i {
    width: 60px;
  }

  .aibi-section-title p {
    font-size: 18px;
  }

  .aibi-contact-banner__head {
    gap: 12px;
  }

  .aibi-footer__nav {
    display: none;
  }

  .aibi-footer__copy {
    font-size: 14px;
  }
}


/* =========================
  TOP ADJUST / OVERRIDE
  既存CSSの末尾に追記
========================= */

/* 共通幅をTOPにも反映 */
.aibi-concept__inner,
.aibi-service__inner,
.aibi-service-more__inner,
.aibi-news__inner,
.aibi-model__inner,
.aibi-voice__inner,
.aibi-column__inner,
.aibi-about__inner {
  width: min(var(--aibi-width, 100%), var(--aibi-inner, 1100px));
}

/* 色の直書き吸収 */
.aibi-line,
.aibi-btn,
.aibi-works__more a,
.aibi-news__more a,
.aibi-voice__more a,
.aibi-column__more a {
  background: var(--aibi-color-main);
}

.aibi-mv__bottom strong,
.aibi-service01__num,
.aibi-service02__num,
.aibi-service-mini__num,
.aibi-service01__text h4,
.aibi-service02__text h4,
.aibi-news__title-main h2 em {
  color: var(--aibi-color-main);
}

.aibi-service01__box,
.aibi-service02__box,
.aibi-service-item__box {
  background: var(--aibi-color-bg-gray);
}

.aibi-model__box {
  background: var(--aibi-color-bg-gray-dark);
}

/* ヘッダーの1100〜1300あたり詰まり対策 */
.aibi-header {
  padding-inline: clamp(20px, 2.5vw, 50px);
}

.aibi-header__logo a {
  width: clamp(150px, 14vw, 200px);
}

.aibi-header__top {
  gap: clamp(20px, 3vw, 42px);
  padding-right: clamp(16px, 2vw, 30px);
}

.aibi-subnav ul {
  gap: clamp(20px, 3vw, 42px);
}

.aibi-nav {
  padding-right: clamp(16px, 2vw, 30px);
}

.aibi-nav ul {
  gap: clamp(22px, 3vw, 46px);
}

.aibi-header__tel strong {
  font-size: clamp(24px, 2.3vw, 30px);
}

/* MV */
.aibi-mv-swiper {
  height: clamp(480px, 48vw, 800px);
}

.aibi-mv__vertical {
  font-size: clamp(18px, 1.2vw, 22px);
}

.aibi-mv__bottom p {
  font-size: clamp(16px, 1.8vw, 24px);
}

/* concept TOP */
.aibi-concept__inner {
  grid-template-columns: minmax(420px, 550px) minmax(0, 1fr);
  column-gap: clamp(36px, 5vw, 70px);
}

.aibi-concept__body p {
  font-size: clamp(16px, 1.45vw, 20px);
}

/* service title */
.aibi-service__title,
.aibi-works__title,
.aibi-model__title,
.aibi-about__title {
  max-width: 100%;
}

/* 03/04 */
.aibi-service-more__inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 5vw, 70px);
}

.aibi-service-mini {
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  column-gap: clamp(22px, 3vw, 34px);
}

/* works */
.aibi-works__inner {
  width: min(100%, var(--aibi-inner-wide, 1200px));
}

.aibi-works__list {
  gap: clamp(28px, 4vw, 50px);
}

/* news / voice / column */
.aibi-news__inner {
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  column-gap: clamp(40px, 5vw, 70px);
}

.aibi-voice__inner {
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  column-gap: clamp(36px, 5vw, 60px);
}

.aibi-column__inner {
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  column-gap: clamp(40px, 5vw, 70px);
}

/* model */
.aibi-model__box {
  width: min(1000px, 91%);
}

.aibi-model__content {
  width: min(500px, 50%);
}

/* about */
.aibi-about__body {
  grid-template-columns: minmax(480px, 620px) minmax(0, 1fr);
  column-gap: clamp(36px, 5vw, 60px);
}

/* tabletは中途半端に詰めず、縦積み寄せ */
@media (max-width: 1100px) {
  .aibi-concept__inner,
  .aibi-service__inner,
  .aibi-service-more__inner,
  .aibi-news__inner,
  .aibi-model__inner,
  .aibi-voice__inner,
  .aibi-column__inner,
  .aibi-about__inner,
  .aibi-works__inner {
    width: var(--aibi-sp-width);
    max-width: none;
  }

  .aibi-mv {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .aibi-mv__inner{
    width: 100%;
  }

  .aibi-mv-swiper {
    height: clamp(420px, 72vw, 620px);
  }

  .aibi-mv__bottom {
    bottom: -12px;
    left: 0;
  }

  .aibi-concept__inner,
  .aibi-news__inner,
  .aibi-voice__inner,
  .aibi-column__inner,
  .aibi-about__body {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 30px;
  }
  .aibi-news__inner,
  .aibi-column__inner,
  .aibi-about__body{
    flex-wrap: wrap;
  }

  .aibi-service-more__inner,
  .aibi-voice__inner {
    display: block;
  }

  .aibi-service__title,
  .aibi-works__title,
  .aibi-model__title,
  .aibi-about__title {
    width: 100%;
    grid-template-columns: auto 1fr auto;
  }
  .aibi-model__title{
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 10px;
  }

  .aibi-model__content {
    width: auto;
  }
}

/* SP細部 */
@media (max-width: 640px) {
  .aibi-mv-swiper {
    height: 62vh;
    min-height: 420px;
  }

  .aibi-mv__vertical {
    line-height: 2.4;
  }

  .aibi-mv__bottom strong {
    font-size: 38px;
  }

  .aibi-service01__text p,
  .aibi-service02__text p,
  .aibi-service-mini__text p {
    font-size: 15px;
  }
}


/* PC submenu */
.aibi-nav__has-sub {
  position: relative;
}

.aibi-nav__sub {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%);
  width: 155px;
  padding: 20px 10px !important;
  margin: 0;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  z-index: 200;
  display: block !important;
}

.aibi-nav__has-sub:hover .aibi-nav__sub {
  opacity: 1;
  visibility: visible;
}

.aibi-nav__sub li {
  margin: 0;
}

.aibi-nav__sub a {
  display: block;
  padding: 8px 12px;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
}

.aibi-nav__sub a:hover {
  background: #f3f3f3;
}
/* SP submenu */
.aibi-spnav__parent {
  position: relative;
  width: 100%;
  padding: 18px 0;
  border: 0;
  background: none;
  color: #111;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.aibi-spnav__parent::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
}

.aibi-spnav__has-sub.is-open .aibi-spnav__parent::after {
  content: "−";
}

.aibi-spnav__sub {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #f7f7f7;
  opacity: 0;
  transition: grid-template-rows .35s ease, opacity .25s ease;
}

.aibi-spnav__sub > li {
  min-height: 0;
  overflow: hidden;
  border-bottom: 0;
}

.aibi-spnav__sub-inner {
  padding: 4px 0 12px 18px;
}

.aibi-spnav__has-sub.is-open .aibi-spnav__sub {
  grid-template-rows: 1fr;
  opacity: 1;
}

.aibi-spnav__sub a {
  display: block;
  padding: 12px 0;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}


/* ========================================
SP FIXED CONTACT
======================================== */
/* PCサイズでは非表示 */
.fixed-footer {
  display: none;
}

/* スマホサイズ（767px以下）のみ適用 */
@media screen and (max-width: 767px) {
  .fixed-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px; /* フッター全体の高さ */
    background-color: #d3d3d3; /* 画像を元にした背景のグレー色 */
    box-sizing: border-box;
    z-index: 9999; /* 最前面に表示 */
  }

  /* ボタン共通のスタイル */
  .fixed-footer .footer-item {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000; /* 文字色 */
    padding: 0 10px;
    box-sizing: border-box;
  }

  /* SVGアイコン共通のスタイル */
  .fixed-footer .footer-icon {
    height: 30px;
    width: auto;
    object-fit: contain;
    margin-right: 10px;
  }
  .fixed-footer img.footer-icon.tel-icon {
      height: 38px;
  }

  /* テキスト全体の配置（縦並び） */
  .fixed-footer .text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  /* 各テキストの微調整 */
  .fixed-footer .label {
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
  }

  .fixed-footer .tel-number {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 0.05em;
  }

  .fixed-footer .mail-text {
    font-size: 13px;
    font-weight: bold;
  }
}