@charset "UTF-8";
/* ------------------------------
bootstrap grid break point
$grid-breakpoints: (
  xs: 0,
  sm: (480px + 30),
  md: (640px + 30),
  lg: (800px + 30),
  xl: (960px + 30)
) !default;
------------------------------ */
html {
  font-size: 10px;
}

a {
  color: #212121;
}
a:link, a:visited {
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
}

body {
  /* 游ゴシック体 */
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  /* /游ゴシック体 */
  font-size: 1.6rem;
  line-height: 1.75;
  color: #212121;
  background-color: #fff;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 669px) {
  body {
    font-size: 14px;
    width: auto;
  }
}

/*!
 * Bootstrap Grid v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
* {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 510px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 670px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 830px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 990px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 510px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 670px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 830px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 990px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 510px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 670px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 830px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 990px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 510px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 670px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 830px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 990px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 510px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 670px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 830px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 990px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.l-container {
  width: 100%;
  max-width: 1020px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.c-container {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.c-btn-sns {
  font-size: 16px;
  line-height: 28px;
  display: block;
  display: inline-block;
  width: 120px;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-radius: 15px;
}
.c-btn-sns--white {
  color: #fff;
  border-color: #fff;
}
.c-btn-sns--navy {
  color: #00336b;
  border-color: #00336b;
}

.c-btn-contact {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding: 18px 30px;
  text-align: center;
  color: #fff;
  border-bottom: 3px solid #f60;
  border-radius: 5px;
  background-color: #ff9000;
}
.c-btn-contact:hover, .c-btn-contact:active {
  text-decoration: none;
}

.c-note {
  font-size: 1.2rem;
  line-height: 1.5;
}

.c-heading {
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #00336b;
}
.c-heading--logo {
  padding-top: 34px;
  background-image: url(../images/heading-logo.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 60px;
}
.c-heading h3,
.c-heading h4 {
  font-size: 2.1rem;
}
.c-heading h5 {
  font-size: 1.8rem;
}
.c-heading p {
  font-size: 12px;
  margin-top: 5px;
}

.c-block {
  margin-top: 30px;
}

.c-para-margin-top {
  margin-top: 20px;
}

.c-treatment {
  color: #14a83b;
}

.c-training {
  color: #00a0e9;
}

.c-btn {
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  text-align: center;
  color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #7cb342;
  border-radius: 5px;
  background-color: #8bc34a;
}
.c-btn--red {
  border-color: #e53935;
  background-color: #f44336;
}
.c-btn--lightGreen {
  border-color: #7cb342;
  background-color: #8bc34a;
}
.c-btn--pink {
  border-color: #d81b60;
  background-color: #e91e63;
}
.c-btn--light-green {
  border-color: #558b2f;
  background-color: #8bc34a;
}
.c-btn--orange {
  border-color: #fb8c00;
  background-color: #ff9800;
}
.c-btn--lightBlue {
  border-color: #039be5;
  background-color: #03a9f4;
}
.c-btn:hover, .c-btn:visited {
  color: #fff;
}

.c-table {
  font-size: 12px;
  line-height: 2;
  margin-right: auto;
  margin-left: auto;
  color: #212121;
  border-top: 1px solid #e2dbbf;
}
.c-table th,
.c-table td {
  border-bottom: 1px solid #e2dbbf;
}
.c-table th {
  padding-right: 0.5em;
  padding-left: 1em;
  text-align: right;
  white-space: nowrap;
  background-color: #fcf8f2;
}
.c-table td {
  padding-right: 1em;
  padding-left: 0.5em;
  text-align: left;
  background-color: #fff;
}

/*----------------------------------------------------
  ☆topcontrol
----------------------------------------------------*/
#topcontrol a {
  font-size: 0;
  display: block;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  transition: all 0.15s ease-in-out;
  background-color: rgba(0, 0, 0, 0.35);
}
#topcontrol a::before {
  font-family: "Font Awesome 5 Solid";
  display: none;
  content: "\f077";
}
#topcontrol a .fa-chevron-up {
  font-size: 18px;
  color: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  margin-left: -7.875px;
  margin-top: -9px;
}

