@charset "UTF-8";
/*---------- Google Fontsの読み込み----------*/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300&family=Homemade+Apple&family=Noto+Sans+JP:wght@100;300;400;500;700&family=Open+Sans+Condensed:wght@300;700&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:wght@400;500;700&display=swap");
/*---------- Scssファイルの読み込み----------*/
/*----------共通----------*/
section {
  margin: 5em 0;
}

body {
  color: #333333;
  margin: 0;
  font-family: "MS Pゴシック",sans-serif,"MSゴシック","MS Pゴシック","メイリオ";
}

h1, h2, h3 {
  font-weight: normal;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #f790be;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inner {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.center {
  text-align: center;
}

.fadein {
  opacity: 0;
}

.fadein.fade_on {
  opacity: 1;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.pink {
  color: #f790be;
}

.sp_none {
  display: block;
}

.sp_only {
  display: none;
}

.pc_none {
  display: none;
}

/*----------ナビ----------*/
.f-nav {
  position: fixed;
  width: 240px;
  height: 145px;
  background-color: #1195c6;
  bottom: 3%;
  right: 5%;
  z-index: 100;
  border-radius: 50%;
}

.f-nav ul {
  padding: 0;
  margin-top: 35px;
}

.f-nav ul li {
  border-bottom: solid 1px #fff;
  padding: 0.2em;
  margin: 0 1.3em;
}

.f-nav ul li a {
  color: #fff;
  text-align: center;
  display: block;
}

.f-nav ul li:last-child {
  border: none;
}

.f-nav.none {
  opacity: 0;
}

/*----------タイトル----------*/
.sec-ttl {
  font-size: 1.3em;
}

.sec-ttl span {
  position: relative;
}

.sec-ttl span::before, .sec-ttl span::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: rgba(17, 149, 198, 0.15);
}

.sec-ttl span::before {
  width: 30px;
  height: 30px;
  left: -40px;
}

.sec-ttl span::after {
  width: 20px;
  height: 20px;
  left: -20px;
  top: -50%;
}

/*----------カバー----------*/
.cover {
  height: 80%;
  margin: 0;
}

.cover .main-ttl {
  width: 50%;
  margin: auto;
  text-align: center;
}

.cover .main-ttl h1 {
  margin: 0;
  font-size: 2.7em;
  color: #1194c5;
  font-weight: 400;
}

.cover .main-ttl h1 span {
  position: relative;
}

.cover .main-ttl h1 span:before, .cover .main-ttl h1 span:after {
  position: absolute;
  content: "";
  background-color: rgba(247, 144, 190, 0.2);
  border-radius: 50%;
}

.cover .main-ttl h1 span:before {
  width: 120px;
  height: 120px;
  top: -50%;
  left: 50%;
}

.cover .main-ttl h1 span:after {
  width: 90px;
  height: 90px;
  top: -50%;
  left: 30%;
}

.cover .main-ttl p {
  margin: 0.3em 0 0;
  font-size: 1.3em;
}

.cover figure {
  width: 50%;
  text-align: center;
}

.cover figure img {
  width: 80%;
  margin: 10% 0 auto;
}

.cover .scroll {
  font-size: 0.8em;
}

.cover .scroll span {
  position: relative;
}

.cover .scroll span:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  background-color: #333333;
  left: 50%;
  bottom: 150%;
}

/*----------メインキャッチ----------*/
.main-catch {
  margin: 3em auto 5em;
}

.main-catch h2 {
  font-size: 1.3em;
}

.main-catch h2 span {
  position: relative;
}

.main-catch h2 span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  bottom: -20%;
  background-color: rgba(17, 149, 198, 0.15);
}

/*----------アバウト----------*/
.about .img-box {
  width: 50%;
  position: relative;
}

.about .img-box figure {
  height: 70%;
  position: absolute;
  bottom: 0;
  right: 10%;
  margin: 0;
}

.about .img-box figure span {
  position: relative;
}

.about .img-box figure span img {
  height: 100%;
}

.about .img-box figure span::before {
  position: absolute;
  content: "";
  background-image: url("/img/img_hands.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  left: -40%;
  bottom: 160px;
}

.about .text-box {
  width: 50%;
}

.about .text-box h3 span {
  position: relative;
}

.about .text-box h3 span::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 250, 205, 0.5);
  z-index: -1;
}

.about .text-box ul {
  margin-top: 3em;
  padding: 1.5em 0;
  border-top: solid 2px #1195c6;
  border-bottom: solid 2px #1195c6;
}

.about .text-box ul li {
  margin: 0 0.5em;
  border-bottom: solid 1px #1195c6;
  padding: 1em;
  position: relative;
}

.about .text-box ul li:first-child {
  padding-top: 0;
}

.about .text-box ul li:last-child {
  border: none;
  padding-bottom: 0;
}

.about .text-box ul li:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #1194c5;
  top: 45%;
  left: 1%;
}

