@charset "utf-8";

/* common */

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-default);
  font-size: 1.8rem;
  line-height: 2;
  min-width: 1280px;
}

@media (max-width: 1024px) {
  body {
    min-width: 0;
  }

  body.is-menu-opened {
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

h2 {
  font-weight: normal;
  line-height: 1;
}

h3 {
  font-size: 40px;
  font-weight: normal;
  line-height: 1.5;
}

h4 {
  font-size: 28px;
  font-weight: normal;
}

h5 {
  font-size: 24px;
  font-weight: normal;
}

@media (max-width: 600px) {
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--col-accent);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.bg1 {
  background: url(../img/bg_dot01.png);
}

button:focus,
button:active {
  outline: none;
}

.container {
  --container-gutter: var(--gutter-default);
  width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.container-small {
  width: 900px;
}

@media (max-width: 1024px) {
  .container {
    width: auto;
  }
}

@media (max-width: 600px) {
  .container {
    --container-gutter: var(--gutter-sm);
  }
}

.sp {
  display: none;
}

@media (max-width: 1024px) {
  .pc {
    display: none;
  }
}

@media (max-width: 600px) {
  .sp {
    display: block;
  }
}

mark {
  background: none;
  position: relative;
}

mark::after {
  content: "";
  width: calc(100% - 10px);
  border-bottom: 2px dotted var(--col-accent);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

/* ボタン */

.btn>a,
.btn>input[type="submit"] {
  display: inline-block;
  background: var(--col-main);
  padding: 1.4em 2em;
  font-size: 18px;
  color: #000;
  white-space: nowrap;
  position: relative;
  text-align: center;
  line-height: 1;
  width: 220px;
  max-width: 100%;
}

.btn.btn-large>a {
  font-size: 22px;
  width: 400px;
  max-width: 100%;
}

.btn>a::before,
.btn>a::after {
  content: "";
  width: 50px;
  height: 1px;
  background: #000;
  position: absolute;
  right: 15px;
  bottom: 13px;
}

.btn>a::after {
  width: 14px;
  transform-origin: right bottom;
  transform: rotate(45deg);
}

.btn.btn-revarrow>a::before,
.btn.btn-revarrow>a::after {
  right: auto;
  left: 15px;
}

.btn.btn-revarrow>a::after {
  transform-origin: left bottom;
  transform: rotate(-45deg);
}


.btn.btn-noarrow>a::before,
.btn.btn-noarrow>a::after {
  content: none;
}

.btn.btn-sub>a,
.btn.btn-sub>input[type="submit"] {
  background-color: var(--col-sub1);
}

@media (max-width: 600px) {
  .btn>a {
    font-size: 14px;
  }
  .btn.btn-large>a {
    font-size: 16px;
  }
}

/* タブ */

.tab-index {
  display: flex;
}

.tab-index>*+* {
  margin-left: 40px;
}

.tab-index a {
  display: block;
  text-align: center;
  color: var(--col-default);
  border-radius: 20px 20px 0 0;
  font-size: 26px;
  padding-top: 25px;
  padding-bottom: 25px;
  background: #fff;
  line-height: 1;
}

.tab-contents {
  background: #fff;
  padding: 40px;
}

.tab-content:not(.active) {
  display: none;
}

@media (max-width: 1024px) {
  .tab-index a {
    font-size: 18px;
    padding: 15px 0;
  }
}

.page-title {
  background: #fff;
  font-size: 35px;
  font-weight: normal;
  padding: 17px;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 40px;
  white-space: nowrap;
}

.page-title br {
  content: "";
  margin-right: .5em;
}

@media (max-width: 1024px) {
  .page-title {
    font-size: 22px;
    line-height: 2;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
    padding: 0 20px;
  }

  .page-title br {
    content: none;
  }

  .page section {
    padding-top: 50px;
  }
}

/* セクション見出し */

.section-title {
  /* font-size: 40px; */
  font-weight: normal;
  white-space: nowrap;
  margin-bottom: 60px;
}

.section-title>span {
  display: block;
  font-size: 50%;
}

@media (max-width: 1024px) {
  .section-title {
    /* font-size: 40px; */
    font-weight: normal;
    white-space: nowrap;
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .section-title {
    margin-bottom: 30px;
  }
}


.section-title1>span {
  margin-top: 20px;
}

@media (max-width: 600px) {
  .section-title1>span {
    margin-top: 10px;
  }
}


.section-title2 {
  display: flex;
  align-items: center;
}

.section-title2>span {
  margin-left: 45px;
  color: var(--col-sub1);
  display: flex;
  align-items: center;
}

.section-title2>span::after {
  content: "";
  display: block;
  width: 130px;
  border-bottom: 1px solid currentColor;
  margin-left: 18px;
}

.section-title2v {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  letter-spacing: .25em;
}

.section-title2v>span {
  color: var(--col-main);
  letter-spacing: .08em;
  margin-left: 0;
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.section-title2v>span::after {
  content: "";
  display: block;
  margin: 18px 0 0 0;
  width: 0;
  border-left: 1px solid currentColor;
  height: 190px;
}

@media (max-width: 600px) {
  .section-title2v {
    writing-mode: horizontal-tb;
    flex-direction: column;
    align-items: center;
    letter-spacing: 0;
  }

  .section-title2v>span::after {
    height: 0;
    border-bottom: 1px solid currentColor;
    margin: 0 0 0 18px;
  }
}

.section-title21>span {
  color: var(--col-main);
  display: flex;
  align-items: center;
}

.section-title21>span::after {
  content: "";
  display: block;
  flex-grow: 1;
  border-bottom: 1px solid currentColor;
  margin-left: 18px;
}

.section-title3 {
  padding-bottom: 28px;
  padding-left: 20px;
  border-bottom: 3px dotted var(--col-main);
}

@media (max-width: 1024px) {
  .section-title3 {
    padding-bottom: 18px;
  }
}

@media (max-width: 600px) {
  .section-title3 {
    font-size: 20px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
}

.section-title4 {
  text-align: center;
}

.section-title4>span {
  color: var(--col-main);
  margin-top: 20px;
}

/* テーブル */

table {
  border-collapse: collapse;
  --th-width: auto;
  width: 100%;
}

th,
td {
  padding: 30px 20px;
  border-bottom: 1px dotted var(--col-default);
}

th {
  width: var(--th-width);
  background: #eee;
  font-weight: normal;
  white-space: nowrap;
}

@media (max-width: 600px) {
  th,
  td {
    padding: 20px;
  }
}

.table1 {
  padding-top: 80px !important;
  margin: 0;
  --th-width: 152px;
}

.table1 th {
  width: 300px;
}

.table1 td {
  padding-left: 40px;
  padding-right: 40px;
}

.table1 tr:last-child>th,
.table1 tr:last-child>td {
  border: none;
}

@media (max-width: 1024px) {
  .table1 th {
    width: 20%;
  }
  .table1 .price {
    position: relative;
  }
  .table1 .price>td:first-of-type {
    position: absolute;
    padding-top: 30px;
    border: none;
  }
  .table1 .price>td:nth-of-type(n+2) {
    padding-top: 60px;
    vertical-align: top;
  }
  .table1 .price>td:nth-of-type(2) {
    padding-right: 0;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .table1 td {
    padding-left: 20px;
    padding-right: 20px;
  }
  .table1 .price>td:first-of-type {
    padding-top: 20px;
  }
  .table1 .price>td:nth-of-type(n+2) {
    padding-top: 50px;
  }
}

.table2 {
  border: 1px solid var(--col-default);
}

.table2 th,
.table2 td {
  border-right: 1px dotted var(--col-default);
  text-align: center;
}

/* ヘッダー */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 150px;
  position: relative;
  background: #fff;
}

.header-logo {
  margin-right: 65px;
  font-size: 0;
}

@media (max-width: 1024px) {
  .header {
    padding-left: 20px;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .header-logo {
    width: 140px;
  }
}

@media (max-width: 600px) {
  .header {
    padding-left: var(--gutter-sm);
  }

  .header-logo {
    width: 112px;
  }
}

/* ナビゲーション */

.nav-toggle {
  display: none;
}

.nav {
  display: flex;
  font-size: 16px;
  line-height: 1;
  justify-content: flex-end;
  align-items: center;
  width: calc(100% - 273px);
}

.nav a {
  color: #000;
}

.nav-main {
  display: flex;
  width: 100%;
  max-width: 820px;
  padding-right: 20px;
  /* width: calc(100% - 550px); */
}

.nav-main li {
  /* margin: 0 10px; */
  /* flex: 0 1; */
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid; */
}

.nav-main a {
  position: relative;
  /* padding: 0 28px; */
  text-align: center;
  white-space: nowrap;
}

.nav-main a::after {
  content: "";
  display: block;
  width: calc(100% - var(--gutter-default));
  height: 0;
  border-top: 2px dotted var(--col-accent);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.nav-main .current-menu-item a::after,
.nav-main a:hover::after {
  opacity: 1;
}

.nav-main .current-menu-item a,
.nav-main a:hover {
  color: var(--col-accent);
}

.nav-sub {
  /* flex-shrink: 0; */
  display: flex;
  flex-direction: column;
  background: var(--col-main);
  align-items: center;
}

.nav-sub a {
  display: flex;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
  padding: 20px 20px;
}

.nav-sub img {
  margin-right: .5em;
}

.nav-sub>li+li>a {
  border-top: 1px dotted #000;
}

.nav-ext {
  display: none;
}

.nav-sns {
  position: absolute;
  left: 50px;
  top: 266px;
  z-index: 1;
  text-align: center;
}

.nav-sns li+li {
  margin-top: 30px;
}

.nav-sns a {
  font-size: 50px;
}

.nav-sns a:hover {
  color: var(--col-main);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
    width: var(--burger-md-size);
    height: var(--burger-md-size);
    background: var(--col-main);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-toggle a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
    color: transparent;
    position: relative;
  }

  .nav-toggle a::before,
  .nav-toggle a::after {
    content: "";
    width: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--col-default);
  }

  .nav-toggle a::before {
    height: 23px;
    border-style: solid none;
  }

  .nav-toggle a::after {
    height: 3px;
    border-width: 1px;
    background: var(--col-default);
  }

  .is-menu-opened .nav-toggle a::before,
  .is-menu-opened .nav-toggle a::after {
    width: 40px;
    height: 3px;
    border: none;
    background: var(--col-default);
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(40deg);
  }

  .is-menu-opened .nav-toggle a::after {
    transform: translate(-50%, -50%) rotate(-40deg);
  }

  .nav {
    display: block;
    position: fixed;
    width: 100%;
    height: calc(100vh - var(--burger-md-size));
    padding: 0 20px var(--burger-md-size);
    left: 0;
    top: var(--burger-md-size);
    background: #fff;
    border-top: 1px solid #ddd;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
  }

  .is-menu-opened .nav {
    opacity: 1;
    pointer-events: all;
  }

  .nav-main,
  .nav-sub {
    display: block;
    padding-right: 0;
  }

  .nav-main li,
  .nav-sub li {
    display: block;
    border-bottom: 1px solid #ddd;
  }

  .nav-main a,
  .nav-sub a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 18px 20px;
    font-size: 16px;
  }

  .nav-main a::after,
  .nav-sub a::after {
    content: "\f054";
    font-family: var(--font-fontawsome);
    font-size: 18px;
    font-weight: 900;
    color: var(--col-main);
    width: auto;
    height: auto;
    position: static;
    transform: none;
    opacity: 1;
    border: none;
  }

  .nav-main {
    max-width: none;
  }

  .nav-sub {
    background: none;
  }

  .nav-sub img {
    display: none;
  }

  .nav-sub>li+li>a {
    border-top: none;
  }

  .nav-ext {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .nav-ext>* {
    margin: 0 10px;
  }

  .nav-ext a {
    display: flex;
    width: 80px;
    height: 80px;
    padding-bottom: 13px;
    font-size: 12px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: var(--col-accent);
    border-radius: 30px;
    color: #fff;
  }

  .nav-ext i {
    font-size: 32px;
    margin-bottom: 7px;
  }

  .nav-ext>li:nth-child(even)>a {
    background: var(--col-main);
    color: var(--col-default);
  }

  .nav-sns {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .nav-sns li {
    margin: 0 8px;
  }

  .nav-sns li+li {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .nav-toggle {
    width: var(--burger-sm-size);
    height: var(--burger-sm-size);
  }

  .nav-toggle a::before,
  .nav-toggle a::after {
    width: 27px;
  }

  .nav-toggle a::before {
    height: 19px;
  }

  .nav-toggle a::after {
    height: 3px;
  }

  .is-menu-opened .nav-toggle a::before,
  .is-menu-opened .nav-toggle a::after {
    width: 30px;
  }

  .nav {
    height: calc(100vh - var(--burger-sm-size));
    top: var(--burger-sm-size);
    padding: 0 10px var(--burger-sm-size);
  }

  .nav-main a,
  .nav-sub a {
    padding: 15px 10px;
    font-size: 14px;
  }

  .nav-ext,
  .nav-sns {
    margin-top: 20px;
  }
}


/* Main */

main {
  padding-bottom: 120px;
}

@media (max-width: 1024px) {
  main {
    position: relative;
    padding-bottom: 170px;
  }
}

/* メインビジュアル */

.mv {
  padding-left: 150px;
  position: relative;
}

.mv-inner {
  border-radius: 50px 0 0 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.mv img {
  width: 100%;
}

@media (max-width: 1024px) {
  .mv {
    padding-left: 0;
  }

  .mv-inner {
    border-radius: 0;
  }

  .mv-inner figure {
    height: 32.5vw;
  }

  .mv-inner img {
    object-fit: cover;
    height: 100%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .mv-inner figure {
    height: 66.7vw;
  }
}


/* ページナビ */

.pagenav .container {
  /* padding: 0; */
  overflow: hidden;;
}

.pagenav .flex {
  --flex-gap: 13px;
}

.pagenav .column {
  text-align: center;
  flex: 0 1 auto;
}

.pagenav-box a {
  display: block;
  color: #000;
}

.pagenav figure {
  overflow: hidden;
  position: relative;
}

.pagenav figure::after {
  content: "";
  border: 0 solid transparent;
  border-top-color: var(--col-main);
  border-left-color: var(--col-main);
  position: absolute;
  top: 6px;
  left: 6px;
  transition: .3s;
}

.pagenav a:hover>figure::after {
  border-width: 22px;
}

.pagenav img {
  transition: .3s;
}

.pagenav a:hover img {
  transform: scale(1.3);
}

.pagenav p {
  font-size: 16px;
  margin-top: 22px;
  display: inline-block;
  position: relative;
}

.pagenav a:hover p::after {
  content: "";
  width: calc(100% - 10px);
  height: 0;
  border-bottom: 2px dotted var(--col-accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1024px) {
  .pagenav .column {
    flex: 1 1 auto;
  }
}

@media (max-width: 600px) {
  .pagenav .column {
    flex: 1 0 auto;
  }

  .pagenav .column {
    width: calc((100% - 24px) / 2);
  }

  .pagenav .column p {
    margin: 13px 0;
  }
}

/* スワップイメージ */
.swap-box {
  display: flow-root;
  width: 1030px;
}

.swap-box_thumbs {
  width: 360px;
  float: right;
  --flex-gap: 10px;
  margin-left: 50px;
}

.swap-box_reverse>.swap-box_thumbs {
  float: left;
  margin-left: 0;
  margin-right: 50px;
}

.swap-box_thumbs>* {
  flex-basis: 170px;
  margin-bottom: 20px;
  opacity: .6;
  transition: .3s;
}

.swap-box_thumbs>*.is-active {
  opacity: 1;
}

.swap-box_thumbs>*>a {
  display: block;
  border: 10px solid var(--col-main);
}

.swap-box_image {
  width: 620px;
  float: right;
  margin-bottom: 30px;
  position: relative;
}

.swap-box_image::before {
  content: "";
  display: block;
  padding-top: 66%;
}

.swap-box_image figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.swap-box_image figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 6px 15px;
  background: rgba(255, 255, 255, .84);
  color: var(--col-accent);
}

.swap-box_image .next-figure {
  display: none;
  z-index: 0;
}

@media (max-width: 1024px) {
  .swap-box {
    width: auto;
    max-width: 730px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .swap-box>.swap-box_thumbs {
    width: auto;
    float: none;
    margin: 0;
    --flex-gap: 8px;
  }

  .swap-box_thumbs>* {
    flex-grow: 0;
    flex-basis: 25%;
    margin-bottom: 16px;
    border-width: 5px;
  }

  .swap-box_thumbs>*>a {
    border-width: 5px;
  }

  .swap-box_image {
    width: auto;
    max-width: 730px;
    float: none;
    margin-bottom: 16px;
    order: -1;
  }

  .swap-box_text {
    order: -2;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .swap-box>.swap-box_thumbs {
    --flex-gap: 4px;
  }

  .swap-box_thumbs>* {
    flex-basis: 25%;
  }
}

/* 固定ボタン */

.fixed-nav {
  position: fixed;
  right: 0;
  bottom: 20px;
  text-align: center;
  z-index: 1;
}

.fixed-nav li+li {
  margin-top: 20px;
}

.fixed-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding: 15px 5px 15px 20px;
  border-radius: 60px 0 0 60px;
}

.fixed-nav img {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .fixed-nav {
    position: absolute;
    right: 30px;
    bottom: -20px;
  }

  .fixed-nav ul {
    display: flex;
  }

  .fixed-nav li+li {
    margin-top: 0;
  }

  .fixed-nav a {
    border-radius: 50%;
    font-size: 11px;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .fixed-nav {
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
  }
}


.btn-diary a {
  background: var(--col-main);
  color: #000;
}

.btn-gotop a {
  background: #3AB6EE;
  color: #fff;
  padding-top: 50px;
  position: relative;
}

.btn-gotop a::before,
.btn-gotop a::after {
  content: "";
  width: 20px;
  height: 4px;
  background: #fff;
  position: absolute;
  top: 20px;
}

.btn-gotop a::before {
  left: calc((100% - 60px) / 2 + 40px);
  transform-origin: left top;
  transform: rotate(40deg);
}

.btn-gotop a::after {
  right: calc((100% - 60px) / 2 + 20px);
  transform-origin: right top;
  transform: rotate(-40deg);
}

@media (max-width: 1024px) {
  .btn-diary {
    margin-top: 10px;
    margin-right: 5px;
  }

  .btn-diary a {
    width: 110px;
    height: 110px;
    padding: 0 32px;
    justify-content: center;
  }

  .btn-gotop {
    right: 30px;
    bottom: 30px;
  }

  .btn-gotop a {
    width: 70px;
    height: 70px;
    padding-top: 35px;
  }

  .btn-gotop a::before,
  .btn-gotop a::after {
    width: 15px;
    height: 3px;
    top: 12px;
  }

  .btn-gotop a::before {
    left: 50%;
  }

  .btn-gotop a::after {
    right: 50%;
  }
}

/* フッター */

.footer {
  background: url(../img/bg_dot02.png);
  padding-top: 75px;
  color: #fff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 15px;
  position: relative;
}

.footer a {
  color: #fff;
}

.footer-address {
  line-height: 1.5;
}

.footer-address h2 {
  font-size: 16px;
  font-weight: normal;
}

.footer-address p {
  margin-top: 1.5em;
}

.footer-link {
  --flex-gap: 30px;
  white-space: nowrap;
}

.footer-link li li {
  padding-left: 1em;
}

.footer-privacy {
  position: absolute;
  right: 0;
  bottom: calc(-1 * (65px + 2em));
}

.footer-privacy a {
  font-size: 14px;
  font-family: var(--font-yugothic);
  font-weight: bold;
  color: var(--col-accent);
}

.footer-banner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 30px;
}

.footer-banner>* {
  margin-left: 30px;
}

.footer-copyright {
  font-family: var(--font-yugothic);
  margin-top: 60px;
  padding: 32px 0;
  background: #fff;
  color: #000;
  text-align: center;
  font-weight: bold;
}

.footer-copyright>small {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .footer {
    padding-top: 35px;
  }

  .footer-address {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-address h2 {
    width: 100%;
  }

  .footer-address p {
    width: 50%;
  }

  .footer-banner {
    width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .footer-banner li {
    text-align: center;
    margin-left: 0;
  }

  .footer-banner li+li {
    margin-top: 30px;
  }

  .footer-copyright {
    margin-top: 40px;
    padding: 4px 0;
  }

  .footer-copyright>small {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding-top: 40px;
  }

  .footer-address {
    display: block;
  }

  .footer-address h2 {
    text-align: center;
    margin-bottom: 32px;
  }

  .footer-address p {
    width: auto;
    font-size: 12px;
    line-height: 1.8;
  }

  .footer-banner {
    display: block;
    margin-top: 25px;
  }

  .footer-banner>* {
    margin-left: 0;
  }

  .footer-banner li+li {
    margin-top: 20px;
  }

  .banner-recruit img {
    max-width: 240px;
  }

  .footer-copyright {
    margin-top: 50px;
    padding: 4px 0;
  }

  .footer-copyright>small {
    font-size: 11px;
  }
}

/* 404 Not Found */

.page404 {
  padding-top: 100px;
  text-align: center;
}