@charset "UTF-8";
/* フェードアップアニメーション */
.fade-up.is-hidden {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  transition: opacity 0.9s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: var(--delay-sp, 0s);
}

@media (min-width: 640) {
  .fade-up {
    transition-delay: var(--delay-pc, 0s);
  }
}
/* ---- common ----*/
html {
  color: #222;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(15px, 1.25vw);
  font-weight: 400;
  letter-spacing: 0.08vw;
  scroll-behavior: smooth;
}

.only-sp {
  display: block;
}

.only-pc {
  display: none;
}

@media (min-width: 640) {
  .only-sp {
    display: none;
  }
  .only-pc {
    display: block;
  }
}
body {
  background-color: #f9fafb;
}

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

@media (min-width: 1920px) {
  html {
    font-size: 0.781vw;
  }
}
/* ---- header ----*/
#header {
  background-color: #fff;
  position: relative;
  z-index: 1000;
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: min(18px, 1.5vw) min(18px, 1.5vw) min(18px, 1.5vw) min(34px, 2.833vw);
}
#header .inner .header-left {
  display: grid;
  place-content: center;
  width: min(240px, 20vw);
  margin-top: min(4px, 0.333vw);
}
#header .inner .header-right {
  display: flex;
  align-items: center;
}
#header .inner .header-right nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: min(4px, 0.333vw) min(40px, 3.333vw);
  margin-left: min(50px, 4.167vw);
  justify-content: flex-end;
}
#header .inner .header-right nav ul li {
  display: flex;
  align-items: center;
  gap: min(13px, 1.083vw);
  font-size: min(20px, 1.667vw);
  font-weight: 600;
}
#header .inner .header-right nav ul li::before {
  content: "";
  display: inline-block;
  width: min(12px, 1vw);
  height: min(12px, 1vw);
  background: linear-gradient(90deg, #24446d 0%, #d5ae59 100%);
  border-radius: 50%;
}
#header .inner .header-right nav ul li a {
  transition: 0.3s;
}
#header .inner .header-right nav ul li a:hover {
  color: #b29350;
}
#header .inner .header-right .header-btns {
  margin-left: min(40px, 3.333vw);
  font-size: min(22px, 1.833vw);
  font-weight: 600;
  color: #fff;
  display: flex;
  gap: min(18px, 1.5vw);
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
  box-sizing: border-box;
}
#header .inner .header-right .header-btns div {
  width: min(280px, 23.333vw);
  height: min(74px, 6.167vw);
}
#header .inner .header-right .header-btns a {
  display: grid;
  place-content: center;
}

