@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　カスタム設定(style.css)ver.1 2025.6.26
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*赤*/
/*ピンク寄りの赤*/
/*オレンジ寄りの赤*/
/*オレンジ*/
/*ベージュ*/
/*薄いベージュ*/
/*濃い赤茶*/
/*■■■■■■ loading ■■■■■■■*/
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading img {
  margin: auto;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-box {
  margin: auto;
  width: 200px;
  text-align: center;
}

.flashing {
  margin: 0 0 10px;
}
.flashing img {
  width: 120px;
  heifht: auto;
}

.animation-box {
  width: 400px;
  height: 4px;
  background: #ff264b;
  -webkit-animation-name: loadbar-animation;
          animation-name: loadbar-animation;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}

@keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}
/*■■■■■■ fadein ■■■■■■■*/
.fade-in {
  opacity: 0;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.fade-in.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-up {
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
}

.fade-in-down {
  -webkit-transform: translate(0, -60px);
          transform: translate(0, -60px);
}

.fade-in-left {
  -webkit-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
}

.fade-in-right {
  -webkit-transform: translate(60px, 0);
          transform: translate(60px, 0);
}

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

/*■■■■■■ 主要タグ設定 ■■■■■■■*/
a:link, a:visited {
  color: #582b00;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover, a:active {
  color: #f83400;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ 汎用設定 ■■■■■■■*/
.contents-block {
  margin: 100px 0;
}

.contents-in-block {
  padding: 100px 0;
}

.bg-ami {
  background-color: #f4f3ed;
}

/*■■■■■■■ MAIN IMG ■■■■■■*/
.main-img-block {
  height: 100vh;
  width: 100%;
  background: url(../images/main-img_pc.webp) bottom center no-repeat;
  background-size: contain; /* 幅・高さのバランス良く表示 */
  background-repeat: no-repeat;
  background-position: bottom center;
}

/*■■■■■■ #1 吹き出しタイトル ■■■■■■■*/
:root {
  --fourthColor: #ea6200; /* オレンジ */
  --thirdColor: #f83400; /* オレンジ寄りの赤 */
  --subColor: #ff264b; /* ピンク寄りの赤 */
  --mainColor: #f83400; /* 赤（third と同じ）*/
}

.title-balloon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; /* 横並びに */
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; /* ベースライン揃え */
  gap: 15px; /* 隙間 15px */
  margin: 0 auto 60px;
  padding: 10px 30px 15px;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6.4rem;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(var(--fourthColor)), color-stop(33%, var(--thirdColor)), color-stop(66%, var(--subColor)), to(var(--mainColor)));
  background: linear-gradient(90deg, var(--fourthColor) 0%, var(--thirdColor) 33%, var(--subColor) 66%, var(--mainColor) 100%);
}

.title-balloon span {
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  top: -3px; /* ← ここで上げる。好みで数値調整 */
}

