@charset "UTF-8";

/* @font-face {
  font-family: 'SourceNotoSansJPBold';
  src: url(/src/vendors/fonts/NotoSansJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPLight';
  src: url(/src/vendors/fonts/NotoSansJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPRegular';
  src: url(/src/vendors/fonts/NotoSansJP-Regular.otf) format('opentype');
} */

/* @font-face {
  font-family: 'SourceNotoSerifJPBold';
  src: url(/src/vendors/fonts/NotoSerifJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPLight';
  src: url(/src/vendors/fonts/NotoSerifJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPRegular';
  src: url(/src/vendors/fonts/NotoSerifJP-Regular.otf) format('opentype');
} */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in.is-animated {
  -webkit-animation: 0.4s ease 0.4s forwards fade_in;
  animation: 0.4s ease 0.4s forwards fade_in;
}

@-webkit-keyframes fade_in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade_in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 2;
  }
}

@keyframes fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 2;
  }
}

/*!
 * Bootstrap v4.4.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)
 */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

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

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

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

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

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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.33333%;
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */

/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */

/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;

  /* 1 */
  -webkit-text-size-adjust: 100%;

  /* 2 */
  -webkit-tap-highlight-color: transparent;

  /* 3 */
}

/* Sections */

/* ============================================ */

/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */

/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */

/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */

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

/* Lists (definition) */

/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */

/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;

  /* 1 */
  height: 0;

  /* 1 */
  overflow: visible;

  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;

  /* 1 */
  font-size: inherit;

  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */

/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;

  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;

  /* 1 */
  font-size: inherit;

  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */

/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */

/* ============================================ */

