@charset "utf-8";
@viewport {
  zoom: 1.0;
  width: extend-to-zoom;
}

* {
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-after: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  box-sizing: border-box;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

html,
body,
:root {
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #333333;
  background-color: #fff;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  position: relative;
}

.lp-sect p {
  line-height: 1.8;
  font-weight: bold;
  font-size: 16px;
}


/* リンク */
a {
  text-decoration: none;
  transition: all 0.2s ease;
}


/* レイアウト */
.lp-container {
  width: 100%;
  max-width: 1040px;
  margin: auto;
  padding: 0 20px;
}
.lp-sect {
  padding: 50px 0;
}


/* CTA */
.lp-cta-btn {
  display: block;
  background-color: #0079BB;
  border: 2px solid #0079BB;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
  border-radius: 50px;
  position: relative;
  margin: 0 0 20px;
  transition: .2s;
}
.lp-cta-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 8px 12px;
  border-left-color: #fff;
  margin: auto;
}

@media (hover: hover) {
  .lp-cta-btn:hover {
    background-color: #fff;
    color: #0079BB;
  }
  .lp-cta-btn:hover::after {
    border-left-color: #0079BB;
  }
}

@media (min-width:901px) {
  .lp-cta-btn {
    flex: 1;
    font-size: 24px;
    margin: 0 20px;
  }
  .lp-cta-btn::after {
    right: 50px;
  }
}