/* 吹き出し（▼） */
.title-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px; /* 高さ 52px の半分 */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 44px; /* 倍サイズ */
  height: 26px; /* 倍サイズ */
  background: -webkit-gradient(linear, left top, right top, from(var(--fourthColor)), color-stop(33%, var(--thirdColor)), color-stop(66%, var(--subColor)), to(var(--mainColor)));
  background: linear-gradient(90deg, var(--fourthColor) 0%, var(--thirdColor) 33%, var(--subColor) 66%, var(--mainColor) 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/*■■■■■■ #2 リード文 ■■■■■■■*/
.text-read_en {
  margin-bottom: 30px;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #000;
  font-size: 5.7rem;
  line-height: 1.2;
}

.text-read_jp {
  margin-bottom: 30px;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000;
  font-size: 4rem;
  line-height: 1.2;
}

.text-read_en span, .text-read_jp span {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  /* 下側だけマーカー色 */
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #ffda00), color-stop(50%, transparent));
  background-image: linear-gradient(to top, #ffda00 50%, transparent 50%);
  background-size: 100% 24px; /* 高さ12pxの帯 */
  background-repeat: no-repeat;
}

.text-read_en span {
  background-position: left bottom 10px; /* 下寄せ */
}

.text-read_jp span {
  background-position: left bottom 3px; /* 下寄せ */
}

/*■■■■■■ #3 サービス一覧 ■■■■■■■*/
.menu-flex-block {
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px 0;
}

.menu-flex-box {
  margin: 0 auto 0 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.menu-img-box {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}

.menu-text-box {
  text-align: left;
  color: #582b00;
  width: auto;
}

.menu-read_en {
  margin-bottom: 20px;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 4.6rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.menu-read_en span {
  font-size: 3.8rem;
}

.menu-read_jp {
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  letter-spacing: 0.05em;
}

/*■■■■■■ #4 クライアント一覧 ■■■■■■■*/
.wave-bar-top {
  margin: 0 0 -1px;
  display: block;
  width: 100%;
  height: 19px;
  background: url(../images/line-wabe-top.webp) center bottom repeat-x;
}

.wave-bar-bottom {
  margin: -1px 0 0;
  display: block;
  width: 100%;
  height: 19px;
  background: url(../images/line-wabe-bottom.webp) center bottom repeat-x;
}

.clients-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none; /* ← 全体のドットを消す */
  gap: 1rem 2rem;
  width: auto;
  margin: 0 auto;
  padding: 0;
}

.clients-list li {
  color: #582b00;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.3rem;
  letter-spacing: 0.01em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 2rem;
}

.clients-list li span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2rem;
}

/* ★ ドットを付けたい li だけ */
.clients-list span.list-dot:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #582b00;
}

/*■■■■■■ #5 会社情報■■■■■■■*/
.company-table {
  margin: 10px auto 0;
  display: table;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid #000;
}
.company-table tr:last-child {
  border: 0;
}
.company-table th {
  padding: 10px 0;
  font-size: 2.9rem;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  white-space: nowrap;
}
.company-table th span {
  font-size: 2rem;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.company-table th small {
  font-size: 1.8rem;
  margin: 0 0.3em 0 0;
  position: relative;
  top: -2px;
}
.company-table td {
  padding: 10px 0 10px 30px;
  font-size: 3.1rem;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  vertical-align: middle;
}
.company-table td span {
  font-size: 2.4rem;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.company-table td small {
  font-size: 2.2rem;
  position: relative;
  top: -3px;
  margin: 0 0.3em 0 0;
}
.company-table td a:link {
  color: #000;
}

.address-flex-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 上寄せ */
  gap: 30px; /* 左右の間隔 */
}

.address-box {
  /* 左の固定幅のボックスにするか、最小限の幅で */
  -ms-flex-negative: 0;
      flex-shrink: 0; /* 横幅縮まらないように */
  font-size: 2.9rem;
  line-height: 1.4;
}

.map-box {
  padding: 10px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 右側いっぱいに広げる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* 縦積み */
}

.map-box p {
  margin-top: 10px; /* iframeとテキストの間にスペース */
  font-size: 2.4rem;
  text-align: left;
}

/* iframeのレスポンシブ設定はそのままでOK */
.iframe-map-box {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 41%; /* 高さ割合の設定 */
}

.iframe-map-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

a.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-heigh: 0;
}
a.logo svg {
  width: 190px;
}

/*■■■■■■ メールフォーム ■■■■■■■*/
.mfp_rows {
  clear: both;
}

.mfp_rows:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.mfp_rows input[type=text],
.mfp_rows input[type=email],
.mfp_rows input[type=tel],
.mfp_rows input[type=number],
.mfp_rows input[type=date],
.mfp_rows input[type=file],
.mfp_rows select,
.mfp_rows button,
form#mailformpro .mfp_rows label {
  width: 100%;
  min-width: 100%;
  word-break: break-all;
  white-space: normal;
}

.mfp_rows textarea {
  width: 100%;
  min-width: 100%;
}

