body, html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

p, a, h1, h2, h3, h3, h4, h5, h6, ul, li, ol {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

ul, ol {
  list-style: none;
}

body {
  font-family: 'Noto Sans JP', YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #F8F8F8;
}

main {
  width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  main {
    width: unset;
    padding-top: 16vw;
  }
}

.header {
  background-color: #ffffff;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
}

.header__inner {
  padding: 20px calc((100vw - 1100px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 1100px;
}

@media screen and (min-width: 1340px) {
  .header__inner {
    padding: 20px 120px;
  }
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 4vw;
    min-width: unset;
  }
}

.header__logo {
  width: 240px;
  background-color: #e6e6e6;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 31.46667vw;
  }
}

.header__logo p {
  color: #00126a;
  font-size: 14px;
  line-height: 60px;
}

@media screen and (max-width: 768px) {
  .header__logo p {
    font-size: 3.73333vw;
    line-height: 8vw;
  }
}

.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .header__links {
    display: none;
  }
}

.header__links a {
  width: 150px;
  line-height: 40px;
  text-align: center;
  background-color: #00126a;
  font-size: 16px;
  color: #ffffff;
}

.header__links a:nth-child(n+2) {
  margin-left: 15px;
}

.header__hum {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__hum {
    display: block;
    background-color: #00126a;
    width: 8vw;
    height: 8vw;
    position: relative;
  }
  .header__hum span {
    display: block;
    width: 4.26667vw;
    position: absolute;
    height: 1px;
    background-color: #ffffff;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: .5s;
    transition: .5s;
  }
  .header__hum span:nth-child(1) {
    top: 2.4vw;
  }
  .header__hum span:nth-child(2) {
    top: 4vw;
  }
  .header__hum span:nth-child(3) {
    top: 5.6vw;
  }
  .header__hum.clicked {
    -webkit-transition: .5s;
    transition: .5s;
  }
  .header__hum.clicked span {
    width: 5.33333vw;
  }
  .header__hum.clicked span:nth-child(2) {
    display: none;
  }
  .header__hum.clicked span:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    top: 4.26667vw;
  }
  .header__hum.clicked span:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
    top: 4.26667vw;
  }
}

.breadcrumbs {
  border-bottom: solid 1px #d1d1d1;
}

.breadcrumbs__inner {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .breadcrumbs__inner {
    margin-top: 1.33333vw;
    padding: 0 4vw 1.33333vw;
    font-size: 3.73333vw;
    overflow-x: auto;
  }
}

.breadcrumbs__inner a {
  color: #00126a;
}

.breadcrumbs__inner span {
  margin: 0 15px;
  color: #848484;
}

@media screen and (max-width: 768px) {
  .breadcrumbs__inner span {
    margin: 0 4vw;
  }
}

.breadcrumbs__inner p {
  color: #848484;
}

.single {
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .single {
    padding: 6.66667vw 4vw 5.33333vw;
  }
}

.single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single__head__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single__head__category a {
  padding: 2px 10px;
  border: solid 1px #00126a;
  font-size: 14px;
  color: #00126a;
}

@media screen and (max-width: 768px) {
  .single__head__category a {
    padding: 0.53333vw 2.66667vw;
    font-size: 3.73333vw;
    margin-bottom: 2.66667vw;
  }
}

.single__head__category a:nth-last-child(n+2) {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .single__head__category a:nth-last-child(n+2) {
    margin-right: 2.66667vw;
  }
}

@media screen and (max-width: 768px) {
  .single__head__category a:nth-last-child(1) {
    margin-right: 8vw;
  }
}

.single__head__link {
  margin-left: 40px;
  color: #00126a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .single__head__link {
    margin-left: 0;
    margin-bottom: 2.66667vw;
  }
}

.single__head__link img {
  margin-left: 15px;
  width: 7px;
}

@media screen and (max-width: 768px) {
  .single__head__link img {
    margin-left: 4vw;
    width: 1.86667vw;
  }
}

.single__body {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .single__body {
    display: block;
    margin-top: 2.66667vw;
  }
}

.single__main {
  width: 780px;
  min-width: 780px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .single__main {
    width: 100%;
    min-width: unset;
    padding: 2.66667vw;
  }
}

.single__main__head__title {
  font-size: 26px;
  color: #00126a;
}