@media (min-width: 1920px) {
  #header .inner {
    padding: 0.938vw 0.938vw 0.938vw 1.771vw;
  }
  #header .inner .header-left {
    width: 12.5vw;
    margin-top: 0.208vw;
  }
  #header .inner .header-right nav ul {
    gap: 0.208vw 2.083vw;
    margin-left: 2.604vw;
  }
  #header .inner .header-right nav ul li {
    gap: 0.677vw;
    font-size: 1.042vw;
  }
  #header .inner .header-right nav ul li::before {
    width: 0.625vw;
    height: 0.625vw;
  }
  #header .inner .header-right .header-btns {
    margin-left: 2.083vw;
    font-size: 1.146vw;
    gap: 0.938vw;
  }
  #header .inner .header-right .header-btns div {
    width: 14.583vw;
    height: 3.854vw;
  }
}
/* ---- footer ----*/
#footer .inner {
  position: relative;
  max-width: 1200px;
  padding: min(80px, 6.667vw) min(20px, 1.667vw);
  margin: 0 auto;
}
#footer .inner .btn-top {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(140deg, #24446d 0%, #406fab 100%);
  border: solid #fff min(1px, 0.083vw);
  width: min(84px, 7vw);
  height: min(84px, 7vw);
  border-radius: 50%;
  overflow: hidden;
  transition: 0.3s;
}
#footer .inner .btn-top a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
#footer .inner .btn-top a .btn-top-img {
  background-image: url(/assets/images/common/btn-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: min(31px, 2.583vw);
  height: min(37px, 3.083vw);
}
#footer .inner .btn-top:hover {
  transform: translateY(-60%);
}
#footer .inner .footer-grid-cont {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#footer .inner .footer-grid-cont .footer-info {
  width: min(324px, 27vw);
}
#footer .inner .footer-grid-cont .footer-info address {
  margin-top: min(25px, 2.083vw);
  line-height: 1.667;
  font-size: min(15px, 1.25vw);
}
#footer .inner .footer-grid-cont .footer-info address a {
  display: block;
  margin-top: min(15px, 1.25vw);
  font-size: min(24px, 2vw);
  font-weight: 600;
  color: #24446d;
}
#footer .inner .footer-grid-cont .footer-links {
  width: min(560px, 46.667vw);
  margin-left: auto;
}
#footer .inner .footer-grid-cont .footer-links nav ul {
  display: flex;
  justify-content: right;
  gap: min(40px, 3.333vw);
}
#footer .inner .footer-grid-cont .footer-links nav ul li {
  display: flex;
  align-items: center;
  gap: min(13px, 1.083vw);
  font-size: min(19px, 1.583vw);
  font-weight: 600;
}
#footer .inner .footer-grid-cont .footer-links nav ul li::before {
  content: "";
  display: inline-block;
  width: min(11px, 0.917vw);
  height: min(11px, 0.917vw);
  background: linear-gradient(90deg, #24446d 0%, #d5ae59 100%);
  border-radius: 50%;
}
#footer .inner .footer-grid-cont .footer-links nav ul li a {
  transition: 0.3s;
}
#footer .inner .footer-grid-cont .footer-links nav ul li a:hover {
  color: #b29350;
}
#footer .inner .footer-grid-cont .footer-links .footer-btns {
  margin-top: min(53px, 4.417vw);
  font-size: min(21px, 1.75vw);
  font-weight: 600;
  color: #fff;
  display: grid;
  justify-content: flex-end;
  gap: min(20px, 1.667vw);
  font-family: "Poppins", sans-serif;
}
#footer .inner .footer-grid-cont .footer-links .footer-btns div {
  width: min(400px, 33.333vw);
  height: min(74px, 6.167vw);
}
#footer .inner .footer-grid-cont .footer-bottom {
  grid-column: 1/-1;
  margin-top: min(97px, 8.083vw);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  letter-spacing: 0.07vw;
}
#footer .inner .footer-grid-cont .footer-bottom nav ul {
  display: flex;
  flex-wrap: wrap;
  font-size: min(14px, 1.167vw);
  line-height: 1.929;
  gap: min(6px, 0.5vw) min(14px, 1.167vw);
  width: min(615px, 51.25vw);
}
#footer .inner .footer-grid-cont .footer-bottom nav ul li {
  display: flex;
  align-items: center;
  gap: min(14px, 1.167vw);
}
#footer .inner .footer-grid-cont .footer-bottom nav ul li::after {
  content: "";
  display: block;
  width: min(1px, 0.083vw);
  height: min(14px, 1.167vw);
  background-color: #222;
}
#footer .inner .footer-grid-cont .footer-bottom nav ul .none-line::after {
  display: none;
}
#footer .inner .footer-grid-cont .footer-bottom p {
  font-size: min(13px, 1.083vw);
  text-align: right;
}

@media (min-width: 1920px) {
  #footer .inner {
    max-width: 62.5vw;
    padding: 4.167vw 1.042vw;
  }
  #footer .inner .btn-top {
    border: solid #fff 0.052vw;
    width: 4.375vw;
    height: 4.375vw;
  }
  #footer .inner .btn-top a .btn-top-img {
    width: 1.615vw;
    height: 1.927vw;
  }
  #footer .inner .footer-grid-cont .footer-info {
    width: 16.875vw;
  }
  #footer .inner .footer-grid-cont .footer-info address {
    margin-top: 1.302vw;
    font-size: 0.781vw;
  }
  #footer .inner .footer-grid-cont .footer-info address a {
    margin-top: 0.781vw;
    font-size: 1.25vw;
  }
  #footer .inner .footer-grid-cont .footer-links {
    width: 29.167vw;
  }
  #footer .inner .footer-grid-cont .footer-links nav ul {
    gap: 2.083vw;
  }
  #footer .inner .footer-grid-cont .footer-links nav ul li {
    gap: 0.677vw;
    font-size: 0.99vw;
  }
  #footer .inner .footer-grid-cont .footer-links nav ul li::before {
    width: 0.573vw;
    height: 0.573vw;
  }
  #footer .inner .footer-grid-cont .footer-links .footer-btns {
    margin-top: 2.76vw;
    font-size: 1.094vw;
    gap: 1.042vw;
  }
  #footer .inner .footer-grid-cont .footer-links .footer-btns div {
    width: 20.833vw;
    height: 3.854vw;
  }
  #footer .inner .footer-grid-cont .footer-bottom {
    margin-top: 5.052vw;
  }
  #footer .inner .footer-grid-cont .footer-bottom nav ul {
    font-size: 0.729vw;
    gap: 0.313vw 0.729vw;
    width: 32.031vw;
  }
  #footer .inner .footer-grid-cont .footer-bottom nav ul li {
    gap: 0.729vw;
  }
  #footer .inner .footer-grid-cont .footer-bottom nav ul li::after {
    width: 0.052vw;
    height: 0.729vw;
  }
  #footer .inner .footer-grid-cont .footer-bottom p {
    font-size: 0.677vw;
  }
}
/* ---- contact ----*/
.contact {
  background-image: url(/assets/images/common/img-contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: min(110px, 9.167vw) 0 min(86px, 7.167vw);
}
.contact .inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.contact .inner h2 {
  font-size: min(40px, 3.333vw);
  font-weight: 800;
}
.contact .inner p {
  font-size: min(24px, 2vw);
  margin-top: min(10px, 0.833vw);
  font-weight: 600;
}
.contact .inner .tel {
  width: min(600px, 50vw);
  height: min(120px, 10vw);
  border: solid #fff min(3px, 0.25vw);
  margin: min(40px, 3.333vw) auto 0;
  transition: 0.3s;
}
.contact .inner .tel a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: min(20px, 1.667vw);
  font-weight: 500;
  font-size: min(40px, 3.333vw);
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}
.contact .inner .tel a span {
  font-size: min(38px, 3.167vw);
}
.contact .inner .btn-grad-white {
  margin: min(54px, 4.5vw) auto 0;
}

