@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  color: #333333;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  background: #fff;
  line-height: 2;
  color: #333333;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

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

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

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.header {
  height: 100px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding-left: 0;
}

.header-logo img {
  display: block;
  width: 60px;
  height: auto;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}
.header-nav li:not(:first-child) {
  margin-left: 36px;
}
.header-nav li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #333333;
  position: relative;
  text-decoration: none;
}
.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-nav li a:hover::after {
  background: #4169e1;
}

.header-button a img {
  width: 100px;
}

.main-visual {
  position: relative;
  overflow: visible;
  background-size: cover; /* 画面にフィットさせる */
  background-position: center center; /* 中央寄せ */
  background-repeat: no-repeat; /* 繰り返さない */
  width: 100%;
  height: 100vh; /* ←これ追加！80%ぐらいの高さを画面いっぱいに */
  margin-top: 100px;
  -webkit-transition: background-image 0.5s ease-in-out;
  transition: background-image 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .main-visual {
    height: 40vh;
    margin-top: 60px;
  }
}

.main-visual-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .main-visual-content {
    padding: 0 46px;
    text-align: center;
  }
}

.main-visual-title {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .main-visual-title {
    font-size: 32px;
  }
}

.main-visual-lead {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .main-visual-lead {
    font-size: 14px;
  }
}

.section {
  background: #fff;
  padding: 92px 0 120px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.section-title {
  font-family: "Dancing Script";
  font-size: 48px;
  color: #4169e1;
  text-align: left;
  margin-bottom: 24px;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 40px;
  }
}

.message {
  background: #fff;
  padding: 80px 0 80px;
}
@media screen and (max-width: 767px) {
  .message {
    padding: 32px 0 60px;
  }
}

.message-content {
  width: 600px;
  max-width: 100%;
  margin: 48px auto 0;
}
@media screen and (max-width: 767px) {
  .message-content {
    margin-top: 24px;
  }
}
.message-content p {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 32px;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .message-content p {
    margin-bottom: 24px;
    font-size: 14px;
  }
}

.message-content-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .message-content-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.message-img {
  margin: 0 auto 24px;
  text-align: center;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .message-img {
    margin-top: 48px;
    margin-bottom: 16px;
  }
}
.message-img img {
  margin: 0 auto;
  width: 150px;
  height: auto;
  border-radius: 50%;
}

.message-profile {
  width: 300px;
  max-width: 100%;
  margin: 40px auto 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .message-profile {
    margin-top: 20px;
  }
}

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

.mb {
  margin-bottom: 24px;
}

.message-prof-title {
  width: 100px;
  font-size: 12px;
  font-weight: bold;
}

.message-prof-text {
  width: calc(100% - 100px);
  font-size: 14px;
}
.message-prof-text a {
  color: #4169e1;
}

