@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: 75%;
  }
}
@media screen and (max-width: 400px) {
  #main_area {
    padding-top: 70%;
  }
}

#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;
  }
}

#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;
  }
}

#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 .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 592px) {
  #main_area .group {
    display: block;
  }
}
#main_area .group .ex {
  text-shadow: none;
}
@media screen and (max-width: 592px) {
  #main_area .group .ex {
    text-align: center;
  }
}
#main_area .group .ex span {
  background-color: #0C8086;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 5px 10px;
  margin-right: 20px;
  display: block;
}
@media screen and (max-width: 592px) {
  #main_area .group .ex span {
    display: inline-block;
  }
}
#main_area .group .price {
  color: #0C8086;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 592px) {
  #main_area .group .price {
    text-align: center;
  }
}
#main_area .group .price span {
  font-size: 24px;
}

/* ----------------------------------------------------------------------------
　参考動画
---------------------------------------------------------------------------- */
#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;
}
@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-bottom: 2rem;
}
@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) {
  margin-right: 0%;
}
@media screen and (max-width: 592px) {
  #movie ul li {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

#movie ul li .title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 592px) {
  #movie ul li .title {
    font-size: 1.125rem;
  }
}

#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;
}

/* ----------------------------------------------------------------------------
　活用シーン
---------------------------------------------------------------------------- */
#scene {
  background-color: #F2F2F2;
  padding: 5rem 0;
  position: relative;
}

#scene .bg {
  position: absolute;
  left: 0rem;
  bottom: 0rem;
  width: 2000px;
  height: 45%;
  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) {
  #scene .bg {
    height: 20%;
  }
}

@-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;
  }
}
#scene .inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  #scene .inner {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  #scene .inner {
    width: 85%;
  }
}

#scene ul {
  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;
  margin-bottom: 2rem;
}
@media screen and (max-width: 592px) {
  #scene ul {
    display: block;
    margin-bottom: 0rem;
  }
}

#scene ul li {
  width: 27%;
}
@media screen and (max-width: 592px) {
  #scene ul li {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
#scene ul li img {
  width: 100%;
}

#scene ul li .photo {
  width: 58%;
  margin: 0 auto;
}
@media screen and (max-width: 592px) {
  #scene ul li .photo {
    width: 50%;
  }
}
#scene ul li .photo img {
  width: 100%;
}

#scene ul li .title {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  color: #00AEEC;
}
@media screen and (max-width: 592px) {
  #scene ul li .title {
    font-size: 1.125rem;
  }
}

#scene ul li .text {
  line-height: 180%;
  letter-spacing: -0.5px;
  margin-top: 0.5rem;
  text-align: left;
}

#scene .text {
  text-align: center;
  line-height: 180%;
}
@media screen and (max-width: 592px) {
  #scene .text {
    font-size: 1.125rem;
  }
}

/* ----------------------------------------------------------------------------
　制作の流れ
---------------------------------------------------------------------------- */
#flow {
  padding: 5rem 0;
}

#flow .inner {
  width: 688px;
  margin: 0 auto;
}
@media screen and (max-width: 770px) {
  #flow .inner {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  #flow .inner {
    width: 85%;
  }
}

#flow .chart img {
  width: 100%;
}

/* ----------------------------------------------------------------------------
　料金
---------------------------------------------------------------------------- */
#price {
  padding: 5rem 0;
  background-color: #E9F0F0;
  position: relative;
}

#price .bg {
  position: absolute;
  left: 0rem;
  bottom: 0rem;
  width: 2000px;
  height: 19%;
  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) {
  #price .bg {
    height: 11.5%;
  }
}

@keyframes bgroop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2000px 0;
  }
}
#price .inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  #price .inner {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  #price .inner {
    width: 85%;
  }
}

#price .lead_note {
  text-align: center;
  font-size: 12px;
  margin-bottom: 40px;
}

#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: #0C8086;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 592px) {
  #price .chart .price {
    font-size: 4rem;
  }
}

#price .chart .price span {
  position: relative;
}
#price .chart .price span: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.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: #21547E;
  letter-spacing: -0.5px;
}
@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;
  text-align: center;
}
@media screen and (max-width: 592px) {
  #price .chart .attention {
    text-align: left;
  }
}

#price .pattern .pattern_list {
  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;
  margin-bottom: 24px;
}
@media screen and (max-width: 592px) {
  #price .pattern .pattern_list {
    display: block;
  }
}
#price .pattern .pattern_list li {
  background-color: #D0E5E5;
  border-radius: 12px;
  padding: 26px 26px 20px;
  width: 30.8%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 592px) {
  #price .pattern .pattern_list li {
    width: auto;
    margin-bottom: 20px;
  }
  #price .pattern .pattern_list li:last-of-type {
    margin-bottom: 0;
  }
}
#price .pattern .pattern_list li dl {
  background-color: #fff;
  border-radius: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 28px;
  position: relative;
}
#price .pattern .pattern_list li dl dt {
  margin-right: 15px;
}
#price .pattern .pattern_list li dl dd {
  color: #21547E;
  font-size: 16px;
  font-weight: 700;
}
#price .pattern .pattern_list li dl::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(./../img/pattern_plus.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -22px;
}
#price .pattern .pattern_list li dl:last-of-type {
  margin-bottom: 15px;
}
#price .pattern .pattern_list li dl:last-of-type::after {
  display: none;
}
#price .pattern .pattern_list li .txt_price {
  color: #0C8086;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-top: auto;
}
#price .pattern .pattern_list li .txt_price span {
  font-size: 24px;
}

#price .option dl {
  background-color: #fff;
  padding: 1.5rem;
}

#price .option dl dt {
  color: #21547E;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 592px) {
  #price .option dl dt {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
  }
}

#price .option dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

#price .option dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 592px) {
  #price .option dl dd ul {
    width: auto;
  }
}

#price .option dl dd ul li {
  margin: 0 1.5rem 0 0;
  border-bottom: 1px solid #D0E5E5;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
#price .option dl dd ul li:first-child, #price .option dl dd ul li:nth-child(4) {
  width: 100%;
}
#price .option dl dd ul li:after {
  content: "●";
  position: absolute;
  top: 0rem;
  left: 0rem;
  color: #00AEEC;
  font-size: 1.125rem;
}
#price .option dl dd ul li .price {
  font-size: 1.125rem;
  color: #0C8086;
  font-weight: 600;
  margin-left: auto;
}
@media screen and (max-width: 592px) {
  #price .option dl dd ul li .price {
    display: block;
    text-align: right;
  }
}
#price .option dl dd ul li .price span {
  font-size: 12px;
}
#price .option dl dd ul li .small {
  font-size: 0.7rem;
}

#price .option .cap {
  font-size: 0.7rem;
}
@media screen and (max-width: 592px) {
  #price .option .cap {
    font-size: 0.8rem;
  }
}

/* ----------------------------------------------------------------------------
　各種サービス
---------------------------------------------------------------------------- */
#set_service {
  padding: 5rem 0 12rem;
  margin-bottom: 12rem;
}

#set_service .inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  #set_service .inner {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  #set_service .inner {
    width: 85%;
  }
}
#set_service .inner .spec_img {
  max-width: 760px;
  margin: 0 auto 20px;
}
#set_service .inner .spec_img img {
  width: 100%;
}
#set_service .inner .note {
  max-width: 760px;
  margin: 0 auto 6rem;
  font-size: 12px;
}
@media screen and (max-width: 592px) {
  #set_service .inner .note {
    margin: 0 auto 5rem;
  }
}