.c-panel {
  padding: 10px;
  box-shadow: none;
}
.c-panel.c-panel--red {
  background-color: #ef845d;
}
.c-panel.c-panel--red .panel-body {
  background-color: #fce5d9;
}
.c-panel.c-panel--light-green {
  background-color: #85c138;
}
.c-panel.c-panel--light-green .panel-body {
  background-color: #d8e698;
}
.c-panel .panel-heading {
  font-size: 24px;
  line-height: 1;
  padding-top: 12px;
  padding-top: 8px;
  padding-bottom: 4px;
  text-align: center;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.ff_s {
  font-family: serif;
}

.ff_ss {
  font-family: sans-serif;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.fs_i {
  font-style: italic;
}

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

.fz_0 {
  font-size: 0px;
}

.fz_1 {
  font-size: 1px;
}

.fz_2 {
  font-size: 2px;
}

.fz_3 {
  font-size: 3px;
}

.fz_4 {
  font-size: 4px;
}

.fz_5 {
  font-size: 5px;
}

.fz_6 {
  font-size: 6px;
}

.fz_7 {
  font-size: 7px;
}

.fz_8 {
  font-size: 8px;
}

.fz_9 {
  font-size: 9px;
}

.fz_10 {
  font-size: 10px;
}

.fz_11 {
  font-size: 11px;
}

.fz_12 {
  font-size: 12px;
}

.fz_13 {
  font-size: 13px;
}

.fz_14 {
  font-size: 14px;
}

.fz_15 {
  font-size: 15px;
}

.fz_16 {
  font-size: 16px;
}

.fz_17 {
  font-size: 17px;
}

.fz_18 {
  font-size: 18px;
}

.fz_19 {
  font-size: 19px;
}

.fz_20 {
  font-size: 20px;
}

.fz_21 {
  font-size: 21px;
}

.fz_22 {
  font-size: 22px;
}

.fz_23 {
  font-size: 23px;
}

.fz_24 {
  font-size: 24px;
}

.fz_25 {
  font-size: 25px;
}

.fz_26 {
  font-size: 26px;
}

.fz_27 {
  font-size: 27px;
}

.fz_28 {
  font-size: 28px;
}

.fz_29 {
  font-size: 29px;
}

.fz_30 {
  font-size: 30px;
}

.fz_31 {
  font-size: 31px;
}

.fz_32 {
  font-size: 32px;
}

.fz_33 {
  font-size: 33px;
}

.fz_34 {
  font-size: 34px;
}

.fz_35 {
  font-size: 35px;
}

.fz_36 {
  font-size: 36px;
}

.fz_37 {
  font-size: 37px;
}

.fz_38 {
  font-size: 38px;
}

.fz_39 {
  font-size: 39px;
}

.fz_40 {
  font-size: 40px;
}

.fz_41 {
  font-size: 41px;
}

.fz_42 {
  font-size: 42px;
}

.fz_43 {
  font-size: 43px;
}

.fz_44 {
  font-size: 44px;
}

.fz_45 {
  font-size: 45px;
}

.fz_46 {
  font-size: 46px;
}

.fz_47 {
  font-size: 47px;
}

.fz_48 {
  font-size: 48px;
}

.fz_49 {
  font-size: 49px;
}

.fz_50 {
  font-size: 50px;
}

.fz_51 {
  font-size: 51px;
}

.fz_52 {
  font-size: 52px;
}

.fz_53 {
  font-size: 53px;
}

.fz_54 {
  font-size: 54px;
}

.fz_55 {
  font-size: 55px;
}

.fz_56 {
  font-size: 56px;
}

.fz_57 {
  font-size: 57px;
}

.fz_58 {
  font-size: 58px;
}

.fz_59 {
  font-size: 59px;
}

.fz_60 {
  font-size: 60px;
}

.fz_61 {
  font-size: 61px;
}

.fz_62 {
  font-size: 62px;
}

.fz_63 {
  font-size: 63px;
}

.fz_64 {
  font-size: 64px;
}

.fz_65 {
  font-size: 65px;
}

.fz_66 {
  font-size: 66px;
}

.fz_67 {
  font-size: 67px;
}

.fz_68 {
  font-size: 68px;
}

.fz_69 {
  font-size: 69px;
}

.fz_70 {
  font-size: 70px;
}

.fz_71 {
  font-size: 71px;
}

.fz_72 {
  font-size: 72px;
}

.mt_0 {
  margin-top: 0px;
}

.mt_5 {
  margin-top: 5px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_15 {
  margin-top: 15px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_25 {
  margin-top: 25px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_35 {
  margin-top: 35px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_45 {
  margin-top: 45px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_55 {
  margin-top: 55px;
}

.mt_60 {
  margin-top: 60px;
}

.mt_65 {
  margin-top: 65px;
}

.mt_70 {
  margin-top: 70px;
}

.mt_75 {
  margin-top: 75px;
}

.mt_80 {
  margin-top: 80px;
}

.mt_85 {
  margin-top: 85px;
}

.mt_90 {
  margin-top: 90px;
}

.mt_95 {
  margin-top: 95px;
}

.mt_100 {
  margin-top: 100px;
}

.mt_105 {
  margin-top: 105px;
}

.mt_110 {
  margin-top: 110px;
}

.mt_115 {
  margin-top: 115px;
}

.mt_120 {
  margin-top: 120px;
}

.mt_125 {
  margin-top: 125px;
}

.mt_130 {
  margin-top: 130px;
}

.mt_135 {
  margin-top: 135px;
}

.mt_140 {
  margin-top: 140px;
}

.mt_145 {
  margin-top: 145px;
}

.mt_150 {
  margin-top: 150px;
}

.mt_155 {
  margin-top: 155px;
}

.mt_160 {
  margin-top: 160px;
}

.mt_165 {
  margin-top: 165px;
}

.mt_170 {
  margin-top: 170px;
}

.mt_175 {
  margin-top: 175px;
}

.mt_180 {
  margin-top: 180px;
}

.mt_185 {
  margin-top: 185px;
}

.mt_190 {
  margin-top: 190px;
}

.mt_195 {
  margin-top: 195px;
}

.mt_200 {
  margin-top: 200px;
}

.mt_205 {
  margin-top: 205px;
}

.mt_210 {
  margin-top: 210px;
}

.mt_215 {
  margin-top: 215px;
}

.mt_220 {
  margin-top: 220px;
}

.mt_225 {
  margin-top: 225px;
}

.mt_230 {
  margin-top: 230px;
}

.mt_235 {
  margin-top: 235px;
}

.mt_240 {
  margin-top: 240px;
}

.mt_245 {
  margin-top: 245px;
}

.mt_250 {
  margin-top: 250px;
}

.mt_255 {
  margin-top: 255px;
}

.mt_260 {
  margin-top: 260px;
}

.mt_265 {
  margin-top: 265px;
}

.mt_270 {
  margin-top: 270px;
}

.mt_275 {
  margin-top: 275px;
}

.mt_280 {
  margin-top: 280px;
}

.mt_285 {
  margin-top: 285px;
}

.mt_290 {
  margin-top: 290px;
}

.mt_295 {
  margin-top: 295px;
}

.mt_300 {
  margin-top: 300px;
}

.mt_305 {
  margin-top: 305px;
}

.mt_310 {
  margin-top: 310px;
}

.mt_315 {
  margin-top: 315px;
}

.mt_320 {
  margin-top: 320px;
}

.mt_325 {
  margin-top: 325px;
}

.mt_330 {
  margin-top: 330px;
}

.mt_335 {
  margin-top: 335px;
}

.mt_340 {
  margin-top: 340px;
}

.mt_345 {
  margin-top: 345px;
}

.mt_350 {
  margin-top: 350px;
}

.mt_355 {
  margin-top: 355px;
}

.mt_360 {
  margin-top: 360px;
}

.mt_365 {
  margin-top: 365px;
}

.mt_370 {
  margin-top: 370px;
}

.mt_375 {
  margin-top: 375px;
}

.mt_380 {
  margin-top: 380px;
}

.mt_385 {
  margin-top: 385px;
}

.mt_390 {
  margin-top: 390px;
}

.mt_395 {
  margin-top: 395px;
}

.mt_400 {
  margin-top: 400px;
}

.mt_405 {
  margin-top: 405px;
}

.mt_410 {
  margin-top: 410px;
}

.mt_415 {
  margin-top: 415px;
}

.mt_420 {
  margin-top: 420px;
}

.mt_425 {
  margin-top: 425px;
}

.mt_430 {
  margin-top: 430px;
}

.mt_435 {
  margin-top: 435px;
}

.mt_440 {
  margin-top: 440px;
}

.mt_445 {
  margin-top: 445px;
}

.mt_450 {
  margin-top: 450px;
}

.mt_455 {
  margin-top: 455px;
}

.mt_460 {
  margin-top: 460px;
}

.mt_465 {
  margin-top: 465px;
}

.mt_470 {
  margin-top: 470px;
}

.mt_475 {
  margin-top: 475px;
}

.mt_480 {
  margin-top: 480px;
}

.mt_485 {
  margin-top: 485px;
}

.mt_490 {
  margin-top: 490px;
}

.mt_495 {
  margin-top: 495px;
}

.mt_500 {
  margin-top: 500px;
}

.mr_10 {
  margin-right: 10px;
}

.mr_20 {
  margin-right: 20px;
}

.mb_0 {
  margin-bottom: 0;
}

.mb_5 {
  margin-bottom: 5px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_15 {
  margin-bottom: 15px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_25 {
  margin-bottom: 25px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.ml_10 {
  margin-left: 10px;
}

.pt_20 {
  padding-top: 20px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_60 {
  padding-top: 60px;
}

.pb_20 {
  padding-bottom: 20px;
}

.pb_30 {
  padding-bottom: 30px;
}

.pl_0 {
  padding-bottom: 0;
}

.pl_5 {
  padding-bottom: 5px;
}

.pr_0 {
  padding-bottom: 0;
}

.ta_l {
  text-align: left;
}

.ta_r {
  text-align: right;
}

.ta_c {
  text-align: center;
}

.td_u {
  text-decoration: underline;
}

.br::before {
  content: "\a";
  white-space: pre;
}
@media only screen and (max-width: 669px) {
  .br--void--sp::before {
    content: "";
  }
}
@media only screen and (min-width: 670px) {
  .br--void--pc::before {
    content: "";
  }
}

.u-ti--notation {
  margin-left: 1em;
  text-indent: -1em;
}

.img-responsive {
  margin-right: auto;
  margin-left: auto;
}
.img-responsive--logo--footer {
  max-width: 100px;
}
.img-responsive--instagram-logo {
  max-width: 160px;
}
.img-responsive--access-logo {
  max-width: 202.4px;
}
.img-responsive--ingroduction-figure {
  max-width: 550px;
}
.img-responsive--about-point-figure-1, .img-responsive--about-point-figure-2, .img-responsive--about-point-figure-3 {
  max-width: 360px;
}
.img-responsive--about-figure-1, .img-responsive--about-figure-2 {
  max-width: 490px;
}
.img-responsive--course-figure-1, .img-responsive--course-figure-2 {
  max-width: 570px;
}
.img-responsive--p-about__symptoms__circle {
  max-width: 170px;
}
.img-responsive--greeting-figure-1 {
  max-width: 440px;
}
@media only screen and (max-width: 669px) {
  .img-responsive--greeting-figure-1 {
    max-width: 352px;
  }
}

.p-masthead-nav {
  position: relative;
}
.p-masthead-nav h1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: white;
}
@media only screen and (min-width: 960px) {
  .p-masthead-nav h1 {
    height: 80px;
  }
}
.p-masthead-nav h1 a {
  position: absolute;
  top: -53px;
  left: 50%;
  display: block;
  width: 138px;
  height: 138px;
  margin-left: -69px;
  border-radius: 50%;
  background-color: #fff;
}
@media only screen and (min-width: 960px) {
  .p-masthead-nav h1 a {
    top: -43px;
  }
}
.p-masthead-nav h1 a img {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 60px;
  margin-left: -30px;
}
@media only screen and (max-width: 959px) {
  .p-masthead-nav__pc {
    display: none;
  }
}
.p-masthead-nav__pc ul {
  position: fixed;
  top: 0;
  left: 50%;
  display: block;
  width: 960px;
  height: 80px;
  margin-left: -480px;
}
.p-masthead-nav__pc__btn {
  position: absolute;
  top: 0;
  display: block;
  width: 142px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  color: #00336b;
}
.p-masthead-nav__pc__btn h3 {
  line-height: 25px;
}
.p-masthead-nav__pc__btn div {
  font-size: 1rem;
  line-height: 15px;
}
.p-masthead-nav__pc__btn:hover, .p-masthead-nav__pc__btn:active {
  text-decoration: none;
  color: #fff;
  background-color: #ff9000;
}
.p-masthead-nav__pc__btn--1 {
  left: 0;
}
.p-masthead-nav__pc__btn--2 {
  left: 142px;
}
.p-masthead-nav__pc__btn--3 {
  left: 284px;
}
.p-masthead-nav__pc__btn--4 {
  right: 284px;
}
.p-masthead-nav__pc__btn--5 {
  right: 142px;
}
.p-masthead-nav__pc__btn--6 {
  right: 0;
}
@media only screen and (min-width: 960px) {
  .p-masthead-nav__sp {
    display: none;
  }
}

.p-kv .bx-viewport {
  background-color: #e5eaeb;
}
@media only screen and (min-width: 960px) {
  .p-kv .bx-viewport {
    background: none;
  }
}
.p-kv__sp {
  padding-top: 60px;
}
@media only screen and (min-width: 480px) {
  .p-kv__sp {
    display: none;
  }
}
.p-kv__tablet {
  padding-top: 60px;
}
@media only screen and (max-width: 479px) {
  .p-kv__tablet {
    display: none;
  }
}
@media only screen and (min-width: 960px) {
  .p-kv__tablet {
    display: none;
  }
}
.p-kv__pc {
  padding-top: 80px;
}
@media only screen and (max-width: 959px) {
  .p-kv__pc {
    display: none;
  }
}

.p-about,
.p-course,
.p-introduction,
.p-greeting,
.p-access,
.p-contact {
  padding-top: 90px;
}
@media only screen and (min-width: 960px) {
  .p-about,
  .p-course,
  .p-introduction,
  .p-greeting,
  .p-access,
  .p-contact {
    padding-top: 120px;
  }
}
.p-about .img-responsive--about-point-figure-1,
.p-about .img-responsive--about-point-figure-2,
.p-about .img-responsive--about-point-figure-3 {
  margin-top: 30px;
}
@media only screen and (max-width: 669px) {
  .p-about .img-responsive--about-figure-1,
  .p-about .img-responsive--about-figure-2 {
    padding-top: 20px;
  }
}
.p-about__feature {
  margin-top: 30px;
}
.p-about__symptoms {
  margin-top: 30px;
}
.p-about__symptoms .img-responsive--p-about__symptoms__circle {
  margin-top: 30px;
}
@media only screen and (max-width: 829px) {
  .p-about__symptoms .img-responsive--p-about__symptoms__circle {
    margin-top: 20px;
  }
}
.p-about__symptoms__circle {
  display: table;
  width: 102px;
  height: 102px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  border-radius: 50%;
  background-color: #3bcbc9;
}
@media only screen and (max-width: 829px) {
  .p-about__symptoms__circle {
    font-size: 1.4rem;
    width: 76px;
    height: 76px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 669px) {
  .p-about__symptoms__circle {
    font-size: 1.8rem;
    width: 128px;
    height: 128px;
  }
}
@media only screen and (max-width: 509px) {
  .p-about__symptoms__circle {
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
  }
}
.p-about__symptoms__circle p {
  font-weight: 700;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
.p-about__symptoms__container {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.p-about__symptoms-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-about__symptoms-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .p-about__symptoms-container {
    gap: 32px;
  }
}

.p-about__symptom {
  background-color: #3ecbc9;
  display: grid;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-top: 32px;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .p-about__symptom {
    font-size: 14px;
    height: 96px;
    width: 96px;
    margin-top: 32px;
  }
}
@media (min-width: 425px) {
  .p-about__symptom {
    font-size: 17px;
    height: 112px;
    width: 112px;
    margin-top: 32px;
  }
}
@media (min-width: 768px) {
  .p-about__symptom {
    font-size: 14px;
    height: 96px;
    width: 96px;
    margin-top: 32px;
  }
}
@media (min-width: 1024px) {
  .p-about__symptom {
    font-size: 16px;
    height: 108px;
    width: 108px;
    margin-top: 32px;
  }
}

.p-course {
  padding-bottom: 60px;
  background: linear-gradient(180deg, #fff 0%, #fff 10%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 100%), linear-gradient(90deg, #c7e7d0 0%, #c7e7d0 50%, #cae3ef 50%, #cae3ef 100%);
}
@media only screen and (max-width: 669px) {
  .p-course {
    padding-bottom: 0;
    background-image: none;
  }
}
@media only screen and (max-width: 669px) {
  .p-course .l-container,
  .p-course .container-fluid,
  .p-course .col-md-6,
  .p-course .row {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.p-course__treatment, .p-course__training {
  margin-top: 30px;
}
@media only screen and (max-width: 669px) {
  .p-course__treatment, .p-course__training {
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    background-image: linear-gradient(180deg, #fff 0%, #fff 5%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0) 100%);
  }
}
@media only screen and (max-width: 669px) {
  .p-course__treatment {
    background-color: #c7e7d0;
  }
}
@media only screen and (max-width: 669px) {
  .p-course__training {
    background-color: #cae3ef;
  }
}
.p-course__crossing {
  background-image: url(../images/course-cross.png);
  background-repeat: no-repeat;
  background-position: center top 300px;
  background-size: 257.5px;
}
.p-course__crossing .c-heading {
  margin-top: 30px;
}
@media only screen and (max-width: 959px) {
  .p-course__crossing {
    max-width: 610px;
    margin-right: auto;
    margin-left: auto;
    background-position: center top 210px;
    background-size: 206px;
  }
}
@media only screen and (max-width: 669px) {
  .p-course__crossing {
    max-width: 100%;
    background-image: none;
  }
}
.p-course strong {
  font-weight: 700;
}
.p-course .img-responsive--course-figure-1 {
  margin-right: -30px;
}
@media only screen and (max-width: 669px) {
  .p-course .img-responsive--course-figure-1 {
    margin-right: 0;
  }
}
.p-course .img-responsive--course-figure-2 {
  margin-left: -30px;
}
@media only screen and (max-width: 669px) {
  .p-course .img-responsive--course-figure-2 {
    margin-left: 0;
  }
}
.p-course__treatment strong {
  color: #14a83b;
}
.p-course__treatment__first-time {
  font-size: 1.4rem;
  margin-top: 20px;
  padding: 20px;
  text-align: center;
  background-color: #fff;
}
.p-course__treatment__first-time__data--head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #00336b;
}
.p-course__treatment__first-time__data--price {
  font-size: 24px;
}
.p-course__training strong {
  color: #00a0e9;
}
.p-course__block {
  margin-top: 30px;
}
.p-course__para {
  min-height: 364px;
}
@media only screen and (max-width: 959px) {
  .p-course__para {
    min-height: 504px;
  }
}
@media only screen and (max-width: 669px) {
  .p-course__para {
    min-height: auto;
  }
}
.p-course__card-wrap {
  min-height: 1008px;
}
@media only screen and (max-width: 959px) {
  .p-course__card-wrap {
    min-height: 646px;
  }
}
@media only screen and (max-width: 669px) {
  .p-course__card-wrap {
    min-height: auto;
  }
}
.p-course__card {
  font-size: 1.6rem;
  position: relative;
  display: table;
  width: 100%;
  min-height: 140px;
  margin-top: 20px;
  margin-top: 20px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 160px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 140px;
}
@media only screen and (max-width: 959px) {
  .p-course__card {
    font-size: 1.2rem;
    line-height: 1.5;
    min-height: 80px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 100px;
    background-size: 80px;
  }
}
.p-course__card p {
  display: table-cell;
  vertical-align: middle;
}
.p-course__card::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  content: "";
  border-radius: 0 0 40px 0;
}
.p-course__card::after {
  font-family: serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
}
.p-course__card--1::before {
  background: #14a83b;
}
.p-course__card--2::before {
  background: #00a0e9;
}
.p-course__card--1-1::after, .p-course__card--2-1::after {
  content: "1";
}
.p-course__card--1-2::after, .p-course__card--2-2::after {
  content: "2";
}
.p-course__card--1-3::after, .p-course__card--2-3::after {
  content: "3";
}
.p-course__card--1-4::after, .p-course__card--2-4::after {
  content: "4";
}
.p-course__card--1-5::after, .p-course__card--2-5::after {
  content: "5";
}
.p-course__card--1-6::after, .p-course__card--2-6::after {
  content: "6";
}
.p-course__card--1-1 {
  background-image: url(../images/course-step-1-figure-1.png);
}
.p-course__card--1-2 {
  background-image: url(../images/course-step-1-figure-2.png);
}
.p-course__card--1-3 {
  background-image: url(../images/course-step-1-figure-3.png);
}
.p-course__card--1-4 {
  background-image: url(../images/course-step-1-figure-4.png);
}
.p-course__card--1-5 {
  background-image: url(../images/course-step-1-figure-5.png);
}
.p-course__card--1-6 {
  background-image: url(../images/course-step-1-figure-6.png);
}
.p-course__card--2-1 {
  background-image: url(../images/course-step-1-figure-1.png);
}
.p-course__card--2-2 {
  background-image: url(../images/course-step-1-figure-2.png);
}
.p-course__card--2-3 {
  background-image: url(../images/course-step-2-figure-3.png);
}
.p-course__card--2-4 {
  background-image: url(../images/course-step-2-figure-4.png);
}
.p-course__card--2-5 {
  background-image: url(../images/course-step-1-figure-6.png);
}
.p-course__price {
  font-wight: 700;
}
.p-course__price table {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
.p-course__price table th,
.p-course__price table td {
  padding: 3px;
  border-bottom: 1px solid #ccc;
}
.p-course__price table th {
  font-size: 18px;
}
.p-course__price table td {
  font-size: 24px;
}
.p-course__price__minute {
  line-height: 24px;
  position: relative;
  margin-right: 24px;
  padding-right: 10px;
  padding-left: 10px;
  color: #fff;
}
.p-course__price__minute::after {
  position: absolute;
  top: 0;
  right: -24px;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-width: 24px 0 0 24px;
  border-style: solid;
}
.p-course__price__minute--treatment {
  background-color: #14a83b;
}
.p-course__price__minute--treatment::after {
  border-color: transparent transparent transparent #14a83b;
}
.p-course__price__minute--training {
  background-color: #00a0e9;
}
.p-course__price__minute--training::after {
  border-color: transparent transparent transparent #00a0e9;
}
.p-course__price__tax {
  font-size: 1.4rem;
}
.p-course__payment {
  font-size: 1.4rem;
  padding-right: 30px;
  padding-left: 30px;
}
.p-course__payment p {
  margin-top: 30px;
  text-align: center;
}
.p-course__payment table {
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
}
.p-course__payment th {
  font-weight: 700;
  padding-right: 0.5em;
  text-align: right;
  white-space: nowrap;
}

.p-introduction .c-block {
  margin-top: 0;
  padding-bottom: 60px;
}
.p-introduction .img-responsive--ingroduction-figure {
  margin-top: 30px;
}

.p-greeting {
  padding-top: 60px;
}
.p-greeting__greeting-figure-2-wrap {
  margin-top: 60px;
}
@media only screen and (min-width: 960px) {
  .p-greeting__greeting-figure-2-wrap {
    padding-bottom: 24.452783017%;
    background-image: url(../images/greeting-figure-2--pc.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 959.999999166px;
    background-size: 100%;
  }
}
@media only screen and (min-width: 960px) {
  .p-greeting__greeting-figure-2-wrap .img-responsive--greeting-figure-2--sp {
    display: none;
  }
}
.p-greeting__bg {
  padding-top: 60px;
  background-color: #ebf3f7;
}
.p-greeting__card,
.p-greeting .img-responsive--greeting-figure-1 {
  margin-top: 30px;
}
@media only screen and (max-width: 959px) {
  .p-greeting__signature {
    text-align: center;
  }
}
.p-greeting__name {
  font-size: 21px;
  font-weight: 700px;
}
.p-greeting__credentials {
  font-size: 1.4rem;
  margin-top: 20px;
}
@media only screen and (max-width: 959px) {
  .p-greeting__credentials {
    display: table;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-greeting__credentials th {
  padding-right: 10px;
  vertical-align: middle;
  border-right: 1px solid #ccc;
}
.p-greeting__credentials td {
  padding-left: 10px;
}
.p-greeting__credentials ul {
  padding-bottom: 5px;
}
.p-greeting__credentials li {
  margin-top: 5px;
  margin-left: 1em;
  text-indent: -1em;
}

.p-access__hgroup {
  margin-top: 30px;
  text-align: center;
}
.p-access__hgroup h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00336b;
}
.p-access__hgroup .img-responsive--access-logo {
  margin-top: 10px;
}
.p-access__map {
  margin-top: 30px;
}
.p-access__address {
  font-size: 1.4rem;
  margin-top: 20px;
}
.p-access__sns-btn-wrap {
  position: relative;
  margin-top: 20px;
}
.p-access__sns-btn-wrap li {
  margin-left: 1em;
  text-indent: -1em;
}
.p-access__instagram, .p-access__facebook {
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 959px) {
  .p-access__instagram, .p-access__facebook {
    position: static;
  }
}
.p-access__dot {
  color: #00336b;
}
.p-access__tel {
  margin-top: 20px;
}
.p-access__sns-container ul {
  font-size: 0;
}
@media only screen and (max-width: 669px) {
  .p-access__sns-container ul {
    text-align: center;
  }
}
.p-access__sns-container li {
  font-size: 1.6rem;
  display: inline-block;
  margin-left: 0;
  text-indent: 0;
}
@media only screen and (max-width: 959px) {
  .p-access__instagram, .p-access__facebook {
    margin-top: 20px;
    margin-right: 10px;
  }
}
.p-access__instagram {
  top: 0;
}
.p-access__facebook {
  top: 50px;
}

.p-contact {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 60px;
  padding-bottom: 30px;
  text-align: center;
  background-color: #fff;
}
.p-contact .c-btn-contact {
  margin-top: 20px;
}
.p-contact__tel {
  margin-top: 20px;
}

.p-instagram {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: rgb(107, 211, 136);
  background: linear-gradient(90deg, rgb(107, 211, 136) 0%, rgb(100, 190, 230) 100%);
}
.p-instagram__hgroup {
  font-size: 0;
  text-align: center;
}
.p-instagram__hgroup figure,
.p-instagram__hgroup h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 25.81px;
  display: inline-block;
  vertical-align: top;
}
.p-instagram__hgroup figure {
  font-size: 0;
  margin-right: 10px;
}

.p-footer {
  font-size: 1.4rem;
  line-height: 1.5;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background-color: #00336b;
}
.p-footer a {
  color: #fff;
}
.p-footer__info {
  position: relative;
  padding-left: 120px;
}
@media only screen and (max-width: 829px) {
  .p-footer__info {
    display: table;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-footer__info .img-responsive--logo--footer {
  position: absolute;
  top: 0;
  left: 0;
}
.p-footer__info h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-footer__info ul {
  font-size: 0;
}
.p-footer__info ul li {
  font-size: 1.4rem;
  display: inline-block;
  margin-right: 1em;
}
.p-footer__address {
  margin-top: 10px;
}
.p-footer__sns ul {
  font-size: 0;
  text-align: right;
}
@media only screen and (max-width: 829px) {
  .p-footer__sns ul {
    text-align: center;
  }
}
.p-footer__sns ul li {
  font-size: 16px;
  display: inline-block;
  margin-top: 18px;
  margin-left: 1em;
}
.p-footer__privacy-policy-and-copyright ul {
  font-size: 0;
  margin-top: 10px;
  text-align: right;
}
@media only screen and (max-width: 829px) {
  .p-footer__privacy-policy-and-copyright ul {
    text-align: center;
  }
}
.p-footer__privacy-policy-and-copyright ul li {
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 1em;
}

.p-pp {
  padding-top: 60px;
  padding-bottom: 60px;
}
.p-pp .c-heading {
  line-height: 1.5;
  margin-top: 30px;
  text-align: left;
}
.p-pp p {
  margin-top: 10px;
}

.mv {
  box-sizing: border-box;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .mv {
    display: none;
  }
}
.mv .bxslider li {
  height: 100vh;
}
.mv .drawer-hamburger {
  top: 1px !important;
  right: 30px !important;
  background-color: rgba(0, 0, 0, 0) !important;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #00336b;
}

.drawer--top .drawer-nav {
  top: -100%;
  height: 100%;
  background-color: rgba(0, 51, 107, 0.9);
}
.drawer--top.drawer-open .drawer-nav {
  position: fixed;
  top: 0;
}

.drawer-nav .drawer-menu__block {
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 20px;
}
.drawer-nav .drawer-menu__tel {
  font-size: 24px;
  font-weight: bold;
  line-height: 1em;
  margin-top: 20px;
  text-align: center;
  color: #fff;
}
.drawer-nav .drawer-menu__tel a {
  color: #fff;
}
.drawer-nav .drawer-menu__tel .c-note {
  font-weight: 400;
}
.drawer-nav .drawer-menu li a {
  display: block;
  padding: 20px 0 20px;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
.drawer-nav .drawer-menu__en {
  font-size: 1.2rem;
  font-weight: 400;
}
.drawer-nav .c-btn-contact {
  margin-top: 20px;
}

.drawer-menu {
  padding-top: 60px;
}

.youtube-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 69px;
  padding-bottom: 50%;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul,
ol {
  list-style-type: none;
}

th {
  font-weight: normal;
}

div.header {
  background: none;
}

.hgroup {
  border: none;
}

/* bootstrap
---------------------------------------------------------------------------------------------------- */
/* bootstrap-custom
---------------------------------------------------------------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
}

ul,
ol,
dl {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin: 0;
}

figure {
  margin: initial;
}

caption {
  caption-side: initial;
}

.row::before, .row::after {
  display: none;
}

.row--no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.row--no-gutter > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.row--gutter-10 {
  margin-right: -5px;
  margin-left: -5px;
}
.row--gutter-10 > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.row--gutter-20 {
  margin-right: -10px;
  margin-left: -10px;
}
.row--gutter-20 > [class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}

.row--gutter-40 {
  margin-right: -20px;
  margin-left: -20px;
}
.row--gutter-40 > [class*=col-] {
  padding-right: 20px;
  padding-left: 20px;
}

.main {
  padding-bottom: 10px;
}/*# sourceMappingURL=main.css.map */