.card {
  background: #eff2fd;
  padding: 92px 0 120px;
}
@media screen and (max-width: 767px) {
  .card {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.card-about {
  padding: 20px;
  font-size: 14px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .card-about {
    margin-top: 24px;
  }
}
.card-about a {
  text-decoration: none;
  color: #4169e1;
}

.card-items {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .card-items {
    margin-top: 24px;
  }
}

.card-item {
  width: calc(33% - 16px);
  padding: 20px 20px 30px;
  border-radius: 4px;
  background: #fff;
  display: block;
  text-decoration: none;
  color: #333333;
}
.card-item .span {
  font-size: 12px;
  font-weight: 700;
  margin-top: 16px;
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .card-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .card-item:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .card-item {
    width: calc(50% - 12px);
  }
  .card-item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .card-item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .card-item {
    width: 100%;
    margin-left: 0;
  }
  .card-item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.card-img {
  text-align: center;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-top: 20px;
  text-align: center;
}

.card-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.9;
}

.qa.section {
  background: #eff2fd;
}

.qa-items {
  width: 800px;
  max-width: 100%;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .qa-items {
    margin-top: 24px;
  }
}

.qa-item:nth-child(n+2) {
  margin-top: 24px;
}

.qa-box {
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
}

.qa-box_q {
  color: #4169e1;
  background: #fff;
  padding: 16px 40px 16px 20px;
  position: relative;
}

.qa-box_q.is-open {
  border-radius: 8px 8px 0 0;
}

.qa-box_icon {
  width: 14px;
  height: 14px;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}

.qa-box_icon.is-open .qa-box_bar2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.qa-box_bar1 {
  width: 14px;
  height: 2px;
  background: #4169e1;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.qa-box_bar2 {
  width: 2px;
  height: 14px;
  background: #4169e1;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.qa-box_a {
  background: #fff;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  padding: 0 40px 0 20px;
  overflow: hidden;
  max-height: 0;
  will-change: max-height;
  -webkit-transition: max-height 0.4s ease, padding 0.4s ease;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.qa-box_a.is-open {
  max-height: 500px;
  padding: 0px 20px 16px;
}

.qa-box_content {
  line-height: 1.8;
}
.qa-box_content a {
  color: #4169e1;
}

.footer {
  padding: 40px 0 30px;
  background: #4169e1;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 20px;
  }
}

.privacy-link,
.privacy-terms {
  font-size: 14px;
  text-align: center;
  margin-top: 6px;
}
.privacy-link a,
.privacy-terms a {
  color: #fff;
  text-decoration: none;
}

.privacy-terms {
  margin-top: 16px;
}

.copy {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  margin: 16px 16px;
  font-size: 12px;
  text-align: center;
}
.copy a {
  text-decoration: none;
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  -webkit-transform: translateX(-280px);
          transform: translateX(-280px);
}
.drawer-icon.is-active .drawer-icon-bar1 {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-icon-bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #4169e1;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  width: 280px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content-item a {
  display: block;
  color: #333333;
  font-size: 14px;
  padding: 16px 30px;
  border-bottom: 1px solid #eff2fd;
  text-decoration: none;
  position: relative;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eff2fd;
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  border-color: transparent;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.fade-in.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  border-color: transparent;
}

.news-section {
  padding-top: 64px;
  background-color: #eff2fd;
}
@media screen and (max-width: 767px) {
  .news-section {
    padding-top: 50px;
  }
}

.card-visual {
  width: 600px;
  height: auto;
  padding: 0px 30px;
  margin: 150px auto 0;
  display: block;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .card-visual {
    width: 100%;
    margin-top: 90px;
  }
}

.card-visual-img {
  text-align: center;
}

.news-content {
  width: 800px;
  margin: 0 auto;
  max-width: 100%;
}

.plan {
  text-decoration: none;
  color: #4169e1;
}

.card-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}

.news-title {
  font-size: 24px;
  margin: 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  text-align: left;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .news-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.news-container {
  width: 40%;
  max-width: 100%;
  padding: 24px 20px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .news-container {
    margin-bottom: 48px;
  }
}

.news-last {
  margin-bottom: 8px;
}

.flow {
  width: 480px;
  max-width: 100%;
  margin: 16px auto;
}

.area {
  margin-top: 40px;
}

.news-button a {
  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: 12px;
  font-weight: 700;
  border: 2px solid #4169e1;
  width: 80px;
  height: 80px;
  text-decoration: none;
  text-align: center;
  color: #4169e1;
  border-radius: 50%;
  margin-left: auto;
  margin-right: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.news-button a:hover {
  opacity: 0.7;
}

.news-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  margin-bottom: 80px;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .news-text {
    margin-bottom: 64px;
  }
}
.news-text a {
  color: #4169e1;
  text-decoration: none;
}

.news-link {
  color: #4169e1;
}

.section-subtitle {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-subtitle {
    font-size: 18px;
  }
}

.section-subtitle-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .section-subtitle-text {
    font-size: 16px;
  }
}

.section-subtitle-content {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .section-subtitle-content {
    font-size: 14px;
  }
}

.terms-line {
  border-bottom: 1px solid #333333;
  margin-bottom: 16px;
}

.online {
  display: block;
  margin: 0 auto;
  width: 300px;
  padding: 20px 30px;
  background-color: #87a0ec;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .online {
    max-width: 100%;
  }
}
.online span {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
}

