@charset "UTF-8";
/* ===================== 
リセットcss
 ===================== */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  margin: 0;
  padding-left: 0;
}
ul li,
ol li {
  list-style: none;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* ===================== 
ヘッダー
 ===================== */
.l-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.l-header__inner {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 0 4rem;
}
@media screen and (max-width: 750px) {
  .l-header__inner {
    flex-direction: column;
    padding: 1rem;
  }
}

.l-header__logo {
  display: flex;
  justify-content: center;
  padding: 0;
  width: 168px;
}

.l-header__nav ul {
  display: flex;
  margin: 0;
}
.l-header__nav ul li {
  list-style: none;
  padding: 1rem;
}
@media screen and (max-width: 575px) {
  .l-header__nav ul li {
    font-size: 80%;
    padding: 0.5rem;
  }
}

.l-header__login {
  font-weight: bold;
  text-decoration: none;
}

.l-header__entry {
  background-color: #d73a4e;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  padding: 8px 16px;
  text-decoration: none;
}

/* ===================== 
フッター
 ===================== */
.l-footer {
  background-color: #60d0ea;
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 0 4rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .l-footer__inner {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 4rem;
  }
}
@media screen and (max-width: 750px) {
  .l-footer__inner {
    padding: 1rem;
  }
}

.l-footer__logo {
  align-items: center;
  display: flex;
  padding: 28px 0;
  width: 160px;
}
@media screen and (max-width: 1200px) {
  .l-footer__logo {
    padding: 0;
  }
}
.l-footer__logo img {
  height: auto;
  width: 100%;
}

.l-footer__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .l-footer__nav {
    flex-direction: column;
  }
}
.l-footer__nav li {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1rem;
  list-style: none;
  padding: 0 0.8rem;
}
.l-footer__nav li a {
  color: #fff;
  margin: auto;
}
@media screen and (max-width: 575px) {
  .l-footer__nav li {
    font-size: 80%;
    padding: 0 0.5rem;
  }
}

/* ===================== 
コンテナ
 ===================== */
.l-container {
  overflow: hidden;
  position: relative;
}

