@charset "UTF-8";
/* =================================================================================================

　TOP

================================================================================================= */
/* CSS Document */
/* ----------------------------------------------------------------------------
　ベースカラー
---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
　共通各エリアタイトル
---------------------------------------------------------------------------- */
.title_style01 {
  font-size: 1.4rem;
  padding-bottom: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  background: url("../img/title_style01.svg") center bottom no-repeat;
}
@media screen and (max-width: 592px) {
  .title_style01 {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------------------------------------------
　お問い合わせボタン
---------------------------------------------------------------------------- */
.btn_contact {
  width: 256px;
  margin: 0 auto;
}

.btn_contact a {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #FF6D3B;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 700;
  padding: 1.2rem 0;
  -webkit-transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn_contact a span {
  position: relative;
  z-index: 2;
  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_contact a:hover {
  -webkit-box-shadow: 0px 0 0 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0 0 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
@media screen and (max-width: 592px) {
  .btn_contact a {
    padding: 1.5rem 0;
  }
}
.btn_contact a img {
  margin-right: 0.3rem;
}

.btn_contact a:after {
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  top: 0rem;
  left: -100%;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #f74d13, #f74d13 48.5%, #f74d13 50.5%, rgba(0, 0, 0, 0) 50.5%, rgba(0, 0, 0, 0) 51.5%, rgba(0, 0, 0, 0));
}

.btn_contact a:before {
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  top: 0rem;
  right: -100%;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 48.5%, rgba(0, 0, 0, 0) 50.5%, #f74d13 50.5%, #f74d13 51.5%, #f74d13);
}

.btn_contact a:hover {
  opacity: 1;
}

.btn_contact a:hover:after {
  left: 0%;
}

.btn_contact a:hover:before {
  right: 0%;
}

/* ----------------------------------------------------------------------------
　メインエリア
---------------------------------------------------------------------------- */
#main_area {
  height: 530px;
  position: relative;
  border-top: 2px solid #F2F2F2;
  border-bottom: 3px solid #F2F2F2;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  #main_area {
    height: 450px;
  }
}
@media screen and (max-width: 800px) {
  #main_area {
    height: 350px;
  }
}
@media screen and (max-width: 592px) {
  #main_area {
    padding-top: 70%;
  }
}
@media screen and (max-width: 400px) {
  #main_area {
    padding-top: 60%;
  }
}

#main_area .bg01 {
  position: absolute;
  left: 0rem;
  bottom: 0rem;
  width: 540px;
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media all and (max-width: 1366px) {
  #main_area .bg01 {
    width: 400px;
  }
}
@media screen and (max-width: 800px) {
  #main_area .bg01 {
    width: 300px;
  }
}
@media screen and (max-width: 592px) {
  #main_area .bg01 {
    width: 130%;
    bottom: -10%;
  }
}
#main_area .bg01 img {
  width: 100%;
  -webkit-animation: mainAreaBgAnime 2s ease-in-out 0s infinite;
          animation: mainAreaBgAnime 2s ease-in-out 0s infinite;
}
#main_area .bg01.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

@-webkit-keyframes mainAreaBgAnime {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes mainAreaBgAnime {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#main_area .bg02 {
  position: absolute;
  right: 0rem;
  top: 0rem;
  width: 590px;
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media all and (max-width: 1366px) {
  #main_area .bg02 {
    width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  #main_area .bg02 {
    width: 400px;
  }
}
@media screen and (max-width: 800px) {
  #main_area .bg02 {
    width: 300px;
  }
}
@media screen and (max-width: 592px) {
  #main_area .bg02 {
    display: none;
  }
}
#main_area .bg02 img {
  width: 100%;
  -webkit-animation: mainAreaBgAnime 2s ease-in-out 0s infinite;
          animation: mainAreaBgAnime 2s ease-in-out 0s infinite;
}
#main_area .bg02.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

#main_area .photo {
  position: absolute;
  right: 0rem;
  bottom: 0rem;
  width: 697px;
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media all and (max-width: 1366px) {
  #main_area .photo {
    width: 580px;
  }
}
@media screen and (max-width: 1024px) {
  #main_area .photo {
    width: 400px;
  }
}
@media screen and (max-width: 800px) {
  #main_area .photo {
    width: 300px;
  }
}
@media screen and (max-width: 592px) {
  #main_area .photo {
    width: 100%;
    bottom: -9%;
  }
}
#main_area .photo img {
  width: 100%;
  -webkit-animation: mainAreaPhotoAnime 2s ease-in-out 0s infinite;
          animation: mainAreaPhotoAnime 2s ease-in-out 0s infinite;
}
#main_area .photo.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