@media (min-width: 1920px) {
  .contact {
    padding: 5.729vw 0 4.479vw;
  }
  .contact .inner {
    max-width: 62.5vw;
  }
  .contact .inner h2 {
    font-size: 2.083vw;
  }
  .contact .inner p {
    font-size: 1.25vw;
    margin-top: 0.521vw;
  }
  .contact .inner .tel {
    width: 31.25vw;
    height: 6.25vw;
    border: solid #fff 0.156vw;
    margin: 2.083vw auto 0;
  }
  .contact .inner .tel a {
    gap: 1.042vw;
    font-size: 2.083vw;
  }
  .contact .inner .tel a span {
    font-size: 1.979vw;
  }
  .contact .inner .btn-grad-white {
    margin: 2.813vw auto 0;
  }
}
/* ---- btn ----*/
.btn-tel {
  letter-spacing: 0.06vw;
  position: relative;
  box-sizing: border-box;
}
.btn-tel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: linear-gradient(90deg, #24446d 0%, #406fab 100%);
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  transition: 0.3s;
}
.btn-tel a {
  display: grid;
  place-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  transition: 0.3s;
  color: #fff;
}
@media (hover: hover) {
  .btn-tel:hover::before {
    opacity: 0;
  }
  .btn-tel:hover {
    border: solid min(2px, 0.167vw) #24446d;
  }
  .btn-tel:hover a {
    color: #24446d;
  }
}

.btn-contact {
  letter-spacing: 0.06vw;
  position: relative;
  box-sizing: border-box;
}
.btn-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #856d38 0%, #b29350 100%);
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  transition: 0.3s;
}
.btn-contact a {
  display: grid;
  place-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  transition: 0.3s;
  color: #fff;
}
@media (hover: hover) {
  .btn-contact:hover::before {
    opacity: 0;
  }
  .btn-contact:hover {
    border: solid min(2px, 0.167vw) #b29350;
  }
  .btn-contact:hover a {
    color: #b29350;
  }
}

