@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Roboto:ital,wght@1,700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

:root {
  --gutter-width: 1rem;
  --outer-margin: 2rem;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc((var(--gutter-width) * 0.5));
  --xs-min: 30;
  --sm-min: 48;
  --md-min: 64;
  --lg-min: 75;
  --screen-xs-min: var(--xs-min) em;
  --screen-sm-min: var(--sm-min) em;
  --screen-md-min: var(--md-min) em;
  --screen-lg-min: var(--lg-min) em;
  --container-sm: calc(var(--sm-min) + var(--gutter-width));
  --container-md: calc(var(--md-min) + var(--gutter-width));
  --container-lg: calc(var(--lg-min) + var(--gutter-width));
}

@custom-media --sm-viewport only screen and (min-width: 48em);
@custom-media --md-viewport only screen and (min-width: 64em);
@custom-media --lg-viewport only screen and (min-width: 75em);
.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: 16px;
  margin-left: 16px;
}

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

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: var(--half-gutter-width, 0.5rem);
  padding-left: var(--half-gutter-width, 0.5rem);
}

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

.col-xs-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

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

.col-xs-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

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

.col-xs-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

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

.col-xs-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

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

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

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

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

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

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

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

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-offset-0,
.col-offset-1,
.col-offset-2,
.col-offset-3,
.col-offset-4,
.col-offset-5,
.col-offset-6,
.col-offset-7,
.col-offset-8,
.col-offset-9,
.col-offset-10,
.col-offset-11,
.col-offset-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: var(--half-gutter-width, 0.5rem);
  padding-left: var(--half-gutter-width, 0.5rem);
}

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