@media screen and (max-width: 768px) {
  .single__main__head__title {
    font-size: 5.33333vw;
  }
}

.single__main__head__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .single__main__head__sns {
    margin-top: 4vw;
  }
}

.single__main__head__sns a {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .single__main__head__sns a {
    width: 9.06667vw;
    height: 9.06667vw;
  }
}

.single__main__head__sns a:nth-child(n+2) {
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .single__main__head__sns a:nth-child(n+2) {
    margin-left: 2.66667vw;
  }
}

.single__main__head__sns a.hatebu {
  background-color: #209ff3;
}

.single__main__head__sns a.hatebu img {
  width: 26px;
}

@media screen and (max-width: 768px) {
  .single__main__head__sns a.hatebu img {
    width: 5.33333vw;
  }
}

.single__main__head__sns a.facebook {
  background-color: #1c73f2;
}

.single__main__head__sns a.facebook img {
  width: 10.4px;
}

@media screen and (max-width: 768px) {
  .single__main__head__sns a.facebook img {
    width: 2.16vw;
  }
}

.single__main__head__sns a.line {
  background-color: #3aae36;
}

.single__main__head__sns a.line img {
  width: 23px;
}

@media screen and (max-width: 768px) {
  .single__main__head__sns a.line img {
    width: 4.74667vw;
  }
}

.single__main__head__sns a.mail {
  background-color: #00126a;
}

.single__main__head__sns a.mail img {
  width: 18px;
}

@media screen and (max-width: 768px) {
  .single__main__head__sns a.mail img {
    width: 3.70667vw;
  }
}

.single__main__head__thumb {
  margin-top: 20px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .single__main__head__thumb {
    margin-top: 4vw;
  }
}

.single__main__head__thumb img {
  width: 100%;
}

.single__main__head__meta {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .single__main__head__meta {
    margin-top: 2.66667vw;
  }
}

.single__main__head__meta__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #848484;
}

@media screen and (max-width: 768px) {
  .single__main__head__meta__time {
    font-size: 3.2vw;
  }
}

.single__main__head__meta__time img {
  width: 14px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .single__main__head__meta__time img {
    width: 3.2vw;
    margin-right: 1.33333vw;
  }
}

.single__main__head__meta__article {
  font-size: 14px;
  color: #848484;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .single__main__head__meta__article {
    font-size: 3.2vw;
    margin-left: 5.33333vw;
  }
}

.single__main__head__meta__update {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #848484;
}

@media screen and (max-width: 768px) {
  .single__main__head__meta__update {
    margin-left: 5.33333vw;
    font-size: 3.2vw;
  }
}

.single__main__head__meta__update img {
  width: 14px;
}

@media screen and (max-width: 768px) {
  .single__main__head__meta__update img {
    width: 3.2vw;
  }
}

.single__main__head__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single__main__head__category a {
  padding: 2px 10px;
  border: solid 1px #00126a;
  font-size: 14px;
  color: #00126a;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .single__main__head__category a {
    padding: 0.53333vw 2.66667vw;
    font-size: 3.73333vw;
    margin-top: 2.66667vw;
  }
}

.single__main__head__category a:nth-last-child(n+2) {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .single__main__head__category a:nth-last-child(n+2) {
    margin-right: 2.66667vw;
  }
}

.single__main__content {
  margin: 30px 0 50px;
}

@media screen and (max-width: 768px) {
  .single__main__content {
    margin: 5.33333vw 0 8vw;
  }
}

.single__main__content h2 {
  font-size: 22px;
  color: #00126a;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .single__main__content h2 {
    font-size: 5.06667vw;
    margin-bottom: 4vw;
  }
}

.single__main__content h3 {
  font-size: 20px;
  color: #2f2f2f;
  background-color: #ebebeb;
  padding: 5px 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .single__main__content h3 {
    font-size: 4.8vw;
    margin-bottom: 4vw;
    padding: 1.33333vw 4vw;
  }
}

.single__main__content h4 {
  font-size: 18px;
  color: #2f2f2f;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .single__main__content h4 {
    font-size: 4.53333vw;
    margin-bottom: 4vw;
  }
}

.single__main__content h5 {
  font-size: 16px;
  color: #2f2f2f;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .single__main__content h5 {
    font-size: 4.26667vw;
  }
}

