@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;
}

.loading-img {
  padding: 0 0 5px;
  text-align: center;
}
.loading-img img {
  width: 200px;
  height: auto;
}

.flashing {
  font-size: 1.5rem;
  color: #565656;
}

.animation-box {
  width: 400px;
  height: 4px;
  background: #C9A646;
  -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-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 {
  color: #162A40;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:visited {
  color: #162A40;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

/*■■■■■■ 汎用設定 ■■■■■■■*/
.contents-block {
  padding: 4em 0;
}

.border-bottom-dot {
  border-bottom: 2px dotted #162A40;
}

.text-title {
  margin: 0 auto 40px;
  font-size: 3.8rem;
  line-height: 1.2;
  color: #162A40;
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 2px;
}
.text-title strong {
  font-size: 4.8rem;
  font-weight: 600;
}
.text-title span {
  border-bottom: 12px solid #C9A646;
}

.text-title-en {
  margin: 0 auto 10px;
  padding: 0 0 13px;
  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;
  gap: 20px;
  font-size: 3.4rem;
  line-height: 1;
  color: #C9A646;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  position: relative;
}

.title-bar {
  display: block;
  width: 200px;
  height: 24px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#D7DDE4));
  background: linear-gradient(to right, transparent, #D7DDE4);
}

.left {
  margin: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.right {
  margin: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.text-title-jp {
  margin: 0 auto 40px;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #162A40;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #162A40;
}

.text-title-en_wh {
  margin: 0 auto 10px;
  padding: 0 0 13px;
  font-size: 5.4rem;
  line-height: 1.2;
  color: #C9A646;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  position: relative;
}

.text-title-jp_wh {
  margin: 0 auto 40px;
  font-size: 2.6rem;
  line-height: 1.2;
  color: #FFF;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.text-title-jp_wh small {
  font-size: 1.8rem;
  font-weight: 500;
}

.text-sub-title {
  margin: 20px 0 40px;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.6;
  color: #162A40;
}
.text-sub-title span {
  color: #C22C2C;
}

.text-read {
  margin: 0 0 40px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #162A40;
}
.text-read strong {
  color: #C22C2C;
  font-weight: 500;
}

.text-read_wh {
  margin: 0 0 40px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #FFF;
}
.text-read_wh strong {
  color: #C22C2C;
  font-weight: 500;
}

.bg-main {
  margin: -1px 0 0 0;
  background-color: #162A40;
  position: static;
}

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

.bg-ami-blue {
  background-color: #F7F9FC;
}

.order-pc-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-pc-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.img-center img {
  margin: 0 auto;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
.main-block {
  padding: 120px 20px 20px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  width: 100%;
  background-color: #162A40;
}

.fv-img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  background: url(../images/fv-main-img.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
.fv-img-block:after {
  content: "Image Photo";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  color: #FFF;
  text-shadow: 0 0 1px #333, 0 0 2px #333, 0 0 3px #333, 0 0 4px #333;
}

.text-img-caption {
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  color: #FFF;
  text-shadow: 0 0 2px #162A40, 0 0 4px #162A40, 0 0 6px #162A40, 0 0 8px #162A40;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.fv-title-block {
  padding: 20px 0;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fv-title {
  padding: 8px 20px;
  text-align: center;
  max-width: 700px;
  width: 100%;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 500;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
}
.fv-title strong {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

.fv-disclaimer {
  font-size: 1.6rem;
  color: #222;
  text-shadow: 0 0 2px #FFF, 0 0 4px #FFF, 0 0 6px #FFF, 0 0 8px #FFF;
}

.fv-read-block {
  padding: 20px 0;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  color: #FFF;
  gap: 10px;
}

.fv-read-en {
  font-size: 3.2rem;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  color: #C9A646;
}

.fv-read {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

a.btn-entry {
  padding: 0 15px;
  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;
  gap: 10px;
  font-size: 2.4rem;
  width: auto;
  height: 78px;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#5170C4), to(#0E3BA4));
  background: linear-gradient(to right, #5170C4, #0E3BA4);
  color: #FFF;
  font-weight: 600;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
a.btn-entry:hover {
  background: -webkit-gradient(linear, right top, left top, from(#5170C4), to(#0E3BA4));
  background: linear-gradient(to left, #5170C4, #0E3BA4);
}

.btn-position-center {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.entry-text-block {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.entry-text-block strong {
  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;
  gap: 10px;
  font-size: 2.4rem;
  font-weight: 400;
  color: #FFF;
}
.entry-text-block strong img {
  width: 40px;
  height: 40px;
}
.entry-text-block small {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
}

.entry-muryou {
  padding: 2px 5px;
  font-size: 2rem;
  line-height: 1.2;
  display: inline-block;
  border: 1px solid #FFF;
  border-radius: 3px;
}

.entry-arrow {
  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;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.6);
}

/*ベクター調整*/
.notch-bottom {
  position: relative;
  z-index: 0;
  bottom: -1px;
}

.notch-bottom svg {
  position: absolute;
  bottom: 0;
}

/*■■■■■■　＃1 ビジョン ■■■■■■■*/
.vision-flex-block {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.vision-text-box {
  display: block;
  text-align: left;
  width: 100%;
  max-width: 540px;
}

.vision-cercle-img-box {
  width: 340px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.vision-cercle-img-box:after {
  content: "Image Photo";
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  color: #FFF;
  text-shadow: 0 0 1px #333, 0 0 2px #333, 0 0 3px #333, 0 0 4px #333;
}

.vision-cercle-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/*■■■■■■■　＃2　なぜバトゥミなのか　■■■■■■*/
.why-flex-block {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.why-text-box {
  display: block;
  text-align: left;
  width: 100%;
  max-width: 420px;
}

.why-img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-irems: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.why-img-in-box {
  width: 340px;
  aspect-ratio: 6/4;
  overflow: hidden;
  background: #eee;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  border: 6px solid #FFF;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.why-img-in-box:after {
  content: "Image Photo";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  color: #FFF;
  text-shadow: 0 0 1px #333, 0 0 2px #333, 0 0 3px #333, 0 0 4px #333;
}

.why-list {
  margin: 20px 0;
}
.why-list li {
  padding: 3px 0 3px 20px;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
}
.why-list li:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background-color: #162A40;
  position: absolute;
  left: 0;
  top: 1rem;
}

/*■■■■■■ ＃3　現地拠点による運営体制 ■■■■■■■*/
.bg-geogia {
  background: url(../images/bg-geogia.jpg) center center no-repeat;
  background-size: cover;
}

.merit-block {
  margin: 0 0 40px;
  padding: 20px 30px;
  border-radius: 30px;
  border: 3px dotted #162A40;
  display: inline-block;
  background-color: #FFF;
  width: auto;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.merit-list {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}
.merit-list li {
  padding: 5px 0 5px 30px;
  position: relative;
}
.merit-list li:before {
  content: "";
  background: url(../images/dot-check.png) center center no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0.8rem;
}

/*■■■■■■■　#4 不動産事業について　■■■■■■*/
.business-box {
  margin: 0 0 40px;
  padding: 20px 30px;
  display: inline-block;
  width: auto;
  border: 3px solid #162A40;
  background-color: #F7F9FC;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.business-list li {
  padding: 5px 0 5px 30px;
  position: relative;
  font-size: 2.2rem;
  color: #162A40;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}
.business-list li:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #162A40;
  position: absolute;
  left: 0;
  top: 0.8rem;
}

/*■■■■■■■　#5 私たちの姿勢　■■■■■■*/
.apprpach-list {
  margin: 30px 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.apprpach-list li {
  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;
  background-color: #DFE3E8;
  border-radius: 6px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #162A40;
  width: 240px;
  height: 55px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

/*■■■■■■■　＃6　代表メッセージ　■■■■■■*/
.ceo-img-box {
  margin: 0 auto 40px;
  width: 340px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.ceo-img-box img {
  width: 100%;
  height: auto;
}

.text-message-block {
  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: 30px;
  width: 100%;
  max-width: 660px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.sign-box {
  margin: 60px 0 0;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.2;
}
.sign-box small {
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
}

/*■■■■■■ #7 会社概要 ■■■■■■■*/
.bg-geogia-night {
  background: url(../images/bg-geogia-night.jpg) center center no-repeat;
  background-size: cover;
}

.company-profile {
  margin: 0 auto;
  padding: 0;
  width: auto;
  border-collapse: collapse;
  border-top: 1px solid #5A6A7B;
}
.company-profile tr {
  border-bottom: 1px solid #5A6A7B;
}
.company-profile th, .company-profile td {
  padding: 15px 20px;
}
.company-profile th {
  white-space: nowrap; /*折り返ししない*/
  font-size: 1.8rem;
  line-height: 1.2;
  color: #C9A646;
  text-align: center;
}
.company-profile td {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #FFF;
  text-align: left;
}

a.btn-contact {
  padding: 0 15px;
  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;
  gap: 40px;
  font-size: 2.4rem;
  width: 100%;
  max-width: 360px;
  height: 78px;
  border-radius: 39px;
  background: -webkit-gradient(linear, left top, left bottom, from(#D66C6C), to(#C22C2C));
  background: linear-gradient(to bottom, #D66C6C, #C22C2C);
  color: #FFF;
  font-weight: 500;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
a.btn-contact:hover {
  -webkit-box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/*■■■■■■ #8 積み立て大家さんについて ■■■■■■■*/
.promo-bn-block {
  margin: -40px 0 40px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(../images/bg-fv-geogia.jpg) center center no-repeat;
  background-size: cover;
  height: 420px;
  border-bottom: 12px solid #C9A646;
}

.promo-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 620px;
  gap: 20px;
}

.from-geogia {
  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;
  color: #FFF;
  gap: 10px;
  font-size: 2rem;
}
.from-geogia img {
  width: 62px;
  height: auto;
}

a.btn-view-product {
  padding: 0 15px;
  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;
  gap: 10px;
  font-size: 2.4rem;
  width: auto;
  height: 78px;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#5170C4), to(#0E3BA4));
  background: linear-gradient(to right, #5170C4, #0E3BA4);
  color: #FFF;
  font-weight: 600;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
a.btn-view-product:hover {
  background: -webkit-gradient(linear, right top, left top, from(#5170C4), to(#0E3BA4));
  background: linear-gradient(to left, #5170C4, #0E3BA4);
}

.btn-position-center {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.product-name {
  font-size: 1.6rem;
}

.entry-text-block {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.entry-text-block strong {
  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;
  gap: 10px;
  font-size: 2.4rem;
  font-weight: 400;
  color: #FFF;
}

.entry-arrow {
  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;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.6);
}

/*■■■■■■ お問い合わせフォーム ■■■■■■■*/
.contact-wrapper {
  margin: 20px 0;
}
.contact-wrapper input, .contact-wrapper select {
  padding: 10px;
  border: 1px solid #CCC;
  font-size: 1.6rem;
  max-width: 100%;
}
.contact-wrapper textarea {
  padding: 10px;
  border: 1px solid #CCC;
  font-size: 1.6rem;
  max-width: 100%;
}
.contact-wrapper label {
  font-size: 1.6rem;
}

.mfp_rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mfp_col10 {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.must {
  margin: auto;
  display: block;
  background-color: #C00;
  border: solid 2px #C00;
  padding: 2px 3px;
  font-size: 12px;
  color: #FFF;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
}

.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%;
}

.note {
  margin: 0 0 30px;
  padding: 10px 20px;
  display: inline-block;
  background-color: #efefef;
  font-size: 1.6rem;
  border: 2px dotted #999;
  border-radius: 6px;
}

/*■■■■■■ プライバシーポリシー ■■■■■■■*/
.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 #162A40;
}
.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;
  font-weight: 600;
  background-color: #162A40;
  color: #fff;
  text-decoration: none;
}

.btn-normal:hover {
  background-color: #5A6A7B;
  color: #fff;
}

.btn-normal:link,
.btn-normal:visited,
.btn-normal:hover,
.btn-normal:active {
  color: #fff;
}

.tokushoho {
  margin: 0 auto 20px;
  padding: 0;
  width: auto;
  border-spacing: 10px;
}
.tokushoho th, .tokushoho td {
  padding: 10px 20px;
}
.tokushoho th {
  white-space: nowrap; /*折り返ししない*/
  font-size: 1.8rem;
  line-height: 1.2;
  background-color: #1B3556;
  color: #FFF;
  text-align: center;
}
.tokushoho td {
  font-size: 1.6rem;
  line-height: 1.2;
  background-color: #F7F9FC;
  text-align: left;
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■ 汎用設定(XS) ■■■■■■■*/
  .contents-block {
    padding: 2em 0;
  }
  .text-title {
    margin: 0 auto 40px;
    font-size: 2.6rem;
    line-height: 1.6;
    color: #162A40;
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 2px;
  }
  .text-title strong {
    font-size: 3.2rem;
    font-weight: 600;
  }
  .text-title span {
    border-bottom: 10px solid #C9A646;
  }
  .text-title-en {
    margin: 0 auto 10px;
    padding: 0 0 13px;
    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;
    gap: 20px;
    font-size: 3rem;
    line-height: 0.8;
    color: #C9A646;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    position: relative;
  }
  .title-bar {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 20px;
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#D7DDE4));
    background: linear-gradient(to right, transparent, #D7DDE4);
  }
  .left {
    margin: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .right {
    margin: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .text-title-jp {
    font-size: 2.2rem;
    text-align: center;
  }
  .text-title-en_wh {
    font-size: 4rem;
  }
  .text-title-jp_wh {
    font-size: 2.4rem;
  }
  .text-sub-title {
    margin: 20px 0 40px;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
    color: #162A40;
  }
  .text-sub-title span {
    color: #C22C2C;
  }
  .text-read {
    font-size: 4vw;
  }
  .text-read_wh {
    font-size: 4vw;
  }
  /*■■■■■■ CONTENTS MAIN(XS) ■■■■■■■*/
  .main-block {
    padding: 100px 20px 20px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
    width: 100%;
    background-color: #162A40;
  }
  .fv-img-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    background: url(../images/fv-main-img.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
  }
  .fv-img-block:after {
    content: "Image Photo";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1rem;
    line-height: 1.2;
    font-family: "Noto Serif JP", serif;
    color: #FFF;
    text-shadow: 0 0 1px #333, 0 0 2px #333, 0 0 3px #333, 0 0 4px #333;
  }
  .text-img-caption {
    font-size: 1rem;
    line-height: 1.2;
    font-family: "Noto Serif JP", serif;
    color: #FFF;
    text-shadow: 0 0 2px #162A40, 0 0 4px #162A40, 0 0 6px #162A40, 0 0 8px #162A40;
    position: absolute;
    bottom: 15px;
    right: 15px;
  }
  .fv-title-block {
    padding: 20px 0;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fv-title {
    padding: 8px 20px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 500;
    color: #FFF;
    font-family: "Noto Serif JP", serif;
  }
  .fv-title strong {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
  }
  .fv-disclaimer {
    font-size: 1.6rem;
    color: #222;
    text-shadow: 0 0 2px #FFF, 0 0 4px #FFF, 0 0 6px #FFF, 0 0 8px #FFF;
  }
  .fv-read-block {
    padding: 20px 0;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    color: #FFF;
    gap: 10px;
  }
  .fv-read-en {
    font-size: 2.6rem;
    line-height: 1.2;
    font-family: "Noto Serif JP", serif;
    color: #C9A646;
    text-align: center;
  }
  .fv-read {
    font-size: 4.4vw;
  }
  /*■■■■■■ ＃1　ビジョン (XS) ■■■■■■■*/
  .vision-text-box p {
    font-size: 3.8vw;
  }
  /*■■■■■■ ＃2　なぜジョージアなのか (XS) ■■■■■■■*/
  .why-text-box p {
    font-size: 3.8vw;
  }
  .why-list li {
    font-size: 4vw;
  }
  /*■■■■■■ ＃3　現地拠点による運営体制 (XS) ■■■■■■■*/
  .bg-geogia {
    background: url(../images/bg-geogia.jpg) center right no-repeat;
    background-size: cover;
  }
  .merit-block {
    margin: 0 0 40px;
    padding: 20px 30px;
    border-radius: 30px;
    border: 3px dotted #162A40;
    display: inline-block;
    background-color: #FFF;
    width: auto;
    -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
            box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  }
  .merit-list {
    font-size: 4.8vw;
  }
  /*■■■■■■■　#4 不動産事業について (XS)　■■■■■■*/
  .business-box {
    margin: 0 0 40px;
    padding: 15px 20px;
    display: inline-block;
    width: auto;
    border: 3px solid #162A40;
    background-color: #F7F9FC;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  }
  .business-list li {
    font-size: 4.8vw;
  }
  /*■■■■■■■　＃5　代表メッセージ　■■■■■■*/
  .ceo-img-box {
    margin: 0 auto 40px;
    width: 260px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
  }
  .ceo-img-box img {
    width: 100%;
    height: auto;
  }
  .text-message-block p {
    font-size: 1.5rem;
  }
  /*■■■■■■ #7 会社概要(XS) ■■■■■■■*/
  .company-profile th, .company-profile td {
    padding: 0;
    width: 100%;
    display: block;
  }
  .company-profile th {
    padding: 15px 20px 5px;
  }
  .company-profile td {
    padding: 5px 20px 15px;
    text-align: center;
  }
  a.btn-contact {
    font-size: 2.4rem;
    width: 100%;
    max-width: 280px;
    height: 60px;
    border-radius: 30px;
  }
  /*■■■■■■ #8 積み立て大家さんについて(XS) ■■■■■■■*/
  .promo-bn-block {
    margin: -20px 0 20px;
    padding: 20px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: url(../images/bg-fv-geogia.jpg) center center no-repeat;
    background-size: cover;
    height: 320px;
    border-bottom: 12px solid #C9A646;
  }
  .promo-text-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 620px;
    gap: 20px;
  }
  .from-geogia {
    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;
    color: #FFF;
    gap: 10px;
    font-size: 2rem;
  }
  .from-geogia img {
    width: 62px;
    height: auto;
  }
  a.btn-view-product {
    padding: 0 15px;
    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;
    gap: 10px;
    font-size: 5vw;
    width: auto;
    height: 64px;
    border-radius: 6px;
    background: -webkit-gradient(linear, left top, right top, from(#5170C4), to(#0E3BA4));
    background: linear-gradient(to right, #5170C4, #0E3BA4);
    color: #FFF;
    font-weight: 600;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  }
  a.btn-view-product:hover {
    background: -webkit-gradient(linear, right top, left top, from(#5170C4), to(#0E3BA4));
    background: linear-gradient(to left, #5170C4, #0E3BA4);
  }
  .product-name {
    font-size: 3.4vw;
  }
  .btn-position-center {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .entry-text-block {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .entry-text-block strong {
    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;
    gap: 10px;
    font-size: 2.4rem;
    font-weight: 400;
    color: #FFF;
  }
  .entry-arrow {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*■■■■■■ 汎用設定(SM) ■■■■■■■*/
  .contents-block {
    padding: 2em 0;
  }
  .text-title {
    margin: 0 auto 40px;
    font-size: 2.6rem;
    line-height: 1.6;
    color: #162A40;
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 2px;
  }
  .text-title strong {
    font-size: 3.2rem;
    font-weight: 600;
  }
  .text-title span {
    border-bottom: 10px solid #C9A646;
  }
  .text-title-en {
    font-size: 3.6rem;
    text-align: center;
  }
  .text-title-jp {
    font-size: 2.4rem;
    text-align: center;
  }
  .text-title-en_wh {
    font-size: 4rem;
  }
  .text-title-jp_wh {
    font-size: 2.4rem;
  }
  .text-sub-title {
    margin: 20px 0 40px;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
    color: #162A40;
  }
  .text-sub-title span {
    color: #C22C2C;
  }
  .text-read {
    margin: 0 0 40px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
    color: #162A40;
  }
  .text-read strong {
    color: #C22C2C;
    font-weight: 500;
  }
  /*■■■■■■ CONTENTS MAIN(SM) ■■■■■■■*/
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*■■■■■■ 汎用　(MD) ■■■■■■■*/
  .order-sp-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sp-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
/*------------(LG)------------*/
@media (min-width: 1024px) and (max-width: 1215px) {
  .hamburger {
    display: none;
  }
}
/*------------(XL)------------*/
@media (min-width: 1216px) {
  .hamburger {
    display: none;
  }
}