@charset "UTF-8";
/*--------------------------------------------------------------
# 変数
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# ミックスイン
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# ベーススタイル
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased; }

*::before,
*::after {
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.625;
  word-break: break-word;
  overflow-wrap: break-word;
  background: #fafafa; }
  @media screen and (max-width: 896px) {
    body {
      font-size: 3.7vw; } }
  body.form {
    background: #eee; }

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body {
    font-family: "メイリオ", Meiryo, sans-serif; } }

img {
  max-width: 100%;
  height: auto;
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  border: none;
  transition: opacity 0.2s; }

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s opacity; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

figure {
  margin: 0; }

iframe {
  display: block;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto; }

button {
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  background: none;
  border: none;
  outline: none; }

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

.overlap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  margin: auto;
  background: url(/../../assets/img//common/loading.gif) center no-repeat, #33485e;
  opacity: 0.7; }

/*---------------------------------
# フォームパーツ
---------------------------------*/
input[type="text"], input[type="tel"], input[type="number"], input[type="email"] {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding: 0 45px 0 10px;
  color: inherit;
  font-size: 2rem;
  border-radius: 0 5px 5px 0;
  font-family: inherit;
  line-height: inherit;
  background: url(/../../assets/img/common/icon_valid.svg) no-repeat right 0.4em center/0 #fff;
  background-color: #ededed;
  border: none;
  appearance: none; }
  @media screen and (max-width: 896px) {
    input[type="text"], input[type="tel"], input[type="number"], input[type="email"] {
      height: 13vw;
      padding: 0 8vw 0 2vw;
      font-size: 4.2vw;
      background-position: right 1.2vw center;
      border-width: 3px;
      border-radius: 5px; } }
  input[type="text"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="email"]:focus {
    border-color: #f56f00;
    outline: none; }
  input.form-valid[type="text"], input.form-valid[type="tel"], input.form-valid[type="number"], input.form-valid[type="email"] {
    background-size: 30px 30px;
    border-color: #1abc9c; }
    @media screen and (max-width: 896px) {
      input.form-valid[type="text"], input.form-valid[type="tel"], input.form-valid[type="number"], input.form-valid[type="email"] {
        background-size: 6vw 6vw; } }
  input.form-invalid[type="text"], input.form-invalid[type="tel"], input.form-invalid[type="number"], input.form-invalid[type="email"] {
    border-color: #e74c3c; }
  input[type="text"][disabled], input[type="tel"][disabled], input[type="number"][disabled], input[type="email"][disabled] {
    background: #eee;
    border-color: #aaa; }
  input.yet[type="text"], input.yet[type="tel"], input.yet[type="number"], input.yet[type="email"] {
    animation: 1s linear infinite border-flash; }

select {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding: 0 45px 0 10px;
  color: inherit;
  font-size: 2rem;
  border-radius: 0 5px 5px 0;
  font-family: inherit;
  line-height: inherit;
  background-color: #ededed;
  background-image: url(/../../assets/img/common/select_bg.svg), url(/../../assets/img/common/icon_valid.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px 24px, 0;
  border: none;
  appearance: none; }
  @media screen and (max-width: 896px) {
    select {
      height: 13vw;
      padding: 0 8vw 0 2vw;
      font-size: 4.2vw;
      background-position: right 2vw center, right 1.2vw center;
      background-size: 5vw 5vw, 0;
      border-width: 3px;
      border-radius: 5px; } }
  select::-ms-expand {
    display: none; }
  select:focus {
    border-color: #f56f00;
    outline: none; }
  select.form-valid {
    background-size: 0, 30px 30px;
    border-color: #1abc9c; }
    @media screen and (max-width: 896px) {
      select.form-valid {
        background-size: 0, 6vw 6vw; } }
  select.form-invalid {
    border-color: #e74c3c; }
  select[disabled] {
    background-color: #eee;
    border-color: #aaa;
    opacity: 1; }
  select.yet {
    animation: 1s linear infinite border-flash; }

textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 45px 10px 10px;
  color: inherit;
  font-size: 2rem;
  font-family: inherit;
  line-height: inherit;
  background: url(/../../assets/img/common/icon_valid.svg) no-repeat right 0.4em center/0 #fff;
  border: 4px #4abfd7 solid;
  border-radius: 10px;
  appearance: none; }
  @media screen and (max-width: 896px) {
    textarea {
      height: 13vw;
      padding: 0 8vw 0 2vw;
      font-size: 4.2vw;
      background-position: right 2vw center, right 1.2vw center;
      background-size: 5vw 5vw, 0;
      border-width: 3px;
      border-radius: 5px; } }
  textarea::-ms-expand {
    display: none; }
  textarea:focus {
    border-color: #f56f00;
    outline: none; }
  textarea.form-valid {
    background-size: 30px 30px;
    border-color: #1abc9c; }
    @media screen and (max-width: 896px) {
      textarea.form-valid {
        background-size: 6vw 6vw; } }
  textarea.form-invalid {
    border-color: #e74c3c; }
  textarea[disabled] {
    background-color: #eee;
    border-color: #aaa;
    opacity: 1; }

.form-radio {
  display: block;
  margin: 0 0 0.7em;
  font-weight: bold;
  cursor: pointer; }
  .form-radio:last-child {
    margin-bottom: 0; }
  .form-radio span {
    position: relative;
    display: block;
    padding-left: 2em; }
    .form-radio span::before {
      position: absolute;
      top: -0.1em;
      left: 0;
      width: 1.7em;
      height: 1.7em;
      background: #fff;
      border: 6px solid #4abfd7;
      border-radius: 50%;
      content: ""; }
    .form-radio span::after {
      position: absolute;
      top: 0.4em;
      left: 0.5em;
      width: 0.7em;
      height: 0.7em;
      background: #4abfd7;
      border-radius: 50%;
      opacity: 0;
      content: ""; }
    .form-radio span small {
      font-weight: normal;
      font-size: inherit; }
      @media screen and (max-width: 896px) {
        .form-radio span small {
          display: block;
          line-height: 1.2; } }
  .form-radio input {
    display: none; }
    .form-radio input:checked + span::after {
      opacity: 1; }
    .form-radio input.yet + span::before {
      animation: 1s linear infinite border-flash; }

.form-checkbox {
  display: block;
  margin: 0 0 0.7em;
  font-weight: bold;
  cursor: pointer; }
  .form-checkbox span {
    position: relative;
    display: block;
    padding-left: 2em; }
    .form-checkbox span::before {
      position: absolute;
      top: 0.1em;
      left: 0;
      width: 1.5em;
      height: 1.5em;
      background: #fff;
      border: 4px solid #4abfd7;
      border-radius: 4px;
      content: ""; }
    .form-checkbox span::after {
      position: absolute;
      top: 0.4em;
      left: 0.5em;
      width: 0.5em;
      height: 0.7em;
      border-right: 4px #4abfd7 solid;
      border-bottom: 4px #4abfd7 solid;
      transform: rotate(45deg);
      opacity: 0;
      content: ""; }
    .form-checkbox span small {
      font-weight: normal;
      font-size: inherit; }
  .form-checkbox input {
    display: none; }
    .form-checkbox input:checked + span::after {
      opacity: 1; }

.form-input-wrap {
  position: relative; }

.form-group {
  font-size: 2.2rem; }
  @media screen and (max-width: 896px) {
    .form-group {
      font-size: 4.5vw; } }
  .form-group--inline .form-radio,
  .form-group--inline .form-checkbox {
    display: inline-block;
    margin-right: 2em; }

.form-error {
  position: absolute;
  bottom: calc(100% + 6px);
  margin: 0;
  padding: 0 0.5em;
  color: #fff;
  font-size: 0.9em;
  line-height: 1.2;
  white-space: nowrap;
  background: #e74c3c;
  border: 2px #c0392b solid;
  border-radius: 4px;
  opacity: 0.85; }
  @media screen and (max-width: 896px) {
    .form-error {
      font-size: 0.8em; } }
  .form-error::before {
    position: absolute;
    top: 100%;
    left: 15px;
    width: 0;
    height: 0;
    border-color: #c0392b transparent transparent transparent;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    content: ""; }
  .form-error::after {
    position: absolute;
    top: 100%;
    left: 18px;
    width: 0;
    height: 0;
    border-color: #e74c3c transparent transparent transparent;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    content: ""; }

/*---------------------------------
# 共通クラス
---------------------------------*/
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  word-wrap: normal !important;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%); }

.container {
  position: relative;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px; }
  @media screen and (max-width: 896px) {
    .container {
      padding: 0 5vw; } }
  .container--wide {
    max-width: 1090px; }

@media screen and (max-width: 896px) {
  .is-pc {
    display: none !important; } }

@media screen and (min-width: 897px) {
  .is-sp {
    display: none !important; } }

.container::after,
.container-front::after,
.clearfix::after {
  display: table;
  clear: both;
  content: ""; }

.nav-links {
  display: flex;
  justify-content: center;
  margin: 1em 0;
  padding: 0;
  list-style: none; }

.nav-links ul {
  display: flex;
  list-style-type: none; }

.nav-links .page-item.active {
  background: #06b4ea; }

.nav-links .page-item:not(:last-child) {
  margin-right: 0.5em; }

.nav-links .page-item {
  padding: 0.5em;
  font-size: 1.5rem;
  background: #fff; }

/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
.header {
  background: transparent; }
  .home.index .header {
    background: #cdf0fb; }
  .bcomi .header {
    background: #cdf0fb !important; }
  .home.sns .header {
    background: #cdf0fb; }
  .home.lp .header {
    background: #cdf0fb; }
  .home.b_minded .header {
    background: #cdf0fb; }
  .home.zenb .header {
    background: #cdf0fb; }
  .iida .header {
    background: #cdf0fb !important; }
  .header .row {
    display: flex;
    align-items: center;
    justify-content: space-between; }

.header-btn {
  max-width: 280px;
  width: 100%;
  border: 2px solid #000;
  padding: 0.2em 0;
  font-weight: bold;
  text-align: center;
  text-indent: -0.3em;
  border-radius: 100px; }

.header a {
  color: #000;
  text-decoration: none !important;
  transition: 0.2s opacity; }

.header .container {
  position: relative;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px; }

.navbar {
  padding-bottom: 20px;
  background: #cdf0fb; }

.header-nav {
  background: #ffde35; }

.header-nav__list {
  display: flex;
  align-items: streach;
  justify-content: center;
  margin: 0;
  padding: 6px 0;
  list-style: none; }

.header-nav .menu-item:first-child {
  border-left: 1px solid #7d4503; }

.header-nav .menu-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-size: 1.4rem;
  text-align: center;
  border-right: 1px solid #7d4503; }

.header-nav .menu-item a {
  flex: 1;
  padding: 8px 0;
  color: #7d4503;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.5s; }

.header-nav a.active {
  color: #fff;
  background-color: #ff8900; }

.header-logo {
  max-width: 205px;
  width: 100%;
  margin: 22px 0; }
  @media screen and (max-width: 896px) {
    .header-logo {
      width: 40%;
      margin: 0.5em 0; } }
.header-btn {
  max-width: 280px;
  width: 100%;
  border: 2px solid #000;
  padding: 0.2em 0;
  font-weight: bold;
  text-align: center;
  text-indent: -0.3em;
  border-radius: 100px; }
  @media screen and (min-width: 1025px) {
    .header-btn {
      cursor: pointer;
      transition: 0.2s opacity; }
      .header-btn:hover {
        opacity: 0.7; }
        .header-btn:hover img {
          opacity: 1; } }
  .header-btn::after {
    position: absolute;
    top: 50%;
    right: 1.3em;
    border-top: 6px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #000;
    transform: translateY(-50%);
    content: ""; }

.link_style {
  color: #007bff;
  text-decoration: underline !important; }

.page-ttl {
  margin: 0;
  padding: 1em 0;
  background: #4abfd7;
  color: #fff;
  text-align: center;
  font-size: 3.2rem; }
  @media screen and (max-width: 896px) {
    .page-ttl {
      font-size: 5.333vw; } }
.bold {
  font-weight: bold; }

.page-thanks__txt em {
  font-style: normal;
  font-weight: bold;
  color: #c0392b;
  font-size: 3.2rem; }
  @media screen and (max-width: 896px) {
    .page-thanks__txt em {
      font-size: 5vw; } }
.page-thanks__authorize {
  text-align: center;
  transition: opacity 1s 1s; }
  .page-thanks__authorize.is-active {
    opacity: 1;
    display: block; }

.page-thanks__auth {
  text-align: center;
  display: none;
  opacity: 0;
  transition: opacity 1s; }
  .page-thanks__auth.is-active {
    opacity: 1;
    display: block; }

.page-thanks__input {
  margin: 0 auto;
  width: 50%;
  display: flex; }
  .authorize_code .page-thanks__input {
    margin: 3em auto; }
    @media screen and (max-width: 896px) {
      .authorize_code .page-thanks__input {
        margin: 3em auto; } }
  @media screen and (max-width: 896px) {
    .page-thanks__input {
      width: 100%;
      flex-flow: column; } }
.page-thanks__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 478px;
  height: 54px;
  margin: 0 0 0 5%;
  overflow: hidden;
  color: #ffe102;
  font-weight: bold;
  font-size: 3.1rem;
  background-color: #4abfd7;
  border-radius: 9px;
  box-shadow: 0 6px #2697ae; }
  @media screen and (max-width: 896px) {
    .page-thanks__submit {
      margin: 2vw 0 0; } }
.page-thanks__price {
  font-size: 3rem;
  margin-bottom: 1em; }
  @media screen and (max-width: 896px) {
    .page-thanks__price {
      font-size: 4.733vw;
      margin-bottom: 1em; } }
  .page-thanks__price em {
    font-size: 150%;
    font-style: normal;
    font-weight: bold;
    color: #19616f; }

.page-thanks__method {
  background: #fff;
  box-shadow: 0 0 5px #eee;
  margin-bottom: 5em;
  padding: 50px; }
  @media screen and (max-width: 896px) {
    .page-thanks__method {
      padding: 5vw; } }
.page-thanks__method-header {
  background-color: #4abfd7;
  color: #fff;
  padding: 1em; }
  @media screen and (max-width: 896px) {
    .page-thanks__method-header {
      padding: 5vw; } }
.page-thanks__method-body {
  width: 45%;
  margin: 0 auto;
  text-align: left; }
  @media screen and (max-width: 896px) {
    .page-thanks__method-body {
      width: 90%; } }
.page-thanks__trend div {
  font-weight: bold;
  font-size: 32px; }
  @media screen and (max-width: 896px) {
    .page-thanks__trend div {
      font-size: 18px; } }
.page-thanks__click-here {
  margin-top: 16px;
  margin-bottom: 10px; }
  @media screen and (max-width: 896px) {
    .page-thanks__click-here img {
      width: 60px; } }
.page-thanks__youtube {
  max-width: 800px;
  margin: auto; }
  .page-thanks__youtube iframe {
    width: 100%;
    height: 375px; }
    @media screen and (max-width: 896px) {
      .page-thanks__youtube iframe {
        height: 170px; } }
.page-thanks__line {
  margin-top: 20px;
  color: #06c755;
  font-size: 24px;
  font-weight: bold; }
  @media screen and (max-width: 896px) {
    .page-thanks__line {
      font-size: 14px; } }
  .page-thanks__line__code {
    margin: 30px auto; }
  .page-thanks__line__feature {
    color: #000; }
    .page-thanks__line__feature__list {
      display: flex;
      justify-content: center;
      margin-bottom: 50px; }
      .page-thanks__line__feature__list ul {
        margin-top: 0; }
        @media screen and (max-width: 896px) {
          .page-thanks__line__feature__list ul {
            padding-left: 0; } }
  .page-thanks__line svg {
    filter: invert(50%) sepia(60%) saturate(10000%) hue-rotate(124deg); }

.page-nothanks__txt {
  text-align: center; }

.page-nothanks__info-row {
  max-width: 600px;
  width: 100%;
  min-height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc; }
  .page-nothanks__info-row:first-child {
    border-top: 1px solid #ccc; }

.page-nothanks__info-ttl {
  width: 12em;
  padding: 1em;
  border-right: 1px solid #ccc; }

.page-nothanks__info-val {
  margin: 0;
  padding: 1em;
  width: calc( 100% - 10em); }

.b-minded-thanks {
  background-color: #ffffff; }
  .b-minded-thanks__txt {
    font-style: normal;
    font-weight: 500;
    color: #000;
    font-size: 40px;
    margin: 50px auto;
    justify-items: center; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__txt {
        font-size: 4vw;
        margin: 20px auto; } }
  .b-minded-thanks__authorize {
    text-align: center;
    transition: opacity 1s 1s; }
    .b-minded-thanks__authorize.is-active {
      opacity: 1;
      display: block; }
  .b-minded-thanks__auth {
    text-align: center;
    display: none;
    opacity: 0;
    transition: opacity 1s; }
    .b-minded-thanks__auth.is-active {
      opacity: 1;
      display: block; }
  .b-minded-thanks__input {
    margin: 0 auto;
    width: 50%;
    display: flex; }
    .authorize_code .b-minded-thanks__input {
      margin: 3em auto; }
      @media screen and (max-width: 896px) {
        .authorize_code .b-minded-thanks__input {
          margin: 3em auto; } }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__input {
        width: 100%;
        flex-flow: column; } }
  .b-minded-thanks__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 478px;
    height: 54px;
    margin: 0 0 0 5%;
    overflow: hidden;
    color: #ffe102;
    font-weight: bold;
    font-size: 3.1rem;
    background-color: #4abfd7;
    border-radius: 9px;
    box-shadow: 0 6px #2697ae; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__submit {
        margin: 2vw 0 0; } }
  .b-minded-thanks__price {
    position: relative;
    font-size: 50px;
    margin-bottom: 1em;
    color: #ff3131; }
    .b-minded-thanks__price::after {
      content: '';
      position: absolute;
      bottom: -35px;
      left: 30%;
      width: 40%;
      height: 100%;
      background-image: url(/assets/b-minded/bg-price-40d570bf00a3160a0c389b8a323b9d648e8821e2d1542b19250cb5e294c3fcd5.png);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      pointer-events: none;
      z-index: 1; }
    @media (max-width: 640px) {
      .b-minded-thanks__price::after {
        left: 30px;
        bottom: -20px;
        width: 90%;
        background-size: contain; } }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__price {
        font-size: 5.5vw;
        margin-bottom: 1em; } }
    .b-minded-thanks__price em {
      font-size: 150%;
      font-style: normal;
      font-weight: bold;
      color: #19616f; }
  .b-minded-thanks__note {
    font-size: 30px;
    margin-bottom: 2em;
    color: #ff914d; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__note {
        font-size: 3.2vw;
        margin-bottom: 1em; } }
  .b-minded-thanks__method {
    background: #fff;
    box-shadow: 0 0 5px #eee;
    margin-bottom: 5em;
    padding: 50px; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__method {
        padding: 5vw; } }
  .b-minded-thanks__method-header {
    background-color: #4abfd7;
    color: #fff;
    padding: 1em; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__method-header {
        padding: 5vw; } }
  .b-minded-thanks__method-body {
    width: 45%;
    margin: 0 auto;
    text-align: left; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__method-body {
        width: 90%; } }
  .b-minded-thanks__trend {
    margin-top: 30px; }
    .b-minded-thanks__trend div {
      font-weight: bold;
      font-size: 32px; }
      @media screen and (max-width: 896px) {
        .b-minded-thanks__trend div {
          font-size: 18px; } }
  .b-minded-thanks__click-here {
    margin-top: 16px;
    margin-bottom: 10px; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__click-here img {
        width: 60px; } }
  .b-minded-thanks__youtube {
    max-width: 800px;
    margin: auto; }
    .b-minded-thanks__youtube iframe {
      width: 100%;
      height: 375px; }
      @media screen and (max-width: 896px) {
        .b-minded-thanks__youtube iframe {
          height: 170px; } }
    .b-minded-thanks__youtube svg {
      filter: invert(50%) sepia(60%) saturate(10000%) hue-rotate(124deg); }
  .b-minded-thanks__ttl {
    margin: 0;
    padding-top: 1em;
    padding-bottom: 0.5em;
    background: #4abfd7;
    color: #fff;
    text-align: center;
    line-height: revert-layer;
    text-align: center;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 15px; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__ttl {
        margin: auto;
        text-align: center;
        font-size: 20px;
        letter-spacing: 5px; } }
  .b-minded-thanks__content_subject {
    font-size: 40px;
    text-align: left;
    padding-left: 10%; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__content_subject {
        margin: auto;
        padding: 0;
        text-align: center;
        font-size: 20px; } }
  .b-minded-thanks__content_ttl {
    color: #4abfd7;
    text-align: left;
    font-size: 25px;
    padding-left: 15%; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__content_ttl {
        margin: auto;
        padding: 10px;
        text-align: center;
        font-size: 15px; } }
  .b-minded-thanks__content_txt {
    margin: 0;
    padding: 5px 15%;
    text-align: center;
    font-size: 1.2vw; }
    @media screen and (max-width: 896px) {
      .b-minded-thanks__content_txt {
        margin: auto;
        padding: 10px;
        text-align: center;
        font-size: 12px; } }
  .b-minded-thanks__bg_blue {
    background-color: #4abfd7; }
  .b-minded-thanks .pc {
    display: block; }
    @media (max-width: 640px) {
      .b-minded-thanks .pc {
        display: none; } }
  .b-minded-thanks .mobile {
    display: none; }
    @media (max-width: 640px) {
      .b-minded-thanks .mobile {
        display: block; } }
@font-face {
  font-family: "DIN Alternate";
  src: url(/assets/fonts/DINRegularAlternate-c9b70b51cf1e58a172dd7615f47ed88fa6520f5d926b40d470e77e6dfdb35e30.ttf); }

.mv-manetike {
  background: #F4F4F4;
  font-family: "Yu Gothic", sans-serif; }
  .mv-manetike .container {
    max-width: 1030px; }

.mv-manetike .container.first {
  background-color: #cdf0fb;
  padding: 10px 24px 40px 24px; }

.mv-manetike__header__text {
  background-color: #cdf0fb; }

.top-63px {
  top: 63px; }

.right-13px {
  right: -4px; }
  @media (min-width: 992px) {
    .right-13px {
      right: 13px; } }
.w-fit-content {
  width: fit-content; }

.mv-manetike__header__background {
  height: 625.56px;
  width: 384px; }
  .mv-manetike__header__background .mv-background {
    height: 625.56px;
    width: 384px; }

.mv-manetike__header__txt {
  right: 13px;
  width: 348px;
  height: 393px; }

.box-container {
  background-color: #ffffff;
  width: 342px;
  border-radius: 16px;
  padding: 24px; }
  .box-container.box_1 {
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .box-container.box_1 {
        width: 50%; } }
.mv-form__header {
  font-weight: 700;
  font-family: 'Noto Sans CJK JP'; }

.mv-form__header__title {
  font-size: 14px;
  line-height: 20.27px;
  color: #00AAC3;
  width: 142px; }

.mv-form__header__title1 {
  font-size: 40px;
  font-family: "DIN Alternate", sans-serif;
  line-height: 31.56px;
  color: #00AAC3;
  margin: 0 4px; }

.mv-form__header__arrow {
  height: 8px;
  width: 142px; }

.mv-form__header__note {
  font-size: 20px; }

.box-text {
  color: #FF5959;
  border: 1px solid #FF5959;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  padding: 0 !important;
  align-items: center; }

.w-66px {
  width: 66px; }

.w-280px {
  width: 280px; }

.mb-2px {
  margin-bottom: 2px; }

.mr-2px {
  margin-right: 2px; }

.fs-15 {
  font-size: 15px; }

.fs-14 {
  font-size: 14px; }

.mt-32px {
  margin-top: 32px; }

.mv-manetike .mv-form__ttl .form-input:not(:last-child) {
  margin-bottom: 24px; }

.mv-manetike .mv-form__ttl .form-input__item label {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20.27px; }

.mv-manetike .mv-form__ttl .form-input__item select, .mv-manetike .mv-form__ttl .form-input__item input {
  height: 56px;
  font-size: 16px;
  background-color: white !important;
  border: 1px solid #DCDCDC;
  border-radius: 4px; }

.mv-manetike .mv-form__ttl .form-submit {
  border: 0;
  background: #FF5959;
  height: 72px;
  width: 100%;
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  border-radius: 10px; }

.mv-manetike .mv-form__ttl p.form_note {
  font-weight: 400;
  font-size: 10px;
  line-height: 14.48px;
  padding: 0;
  color: #333333;
  margin: 0; }

.font-weight-700 {
  font-weight: 700; }

.fs-18 {
  font-size: 18px; }

.fs-12 {
  font-size: 12px; }

.mb-36px {
  margin-bottom: 36px; }

.box-row {
  margin-top: 24px;
  border: 1px solid #00aac3;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; }
  .box-row p {
    margin: 0; }
  .box-row:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    top: 34px;
    transform: rotate(45deg);
    border-right: 1px solid #00aac3;
    border-bottom: 1px solid #00aac3; }

.image_1 {
  margin-top: 16px;
  aspect-ratio: 294 / 152;
  width: 100%; }

.reason {
  text-transform: uppercase;
  color: #00AAC3;
  font-weight: 700;
  font-size: 16px;
  line-height: 18.4px;
  font-family: "Helvetica"; }

.mv-manetike .container.second {
  padding: 56px 24px; }
  .mv-manetike .container.second .title_1 {
    font-weight: 700;
    font-size: 32px;
    color: #333333;
    line-height: 51.27px; }
  .mv-manetike .container.second .block-reason-choose {
    flex: 1 1 0; }
    .mv-manetike .container.second .block-reason-choose .box-content {
      display: flex;
      flex-direction: column;
      justify-content: flex-start; }

.tag {
  background: #00AAC3;
  border-radius: 8px 8px 0 0;
  width: 152px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 36px;
  font-size: 14px !important; }
  .tag p {
    color: #FFFFFF;
    font-weight: 700;
    margin-right: 8px;
    line-height: 21px;
    margin-bottom: 0; }
  .tag span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #00aac3;
    font-weight: 700;
    font-size: 15px; }

.box-content {
  border-radius: 24px 8px;
  padding: 24px;
  background: #FFFFFF; }
  .box-content .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 32.04px;
    text-align: center;
    color: #333333; }
    @media screen and (max-width: 960px) {
      .box-content .title {
        font-size: 19px; } }
  .box-content .line {
    width: 54px;
    height: 2px;
    background: #00aac3;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 8px; }
  .box-content .content-image {
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    display: block; }
  .box-content .content-image_1 {
    width: 187.45px;
    height: 141.16px; }
  .box-content .content-image_2 {
    width: 154px;
    height: 100px; }
  .box-content .content-image_3 {
    width: 161px;
    height: 148px; }
  .box-content .content {
    margin-top: 28px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22.4px; }
  .box-content.content-reason-choose {
    aspect-ratio: 294/199; }
    .box-content.content-reason-choose img {
      width: 100%;
      height: 100%; }

.button {
  background: #FF5959;
  border-radius: 10px;
  width: 329px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 40px; }
  .button .box-text-second {
    display: flex;
    gap: 2px;
    justify-content: center;
    align-items: center; }
    .button .box-text-second .box-square {
      background: #FFFFFF;
      width: 32px;
      height: 32px;
      font-size: 18px;
      font-weight: 700;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #FF5959; }
    .button .box-text-second p {
      margin-left: 8px;
      color: #FFFFFF;
      font-size: 16px;
      font-weight: 700; }

.gap-40px {
  gap: 40px; }

.gap-36px {
  gap: 36px; }

.mb-40px {
  margin-bottom: 40px; }

.container.third {
  padding: 56px 24px;
  background: #C4F1FD;
  position: relative;
  width: 390px;
  height: 688px; }
  .container.third .image_2 {
    position: absolute;
    width: 137px;
    height: 173px;
    right: 24px;
    top: 90px;
    z-index: 0; }
  .container.third .chat {
    width: 343px;
    height: 444px;
    position: relative;
    margin-top: 36px; }
    .container.third .chat .message {
      padding: 16px;
      border-radius: 16px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4px;
      background: #FFFFFF; }
      .container.third .chat .message.left {
        border-bottom-left-radius: 4px; }
      .container.third .chat .message.right {
        border-bottom-right-radius: 4px;
        margin-left: auto; }
      .container.third .chat .message:not(:last-child) {
        margin-bottom: 16px; }

.fs-32 {
  font-size: 32px; }

.w-284px {
  width: 284px; }

.w-300px {
  width: 300px; }

.w-252px {
  width: 252px; }

.w-236px {
  width: 236px; }

.w-316px {
  width: 316px; }

.triangular {
  height: 36px;
  background: #FFFFFF;
  position: relative; }
  .triangular::before {
    content: "";
    display: block;
    width: 100%;
    height: 71px;
    background: #C4F1FD;
    clip-path: polygon(50% 0%, 100% 50%, 51% 100%, 50% 100%, 0% 50%);
    position: absolute;
    left: 0;
    bottom: 0; }

.container.fourth {
  padding: 56px 24px;
  background: #FFFFFF; }
  .container.fourth .image_3 {
    width: 141px;
    height: 112px;
    margin: auto;
    display: block; }
  .container.fourth .box-cate {
    aspect-ratio: 163 / 136;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 24px 8px;
    background: #E6F7FE;
    border: 1px solid #00aac3; }
    .container.fourth .box-cate .image-cate {
      width: 129px;
      height: 57px; }
    .container.fourth .box-cate .text {
      font-size: 16px;
      font-weight: 700;
      color: #00aac3;
      text-align: center; }

.gap-16px {
  gap: 16px; }

.mb-16px {
  margin-bottom: 16px; }

.mt-40px {
  margin-top: 40px; }

.container.fifth {
  padding: 56px 24px 16px 24px; }
  .container.fifth .text-q {
    color: #FFAE49;
    font-size: 104px; }
  .container.fifth .text-desc {
    font-size: 32px;
    font-weight: 700;
    color: #333333; }
  .container.fifth .image_group_21 {
    width: 342px;
    height: 298.6px; }
  .container.fifth .group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; }
    .container.fifth .group .label-text {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      border-radius: 24px 8px;
      background: #00AAC3;
      width: 100%;
      height: 64px;
      padding-right: 16px;
      padding-left: 16px; }
    .container.fifth .group .image_group_1 {
      width: 135.13px;
      height: 135.13px; }
    .container.fifth .group .image_group_2 {
      width: 153.87px;
      height: 99.09px; }
    .container.fifth .group .image_group_3 {
      width: 157.38px;
      height: 162.94px; }
    .container.fifth .group .desc {
      font-family: 'Yo Gothic';
      text-align: center;
      font-size: 16px;
      font-weight: 500; }

.h-121px {
  height: 122px; }

.container.sixth {
  padding: 56px 24px 56px 24px;
  background: #C4F1FD; }

.container.seventh {
  background: #FFE100;
  padding: 48px 24px; }
  .container.seventh .image_4 {
    width: 113.1px;
    height: 100.34px;
    right: 0;
    top: -82px; }

.text-blue {
  color: #00AAC3; }

.fs-16 {
  font-size: 16px; }

.fs-72 {
  font-size: 72px; }

.line-height-sm {
  line-height: 0.85; }

.text-gray {
  color: #333333; }

.mr-7px {
  margin-right: 7px !important; }

.gap-16px {
  gap: 24px !important; }

.mb-32px {
  margin-bottom: 32px; }

.container.eighth {
  padding: 48px 24px;
  background: #FFFFFF; }
  .container.eighth .number-image {
    border-radius: 8px;
    flex: 1 1 0; }
  .container.eighth .number-image-5 {
    width: 342px;
    height: 92px;
    border-radius: 8px; }

.container.ninth {
  padding: 48px 24px; }
  .container.ninth .button-user-void {
    width: 191px;
    height: 38px;
    border-radius: 40px;
    background: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px; }
  .container.ninth .text-desc {
    font-size: 14px;
    font-weight: 700;
    color: #333333; }
  .container.ninth .user-void-1 {
    width: 86.19px;
    height: 120px; }
  .container.ninth .user-void-2 {
    width: 103px;
    height: 88.69px; }
  .container.ninth .user-void-3 {
    width: 80px;
    height: 120px; }
  .container.ninth .user-void-4 {
    width: 141px;
    height: 87px; }

.container.tenth {
  padding: 48px 24px; }
  .container.tenth .image-step {
    display: block;
    margin-top: 16px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 200px; }

.header-logo__img {
  width: 160px;
  height: 30px; }
  @media (min-width: 768px) {
    .header-logo__img {
      width: 205px;
      height: 52px; } }
.text-percent, .text-q {
  font-family: "DIN Alternate", sans-serif; }

.bg-blue-main {
  background: #cdf0fb; }

.gap-6 {
  gap: 35px; }
  @media (min-width: 1200px) {
    .gap-6 {
      gap: 75px; } }
@media (min-width: 992px) {
  .scale-3 {
    transform: scale(1.1); } }

@media (min-width: 1200px) {
  .scale-3 {
    transform: scale(1.2); } }

@media (min-width: 768px) {
  .container {
    max-width: 780px; } }

@media (min-width: 992px) {
  .container {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container {
    max-width: 1320px; } }

.max-w-342px {
  max-width: 342px; }

.image_header_top {
  width: 384px;
  height: 625.56px;
  margin-left: -16px; }
  @media (min-width: 576px) {
    .image_header_top {
      transform: scale(1.5);
      margin-left: 0; } }
  @media (min-width: 768px) {
    .image_header_top {
      transform: scale(1.3, 1.5);
      margin-left: 55px; } }
  @media (min-width: 992px) {
    .image_header_top {
      transform: scale(1.5);
      margin-left: 34px; } }
.group-form-logo {
  gap: 20px; }
  @media (min-width: 576px) {
    .group-form-logo {
      gap: 185px; } }
  @media (min-width: 768px) {
    .group-form-logo {
      gap: 55px;
      flex-wrap: nowrap; } }
  @media (min-width: 992px) {
    .group-form-logo {
      gap: 95px;
      margin-left: 59px; } }
.box-container.box_1 {
  margin-top: 30px; }
  @media (min-width: 576px) {
    .box-container.box_1 {
      margin-top: 30px;
      width: 100%; } }
  @media (min-width: 768px) {
    .box-container.box_1 {
      margin-top: 30px;
      width: 75%; } }
  @media (min-width: 992px) {
    .box-container.box_1 {
      margin-top: 45px;
      width: 70%; } }
.bg-gray {
  background: #F4F4F4; }

.bg-yellow {
  background: #FFE100; }

.text-pre {
  white-space: pre !important; }

@media (min-width: 768px) {
  .h-165px {
    height: 165px !important; } }

.flex-1 {
  flex: 1; }

.footer {
  margin-top: auto;
  padding: 2em 0;
  background: #cdf0fb; }

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center; }

.footer-logo__img {
  max-width: 210px;
  width: 100%;
  margin: 0 10px 0 0; }

.footer-logo__sub-img {
  max-width: 140px;
  width: 100%; }

.footer-nav {
  margin-bottom: 2em; }

.footer-nav__list {
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }

@media screen and (max-width: 896px) {
  .footer-nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 0;
    list-style: none;
    border-top: 1px solid #000; } }

.footer-nav__item {
  margin-right: 2em; }

@media screen and (max-width: 896px) {
  .footer-nav__item {
    margin-right: 0;
    width: 50%; } }

.footer-nav__item:last-child {
  margin-right: 0; }

.footer-nav__link {
  display: block; }

@media screen and (max-width: 896px) {
  .footer-nav__link {
    position: relative;
    padding: 1em;
    font-size: 3.733vw;
    background: #fff;
    border-bottom: 1px solid #000; }
  .footer-nav__link::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 1em;
    width: 0.8em;
    height: 0.8em;
    transform: rotate(-45deg) translateY(-50%);
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    content: ""; }
  .footer-nav__link:nth-child(odd) {
    border-right: 1px solid #000; } }

.footer-copy {
  text-align: center; }

.p-12px {
  padding: 12px; }

.right-30px {
  right: 30px; }

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

button {
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  background: none;
  border: none;
  outline: none; }

.fs-10 {
  font-size: 10px; }

.is-hidden {
  height: 0;
  display: none; }

* {
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased; }

button:disabled {
  opacity: 0.7;
  cursor: not-allowed; }

@media (min-width: 768px) {
  .group__title-image {
    height: 278.09px; } }
