@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  color: #1e257d;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.14em;
  font-size: 15px;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

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

.is-sp {
  display: none;
}
@media (max-width:767px) {
  .is-sp {
    display: block;
  }
}

.is-tab {
  display: none;
}
@media (min-width:768px) and (max-width: 1200px) {
  .is-tab {
    display: block;
  }
}

.is-pc {
  display: none;
}
@media (min-width: 1200px) {
  .is-pc {
    display: block;
  }
}

.is-pc-sp {
  display: none;
}
@media (min-width: 1200px) {
  .is-pc-sp {
    display: block;
  }
}
@media (max-width:767px) {
  .is-pc-sp {
    display: block;
  }
}

.red {
  color: rgba(248, 127, 142, 0.7);
  font-weight: 600;
}

.blew {
  color: #00b2c9;
  font-weight: 600;
}

.annda-rainn {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(0, 0, 0, 0)), color-stop(70%, #FFE5DF));
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, #FFE5DF 70%);
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #99ebf2;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  font-family: "Parisienne", cursive;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
body {
  background: #99ebf2; /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #fff; /*画面を開いた後の背景色を指定*/
}

.splashbg {
  display: none;
  content: "";
  position: fixed;
  -webkit-transform: scale(100);
          transform: scale(100);
  background-color: #99ebf2; /*伸びる背景色の設定*/
  z-index: 999;
  /*丸のスタートの形状*/
  top: calc(50% - 1rem); /*50%から円の半径を引いた値*/
  left: calc(50% - 1rem); /*50%から円の半径を引いた値*/
  width: 2rem;
  height: 2rem;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  border-radius: 50%;
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
  0% {
    /*丸のスタート位置と形状*/
    -webkit-transform: scale(100);
            transform: scale(100);
  }
  100% {
    /*丸の終了位置と形状*/
    -webkit-transform: scale(0);
            transform: scale(0);
    display: none; /*終了時は消える*/
  }
}

@keyframes PageAnime {
  0% {
    /*丸のスタート位置と形状*/
    -webkit-transform: scale(100);
            transform: scale(100);
  }
  100% {
    /*丸の終了位置と形状*/
    -webkit-transform: scale(0);
            transform: scale(0);
    display: none; /*終了時は消える*/
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top {
  background: #f8ffff;
  padding: 40px 0;
}
@media (max-width:767px) {
  .top {
    padding: 50px 0 50px 0;
  }
}

.top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
}
@media (max-width:767px) {
  .top__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 60px;
  }
}

.top__contents {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
@media (max-width:767px) {
  .top__contents {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.top__title {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  line-height: 1.7;
  position: relative;
}
.top__title::after {
  position: absolute;
  content: "";
  display: block;
  top: -50%;
  left: -10%;
  width: 160%;
  max-width: 100%;
  height: 230px;
  z-index: -1;
  background-image: url(../img/logo_top.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1000px) {
  .top__title::after {
    top: -20%;
    height: 220px;
  }
}
@media (max-width:767px) {
  .top__title::after {
    width: 160%;
    height: 200px;
  }
}
.top__title span {
  color: #00b2c9;
  text-shadow: 0px 0px 1px #00b2c9;
}
@media (max-width:767px) {
  .top__title {
    margin-top: 20px;
    font-size: 30px;
  }
}

.top__btn-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width:767px) {
  .top__btn-wrap {
    display: block;
  }
}

.top__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  width: 250px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 30px 15px 40px;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media (max-width: 1000px) {
  .top__btn a {
    width: 220px;
    padding: 15px 20px 15px 30px;
    font-size: 16px;
  }
}
@media (max-width:767px) {
  .top__btn a {
    width: 100%;
    padding: 10px 20px 10px 30px;
  }
}

.top__btn a img {
  width: 30px;
}

.top__btn.area-btn a {
  background: linear-gradient(135deg, rgba(248, 127, 142, 0.7) 0%, rgba(247, 126, 141, 0.5) 100%);
  -webkit-box-shadow: 1px 1px 3px rgba(248, 127, 142, 0.7);
          box-shadow: 1px 1px 3px rgba(248, 127, 142, 0.7);
}
.top__btn.area-btn a:hover {
  -webkit-box-shadow: 1px 2px 10px rgba(248, 127, 142, 0.7);
          box-shadow: 1px 2px 10px rgba(248, 127, 142, 0.7);
}

.top__btn.plan-btn {
  margin-left: 20px;
}
@media (max-width:767px) {
  .top__btn.plan-btn {
    margin-left: 0;
    margin-top: 15px;
  }
}

.top__btn.plan-btn a {
  background: linear-gradient(135deg, rgb(177, 229, 252) 0%, rgba(134, 225, 227, 0.9) 100%);
  -webkit-box-shadow: 1px 1px 3px #99ebf2;
          box-shadow: 1px 1px 3px #99ebf2;
}
.top__btn.plan-btn a:hover {
  -webkit-box-shadow: 1px 2px 10px #99ebf2;
          box-shadow: 1px 2px 10px #99ebf2;
}

.top__btn.plan-btn a img {
  width: 23px;
}

.top__lead {
  margin-top: 30px;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.27em;
  line-height: 2;
  text-shadow: 0px 0px 1px #99ebf2;
}
@media (max-width:767px) {
  .top__lead {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 0.2em;
  }
}

.top__img {
  width: 900px;
  max-width: 100%;
  margin-left: auto;
  padding-left: 30px;
}
@media (max-width: 950px) {
  .top__img {
    padding-left: 0;
  }
}
.top__img img {
  display: block;
}

.about-top {
  background: url(../img/Feature-bg.jpg) no-repeat center center;
  margin: 60px 0;
  padding: 120px 0 0px;
  position: relative;
}
@media (max-width: 950px) {
  .about-top {
    margin: 0;
  }
}

.about-title {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
@media (max-width:767px) {
  .about-title {
    font-size: 22px;
  }
}

.about-title-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}
@media (max-width:767px) {
  .about-title-lead {
    font-size: 16px;
    margin-top: 30px;
  }
}

.about-img {
  display: block;
  margin-top: 20px;
}
.about-img img {
  display: block;
  width: 800px;
  margin: 0 auto 0;
}
@media (max-width:767px) {
  .about-img img {
    width: 90%;
  }
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 140px auto 0;
  line-height: 1.8;
}
@media (max-width: 950px) {
  .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width:767px) {
  .about-content {
    margin-top: 40px;
  }
}

.about-content-img {
  margin-left: auto;
  z-index: 1;
}
@media (max-width: 950px) {
  .about-content-img {
    margin: 0px auto 40px;
  }
}
.about-content-img img {
  display: block;
  width: 400px;
}
@media (max-width: 950px) {
  .about-content-img img {
    width: 150px;
  }
}

.about-content-text {
  background-color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  width: 60%;
  margin-left: 10px;
  z-index: 1;
}
@media (max-width: 950px) {
  .about-content-text {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width:767px) {
  .about-content-text {
    width: 100%;
    padding: 25px 10px;
    font-size: 14px;
  }
}
.about-content-text p:nth-child(2n) {
  margin-top: 20px;
}
@media (max-width:767px) {
  .about-content-text p:nth-child(2n) {
    margin-top: 10px;
  }
}
.about-content-text .annda-rainn-wrap {
  display: block;
  line-height: 2;
}
@media (max-width:767px) {
  .about-content-text .annda-rainn-wrap {
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
.about-content-text p:nth-child(2n) {
  margin-top: 20px;
}
@media (max-width:767px) {
  .about-content-text p:nth-child(2n) {
    margin-top: 10px;
  }
}
.about-content-text img {
  margin-top: 10px;
  width: 150px;
  display: block;
  margin-left: auto;
}

.about-top::before {
  position: absolute;
  content: "";
  bottom: -70px;
  left: 0;
  width: 3000px;
  max-width: 100%;
  height: 160px;
  background: url(../img/Feature-img3.png) no-repeat center center;
}
@media (max-width: 950px) {
  .about-top::before {
    bottom: -25px;
    width: 1000px;
    height: 100px;
    background-size: contain;
  }
}

.step {
  padding: 120px 0 120px;
  background: #fff;
  position: relative;
}
@media (max-width: 950px) {
  .step {
    padding: 60px 0;
  }
}
.step::before {
  position: absolute;
  content: "";
  top: -30px;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(30%, #fff));
  background-image: linear-gradient(to top, #fff 0%, #fff 30%);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: 1;
}
@media (max-width:767px) {
  .step::before {
    top: -20px;
    height: 30px;
  }
}
.step::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(30%, #fff));
  background-image: linear-gradient(to bottom, #fff 0%, #fff 30%);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: 1;
}

.step-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 1200px;
  max-width: 100%;
  margin: 40px auto 0;
}
@media (max-width:767px) {
  .step-wrapper {
    display: block;
    margin: 30px auto 0;
  }
}

.step-item {
  width: 33.3%;
  padding: 0 15px;
}
@media (max-width: 1000px) {
  .step-item {
    font-size: 14px;
    padding: 0 10px;
  }
}
@media (max-width:767px) {
  .step-item {
    width: 100%;
    padding: 0;
  }
  .step-item:not(:first-child) {
    margin-top: 30px;
  }
}

.step-item_step {
  margin-bottom: -40px;
  text-align: center;
}
@media (max-width:767px) {
  .step-item_step {
    margin-bottom: -10%;
  }
}

@media (max-width:767px) {
  .step-item_img {
    width: 65%;
    margin: 0 auto;
  }
}

.step-item_title {
  margin-top: -30px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: rgba(248, 127, 142, 0.7);
}
@media (max-width: 1000px) {
  .step-item_title {
    font-size: 16px;
  }
}

.step-item_text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}
@media (max-width:767px) {
  .step-item_text {
    font-size: 12px;
    padding: 0 30px;
    margin: 5px auto 0;
    text-align: center;
  }
}

@media (max-width:767px) {
  .area {
    padding: 30px 0 0;
  }
}

.area-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f8ffff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
@media (max-width:767px) {
  .area-wrapper {
    display: block;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.area-wrapper::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
  height: 15px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(30%, #fff));
  background-image: linear-gradient(to top, #fff 0%, #fff 30%);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: 1;
}
@media (max-width:767px) {
  .area-wrapper::before {
    top: 0px;
    height: 1px;
  }
}
.area-wrapper::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(30%, #fff));
  background-image: linear-gradient(to bottom, #fff 0%, #fff 30%);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: 1;
}
@media (max-width:767px) {
  .area-wrapper::after {
    top: 0px;
    height: 10px;
  }
}

.area-jp {
  width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width:767px) {
  .area-jp {
    width: 100%;
    max-width: 100%;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width:767px) {
  .area-jp_img {
    display: none;
  }
}

@media (max-width:767px) {
  .area-jp-1,
  .area-jp-2 {
    width: 100%;
  }
}

@media (max-width:767px) {
  .area-jp-2 {
    margin-left: 10px;
  }
}

.area-wrapper_btn:not(:first-child) {
  margin: 30px 30px 0 0;
}
@media (max-width:767px) {
  .area-wrapper_btn:not(:first-child) {
    margin: 10px 0 0 0px;
  }
}
.area-wrapper_btn a {
  width: 130px;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 500;
  color: #1e257d;
  background: #fff;
  border: 1px solid #00b2c9;
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
@media (max-width:767px) {
  .area-wrapper_btn a {
    width: 100%;
    padding: 5px 10px;
    font-weight: normal;
  }
}
.area-wrapper_btn a::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #00b2c9;
  border-right: 2px solid #00b2c9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width:767px) {
  .area-wrapper_btn a::after {
    top: 35%;
  }
}

.area-os {
  width: 300px;
  margin-left: 50px;
  padding: 30px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .area-os {
    margin-left: 20px;
    padding: 20px;
  }
}
@media (max-width:767px) {
  .area-os {
    width: 100%;
    padding: 0;
    margin-left: 0;
  }
}

.area-os_img {
  width: 200px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .area-os_img {
    width: 150px;
  }
}
@media (max-width:767px) {
  .area-os_img {
    display: none;
  }
}

/* オーバーレイ */
.area_overlay {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100%;
  background-color: #99ebf2;
  opacity: 0.5;
}

body.no_scroll {
  overflow: hidden;
}

/* 選択前は表示を隠す */
.pref_area {
  display: none;
}

/* 地域毎の都道府県リスト */
.pref_list {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  width: calc((100% - 60px) / 3);
  width: 800px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 20px;
}
@media (max-width:767px) {
  .pref_list {
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.pref_btn {
  width: 300px;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 500;
  color: #1e257d;
  background: #fff;
  border: 1px solid #00b2c9;
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
@media (max-width:767px) {
  .pref_btn {
    width: 100%;
    padding: 5px 10px;
    font-weight: normal;
  }
}
.pref_btn::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #00b2c9;
  border-right: 2px solid #00b2c9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width:767px) {
  .pref_btn::after {
    top: 35%;
  }
}