@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: #FF0199;
  -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: #F380C5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

/*■■■■■■ 汎用設定 ■■■■■■■*/
/*■■■■■■■ MAIN IMG ■■■■■■*/
.bg-pink {
  background-color: #F8B4DC;
}

.bg-pink-gra {
  background-color: #F8B4DC;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8B4DC), to(#FFF));
  background: linear-gradient(to bottom, #F8B4DC, #FFF); /* グラデーション背景 */
}

/*■■■■■■ 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.png) center center no-repeat;
  background-size: cover;
  position: relative;
}

/*画像上文字*/
.head-main-title {
  padding: 10px;
  color: #FFF;
  font-size: 6.2rem;
  line-height: 1.4;
  font-weight: 600;
  display: inline-block;
  width: auto;
  text-align: center;
  letter-spacing: 6px;
  white-space: nowrap;
}

.main-title-block {
  position: absolute;
  left: 50%;
  top: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.head-main-title {
  margin: 0;
  font-size: 6.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 15px #000;
}

/* リード部分のブロック */
.read-contents-block {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 20px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 1, 153, 0.5)), to(rgba(94, 85, 212, 0.5)));
  background: linear-gradient(to right, rgba(255, 1, 153, 0.5), rgba(94, 85, 212, 0.5)); /* 半透明グラデーション */
  color: #222;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.main-read {
  font-size: 2.4rem;
  color: #FFF;
  font-weight: 700;
}

.contents-block {
  margin: 40px 0;
  padding: 0;
}

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