.col-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex-basis: 25%;
  max-width: 25%;
}
@media screen and (max-width: 767px) {
  .col-3 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

.col-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

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

.col-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

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

.col-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

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

.col-offset-0 {
  margin-left: 0;
}

.col-offset-1 {
  margin-left: 8.33333333%;
}

.col-offset-2 {
  margin-left: 16.66666667%;
}

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

.col-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

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

.col-offset-7 {
  margin-left: 58.33333333%;
}

.col-offset-8 {
  margin-left: 66.66666667%;
}

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

.col-offset-10 {
  margin-left: 83.33333333%;
}

.col-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media (--sm-viewport) {
  .container {
    width: var(--container-sm, 46rem);
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }

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

  .col-sm-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

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

  .col-sm-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

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

  .col-sm-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

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

  .col-sm-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

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

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

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

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

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

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

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

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    align-items: flex-start;
  }

  .middle-sm {
    align-items: center;
  }

  .bottom-sm {
    align-items: flex-end;
  }

  .around-sm {
    justify-content: space-around;
  }

  .between-sm {
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}
@media (--md-viewport) {
  .container {
    width: var(--container-md, 61rem);
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .col-md-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

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

  .col-md-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

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

  .col-md-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

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

  .col-md-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

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

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

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

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

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

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

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

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    justify-content: center;
    text-align: center;
  }

  .end-md {
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    align-items: flex-start;
  }

  .middle-md {
    align-items: center;
  }

  .bottom-md {
    align-items: flex-end;
  }

  .around-md {
    justify-content: space-around;
  }

  .between-md {
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-offset-0,
.col-offset-1,
.col-offset-2,
.col-offset-3,
.col-offset-4,
.col-offset-5,
.col-offset-6,
.col-offset-7,
.col-offset-8,
.col-offset-9,
.col-offset-10,
.col-offset-11,
.col-offset-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 16px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .col,
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col-offset-0,
  .col-offset-1,
  .col-offset-2,
  .col-offset-3,
  .col-offset-4,
  .col-offset-5,
  .col-offset-6,
  .col-offset-7,
  .col-offset-8,
  .col-offset-9,
  .col-offset-10,
  .col-offset-11,
  .col-offset-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

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

.col-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
@media screen and (max-width: 767px) {
  .col-2 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col-3 {
  flex-basis: 25%;
  max-width: 25%;
}
@media screen and (max-width: 767px) {
  .col-3 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
@media screen and (max-width: 767px) {
  .col-4 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}
@media screen and (max-width: 767px) {
  .col-5 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col-6 {
  flex-basis: 50%;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .col-6 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}
@media screen and (max-width: 767px) {
  .col-7 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
@media screen and (max-width: 767px) {
  .col-8 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col-9 {
  flex-basis: 75%;
  max-width: 75%;
}
@media screen and (max-width: 767px) {
  .col-9 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}
@media screen and (max-width: 767px) {
  .col-10 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.col-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}
@media screen and (max-width: 767px) {
  .col-11 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

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

.col-offset-0 {
  margin-left: 0;
}

.col-offset-1 {
  margin-left: 8.33333333%;
}

.col-offset-2 {
  margin-left: 16.66666667%;
}

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

.col-offset-4 {
  margin-left: 33.33333333%;
}

.col-offset-5 {
  margin-left: 41.66666667%;
}

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

.col-offset-7 {
  margin-left: 58.33333333%;
}

.col-offset-8 {
  margin-left: 66.66666667%;
}

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

.col-offset-10 {
  margin-left: 83.33333333%;
}

.col-offset-11 {
  margin-left: 91.66666667%;
}

.start {
  justify-content: flex-start;
  text-align: start;
}

.center {
  justify-content: center;
  text-align: center;
}

.end {
  justify-content: flex-end;
  text-align: end;
}

.top {
  align-items: flex-start;
}

.middle {
  align-items: center;
}

.bottom {
  align-items: flex-end;
}

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

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

.first {
  order: -1;
}

.last {
  order: 1;
}

body, html {
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  background: #2B2B2B;
}

#svg-animation .st0 {
  fill: none;
  stroke: #f90;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

image {
  margin-top: 50px;
}

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

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

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

a {
  text-decoration: none;
}
a:hover {
  opacity: .5;
}

p {
  line-height: 1.75;
  letter-spacing: .03em;
}

.inline {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .inline {
    display: inline-block !important;
  }
}

.row {
  margin: 0 !important;
}

.container-fluid {
  width: calc(100% - 64px);
  height: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .container-fluid {
    width: calc(100% - 32px);
  }
}

.container {
  max-width: calc(1201px - 32px);
  margin: 0 auto;
  height: 100%;
  position: relative;
  padding: 0 16px;
}
@media screen and (max-width: 1399px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 1199px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 991px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
  }
}

.contents_title {
  text-align: center;
  font-size: calc(.8rem + 1vw);
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.5;
  margin: 32px auto;
}
@media screen and (max-width: 767px) {
  .contents_title {
    font-size: calc(1.25rem + 1vw);
  }
}
.contents_title::before {
  content: "";
  display: block;
}
.contents_title span {
  font-size: 60%;
  display: block;
  margin-top: 16px;
  color: #ff9900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

input, textarea, select {
  margin: 0;
  padding: 0;
  background: none !important;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.page_title {
  text-align: left;
  font-size: calc(1rem + 1vw);
  font-weight: bold;
}
.page_title span {
  display: block;
}

.contents_text_title {
  text-align: center;
  font-size: calc(1rem + 1vw);
  font-weight: bold;
  letter-spacing: .08em;
  margin: 0 auto 60px;
  line-height: 1.5;
}
.contents_text_title span {
  display: block;
  color: #F29900;
  margin: 16px 0;
  font-size: 50%;
  letter-spacing: .03em;
}

.contents_sub_title span {
  font-size: 60%;
  display: block;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ff9900;
  font-family: 'Noto Sans', sans-serif;
}

/*------お問い合わせ　CSS------*/
#contact {
  margin: 0 16px;
}
@media screen and (max-width: 767px) {
  #contact {
    margin: 0 8px;
  }
}
#contact p {
  text-align: center;
  line-height: 2;
}
#contact .btn {
  display: block;
  width: 50%;
  margin: 0 auto;
  color: white;
  font-size: 16px;
  padding: 8px 0;
  letter-spacing: .2em;
  background-color: #73B3DB !important;
  border: 1px dashed #FFF;
  box-shadow: 0px 0px 0px 3px #73B3DB;
  border-radius: 30px;
}

.contact_table {
  margin: 5% 0;
}
.contact_table input[type="radio"] {
  margin: 10px 0;
  vertical-align: length;
}
.contact_table input[type="radio"]:nth-of-type(even) {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .contact_table input[type="radio"]:nth-of-type(even) {
    margin-left: 0;
  }
}
.contact_table th, .contact_table td {
  height: 30px;
  padding: 15px 0;
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .contact_table th, .contact_table td {
    display: block;
    height: auto;
    padding: 5px 0;
  }
}
.contact_table th {
  width: 20%;
  letter-spacing: 2px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .contact_table th {
    width: 100%;
    font-weight: bold;
  }
}
.contact_table td {
  width: 80%;
}
.contact_table td input, .contact_table td textarea, .contact_table td select {
  border: 1px solid #f2f2f2;
  width: 100%;
  padding: 16px 8px;
  font-size: 15px;
  letter-spacing: .08em;
}
.contact_table td input, .contact_table td textarea {
  padding: 16px 0;
}
.contact_table td input::placeholder, .contact_table td textarea::placeholder {
  padding-left: 8px;
}
.contact_table td select {
  position: relative;
}
.contact_table td select::before {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg) translateY(-50%);
  transition: all .4s ease-in-out;
  transform-origin: 50% 0;
  z-index: 22;
}
@media screen and (max-width: 767px) {
  .contact_table td {
    width: 100%;
  }
}
.contact_table tr {
  border-bottom: solid 1px #f2f2f2;
  padding: 15px 0;
}
.contact_table .required::before {
  content: "*";
  color: red;
}
.contact_table .notdisp {
  display: none;
}
.contact_table input[type="text"], .contact_table input[type="email"], .contact_table input[type="tel"], .contact_table textarea {
  background: #fafafa;
  font-size: 14px;
}
.contact_table input.pluralBtn {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 5px;
  padding: 0;
  margin: 0;
}
.contact_table #input-people {
  width: 50%;
}
.contact_table #form_add_area input[type="text"], .contact_table #form_add input[type="text"] {
  display: inline-block;
  width: 90%;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .contact_table #form_add_area input[type="text"], .contact_table #form_add input[type="text"] {
    width: 75%;
  }
}

#contact_box {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #contact_box {
    margin-top: 0;
  }
}
#contact_box .row {
  margin: 0;
  align-items: center;
}
#contact_box .row .col-2, #contact_box .row .col-6, #contact_box .row .col-4 {
  margin: 0;
  padding: 0;
}
#contact_box .contact_infoBox {
  border: 2px solid #333;
  background: #0089E2;
  border-radius: 6px;
  color: white;
  font-weight: 500;
}
#contact_box .contact_infoBox h3 {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  background: #4DA9E5;
  padding: 46px 0;
  border-radius: 50%;
  margin: 8px;
}
@media screen and (max-width: 767px) {
  #contact_box .contact_infoBox h3 {
    background: transparent;
    padding: 16px 0;
  }
}
#contact_box .contact_infoBox img {
  border-radius: 0 6px 6px 0;
}
#contact_box .contact_infoBox ul {
  margin: 16px 0;
}
#contact_box .contact_infoBox ul li {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #contact_box .contact_infoBox ul li {
    display: block;
    margin: 16px 0;
  }
}
#contact_box .contact_infoBox ul li:first-child {
  font-size: 28px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #contact_box .contact_infoBox ul li:first-child {
    text-align: center;
    margin: 16px 0;
  }
}
#contact_box .contact_infoBox ul li:first-child::before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 8px;
}
#contact_box .contact_infoBox ul li:first-child a {
  color: white;
}
#contact_box .contact_infoBox ul li:last-child {
  background: #FDEA00;
  color: #333;
  padding: 16px 32px 16px 8px;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  #contact_box .contact_infoBox ul li:last-child {
    width: 80%;
    margin: 24px auto 36px;
    text-align: center;
  }
}
#contact_box .contact_infoBox ul li:last-child::before {
  font-family: "Font Awesome 5 Free";
  content: "\f1d8";
  font-weight: 900;
  margin-right: 8px;
  border-right: solid 1px #333;
  padding-right: 8px;
}
#contact_box .contact_infoBox ul li:last-child a {
  color: #333;
}
#contact_box .contact_infoBox ul li:last-child span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
#contact_box .contact_infoBox ul li:last-child span::before, #contact_box .contact_infoBox ul li:last-child span::after {
  content: '';
  display: block;
  position: absolute;
  top: 25%;
  right: 8px;
  height: 2px;
  background: #333;
}
#contact_box .contact_infoBox ul li:last-child span::before {
  width: 15px;
  transform: translate(30px, 0px);
}
#contact_box .contact_infoBox ul li:last-child span::after {
  width: 8px;
  transform-origin: right center;
  transform: translate(30px, 0px) rotate(35deg);
}
#contact_box .contact_infoBox p {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  #contact_box .contact_infoBox p {
    font-size: 16px;
    width: 98%;
    text-align: center;
  }
}