.online-img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.button-card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 36px;
}

.message-button {
  margin-top: 56px;
}

.message-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 56px;
}

.message-cf-button {
  margin: 48px 0 0 0;
}
.message-cf-button a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  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;
  width: 96px;
  height: 96px;
  color: #fff;
  background-image: linear-gradient(45deg, #709dff 0%, #91fdb7 100%);
  text-shadow: none;
}
@media screen and (max-width: 767px) {
  .message-cf-button a {
    margin-top: 24px;
  }
}
.message-cf-button a:hover {
  opacity: 0.7;
}

.message-card-button a {
  width: 88px;
  height: 88px;
  font-size: 12px;
}

.confirm-button a {
  display: inline-block;
  width: 88px;
  height: 88px;
  border: 2px solid #4169e1;
  font-size: 12px;
  border-radius: 50%;
  color: #4169e1;
  background-color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  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;
  margin-left: auto;
  margin-right: 0;
}
.confirm-button a:hover {
  opacity: 0.7;
}

.okimoti {
  text-decoration: none;
}

.news-more {
  max-width: 100%;
  text-align: center;
}
.news-more a {
  text-align: right;
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  color: #4169e1;
  border-radius: 30px;
  padding: 10px 16px;
  border: 2px solid #4169e1;
}
.news-more a:hover {
  opacity: 0.6;
}

.icon {
  display: inline-block;
  font-size: 18px;
}
.icon::before {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  color: #eac127;
  padding-right: 8px;
  font-weight: 900; /* アイコン種類に対応したFont-Weight */
  content: "\f017"; /* アイコンのUnicode */
}

.yen {
  display: inline-block;
  font-size: 18px;
}
.yen::before {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  color: #eac127;
  padding-right: 8px;
  font-weight: 900; /* アイコン種類に対応したFont-Weight */
  content: "\f157"; /* アイコンのUnicode */
}

.memo {
  display: inline-block;
  font-size: 18px;
}
.memo::before {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  color: #eac127;
  padding-right: 8px;
  font-weight: 900; /* アイコン種類に対応したFont-Weight */
  content: "\f044"; /* アイコンのUnicode */
}

.time-line {
  display: inline-block;
  font-size: 18px;
}
.time-line::before {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  color: #eac127;
  padding-right: 8px;
  font-weight: 900; /* アイコン種類に対応したFont-Weight */
  content: "\f110"; /* アイコンのUnicode */
}

.price {
  background: #eff2fd;
}

.price-inner {
  padding-top: 0px;
}

.price-table {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .price-table {
    width: 100%;
  }
}

.table {
  border-collapse: collapse;
  border: solid 1px #707070;
  background: #fff;
  width: 100%;
  table-layout: fixed;
  font-weight: 700;
}

th, td {
  border: solid 1px #707070;
  height: 56px;
  vertical-align: middle;
  padding: 0 8px;
}

th {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #b4bfe0;
  color: #fff;
  text-align: center;
  height: 56px;
  vertical-align: middle;
}
th:nth-child(1) {
  width: 172px;
}
@media screen and (max-width: 767px) {
  th:nth-child(1) {
    width: 80px;
  }
}

td {
  text-align: right;
  height: 56px;
  vertical-align: middle;
}
td p {
  color: #E81919;
  line-height: 1.2;
}
td span {
  line-height: 1.2;
  font-size: 13px;
  margin-top: 1px;
}

.price-text {
  font-size: 14px;
  margin-top: 4px;
}

.x {
  width: 30px;
  height: auto;
  margin: 20px auto 0;
}
.x img {
  border-radius: 8px;
}

.profile {
  background-color: #fff;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .profile {
    padding-top: 24px;
  }
}