/*----------ご利用方法----------*/
.howto .bk {
  padding: 1em 0;
  background-color: rgba(17, 149, 198, 0.15);
}

.howto .bk p {
  margin: 1em 0;
  font-size: 1.1em;
}

.howto .bk p span.bk2 {
  background: #fff;
  padding: 1em;
}

.howto .bk p:first-child {
  margin: 2em 0;
  font-size: 1em;
}

.howto .bk p.btn {
  display: inline-block;
}

.howto .bk p.btn span {
  background-color: #1194c5;
  border-radius: 50px;
  padding: 1em;
  font-size: 1.5em;
}

.howto .bk p.btn span a {
  color: #fff;
}

.howto .bk p.btn span a i {
  color: #333333;
}

.howto .bk p.btn:hover {
  -webkit-transform: scale(0.98, 0.98);
          transform: scale(0.98, 0.98);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*----------料金----------*/
.price dl dt {
  width: 30%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1195c6;
  border-bottom: solid 2px #fff;
  color: #fff;
  font-size: 1.1em;
}

.price dl dd {
  margin: 0;
}

.price dl dd dl {
  margin: 0;
}

.price dl dd dl dd {
  margin: 0;
  padding: 1em;
  border-bottom: solid 2px #fff;
}

.price dl dd dl dd:last-child {
  border-bottom: none;
}

.price dl .detail {
  width: 65%;
  padding: 0;
  background-color: rgba(17, 149, 198, 0.15);
  border-bottom: solid 2px #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.price dl .price {
  width: 15%;
  padding: 0;
  background-color: rgba(247, 144, 190, 0.2);
  border-bottom: solid 2px #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.price dl .price.flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*----------フッター----------*/
footer {
  background-color: rgba(17, 149, 198, 0.15);
  padding: 2em 0 0.5em;
}

footer .inner .main-ttl {
  width: 50%;
  margin: auto;
}

footer .inner .main-ttl h3 {
  margin: 0.3em;
  font-size: 1.7em;
  color: #1194c5;
  font-weight: 400;
}

footer .inner .main-ttl h3 span {
  position: relative;
}

footer .inner .main-ttl h3 span:before, footer .inner .main-ttl h3 span:after {
  position: absolute;
  content: "";
  background-color: rgba(247, 144, 190, 0.2);
  border-radius: 50%;
}

footer .inner .main-ttl h3 span:before {
  width: 80px;
  height: 80px;
  top: -50%;
  left: 50%;
}

footer .inner .main-ttl h3 span:after {
  width: 50px;
  height: 50px;
  top: -50%;
  left: 30%;
}

footer .inner .main-ttl p {
  margin: 0.5em;
}

footer .inner .info-box {
  width: 50%;
}

footer .inner .info-box p {
  position: relative;
}

footer .inner .info-box p span {
  position: absolute;
  background-color: rgba(247, 144, 190, 0.5);
  border-radius: 50%;
  width: 130px;
  padding: 0.3em;
  top: -55%;
  margin-left: 5%;
  font-size: 0.8em;
}

footer .inner .info-box .cr {
  margin: 0;
}

/*----------タブレット----------*/
@media (max-width: 980px) {
  .pc_none {
    display: none;
  }
  .about .img-box {
    width: 50%;
    text-align: center;
  }
  .about .img-box figure {
    height: 50%;
    bottom: 15%;
  }
  .about .img-box figure span img {
    height: 80%;
  }
  .about .img-box figure span::before {
    width: 150px;
    height: 150px;
    left: -30%;
  }
  /*----------カバー----------*/
  .cover .flex .main-ttl h1 {
    font-size: 2em;
  }
  /*----------フッター----------*/
  footer {
    background-color: rgba(17, 149, 198, 0.15);
    padding: 2em 0 3.5em;
  }
  footer .flex {
    display: initial;
  }
  footer .inner .main-ttl {
    width: 100%;
  }
  footer .inner .main-ttl h3 {
    margin: 0;
    font-size: 1.5em;
  }
  footer .inner .main-ttl h3 span:before {
    width: 65px;
    height: 65px;
    left: 50%;
  }
  footer .inner .main-ttl h3 span:after {
    width: 40px;
    height: 40px;
    left: 35%;
  }
  footer .inner .main-ttl p {
    font-size: 0.8em;
    margin: 0.3em;
  }
  footer .inner .info-box {
    width: 100%;
  }
  footer .inner .info-box p {
    position: relative;
    text-align: center;
  }
  footer .inner .info-box p span {
    position: absolute;
    background-color: rgba(247, 144, 190, 0.5);
    border-radius: 50%;
    width: 130px;
    padding: 0.3em;
    top: 155%;
    left: 35%;
    margin-left: 5%;
    font-size: 0.8em;
  }
  footer .inner .info-box p:nth-child(3) {
    margin: 5em 0;
  }
  footer .inner .info-box .cr {
    margin: 0;
  }
}

/*----------スマホ----------*/
@media (max-width: 645px) {
  .sp_only {
    display: block;
  }
  .sp_none {
    display: none !important;
  }
  .pc_none {
    display: block;
  }
  /*----------共通----------*/
  body {
    font-size: 14px;
  }
  section {
    margin-top: 4em;
    margin-bottom: 4em;
  }
  .inner {
    width: auto;
    margin-left: 15px;
    margin-right: 15px;
  }
  /*-----------ハンバーガーボタン----------*/
  .nav-button {
    position: fixed;
    top: 1em;
    right: 1em;
    width: 2rem;
    height: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 2;
  }
  .nav-button span {
    display: block;
    width: 2rem;
    height: 0.3rem;
    background: #333333;
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 10px;
  }
  .nav-button .bar1 {
    top: 0.2rem;
  }
  .nav-button .bar2 {
    top: 0.84rem;
  }
  .nav-button .bar3 {
    bottom: 0.2rem;
  }
  .nav-button .bar1.open {
    top: 0.8rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background: #333333;
  }
  .nav-button .bar2.open {
    opacity: 0;
  }
  .nav-button .bar3.open {
    top: 0.8rem;
    background: #333333;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .sp-nav {
    display: none;
    position: fixed;
    top: 0;
    background-color: #ddeff6;
    width: 100%;
    z-index: 1;
  }
  .sp-nav ul {
    padding: 2em;
  }
  .sp-nav ul li {
    padding: 1em 0;
    border-bottom: solid 1px #fff;
    text-align: center;
  }
  .tell-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0;
    background-color: #1194c5;
    z-index: 2;
  }
  .tell-nav p {
    color: #fff;
  }
  .tell-nav p i {
    color: #333333;
  }
  .tell-nav p a {
    display: block;
  }
  /*----------タイトル----------*/
  .sec-ttl {
    font-size: 1.2em;
  }
  /*----------カバー----------*/
  .cover .flex {
    display: block;
    height: 100%;
    padding: 7em 0 0;
  }
  .cover .flex .main-ttl {
    width: 100%;
  }
  .cover .flex .main-ttl h1 {
    font-size: 2.3em;
  }
  .cover .flex .main-ttl p {
    margin: 0.3em 0 0;
    font-size: 1.2em;
  }
  .cover .flex figure {
    width: 100%;
    margin: 0;
  }
  .cover .flex figure img {
    width: 50%;
  }
  /*----------メインキャッチ----------*/
  .main-catch h2 {
    font-size: 1.1em;
    background-color: #e7f4f9;
    padding: 0.7em;
    border-radius: 10px;
  }
  .main-catch h2 span::before {
    content: none;
  }
  .main-catch p {
    margin: 0.5em 0;
  }
  /*----------アバウト----------*/
  .about {
    margin-top: -250px;
    padding-top: 250px;
  }
  .about .flex {
    display: block;
  }
  .about .img-box {
    width: 100%;
    text-align: center;
  }
  .about .img-box figure {
    width: 100%;
    position: initial;
  }
  .about .img-box figure span img {
    width: 70%;
  }
  .about .img-box figure span::before {
    width: 130px;
    height: 130px;
    left: 70%;
    bottom: 0;
  }
  .about .text-box {
    margin-top: 3em;
    width: 100%;
  }
  .about .text-box h3 span:before {
    top: -30%;
    left: -7%;
  }
  /*----------ご利用方法----------*/
  .howto {
    margin-top: -250px;
    padding-top: 250px;
  }
  .howto .bk {
    padding: 1em 0;
    background-color: rgba(17, 149, 198, 0.15);
  }
  .howto .bk p {
    margin: 0.8em 0;
    font-size: 1.1em;
  }
  .howto .bk p span.bk2 {
    background: none;
  }
  .howto .bk p:first-child {
    margin: 2em 0;
    font-size: 1em;
    background-color: #fff;
    padding: 0.5em;
  }
  .howto .bk p.btn {
    display: inline-block;
  }
  .howto .bk p.btn span {
    background-color: #1194c5;
    border-radius: 50px;
    padding: 1em;
    font-size: 1.5em;
  }
  .howto .bk p.btn span a {
    color: #fff;
  }
  .howto .bk p.btn span a i {
    color: #333333;
  }
  .howto .bk p.btn:hover {
    -webkit-transform: scale(0.98, 0.98);
            transform: scale(0.98, 0.98);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  /*----------料金----------*/
  .price {
    margin-top: -250px;
    padding-top: 250px;
  }
  .price dl dt {
    width: 100%;
    margin-top: 1em;
    padding: 1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .price dl .detail {
    width: 70%;
  }
  .price dl .price {
    width: 30%;
  }
  /*----------フッター----------*/
  footer .inner .info-box p span {
    left: 25%;
  }
}
/*# sourceMappingURL=style.css.map */