@-webkit-keyframes mainAreaPhotoAnime {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes mainAreaPhotoAnime {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
#main_area .inner {
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0rem;
  left: calc((100% - 1000px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  text-shadow: 1px 1px 0px #fff;
}
@media screen and (max-width: 1080px) {
  #main_area .inner {
    width: 95%;
    left: 2.5%;
  }
}
@media screen and (max-width: 592px) {
  #main_area .inner {
    display: block;
    top: 1rem;
    width: 90%;
    left: 5%;
  }
}

#main_area .copy {
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}
#main_area .copy.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

#main_area .sub {
  color: #21547E;
  font-weight: 600;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 800px) {
  #main_area .sub {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 592px) {
  #main_area .sub {
    font-size: 3vw;
  }
}
#main_area .sub span {
  display: inline-block;
  border: 1px solid #21547E;
  background-color: #fff;
  border-radius: 100px;
  padding: 0.3rem 1rem;
  margin-right: 0.5rem;
}

#main_area h1 {
  font-size: 2.5rem;
  line-height: 100%;
  font-weight: 800;
  color: #21547E;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  #main_area h1 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 800px) {
  #main_area h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 592px) {
  #main_area h1 {
    font-size: 7vw;
    text-align: center;
  }
}

#main_area h1 span {
  position: relative;
}
#main_area h1 span:after {
  content: "";
  position: absolute;
  left: 0rem;
  bottom: -0.3rem;
  width: 0%;
  height: 5px;
  background-color: #FFE23E;
  -webkit-transition: 0.4s ease-in-out 0.5s;
  transition: 0.4s ease-in-out 0.5s;
}

#main_area h1.active span:after {
  width: 100%;
}

#main_area .text {
  line-height: 180%;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 592px) {
  #main_area .text {
    font-size: 3.5vw;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

#main_area .period_wrap {
  margin-right: 10px;
}
@media screen and (max-width: 592px) {
  #main_area .period_wrap {
    text-align: center;
    margin-right: 0;
  }
}

#main_area .period {
  display: inline-block;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 0.875rem;
  padding: 0.3rem;
}
@media screen and (max-width: 592px) {
  #main_area .period {
    font-size: 3.5vw;
  }
}

#main_area .copy .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 592px) {
  #main_area .copy .group {
    display: block;
  }
}

#main_area .price_wrap {
  color: #0070C3;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 592px) {
  #main_area .price_wrap {
    font-size: 4.8rem;
  }
}
#main_area .price_wrap .small {
  font-size: 2rem;
}
@media screen and (max-width: 592px) {
  #main_area .price_wrap .small {
    font-size: 2.4rem;
  }
}

/* ----------------------------------------------------------------------------
　参考動画
---------------------------------------------------------------------------- */
#movie {
  position: relative;
  padding: 5rem 0;
}
#movie:after {
  content: "";
  position: absolute;
  top: calc((100% - 150px) / 2);
  left: 0rem;
  width: 100%;
  height: 150px;
  background-color: #F2F2F2;
  display: none;
}
@media screen and (max-width: 592px) {
  #movie:after {
    height: 250px;
    top: calc((100% - 250px) / 2);
  }
}

#movie .inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  #movie .inner {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  #movie .inner {
    width: 85%;
  }
}

#movie ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 3rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 592px) {
  #movie ul {
    display: block;
  }
}

#movie ul li {
  width: 44.8%;
  margin: 0 10.4% 0 0;
}
#movie ul li:nth-child(2n), #movie ul li:only-child {
  margin-right: 0%;
}
@media screen and (max-width: 592px) {
  #movie ul li {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

#movie ul li .title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-align: center;
}
@media screen and (max-width: 592px) {
  #movie ul li .title {
    font-size: 1.125rem;
  }
}
#movie ul li .title span {
  font-size: 1rem;
}

#movie ul li .photo {
  position: relative;
  overflow: hidden;
}
#movie ul li .photo a {
  display: block;
  position: relative;
  padding-bottom: 56%;
}
#movie ul li .photo a:after {
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("../img/icon_play.svg") center center no-repeat;
  background-size: 15% auto;
}
#movie ul li .photo a:hover:after {
  background-size: 20% auto;
}
#movie ul li .photo img {
  width: 100%;
  position: absolute;
  top: -17%;
  left: 0rem;
}

