@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　カスタム設定(style.css)ver.1 2022.10.05
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*ワインレッド*/
/*薄いグレー*/
/*エメラルドグリーン*/
/*濃いグレー*/
/*■■■■■■ loading ■■■■■■■*/
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #FFF;
  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: 1px;
  background: #2ECC71;
  -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: #800020;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

/*■■■■■■ 汎用設定 ■■■■■■■*/
.bg-base {
  background-color: #d9dcde;
  width: 100%;
  padding: 40px 0;
}

.spacer {
  display: block;
  width: 100%;
  height: 40px;
}

/*■■■■■■■ MAIN IMG ■■■■■■*/
.bg-main {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgb(243, 128, 197)), to(rgb(255, 1, 153)));
  background-image: linear-gradient(180deg, rgb(243, 128, 197) 30%, rgb(255, 1, 153));
  color: #FFF;
}

.header-img-block_s {
  width: 100%;
  height: 0;
  margin: 0;
  padding: 28.125% 0 0 0;
  position: relative;
}

.bg-contact-img {
  background: url(../images/bg-contact.jpg) center center no-repeat;
  background-size: cover;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh; /* ビューポート全体の高さ */
}

/* ヘッダー画像のブロック */
.header-main-img-block {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 余ったスペースを埋める */
  width: 100%;
  background: url(../images/main-img.jpg) center no-repeat;
  background-size: cover;
  position: relative;
}

/*画像上文字*/
.head-main-read {
  color: #FFF;
  font-size: 3.8rem;
  line-height: 1.4;
  font-weight: 600;
  position: absolute;
  top: 20%;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  display: block;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 10px #000;
}