.l-container__inner {
  box-sizing: border-box;
  margin: auto;
  max-width: 1140px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .l-container__inner {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (max-width: 575px) {
  .l-container__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.l-container__inner--full {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (max-width: 1200px) {
  .l-container__inner--full {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (max-width: 575px) {
  .l-container__inner--full {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ===================== 
メイン
 ===================== */
.l-main {
  margin: auto;
  max-width: 1140px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  width: 100%;
}

.l-main--full {
  margin: auto;
  position: relative;
  width: 100%;
}

.l-section {
  padding: 72px 0;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .l-section {
    padding: 48px 0;
  }
}

/* ===================== 
テキスト
 ===================== */
p {
  line-height: 1.75;
  text-align: justify;
}

* {
  color: #444646;
}

/* ----- 共通フォント設定の@extend ----- */
.c-heading-deco {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
  font-weight: 500;
}

.c-heading-deco .strong {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
  font-weight: 700;
}

/* 外部リンク */
a[target=_blank]::after {
  content: "\f35d";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  height: inherit;
  margin-left: 4px;
  position: relative;
}

a[target=_blank]:has(img)::after {
  display: none;
}

.c-heading {
  color: #444646;
  font-size: 36px;
  position: relative;
  text-align: center;
}

.c-heading-w {
  color: #fff;
  font-size: 36px;
  position: relative;
  text-align: center;
}

.c-heading-deco {
  color: #444646;
  display: inline-block;
  font-size: 36px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-heading-deco {
    font-size: 24px;
  }
}
.c-heading-deco::after {
  background-color: #60d0ea;
  bottom: -30px;
  content: "";
  display: inline-block;
  height: 6px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 128px;
}
@media screen and (max-width: 750px) {
  .c-heading-deco::after {
    bottom: -16px;
    height: 4px;
  }
}
.c-heading-deco .strong {
  color: #d73a4e;
}

.c-heading-dots {
  background-image: radial-gradient(circle at center, #d73a4e 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  color: #444646;
  padding-top: 0.05em; /* 縦方向の位置調整 */
}

/* ===================== 
ボタン
 ===================== */
.c-btn-primary {
  background-color: #60d0ea;
  border-radius: 12px;
  color: #fff;
  display: inline-block;
  font-size: 1.75rem;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: bold;
  min-height: 0vw;
  padding: 32px;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .c-btn-primary {
    font-size: 1.25rem;
    padding: 16px 24px;
  }
}

.c-btn-secondary {
  background-color: #d73a4e;
  border-radius: 12px;
  color: #fff;
  display: inline-block;
  font-size: 1.75rem;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: bold;
  min-height: 0vw;
  padding: 32px;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .c-btn-secondary {
    font-size: 1.25rem;
    padding: 16px 24px;
  }
}

.c-btn-tertiary {
  background-color: #777;
  border-radius: 12px;
  color: #fff;
  display: inline-block;
  font-size: 1.75rem;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: bold;
  min-height: 0vw;
  padding: 32px;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .c-btn-tertiary {
    font-size: 1.25rem;
    padding: 16px 24px;
  }
}

/* ===================== 
リンクスタイル
 ===================== */
a {
  text-decoration: none;
  transition: all ease 0.3s;
}
a:hover {
  opacity: 0.7;
}

input[type=submit] {
  text-decoration: none;
  transition: all ease 0.3s;
}
input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.7;
}

.c-link-underline {
  text-decoration: underline;
  word-break: break-all;
}

.c-link-url {
  word-break: break-all;
}

/* ===================== 
パネル
 ===================== */
.p-panel {
  margin: auto;
  width: 100%;
}

.p-panel__inner {
  display: grid !important;
}

.p-panel__col {
  width: 100%;
}

.p-panel__inner--1col {
  grid-template-columns: 1fr;
}

.p-panel__inner--2col {
  gap: 2em;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 750px) {
  .p-panel__inner--2col {
    grid-template-columns: 1fr;
  }
}

.p-panel__inner--2col-reverse {
  direction: rtl;
  gap: 2em;
  grid-template-columns: repeat(2, 1fr);
}
.p-panel__inner--2col-reverse * {
  direction: ltr !important;
}
@media screen and (max-width: 750px) {
  .p-panel__inner--2col-reverse {
    grid-template-columns: 1fr;
  }
}

.p-panel__inner--2-1col {
  gap: 2em;
  grid-template-columns: 2fr 1fr;
}
@media screen and (max-width: 750px) {
  .p-panel__inner--2-1col {
    grid-template-columns: 1fr;
  }
}

.p-panel__inner--2-1col-reverse {
  direction: rtl;
  gap: 2em;
  grid-template-columns: 2fr 1fr;
}
.p-panel__inner--2-1col-reverse * {
  direction: ltr !important;
}
@media screen and (max-width: 750px) {
  .p-panel__inner--2-1col-reverse {
    grid-template-columns: 1fr;
  }
}

.p-panel__inner--1-2col {
  gap: 2em;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 750px) {
  .p-panel__inner--1-2col {
    grid-template-columns: 1fr;
  }
}

.p-panel__inner--1-2col-reverse {
  direction: rtl;
  gap: 2em;
  grid-template-columns: 1fr 2fr;
}
.p-panel__inner--1-2col-reverse * {
  direction: ltr !important;
}
@media screen and (max-width: 750px) {
  .p-panel__inner--1-2col-reverse {
    grid-template-columns: 1fr;
  }
}

.p-panel__inner--3col {
  gap: 2em;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 750px) {
  .p-panel__inner--3col {
    grid-template-columns: 1fr;
  }
}

.p-panel__inner--4col {
  gap: 2em;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1200px) {
  .p-panel__inner--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 750px) {
  .p-panel__inner--4col {
    grid-template-columns: 1fr;
  }
}

.p-panel__inner--5col {
  gap: 1.5em;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width:950px) {
  .p-panel__inner--5col {
    grid-template-columns: 2fr 2fr;
  }
}
@media screen and (max-width: 750px) {
  .p-panel__inner--5col {
    grid-template-columns: 1fr;
  }
}

.p-panel__inner--2-3col {
  gap: 2em;
  grid-template-columns: 2fr 3fr;
}
@media screen and (max-width: 750px) {
  .p-panel__inner--2-3col {
    grid-template-columns: 1fr;
  }
}

/* ===================== 
トップ
 ===================== */
@media screen and (min-width: 769px) {
  .p-top-faq__items, .p-top-point__items-wrap, .p-top-step__items-wrap, .p-top-lead__text {
    margin-top: 72px !important;
  }
}
@media screen and (max-width: 768px) {
  .p-top-faq__items, .p-top-point__items-wrap, .p-top-step__items-wrap, .p-top-lead__text {
    margin-top: 48px !important;
  }
}
@media screen and (max-width: 600px) {
  .p-top-faq__items, .p-top-point__items-wrap, .p-top-step__items-wrap, .p-top-lead__text {
    margin-top: 32px !important;
  }
}

/* メインビジュアル */
.p-top-mv {
  box-sizing: border-box;
  position: relative;
  width: 100%;
}

.p-top-mv__pc-item {
  height: auto;
  width: 100%;
}
.p-top-mv__pc-item img {
  height: auto;
  width: 100%;
}

.p-top-lead__items {
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 3fr;
}
@media screen and (max-width: 750px) {
  .p-top-lead__items {
    grid-template-columns: 1fr;
  }
}

.p-top-lead__item {
  align-items: center;
  display: flex;
}

@media screen and (max-width: 750px) {
  .p-top-lead__img-wrap {
    margin: auto;
    width: 85%;
  }
}

.p-top-lead__note {
  display: block;
  font-size: 85%;
  margin-top: 8px;
}

.p-top-lead__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.p-top-lead__btn {
  align-items: center;
  background-color: #fdf195;
  border: 4px solid #d73a4e;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  padding: 12px 24px;
  text-align: center;
  width: 100%;
}

.p-top-lead__btn-catch {
  align-items: center;
  color: #d73a4e;
  display: flex;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 24px;
  position: relative;
}
.p-top-lead__btn-catch::before, .p-top-lead__btn-catch::after {
  background-color: #d73a4e;
  content: "";
  display: inline-block;
  height: 30px;
  width: 2px;
}
.p-top-lead__btn-catch::before {
  margin-right: 16px;
  transform: rotate(-35deg);
}
.p-top-lead__btn-catch::after {
  margin-left: 16px;
  transform: rotate(35deg);
}

.p-top-lead__btn-logo {
  display: inline-block;
  margin-left: 16px;
}
/* ----- ボタンの共通要素を@extend ----- */
.p-top-mv__btn-wrap {
  text-align: center;
  width: 100%;
}

.p-top-mv__btn-wrap {
  margin-top: 30px;
}

.p-top-faq, .p-top-plan__heading-deco, .p-top-point__heading-deco, .p-top-step__heading-deco, .p-top-lead__heading-deco, .p-top-lead__heading {
  color: #444646;
  font-size: 36px;
  position: relative;
  text-align: center;
}

.p-top-step {
  background-color: #f5f5f5;
}

.p-top-step__heading-m {
  align-items: center;
  background-color: #fceb69;
  color: #444646;
  display: flex;
  flex-flow: column;
  font-size: 18px;
  margin-right: 20px;
  margin-top: 16px;
  padding: 24px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-top-step__heading-m {
    margin-bottom: 80px;
    margin-right: 0;
  }
}
.p-top-step__heading-m::after {
  background: #fceb69;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  right: -39px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}
@media screen and (max-width: 750px) {
  .p-top-step__heading-m::after {
    bottom: -60px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    height: 40px;
    right: 0;
    top: auto;
    width: 100%;
  }
}

.p-top-step__heading-number {
  border-bottom: solid 2px #444646;
  display: block;
}

.p-top-step__heading-text {
  align-items: center;
  display: flex;
  font-size: 140%;
  margin-top: 16px;
  text-align: center;
}

.p-top-step__text {
  margin-top: 16px;
}

/* ポイント ----- */
.p-top-point__item {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-top-point__item {
    display: block;
  }
}

.p-top-point__item-img-wrap {
  left: 0;
  position: relative;
  width: 50%;
}
.p-top-point__item-img-wrap::before {
  content: "";
  display: block;
  padding-top: 75%;
}
@media screen and (max-width: 750px) {
  .p-top-point__item-img-wrap::before {
    padding-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .p-top-point__item-img-wrap {
    width: 100%;
  }
}

.p-top-point__item-img {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 120%;
}
@media screen and (max-width: 750px) {
  .p-top-point__item-img {
    height: auto;
    position: relative;
    top: 0;
    transform: translateY(0%);
    width: 100%;
  }
}
.p-top-point__item-img img {
  height: auto;
  width: 100%;
}

.p-top-point__content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 750px) {
  .p-top-point__content {
    width: 100%;
  }
}

.p-top-point__content__inner {
  padding: 16px;
}
@media screen and (max-width: 750px) {
  .p-top-point__content__inner {
    margin-top: 16px;
    padding: 0;
  }
}

.p-top-point__heading-m {
  align-items: center;
  background-color: #fff;
  border: 2px solid #60d0ea;
  border-radius: 5px;
  color: #333333;
  display: flex;
  font-family: "Zen Maru Gothic", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  justify-content: start;
  overflow: hidden;
  padding: 0.5em 0.7em;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .p-top-point__heading-m {
    font-size: 18px;
  }
}
.p-top-point__heading-m:after {
  background-color: #60d0ea;
  content: "";
  height: 200%;
  left: -30px;
  position: absolute;
  top: -50%;
  transform: rotate(25deg);
  width: 100px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .p-top-point__heading-m:after {
    left: -50px;
    top: -60%;
  }
}
.p-top-point__heading-m span {
  color: #fff;
  font-size: 1.1em;
  margin-right: 2em;
}

.p-top-point__text {
  margin-top: 8px;
}
.p-top-point__text p {
  text-shadow: 0px 0px 1px #fff, 0px 0px 2px #fff, 0px 0px 3px #fff, 0px 0px 4px #fff, 0px 0px 5px #fff, 0px 0px 6px #fff, 0px 0px 7px #fff;
}
.p-top-point__text p .p-top-point__text-strong {
  background-color: #fceb69;
  text-shadow: 0px 0px 0;
}

.p-top-point__attention {
  font-size: 80%;
  margin-top: 16px;
}

/* リバース ----- */
.p-top-point__item--reverse {
  flex-direction: row-reverse;
}
.p-top-point__item--reverse .p-top-point__item-img {
  left: auto;
  right: 0;
}

.p-top-point__btn-wrap {
  margin: 48px 0 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-top-point__btn-wrap {
    margin: 32px 0 0;
  }
}

/* お試し ----- */
.p-top-trial__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-top-trial__book {
  display: block;
  width: 100%;
}
.p-top-trial__book iframe {
  width: 100% !important;
  width: 100%;
}

.p-top-trial__balloon {
  background: #60d0ea;
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  margin: 1.5em 0;
  max-width: 100%;
  min-width: 120px;
  padding: 32px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-top-trial__balloon {
    font-size: 18px;
    padding: 16px;
  }
}
.p-top-trial__balloon:before {
  border: 15px solid transparent;
  border-top: 15px solid #60d0ea;
  content: "";
  left: 50%;
  margin-left: -15px;
  position: absolute;
  top: 100%;
}
.p-top-trial__balloon p {
  margin: 0;
  padding: 0;
}

/* プラン ----- */
.p-top-plan {
  background-color: #f5f5f5;
  position: relative;
}

.p-top-plan__inner {
  position: relative;
}

.p-top-plan__summary {
  margin-top: 80px;
  position: relative;
}

/* テーブル */
.p-top-plan__summary-table {
  border: solid 8px #60d0ea;
  display: flex;
  margin: auto;
  max-width: 800px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-top-plan__summary-table {
    flex-direction: column;
  }
}

.p-top-plan__summary-icon {
  height: 200px;
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
}
@media screen and (max-width: 750px) {
  .p-top-plan__summary-icon {
    height: auto;
    min-width: 140px;
    right: -24px;
    width: 25%;
  }
}
.p-top-plan__heding-basic-wrap {
  align-items: center;
  background-color: #60d0ea;
  display: flex;
  padding: 24px;
  width: 35%;
}
@media screen and (max-width: 750px) {
  .p-top-plan__heding-basic-wrap {
    padding: 16px;
    width: 100%;
  }
}

.p-top-plan__heding-basic {
  color: #fff;
  font-size: clamp(1.25rem, 2.6vw, 2.2rem);
}

.p-top-plan__summary-data {
  background-color: #fff;
  padding: 24px;
  width: 65%;
}
@media screen and (max-width: 750px) {
  .p-top-plan__summary-data {
    padding: 16px;
    width: 100%;
  }
}

.p-top-plan__summary-capacity {
  color: #444646;
  font-size: clamp(1.5rem, 2.7vw, 2.3rem);
  font-weight: 600;
}

.p-top-plan__summary-capacity--s {
  font-size: 200%;
}

.p-top-plan__summary-capacity--asterisk {
  font-size: 0.8em;
  vertical-align: top;
}

.p-top-plan__summary-text {
  color: #444646;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
}

.p-top-plan__summary-note {
  font-size: 14px;
  margin-top: 16px;
}

/* 料金表 */
.p-top-plan__items-wrap {
  margin-top: 48px;
  width: 100%;
}

.p-top-plan__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
}

.p-top-plan__item-icon {
  background-color: #60d0ea;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-left: -16px;
  padding: 6px 11px 6px 32px;
  position: relative;
}
.p-top-plan__item-icon p {
  color: #fff;
}
.p-top-plan__item-icon::before {
  background: url(../img/option.svg) center center no-repeat;
  content: "";
  height: 24px;
  left: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}

.p-top-plan__item-title {
  color: #60d0ea;
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
  text-align: center;
}

.p-top-plan__item-title--s {
  color: #60d0ea;
  font-size: 12px;
  font-weight: bold;
  margin-top: 16px;
  text-align: center;
}

.p-top-plan__item-plice {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.p-top-plan__item-plice strong {
  font-size: 128%;
}

.p-top-plan__item-img {
  border: solid 1px #ddd;
  margin-top: 16px;
  position: relative;
}
.p-top-plan__item-img img {
  height: auto;
  width: 100%;
}

.p-top-plan__item-img-comment {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.p-top-plan__item-img-comment span {
  background-color: #fceb69;
  border-radius: 4px;
  color: #279bdc;
  filter: drop-shadow(0 0px 3px rgba(0, 0, 0, 0.2));
  font-size: 14px;
  font-weight: bold;
  padding: 12px 8px;
}

.lb-data .lb-details {
  width: 100%;
}

.lb-data .lb-caption {
  color: white;
  display: block;
  font-size: 13px;
  font-size: 1rem;
  font-weight: 700;
  font-weight: 300;
  line-height: 1em;
  line-height: 1.75;
  width: 100%;
}

.lb-data .lb-close {
  background: url(../img/close.png) top right no-repeat;
}

/* プラン ----- */
.p-top-plan__item-functions {
  margin-top: 8px;
}

.p-top-plan__item-function {
  border-bottom: solid 1px #444646;
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 0 8px 28px;
  position: relative;
}
.p-top-plan__item-function:last-child {
  border-bottom: solid 0 #444646;
}
.p-top-plan__item-function::before {
  background: url(../img/check.svg) center center no-repeat;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 20px;
  transform: translateY(-50%);
  width: 20px;
}

.p-top-plan__item-text {
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 0;
  position: relative;
}

/* 税込表記 ----- */
.p-top-plan__attention {
  font-size: 80%;
  margin-top: 16px;
}

/* よくある質問 ----- */
.p-top-faq__inner {
  position: relative;
}

.p-top-faq__items {
  margin: auto;
  max-width: 900px;
  width: 100%;
}

.p-top-faq__item {
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-top: 24px;
  padding: 16px;
}

/* よくある質問共通 ----- */
.p-top-faq__a, .p-top-faq__q {
  display: flex;
  position: relative;
}
.p-top-faq__a:before, .p-top-faq__q:before {
  align-items: center;
  border-radius: 50px;
  color: #fff;
  content: attr(data-icon);
  display: flex;
  font-size: 24px;
  font-weight: bold;
  height: 50px;
  justify-content: center;
  margin-right: 24px;
  padding: 25px;
  position: relative;
  width: 50px;
}
@media screen and (max-width: 750px) {
  .p-top-faq__a:before, .p-top-faq__q:before {
    height: 40px;
    padding: 20px;
    width: 40px;
  }
}

.p-top-faq__q {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .p-top-faq__q {
    font-size: 18px;
  }
}
.p-top-faq__q span {
  margin-top: 8px;
}
@media screen and (max-width: 750px) {
  .p-top-faq__q span {
    margin-top: 4px;
  }
}
.p-top-faq__q:before {
  background-color: #60d0ea;
}

.p-top-faq__a {
  font-size: 16px;
  margin-top: 16px;
}
.p-top-faq__a span {
  margin-top: 12px;
}
@media screen and (max-width: 750px) {
  .p-top-faq__a span {
    margin-top: 8px;
  }
}
.p-top-faq__a:before {
  background-color: #ff8888;
}

/* 問い合わせ ----- */
.p-top-contact {
  background-color: #d2f2f9;
  position: relative;
  z-index: 0;
}
.p-top-contact img {
  height: auto;
  width: 100%;
}

.p-top-contact__bg01 {
  height: 100%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15%;
}
@media screen and (max-width: 750px) {
  .p-top-contact__bg01 {
    width: 30%;
  }
}
.p-top-contact__bg01 div {
  height: inherit;
}

.p-top-contact__bg02 {
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15%;
}
@media screen and (max-width: 750px) {
  .p-top-contact__bg02 {
    width: 30%;
  }
}
.p-top-contact__bg02 div {
  height: inherit;
}

.p-top-contact__content-wrap {
  display: flex;
  /* height: 100%; */
  justify-content: center;
  /* left: 50%; */
  position: relative;
  /* top: 50%; */
  /* transform: translate(-50%, -50%); */
  width: 100%;
}
@media screen and (max-width: 575px) {
  .p-top-contact__content-wrap {
    position: relative;
  }
}

.p-top-contact__content {
  text-align: center;
}

.p-top-contact__btn-wrap {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}
@media screen and (max-width: 575px) {
  .p-top-contact__btn-wrap {
    flex-direction: column;
  }
}

/* フェード ----- */
.fade-up {
  transition: all ease 0.75s;
}

/* 人間アイコン */
.p-top-plan__human-i_01 {
  bottom: 0;
  height: 300px;
  left: -200px;
  position: absolute;
  width: 250px;
}
@media screen and (max-width: 1200px) {
  .p-top-plan__human-i_01 {
    display: none;
  }
}

.p-top-plan__human-i_02 {
  height: 250px;
  position: absolute;
  right: -50px;
  top: 35%;
  width: 250px;
}
@media screen and (max-width: 1200px) {
  .p-top-plan__human-i_02 {
    right: 0%;
    top: 30%;
    width: 200px;
  }
}
@media screen and (max-width:950px) {
  .p-top-plan__human-i_02 {
    top: 25%;
  }
}
@media screen and (max-width: 750px) {
  .p-top-plan__human-i_02 {
    right: 0%;
    top: 20%;
    width: 200px;
  }
}
@media screen and (max-width: 575px) {
  .p-top-plan__human-i_02 {
    display: none;
  }
}

.p-top-faq__human-i_01 {
  height: 400px;
  left: -10%;
  position: absolute;
  top: 60%;
  width: 300px;
}
@media screen and (max-width: 1200px) {
  .p-top-faq__human-i_01 {
    display: none;
  }
}

.p-top-faq__human-i_02 {
  position: absolute;
  right: -10%;
  top: 30%;
  width: 300px;
}
@media screen and (max-width: 1200px) {
  .p-top-faq__human-i_02 {
    display: block;
    height: 200px;
    margin-left: auto;
    position: relative;
    right: 0;
    top: -50px;
  }
}

.p-top-float-menu {
  background-color: #fff;
  bottom: 91px;
  display: block;
  filter: drop-shadow(0 0px 3px rgba(0, 0, 0, 0.2));
  padding: 12px;
  position: fixed;
  right: 0;
}
@media screen and (max-width: 575px) {
  .p-top-float-menu {
    bottom: 0;
  }
}
.p-top-float-menu ul li a {
  border-radius: 8px;
  display: block;
  font-size: 18px;
  font-weight: 300;
  padding: 12px 24px;
  text-align: center;
}

.p-top-float-menu__open {
  min-width: 50px;
  padding: 12px 18px 12px 12px;
  text-align: right;
}

.p-top-float-menu__open-i {
  display: inline-block;
  margin-left: auto;
  width: 18px;
}
.p-top-float-menu__open-i i {
  font-size: 18px;
}

.js-close + ul {
  display: none;
}

.p-top-float-menu__trial {
  background-color: #60d0ea;
  color: #fff;
}

.p-top-float-menu__doc {
  background-color: #279bdc;
  color: #fff;
  margin-top: 8px;
}

.p-top-float-menu__contact {
  background-color: #777;
  color: #fff;
  margin-top: 8px;
}

/* ===================== 
 フォント
 ===================== */
.u-text-n {
  font-weight: normal;
}

.u-text-b {
  font-weight: bold;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

/* ===================== 
カラー
 ===================== */
.u-bg-w {
  background-color: #fff;
}

.u-clr-w {
  color: #fff;
}

.u-clr-base {
  color: #60d0ea;
}

.u-bg-base {
  background-color: #60d0ea;
}

.u-clr-accent01 {
  color: #d73a4e;
}

.u-bg-accent01 {
  background-color: #d73a4e;
}

.u-clr-accent02 {
  color: #ff8888;
}

.u-bg-accent01 {
  background-color: #ff8888;
}

.u-bg-main-bg {
  background-color: #f5f5f5;
}

/* ===================== 
余白設定
 ===================== */
.u-m-auto {
  margin: auto;
}

/* マージン ------ */
@media screen and (min-width: 769px) {
  .u-mt-s {
    margin-top: 24px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-s {
    margin-top: 16px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-mt-s {
    margin-top: 8px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-mb-s {
    margin-bottom: 24px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-s {
    margin-bottom: 16px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-mb-s {
    margin-bottom: 8px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-my-s {
    margin-bottom: 24px !important;
    margin-top: 24px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-my-s {
    margin-bottom: 16px !important;
    margin-top: 16px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-my-s {
    margin-bottom: 8px !important;
    margin-top: 8px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-mt-m {
    margin-top: 48px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-m {
    margin-top: 32px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-mt-m {
    margin-top: 24px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-mb-m {
    margin-bottom: 48px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-m {
    margin-bottom: 32px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-mb-m {
    margin-bottom: 24px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-my-m {
    margin-bottom: 48px !important;
    margin-top: 48px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-my-m {
    margin-bottom: 32px !important;
    margin-top: 32px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-my-m {
    margin-bottom: 24px !important;
    margin-top: 24px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-mt-l {
    margin-top: 72px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt-l {
    margin-top: 48px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-mt-l {
    margin-top: 32px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-mb-l {
    margin-bottom: 72px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mb-l {
    margin-bottom: 48px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-mb-l {
    margin-bottom: 32px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-my-l {
    margin-bottom: 72px !important;
    margin-top: 72px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-my-l {
    margin-bottom: 48px !important;
    margin-top: 48px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-my-l {
    margin-bottom: 32px !important;
    margin-top: 32px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pt-s {
    padding-top: 24px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-s {
    padding-top: 16px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-pt-s {
    padding-top: 8px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pb-s {
    padding-bottom: 24px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-s {
    padding-bottom: 16px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-pb-s {
    padding-bottom: 8px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-py-s {
    padding-bottom: 24px !important;
    padding-top: 24px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-py-s {
    padding-bottom: 16px !important;
    padding-top: 16px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-py-s {
    padding-bottom: 8px !important;
    padding-top: 8px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pt-m {
    padding-top: 48px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-m {
    padding-top: 32px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-pt-m {
    padding-top: 24px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pb-m {
    padding-bottom: 48px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-m {
    padding-bottom: 32px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-pb-m {
    padding-bottom: 24px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-py-m {
    padding-bottom: 48px !important;
    padding-top: 48px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-py-m {
    padding-bottom: 32px !important;
    padding-top: 32px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-py-m {
    padding-bottom: 24px !important;
    padding-top: 24px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pt-l {
    padding-top: 72px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-l {
    padding-top: 48px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-pt-l {
    padding-top: 32px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pb-l {
    padding-bottom: 72px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-l {
    padding-bottom: 48px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-pb-l {
    padding-bottom: 32px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-py-l {
    padding-bottom: 72px !important;
    padding-top: 72px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-py-l {
    padding-bottom: 48px !important;
    padding-top: 48px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-py-l {
    padding-bottom: 32px !important;
    padding-top: 32px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pt-ll {
    padding-top: 70px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pt-ll {
    padding-top: 72px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-pt-ll {
    padding-top: 48px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pb-ll {
    padding-bottom: 70px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-pb-ll {
    padding-bottom: 72px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-pb-ll {
    padding-bottom: 48px !important;
  }
}

@media screen and (min-width: 769px) {
  .u-py-ll {
    padding-bottom: 70px !important;
    padding-top: 70px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-py-ll {
    padding-bottom: 72px !important;
    padding-top: 72px !important;
  }
}
@media screen and (max-width: 600px) {
  .u-py-ll {
    padding-bottom: 48px !important;
    padding-top: 48px !important;
  }
}

/* ===================== 
表示非表示設定
 ===================== */
.u-sp-display {
  display: block;
}
@media screen and (min-width: 751px) {
  .u-sp-display {
    display: none;
  }
}

.u-pc-display {
  display: block;
}
@media screen and (max-width: 750px) {
  .u-pc-display {
    display: none;
  }
}