/* ----------------------------------------------------------------------------
　進め方
---------------------------------------------------------------------------- */
#flow {
  background-color: #EDF7FF;
  padding: 5rem 0;
  position: relative;
}

#flow .bg {
  position: absolute;
  left: 0rem;
  bottom: 0rem;
  width: 2000px;
  height: 23%;
  background: url("../img/scene_bg.svg") center bottom repeat-x;
  background-size: 100%;
  -webkit-animation: bgroop 20s linear infinite;
          animation: bgroop 20s linear infinite;
}
@media screen and (max-width: 592px) {
  #flow .bg {
    height: 35%;
  }
}

@-webkit-keyframes bgroop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2000px 0;
  }
}

@keyframes bgroop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2000px 0;
  }
}
#flow h2 {
  margin-bottom: 60px;
}

#flow .inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  #flow .inner {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  #flow .inner {
    width: 85%;
  }
}

#flow .flow_block {
  position: relative;
}
#flow .flow_block img {
  max-width: 100%;
}
@media screen and (min-width: 801px) {
  #flow .flow_block .balloon {
    position: absolute;
    right: -30px;
    top: -60px;
    z-index: 2;
  }
}
@media screen and (max-width: 800px) {
  #flow .flow_block .balloon {
    text-align: center;
  }
}
#flow .flow_block .balloon_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  #flow .flow_block .balloon_sp {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  #flow .flow_block .balloon_pc {
    display: none;
  }
}
#flow .flow_block .step_box {
  background-color: #fff;
}
#flow .flow_block .step_box .items {
  padding: 40px;
}
@media screen and (max-width: 800px) {
  #flow .flow_block .step_box .items {
    padding: 20px;
  }
}
#flow .flow_block h3 {
  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;
  font-size: 1.8rem;
  color: #fff;
  padding: 10px;
  line-height: 1;
}
#flow .flow_block h3 .step_num {
  display: inline-block;
  background-color: #fff;
  border-radius: 100vh;
  font-size: 1.6rem;
  padding: 0.5rem 2rem;
  margin-right: 10px;
}
#flow .flow_block .step01 {
  border: 2px solid #2F6EBD;
  position: relative;
  margin-bottom: 64px;
}
#flow .flow_block .step01::before {
  content: "";
  display: block;
  width: 120px;
  height: 24px;
  background-color: #4C9EDB;
  position: absolute;
  bottom: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#flow .flow_block .step01 h3 {
  background-color: #2F6EBD;
}
#flow .flow_block .step01 h3 .step_num {
  color: #2F6EBD;
}
#flow .flow_block .step01 .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  #flow .flow_block .step01 .items {
    display: block;
  }
}
#flow .flow_block .step01 .items .item {
  margin-bottom: 30px;
}
#flow .flow_block .step01 .items .item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 801px) {
  #flow .flow_block .step01 .items .item {
    width: 48.35%;
    margin-bottom: 0;
  }
}
#flow .flow_block .step01 .items .item dl dt {
  text-align: center;
  margin-bottom: 20px;
  color: #0070C3;
  font-size: 1.4rem;
  font-weight: 600;
}
#flow .flow_block .step01 .items .item dl dt .num {
  background-color: #4C9EDB;
  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;
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 100vh;
  margin: 0 auto;
  font-size: 1.4rem;
}
#flow .flow_block .step01 .items .item dl dd {
  text-align: center;
}
#flow .flow_block .step02 {
  border: 2px solid #039DA0;
}
#flow .flow_block .step02 h3 {
  background-color: #039DA0;
}
#flow .flow_block .step02 h3 .step_num {
  color: #039DA0;
}
@media screen and (min-width: 801px) {
  #flow .flow_block .step02 .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#flow .flow_block .step02 .items .item {
  border: 2px solid #A6B9C9;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  text-align: center;
  color: #00888B;
  font-size: 1.4rem;
  font-weight: 600;
  width: 80%;
  margin: 0 auto 64px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#flow .flow_block .step02 .items .item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 801px) {
  #flow .flow_block .step02 .items .item {
    width: 29.01%;
    margin: 0;
    font-size: 1rem;
  }
}
#flow .flow_block .step02 .items .item:not(:last-child)::before {
  content: "";
  display: block;
  width: 70px;
  height: 24px;
  background-color: #69BCBE;
  position: absolute;
  bottom: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (min-width: 801px) {
  #flow .flow_block .step02 .items .item:not(:last-child)::before {
    bottom: auto;
    top: 50%;
    left: auto;
    right: -6.75vw;
    -webkit-transform: translateY(-50%) translateX(0) rotate(-90deg);
            transform: translateY(-50%) translateX(0) rotate(-90deg);
  }
}
@media screen and (min-width: 1025px) {
  #flow .flow_block .step02 .items .item:not(:last-child)::before {
    right: -70px;
  }
}