/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type='checkbox'] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type='radio'] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type='button'][disabled],
[type='reset'][disabled],
[type='submit'][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;

  /* 2 */
  display: table;

  /* 1 */
  max-width: 100%;

  /* 1 */
  padding: 0;

  /* 3 */
  white-space: normal;

  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type='search'] {
  outline-offset: -2px;

  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;

  /* 1 */
  font: inherit;

  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */

/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */

/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */

/* ============================================ */

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.container--relative {
  position: relative;
}

.l-general-header {
  background: rgba(0, 34, 90, 0.9);
}

@media (max-width: 768px) {
  .l-general-header .c-conversion-navigation {
    display: none;
  }
}

.l-general-header.is-fixed {
  position: fixed;
  z-index: 5;
  top: 0;
  width: 100%;
  transition: all ease 0.5s;
}

.c-global-navigation {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 280px;
  transition: all ease 0.5s;
}

@media (max-width: 768px) {
  .c-global-navigation {
    height: 140px;
  }
}

.c-global-navigation__item a {
  position: relative;
  color: white;
}

@media (max-width: 768px) {
  .c-global-navigation__item--primary {
    display: none;
  }
  .c-global-navigation__item--secondary {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-global-navigation__item--secondary a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: auto;
  }
  .c-global-navigation__item--secondary img {
    width: 70px;
  }
}

.c-global-navigation__item--primary a {
  position: relative;
  top: 20px;
}

.c-global-navigation__item--primary a::before {
  content: '';
  display: inline-block;
  height: 1px;
  width: 120%;
  position: absolute;
  bottom: -8px;
  left: -10%;
  background: white;
}

@media (min-width: 769px) {
  .c-conversion-navigation {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
  }
}

@media (max-width: 768px) {
  .c-conversion-navigation {
    padding-top: 40px;
  }
}

@media (min-width: 769px) {
  .c-conversion-navigation__item:first-child {
    margin-right: 8px;
  }
}

.c-conversion-navigation__item a {
  display: block;
  background: white;
  transition: ease all 0.5s;
}

@media (max-width: 768px) {
  .c-conversion-navigation__item a {
    width: calc(100% - 64px);
    height: 88px;
    padding-top: 8px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 769px) {
  .c-conversion-navigation__item a {
    width: 140px;
    height: 88px;
  }
}

.c-conversion-navigation__text01 {
  display: block;
  padding-top: 24px;
  margin-bottom: 8px;
  text-align: center;
  color: #00225a;
  font-size: 14px;
  font-weight: bold;
  transition: ease all 0.5s;
}

@media (max-width: 769px) {
  .c-conversion-navigation__text01 {
    padding-top: 18px;
    margin-bottom: 10px;
    font-size: 17px;
  }
}

.c-conversion-navigation__text02 {
  display: block;
  text-align: center;
  color: #595757;
  font-size: 10px;
  transition: ease all 0.5s;
}

.p-about-section__header {
  padding-top: 88px;
  background: url(/src/images/about-header-background.png) no-repeat right 0 top 30px/auto;
}

@media (max-width: 769px) {
  .p-about-section__header {
    padding-top: 38px;
    background-size: 140px;
  }
}

.c-feature-list {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.c-feature-list__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 270px;
  height: 270px;
  color: white;
  line-height: 1.6;
  background: #00225a;
  border-radius: 50%;
  font-size: 24px;
}

@media (max-width: 769px) {
  .c-feature-list__item {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    margin: 0 0.2rem;
    font-size: 85%;
  }
}

@media (max-width: 428px) {
  .c-feature-list__item {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    font-size: 82%;
    line-height: 1.2;
  }
}

.c-feature-list__item::before {
  content: '';
  display: block;
  margin-bottom: 16px;
  width: 100%;
  height: 80px;
  background-size: auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

@media (max-width: 769px) {
  .c-feature-list__item::before {
    height: 55px;
    margin-top: -10px;
    background-position: 50% top;
    background-size: auto 47px;
    margin-bottom: 0;
  }
}

.c-feature-list__item--primary::before {
  background-image: url(/src/images/feature-list-item01.svg);
}

.c-feature-list__item--secondary::before {
  background-image: url(/src/images/feature-list-item02.svg);
}

.c-feature-list__item--tertiary::before {
  background-image: url(/src/images/feature-list-item03.svg);
}

.p-about-sub-section {
  padding-top: 40px;
}

.p-about-sub-section__lead {
  margin-bottom: 36px;
  font-size: 22px;
  text-align: center;
  color: #00225a;
  line-height: 1.45;
  letter-spacing: 0.06rem;
}

@media (max-width: 769px) {
  .p-about-sub-section__lead {
    font-size: 19px;
  }
}

.p-about-sub-section__text {
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
}

@media (max-width: 769px) {
  .p-about-sub-section__text {
    font-size: 16px;
    text-align: left;
  }
}

.p-about-sub-section__text-box {
  background: url(/src/images/about-header-background02.png) no-repeat top 150% left 0/auto;
}

@media (max-width: 991.98px) {
  .p-about-sub-section__text-box {
    background: initial;
  }
}

.p-about-sub-section__text-box02 {
  padding-bottom: 100px;
  background: url(/src/images/about-header-background02.png) no-repeat top 100% left 0/auto;
}

@media (max-width: 769px) {
  .p-about-sub-section__text-box02 {
    background: none;
  }
}

.p-about-sub-section__text-box03 {
  padding-bottom: 160px;
  background: url(/src/images/about-header-background03.png) no-repeat top 100% right 0/auto;
}

@media (max-width: 769px) {
  .p-about-sub-section__text-box03 {
    padding-bottom: 70px;
    background: none;
  }
}

.p-about-sub-section--tertiary {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #e5e9ee;
}

@media (max-width: 769px) {
  .p-about-sub-section--tertiary {
    padding-top: 46px;
    padding-bottom: 60px;
  }
}

.p-about-sub-section--quaternary {
  padding-top: 96px;
  padding-bottom: 96px;
  background: url(/src/images/oysters-gradation-blue.png) no-repeat 50% 50%/cover;
}

@media (max-width: 769px) {
  .p-about-sub-section--quaternary {
    padding-top: 63px;
  }
}

.p-about-sub-section--quinary {
  background: #19386a;
  padding-top: 64px;
  padding-bottom: 88px;
}

.p-about-sub-section--senary {
  background: #00225a;
  padding-top: 88px;
  padding-bottom: 88px;
}

.page-title {
  font-size: 36px;
  color: #00225a;
  text-align: center;
  padding-top: 180px;
  background: url(/src/images/logo-hobai-oyster-blue.svg) no-repeat top 0 left 50%/auto;
  background-size: 125px;
}

@media (max-width: 769px) {
  .page-title {
    font-size: 24px;
  }
}

.c-sub-title--line {
  display: flex;
  align-items: center;
}

.c-sub-title--line::before {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: #fff;
  display: block;
  margin-right: 0.4em;
}

.c-sub-title--line::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: #fff;
  display: block;
  margin-left: 0.4em;
}

@media (max-width: 769px) {
  .container .c-sub-section-heading {
    margin-right: -15px;
    margin-left: -15px;
  }
  .container .c-sub-section-heading .c-sub-section-heading__textimage {
    width: 100%;
  }
}

.c-sub-section-heading {
  margin-bottom: 48px;
}

.c-sub-section-heading__number {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  font-size: 36px;
  text-align: center;
  color: #00225a;
  background: url(/src/images/sub-section-heading-background.svg) no-repeat 50% 50%/auto;
}

@media (max-width: 769px) {
  .c-sub-section-heading__number {
    font-size: 22px;
    background-size: 120%;
  }
}

.c-sub-section-heading__text {
  width: 100%;
}

.c-sub-section-heading__textimage {
  height: 35px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 769px) {
  .c-sub-section-heading__textimage {
    max-height: 27px;
    max-width: 95%;
  }
}

.c-visual-image--primary {
  margin-top: 80px;
  margin-bottom: 340px;
  width: 100%;
  background: url(/src/images/visual-image01.png) no-repeat 50% 50%/cover;
}

@media (max-width: 769px) {
  .c-visual-image--primary {
    height: 225px;
  }
}

.c-visual-image--primary .container {
  height: 564px;
  position: relative;
}

@media (max-width: 769px) {
  .c-visual-image__inner {
    background: url(/src/images/about-header-background02.png) no-repeat bottom 40px left 0;
    background-size: 200px;
  }
}

.c-visual-image--primary img {
  position: absolute;
  bottom: -248px;
}

.c-visual-image--primary img:nth-of-type(1) {
  left: 0;
}

.c-visual-image--primary img:nth-of-type(2) {
  right: 0;
}

.c-visual-image__row {
  display: flex;
}

.c-visual-image__row--primary {
  position: relative;
  left: 100px;
  justify-content: center;
  margin-bottom: 8px;
}

.c-visual-image__row--secondary {
  position: relative;
  left: -100px;
  justify-content: center;
}

.c-visual-image__sub-images--secondary {
  position: relative;
  margin-bottom: 210px;
}

.c-sub-section-heading-type02 {
  padding-top: 140px;
  font-size: 36px;
  color: white;
  text-align: center;
  background-image: url(/src/images/heading-background2.svg);
  background-repeat: no-repeat;
  background-position: top 0 left 50%;
  background-size: 73px;
}

.c-sub-section-heading-type02--valiation2 {
  background-image: url(/src/images/heading-background2.svg);
}

@media (max-width: 769px) {
  .c-sub-section-heading-type02 {
    font-size: 24px;
    padding-top: 100px;
    margin-left: -15px;
    margin-right: -15px;
    background-size: 59px auto;
  }
}

.c-two-column-box {
  display: flex;
  justify-content: space-around;
}

@media (max-width: 769px) {
  .c-two-column-box {
    display: inline-block;
  }
}

.c-two-column-box__column {
  padding-top: 36px;
  flex-basis: 38%;
}

.c-two-column-box__heading {
  text-align: center;
  color: white;
  font-size: 32px;
  margin-bottom: 24px;
}

@media (max-width: 769px) {
  .c-two-column-box__heading {
    font-size: 24px;
  }
}

.c-two-column-box__image {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 324px;
  height: 324px;
  margin-bottom: 36px;
  background: white;
  border-radius: 50%;
}

@media (max-width: 769px) {
  .c-two-column-box__image {
    max-width: 220px;
    height: 220px;
  }
}

.c-two-column-box__image--harmony {
  width: 83px;
}

@media (max-width: 769px) {
  .c-two-column-box__image--harmony {
    width: 58px;
  }
}

.c-two-column-box__column-lead {
  font-size: 21px;
  color: white;
  margin-bottom: 16px;
  font-weight: bold;
}

@media (max-width: 769px) {
  .c-two-column-box__column-lead {
    font-size: 17px;
    text-align: center;
    margin-bottom: 10px;
  }
}

.c-two-column-box__text {
  font-size: 16px;
  color: white;
  line-height: 1.4;
  font-weight: normal;
}

@media (max-width: 769px) {
  .c-two-column-box__text {
    font-size: 14px;
  }
}

.c-two-column-box__text--md-center {
  font-size: 16px;
  color: white;
  line-height: 1.4;
  font-weight: normal;
}

@media (max-width: 769px) {
  .c-two-column-box__text--md-center {
    font-size: 14px;
    text-align: center;
  }
}

.c-two-column-box__text--md-center strong {
  display: block;
}

@media (min-width: 768px) {
  .c-two-column-box__text--md-center strong {
    font-weight: normal;
  }
}

.c-two-column-box__text--md-center--2 {
  margin-top: 8px;
}

@media (max-width: 769px) {
  .c-two-column-box__text--md-center--2 {
    margin-top: 35px;
  }
}

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

.p-contact-lead {
  display: block;
  font-size: 18px;
  color: white;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: bold;
}

@media (max-width: 769px) {
  .p-contact-lead {
    font-size: 16px;
  }
}

.c-contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  color: #00225a;
  max-width: 664px;
  font-size: 28px;
  width: 100%;
  height: 62px;
  margin: auto;
}

@media (max-width: 769px) {
  .c-contact-button {
    font-size: 21px;
  }
}

.c-contact-button__note {
  text-align: center;
  color: white;
  font-size: 16px;
  margin-top: 8px;
}

.c-contact-button-wrap--primary {
  margin-bottom: 40px;
}

.c-basic-table-wrap--primary {
  max-width: 640px;
  width: 100%;
  margin: 56px auto 0;
}

.c-basic-table-wrap {
  max-width: 640px;
  width: 100%;
  margin: 20px auto 0;
}

.c-table-heading {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding-left: 12px;
  margin-bottom: 24px;
  font-size: 18px;
  background: #8090ac;
  color: #00225a;
}

@media (max-width: 769px) {
  .c-table-heading {
    text-align: center;
  }
}

.c-basic-table {
  width: 100%;
}

.c-basic-table tr {
  border-bottom: 1px solid #334e7b;
}

.c-basic-table th {
  color: white;
  font-size: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: 'Noto Serif', serif;
  font-weight: bold;
}

.c-basic-table td {
  color: white;
  font-size: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (max-width: 769px) {
  .c-basic-table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .c-basic-table th,
  .c-basic-table td {
    display: block;
  }
  .c-basic-table th {
    padding-bottom: 2px;
    width: 100%;
  }
  .c-basic-table tr td:nth-of-type(1) {
    width: 60%;
  }
  .c-basic-table tr td:nth-of-type(2) {
    width: 40%;
    text-align: right;
  }
}

@media (max-width: 768px) {
  .c-banners {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 769px) {
  .c-banners {
    display: flex;
    justify-content: space-between;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.c-banners__item {
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .c-banners__item:nth-of-type(1) {
    margin-bottom: 32px;
  }
  .c-banners__item img {
    width: 100%;
  }
}

.c-banners__label {
  color: #00225a;
  text-align: center;
  font-size: 16px;
  margin-bottom: 8px;
}

.l-general-footer__area01 {
  background: white;
}

.l-general-footer__area02 {
  background: #d9dee6;
}

@media (max-width: 768px) {
  .l-general-footer__area02 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (min-width: 769px) {
  .l-general-footer__area02 {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.l-general-footer__logo {
  text-align: center;
}

@media (max-width: 768px) {
  .l-general-footer__logo {
    margin-bottom: 24px;
  }
  .l-general-footer__logo img {
    width: 100px;
  }
}

@media (min-width: 769px) {
  .l-general-footer__logo {
    margin-bottom: 56px;
  }
}

.l-general-footer__image {
  width: 145px;
}

.l-general-footer__company-name {
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
  color: #00225a;
}

@media (max-width: 768px) {
  .l-general-footer__company-name {
    margin-top: 24px;
    font-size: 20px;
  }
}

@media (min-width: 769px) {
  .l-general-footer__company-name {
    margin-top: 80px;
    font-size: 32px;
  }
}

.l-general-footer__address {
  text-align: center;
  color: #00225a;
}

@media (max-width: 768px) {
  .l-general-footer__address {
    font-size: 10px;
  }
}

@media (min-width: 769px) {
  .l-general-footer__address {
    font-size: 14px;
  }
}

.c-footer-navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.c-footer-navigation__item {
  color: #00225a;
}

@media (max-width: 768px) {
  .c-footer-navigation__item {
    margin-left: 16px;
    margin-right: 16px;
  }
  .c-footer-navigation__item:nth-of-type(3) {
    margin-left: 100px;
    margin-top: 16px;
  }
  .c-footer-navigation__item:nth-of-type(4) {
    margin-top: 16px;
  }
}

@media (min-width: 769px) {
  .c-footer-navigation__item {
    margin-left: 16px;
    margin-right: 16px;
  }
}

.c-copyright {
  background: #00225a;
  color: white;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .c-copyright {
    height: 25px;
    line-height: 25px;
  }
  .c-copyright p {
    font-size: 10px;
  }
}

@media (min-width: 769px) {
  .c-copyright {
    height: 40px;
    line-height: 40px;
  }
}

.c-pagetop {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 66px;
  right: 66px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50% 50%;
  text-align: center;
}

.c-pagetop__image {
  width: 28px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .c-pagetop {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .c-makers-information {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (min-width: 769px) {
  .c-makers-information {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.c-makers-information__block {
  display: flex;
}

@media (max-width: 769px) {
  .c-makers-information__block {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.c-makers-information__heading {
  color: #00225a;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.06rem;
}

@media (max-width: 768px) {
  .c-makers-information__heading {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

@media (min-width: 769px) {
  .c-makers-information__heading {
    font-size: 26px;
    margin-bottom: 32px;
  }
}

@media (min-width: 769px) {
  .c-makers-information__block {
    display: flex;
    justify-content: space-around;
  }
}
@media (max-width: 768px) {
  .c-makers-information__block img {
    display: block;
    margin: 0 auto 16px;
    width: 140px;
  }
}

@media (min-width: 769px) {
  .c-makers-information__block img {
    width: 402.5px;
  }
}

.c-makers-information__block2 .container {
  position: relative;
}

@media (min-width: 768px) {
  .c-makers-information__block2 .container {
    display: flex;
  }
}

.c-makers-information__block2 img {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .c-makers-information__block2 img {
    width: 100%;
    margin-top: 16px;
  }
}

@media (min-width: 768px) {
  .c-makers-information__block2 img {
    position: absolute;
    bottom: -160px;
    right: -120px;
    width: 40%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block3 {
    margin-top: 16px;
  }
}

@media (min-width: 769px) {
  .c-makers-information__block3 {
    margin-top: 240px;
    background: #e7eaee;
  }
}

.c-makers-information__block3 .container {
  position: relative;
}

@media (max-width: 768px) {
  .c-makers-information__block3 .container {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .c-makers-information__block3 .container {
    display: flex;
    justify-content: flex-end;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.c-makers-information__block3 img {
  width: 40%;
}

@media (max-width: 768px) {
  .c-makers-information__block3 img {
    margin-top: 16px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .c-makers-information__block3 img {
    position: absolute;
    top: -80px;
    left: -110px;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .c-makers-information__block4 {
    margin-top: 40px;
    margin-bottom: 120px;
  }
}

.c-makers-information__block4 .container {
  position: relative;
}

@media (min-width: 768px) {
  .c-makers-information__block4 .container {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: flex-end;
  }
}

.c-makers-information__block4 img {
  width: 40%;
}

@media (min-width: 768px) {
  .c-makers-information__block4 img {
    position: absolute;
    top: -80px;
    left: -110px;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block4 img {
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block5 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .c-makers-information__block5 {
    margin-top: 32px;
    margin-bottom: 120px;
  }
}

.c-makers-information__block5 .container {
  position: relative;
}

@media (max-width: 768px) {
  .c-makers-information__block5 .container {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .c-makers-information__block5 .container {
    display: flex;
    justify-content: flex-start;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.c-makers-information__block5 img {
  width: 40%;
}

@media (min-width: 768px) {
  .c-makers-information__block5 img {
    position: absolute;
    top: 32px;
    right: -110px;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block5 img {
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block6 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

@media (min-width: 769px) {
  .c-makers-information__block6 {
    margin-top: 32px;
    margin-bottom: 40px;
  }
}

.c-makers-information__block6 .container {
  position: relative;
}

@media (min-width: 768px) {
  .c-makers-information__block6 .container {
    display: flex;
    justify-content: flex-start;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.c-makers-information__block6 img {
  width: 40%;
}

@media (min-width: 768px) {
  .c-makers-information__block6 img {
    position: absolute;
    top: 32px;
    right: -110px;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block6 img {
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block7 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

@media (min-width: 769px) {
  .c-makers-information__block7 {
    margin-top: 64px;
    margin-bottom: 120px;
    background: #e7eaee;
  }
}

.c-makers-information__block7 .container {
  position: relative;
}

@media (min-width: 768px) {
  .c-makers-information__block7 .container {
    display: flex;
    justify-content: flex-end;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.c-makers-information__block7 img {
  width: 40%;
}

@media (min-width: 768px) {
  .c-makers-information__block7 img {
    position: absolute;
    top: 48px;
    left: -110px;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block7 img {
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block8 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

@media (min-width: 769px) {
  .c-makers-information__block8 {
    margin-top: 64px;
    margin-bottom: 120px;
    background: #e7eaee;
  }
}

.c-makers-information__block8 .container {
  position: relative;
}

@media (max-width: 768px) {
  .c-makers-information__block8 .container {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .c-makers-information__block8 .container {
    display: flex;
    justify-content: flex-end;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.c-makers-information__block8 img {
  width: 40%;
}

@media (min-width: 768px) {
  .c-makers-information__block8 img {
    position: absolute;
    top: 120px;
    left: -110px;
  }
}

@media (max-width: 768px) {
  .c-makers-information__block8 img {
    width: 100%;
    margin-top: 16px;
  }
}

@media (min-width: 769px) {
  .c-makers-information__text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-basis: 40%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__text img {
    margin-top: 16px;
  }
}

.c-makers-information__text p {
  line-height: 1.6;
  text-align: justify;
}

@media (min-width: 769px) {
  .c-makers-information__text2 {
    display: flex;
    justify-content: flex-start;
    flex-basis: 49%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__text2 img {
    margin-top: 16px;
  }
}

.c-makers-information__text2 p {
  line-height: 2;
  text-align: justify;
}

@media (min-width: 769px) {
  .c-makers-information__text3 {
    display: flex;
    justify-content: flex-start;
    flex-basis: 49%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__text3 img {
    margin-top: 16px;
  }
}

.c-makers-information__text3 p {
  line-height: 2;
  align-items: justify;
}

@media (min-width: 769px) {
  .c-makers-information__text4 {
    display: flex;
    justify-content: flex-start;
    flex-basis: 49%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__text4 img {
    margin-top: 16px;
  }
}

.c-makers-information__text4 p {
  line-height: 2;
  align-items: justify;
}

@media (min-width: 769px) {
  .c-makers-information__text5 {
    display: flex;
    justify-content: flex-start;
    flex-basis: 49%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__text5 img {
    margin-top: 16px;
  }
}

.c-makers-information__text5 p {
  line-height: 2;
  align-items: justify;
}

@media (min-width: 769px) {
  .c-makers-information__text6 {
    display: flex;
    justify-content: flex-start;
    flex-basis: 49%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__text6 img {
    margin-top: 16px;
  }
}

.c-makers-information__text6 p {
  line-height: 2;
  align-items: justify;
}

@media (min-width: 769px) {
  .c-makers-information__text7 {
    display: flex;
    justify-content: flex-start;
    flex-basis: 49%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__text7 img {
    margin-top: 16px;
  }
}

.c-makers-information__text7 p {
  line-height: 2;
  align-items: justify;
}

@media (min-width: 769px) {
  .c-makers-information__text8 {
    display: flex;
    justify-content: flex-start;
    flex-basis: 49%;
  }
}

@media (max-width: 768px) {
  .c-makers-information__text8 img {
    margin-top: 16px;
  }
}

.c-makers-information__text8 p {
  line-height: 2;
  align-items: justify;
}

.c-makers {
  display: flex;
}

@media (min-width: 769px) {
  .c-makers--has-margin-top {
    margin-top: 120px;
  }
}

.c-makers__image {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .c-makers__image {
    width: 130px;
    height: 130px;
  }
}

@media (min-width: 769px) {
  .c-makers__image {
    width: 55%;
    height: 356px;
  }
}

.c-makers__image--1 {
  -o-object-position: 60% 50%;
  object-position: 60% 50%;
}

.c-makers__image--2 {
  -o-object-position: 75% 50%;
  object-position: 75% 50%;
}

.c-makers__image--3 {
  -o-object-position: 75% 50%;
  object-position: 75% 50%;
}

.c-makers__image--4 {
  -o-object-position: 75% 50%;
  object-position: 75% 50%;
}

.c-makers__text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #00225a;
  color: white;
}

@media (max-width: 768px) {
  .c-makers__text-block {
    width: calc(100% - 130px);
    padding-left: 16px;
  }
}

@media (min-width: 769px) {
  .c-makers__text-block {
    width: 45%;
    padding-left: 24px;
  }
}

.c-makers__position {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .c-makers__position {
    font-size: 15px;
    margin-bottom: 8px;
  }
}

@media (min-width: 769px) {
  .c-makers__position {
    font-size: 24px;
  }
}

.c-makers__name {
  display: block;
  letter-spacing: 0.19rem;
}

@media (max-width: 768px) {
  .c-makers__name {
    font-size: 15px;
  }
}

@media (min-width: 769px) {
  .c-makers__name {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .c-makers__name span {
    font-size: 20px;
  }
}

@media (min-width: 769px) {
  .c-makers__name span {
    font-size: 34px;
  }
}

.c-content-footer-cover {
  width: 100%;
  background: url(/src/images/content-footer-cover.png) no-repeat 50% 80%/cover;
}

@media (max-width: 768px) {
  .c-content-footer-cover {
    margin-top: 16px;
    height: 280px;
  }
}

@media (min-width: 769px) {
  .c-content-footer-cover {
    margin-top: 64px;
    height: 435px;
  }
}

.p-maker-online-store {
  background: url(/src/images/oysters-gradation-blue.png) no-repeat 50% 50%/cover;
}

@media (max-width: 768px) {
  .p-maker-online-store {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .p-maker-online-store .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 769px) {
  .p-maker-online-store {
    padding-top: 96px;
    padding-bottom: 80px;
  }
}

.p-maker-online-store__button {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  background: white;
  color: #00225a;
}

@media (max-width: 768px) {
  .p-maker-online-store__button {
    width: calc(100% - 32px);
    height: 60px;
    font-size: 16px;
  }
}

@media (min-width: 769px) {
  .p-maker-online-store__button {
    width: 100%;
    height: 120px;
    font-size: 28px;
  }
}

.p-maker-online-store__note {
  color: white;
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .p-maker-online-store__note {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (min-width: 769px) {
  .p-maker-online-store__note {
    font-size: 16px;
    margin-bottom: 88px;
  }
}

/*!
 * Bootstrap v4.4.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)
 */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

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

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

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

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

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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.33333%;
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .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.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .custom-class {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .custom-class {
    display: block;
  }
}

.l-about-images {
  overflow: hidden;
}

.l-body {
  position: relative;
  overflow-x: hidden;
}

.l-general-header {
  z-index: 5;
}

.l-general-header.is-scrolled .c-global-navigation {
  height: 140px;
  transition: ease all 0.5s;
}

.l-general-header.is-scrolled .c-conversion-navigation__text02 {
  display: none;
}

.l-general-header.is-scrolled .c-conversion-navigation__item a {
  height: 44px;
  transition: ease all 0.5s;
}

.l-general-header.is-scrolled .c-conversion-navigation__text01 {
  padding-top: 12px;
  transition: ease all 0.5s;
}

@media (max-width: 767.98px) {
  .l-general-header.is-scrolled .c-global-navigation {
    height: 70px;
  }
}

.l-hamburger-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  display: none;
}

@media (max-width: 767.98px) {
  .l-hamburger-menu {
    display: block;
  }
}

.l-key-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 920px;
}

@media (max-width: 991.98px) {
  .l-key-visual .vegas_container {
    width: 100%;
  }
}

.l-main.header-fixed {
  position: relative;
  margin-top: 0;
  transition: ease all 0.5s;
}

@media (max-width: 767.98px) {
  .l-main.header-fixed {
    margin-top: 0;
  }
}

.l-pagetop {
  position: fixed;
  bottom: 66px;
  right: 66px;
}

@media (max-width: 991.98px) {
  .l-pagetop {
    bottom: 33px;
    right: 33px;
  }
}

/* @font-face {
  font-family: 'SourceNotoSansJPBold';
  src: url(/src/vendors/fonts/NotoSansJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPLight';
  src: url(/src/vendors/fonts/NotoSansJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPRegular';
  src: url(/src/vendors/fonts/NotoSansJP-Regular.otf) format('opentype');
} */

/* @font-face {
  font-family: 'SourceNotoSerifJPBold';
  src: url(/src/vendors/fonts/NotoSerifJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPLight';
  src: url(/src/vendors/fonts/NotoSerifJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPRegular';
  src: url(/src/vendors/fonts/NotoSerifJP-Regular.otf) format('opentype');
} */
.l-sp-menu-nav {
  color: white;
}

/* @font-face {
  font-family: 'SourceNotoSansJPBold';
  src: url(/src/vendors/fonts/NotoSansJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPLight';
  src: url(/src/vendors/fonts/NotoSansJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPRegular';
  src: url(/src/vendors/fonts/NotoSansJP-Regular.otf) format('opentype');
} */

/* @font-face {
  font-family: 'SourceNotoSerifJPBold';
  src: url(/src/vendors/fonts/NotoSerifJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPLight';
  src: url(/src/vendors/fonts/NotoSerifJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPRegular';
  src: url(/src/vendors/fonts/NotoSerifJP-Regular.otf) format('opentype');
} */
.l-sp-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: all 0.5s;
  background: #00225abb;
}

.l-sp-menu.is-active {
  visibility: visible;
  z-index: 3;
  top: 0;
  opacity: 1;
}

@media (max-width: 991.98px) {
  #c-accordion h3,
  #c-accordion2 h3 {
    cursor: pointer;
  }
}

@media (max-width: 991.98px) and (max-width: 769px) {
  #c-accordion h3,
  #c-accordion2 h3 {
    height: 45px;
    line-height: 45px;
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  #c-accordion h3.arrow,
  #c-accordion2 h3.arrow {
    position: relative;
    display: inline-block;
    padding: 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
  }
  #c-accordion h3.arrow::before,
  #c-accordion2 h3.arrow::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    vertical-align: middle;
    width: 45px;
    height: 100%;
    background: #fff;
  }
  #c-accordion h3.arrow.down::after,
  #c-accordion2 h3.arrow.down::after {
    top: 4px;
    right: 17px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #00225a;
    border-right: 2px solid #00225a;
    transform: rotate(-45deg);
  }
  #c-accordion h3.arrow::after,
  #c-accordion2 h3.arrow::after {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: auto;
    content: '';
    vertical-align: middle;
  }
  #c-accordion h3.arrow.up::after,
  #c-accordion2 h3.arrow.up::after {
    top: 0;
    right: 17px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #00225a;
    border-right: 2px solid #00225a;
    transform: rotate(135deg);
  }
  #c-accordion table.c-basic-table,
  #c-accordion2 table.c-basic-table {
    opacity: 1;
    transition: 0.3s;
    margin-top: 17px;
  }
  #c-accordion table.c-basic-table.hide,
  #c-accordion2 table.c-basic-table.hide {
    opacity: 0;
    transition: 0.3s;
    margin-top: 0;
  }
  #c-accordion table.c-basic-table tr,
  #c-accordion table.c-basic-table th,
  #c-accordion table.c-basic-table td,
  #c-accordion2 table.c-basic-table tr,
  #c-accordion2 table.c-basic-table th,
  #c-accordion2 table.c-basic-table td {
    transition: line-height 0.3s opacity 0.3s;
  }
  #c-accordion table.c-basic-table.hide tr,
  #c-accordion table.c-basic-table.hide th,
  #c-accordion table.c-basic-table.hide td,
  #c-accordion2 table.c-basic-table.hide tr,
  #c-accordion2 table.c-basic-table.hide th,
  #c-accordion2 table.c-basic-table.hide td {
    line-height: 0;
    height: 0;
    visibility: hidden;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    font-size: 0;
    opacity: 0;
    transition: padding-top 0.3s, padding-bottom 0.3s, margin-top 0.3s, margin-bottom 0.3s, line-height 0.3s, height 0.3s, visibility 0.3s;
  }
}

.c-button--type01 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  max-width: 700px;
  width: 100%;
  height: 62px;
  border: 1px solid #00225a;
  color: #00225a;
  font-size: 23px;
  background: url(/src/images/right-arrow.svg) no-repeat top 50% right 16px/120px;
}

@media (max-width: 769px) {
  .c-button--type01 {
    background: none;
    font-size: 17px;
    font-weight: bold;
  }
}

.c-key-visual {
  position: absolute;
  top: 320px;
  left: 0;
  right: 0;
  margin: auto;
  width: 480px;
}

.c-key-visual img {
  width: 480px;
}

@media (max-width: 991.98px) {
  .c-key-visual {
    height: initial;
    width: 80%;
    top: 53%;
    left: 0%;
    transform: translateY(-47%);
    -webkit-transform: translateY(-47%);
    -ms-transform: translateY(-47%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.c-key-visual--maker {
  width: 100%;
  height: 820px;
  background: url(/src/images/keyvisual-maker-background.png) no-repeat 50% 50%/cover;
}

@media (max-width: 768px) {
  .c-key-visual--maker {
    height: 500px;
    background: url(/src/images/keyvisual-maker-background-sp.png) #9dacc0 no-repeat 50% bottom;
    background-size: 100%;
  }
  .c-key-visual--maker img.c-key-visual--maker__title {
    padding-top: 130px;
    width: 5.2rem;
  }
}

@media (min-width: 769px) {
  .c-key-visual--maker img.c-key-visual--maker__title {
    padding-top: 300px;
    width: 123px;
  }
}

.c-key-visual--maker .container {
  width: 100%;
  text-align: center;
  padding-top: 40px;
  height: 640px;
}

.c-news {
  width: 100%;
  height: 248px;
  background: #e5e9ee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-news-archives-list__item {
  display: flex;
}

.c-news-archives-list__item:not(:first-child) {
  margin-top: 16px;
}

.c-news-archives-list__item .news-date {
  display: flex;
  margin-left: 24px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

@media (max-width: 769px) {
  .c-news-archives-list__item .news-date {
    font-size: 90%;
    width: 100px;
    margin-left: 0;
    align-items: start;
    padding: 0.4rem;
  }
}

.c-news-archives-list__item .news-title {
  display: flex;
  margin-left: 24px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.07rem;
}

@media (max-width: 769px) {
  .c-news-archives-list__item .news-title {
    font-size: 90%;
    margin-left: 0;
    padding: 0.4rem;
  }
}

.c-news-category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 195px;
  height: 35px;
  line-height: 35px;
  background: #fff;
  font-size: 14px;
}

@media (max-width: 769px) {
  .c-news-category {
    display: block;
    height: inherit;
    text-align: center;
    min-width: 90px;
    width: auto;
    font-size: 80%;
    line-height: 1.5;
    padding: 0.4rem;
  }
}

@media (min-width: 992px) {
  .p-about-image:nth-child(odd) {
    width: 528px;
    height: 362px;
  }
  .p-about-image:nth-child(even) {
    width: 720px;
    height: 362px;
  }
}

@media (max-width: 991.98px) {
  .p-about-image {
    width: calc(50% - 4px);
    -o-object-fit: cover;
    object-fit: cover;
    height: 100px;
  }
}

.p-about-images--top {
  left: 10%;
}

.p-about-images--bottom {
  left: -10%;
}

.p-about-images .p-about-image:nth-of-type(1) {
  margin-right: 8px;
}

.p-brand-logo {
  transition: ease all 0.5s;
  width: 145px;
}

@media (max-width: 767.98px) {
  .l-general-header.is-scrolled .c-global-navigation {
    height: 70px;
  }
}

/* @font-face {
  font-family: 'SourceNotoSansJPBold';
  src: url(/src/vendors/fonts/NotoSansJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPLight';
  src: url(/src/vendors/fonts/NotoSansJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPRegular';
  src: url(/src/vendors/fonts/NotoSansJP-Regular.otf) format('opentype');
} */

/* @font-face {
  font-family: 'SourceNotoSerifJPBold';
  src: url(/src/vendors/fonts/NotoSerifJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPLight';
  src: url(/src/vendors/fonts/NotoSerifJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPRegular';
  src: url(/src/vendors/fonts/NotoSerifJP-Regular.otf) format('opentype');
} */
.p-general-header--sp-header {
  background: #00225a;
}

/* メニューの大きさ */

/* 線の太さ */

/* 線の色 */

/* アニメーション秒数 */
.p-hamburger-menu-icon-line {
  position: absolute;
  transition: 0.3s;
  width: calc(100% - 12px * 2);
  height: 3px;
  background-color: white;
}

.p-hamburger-menu-icon-line--top {
  top: 12px;
  left: 12px;
}

.p-hamburger-menu-icon-line--top.is-active {
  top: calc(50% - 3px / 2);
  transform: rotate(45deg);
}

.p-hamburger-menu-icon-line--middle {
  top: calc(50% - 3px / 2);
  left: 12px;
}

.p-hamburger-menu-icon-line--middle.is-active {
  width: 0;
  height: 0;
  left: 12px;
}

.p-hamburger-menu-icon-line--bottom {
  bottom: 12px;
  left: 12px;
}

.p-hamburger-menu-icon-line--bottom.is-active {
  top: calc(50% - 3px / 2);
  transform: rotate(-45deg);
}

.p-hamburger-menu-icon {
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  top: 9px;
  width: 50px;
  height: 50px;
}

.p-news-archives {
  padding: 15px 0;
}

@media (max-width: 991.98px) {
  .p-news-archives {
    height: initial;
    min-height: 248px;
  }
}

/* @font-face {
  font-family: 'SourceNotoSansJPBold';
  src: url(/src/vendors/fonts/NotoSansJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPLight';
  src: url(/src/vendors/fonts/NotoSansJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPRegular';
  src: url(/src/vendors/fonts/NotoSansJP-Regular.otf) format('opentype');
} */

/* @font-face {
  font-family: 'SourceNotoSerifJPBold';
  src: url(/src/vendors/fonts/NotoSerifJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPLight';
  src: url(/src/vendors/fonts/NotoSerifJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPRegular';
  src: url(/src/vendors/fonts/NotoSerifJP-Regular.otf) format('opentype');
} */
.p-sp-menu-nav-item {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid white;
}

.p-sp-menu-nav-item:last-child {
  border-bottom: 1px solid white;
}

/* @font-face {
  font-family: 'SourceNotoSansJPBold';
  src: url(/src/vendors/fonts/NotoSansJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPLight';
  src: url(/src/vendors/fonts/NotoSansJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSansJPRegular';
  src: url(/src/vendors/fonts/NotoSansJP-Regular.otf) format('opentype');
} */

/* @font-face {
  font-family: 'SourceNotoSerifJPBold';
  src: url(/src/vendors/fonts/NotoSerifJP-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPLight';
  src: url(/src/vendors/fonts/NotoSerifJP-Light.otf) format('opentype');
}

@font-face {
  font-family: 'SourceNotoSerifJPRegular';
  src: url(/src/vendors/fonts/NotoSerifJP-Regular.otf) format('opentype');
} */
.c-three-column__images {
  width: 100%;
  margin-top: 105px;
}

@media (max-width: 768px) {
  .c-three-column__images {
    margin-top: 68px;
    padding-left: 0;
    padding-right: 0;
  }
}

.c-three-column__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.c-three-column__item {
  width: 100%;
  margin-right: 50px;
}

@media (max-width: 768px) {
  .c-three-column__item {
    margin-right: 10px;
  }
}

.c-three-column__item:last-child {
  margin-right: 0;
}

.c-three-column__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.vegas-wrapper {
  z-index: 1;
}

.p-visual-cert-image {
  max-width: 283px;
}

@media (max-width: 991.98px) {
  .p-visual-cert-image {
    flex: 0 0 40%;
    width: 45%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media (max-width: 991.98px) {
  .p-visual-cert-image:nth-of-type(1) {
    margin-top: -10px;
  }
}

@media (max-width: 991.98px) {
  .p-visual-cert-image:nth-of-type(2) {
    margin-bottom: -20px;
  }
}

.p-visual-cert-images {
  position: absolute;
  bottom: -280px;
  left: calc(50% + 50px);
  width: 60%;
}

@media (max-width: 767.98px) {
  .p-visual-cert-images {
    display: flex;
    justify-content: center;
    position: relative;
    top: -120px;
    width: 100%;
    bottom: initial;
    left: initial;
  }
}

.p-visual-image--primary__img:nth-of-type(1) {
  width: 478px;
  height: 350px;
}
.p-visual-image--primary__img:nth-of-type(2) {
  width: 478px;
  height: 350px;
}

@media (max-width: 991.98px) {
  .p-visual-image--primary__sub-images {
    background: url(/src/images/about-header-background02.png) no-repeat top 100% left 0/auto;
  }
  .p-visual-image--primary__img:nth-of-type(1) {
    width: 55%;
    height: auto;
    top: 190px;
  }
  .p-visual-image--primary__img:nth-of-type(2) {
    width: 55%;
    height: auto;
    top: 370px;
  }
}

@media (min-width: 768px) {
  .p-visual-image--secondary__sub-images {
    background: none;
  }
}

@media (max-width: 991.98px) {
  .p-visual-image--secondary__sub-images {
    margin-bottom: 0;
    position: relative;
    background: url(/src/images/about-header-background.png) no-repeat;
    background-position: right bottom 70px;
    background-size: 110px;
    padding-bottom: 120px;
  }
}

.p-visual-image--secondary__img--01 {
  height: 530px;
}

.p-visual-image--secondary__img:nth-of-type(1) {
  width: 60%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .p-visual-image--secondary__img:nth-of-type(1) {
    width: initial;
    height: initial;
  }
}

.p-visual-image--secondary__img:nth-of-type(2) {
  position: absolute;
  top: -160px;
  left: calc(50% + 50px);
  width: auto;
  height: auto;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .p-visual-image--secondary__img:nth-of-type(2) {
    position: absolute;
    top: initial;
    bottom: 0;
    left: -100px;
  }
}

.p-visual-image--secondary__img:nth-of-type(3) {
  position: absolute;
  bottom: -140px;
  left: calc(50% + 50px);
  width: auto;
  height: auto;
}

@media (max-width: 991.98px) {
  .p-visual-image--secondary__img:nth-of-type(3) {
    position: absolute;
    top: 230px;
    left: 10%;
    max-width: 180px;
    width: 50%;
  }
}

.p-visual-image--secondary__img:nth-of-type(4) {
  position: absolute;
  bottom: -140px;
  left: calc(50% + 310px);
  width: auto;
  height: auto;
}

@media (max-width: 991.98px) {
  .p-visual-image--secondary__img:nth-of-type(4) {
    position: absolute;
    top: 250px;
    left: calc(10% + 180px);
    max-width: 180px;
    width: 50%;
  }
}

.u-mincho {
  font-family: 'Noto Serif', serif;
  font-weight: bold;
}

.u-mincho--regular {
  font-family: 'Noto Serif', serif;
  font-weight: normal;
}

.u-text-gray {
  color: #b7b9bc;
}

@media (max-width: 769px) {
  .u-br-md-height {
    display: block;
    height: 45px;
    content: '';
  }
}

@media (max-width: 769px) {
  .u-br-lg-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-br-md-only {
    display: none;
  }
}

@media (max-width: 769px) {
  .u-order-md-1 {
    order: 1;
  }
}

@media (max-width: 769px) {
  .u-order-md-2 {
    order: 2;
  }
}

/*# sourceMappingURL=main.css.map */