/*■■■■■■ 共通 ■■■■■■■*/
/*ワールドアイコンタイトル*/
.text-title {
  margin: 30px 0;
  padding: 0 0 0 89px;
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.text-title span {
  position: relative;
  z-index: 1;
}

.text-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px; /* テキストの下に配置 */
  width: 100%;
  height: 6px; /* 高さ指定 */
  background: -webkit-gradient(linear, left top, right top, from(#FF0199), to(#5E55D4));
  background: linear-gradient(to right, #FF0199, #5E55D4);
  border-radius: 3px; /* 角丸 */
  z-index: -1;
}

.text-title::before {
  content: "";
  display: block;
  width: 75px;
  height: 64px;
  background: url(../images/icon-world_2.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 8px;
}

.text-sub-title {
  font-size: 2rem;
  font-weight: 400;
}
.text-sub-title strong {
  font-size: 2.6rem;
  font-weight: 700;
}

/*■■■■■■ About Re:Liveナビとは？ ■■■■■■■*/
.about--cercle-text {
  margin: 20px auto;
  padding: 16px 60px;
  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: auto;
  background: -webkit-gradient(linear, left top, right top, from(#FBD2EA), to(#FFA3DA));
  background: linear-gradient(to right, #FBD2EA, #FFA3DA); /* グラデーション背景 */
  color: #FF0199;
  font-size: 3.8rem;
  font-weight: bold;
  border-radius: 50%;
}

.about-flex-box {
  margin: 20px auto;
  padding: 0 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;
  gap: 0 32px;
}

.cercle-img-box {
  display: inline-block;
  width: 280px;
  height: 280px;
  min-width: 280px;
  border-radius: 140px;
}

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

.text-read {
  font-size: 1.8rem;
}

.about--dot-line-box {
  margin: 30px auto;
  padding: 32px;
  border: 3px dotted #46418D;
  border-radius: 24px;
}

.about--in-title {
  font-size: 4rem;
  font-weight: 700;
  color: #FF0199;
}

.sub-title {
  font-size: 2rem;
  font-weight: 500;
}
.sub-title span {
  background: linear-gradient(to top, #FFF176 7px, transparent 0);
  /* 下7pxだけ塗るグラデーション */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone; /* Safari対応 */
}

.about--list {
  margin: 16px auto;
  display: inline-block;
}
.about--list th {
  padding: 5px 15px;
  font-size: 2.2rem;
  font-weight: 700;
  vertical-align: middle;
  color: #46418D;
}
.about--list th strong {
  margin: 0 10px 0 0;
  color: #FF0199;
}
.about--list td {
  padding: 5px 15px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
}

.btn-title-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;
}

.btn-title {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px #FFF;
}

.title-line_s {
  width: 30px;
  height: 2px;
  background-color: #222;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-filter: drop-shadow(#FFF 0 0 0.3rem);
          filter: drop-shadow(#FFF 0 0 0.3rem);
}

.title-line_s.left {
  margin-top: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.title-line_s.right {
  margin-top: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn-block {
  margin: 10px auto;
  display: block;
  width: 100%;
  text-align: center;
}
.btn-block a {
  padding: 10px 50px 10px 20px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  color: #FFF;
  font-size: 2.6rem;
  font-weight: 700;
  border-radius: 1.2rem;
  background-color: #7BDFB7;
  position: relative;
}
.btn-block a span {
  position: relative;
  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: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #2BB47D;
  font-size: 2rem;
  line-height: 1.2;
}
.btn-block a span small {
  font-size: 1.3rem;
  font-weight: bolc;
}
.btn-block a span::after {
  content: "";
  margin-bottom: -6px;
  width: 0;
  height: 0;
  position: absolute;
  right: -23px;
  bottom: 50%;
  border-style: solid;
  border-width: 6px 12px;
  border-color: transparent transparent transparent #2BB47D;
}
.btn-block a:hover {
  background-color: #4ED29D;
}
.btn-block a:before {
  content: "";
  margin-bottom: -12px;
  width: 0;
  height: 0;
  position: absolute;
  right: 0px;
  bottom: 50%;
  border-style: solid;
  border-width: 12px 18px;
  border-color: transparent transparent transparent #FEF038;
}

.btn-sub-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: #5E55D4;
}

/*V字仕切り*/
.v-divider--invert {
  position: relative;
  height: 160px;
  background: #F8B4DC;
  overflow: hidden;
}

.v-divider--invert::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}

/*■■■■■■ 事業内容 ■■■■■■■*/
.product-flex-box {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-card {
  padding: 0 30px 30px;
  background-color: #FFF;
  border: 3px solid #FF0199;
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(#BC77A0 3px 3px 0.3rem);
          filter: drop-shadow(#BC77A0 3px 3px 0.3rem);
}
.product-card img {
  width: 140px;
}

.product-title {
  margin-top: -35px;
  margin-bottom: 10px;
  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: 10px 0;
  font-size: 2rem;
  font-weight: 700;
}
.product-title span {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: #FF0199;
  color: #FFF;
  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;
}
.product-title span small {
  font-size: 1.2rem;
  line-height: 1;
  font-family: Arial;
}
.product-title span strong {
  font-size: 4rem;
  line-height: 1;
  font-family: Arial;
  font-weight: 700;
}

.product--cercle-img-box {
  display: inline-block;
  width: 220px;
  height: 220px;
  min-width: 220px;
  border-radius: 110px;
}

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

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

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

.product-card__title {
  margin: 20px 0;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #FF0199;
}

.product-card__read {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
}

/*S字ベジェ*/
.wave-divider {
  line-height: 0;
}

.wave-divider svg {
  top: -1px;
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

/*■■■■■■ 主催者紹介 ■■■■■■■*/
.bg-organizer {
  background: url(../images/kiyo-img.jpg) center center no-repeat;
  background-size: cover;
}

.organizer-flex-box {
  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;
}

.organizer-name-box {
  margin: auto auto 16px 0;
  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: start;
}

.organizer-name {
  font-size: 3rem;
  font-weight: 500;
  color: #222;
  font-family: Arial;
  display: inline-block;
}

.sns-icon-box {
  margin: 0 auto 0 20px;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns-icon-box li {
  margin: 0 5px;
}
.sns-icon-box li a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sns-icon-box li a img {
  width: 22px;
  height: auto;
}

.sns-icon-box a:link, .sns-icon-box a:visited {
  background-color: #222;
}

.sns-icon-box a:hover, .sns-icon-box a:active {
  background-color: #FF0199;
}

.organizer-text-read {
  font-size: 1.7rem;
  text-align: left;
}

/*■■■■■■ 申し込みの流れ ■■■■■■■*/
.bg-step {
  background-color: #E7E5F9;
  background: -webkit-gradient(linear, left top, left bottom, from(#E7E5F9), to(#FFF));
  background: linear-gradient(to bottom, #E7E5F9, #FFF); /* グラデーション背景 */
}

.step-flex-box {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.step-box {
  margin: 0;
  background-color: #FFF;
  border: 2px solid #FF0199;
  text-align: left;
  width: 100%;
  height: 100%;
}

.step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F380C5;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  position: relative;
}
.step-title span {
  margin: 0 16px 0 0;
  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;
  background-color: #FF0199;
  width: 60px;
  height: 60px;
}
.step-title span small {
  font-size: 1.2rem;
  line-height: 1;
  font-family: Arial;
}
.step-title span strong {
  font-size: 3rem;
  line-height: 1;
  font-family: Arial;
  font-weight: 700;
}
.step-title :after {
  content: "";
  margin-bottom: -12px;
  margin-right: -2px;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  bottom: 50%;
  border-style: solid;
  border-width: 12px 20px;
  border-color: transparent transparent transparent #FF0199;
}

.step-read {
  padding: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}

/*Slack 導入*/
.slack-block {
  margin: 40px 0 60px;
  padding: 30px;
  display: block;
  width: 100%;
  background-color: #FFF;
  border: 3px dotted #5E55D4;
  border-radius: 17px;
}

.slack-title-block {
  margin: 0 0 30px;
  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: 0 30px;
}

.slack-title {
  margin: auto \a uto;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
.slack-title span {
  margin: 0 10px 0 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-size: 2.2rem;
  line-height: 1;
  background-color: #9E99E5;
}

.slack-read {
  font-size: 1.6rem;
  text-align: left;
}

.slack-sub-title {
  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;
  height: 32px;
  color: #FFF;
  font-weight: 700;
  border-radius: 6px;
  background-color: #9E99E5;
}

.slack-list-box {
  margin: 16px 0 0;
}
.slack-list-box li {
  padding: 6px;
  text-align: left;
  position: relative;
}
.slack-list-box li strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: #5E55D4;
}
.slack-list-box li p {
  padding: 0 0 0 2rem;
  font-size: 1.4rem;
  color: #222;
  font-weight: 400;
}
.slack-list-box li:before {
  margin: 0 5px 0 0;
  content: "●";
  color: #5E55D4;
}

.slack-no-list-box {
  margin: 16px 0 0;
  list-style: none;
  counter-reset: list-item;
}
.slack-no-list-box li {
  padding: 6px 6px 6px 36px;
  text-align: left;
  position: relative;
  counter-increment: list-item;
}
.slack-no-list-box li strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: #5E55D4;
}
.slack-no-list-box li p {
  padding: 0;
  font-size: 1.4rem;
  color: #222;
  font-weight: 400;
}
.slack-no-list-box li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 26px;
  height: 26px;
  background-color: #5E55D4;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  font-family: Arial;
  border-radius: 50%;
  display: inline-block;
}

/*■■■■■■ お客様の声 ■■■■■■■*/
.voice-flex-box {
  margin: 40px 0 40px;
  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: 30px 0;
}

.voice-box {
  padding: 20px;
  border: 1px solid #707070;
  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;
}

.voice--cercle-img-box {
  display: inline-block;
  width: 160px;
  height: 160px;
  min-width: 160px; /* ← 追加 */
  min-height: 160px; /* ← 追加 */
  border-radius: 80px;
}

.bg-user-img_1 {
  background: url(../images/voice-01.jpg) center center no-repeat;
  background-size: cover;
}

.bg-user-img_2 {
  background: url(../images/voice-02.jpg) center center no-repeat;
  background-size: cover;
}

.vois-text-box {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 400;
}

/*■■■■■■ ここに注目 ■■■■■■■*/
.feature-flex-box {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature-card {
  padding: 0 30px 30px;
  background-color: #FFF;
  border: 3px solid #FF0199;
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(#BC77A0 3px 3px 0.3rem);
          filter: drop-shadow(#BC77A0 3px 3px 0.3rem);
}
.feature-card img {
  width: 140px;
}

.feature-title {
  margin-top: -35px;
  margin-bottom: 10px;
  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: 10px 0;
  font-size: 2.6rem;
  font-weight: 700;
}
.feature-title span {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: #FF0199;
  color: #FFF;
  font-size: 4rem;
  font-weight: 700;
  font-family: Arial;
  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;
}
.feature-title span small {
  font-size: 1.2rem;
  line-height: 1;
  font-family: Arial;
}
.feature-title span strong {
  font-size: 3rem;
  line-height: 1;
  font-family: Arial;
  font-weight: 700;
}

.feature--cercle-img-box {
  margin: 0 0 10px;
  display: inline-block;
  width: 220px;
  height: 220px;
  min-width: 220px;
  border-radius: 110px;
}

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

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

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

.feature-card__read {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
}

/*■■■■■■ FAQ よくある質問 ■■■■■■■*/
.faq-box {
  margin: 0 auto auto;
  padding: 20px 15px;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px dotted #999;
  border-radius: 12px;
}
.faq-box dl {
  margin: 0;
  padding: 0;
}
.faq-box dl dt {
  margin: 0;
  padding: 5px 20px 0 60px;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  position: relative;
}
.faq-box dl dt:before {
  content: "Q";
  background-color: #F380C5;
  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: 50px;
  height: 50px;
  border-radius: 25px;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  position: absolute;
  left: 0;
  top: -6px;
}
.faq-box dl dd {
  padding: 30px 0 0 60px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  position: relative;
}
.faq-box dl dd:before {
  content: "A";
  background-color: #7BDFB7;
  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: 50px;
  height: 50px;
  border-radius: 25px;
  font-size: 2rem;
  color: #FFF;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 20px;
}

/*■■■■■■ 料金 ■■■■■■■*/
.price-title {
  margin: 20px 0 20px;
  font-size: 2.2rem;
  color: #FF0199;
  font-weight: 700;
}

.price-box {
  border: 6px solid #FF0199;
  background-color: #FFF;
  padding: 20px;
}
.price-box hr {
  margin: 15px 0;
  border: 0;
  border-top: 5px solid #FF0199;
}

.price-text-price {
  font-size: 2.6rem;
  font-weight: 700;
  color: #222;
}
.price-text-price strong {
  margin: 0 5px 0 0;
  font-size: 6rem;
  font-weight: 700;
  font-family: Arial;
}
.price-text-price strong span {
  font-weight: 500;
}

.price-text-read {
  font-size: 2rem;
  font-weight: 500;
  color: #222;
}

dl.price-note {
  display: inline-block;
  text-align: left;
}
dl.price-note dt {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
dl.price-note dt::before {
  content: "■";
  color: #FF0199;
  margin: 0 5px 0 0;
}
dl.price-note dd {
  padding: 0 0 0 1.4em;
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 400;
}

.price-text-recomend {
  font-size: 1.8rem;
  font-weight: 700;
}

.withdrawal-box {
  margin: 40px auto;
  padding: 15px 20px;
  background-color: #EEEEFF;
  border: 2px dotted #333;
  display: inline-block;
  border-radius: 16px;
}

.withdrawal-text {
  font-size: 1.6rem;
  font-weight: 400;
}
.withdrawal-text strong {
  font-weight: 700;
}

.withdrawal-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.option-price-title {
  margin: 20px 0 20px;
  font-size: 2.2rem;
  color: #2BB47D;
  font-weight: 700;
}

.option-price-box {
  border: 6px solid #2BB47D;
  background-color: #FFF;
  padding: 20px;
}

.section-green {
  background: #D7F5E9;
}

.section-transition,
.section-transition-reverse {
  height: 160px;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.section-transition svg,
.section-transition-reverse svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cercle-top {
  bottom: -1px;
}

.cercle-bottom {
  bottom: -1px;
}

.option-title {
  margin: 0 0 25px;
  padding: 10px 30px;
  display: inline-block;
  background-color: #2BB47D;
  color: #FFF;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  border-radius: 12px;
  position: relative;
}

.option-title:after {
  content: "";
  margin-left: -10px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: -30px;
  border-style: solid;
  border-width: 16px 10px;
  border-color: #2BB47D transparent transparent transparent;
}

.about-georgia-box {
  padding: 20px;
  background-color: #FFF;
  border: 3px solid #2BB47D;
  border-radius: 16px;
  -webkit-filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
          filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
}

.about-georgia-title {
  padding: 0 0 20px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 3px solid #2BB47D;
}

.about-georgia-li {
  padding-left: 1.8rem;
  margin: 10px 0 0 0;
  text-align: left;
}
.about-georgia-li li {
  padding: 6px 0;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  text-indent: -1.8rem;
}
.about-georgia-li li:before {
  margin: 0 5px 0 0;
  content: "●";
  color: #2BB47D;
}

/*特典*/
.benefits-georgia-title {
  display: inline-block;
  margin: 40px 0 0;
  padding: 10px 40px;
  background-color: #2BB47D;
  color: #FFF;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.benefits-georgia-block {
  margin: -30px 0 30px;
  padding: 40px 30px 30px;
  background-color: #FFF;
  border: 4px dotted #2BB47D;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
          filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
}

.benefits-georgia-li {
  padding-left: 1.8rem;
  display: inline-block;
  text-align: left;
}
.benefits-georgia-li li {
  padding: 6px 0;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  text-indent: -2rem;
}
.benefits-georgia-li li:before {
  margin: 0 4px 0 0;
  content: "●";
  color: #2BB47D;
}

.benefits-georgia-text {
  text-align: left;
  font-size: 1.6rem;
}
.benefits-georgia-text strong {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 3px solid #2BB47D;
}

.contact-georgia-text {
  margin: 0 auto 30px;
  font-size: 1.8rem;
  font-weight: 500;
}
.contact-georgia-text span {
  color: #2BB47D;
}
.contact-georgia-text a {
  color: #222;
  border-bottom: 3px solid #FF0199;
}
.contact-georgia-text a:hover {
  color: #FF0199;
}

/*■■■■■■ 申し込み誘導コピー ■■■■■■■*/
.foot-chatch-title-block {
  margin: 0 auto 10px;
  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;
  border: 1px sold #FF0000;
}

.foot-chatch-title {
  margin: 0;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.foot-chatch-title strong {
  margin: 0 5px 0 0;
  color: #FF0199;
  font-size: 5rem;
  font-weight: 700;
}

.foot-chatch-title-line {
  width: 60px;
  height: 3px;
  background-color: #FF0199;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.foot-chatch-title-line.left {
  margin-top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.foot-chatch-title-line.right {
  margin-top: 15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*■■■■■■ メールフォーム ■■■■■■■*/
.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;
  border-bottom: 6px solid #F380C5;
  display: inline-block;
}
.pp-box dd {
  padding: 0 0 15px;
  margin: 0 0 15px 0;
  border-bottom: 1px dotted #333;
}
.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: #F380C5;
}

/*■■■■■■■ CONTACT/Thanks ページ  ■■■■■■*/
.header-img-block_s {
  width: 100%;
  height: 320px;
  margin: 0;
  padding: 0;
}

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

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■■ MAIN IMG（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: 100vh; /* ビューポート全体の高さ */
    background-color: #000;
  }
  /* ヘッダー画像のブロック */
  .header-main-img-block {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; /* 余ったスペースを埋める */
    width: 100%;
    background: url(../images/main-img_sp.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
  }
  /*画像上文字*/
  .main-title-block {
    top: 30%;
  }
  .head-main-title {
    font-size: 5.4vw;
  }
  /* リード部分のブロック */
  .read-contents-block {
    position: relative;
  }
  .main-read {
    font-size: 2rem;
  }
  .contents-block {
    margin: 20px 0;
    padding: 0;
  }
  .contents-in-block {
    margin: 0;
    padding: 20px 0;
  }
  /*■■■■■■ 共通 (XS) ■■■■■■■*/
  /*ワールドアイコンタイトル*/
  .text-title {
    margin: 30px 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .text-title span {
    position: relative;
    z-index: 1;
  }
  .text-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px; /* テキストの下に配置 */
    width: 100%;
    height: 6px; /* 高さ指定 */
    background: -webkit-gradient(linear, left top, right top, from(#FF0199), to(#5E55D4));
    background: linear-gradient(to right, #FF0199, #5E55D4);
    border-radius: 3px; /* 角丸 */
    z-index: -1;
  }
  .text-title::before {
    margin: 0 auto 10px;
    content: "";
    display: block;
    width: 75px;
    height: 64px;
    background: url(../images/icon-world_2.png) center center no-repeat;
    background-size: cover;
    position: relative;
    left: 0;
    top: 8px;
  }
  .text-sub-title {
    font-size: 2rem;
    font-weight: 400;
  }
  .text-sub-title strong {
    font-size: 2.6rem;
    font-weight: 700;
  }
  /*■■■■■■ About Re:Liveナビとは？ (XS) ■■■■■■■*/
  .about--cercle-text {
    font-size: 3rem;
  }
  .about-flex-box {
    padding: 20px;
    margin: 20px 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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
  }
  .text-read {
    font-size: 1.6rem;
  }
  .about--dot-line-box {
    margin: 30px auto;
    padding: 10px;
    border: 3px dotted #46418D;
    border-radius: 24px;
  }
  .about--in-title {
    font-size: 4rem;
    font-weight: 700;
    color: #FF0199;
  }
  .sub-title {
    font-size: 2rem;
  }
  .about--list {
    margin: 16px auto;
    display: block;
  }
  .about--list th {
    padding: 5px 15px 0;
    font-size: 2.2rem;
    display: block;
    width: 100%;
  }
  .about--list td {
    padding: 0 15px 5px;
    font-size: 1.8rem;
    display: block;
    width: 100%;
  }
  .btn-title-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;
  }
  .btn-title {
    margin: 0;
    font-size: 1.6rem;
  }
  .title-line_s {
    width: 30px;
    height: 2px;
    background-color: #222;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-filter: drop-shadow(#FFF 0 0 0.3rem);
            filter: drop-shadow(#FFF 0 0 0.3rem);
  }
  .title-line_s.left {
    margin-top: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .title-line_s.right {
    margin-top: 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .btn-block {
    margin: 10px auto;
    display: block;
    width: 100%;
    text-align: center;
  }
  .btn-block a {
    padding: 10px 50px 10px 20px;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    color: #FFF;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 1.2rem;
    background-color: #7BDFB7;
    position: relative;
  }
  .btn-block a:hover {
    background-color: #4ED29D;
  }
  .btn-block a:before {
    content: "";
    margin-bottom: -12px;
    width: 0;
    height: 0;
    position: absolute;
    right: 0px;
    bottom: 50%;
    border-style: solid;
    border-width: 12px 18px;
    border-color: transparent transparent transparent #FEF038;
  }
  .btn-sub-title {
    margin: 0;
    font-size: 1.6rem;
  }
  /*V字仕切り*/
  .v-divider--invert {
    height: 60px;
  }
  /*■■■■■■ 事業内容 (XS) ■■■■■■■*/
  .product-flex-box {
    margin: 40px 0 0;
    display: block;
  }
  .product-card {
    margin: 0 0 50px;
    padding: 0 20px 30px;
  }
  /*S字ベジェ*/
  .wave-divider {
    line-height: 0;
  }
  .wave-divider svg {
    height: 40px;
  }
  /*■■■■■■ 主催者紹介 (XS) ■■■■■■■*/
  .organizer-flex-box {
    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;
  }
  /*■■■■■■ 申し込みの流れ (XS) ■■■■■■■*/
  .step-flex-box {
    margin: 20px 0;
    display: block;
  }
  .step-box {
    margin: 0 0 20px;
  }
  .step-title :after {
    content: "";
    margin-bottom: -30px;
    margin-right: 0;
    width: 0;
    height: 0;
    position: absolute;
    right: 12px;
    bottom: 50%;
    border-style: solid;
    border-width: 20px 12px;
    border-color: #FF0199 transparent transparent transparent;
  }
  .step-read {
    padding: 16px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  /*Slack 導入*/
  .slack-block {
    margin: 20px 0 0;
    padding: 15px;
    display: block;
  }
  .slack-title-block {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .slack-title {
    margin: 0 auto 10px;
    font-size: 2.2rem;
  }
  .slack-read {
    font-size: 1.6rem;
    text-align: left;
  }
  .slack-sub-title {
    margin: 30px 0 0;
  }
  /*■■■■■■ お客様の声 (XS) ■■■■■■■*/
  .voice-flex-box {
    margin: 20px 0 20px;
    display: block;
  }
  .voice-box {
    margin: 0 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /*■■■■■■ ここに注目 (XS)  ■■■■■■■*/
  .feature-flex-box {
    margin: 0;
    display: block;
  }
  .feature-card {
    margin: 50px 0 0;
    padding: 0 30px 30px;
    background-color: #FFF;
    border: 3px solid #FF0199;
    border-radius: 2rem;
  }
  .feature-title {
    margin-top: -35px;
    margin-bottom: 10px;
    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: 10px 0;
  }
  /*■■■■■■ FAQ よくある質問 ■■■■■■■*/
  .faq-box {
    margin: 0 auto auto;
    padding: 20px 15px;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px dotted #999;
    border-radius: 12px;
  }
  .faq-box dl {
    margin: 0;
    padding: 0;
  }
  .faq-box dl dt {
    margin: 0;
    padding: 5px 20px 0 60px;
    font-size: 2rem;
  }
  .faq-box dl dd {
    font-size: 1.6rem;
  }
  /*■■■■■■ 料金 (XS) ■■■■■■■*/
  .price-title {
    margin: 20px 0 20px;
    font-size: 2.2rem;
    color: #FF0199;
    font-weight: 700;
  }
  .price-text-price {
    font-size: 2rem;
  }
  .price-text-price strong {
    font-size: 5rem;
  }
  .price-text-read {
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
  }
  dl.price-note dt {
    font-size: 1.8rem;
  }
  dl.price-note dd {
    padding: 0 0 0 1.4em;
  }
  .price-text-recomend {
    font-size: 1.8rem;
  }
  .option-price-title {
    margin: 20px 0 20px;
    font-size: 2rem;
    color: #2BB47D;
    font-weight: 700;
  }
  .section-transition,
  .section-transition-reverse {
    height: 80px;
    overflow: hidden;
    line-height: 0;
  }
  .about-georgia-box {
    padding: 20px;
    background-color: #FFF;
    border: 3px solid #2BB47D;
    border-radius: 16px;
    -webkit-filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
            filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
  }
  .about-georgia-title {
    padding: 0 0 20px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 3px solid #2BB47D;
  }
  .about-georgia-li {
    margin: 10px 0 0 0;
    text-align: left;
  }
  .about-georgia-li li {
    padding: 6px 0;
    font-size: 1.6rem;
  }
  /*特典*/
  .benefits-georgia-title {
    font-size: 2.2rem;
  }
  .benefits-georgia-li li {
    font-size: 1.6rem;
  }
  .benefits-georgia-text {
    font-size: 1.6rem;
  }
  .benefits-georgia-text strong {
    font-size: 1.8rem;
  }
  .contact-georgia-text {
    margin: 0 auto 30px;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .contact-georgia-text span {
    color: #2BB47D;
  }
  .contact-georgia-text a {
    color: #222;
    border-bottom: 3px solid #FF0199;
  }
  .contact-georgia-text a:hover {
    color: #FF0199;
  }
  /*■■■■■■ 申し込み誘導コピー (XS) ■■■■■■■*/
  .foot-chatch-title {
    margin: 0;
    font-size: 3rem;
  }
  .foot-chatch-title strong {
    font-size: 4rem;
  }
  .foot-chatch-title-line {
    width: 60px;
    height: 3px;
    background-color: #FF0199;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .foot-chatch-title-line.left {
    margin-top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .foot-chatch-title-line.right {
    margin-top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /*■■■■■■■ CONTACT/Thanks ページ(XS)  ■■■■■■*/
  .header-img-block_s {
    width: 100%;
    height: 320px;
    margin: 0;
    padding: 0;
  }
  .bg-contact-img {
    background: url(../images/main-img_sp.jpg) center center no-repeat;
    background-size: cover;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*■■■■■■■ MAIN IMG（SM）  ■■■■■■*/
  .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; /* ビューポート全体の高さ */
    background-color: #000;
  }
  /* ヘッダー画像のブロック */
  .header-main-img-block {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; /* 余ったスペースを埋める */
    width: 100%;
    background: url(../images/main-img_sp.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
  }
  /*画像上文字*/
  .main-title-block {
    top: 30%;
  }
  .head-main-title {
    font-size: 6vw;
  }
  /* リード部分のブロック */
  .read-contents-block {
    position: relative;
  }
  .main-read {
    font-size: 4vw;
  }
  .contents-block {
    margin: 20px 0;
    padding: 0;
  }
  .contents-in-block {
    margin: 0;
    padding: 20px 0;
  }
  /*■■■■■■ 共通 (SM) ■■■■■■■*/
  /*ワールドアイコンタイトル*/
  .text-title {
    margin: 30px 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .text-title span {
    position: relative;
    z-index: 1;
  }
  .text-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px; /* テキストの下に配置 */
    width: 100%;
    height: 6px; /* 高さ指定 */
    background: -webkit-gradient(linear, left top, right top, from(#FF0199), to(#5E55D4));
    background: linear-gradient(to right, #FF0199, #5E55D4);
    border-radius: 3px; /* 角丸 */
    z-index: -1;
  }
  .text-title::before {
    margin: 0 auto 10px;
    content: "";
    display: block;
    width: 75px;
    height: 64px;
    background: url(../images/icon-world_2.png) center center no-repeat;
    background-size: cover;
    position: relative;
    left: 0;
    top: 8px;
  }
  .text-sub-title {
    font-size: 2rem;
    font-weight: 400;
  }
  .text-sub-title strong {
    font-size: 2.6rem;
    font-weight: 700;
  }
  /*■■■■■■ About Re:Liveナビとは？ (SM) ■■■■■■■*/
  .about--cercle-text {
    font-size: 3rem;
  }
  .about-flex-box {
    padding: 20px;
    margin: 20px 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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
  }
  .text-read {
    font-size: 1.6rem;
  }
  .about--dot-line-box {
    margin: 30px auto;
    padding: 10px;
    border: 3px dotted #46418D;
    border-radius: 24px;
  }
  .about--in-title {
    font-size: 4rem;
    font-weight: 700;
    color: #FF0199;
  }
  .sub-title {
    font-size: 2rem;
  }
  .about--list {
    margin: 16px auto;
    display: block;
  }
  .about--list th {
    padding: 5px 15px 0;
    font-size: 2.2rem;
    display: block;
    width: 100%;
  }
  .about--list td {
    padding: 0 15px 5px;
    font-size: 1.8rem;
    display: block;
    width: 100%;
  }
  .btn-title-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;
  }
  .btn-title {
    margin: 0;
    font-size: 1.6rem;
  }
  .title-line_s {
    width: 30px;
    height: 2px;
    background-color: #222;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-filter: drop-shadow(#FFF 0 0 0.3rem);
            filter: drop-shadow(#FFF 0 0 0.3rem);
  }
  .title-line_s.left {
    margin-top: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .title-line_s.right {
    margin-top: 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .btn-block {
    margin: 10px auto;
    display: block;
    width: 100%;
    text-align: center;
  }
  .btn-block a {
    padding: 10px 50px 10px 20px;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    color: #FFF;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 1.2rem;
    background-color: #7BDFB7;
    position: relative;
  }
  .btn-block a:hover {
    background-color: #4ED29D;
  }
  .btn-block a:before {
    content: "";
    margin-bottom: -12px;
    width: 0;
    height: 0;
    position: absolute;
    right: 0px;
    bottom: 50%;
    border-style: solid;
    border-width: 12px 18px;
    border-color: transparent transparent transparent #FEF038;
  }
  .btn-sub-title {
    margin: 0;
    font-size: 1.6rem;
  }
  /*V字仕切り*/
  .v-divider--invert {
    height: 60px;
  }
  /*■■■■■■ 事業内容 (SM) ■■■■■■■*/
  .product-flex-box {
    margin: 40px 0 0;
    display: block;
  }
  .product-card {
    margin: 0 auto 50px;
    padding: 0 20px 30px;
  }
  /*S字ベジェ*/
  .wave-divider {
    line-height: 0;
  }
  .wave-divider svg {
    height: 40px;
  }
  /*■■■■■■ 主催者紹介 (SM) ■■■■■■■*/
  .organizer-flex-box {
    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;
  }
  /*■■■■■■ 申し込みの流れ (SM) ■■■■■■■*/
  .step-flex-box {
    margin: 20px 0;
    display: block;
  }
  .step-box {
    margin: 0 0 20px;
  }
  .step-title :after {
    content: "";
    margin-bottom: -30px;
    margin-right: 0;
    width: 0;
    height: 0;
    position: absolute;
    right: 12px;
    bottom: 50%;
    border-style: solid;
    border-width: 20px 12px;
    border-color: #FF0199 transparent transparent transparent;
  }
  .step-read {
    padding: 16px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  /*Slack 導入*/
  .slack-block {
    margin: 20px 0 0;
    padding: 15px;
    display: block;
  }
  .slack-title-block {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .slack-title {
    margin: 0 auto 10px;
    font-size: 2.2rem;
  }
  .slack-read {
    font-size: 1.6rem;
    text-align: left;
  }
  .slack-sub-title {
    margin: 30px 0 0;
  }
  /*■■■■■■ お客様の声 (SM) ■■■■■■■*/
  .voice-flex-box {
    margin: 20px 0 20px;
    display: block;
  }
  .voice-box {
    margin: 0 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /*■■■■■■ ここに注目 (SM)  ■■■■■■■*/
  .feature-flex-box {
    margin: 0;
    display: block;
  }
  .feature-card {
    margin: 50px 0 0;
    padding: 0 30px 30px;
    background-color: #FFF;
    border: 3px solid #FF0199;
    border-radius: 2rem;
  }
  .feature-title {
    margin-top: -35px;
    margin-bottom: 10px;
    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: 10px 0;
  }
  /*■■■■■■ FAQ よくある質問  (SM) ■■■■■■■*/
  .faq-box {
    margin: 0 auto auto;
    padding: 20px 15px;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px dotted #999;
    border-radius: 12px;
  }
  .faq-box dl {
    margin: 0;
    padding: 0;
  }
  .faq-box dl dt {
    margin: 0;
    padding: 5px 20px 0 60px;
    font-size: 2rem;
  }
  .faq-box dl dd {
    font-size: 1.6rem;
  }
  /*■■■■■■ 料金 (SM) ■■■■■■■*/
  .price-title {
    margin: 20px 0 20px;
    font-size: 2.2rem;
    color: #FF0199;
    font-weight: 700;
  }
  .price-text-price {
    font-size: 2rem;
  }
  .price-text-price strong {
    font-size: 5rem;
  }
  .price-text-read {
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
  }
  dl.price-note dt {
    font-size: 1.8rem;
  }
  dl.price-note dd {
    padding: 0 0 0 1.4em;
  }
  .price-text-recomend {
    font-size: 1.8rem;
  }
  .option-price-title {
    margin: 20px 0 20px;
    font-size: 2rem;
    color: #2BB47D;
    font-weight: 700;
  }
  .section-transition,
  .section-transition-reverse {
    height: 80px;
    overflow: hidden;
    line-height: 0;
  }
  .about-georgia-box {
    padding: 20px;
    background-color: #FFF;
    border: 3px solid #2BB47D;
    border-radius: 16px;
    -webkit-filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
            filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
  }
  .about-georgia-title {
    padding: 0 0 20px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 3px solid #2BB47D;
  }
  .about-georgia-li {
    margin: 10px 0 0 0;
    text-align: left;
  }
  .about-georgia-li li {
    padding: 6px 0;
    font-size: 1.6rem;
  }
  /*特典*/
  .benefits-georgia-title {
    font-size: 2.2rem;
  }
  .benefits-georgia-li li {
    font-size: 1.6rem;
  }
  .benefits-georgia-text {
    font-size: 1.6rem;
  }
  .benefits-georgia-text strong {
    font-size: 1.8rem;
  }
  .contact-georgia-text {
    margin: 0 auto 30px;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .contact-georgia-text span {
    color: #2BB47D;
  }
  .contact-georgia-text a {
    color: #222;
    border-bottom: 3px solid #FF0199;
  }
  .contact-georgia-text a:hover {
    color: #FF0199;
  }
  /*■■■■■■ 申し込み誘導コピー (SM) ■■■■■■■*/
  .foot-chatch-title {
    margin: 0;
    font-size: 3rem;
  }
  .foot-chatch-title strong {
    font-size: 4rem;
  }
  .foot-chatch-title-line {
    width: 60px;
    height: 3px;
    background-color: #FF0199;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .foot-chatch-title-line.left {
    margin-top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .foot-chatch-title-line.right {
    margin-top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*■■■■■■■ MAIN IMG（SM）  ■■■■■■*/
  .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; /* ビューポート全体の高さ */
    background-color: #000;
  }
  /* ヘッダー画像のブロック */
  .header-main-img-block {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; /* 余ったスペースを埋める */
    width: 100%;
    background: url(../images/main-img_sp.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
  }
  /*画像上文字*/
  .main-title-block {
    top: 30%;
  }
  .head-main-title {
    font-size: 6vw;
  }
  /* リード部分のブロック */
  .read-contents-block {
    position: relative;
  }
  .main-read {
    font-size: 4vw;
  }
  .contents-block {
    margin: 20px 0;
    padding: 0;
  }
  .contents-in-block {
    margin: 0;
    padding: 20px 0;
  }
  /*■■■■■■ 共通 (SM) ■■■■■■■*/
  /*ワールドアイコンタイトル*/
  .text-title {
    margin: 30px 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .text-title span {
    position: relative;
    z-index: 1;
  }
  .text-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px; /* テキストの下に配置 */
    width: 100%;
    height: 6px; /* 高さ指定 */
    background: -webkit-gradient(linear, left top, right top, from(#FF0199), to(#5E55D4));
    background: linear-gradient(to right, #FF0199, #5E55D4);
    border-radius: 3px; /* 角丸 */
    z-index: -1;
  }
  .text-title::before {
    margin: 0 auto 10px;
    content: "";
    display: block;
    width: 75px;
    height: 64px;
    background: url(../images/icon-world_2.png) center center no-repeat;
    background-size: cover;
    position: relative;
    left: 0;
    top: 8px;
  }
  .text-sub-title {
    font-size: 2rem;
    font-weight: 400;
  }
  .text-sub-title strong {
    font-size: 2.6rem;
    font-weight: 700;
  }
  /*■■■■■■ About Re:Liveナビとは？ (SM) ■■■■■■■*/
  .about--cercle-text {
    font-size: 3rem;
  }
  .about-flex-box {
    padding: 20px;
    margin: 20px 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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
  }
  .text-read {
    font-size: 1.6rem;
  }
  .about--dot-line-box {
    margin: 30px auto;
    padding: 10px;
    border: 3px dotted #46418D;
    border-radius: 24px;
  }
  .about--in-title {
    font-size: 4rem;
    font-weight: 700;
    color: #FF0199;
  }
  .sub-title {
    font-size: 2rem;
  }
  .about--list {
    margin: 16px auto;
    display: block;
  }
  .about--list th {
    padding: 5px 15px 0;
    font-size: 2.2rem;
    display: block;
    width: 100%;
  }
  .about--list td {
    padding: 0 15px 5px;
    font-size: 1.8rem;
    display: block;
    width: 100%;
  }
  .btn-title-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;
  }
  .btn-title {
    margin: 0;
    font-size: 1.6rem;
  }
  .title-line_s {
    width: 30px;
    height: 2px;
    background-color: #222;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-filter: drop-shadow(#FFF 0 0 0.3rem);
            filter: drop-shadow(#FFF 0 0 0.3rem);
  }
  .title-line_s.left {
    margin-top: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .title-line_s.right {
    margin-top: 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .btn-block {
    margin: 10px auto;
    display: block;
    width: 100%;
    text-align: center;
  }
  .btn-block a {
    padding: 10px 50px 10px 20px;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    color: #FFF;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 1.2rem;
    background-color: #7BDFB7;
    position: relative;
  }
  .btn-block a:hover {
    background-color: #4ED29D;
  }
  .btn-block a:before {
    content: "";
    margin-bottom: -12px;
    width: 0;
    height: 0;
    position: absolute;
    right: 0px;
    bottom: 50%;
    border-style: solid;
    border-width: 12px 18px;
    border-color: transparent transparent transparent #FEF038;
  }
  .btn-sub-title {
    margin: 0;
    font-size: 1.6rem;
  }
  /*V字仕切り*/
  .v-divider--invert {
    height: 60px;
  }
  /*■■■■■■ 事業内容 (SM) ■■■■■■■*/
  .product-flex-box {
    margin: 40px 0 0;
    display: block;
  }
  .product-card {
    margin: 0 auto 50px;
    padding: 0 20px 30px;
  }
  /*S字ベジェ*/
  .wave-divider {
    line-height: 0;
  }
  .wave-divider svg {
    height: 40px;
  }
  /*■■■■■■ 主催者紹介 (SM) ■■■■■■■*/
  .organizer-flex-box {
    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;
  }
  /*■■■■■■ 申し込みの流れ (SM) ■■■■■■■*/
  .step-flex-box {
    margin: 20px 0;
    display: block;
  }
  .step-box {
    margin: 0 0 20px;
  }
  .step-title :after {
    content: "";
    margin-bottom: -30px;
    margin-right: 0;
    width: 0;
    height: 0;
    position: absolute;
    right: 12px;
    bottom: 50%;
    border-style: solid;
    border-width: 20px 12px;
    border-color: #FF0199 transparent transparent transparent;
  }
  .step-read {
    padding: 16px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  /*Slack 導入*/
  .slack-block {
    margin: 20px 0 0;
    padding: 15px;
    display: block;
  }
  .slack-title-block {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .slack-title {
    margin: 0 auto 10px;
    font-size: 2.2rem;
  }
  .slack-read {
    font-size: 1.6rem;
    text-align: left;
  }
  .slack-sub-title {
    margin: 30px 0 0;
  }
  /*■■■■■■ お客様の声 (SM) ■■■■■■■*/
  .voice-flex-box {
    margin: 20px 0 20px;
    display: block;
  }
  .voice-box {
    margin: 0 0 20px;
  }
  /*■■■■■■ ここに注目 (SM)  ■■■■■■■*/
  .feature-flex-box {
    margin: 0;
    display: block;
  }
  .feature-card {
    margin: 50px 0 0;
    padding: 0 30px 30px;
    background-color: #FFF;
    border: 3px solid #FF0199;
    border-radius: 2rem;
  }
  .feature-title {
    margin-top: -35px;
    margin-bottom: 10px;
    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: 10px 0;
  }
  /*■■■■■■ FAQ よくある質問  (SM) ■■■■■■■*/
  .faq-box {
    margin: 0 auto auto;
    padding: 20px 15px;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px dotted #999;
    border-radius: 12px;
  }
  .faq-box dl {
    margin: 0;
    padding: 0;
  }
  .faq-box dl dt {
    margin: 0;
    padding: 5px 20px 0 60px;
    font-size: 2rem;
  }
  .faq-box dl dd {
    font-size: 1.6rem;
  }
  /*■■■■■■ 料金 (SM) ■■■■■■■*/
  .price-title {
    margin: 20px 0 20px;
    font-size: 2.2rem;
    color: #FF0199;
    font-weight: 700;
  }
  .price-text-price {
    font-size: 2rem;
  }
  .price-text-price strong {
    font-size: 5rem;
  }
  .price-text-read {
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
  }
  dl.price-note dt {
    font-size: 1.8rem;
  }
  dl.price-note dd {
    padding: 0 0 0 1.4em;
  }
  .price-text-recomend {
    font-size: 1.8rem;
  }
  .option-price-title {
    margin: 20px 0 20px;
    font-size: 2rem;
    color: #2BB47D;
    font-weight: 700;
  }
  .section-transition,
  .section-transition-reverse {
    height: 80px;
    overflow: hidden;
    line-height: 0;
  }
  .about-georgia-box {
    padding: 20px;
    background-color: #FFF;
    border: 3px solid #2BB47D;
    border-radius: 16px;
    -webkit-filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
            filter: drop-shadow(#86AB9C 3px 3px 0.3rem);
  }
  .about-georgia-title {
    padding: 0 0 20px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 3px solid #2BB47D;
  }
  .about-georgia-li {
    margin: 10px 0 0 0;
    text-align: left;
  }
  .about-georgia-li li {
    padding: 6px 0;
    font-size: 1.6rem;
  }
  /*特典*/
  .benefits-georgia-title {
    font-size: 2.2rem;
  }
  .benefits-georgia-li li {
    font-size: 1.6rem;
  }
  .benefits-georgia-text {
    font-size: 1.6rem;
  }
  .benefits-georgia-text strong {
    font-size: 1.8rem;
  }
  .contact-georgia-text {
    margin: 0 auto 30px;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .contact-georgia-text span {
    color: #2BB47D;
  }
  .contact-georgia-text a {
    color: #222;
    border-bottom: 3px solid #FF0199;
  }
  .contact-georgia-text a:hover {
    color: #FF0199;
  }
  /*■■■■■■ 申し込み誘導コピー (SM) ■■■■■■■*/
  .foot-chatch-title {
    margin: 0;
    font-size: 3rem;
  }
  .foot-chatch-title strong {
    font-size: 4rem;
  }
  .foot-chatch-title-line {
    width: 60px;
    height: 3px;
    background-color: #FF0199;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .foot-chatch-title-line.left {
    margin-top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .foot-chatch-title-line.right {
    margin-top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
} /*MD*/
/*------------(LG)------------*/
/*LG*/
/*------------(XL)------------*/
@media (min-width: 1216px) {
  .header-img-block {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 46.25% 0 0 0;
    position: relative;
  }
} /*XL*/