footer {
  background: #00AAEB;
  padding: 16px 0;
  color: white;
  letter-spacing: .08em;
}
footer img {
  width: 60%;
  margin: 1rem 0;
}
footer address {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .08em;
  margin: 1rem 0;
}
footer smoll {
  display: block;
  text-align: center;
  font-size: 12px;
  margin-top: 34px;
}
footer h5 {
  font-weight: bold;
  margin-top: 2rem;
}
footer ul {
  display: inline-block;
  margin: 16px 0 0;
  vertical-align: top;
}
@media screen and (max-width: 1199px) {
  footer ul:nth-of-type(2) {
    margin: 0;
  }
}
footer ul li {
  padding: 8px 0;
  font-size: 14px;
  padding-left: 8px;
}
footer ul li a {
  color: white;
}
footer ul li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  margin-right: 3px;
}

#header {
  position: absolute;
  z-index: 110;
}
#header .header-logo {
  margin: 15px;
}
@media screen and (max-width: 991px) {
  #header .header-logo {
    padding: 5px 10px 0;
  }
}
#header .header-logo img {
  width: 270px;
}
@media screen and (max-width: 1199px) {
  #header .header-logo img {
    width: 180px;
  }
}
@media screen and (max-width: 991px) {
  #header .header-logo img {
    width: 230px;
  }
}