/* ----------------------------------------------------------------------------
　料金
---------------------------------------------------------------------------- */
#price {
  padding: 5rem 0;
  background-color: #F2F2F2;
}

#price .inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  #price .inner {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  #price .inner {
    width: 85%;
  }
}

#price .chart {
  background-color: #fff;
  border: 2px solid #2F6EBD;
  padding: 2rem 0;
  margin-bottom: 3rem;
}

#price .chart .price {
  text-align: center;
  font-size: 3rem;
  line-height: 100%;
  font-weight: 600;
  color: #0070C3;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 592px) {
  #price .chart .price {
    font-size: 4rem;
  }
}

#price .chart .price span.line {
  position: relative;
}
#price .chart .price span.line:after {
  content: "";
  position: absolute;
  left: 0rem;
  bottom: 0rem;
  width: 0%;
  height: 5px;
  background-color: #FFE23E;
  -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
#price .chart .price span.line .small {
  font-size: 1.5rem;
}
@media screen and (max-width: 592px) {
  #price .chart .price span.line .small {
    font-size: 2rem;
  }
}

#price .chart.active .price span:after {
  width: 100%;
}

#price .chart .sub {
  text-align: center;
  font-size: 0.7rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 592px) {
  #price .chart .sub {
    font-size: 0.875rem;
  }
}

#price .chart ul {
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  #price .chart ul {
    width: 60%;
  }
}
@media screen and (max-width: 592px) {
  #price .chart ul {
    width: 85%;
  }
}

#price .chart ul li {
  width: 15%;
}
@media screen and (max-width: 800px) {
  #price .chart ul li {
    width: 48%;
  }
}

#price .chart ul li .photo img {
  width: 100%;
}

#price .chart ul li .title {
  text-align: center;
  font-weight: 600;
  color: #0070C3;
}
@media screen and (max-width: 592px) {
  #price .chart ul li .title {
    font-size: 1.125rem;
  }
}

#price .chart ul li .cap {
  font-size: 0.7rem;
  text-align: center;
}
@media screen and (max-width: 592px) {
  #price .chart ul li .cap {
    font-size: 0.8rem;
  }
}

#price .chart .attention {
  width: 90%;
  margin: 0 auto;
  font-size: 0.8rem;
  margin-top: 2rem;
}

#price .option {
  margin-bottom: 2rem;
}

#price .option dl {
  background-color: #fff;
  padding: 1.5rem;
  margin-bottom: 0.5rem;
}

#price .option dl dt {
  color: #0070C3;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 592px) {
  #price .option dl dt {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
  }
}

#price .option dl dd ul {
  width: 48%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #price .option dl dd ul {
    width: 100%;
  }
}

#price .option dl dd ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #D0E5E5;
  padding-left: 1.3rem;
  position: relative;
  line-height: 180%;
  letter-spacing: -0.2px;
}
@media screen and (max-width: 592px) {
  #price .option dl dd ul li {
    display: block;
    padding: 1rem 0 1rem 1.3rem;
    line-height: 140%;
  }
}
#price .option dl dd ul li:after {
  content: "●";
  position: absolute;
  top: 0rem;
  left: 0rem;
  color: #00AEEC;
  font-size: 1.125rem;
}
@media screen and (max-width: 592px) {
  #price .option dl dd ul li:after {
    top: 1rem;
  }
}
@media screen and (max-width: 592px) {
  #price .option dl dd ul li .ttl {
    display: block;
  }
}
#price .option dl dd ul li .price {
  font-size: 1.125rem;
  color: #0070C3;
  font-weight: 600;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 592px) {
  #price .option dl dd ul li .price {
    display: block;
    text-align: right;
  }
}
#price .option dl dd ul li .small {
  font-size: 0.7rem;
}
#price .option dl dd ul li .space_last {
  margin-right: 1em;
}

#price .option .cap {
  font-size: 0.7rem;
}
@media screen and (max-width: 592px) {
  #price .option .cap {
    font-size: 0.8rem;
  }
}