/*アイキャッチ*/
.header-eye-catch {
  position: absolute;
  left: 50%;
  bottom: 10%;
  max-width: 1280px;
  width: 90vw;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 12%;
}
.header-eye-catch li {
  color: #FFF;
  font-size: 3.8rem;
  font-weight: 800;
  display: block;
}
.header-eye-catch li span {
  padding: 5px 100px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(46, 204, 113, 0)), color-stop(30%, #2ECC71), color-stop(70%, #2ECC71), to(rgba(46, 204, 113, 0)));
  background: linear-gradient(to right, rgba(46, 204, 113, 0) 0%, #2ECC71 30%, #2ECC71 70%, rgba(46, 204, 113, 0) 100%);
}

/*アイキャッチ(英語版)*/
.header-eye-catch_eng {
  position: absolute;
  left: 50%;
  bottom: 10%;
  max-width: 1280px;
  width: 90vw;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 12%;
}
.header-eye-catch_eng li {
  color: #FFF;
  font-size: 2.8rem;
  font-weigh: 500;
  display: block;
}
.header-eye-catch_eng li span {
  padding: 5px 100px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(46, 204, 113, 0)), color-stop(30%, #2ECC71), color-stop(70%, #2ECC71), to(rgba(46, 204, 113, 0)));
  background: linear-gradient(to right, rgba(46, 204, 113, 0) 0%, #2ECC71 30%, #2ECC71 70%, rgba(46, 204, 113, 0) 100%);
}

/*ジョージア国旗*/
.eye-c-flag {
  position: absolute;
  bottom: 30%;
  z-index: 100;
}
.eye-c-flag img {
  width: 240px;
  height: auto;
}

/*フェードインメインイメージ用*/
.fade-item {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

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

/*■■■■■■ 汎用 ■■■■■■■*/
.contents-block {
  margin: 0;
  padding: 0;
}

.text-title {
  top: -30px;
  margin: 0 auto 0;
  padding: 0 100px 5px;
  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;
  height: 60px;
  background-color: #800020;
  border-radius: 2px;
  color: #fff;
  font-weight: 800;
  position: relative;
}

.text-title:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: -89px;
  top: 0;
  border-style: solid;
  border-width: 30px 45px;
  border-color: transparent #800020 transparent transparent;
}

.text-title:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: -89px;
  top: 0;
  border-style: solid;
  border-width: 30px 45px;
  border-color: transparent transparent transparent #800020;
}

.scroll-anchor {
  position: relative;
  top: -110px; /* ヘッダー＋ずらした見出し分 */
  height: 1px;
  visibility: hidden;
}

/*■■■■■■ ビジョン ■■■■■■■*/
.bg-vision {
  height: 100vh;
  background: url(../images/vision-img.jpg) center center no-repeat;
  cackgroound-size: cover;
}

.vision-title {
  margin: 60px 0 0;
  color: #FFF;
  font-size: 4rem;
  font-weight: 800;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.vision-read {
  margin: 20px 0 110px;
  font-size: 1.8rem;
  color: #FFF;
  font-weight: 600;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/*■■■■■■ 事業内容 ■■■■■■■*/
.product-flex-box {
  margin: 30px 0 60px;
  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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.product-card {
  padding: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(150, 150, 150, 0.1);
  border: 6px solid #800020;
  width: auto;
  height: 100%;
  gap: 40px;
}
.product-card img {
  margin: auto;
  width: 140px;
  height: auto;
}

.product-card__title {
  margin: 20px auto;
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 800;
  color: #800020;
  display: inline-block;
}
.product-card__title small {
  font-size: 2.2rem;
}

.product-card__description {
  margin: auto;
  padding: 0 0 0 1.8rem;
  text-align: left;
  font-size: 1.7rem;
  font-weight: 600;
  width: auto;
  display: inline-block;
}
.product-card__description li {
  margin: 10px 0;
  line-height: 1.2;
  position: relative;
  text-indent: -1.2em;
}
.product-card__description li span {
  display: inline-block;
  font-weight: 400;
  font-size: 1.6rem;
  text-indent: 0;
}
.product-card__description li:before {
  content: "● ";
  color: #800020;
}

/*弁護士・会計事務所のサポート*/
.support-block {
  margin: 0 0 110px;
  padding: 20px;
  border: 3px solid #BDC3C7;
  border-radius: 6px;
}

.support-title {
  margin: 0 0 20px;
  padding: 5px;
  display: block;
  width: 100%;
  height: auto;
  background-color: #BDC3C7;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
}

.support-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.support-hr span {
  display: block;
  width: 1px;
  height: 100%;
  background-color: #333333;
}

.support-link-box {
  padding: 0;
  font-size: 1.3rem;
  text-align: center;
}
.support-link-box strong {
  font-size: 2.4rem;
  font-weight: 800;
  color: #800020;
  display: inline-block;
}

.list-disc {
  margin: 10px 0;
  padding: 0 0 0 2rem;
  display: inline-block;
  list-style-type: disc;
}

/*■■■■■■ お客様の声 ■■■■■■■*/
.case-flex-box {
  margin: 60px 0 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 0;
}

.case-card {
  padding: 0 15px 30px;
  background-color: #FFF;
  border: 3px solid #BDC3C7;
  width: 100%;
  height: 100%;
  position: relative;
}

.case-genre {
  top: -15px;
  margin: 0;
  padding: 0 20px 2px;
  height: 30px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: #FFF;
  background-color: #333333;
  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;
  position: relative;
}

.case-summary {
  margin: 5px 0 20px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #333333;
}

.case-price {
  padding: 6px 0;
  font-size: 2rem;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}

.case-detail {
  margin: 20px 10px 0;
  padding: 0;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
}

/*■■■■■■ よくある質問 ■■■■■■■*/
.faq-box {
  margin: 30px auto 90px;
  display: inline-block;
}
.faq-box dt, .faq-box dd {
  text-align: left;
}
.faq-box dt.text-qs {
  padding: 15px 15px 10px 60px;
  position: relative;
  color: #800020;
  font-weight: 800;
  font-size: 2rem;
  border-top: 3px solid #BDC3C7;
  border-left: 3px solid #BDC3C7;
  border-right: 3px solid #BDC3C7;
  border-radius: 10px 10px 0 0;
}
.faq-box dt.text-qs:before {
  margin: 0 10px 0 0;
  content: "Q";
  color: #FFF;
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 20px;
  background-color: #800020;
  text-align: center;
  font-family: "Poppins";
  font-weight: 600;
  position: absolute;
  left: 14px;
  top: 14px;
}
.faq-box dd.text-an {
  margin: 0 0 20px;
  padding: 10px 15px 15px 60px;
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
  border-bottom: 3px solid #BDC3C7;
  border-left: 3px solid #BDC3C7;
  border-right: 3px solid #BDC3C7;
  border-radius: 0 0 10px 10px;
}
.faq-box dd.text-an:before {
  margin: 0 10px 0 0;
  content: "A";
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 20px;
  background-color: #2ECC71;
  text-align: center;
  font-family: "Poppins";
  font-weight: 600;
  position: absolute;
  left: 14px;
  top: 9px;
}

/*■■■■■■ Dot.10グループ 会社紹介 ■■■■■■■*/
.group-title {
  margin: 20px 0 15px;
  font-size: 2.8rem;
  font-weight: 800;
  color: #800020;
  display: block;
}

.sub-title {
  padding: 0 40px 2px;
  margin: 0 auto 20px;
  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;
  background-color: #333333;
  color: #FFF;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  position: relative;
  height: 44px;
  border-radius: 2px;
}

.sub-title:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: -67px;
  top: 0;
  border-style: solid;
  border-width: 22px 34px;
  border-color: transparent #333333 transparent transparent;
}

.sub-title:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: -67px;
  top: 0;
  border-style: solid;
  border-width: 22px 34px;
  border-color: transparent transparent transparent #333333;
}

.group-card {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 縦に積む */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* タイトル→リスト の順で縦に並べる */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* ← これで上揃え */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /* オプション：縦方向の上寄せ */
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #800020;
  border-radius: 10px;
  width: auto;
  height: 100%;
  gap: 10px;
}
.group-card a {
  margin: auto;
}

.group-card__title {
  margin: 10px auto 0;
  padding: 0 0 5px 0;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #800020;
  display: block;
  text-align: center;
  border-bottom: 3px solid #800020;
  width: 100%;
}
.group-card__title span {
  font-size: 1.2rem;
}

.group-card__description {
  margin: 0;
  padding: 0 0 0 1.8rem;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 400;
  width: auto;
  display: inline-block;
}
.group-card__description li {
  margin: 10px 0;
  line-height: 1.2;
  position: relative;
  text-indent: -1.2em;
}
.group-card__description li span {
  display: inline-block;
  font-weight: 400;
  font-size: 1.6rem;
  text-indent: 0;
}
.group-card__description li:before {
  content: "● ";
  color: #800020;
}

.group-motto {
  margin: 10px auto;
}
.group-motto li {
  padding: 5px 10px;
  font-size: 2rem;
  font-weight: 600;
}
.group-motto li span {
  border-bottom: 3px solid #2ECC71;
  font-weight: 800;
  font-size: 2.4rem;
}

.group-motto-future {
  margin: 40px 0 90px;
  font-size: 2.4rem;
  font-weight: 600;
}
.group-motto-future span {
  font-weight: 800;
  border-bottom: 3px solid #2ECC71;
}

.bg-geogia {
  background: url("../images/bg-geogia.jpg") center center no-repeat;
  background-size: cover;
}

/*■■■■■■ 会社概要 ■■■■■■■*/
.company-box {
  margin: 30px auto 90px;
  widht: auto;
  font-size: 1.8rem;
  border-collapse: collapse;
}
.company-box th {
  padding: 15px;
  color: #333333;
  text-align: center;
  font-weight: 800;
}
.company-box td {
  padding: 15px;
  text-align: left;
  font-weight: 500;
  border-left: 1px solid #333333;
}
.company-box td br {
  display: none;
}

/*■■■■■■ CONTACT ページ ■■■■■■■*/
.contact-block {
  margin: 0 0 40px;
  padding: 0;
}

/*■■■■■■ メールフォーム ■■■■■■■*/
.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%;
}

/*■■■■■■ プライバシーポリシー ■■■■■■■*/
.pp-box {
  margin: 20px 0;
}
.pp-box dt {
  margin: 10px 0 5px;
  font-size: 1.8rem;
  display: inline-block;
}
.pp-box dd {
  padding: 0 0 15px;
  margin: 0 0 15px 0;
  border-bottom: 1px solid #800020;
}
.pp-box dd ul {
  margin: 10px 0 0 2rem;
  list-style-type: disc;
}

.btn-normal {
  margin: 10px auto;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5rem;
  background-color: #CCC;
  font-weight: 600;
}

.btn-normal:hover {
  background-color: #800020;
  color: #FFF;
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■ メインイメージ（XS） ■■■■■■■*/
  .main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 150vh; /* ビューポート全体の高さ */
  }
  /* ヘッダー画像のブロック */
  .header-main-img-block {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; /* 余ったスペースを埋める */
    width: 100%;
    background: url(../images/main-img.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
  }
  .header-img-block_s {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 100% 0 0 0;
    position: relative;
  }
  /*画像上文字*/
  .head-main-read {
    padding: 0 15px;
    font-size: 6vw;
    top: 40vh;
  }
  /*アイキャッチ*/
  .header-eye-catch {
    bottom: 5vh;
    width: 100%;
    gap: 20px 0;
  }
  .header-eye-catch li {
    font-size: 2.4rem;
  }
  .header-eye-catch li span {
    padding: 5px 60px;
  }
  /*アイキャッチ*/
  .header-eye-catch_eng {
    bottom: 5vh;
    width: 100%;
    gap: 20px 0;
  }
  .header-eye-catch_eng li {
    font-size: 1.6rem;
  }
  .header-eye-catch_eng li span {
    padding: 5px 60px;
  }
  /*ジョージア国旗*/
  .eye-c-flag {
    position: absolute;
    bottom: 100%;
    z-index: 100;
  }
  .eye-c-flag img {
    width: 200px;
    height: auto;
  }
  /*コンテンツタイトル（XS）*/
  .text-title {
    top: -24px;
    margin: 0 auto 0;
    padding: 0 20px 5px;
    height: 48px;
    font-size: 2.2rem;
  }
  .text-title small {
    font-size: 1.2rem;
  }
  .text-title:before {
    left: -63px;
    border-width: 24px 32px;
  }
  .text-title:after {
    right: -63px;
    border-width: 24px 32px;
  }
  /*■■■■■■ ビジョン ■■■■■■■*/
  .vision-title {
    font-size: 3.6rem;
  }
  .vision-read {
    margin: 20px 0 110px;
    padding: 0 15px;
    font-size: 1.7rem;
  }
  /*■■■■■■ 事業内容（XS） ■■■■■■■*/
  .product-flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0 50px;
    gap: 30px 0;
  }
  .product-card {
    padding: 30px 15px;
    background: rgba(150, 150, 150, 0.1);
    border: 5px solid #800020;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100%;
  }
  .product-card img {
    width: 100px;
  }
  .product-card__title {
    margin: auto;
    font-size: 2.4rem;
    text-align: center;
  }
  .product-card__title small {
    font-size: 1.8rem;
  }
  .product-card__description {
    margin: auto;
    padding-left: 3rem;
    font-size: 1.6rem;
    width: auto;
    display: inline-block;
  }
  .product-card__description li {
    width: auto;
  }
  .product-card__description li span {
    font-size: 1.4rem;
  }
  /*弁護士・会計事務所のサポート(XS)*/
  .support-block {
    margin: 0 0 90px;
    padding: 20px;
    border: 3px solid #BDC3C7;
    border-radius: 6px;
  }
  .support-title {
    font-size: 1.8rem;
  }
  .support-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .support-hr span {
    width: 100%;
    height: 1px;
  }
  .support-link-box {
    padding: 0;
    text-align: center;
  }
  .support-link-box strong {
    display: block;
  }
  /*■■■■■■ お客様の声(XS) ■■■■■■■*/
  .case-flex-box {
    margin: 40px 0 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 0;
  }
  .case-genre {
    top: -15px;
    margin: 0;
    padding: 6px 20px 8px;
    height: auto;
    font-size: 1.4rem;
  }
  .case-summary {
    font-size: 2rem;
  }
  .case-price {
    padding: 6px 0;
    font-size: 2rem;
  }
  .case-detail {
    margin: 20px 10px 0;
    padding: 0;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 400;
  }
  /*■■■■■■ Dot.10グループ 会社紹介（XS） ■■■■■■■*/
  .group-title {
    margin: 20px 0 15px;
    font-size: 2.2rem;
  }
  .sub-title {
    padding: 0 15px 2px;
    font-size: 1.6rem;
  }
  .group-motto {
    margin: 10px auto;
  }
  .group-motto li {
    padding: 5px 10px;
    font-size: 2rem;
    font-weight: 600;
  }
  .group-motto li span {
    border-bottom: 3px solid #2ECC71;
    font-weight: 800;
    font-size: 2.2rem;
    display: inline-block;
  }
  .group-motto-future {
    margin: 40px 0 90px;
    font-size: 2.2rem;
    font-weight: 600;
  }
  .group-motto-future span {
    font-weight: 800;
    border-bottom: 3px solid #2ECC71;
    display: inline-block;
  }
  /*■■■■■■ 会社概要(XS) ■■■■■■■*/
  .company-box {
    margin: 20px auto 60px;
    widht: auto;
    font-size: 1.8rem;
  }
  .company-box th {
    padding: 10px 0 0;
    color: #333333;
    text-align: center;
    display: block;
  }
  .company-box td {
    padding: 0 0 10px;
    text-align: center;
    font-weight: 400;
    display: block;
    font-size: 1.6rem;
    border-left: 0 solid #333333;
    border-bottom: 1px solid #333333;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*■■■■■■ メインイメージ（SM） ■■■■■■■*/
  .main-container {
    height: 130vh; /* ビューポート全体の高さ */
  }
  /*画像上文字*/
  .head-main-read {
    padding: 0 15px;
    font-size: 3.6rem;
    top: 30vh;
  }
  /*アイキャッチ*/
  .header-eye-catch {
    bottom: 10vh;
    width: 100%;
    gap: 20px 0;
  }
  .header-eye-catch li {
    font-size: 2.8rem;
  }
  .header-eye-catch li span {
    padding: 5px 80px;
  }
  /*ジョージア国旗*/
  .eye-c-flag img {
    width: 180px;
    height: auto;
  }
  /*コンテンツタイトル（XS）*/
  .text-title {
    top: -30px;
    margin: 0 auto 0;
    padding: 0 60px 5px;
    height: 60px;
    font-size: 2.4rem;
  }
  .text-title:before {
    left: -89px;
    border-width: 30px 45px;
  }
  .text-title:after {
    right: -89px;
    border-width: 30px 45px;
  }
  /*■■■■■■ 事業内容（SM） ■■■■■■■*/
  .product-flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0 50px;
    gap: 30px 0;
  }
  .product-card {
    padding: 30px 15px;
    background: rgba(150, 150, 150, 0.1);
    border: 5px solid #800020;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0 20px;
    width: 100%;
    height: 100%;
  }
  .product-card img {
    width: 140px;
  }
  .product-card__title {
    font-size: 3.4rem;
  }
  .product-card__title small {
    font-size: 1.8rem;
  }
  .product-card__description {
    margin: auto;
    font-size: 1.6rem;
    width: auto;
    display: inline-block;
  }
  /*弁護士・会計事務所のサポート(XS)*/
  .support-block {
    margin: 0 0 90px;
  }
  .support-title {
    font-size: 2.2rem;
  }
  .support-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .support-hr span {
    width: 100%;
    height: 1px;
  }
  .support-link-box {
    padding: 0;
    text-align: center;
  }
  .support-link-box strong {
    display: block;
  }
  /*■■■■■■ 会社概要(SM) ■■■■■■■*/
  .company-box {
    margin: 20px auto 60px;
    widht: auto;
    font-size: 1.8rem;
  }
  .company-box th {
    padding: 10px 0 0;
    color: #333333;
    text-align: center;
    display: block;
  }
  .company-box td {
    padding: 0 0 10px;
    text-align: center;
    font-weight: 400;
    display: block;
    font-size: 1.6rem;
    border-left: 0 solid #333333;
    border-bottom: 1px solid #333333;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*■■■■■■ メインイメージ（MD） ■■■■■■■*/
  /*画像上文字*/
  .head-main-read {
    font-size: 2.6rem;
  }
  /*アイキャッチ*/
  .header-eye-catch {
    bottom: 10%;
    width: 100%;
    gap: 20px 12%;
  }
  .header-eye-catch li {
    font-size: 3.2rem;
  }
  .header-eye-catch li span {
    padding: 5px 100px;
  }
  /*ジョージア国旗*/
  .eye-c-flag {
    position: absolute;
    bottom: 30%;
    z-index: 100;
  }
  .eye-c-flag img {
    width: 220px;
    height: auto;
  }
  /*■■■■■■ 事業内容（MD） ■■■■■■■*/
  .product-flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 0;
  }
  .product-card {
    padding: 30px 15px;
    background: rgba(150, 150, 150, 0.1);
    border: 5px solid #800020;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0 20px;
    width: 100%;
    height: 100%;
  }
  .product-card img {
    width: 140px;
  }
  /*弁護士・会計事務所のサポート*/
  .support-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .support-hr span {
    width: 100%;
    height: 1px;
  }
  .support-link-box {
    padding: 0;
    font-size: 1.3rem;
    text-align: center;
  }
  .support-link-box strong {
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
    color: #800020;
  }
} /*MD*/
/*------------(LG)------------*/
@media (min-width: 1024px) and (max-width: 1215px) {
  .product-card {
    padding: 30px 15px;
    background: rgba(150, 150, 150, 0.1);
    border: 5px solid #800020;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0 20px;
    width: 100%;
    height: 100%;
  }
  .product-card img {
    width: 140px;
  }
} /*LG*/
/*------------(XL)------------*/
/*XL*/