.top-wrapper {
  background-image: url("../img/main_visual02.jpg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .top-wrapper {
    background-position: center center;
    height: 80vh;
  }
}
.top-wrapper::after {
  content: '';
  display: block;
  background-color: #000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 10;
  opacity: .2;
}
.top-wrapper .heading {
  display: block;
  color: #E6AC3E;
  font-size: calc(2rem + 1.8vw);
  font-weight: bold;
  position: relative;
  top: 50%;
  max-width: 1232px;
  margin: auto;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .top-wrapper .heading {
    font-size: calc(1rem + .8vw);
  }
}
.top-wrapper .heading h1 {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .top-wrapper .heading h1 {
    line-height: 1.5;
  }
}
.top-wrapper .heading .huge {
  color: #9C0001;
  font-size: calc(2rem + 2vw);
}
@media screen and (max-width: 767px) {
  .top-wrapper .heading .huge {
    font-size: calc(1rem + 2.5vw);
  }
}

.ttl-wrapper {
  text-align: center;
  padding: 50px 0;
  letter-spacing: 1px;
  position: relative;
  z-index: 120;
}
.ttl-wrapper .ttl {
  position: relative;
  color: #FFFFFF;
  font-size: calc(1rem + 2vw);
  padding-bottom: .3em;
  font-weight: bold;
  line-height: 1.5;
}
.ttl-wrapper .txt-arch {
  font-weight: bold;
  font-size: 18px;
}

.btn {
  text-align: center;
  margin-top: 80px;
  position: relative;
  z-index: 120;
}
.btn a {
  color: #fff;
  background-color: #9D0001;
  border-radius: 25px;
  font-size: 18px;
  padding: 12px 84px;
}
@media screen and (max-width: 991px) {
  .btn a {
    padding: 12px 34px;
  }
}

.btn-second a {
  background-color: #fff;
  color: #990302;
}

.btn-mail {
  margin-top: 35px;
}
.btn-mail a {
  border-radius: 0px;
  background-color: #990302;
  color: #fff;
  padding: 12px 42px;
}
@media screen and (max-width: 1399px) {
  .btn-mail a {
    padding: 12px 20px;
  }
}

.about {
  padding: 150px 0;
}
.about .row {
  align-items: flex-end;
}
@media screen and (max-width: 991px) {
  .about .row .col-6 {
    flex-basis: 100%;
    max-width: 100%;
    margin: 16px 0;
  }
}

.about-item .about-img {
  width: 100%;
}
.about-item .about-img-txt {
  padding-right: 20px;
  max-width: 500px;
  width: 100%;
  transform: translateX(-80px);
  margin-top: auto;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1399px) {
  .about-item .about-img-txt {
    transform: translateX(0px);
  }
}
@media screen and (max-width: 991px) {
  .about-item .about-img-txt {
    padding-right: 0px;
    margin: 0;
  }
}