.single__main__content p {
  font-size: 16px;
  color: #2f2f2f;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .single__main__content p {
    font-size: 4.26667vw;
    margin-bottom: 4vw;
  }
}

.single__main__content a {
  color: #0093ff;
  text-decoration: underline;
}

.single__main__content .red {
  color: #b40000;
}

.single__main__content strong {
  text-decoration: underline;
}

.single__main__content .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #ffff66));
  background: linear-gradient(transparent 50%, #ffff66 0%);
}

.single__main__content ul {
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .single__main__content ul {
    padding: 2.66667vw;
  }
}

.single__main__content li {
  list-style: none;
  position: relative;
  padding: 0;
}

.single__main__bottom__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single__main__bottom__sns a {
  width: 170px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__sns a {
    width: 42.66667vw;
    height: 11.73333vw;
  }
  .single__main__bottom__sns a:nth-child(n+3) {
    margin-top: 1.33333vw;
  }
}

.single__main__bottom__sns a.hatebu {
  background-color: #209ff3;
}

.single__main__bottom__sns a.hatebu img {
  width: 26px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__sns a.hatebu img {
    width: 5.33333vw;
  }
}

.single__main__bottom__sns a.facebook {
  background-color: #1c73f2;
}

.single__main__bottom__sns a.facebook img {
  width: 10.4px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__sns a.facebook img {
    width: 2.16vw;
  }
}

.single__main__bottom__sns a.line {
  background-color: #3aae36;
}

.single__main__bottom__sns a.line img {
  width: 23px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__sns a.line img {
    width: 4.74667vw;
  }
}

.single__main__bottom__sns a.mail {
  background-color: #00126a;
}

.single__main__bottom__sns a.mail img {
  width: 18px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__sns a.mail img {
    width: 3.70667vw;
  }
}

.single__main__bottom__block {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__block {
    margin-top: 5.33333vw;
  }
}

.single__main__bottom__block__title {
  display: inline-block;
  position: relative;
  color: #00126a;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__block__title {
    font-size: 4.53333vw;
  }
}

.single__main__bottom__block__title::after {
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateX(100%) translateY(-50%);
          transform: translateX(100%) translateY(-50%);
  content: '';
  width: calc(710px - 100%);
  height: 1px;
  background-color: #00126a;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__block__title::after {
    right: -2.66667vw;
    width: calc(85vw - 100%);
  }
}

.single__main__bottom__recommend__inner {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__recommend__inner {
    margin-top: 2.66667vw;
  }
}

.single__main__bottom__recommend__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__recommend__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.single__main__bottom__recommend__content:nth-child(n+2) {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__recommend__content:nth-child(n+2) {
    margin-top: 2.66667vw;
  }
}

.single__main__bottom__recommend__content__title {
  font-size: 16px;
  color: #00126a;
  margin-right: auto;
  width: 500px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__recommend__content__title {
    width: 100%;
    font-size: 4.26667vw;
    margin: 0;
  }
}

.single__main__bottom__recommend__content__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #848484;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__recommend__content__time {
    font-size: 3.2vw;
  }
}

.single__main__bottom__recommend__content__time img {
  width: 14px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__recommend__content__time img {
    width: 3.2vw;
    margin-right: 1.33333vw;
  }
}

.single__main__bottom__recommend__content__article {
  font-size: 14px;
  color: #848484;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__recommend__content__article {
    font-size: 3.2vw;
    margin-left: 5.33333vw;
  }
}

.single__main__bottom__popular__inner {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__popular__inner {
    margin-top: 2.66667vw;
  }
}

.single__main__bottom__popular__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single__main__bottom__popular__content:nth-child(n+2) {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__popular__content:nth-child(n+2) {
    margin-top: 2.66667vw;
  }
}

.single__main__bottom__popular__content img {
  width: 170px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__popular__content img {
    width: 32vw;
    height: 26.66667vw;
  }
}

.single__main__bottom__popular__content__title {
  margin-left: 20px;
  font-size: 16px;
  color: #2f2f2f;
}

@media screen and (max-width: 768px) {
  .single__main__bottom__popular__content__title {
    margin-left: 2.66667vw;
    font-size: 4.26667vw;
  }
}

.single__sidebar {
  width: 290px;
  min-width: 290px;
}

@media screen and (max-width: 768px) {
  .single__sidebar {
    width: 100%;
    min-width: unset;
    margin-top: 5.33333vw;
  }
}