.mfp_rows .mfp_col1, .mfp_rows .mfp_col2, .mfp_rows .mfp_col3, .mfp_rows .mfp_col4, .mfp_rows .mfp_col5, .mfp_rows .mfp_col6, .mfp_rows .mfp_col7, .mfp_rows .mfp_col8, .mfp_rows .mfp_col9, .mfp_rows .mfp_col10, .mfp_rows .mfp_col25 {
  float: left;
  padding: 0 1.5%;
}

.mfp_rows .mfp_col1 {
  width: 10%;
}

.mfp_rows .mfp_col2 {
  width: 20%;
}

.mfp_rows .mfp_col3 {
  width: 30%;
}

.mfp_rows .mfp_col4 {
  width: 40%;
}

.mfp_rows .mfp_col5 {
  width: 50%;
}

.mfp_rows .mfp_col6 {
  width: 60%;
}

.mfp_rows .mfp_col7 {
  width: 70%;
}

.mfp_rows .mfp_col8 {
  width: 80%;
}

.mfp_rows .mfp_col9 {
  width: 90%;
}

.mfp_rows .mfp_col10 {
  width: 100%;
}

.mfp_rows .mfp_col25 {
  width: 25%;
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■ 汎用設定（XS） ■■■■■■■*/
  .contents-block {
    margin: 40px 0;
  }
  .contents-in-block {
    padding: 40px 0;
  }
  .bg-ami {
    background-color: #f4f3ed;
  }
  /*■■■■■■ メインイメージ（XS） ■■■■■■■*/
  .main-img-block {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    height: 100%; /* 親の高さいっぱい */
    background: url(../images/main-img_sp.webp) bottom center no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%; /* 高さ100%、幅は自動 */
  }
  /*■■■■■■ #1 吹き出しタイトル（XS） ■■■■■■■*/
  .title-balloon {
    margin: 0 auto 30px;
    padding: 7px 15px 6px;
    font-size: 7.4vw;
    letter-spacing: 0;
    gap: 10px;
  }
  .title-balloon span {
    font-size: 4vw;
  }
  /* 吹き出し（▼） */
  .title-balloon::after {
    left: 50%;
    bottom: -12px;
    width: 22px;
    height: 13px;
  }
  /*■■■■■■ #2 リード文（XS） ■■■■■■■*/
  .text-read_en {
    margin-bottom: 15px;
    font-size: 7.4vw;
  }
  .text-read_jp {
    margin-bottom: 15px;
    font-size: 5.2vw;
  }
  .text-read_en span, .text-read_jp span {
    background-size: 100% 12px; /* 高さ12pxの帯 */
  }
  .text-read_en span {
    background-position: left bottom 0.15em; /* 下寄せ */
  }
  .text-read_jp span {
    background-position: left bottom 0.05em; /* 下寄せ */
  }
  /*■■■■■■ #3 サービス一覧 (XS) ■■■■■■■*/
  .menu-flex-block {
    gap: 26px 0;
  }
  .menu-flex-box {
    margin: 0 auto 0 0;
    gap: 10px;
  }
  .menu-img-box {
    max-width: 200px;
    height: auto;
  }
  .menu-text-box {
    width: auto;
  }
  .menu-read_en {
    margin-bottom: 10px;
    font-size: 5.5vw;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }
  .menu-read_en span {
    font-size: 4vw;
  }
  .menu-read_jp {
    font-size: 3.6vw;
  }
  /*■■■■■■ #4 クライアント一覧 (XS) ■■■■■■■*/
  .wave-bar-top {
    height: 8px;
    background-size: auto 8px;
  }
  .wave-bar-bottom {
    height: 8px;
    background-size: auto 8px;
  }
  .clients-list li {
    font-size: 4.2vw;
    gap: 0 1rem;
  }
  .clients-list li span {
    gap: 0 1rem;
  }
  .clients-list span.list-dot:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #582b00;
  }
  /*■■■■■■ #5 会社情報 (XS) ■■■■■■■*/
  .company-table th {
    padding: 10px 0;
    font-size: 4vw;
  }
  .company-table th span {
    font-size: 2.8vw;
  }
  .company-table th small {
    font-size: 2.4vw;
    margin: 0 0.3em 0 0;
    position: relative;
    top: -1px;
  }
  .company-table td {
    padding: 10px 0 10px 15px;
    font-size: 3.7vw;
  }
  .company-table td span {
    font-size: 3.2vw;
  }
  .company-table td small {
    font-size: 3vw;
    margin: 0 0.3em 0 0;
    position: relative;
    top: -1px;
  }
  .address-flex-block {
    gap: 15px;
  }
  .address-box {
    font-size: 3.4vw;
  }
  .map-box p {
    font-size: 2.8vw;
  }
  /* iframeのレスポンシブ設定はそのままでOK */
  .iframe-map-box {
    padding-top: 50%; /* 高さ割合の設定 */
  }
  a.logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-heigh: 0;
  }
  a.logo svg {
    width: 110px;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*■■■■■■ 汎用設定（SM） ■■■■■■■*/
  .contents-block {
    margin: 40px 0;
  }
  .contents-in-block {
    padding: 40px 0;
  }
  .bg-ami {
    background-color: #f4f3ed;
  }
  /*■■■■■■ メインイメージ（SM） ■■■■■■■*/
  .main-img-block {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    height: 100%; /* 親の高さいっぱい */
    background: url(../images/main-img_sp.webp) bottom center no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%; /* 高さ100%、幅は自動 */
  }
  /*■■■■■■ #1 吹き出しタイトル（SM） ■■■■■■■*/
  .title-balloon {
    margin: 0 auto 30px;
    padding: 9px 15px 13px;
    font-size: 7.4vw;
    letter-spacing: 0;
    gap: 10px;
  }
  .title-balloon span {
    font-size: 4vw;
  }
  /* 吹き出し（▼） */
  .title-balloon::after {
    left: 50%;
    bottom: -12px;
    width: 22px;
    height: 13px;
  }
  /*■■■■■■ #2 リード文（SM） ■■■■■■■*/
  .text-read_en {
    margin-bottom: 15px;
    font-size: 7.4vw;
  }
  .text-read_jp {
    margin-bottom: 15px;
    font-size: 5.2vw;
  }
  .text-read_en span, .text-read_jp span {
    background-size: 100% 18px; /* 高さ12pxの帯 */
  }
  .text-read_en span {
    background-position: left bottom 0.15em;
  }
  .text-read_jp span {
    background-position: left bottom 0.05em;
  }
  /*■■■■■■ #3 サービス一覧 (SM) ■■■■■■■*/
  .menu-flex-block {
    gap: 26px 0;
  }
  .menu-flex-box {
    margin: 0 auto 0 0;
    gap: 10px;
  }
  .menu-img-box {
    max-width: 240px;
    height: auto;
  }
  .menu-text-box {
    width: auto;
  }
  .menu-read_en {
    margin-bottom: 10px;
    font-size: 5vw;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }
  .menu-read_en span {
    font-size: 3.8vw;
  }
  .menu-read_jp {
    font-size: 3.6vw;
  }
  /*■■■■■■ #4 クライアント一覧 (SM) ■■■■■■■*/
  .wave-bar-top {
    height: 8px;
    background-size: auto 8px;
  }
  .wave-bar-bottom {
    height: 8px;
    background-size: auto 8px;
  }
  .clients-list li {
    font-size: 4.2vw;
    gap: 0 1.5rem;
  }
  .clients-list li span {
    gap: 0 1.5rem;
  }
  .clients-list span.list-dot:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #582b00;
  }
  /*■■■■■■ #5 会社情報 (SM) ■■■■■■■*/
  .company-table th {
    padding: 10px 0;
    font-size: 4vw;
  }
  .company-table th span {
    font-size: 3vw;
  }
  .company-table td {
    padding: 10px 0 10px 15px;
    font-size: 3.7vw;
  }
  .company-table td span {
    font-size: 3vw;
  }
  .address-flex-block {
    gap: 15px;
  }
  .address-box {
    font-size: 3.4vw;
  }
  .map-box p {
    font-size: 2.8vw;
  }
  /* iframeのレスポンシブ設定はそのままでOK */
  .iframe-map-box {
    padding-top: 50%; /* 高さ割合の設定 */
  }
  a.logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-heigh: 0;
  }
  a.logo svg {
    width: 110px;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*■■■■■■ 汎用設定（MD） ■■■■■■■*/
  .contents-block {
    margin: 60px 0;
  }
  .contents-in-block {
    padding: 60px 0;
  }
  /*■■■■■■ メインイメージ（MD） ■■■■■■■*/
  .main-img-block {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    height: 100%; /* 親の高さいっぱい */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%; /* 高さ100%、幅は自動 */
  }
  /*■■■■■■ #1 吹き出しタイトル（MD） ■■■■■■■*/
  .title-balloon {
    margin: 0 auto 40px;
    padding: 10px 30px 15px;
    font-size: 5.4rem;
    letter-spacing: 0;
    gap: 10px;
  }
  .title-balloon span {
    font-size: 3.2rem;
  }
  /* 吹き出し（▼） */
  .title-balloon::after {
    left: 50%;
    bottom: -25px;
    width: 44px;
    height: 26px;
  }
  /*■■■■■■ #2 リード文（MD） ■■■■■■■*/
  .text-read_en {
    margin-bottom: 20px;
    font-size: 5.6rem;
  }
  .text-read_jp {
    margin-bottom: 20px;
    font-size: 4rem;
  }
  .text-read_en span, .text-read_jp span {
    background-size: 100% 20px; /* 高さ12pxの帯 */
  }
  /*■■■■■■ #3 サービス一覧 (MD) ■■■■■■■*/
  .menu-flex-block {
    gap: 36px 0;
  }
  .menu-flex-box {
    margin: 0 auto 0 0;
    gap: 20px;
  }
  .menu-img-box {
    max-width: 300px;
    height: auto;
  }
  .menu-text-box {
    width: 360px;
  }
  .menu-read_en {
    margin-bottom: 10px;
    font-size: 4.2rem;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }
  .menu-read_en span {
    font-size: 3.6rem;
  }
  .menu-read_jp {
    font-size: 2.8rem;
  }
  /*■■■■■■ #4 クライアント一覧 (MD) ■■■■■■■*/
  .wave-bar-top {
    height: 8px;
    background-size: auto 8px;
  }
  .wave-bar-bottom {
    height: 8px;
    background-size: auto 8px;
  }
  .clients-list {
    gap: 0.8rem 1.5rem; /* 横間隔 */
    width: 670px;
  }
  .clients-list li {
    font-size: 3.6rem;
  }
  .clients-list li span {
    left: -0.5rem;
  }
  /*■■■■■■ #5 会社情報 (MD) ■■■■■■■*/
  .company-table th {
    padding: 10px 0;
    font-size: 2.4rem;
  }
  .company-table th span {
    font-size: 2rem;
  }
  .company-table td {
    padding: 10px 0 10px 15px;
    font-size: 2.6rem;
  }
  .company-table td span {
    font-size: 2.2rem;
  }
  .address-flex-block {
    gap: 20px;
  }
  .address-box {
    font-size: 2.4rem;
  }
  .map-box p {
    font-size: 2.6rem;
  }
  /* iframeのレスポンシブ設定はそのままでOK */
  .iframe-map-box {
    padding-top: 50%; /* 高さ割合の設定 */
  }
  a.logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-heigh: 0;
  }
  a.logo svg {
    width: 130px;
  }
} /*MD*/
/*------------(LG)------------*/
/*LG*/
/*------------(XL)------------*/
/*XL*/