.about-contents {
  background-color: #222222;
  color: #fff;
  transform: translateX(-80px);
  padding: 50px 0px 80px 30px;
}
@media screen and (max-width: 1399px) {
  .about-contents {
    transform: translateX(0px);
    padding: 35px 10px 50px 10px;
  }
}
@media screen and (max-width: 1199px) {
  .about-contents {
    transform: translateX(0px);
    background-color: #2b2b2b;
  }
}
.about-contents .about-ttl {
  font-size: calc(2rem + .1vw);
  padding-bottom: 2rem;
  letter-spacing: -1px;
  font-weight: bold;
  line-height: 1.5;
}
.about-contents .about-txt {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about-contents .about-txt br {
    display: none !important;
  }
}

._auto {
  margin-top: auto;
  transform: translateY(60px);
}

#service {
  background-image: url(../img/bg-service.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 100;
  padding: 50px 0 100px;
}
#service::after {
  content: '';
  display: block;
  background-color: #000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 10;
  opacity: .6;
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 120;
}
@media screen and (max-width: 991px) {
  .service-items {
    display: block;
  }
}
.service-items .row:last-of-type {
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .service-items .row .col-4 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .service-items .row .col-4 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.service-items .service-item {
  text-align: center;
  color: #fff;
  padding-top: 50px;
}
.service-items .service-item img {
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}
.service-items .service-item .service-name {
  font-size: 24px;
  font-weight: bold;
  padding: 15px;
}
.service-items .service-item .service-txt {
  text-align: left;
  width: 90%;
  margin: auto;
}

.studio {
  padding: 50px 0;
}

.studio-images {
  display: flex;
  max-width: 1440px;
  margin: auto;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .studio-images {
    display: block;
    width: 90%;
  }
}
.studio-images .studio {
  padding: 50px 0;
}
.studio-images .studio .studio-images {
  max-width: 1000px;
}
.studio-images .studio .col-6 {
  margin: 16px 0;
}
.studio-images .studio .col-6 h2 {
  margin: 1rem 0;
  padding-left: 8px;
}
.studio-images .studio .col-6 h2 a {
  color: white;
  font-size: 18px;
  text-decoration: underline;
}
.studio-images .studio .col-6 P {
  margin: 1rem 0;
  padding-left: 8px;
  padding-bottom: 8px;
  font-size: 14px;
}
.studio-images .studio-img {
  width: calc( 33.333% - 30px );
  margin-right: 15px;
}
@media screen and (max-width: 991px) {
  .studio-images .studio-img {
    width: 100%;
    margin-top: 10px;
    margin-right: 0;
  }
}
.studio-images .studio-img:nth-last-of-type(1) {
  margin-right: 0;
}

.bg {
  background-image: url(../img/bg.jpg);
  -webkit-background-size: cover;
  min-height: 700px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .bg {
    background-position: 80% center;
    background-size: cover;
    width: 100%;
  }
}

.lesson {
  background-color: #990302;
  padding-bottom: 80px;
  color: #fff;
}
.lesson .lesson-border::after {
  display: block;
  content: '';
  width: 60px;
  height: 1px;
  border-bottom: 2px solid #fff;
  margin: 10px auto 0;
}
.lesson table {
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .lesson table th, .lesson table td {
    display: block;
    height: auto;
  }
}
.lesson table th {
  width: 20%;
  vertical-align: text-top;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .lesson table th {
    font-size: 120%;
    border-bottom: 1px solid white;
    width: 30%;
    line-height: 2;
    margin-bottom: 8px;
  }
}
.lesson table td {
  width: 80%;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .lesson table td {
    width: 100%;
  }
}

#point {
  padding: 100px 0 150px;
}
#point .row .col-3 {
  padding: 0;
}
@media screen and (max-width: 991px) {
  #point .row .col-3 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  #point .row .col-3 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.bg-reason {
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: auto;
  width: 560px;
}
@media screen and (max-width: 991px) {
  .bg-reason {
    width: 100%;
  }
}