/* ヘッダー */
.lp-header {
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 50px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.lp-mv {
  margin: 50px 0 0;
}
.lp-header-nav {
  display: none;
}
.lp-header-logo {
  line-height: 0;
}
.lp-header-logo img {
  height: 30px;
  width: auto;
}

@media (min-width:901px) {
  .lp-header-logo img {
    height: 40px;
  }
  .lp-header {
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
  }
  .lp-mv {
    margin: 90px 0 0;
  }

  .lp-header-nav {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .lp-header-nav a {
    flex: 0 0 auto;
    padding: 15px 70px;
    min-width: 8em;
    width: auto;
    margin: 0 0 0 20px;
  }
  .lp-header-nav .lp-cta-btn::after {
    right: 30px;
  }
}


/* 追従フッターナビ */
.lp-sticky-nav {
  position: fixed;
  z-index: 100;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 5px 0;
  background-image: linear-gradient(90deg, #C2DB5D, #8FC4A8, #5CB2E3);
  line-height: 0;
}
.lp-sticky-nav a {
  flex: 1;
  flex-basis: auto;
  border-radius: 20px 20px 0 0;
  margin: 0 5px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1;
}
.lp-sticky-nav .lp-cta-btn::after {
  right: 5px;
  border-width: 5px;
}

@media (min-width:901px) {
  .lp-sticky-nav {
    display: none;
  }
}


/* ヒーロー */
.lp-mv {
  overflow: hidden;
  background-image: linear-gradient(to bottom, #EB9BBD, #EDBEA3, #F2DC82);
  padding: 45% 0;
  position: relative;
}
@media (min-width:901px) {
  .lp-mv {
    padding: 19% 40px;
    background-image: linear-gradient(90deg, #EB9BBD, #EDBEA3, #F2DC82);
  }
}

/* ヒーロー　スライダー */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.mv-slider-wrap {
  width: 100%;
  position: absolute;
  transform: rotate(-2deg);
  transform-origin: center;
}
.mv-slider-01 {
  top: 5%;
  left: 0;
}
.mv-slider-02 {
  bottom: 0;
  left: -200%;
}

.mv-slider {
  display: flex;
  width: 400%;
  animation: slide 30s linear infinite;
}
.mv-slider-02 .mv-slider {
  animation: slide2 30s linear infinite;
}

.mv-slider ul {
  flex: 1;
  display: flex;
  list-style: none;
}
.mv-slider li {
  flex: 1;
  padding: 5px;
}
.mv-slider img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

@media (min-width:901px) {
  .mv-slider {
    width: 200%;
  }
  .mv-slider img {
    border-radius: 50px;
  }
  .mv-slider li {
    flex: 1;
    padding: 10px;
  }
  .mv-slider-01 {
    top: 0;
    left: 0;
  }
  .mv-slider-02 {
    bottom: -6%;
    left: -100%;
  }
}




/* 先輩たちの学び発見ストーリー */
.lp-sect-01-head {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 10px;
  box-sizing: border-box;
}
.lp-sect-01-head p {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.9;
}
.lp-sect-01-h {
  margin: 0 0 30px;
}
.lp-stories button {
  background: none;
  outline: none;
  appearance: none;
  border: none;
  cursor: pointer;
  transition: .2s;
  line-height: 0;
}
.lp-stories button:hover {
  opacity: .9;
}
.lp-stories-item {
  padding: 0 0 20px;
}

@media (max-width:900px) {
  .lp-sect-01 {
    padding-bottom: 0;
  }
  .lp-sect-01-head {
    max-width: none;
    width: auto;
    display: block;
    margin: 0 -20px;
    padding: 0 20px;
    background: url("../img/story.webp") no-repeat bottom 30% right;
    background-size: 80% auto;
    box-sizing: border-box;
  }
  .lp-sect-01-h img {
    width: 60%;
    margin: auto;
    display: block;
  }
  .lp-stories {
    padding: 40px 20px;
    margin: 0 -20px;
    background: url("../img/sect-01-bg_sp.webp") no-repeat top center;
    background-size: 100%;
    text-align: center;
  }
  .lp-sect-01-head p {
    width: 100%;
    max-width: 650px;
    margin: 20px auto;
  }
}

@media (max-width:600px) {
  .lp-sect-01-head p {
    max-width: 350px;
  }
}

@media (min-width:901px) {
  .lp-sect-01 {
    margin: 80px 0 0;
    background-image: url("../img/story.webp"), url("../img/sect-01-bg.webp");
    background-repeat: no-repeat;
    background-position: top 100px right, center;
    background-size: 60%, auto 86%;
  }
  .lp-sect-01-h {
    margin: 0 0 60px;
  }
  .lp-sect-01-head {
    margin: 0 auto 60px;
  }
  .lp-stories {
    display: flex;
    flex-wrap: wrap;
  }
  .lp-stories-item {
    flex: 0 0 50%;
    padding: 0 20px 40px;
    line-height: 0;
  }
  .lp-sect-01-head p {
    font-weight: bold;
    font-size: 18px;
  }

  /* .lp-stories-item:nth-of-type(2n) { */
  .lp-stories-item:nth-of-type(2) {
    padding-top: 120px;
  }
  .lp-stories-item:nth-of-type(5),
  .lp-stories-item:nth-of-type(3) {
    margin-top: -120px;
  }
}


/* 先輩たちの成長は、確かなデータでも証明されています。 */
.lp-sect-02-h {
  line-height: 0;
  font-size: 0;
  margin: 0 10px;
  width: auto;
  text-align: center;
}
.lp-sect-02-h img {
  width: 100%;
  display: block;
  margin: auto;
}
.lp-growth {
  border-radius: 30px;
  background-color: #F9AEAD;
  border: 4px solid #F9AEAD;
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.lp-growth-main {
  padding: 20px;
}
.lp-growth-foot {
  border-radius: 30px 30px 0 0;
  position: relative;
  background-color: #fff;
}
.lp-growth-foot-h {
  border-bottom: 4px solid #F9AEAD;
}
.lp-growth-image {
  display: none;
}

@media (max-width:900px) {
  .lp-sect-02 {
    padding: 0 0 20px;
  }
  .lp-growth-main p:nth-child(1) {
    margin: 0 0 1em;
  }
  .lp-growth-foot {
    padding: 20px 20px 0;
  }
  .lp-growth-foot-h {
    max-width: 80%;
    margin: 0 auto 20px;
    padding: 0 0 5px;
    display: block;
    text-align: center;
  }
  .lp-growth-image-sp {
    border-radius: 20px;
    max-width: 80%;
    margin: 20px auto;
    display: block;
  }
  .lp-growth-bubble {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
}

@media (max-width:400px) {
  .lp-growth-foot-h {
    max-width: 90%;
  }
}

@media (min-width:901px) {
  .lp-sect-02-h {
    line-height: 0;
    font-size: 0;
    margin: 0 50px;
  }
  .lp-sect-02-h img {
    width: 90%;
  }
  .lp-growth {
    border-radius: 50px;
  }
  .lp-growth-main {
    padding: 30px 60px;
    max-width: 940px;
    width: 100%;
    margin: 20px auto;
  }
  .lp-growth-main p {
    font-weight: bold;
    font-size: 18px;
    padding: 0 20px 0 0;
  }
  .lp-growth-main p:first-of-type {
    margin: 0 0 1rem;
  }
  .lp-growth-image-sp {
    display: none;
  }
  .lp-growth-image {
    display: block;
    border-radius: 50px;
    width: 48%;
    margin: 0 0 0 -5px;
  }
  .lp-growth-foot {
    border-radius: 50px 50px 0 0;
    display: flex;
    align-items: center;
    padding: 20px 18% 20px 40px;
  }
  .lp-growth-foot-h {
    font-size: 24px;
    margin: 0 0 20px;
    padding: 0 0 10px;
  }
  .lp-growth-foot p {
    font-weight: bold;
    font-size: 18px;
    padding: 0 40px 0 0;
  }
  .lp-growth-bubble {
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 25%;
  }
}




/* PROGが測る2つの力 */



.lp-sect-05-sub {
  background-color: #fff;
  border-radius: 50px 0 0 0;
  line-height: 1;
}

@media (max-width:900px) {
  .lp-sect-03 {
    background-image: url("../img/bg-pink_sp.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 0;
    margin: 40px 20px 40px 0;
    border-radius: 0 30px 30px 0;
  }

  .lp-sect-03-head p {
    padding: 20px 20px 0;
  }
  .lp-sect-03-h {
    background-color: #fff;
    border-radius: 0 60px 0 0;
    line-height: 0;
    padding: 10px 20px;
    width: 90%;
  }
  .word-area {
    padding: 0 20px;
    transform: translateY(20px);
  }

  .lp-sect-05 {
    background-image: url("../img/bg-blue_sp.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 0;
    margin: 60px 0 40px 20px;
    border-radius: 30px 0 0 30px;
  }

  .lp-sect-05-h {
    text-align: center;
    padding: 20px 0;
  }
  .lp-sect-05-sub {
    padding: 15px 10px;
    text-align: center;
    margin: 0 0 0 20px;
  }

}


@media (min-width:901px) {
  .lp-sect-03-head {
    background-image: url("../img/bg-pink.webp");
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: calc((100vw - 1000px) / 2 + 200px);
    border-radius: 0 50px 50px 0;
    padding: 60px 0 80px;
  }
  .lp-sect-03-h {
    background-color: #fff;
    border-radius: 0 50px 0 0;
    margin: 0 370px 20px 0;
    line-height: 0;
    padding: 10px 40px;
  }
  .lp-sect-03-head p {
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    max-width: 800px;
    margin: 0 0 0 auto;
    padding: 0 40px;
  }
  .lp-sect-03-h div {
    width: 100%;
    max-width: 350px;
    margin: 0 0 0 auto;
  }
  .lp-sect-05-head {
    background-image: url("../img/bg-blue.webp");
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: calc((100vw - 1000px) / 2 + 200px);
    border-radius: 50px 0 0 50px;
    padding: 60px 0 80px 60px;
  }
  .lp-sect-05-h {
    font-size: 40px;
    margin: 0 0 10px;
    margin-right: calc((100vw - 1000px) / 2 - 20px);
    padding: 0 40px;
    text-align: right;
  }
  .lp-sect-05-sub {
    margin: 30px 0 20px 280px;
    padding: 15px 40px;
    font-size: 24px;
  }
}


/* 単語ボックス */

.word-item {
  background-color: #fff;
  border-radius: 30px;
  border: 4px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to bottom, #EB9BBD, #F2DC82) border-box;
}
.blue .word-item {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, #5CB2E3, #C2DB5D) border-box;
}
.word-item-h {
  line-height: 1;
  padding: 20px 0 0;
}
.word-item-h strong {
  font-size: 16px;
  display: inline-block;
  padding: 10px;
  min-width: 7em;
  border-radius: 0 30px 0 0;
  background: linear-gradient(to bottom, #EB9BBD, #F2DC82);
}
.blue .word-item-h strong {
  background: linear-gradient(to right, #5CB2E3, #C2DB5D);
}
.word-item-h span {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 8px 10px;
  border-bottom: 2px solid #EB9BBD;
}
.blue .word-item-h span {
  border-bottom: 2px solid #C2DB5D;
}
.word-item p {
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
}
.word-pill-wrap {
  padding: 20px;
  min-height: 5em;
  text-align: center;
}
.word-pill {
  display: inline-block;
  padding: 5px 10px;
  margin: 5px;
  line-height: 1;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  background: linear-gradient(to right, #5CB2E3, #C2DB5D);
}

@media (max-width:900px) {
  .word-item-h {
    display: flex;
  }
  .word-item {
    margin: 0 0 20px;
  }
}

@media (min-width:901px) {
  .word-pill {
    font-size: 18px;
    padding: 5px 20px;
  }
  .word-area {
    width: 90%;
    max-width: 960px;
    margin: -40px auto 0;
    display: flex;
  }
  .word-item {
    flex: 1;
    margin: 0 10px;
    border-radius: 50px;
  }
  .word-item p {
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
  }
  .word-item-h {
    padding: 40px 0 0;
  }
  .word-item-h strong {
    font-size: 18px;
    min-width: 10em;
    padding: 10px 20px;
  }
  .word-item-h span {
    font-size: 18px;
  }
}


/* グラフ */
@media (max-width:900px) {
  .lp-sect-04 {
    padding: 0;
    margin: 0;
  }
  .lp-sect-04 .lp-container {
    padding: 0;
  }
}
@media (min-width:901px) {
  .lp-sect-04 {
    margin: 60px 0;
    padding: 30px 0;
    background: url("../img/growth.webp") no-repeat bottom right;
    background-size: contain;
  }
}


/* セクション５フッター */
.sect-05-foot {
  margin: 80px 0;
  text-align: center;
}
@media (min-width:901px) {
  .sect-05-foot {
    margin: 40px 0;
  }
}

/* フッター */
.lp-foot {
  margin: 80px auto;
  width: 100%;
}
.lp-foot-img {
  width: 100%;
  margin: 0 0 40px;
}
@media (max-width:900px) {
  .lp-foot-cta {
    max-width: 500px;
    margin: auto;
  }
}
@media (min-width:901px) {
  .lp-foot-cta {
    display: flex;
  }
  .lp-foot-img {
    margin: 0 0 50px;
  }
}


/* モーダル */
body.modal-open {
  margin: auto;
  left: 0;
  right: 0;
}
@media (min-width:901px) {
  body.modal-open {
    padding-right: 15px;
  }
}

.modal-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  background-image: linear-gradient(to bottom, #EB9BBD, #EDBEA3, #F2DC82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 888;
  overflow-y: auto;
  padding-bottom: 20px; 
  padding-bottom: env(safe-area-inset-bottom);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 30px;
  width: 96%;
  max-width: 860px;
  margin: 2vh auto;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.modal-head {
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  line-height: 0;
}

@media (min-width:901px) {
  .modal-content {
    margin: 4vh auto;
    border-radius: 50px;
  }
  .modal-head {
    border-radius: 50px 50px 0 0;
  }
}

.modal-close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  line-height: 0;
  transition: .2s;
  width: 40px;
  height: 40px;
}

@media (min-width:901px) {
  .modal-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    width: 60px;
    height: 60px;
  }
}

/* モーダル　内容 */
.modal-body {
  background-image: url("../img/bg-modal_sp.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%
}
.modal-body p {
  font-weight: bold;
  font-size: 15px;
}
.modal-block {
  padding: 20px 0;
}
.modal-body-h {
  text-align: center;
  margin: 0 0 20px;
}
.modal-body-h img {
  max-height: 100px;
  width: auto;
}

.modal-pill {
  background-color: #B7DC78;
  display: inline-block;
  line-height: 1;
  font-size: 15px;
  font-weight: bold;
  border-radius: 40px;
  padding: 5px 10px;
}
.modal-02 .modal-pill {
  background-color: #A0C7EA;
}
.modal-03 .modal-pill {
  background-color: #67C6AF;
}
.modal-04 .modal-pill {
  background-color: #E0A2B2;
}
.modal-05 .modal-pill {
  background-color: #EB9BBD;
}
.modal-06 .modal-pill {
  background-color: #E3B272;
}

.modal-body-sub {
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
}
.modal-body-sub small {
  font-size: .8em;
  display: block;
  line-height: normal;
}
.modal-before .modal-body-sub {
  text-align: center;
}
.modal-block-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

@media (max-width:900px) {
  .modal-before {
    padding: 40px 20px 20px;
  }
  .modal-block-body {
    padding: 20px;
  }
  .modal-block-image {
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    width: 100%;
    height: 240px;
  }
  .modal-block-01 .modal-block-image {
    border-radius: 0 30px 30px 0;
  }
  .modal-body-sub>div {
    padding: 5px 0 0;
  }
}

@media (min-width:901px) {
  .modal-body p {
    font-size: 18px;
  }
  .modal-body {
    padding: 0 0 70px;
    background-image: url("../img/bg-modal.webp");
  }
  .modal-before {
    padding: 20px 30px;
  }
  .modal-block {
    display: flex;
  }
  .modal-block-body {
    padding: 20px 30px;
  }
  .modal-block .modal-body-h {
    text-align: left;
  }
  .modal-block-image {
    flex: 0 0 45%;
    border-radius: 50px 0 0 50px;
    overflow: hidden;
    line-height: 0;
  }
  .modal-body p {
    font-weight: bold;
    font-size: 18px;
  }
  .modal-block-01 {
    flex-direction: row-reverse;
  }
  .modal-block-01 .modal-block-image {
    border-radius: 0 50px 50px 0;
  }
  .modal-pill,
  .modal-body-sub {
    font-size: 18px;
  }
  .modal-body-sub {
    display: flex;
    align-items: flex-start;
  }
  .modal-body-sub>div {
    flex: 1;
    text-align: left;
    padding: 0 0 0 5px;
  }
  .modal-pill {
    flex: 0 0 content;
  }
  .modal-before .modal-body-sub {
    justify-content: center;
  }
  .modal-before .modal-body-sub>div {
    flex: 0 0 content;
  }


}


/* モーダル　メッセージ */
.modal-message {
  padding: 0 15px;
  margin: 40px 0;
}
.modal-message-h {
  text-align: center;
  margin: 0 0 -20px;
  z-index: 1;
  position: relative;
}
.modal-message p {
  z-index: 2;
  position: relative;
  border-radius: 30px;
  margin: 0 0 20px 0;
  padding: 15px;
  background-color: #B7DC78;
}

.modal-02 .modal-message p {
  background-color: #A0C7EA;
}
.modal-03 .modal-message p {
  background-color: #67C6AF;
}
.modal-04 .modal-message p {
  background-color: #E0A2B2;
}
.modal-05 .modal-message p {
  background-color: #E890AC;
}
.modal-06 .modal-message p {
  background-color: #E3B272;
}

@media (min-width:901px) {
  .modal-message {
    padding: 0 40px;
  }
  .modal-message p {
    padding: 40px;
    border-radius: 50px;
  }
}


/* モーダル　フッター */
.modal-foot {
  width: 100%;
  max-width: 700px;
  margin: 20px auto 0;
  position: relative;
}

@media (max-width:900px) {
  .modal-foot {
    margin: 50px auto 0;
    padding: 15px;
  }
}

.modal-foot-h {
  text-align: center;
  display: block;
  margin: 0 auto 20px;
  padding: 0 35px;
  width: fit-content;
  position: relative;
  font-size: 20px;
}
.modal-foot-h::after,
.modal-foot-h::before {
  display: block;
  content: "";
  background-image: url("../img/deco.svg");
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
}
.modal-foot-h::before {
  left: 0;
}
.modal-foot-h::after {
  right: 0;
  transform: scale(-1, 1);
}
.modal-foot-btn {
  text-align: center;
  color: #fff;
  background-color: #95BB55;
  border-radius: 70px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  padding: 10px 20px;
  text-align: center;
  position: absolute;
  bottom: 35px;
  left: 25px;
  right: 25px;
  margin: auto;
}

.modal-foot-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 6px 8px;
  border-left-color: #fff;
  margin: auto;
}
.modal-foot-btn span {
  display: inline-block;
  padding: 5px 10px;
  color: #95BB55;
  background-color: #fff;
  border-radius: 40px;
  margin: 0 0 5px;
}
.modal-foot img {
  border-radius: 30px;
}

.modal-02 .modal-foot-btn span {
  color: #79A6CF;
}
.modal-02 .modal-foot-btn {
  background-color: #79A6CF;
}
.modal-03 .modal-foot-btn span {
  color: #39A68C;
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width:900px) {
  .modal-03 .modal-foot-btn span br {
    display: none;
  }
}
.modal-03 .modal-foot-btn {
  background-color: #39A68C;
}
.modal-04 .modal-foot-btn span {
  color: #CA6E86;
}
.modal-04 .modal-foot-btn {
  background-color: #CA6E86;
}
.modal-05 .modal-foot-btn span {
  color: #D5688B;
}
.modal-05 .modal-foot-btn {
  background-color: #D5688B;
}
.modal-06 .modal-foot-btn span {
  color: #CD8C38;
}
.modal-06 .modal-foot-btn {
  background-color: #CD8C38;
}


@media (min-width:901px) {
  .modal-foot img {
    border-radius: 50px;
  }
  .modal-foot-h {
    font-size: 24px;
    margin: 30px auto;
  }
  .modal-foot-btn>br {
    display: none;
  }
  .modal-foot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 20px;
    bottom: 40px;
    left: 40px;
    right: 40px;
  }
  .modal-03 .modal-foot-btn span {
    font-size: 20px;
  }
  .modal-foot-btn::after {
    right: 50px;
    border-width: 8px 12px;
  }
  .modal-foot-btn span {
    padding: 10px 15px;
    margin: 0 5px 0 0;
  }
}



/* フッター */
.lp-footer {
  border-top: 1px solid #999999;
  color: #999999;
  margin: 60px 0 0 0;
  padding: 20px 20px 60px;
  font-size: 14px;
}
.lp-footer-nav ul {
  list-style: none;
}
.lp-footer-nav a {
  color: #999999;
  text-decoration: none;
}
.lp-footer-copyright {
  padding: 5px 15px;
  line-height: 1;
}

@media (max-width:900px) {
  .lp-footer-nav a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #999999;
  }
  .lp-footer-copyright {
    padding: 20px 10px;
  }
}

@media (min-width:901px) {
  .lp-footer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin: 120px 0 0 0;
    padding: 40px 40px 120px;
  }
  .lp-footer-nav ul {
    display: flex;
    width: fit-content;
    margin: 0 0 0 auto;
  }
  .lp-footer-nav a {
    display: inline-block;
    padding: 5px 15px;
    border-right: 1px solid #999999;
    transition: .2s;
  }
  .lp-footer-nav li:last-child a {
    border: none;
  }
}

@media (hover:hover) {
  .lp-footer-nav a:hover {
    color: #0079BB;
  }
}



/* トップへ戻る */
#scrollTopBtn {
  background: none;
  position: fixed;
  bottom: 50px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: .2s;
  opacity: 0;
  pointer-events: none;

}
#scrollTopBtn.show {
  opacity: 1;
  pointer-events: all;
}
#scrollTopBtn img {
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  #scrollTopBtn:hover {
    transform: scale(1.1);
  }
}
@media (min-width:901px) {
  #scrollTopBtn {
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
  }
}


/* その他 */
.br {
  display: inline-block;
}