.btn-grad-main {
  background: linear-gradient(90deg, #24446d 0%, #d5ae59 100%);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: min(24px, 2vw);
  position: relative;
  width: min(340px, 28.333vw);
  height: min(70px, 5.833vw);
}
.btn-grad-main span {
  position: absolute;
  right: min(18px, 1.5vw);
  top: 50%;
  transform: translateY(-50%);
  width: min(35px, 2.917vw);
  height: min(35px, 2.917vw);
  background-color: #f7f7f7;
  display: grid;
  place-content: center;
  border-radius: 50%;
  transform-origin: center;
  transition: 0.3s;
}
.btn-grad-main span svg {
  inset: 0;
  width: min(11px, 0.917vw);
  height: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.btn-grad-main a {
  color: #fff;
  display: inline-block;
  padding-right: min(4px, 0.333vw);
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
}
.btn-grad-main:hover span {
  transform: translateY(-50%) scale(1.3);
  transform-origin: center;
}

.btn-grad-white {
  background: linear-gradient(90deg, #c5d6eb 0%, #fff 100%);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: min(24px, 2vw);
  position: relative;
  width: min(340px, 28.333vw);
  height: min(70px, 5.833vw);
}
.btn-grad-white span {
  position: absolute;
  right: min(18px, 1.5vw);
  top: 50%;
  transform: translateY(-50%);
  width: min(35px, 2.917vw);
  height: min(35px, 2.917vw);
  background-color: #24446d;
  display: grid;
  place-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.btn-grad-white span svg {
  inset: 0;
  width: min(11px, 0.917vw);
}
.btn-grad-white span svg rect {
  fill: #fff;
}
.btn-grad-white a {
  color: #24446d;
  display: inline-block;
  padding-right: min(4px, 0.333vw);
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
}
.btn-grad-white:hover span {
  transform: translateY(-50%) scale(1.3);
  transform-origin: center;
}

.top-btns {
  margin-top: min(36px, 3vw);
}
.top-btns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(14px, 1.167vw);
  width: min(755px, 62.917vw);
  margin: 0 auto;
}
.top-btns ul li {
  width: min(240px, 20vw);
  height: min(60px, 5vw);
  font-size: min(17px, 1.417vw);
  font-weight: 600;
  position: relative;
}
.top-btns ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: linear-gradient(140deg, #24446d 0%, #406fab 100%);
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  transition: 0.3s;
}
.top-btns ul li a {
  display: grid;
  place-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  transition: 0.3s;
  color: #fff;
}
@media (hover: hover) {
  .top-btns ul li:hover::before {
    opacity: 0;
  }
  .top-btns ul li:hover {
    border: solid min(2px, 0.167vw) #24446d;
  }
  .top-btns ul li:hover a {
    color: #24446d;
  }
}

a .btn-more-pdf {
  font-size: min(17px, 1.417vw);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: min(10px, 0.833vw);
  margin-top: auto;
}
a .btn-more-pdf svg {
  transition: 0.3s;
  width: min(7px, 0.583vw);
  height: auto;
  height: -moz-fit-content;
  height: fit-content;
}
a .btn-more-pdf svg rect {
  fill: #222;
}
a:hover .btn-more-pdf svg {
  transform: translateX(50%);
}

@media (min-width: 1920px) and (hover: hover) {
  .btn-tel:hover {
    border: solid 0.104vw #24446d;
  }
}
@media (min-width: 1920px) and (hover: hover) {
  .btn-contact:hover {
    border: solid 0.104vw #b29350;
  }
}
@media (min-width: 1920px) {
  .btn-grad-main {
    font-size: 1.25vw;
    width: 17.708vw;
    height: 3.646vw;
  }
  .btn-grad-main span {
    right: 0.938vw;
    width: 1.823vw;
    height: 1.823vw;
  }
  .btn-grad-main span svg {
    width: 0.573vw;
  }
  .btn-grad-main a {
    padding-right: 0.208vw;
  }
  .btn-grad-white {
    font-size: 1.25vw;
    width: 17.708vw;
    height: 3.646vw;
  }
  .btn-grad-white span {
    right: 0.938vw;
    width: 1.823vw;
    height: 1.823vw;
  }
  .btn-grad-white span svg {
    width: 0.573vw;
  }
  .btn-grad-white a {
    padding-right: 0.208vw;
  }
  .top-btns {
    margin-top: 1.875vw;
  }
  .top-btns ul {
    gap: 0.729vw;
    width: 39.323vw;
  }
  .top-btns ul li {
    width: 12.5vw;
    height: 3.125vw;
    font-size: 0.885vw;
  }
}
@media (min-width: 1920px) and (hover: hover) {
  .top-btns ul li:hover {
    border: solid 0.104vw #24446d;
  }
}
@media (min-width: 1920px) {
  .btn-more-pdf {
    font-size: 0.885vw;
    gap: 0.521vw;
  }
  .btn-more-pdf svg {
    width: 0.365vw;
  }
}
/* ---- page-style ----*/
.page-title-bg {
  background-image: url(/assets/images/common/img-title-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  place-content: center;
  height: min(280px, 23.333vw);
  width: 100%;
}
.page-title-bg .page-title {
  color: #fff;
  text-align: center;
  font-weight: 600;
  display: grid;
  gap: min(25px, 2.083vw);
  justify-content: center;
}
.page-title-bg .page-title h1 {
  font-size: min(50px, 4.167vw);
  line-height: 1;
}
.page-title-bg .page-title p {
  font-size: min(20px, 1.667vw);
  line-height: 2;
}

.breadcrumb {
  margin-top: min(30px, 2.5vw);
}
.breadcrumb .inner {
  max-width: calc(1200px + min(40px, 3.333vw));
  padding-inline: min(20px, 1.667vw);
  margin: 0 auto;
}
.breadcrumb .inner ol {
  display: flex;
  align-items: center;
  gap: min(15px, 1.25vw);
}
.breadcrumb .inner ol li {
  line-height: min(14px, 1.167vw);
  font-size: min(14px, 1.167vw);
  font-weight: 600;
  color: #24446d;
  display: flex;
  align-items: center;
  gap: min(15px, 1.25vw);
}
.breadcrumb .inner ol li::after {
  content: "";
  display: block;
  width: min(8px, 0.667vw);
  height: min(12px, 1vw);
  background-image: url(/assets/images/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.breadcrumb .inner ol li:last-child::after {
  display: none;
}

.page-h2 {
  font-size: min(35px, 2.917vw);
  text-align: center;
  color: #24446d;
  font-weight: 600;
  display: grid;
  justify-content: center;
}
.page-h2::after {
  content: "";
  display: block;
  width: min(100px, 8.333vw);
  height: min(5px, 0.417vw);
  background: linear-gradient(90deg, #24446d 0%, #d5ae59 100%);
  margin: min(12px, 1vw) auto 0;
}

.page-h2-white {
  color: #fff;
}
.page-h2-white::after {
  background: #fff;
}

.news-single-content h3,
.page-h3 {
  font-size: min(22px, 1.833vw);
  font-weight: 600;
  color: #24446d;
  display: grid;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.news-single-content h3::after,
.page-h3::after {
  content: "";
  display: block;
  width: min(100px, 8.333vw);
  height: min(5px, 0.417vw);
  background: linear-gradient(90deg, #24446d 0%, #d5ae59 100%);
  margin: min(12px, 1vw) 0 0;
}

.page-table {
  font-size: min(15px, 1.25vw);
}
.page-table tr:last-child th {
  padding-bottom: 0;
  border-bottom: none;
}
.page-table tr:last-child td {
  padding-bottom: 0;
  border-bottom: none;
}
.page-table tr th {
  padding-top: min(23px, 1.917vw);
  color: #b29350;
  font-weight: 600;
  height: 100%;
  border-bottom: solid min(1px, 0.083vw) #b29350;
}
.page-table tr td {
  padding: min(23px, 1.917vw) 0;
  border-bottom: solid min(1px, 0.083vw) #b7bdc6;
}
.page-table thead tr.page-table-top th {
  padding-bottom: min(23px, 1.917vw);
  border-bottom: solid min(1px, 0.083vw) #b29350;
}

.page-box-white {
  background-color: #fff;
  padding: min(60px, 5vw) min(70px, 5.833vw);
  margin: 0 auto;
}

.news-single-content a, .link-gold {
  color: #b29350;
  text-decoration: underline;
}
.news-single-content a:hover, .link-gold:hover {
  text-decoration: none;
}

@media (min-width: 1920px) {
  .page-title-bg {
    height: 14.583vw;
  }
  .page-title-bg .page-title {
    gap: 1.302vw;
  }
  .page-title-bg .page-title h1 {
    font-size: 2.604vw;
  }
  .page-title-bg .page-title p {
    font-size: 1.042vw;
  }
  .breadcrumb {
    margin-top: 1.563vw;
  }
  .breadcrumb .inner {
    max-width: 64.583vw;
    padding-inline: 1.042vw;
  }
  .breadcrumb .inner ol {
    gap: 0.781vw;
  }
  .breadcrumb .inner ol li {
    line-height: 0.729vw;
    font-size: 0.729vw;
    gap: 0.781vw;
  }
  .breadcrumb .inner ol li::after {
    width: 0.417vw;
    height: 0.625vw;
  }
  .page-h2 {
    font-size: 1.823vw;
  }
  .page-h2::after {
    width: 5.208vw;
    height: 0.26vw;
    margin: 0.625vw auto 0;
  }
  .news-single-content h3,
  .page-h3 {
    font-size: 1.146vw;
  }
  .news-single-content h3::after,
  .page-h3::after {
    width: 5.208vw;
    height: 0.26vw;
    margin: 0.625vw 0 0;
  }
  .page-table {
    font-size: 0.781vw;
  }
  .page-table tr th {
    padding-top: 1.198vw;
    border-bottom: solid 0.052vw #b29350;
  }
  .page-table tr td {
    padding: 1.198vw 0;
    border-bottom: solid 0.052vw #b7bdc6;
  }
  .page-table thead tr.page-table-top th {
    padding-bottom: 1.198vw;
    border-bottom: solid 0.052vw #b29350;
  }
  .page-box-white {
    padding: 3.125vw 3.646vw;
  }
}/*# sourceMappingURL=common.css.map */