.point-items {
  margin-top: 40px;
}
.point-items .col-3 {
  padding: 0 4px;
}
.point-items .point-item {
  position: relative;
}
.point-items .point-contents {
  margin: auto;
  color: #fff;
  z-index: 20;
  padding: 0 8px;
}
@media screen and (max-width: 991px) {
  .point-items .point-contents {
    text-align: left;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
  }
}
.point-items .point-contents a {
  color: white;
  background: #990302;
  display: block;
  margin: 1rem auto;
  text-align: center;
  width: 120px;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: 500;
}
.point-items .point-contents a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";
  margin-right: 8px;
}
.point-items .point-num {
  color: #E6AB3E;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}
.point-items .point-num::after {
  display: block;
  content: '';
  width: 80px;
  height: 1px;
  border-bottom: 2px solid #fff;
}
.point-items .point-num span {
  display: inline-block;
  font-size: 28px;
}
.point-items .point-ttl {
  font-size: 22px;
  padding-top: 25px;
  font-weight: bold;
}
.point-items .point-txt {
  font-size: 15px;
  padding: 25px 0px 0;
  text-align: justify;
  height: 130px;
}
@media screen and (max-width: 767px) {
  .point-items .point-txt {
    height: auto;
  }
}

.access {
  padding-top: 80px;
}

.access-items {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1199px) {
  .access-items {
    display: block;
  }
}
.access-items iframe {
  width: 95%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}
.access-items .btn {
  display: block;
  margin: 3rem auto;
  max-width: 250px;
  background: #990302;
  padding: 16px 0;
  border-radius: 30px;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .05em;
}

.access-contents {
  color: #fff;
  margin: 80px 0;
}
@media screen and (max-width: 991px) {
  .access-contents {
    width: 80% !important;
    margin: 0 auto;
  }
}
.access-contents .row {
  align-items: center;
}
.access-contents .row .col-3 {
  padding: 0;
}
@media screen and (max-width: 991px) {
  .access-contents .row .col-3 {
    flex-basis: 50%;
    max-width: 50%;
    margin: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .access-contents .row .col-3 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.access-contents .item {
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .access-contents {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .access-contents a, .access-contents img, .access-contents p {
    display: block;
    margin: 24px 0;
  }
}
.access-contents a {
  color: white;
}
.access-contents a span {
  display: block;
  font-size: 24px;
  margin: 8px 0;
}
.access-contents a span::before {
  content: "tel.";
}
.access-contents img {
  padding: 0 8px;
}
@media screen and (max-width: 767px) {
  .access-contents img {
    width: 200px;
    margin: 24px auto;
  }
}
.access-contents p {
  font-size: 16px;
  margin: 0 0px 0 24px;
}
.access-contents p span {
  display: block;
}
@media screen and (max-width: 767px) {
  .access-contents p {
    text-align: left;
    margin: 24px auto;
    width: 90%;
  }
}
.access-contents .tel {
  font-size: 14px;
  margin: 0 24px;
  font-weight: 700;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.access-contents .contact_btn {
  background: #990302;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
}
.access-contents .contact_btn::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f073";
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .access-contents .contact_btn {
    width: 60%;
    margin: 24px auto;
  }
}
.access-contents .access-ttl {
  font-weight: bold;
  font-size: 32px;
}
.access-contents .address {
  font-size: 18px;
  padding-top: 35px;
}

.access-images {
  padding-top: 60%;
  order: 1;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .access-images {
    margin: 50px auto 0;
    width: 100%;
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 991px) {
  .access-images {
    display: block;
  }
}

.contact table {
  table-layout: fixed;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact table {
    width: 100%;
  }
}
.contact table tr {
  border-bottom: 1px dotted #ccc;
}
.contact table th, .contact table td {
  margin: 8px 0;
  padding: 12px 0;
  height: 50px;
}
@media screen and (max-width: 991px) {
  .contact table th, .contact table td {
    display: block;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .contact table th, .contact table td {
    display: block;
    height: auto;
  }
}
.contact table th {
  width: 25%;
}
@media screen and (max-width: 991px) {
  .contact table th {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact table th {
    width: 100%;
  }
}
.contact table th span {
  background: #990302;
  color: white;
  font-size: 12px;
  margin-left: 16px;
  padding: 4px 16px;
  font-weight: 700;
  border-radius: 3px;
}
.contact table td {
  width: 70%;
}
@media screen and (max-width: 991px) {
  .contact table td {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .contact table td {
    width: 95%;
  }
}
.contact table td input, .contact table td select, .contact table td textarea {
  width: 100%;
  background: white !important;
  padding: 12px 0px 12px 16px;
  border-radius: 4px;
}
.contact table td .name {
  width: 30%;
  display: inline-block;
}
.contact table td input[type="radio" i] {
  background-color: initial;
  cursor: default;
  appearance: radio;
  box-sizing: border-box;
  margin: 3px 3px 0px 5px;
  padding: initial;
  border: initial;
}
.contact table td ul {
  list-style-type: none;
}
.contact table td ul li {
  display: inline-block;
  margin-right: 8px;
}
.contact table td ul li label {
  width: 100px;
}
.contact table td ul li input[type="radio"] {
  margin-right: 10px;
  margin-top: 10px;
  width: 10px;
}
.contact input[type="button" i] {
  color: white;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact input[type="button" i] {
    font-size: 16px;
  }
}
.contact .form_submit {
  display: block;
  margin: 60px auto;
  width: 50%;
  padding: 16px 0;
  text-align: center;
  background: #990302;
  border-radius: 4px;
  color: white;
  font-weight: 700;
  border: none;
}
@media screen and (max-width: 767px) {
  .contact .form_submit {
    width: 80%;
  }
}

footer {
  border-top: 1px solid #222;
  background: #2b2b2b;
  text-align: center;
  padding-top: 32px;
}
footer img {
  width: 250px;
  margin: 1rem auto 32px;
  display: block;
}

#common header {
  position: relative;
}
#common main {
  margin: 80px 0;
}
#common h3 {
  font-size: 32px;
  padding: 16px 0;
  letter-spacing: .08em;
  font-weight: 600;
  text-align: center;
}
#common h3 span {
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: normal;
  display: block;
  margin: 8px 0;
}
#common h3 span::after {
  display: block;
  content: "";
  border-bottom: 2px solid white;
  width: 50px;
  margin: 8px auto;
}
#common .teacher .row {
  align-items: center;
  border-bottom: 1px dotted #888;
  padding: 80px 0;
}
#common .teacher .row img {
  border-radius: 50%;
  margin: 0 auto;
}
#common .teacher .row h5 {
  font-size: 24px;
  letter-spacing: .08em;
  margin: 1rem 0 1.5rem;
  font-weight: 500;
}
#common .teacher .row h5 span {
  display: block;
  margin: 1rem 0;
  font-size: 60%;
  font-weight: normal;
  color: #ccc;
}