.single__sidebar__banner {
  width: 100%;
}

.single__sidebar__banner img {
  width: 100%;
}

.single__sidebar__pr {
  margin-top: 20px;
  border: solid 1px #00126a;
}

@media screen and (max-width: 768px) {
  .single__sidebar__pr {
    margin-top: 4vw;
  }
}

.single__sidebar__pr__title {
  background-color: #00126a;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .single__sidebar__pr__title {
    line-height: 13.33333vw;
    font-size: 4.53333vw;
  }
}

.single__sidebar__pr__inner {
  padding: 20px;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .single__sidebar__pr__inner {
    padding: 2.66667vw;
  }
}

.single__sidebar__pr__content {
  display: block;
}

.single__sidebar__pr__content:nth-child(n+2) {
  margin-top: 15px;
  padding-top: 15px;
  border-top: solid 1px #d1d1d1;
}

@media screen and (max-width: 768px) {
  .single__sidebar__pr__content:nth-child(n+2) {
    margin-top: 4vw;
    padding-top: 4vw;
  }
}

.single__sidebar__pr__content__title {
  font-size: 16px;
  color: #00126a;
}

@media screen and (max-width: 768px) {
  .single__sidebar__pr__content__title {
    font-size: 4.26667vw;
  }
}

.single__sidebar__pr__content__description {
  font-size: 14px;
  color: #2f2f2f;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .single__sidebar__pr__content__description {
    font-size: 3.73333vw;
    margin-top: 2.66667vw;
  }
}

.single__sidebar__block {
  margin-top: 20px;
  padding: 20px;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .single__sidebar__block {
    margin-top: 4vw;
    padding: 2.66667vw;
  }
}

.single__sidebar__block__title {
  font-size: 16px;
  color: #00126a;
  padding-bottom: 15px;
  border-bottom: solid 1px #00126a;
}

@media screen and (max-width: 768px) {
  .single__sidebar__block__title {
    font-size: 4.26667vw;
    padding-bottom: 4vw;
  }
}

.single__sidebar__block__inner {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .single__sidebar__block__inner {
    margin-top: 4vw;
  }
}

.single__sidebar__block__content {
  display: block;
}

.single__sidebar__block__content:nth-child(n+2) {
  margin-top: 15px;
  padding-top: 15px;
  border-top: solid 1px #d1d1d1;
}

@media screen and (max-width: 768px) {
  .single__sidebar__block__content:nth-child(n+2) {
    margin-top: 4vw;
    padding-top: 4vw;
  }
}

.single__sidebar__block__content__title {
  font-size: 14px;
  color: #00126a;
}

@media screen and (max-width: 768px) {
  .single__sidebar__block__content__title {
    font-size: 3.73333vw;
  }
}

.single__sidebar__block__content__meta {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .single__sidebar__block__content__meta {
    margin-top: 2.66667vw;
  }
}

.single__sidebar__block__content__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #848484;
}

@media screen and (max-width: 768px) {
  .single__sidebar__block__content__time {
    font-size: 3.2vw;
  }
}

.single__sidebar__block__content__time img {
  width: 14px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .single__sidebar__block__content__time img {
    width: 3.2vw;
    margin-right: 1.33333vw;
  }
}

.single__sidebar__block__content__article {
  font-size: 14px;
  color: #848484;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .single__sidebar__block__content__article {
    font-size: 3.2vw;
    margin-left: 5.33333vw;
  }
}

html.clicked, body.clicked {
  overflow: hidden;
}

.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 16vw;
}

.menu.clicked {
  display: block;
}

.menu__links {
  border-top: solid 1px #d1d1d1;
}

.menu__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.66667vw 4vw;
  border-bottom: solid 1px #d1d1d1;
  font-size: 4.26667vw;
  color: #00126a;
}

.footer {
  background-color: #00126a;
}

.footer__inner {
  width: 1100px;
  margin: 0 auto;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    width: unset;
    padding: 5.33333vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__logo {
  width: 240px;
  background-color: #e6e6e6;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    width: 31.46667vw;
  }
}

.footer__logo p {
  color: #00126a;
  font-size: 14px;
  line-height: 60px;
}

@media screen and (max-width: 768px) {
  .footer__logo p {
    font-size: 3.73333vw;
    line-height: 8vw;
  }
}
/*# sourceMappingURL=style.css.map */