@-webkit-keyframes animation_bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes animation_bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes animation_text {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation_text {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* css */
.animation.animation_Box {
  display: inline-block;
  text-align: center;
}

.animation.animation_bar {
  position: relative;
  display: inline-block;
  /*　後ほど解説　*/
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.animation .animation_bar:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  /* 任意の値 */
  background: #2B2B2B;
}

.animation .animation_text {
  opacity: 0;
  /* 後ほど解説 */
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* 任意の値 */
}

.animation.move .animation_bar:before {
  -webkit-animation: animation_bar 1s ease 0s 1 normal forwards;
  animation: animation_bar 1s ease 0s 1 normal forwards;
}

.animation.move .animation_text {
  -webkit-animation: animation_text 0s ease .5s 1 normal forwards;
  animation: animation_text 0s ease .5s 1 normal forwards;
}

.animation_Box {
  position: relative;
}

/********************
loading effects
********************/
.loadingAnim {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .3s;
  background-color: #2B2B2B;
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  -ms-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  -ms-transform: translateY(1%);
  transform: translateY(1%);
}

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 300px;
  height: 1.25em;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .6s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto  auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #fff;
  will-change: transform, width;
}

.loadingAnim_line:before {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  display: block;
  content: 'LOADING';
  -webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
  animation: loadingAnim_text 1s ease .1s infinite alternate both;
  letter-spacing: .5em;
  color: #fff;
  will-change: opacity;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
}

.loaded .loadingAnim_line:before {
  content: 'LOADED!';
}

/********************
animation setting
********************/
@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #2B2B2B;
  }
  50% {
    color: #333;
  }
  100% {
    opacity: .5;
    color: #fff;
  }
}
@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #2B2B2B;
  }
  50% {
    color: #333;
  }
  100% {
    opacity: .5;
    color: #fff;
  }
}
