@charset "UTF-8";
html {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
}

body {
  background: #ffffff;
  padding: 0;
  margin: 0;
}

p,
div {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

li {
  box-sizing: border-box;
}

.sp-only {
  display: none !important;
}

@media (max-width: 780px) {
  html {
    font-size: 3.3333333333svw;
    overflow-x: hidden;
  }
  .sp-only {
    display: block !important;
  }
  .pc-only {
    display: none !important;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100svw;
  width: 100cqw;
  min-width: 1200px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    0.2s height,
    0.8s top;
  user-select: none;
  background-color: #ffffff;
}
header.is-hidden {
  top: -80px;
}
header::before {
  content: " ";
  width: 100svw;
  height: 53px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ff00ff;
  opacity: 0;
  z-index: 1;
  transition: 1s;
  pointer-events: none; /* タップ/クリックを透過させる */
}
header:hover.is-hidden {
  top: 0;
}
header:hover::before {
  top: -53px;
}
header.thin {
  height: 53px;
}
header.thin .header-logo,
header.thin .header-menu,
header.thin .header-menu > div,
header.thin .header-bg,
header.thin .header-bg::before,
header.thin .header-bg::after {
  height: 53px;
}
header.thin .header-submenu {
  top: 53px;
}
header.show .header-bg.in::before {
  opacity: 0;
}
header.show:hover .header-logo img {
  filter: none;
}
header.show:hover .header-bg::after {
  top: 0px;
}
header .header-bg {
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.2s height;
}
header .header-bg::before {
  content: " ";
  width: calc(50% - 550px + 710px);
  height: 80px;
  position: absolute;
  top: 0;
  right: calc(-50% + 550px - 710px);
  background-image: url(../images/common/header_bg.svg);
  background-size: auto 80px;
  background-position-x: 0;
  background-position-y: bottom;
  opacity: 0.2;
  transform: rotateX(-360deg);
  transition: 1.6s all;
  z-index: -1;
}
header .header-bg.in::before {
  transform: rotateX(0deg);
  right: 0;
}
header .header-bg::after {
  content: " ";
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
  background: #fcfcfc;
  background-image: url(../images/common/header_hover.svg);
  background-size: auto 80px;
  background-position-x: calc(50cqw - 550px + 390px);
  background-position-y: bottom;
  background-repeat: no-repeat;
  transition: 0.2s top;
  z-index: -1;
}
header .header-logo {
  width: calc(50% - 550px + 390px);
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: calc(50% - 550px);
  filter: none;
  transition: 0.8s opacity;
}
header .header-logo img {
  filter: none;
}
header .header-logo img:nth-child(1) {
  width: 32px;
}
header .header-logo img:nth-child(2) {
  width: 106px;
}
header .header-logo img:nth-child(3) {
  width: 218px;
  padding-left: 16px;
}
header .header-menu {
  position: relative;
  width: calc(50% - 550px + 710px);
  height: 80px;
  padding-right: calc(50% - 550px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image: url(../images/common/header_border.svg);
  background-size: auto 80px;
  background-position: left bottom;
  transition:
    0.8s opacity,
    0.2s height;
}
header .header-menu a,
header .header-menu a:hover,
header .header-menu a:visited,
header .header-menu a:active {
  color: #333333;
  text-decoration: none;
}
header .header-menu > div {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-size: 1rem;
}
header .header-menu .header-menu-home {
  position: relative;
  padding-left: 100px;
  padding-right: 18px;
}
header .header-menu .header-menu-home::before {
  content: " ";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #e60012;
  top: calc(50% - 3.5px);
  left: 84px;
  border-radius: 3.5px;
}
header .header-menu .header-menu-button {
  padding: 0 18px;
  transform: skew(45deg);
  transition: 0.2s all;
  position: relative;
}
header .header-menu .header-menu-button.red {
  background: #e60012;
}
header .header-menu .header-menu-button.red:hover {
  background: #e60012;
  color: #ffffff;
}
header .header-menu .header-menu-button.red .header-category {
  color: #ffffff;
}
header .header-menu .header-menu-button:hover {
  background: #e5eaef;
}
header .header-menu .header-menu-button:hover .header-submenu {
  opacity: 1;
  pointer-events: all;
}
header .header-menu .header-category {
  font-size: 1rem;
  transform: skew(-45deg);
}

header .header-submenu {
  position: absolute;
  top: 80px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transform: skew(-45deg);
}
header .header-submenu .header-submenu-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  background: #f2f5f7;
  border-top: 3px solid #e60012;
  display: flex;
  align-items: flex-start;
  transform: translate(-50%, 0);
}
header .header-submenu ul {
  padding: 10px 0;
  margin: 0;
  box-sizing: border-box;
}
header .header-submenu ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .header-submenu ul li div {
  font-size: 0.875rem;
  font-weight: normal;
  width: auto;
  height: 34px;
  color: #333333;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  white-space: nowrap;
  transition: 0.3s padding;
}
header .header-submenu ul li div:hover {
  padding-left: 25px;
  background-color: #ffffff;
}
header .header-submenu ul li img {
  width: 0.825rem;
  height: 0.825rem;
  padding-left: 0.5rem;
}
header .header-submenu ul li a,
header .header-submenu ul li a:hover,
header .header-submenu ul li a:visited,
header .header-submenu ul li a:active {
  text-decoration: none;
  color: #333333;
}
header .header-submenu .category {
  height: 50px;
  opacity: 0.5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #333333;
}
header .header-submenu .business {
  width: 560px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  left: 80px;
}
header .header-submenu .business li div {
  width: 280px;
  height: 60px;
  padding-left: 95px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .header-submenu .business li div:hover {
  padding-left: 100px;
}
header .header-submenu .business li div:hover::after {
  left: 40px;
}
header .header-submenu .business li div::after {
  content: " ";
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 5px;
  left: 35px;
  transition: 0.3s left;
}
header .header-submenu .business li div.icon1::after {
  background-image: url(../images/common/header_menu_icon1.png);
}
header .header-submenu .business li div.icon2::after {
  background-image: url(../images/common/header_menu_icon2.png);
}
header .header-submenu .business li div.icon3::after {
  background-image: url(../images/common/header_menu_icon3.png);
}
header .header-submenu .business li div.icon4::after {
  background-image: url(../images/common/header_menu_icon4.png);
}
header .header-submenu .business li div.icon5::after {
  background-image: url(../images/common/header_menu_icon5.png);
}
header .header-submenu .business li div.icon6::after {
  background-image: url(../images/common/header_menu_icon6.png);
}
header .header-submenu .company {
  width: 152px;
}
header .header-submenu .recruit {
  width: 226px;
}

@media (max-width: 780px) {
  header {
    min-width: auto;
    height: 3.46rem;
    display: block;
    padding-left: 0;
    opacity: 1;
    background-color: transparent;
  }
  header.thin .header-logo {
    height: 3.46rem;
  }
  header.is-hidden {
    top: 0;
  }
  header .header-bg {
    display: none;
  }
  header .header-logo {
    width: auto;
    height: 3.46rem;
    padding-left: 2rem;
    background: #003366;
  }
  header .header-logo img {
    filter: brightness(0) invert(1);
  }
  header .header-logo a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  header .header-logo img:nth-child(1) {
    filter: none;
    width: 2.02rem;
  }
  header .header-logo img:nth-child(2) {
    filter: brightness(0) invert(1);
    width: 6.68rem;
  }
  header .header-logo img:nth-child(3) {
    filter: brightness(0) invert(1);
    width: 10.3rem;
    padding-left: 0.9rem;
  }
  header .header-logo #header-sp-menu {
    display: block;
    width: 3.46rem;
    height: 3.46rem;
    position: absolute;
    top: 0;
    right: 0.8rem;
    cursor: pointer;
  }
  header .header-logo #header-sp-menu span {
    width: 1.92rem;
    height: 0.23rem;
    background: #ffffff;
    position: absolute;
    top: 1.73rem;
    left: 1.73rem;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  header .header-logo #header-sp-menu span::before,
  header .header-logo #header-sp-menu span::after {
    content: " ";
    width: 1.92rem;
    height: 0.23rem;
    background: #ffffff;
    position: absolute;
    top: 0.615rem;
    left: 0;
    transition: 0.3s;
  }
  header .header-logo #header-sp-menu span::before {
    top: 0.615rem;
  }
  header .header-logo #header-sp-menu span::after {
    top: -0.615rem;
  }
  header .header-menu {
    display: none;
    width: 100%;
    height: auto;
    max-height: calc(100svh - 3.46rem);
    overflow-x: hidden;
    overflow-y: scroll;
    background-image: none;
  }
  header .header-menu > div {
    width: 100%;
    min-width: auto;
    padding-bottom: 0;
    color: #333333;
    cursor: pointer;
    background: #d4dce5;
    border-bottom: 1px solid #e0e4e8;
  }
  header .header-menu a,
  header .header-menu a:hover,
  header .header-menu a:visited,
  header .header-menu a:active {
    text-decoration: none;
    color: #333333;
  }
  header .header-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  header .header-menu .header-menu-home {
    display: none;
  }
  header .header-menu .header-menu-button {
    width: 100%;
    height: auto;
    min-height: 4.61rem;
    font-size: 1.15rem;
    padding-left: 0;
    padding-right: 0;
    background: #d4dce5;
    justify-content: flex-start;
    flex-direction: column;
    transform: none;
  }
  header .header-menu .header-menu-button::before {
    content: " ";
    width: 1.53rem;
    height: 1.53rem;
    position: absolute;
    top: 1.54rem;
    right: 1.53rem;
    left: auto;
    background-image: url(../images/common/sp_menu_button.svg);
    background-size: 1.53rem 1.53rem;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: 0.3s transform;
    pointer-events: none;
  }
  header .header-menu .header-menu-button.open::before {
    transform: rotate(180deg);
  }
  header .header-menu .header-menu-button.red::before {
    filter: brightness(0) invert(1);
  }
  header .header-menu .header-menu-button.no-submenu::before {
    background-image: url(../images/common/nav_arrow_red_transparent.svg);
  }
  header .header-menu .header-menu-button a {
    width: 100%;
  }
  header .header-menu .header-menu-button .header-category {
    transform: none;
    width: 100%;
    height: 4.61rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1.53rem;
    font-size: 1.15rem;
    cursor: pointer;
  }
  header .header-menu .header-menu-button:hover {
    background: #d4dce5;
  }
  header .header-submenu {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    transform: none;
    width: 100%;
  }
  header .header-submenu.hide {
    display: none;
  }
  header .header-submenu .header-submenu-wrap {
    background-color: #e5eaf0;
    position: relative;
    transform: none;
    flex-direction: column;
    border-top: none;
  }
  header .header-submenu .header-submenu-wrap ul {
    padding-top: 0;
    padding-bottom: 0;
  }
  header .header-submenu .header-submenu-wrap ul li {
    height: auto;
  }
  header .header-submenu .header-submenu-wrap ul li::after {
    background-image: none;
  }
  header .header-submenu .header-submenu-wrap ul li div {
    background-color: transparent;
    border-top: 1px solid rgba(250, 251, 252, 0.5);
    position: relative;
    width: 100%;
    height: 4.61rem !important;
    padding-left: 2.69rem !important;
    border-top: 1px solid #fafbfc;
    font-size: 1.15rem;
  }
  header .header-submenu .header-submenu-wrap ul li div::after {
    display: none;
  }
  header .header-submenu .header-submenu-wrap ul li div::before {
    content: " ";
    width: 1.53rem;
    height: 1.53rem;
    position: absolute;
    top: 1.54rem;
    right: 1.53rem;
    left: auto;
    background-image: url(../images/common/nav_arrow_red_transparent.svg);
    background-size: 1.53rem 1.53rem;
    background-repeat: no-repeat;
    background-color: transparent;
    pointer-events: none;
  }
  header .header-submenu .header-submenu-wrap ul li div.link::before {
    background-image: url(../images/common/link_icon_black.svg);
    background-size: 1.3rem 1.3rem;
  }
  header .header-submenu .category {
    width: 100%;
    height: 4.61rem;
    padding-left: 2.69rem;
    font-size: 1.15rem;
  }
  header .header-submenu .category.open::before {
    transform: rotate(180deg);
  }
  header .header-submenu .business,
  header .header-submenu .company,
  header .header-submenu .recruit {
    display: block;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  header.show-sp-menu {
    background-color: transparent;
    height: auto;
  }
  header.show-sp-menu:hover .header-logo,
  header.show-sp-menu .header-logo {
    background-color: #c6d1dd;
    border-bottom: 1px solid #d7dfe7;
  }
  header.show-sp-menu:hover .header-logo img:nth-child(1),
  header.show-sp-menu:hover .header-logo img:nth-child(2),
  header.show-sp-menu:hover .header-logo img:nth-child(3),
  header.show-sp-menu .header-logo img:nth-child(1),
  header.show-sp-menu .header-logo img:nth-child(2),
  header.show-sp-menu .header-logo img:nth-child(3) {
    filter: none;
  }
  header.show-sp-menu .header-menu {
    display: block;
    opacity: 0.95;
  }
  header.show-sp-menu #header-sp-menu span {
    transform: translate(-50%, -50%) rotate(45deg);
    background: #303030;
    height: 0.15rem;
  }
  header.show-sp-menu #header-sp-menu span::after,
  header.show-sp-menu #header-sp-menu span::before {
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    background: #303030;
    height: 0.15rem;
  }
}
footer {
  background-color: #003366;
  width: 100svw;
  width: 100cqw;
  min-width: 1200px;
  position: relative;
}
footer .footer-sitemap {
  width: 1100px;
  padding: 70px 0 70px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  height: 412px;
}
footer .footer-column {
  display: flex;
  flex-direction: column;
}
footer .footer-column p {
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
  height: 24px;
  margin-bottom: 0;
}
footer .footer-column ul {
  padding: 0;
  margin: 20px 0;
}
footer .footer-column li {
  font-size: 0.875rem;
  font-weight: normal;
  list-style: none;
  height: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
footer .footer-column li.category {
  opacity: 0.5;
  margin-top: 20px;
}
footer .footer-column li.category:first-child {
  margin-top: 0;
}
footer .footer-column li img {
  width: 0.825rem;
  height: 0.825rem;
  padding-left: 0.5rem;
}
footer .footer-column a,
footer .footer-column a:visited,
footer .footer-column a:active {
  text-decoration: none;
  color: #ffffff;
}
footer .footer-column a:hover {
  text-decoration: underline;
}
footer .footer-submenu {
  display: flex;
}
footer .footer-copyright {
  width: 100%;
  height: 70px;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  background-color: #ffffff;
}

@media (max-width: 780px) {
  footer {
    min-width: auto;
  }
  footer .footer-sitemap {
    width: 100%;
    height: 12.5rem;
    margin: 0 auto;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  footer .footer-sitemap .footer-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    width: 40%;
    padding: 0 8%;
  }
  footer .footer-sitemap .footer-column p {
    font-size: 1rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
  }
  footer .footer-sitemap .footer-column:nth-child(1) {
    top: 2rem;
    left: 10%;
  }
  footer .footer-sitemap .footer-column:nth-child(1) a {
    display: inline-block;
    width: 100%;
    text-align: right;
  }
  footer .footer-sitemap .footer-column:nth-child(2) {
    top: 5rem;
    left: 10%;
  }
  footer .footer-sitemap .footer-column:nth-child(2) a {
    display: inline-block;
    width: 100%;
    text-align: right;
  }
  footer .footer-sitemap .footer-column:nth-child(3) {
    top: 8rem;
    left: 10%;
  }
  footer .footer-sitemap .footer-column:nth-child(3) a {
    display: inline-block;
    width: 100%;
    text-align: right;
  }
  footer .footer-sitemap .footer-column:nth-child(4) {
    top: 2rem;
    left: 50%;
  }
  footer .footer-sitemap .footer-column:nth-child(4) a {
    display: inline-block;
    width: 100%;
    text-align: left;
  }
  footer .footer-sitemap .footer-column:nth-child(5) {
    top: 5rem;
    left: 50%;
  }
  footer .footer-sitemap .footer-column:nth-child(5) a {
    display: inline-block;
    width: 100%;
    text-align: left;
  }
  footer .footer-sitemap .footer-column:nth-child(6) {
    top: 8rem;
    left: 50%;
  }
  footer .footer-sitemap .footer-column:nth-child(6) a {
    display: inline-block;
    width: 100%;
    text-align: left;
  }
  footer .footer-submenu {
    display: none;
  }
  footer .footer-copyright {
    min-width: auto;
    font-size: 1rem;
    height: 3rem;
  }
}
body {
  margin-top: 80px;
}
@media (max-width: 780px) {
  body {
    margin-top: 3.44rem;
  }
}

a,
a:active,
a:visited {
  color: #0066cb;
  text-decoration: none;
}

a:hover {
  color: #0066cb;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}

a.blocklink {
  color: #000000;
}
a.blocklink p:nth-child(2) {
  font-family:
    "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125rem;
  position: relative;
  margin: 0 0 14px 0;
  padding: 0 0 0 24px;
}
a.blocklink p:nth-child(2)::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(../images/common/nav_arrow_red_transparent.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
}
a.blocklink:hover figure img {
  opacity: 0.8;
}
a.blocklink:hover p:nth-child(2)::before {
  background-image: url(../images/common/nav_arrow_red.svg);
}
@media (max-width: 780px) {
  a.blocklink p:nth-child(2) {
    font-size: 1.36rem;
    line-height: 1.36rem;
    position: relative;
    margin: 0;
    padding-left: 1.8rem;
  }
  a.blocklink p:nth-child(2)::before {
    top: 0.6rem;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url(../images/common/nav_arrow_red_transparent.svg);
    background-size: 1.2rem 1.2rem;
  }
}

table,
tr,
td,
th {
  box-sizing: border-box;
}

p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 46px;
}
@media (max-width: 780px) {
  p {
    font-size: 1.28rem;
    line-height: 2.24rem;
    margin-bottom: 2.56rem;
  }
}

#breadcrumb {
  background: #ffffff;
  width: 1100px;
  height: 68px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
}
#breadcrumb > p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.875rem;
}
#breadcrumb > p > span {
  font-size: 1rem;
  color: #000000;
  padding: 0 12px;
}
@media (max-width: 780px) {
  #breadcrumb {
    display: none;
  }
}

#page-menu {
  background: #1b1311;
  max-width: 100%;
  width: 100%;
  min-height: 50px;
  overflow-x: auto;
  overflow-y: hidden;
}
#page-menu::-webkit-scrollbar {
  height: 20px;
}
#page-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#page-menu::-webkit-scrollbar-thumb {
  background-color: #a0a0a5;
  border-radius: 10px;
  border: 6px solid transparent;
  background-clip: content-box;
  -webkit-appearance: none;
  appearance: none;
}
#page-menu::-webkit-scrollbar-corner {
  background: transparent;
}
#page-menu #page-sp-menu {
  display: none;
}
#page-menu ul {
  min-width: 1100px;
  padding: 0;
  margin: 0;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
}
#page-menu ul li {
  height: 50px;
  padding: 0 30px 0 0;
  margin: 0;
  font-size: 0.875rem;
}
#page-menu ul li:first-child {
  padding-left: calc(50% - 550px);
}
#page-menu ul li:last-child {
  padding-right: calc(50% - 550px);
}
#page-menu ul li a,
#page-menu ul li a:hover,
#page-menu ul li a:active,
#page-menu ul li a:visited {
  color: #ffffff;
  white-space: nowrap;
  display: inline-block;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 780px) {
  #page-menu {
    width: 100%;
    height: auto;
    background-color: transparent;
    font-size: 1.12rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    margin: 0;
  }
  #page-menu #page-sp-menu {
    background-color: #1b1311;
    font-size: 1.28rem;
    color: #ffffff;
    padding-left: 0.8rem;
    height: 4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    cursor: pointer;
    border-bottom: 5px solid #e60012;
    margin-bottom: 0;
  }
  #page-menu #page-sp-menu span {
    width: 1.92rem;
    height: 0.23rem;
    background: #ffffff;
    position: absolute;
    top: 50%;
    right: 0.92rem;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  #page-menu #page-sp-menu span::before,
  #page-menu #page-sp-menu span::after {
    content: " ";
    width: 1.92rem;
    height: 0.23rem;
    background: #ffffff;
    position: absolute;
    top: 0.615rem;
    right: 0;
    transition: 0.3s;
  }
  #page-menu #page-sp-menu span::after {
    top: -0.615rem;
  }
  #page-menu ul {
    display: none;
    background-color: #1b1311;
    height: auto;
    min-width: auto;
  }
  #page-menu ul li {
    height: 4rem;
    border-bottom: 1px solid #ffffff;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
  }
  #page-menu ul li:first-child {
    padding-left: 1rem;
  }
  #page-menu ul li:last-child {
    padding-right: 1rem;
  }
  #page-menu ul li a,
  #page-menu ul li a:hover,
  #page-menu ul li a:active,
  #page-menu ul li a:visited {
    height: 4rem;
    justify-content: flex-start;
  }
  #page-menu ul li::before {
    content: " ";
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    left: auto;
    transform: translate(0, -50%);
    background-image: url(../images/common/nav_arrow_white_stroke.svg);
    background-size: 1.6rem 1.6rem;
    background-repeat: no-repeat;
    background-color: transparent;
    transition: 0.3s transform;
    pointer-events: none;
  }
  #page-menu.show-sp-menu ul {
    display: block;
  }
  #page-menu.show-sp-menu #page-sp-menu span {
    transform: translate(-50%, -50%) rotate(45deg);
    height: 0.15rem;
  }
  #page-menu.show-sp-menu #page-sp-menu span::before {
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    height: 0.15rem;
  }
  #page-menu.show-sp-menu #page-sp-menu span::after {
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    height: 0.15rem;
  }
}

h1 {
  width: 100%;
  height: 105px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border-top: 5px solid #e60012;
  background: #f1f1f1;
  font-family:
    "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.5rem;
  font-weight: normal;
  color: #000000;
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  margin: 0 0 40px 0;
  box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
}
h1::before {
  content: " ";
  width: 30%;
  height: 100px;
  position: absolute;
  right: -50px;
  top: 0;
  background: #e60012;
  z-index: -1;
  transform: skewX(-45deg);
}
@media (max-width: 780px) {
  h1 {
    width: 100%;
    height: 3.62rem;
    font-size: 1.77rem;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 0 1.44rem 0;
    border-top: none;
  }
  h1::before {
    right: -12%;
  }
}

h2 {
  min-width: 1100px;
  width: auto;
  position: relative;
  border-bottom: 1px solid #e60012;
  font-family:
    "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.875rem;
  font-weight: normal;
  color: #000000;
  padding: 0;
  margin: 20px calc(50% - 550px);
  box-sizing: border-box;
}
@media (max-width: 780px) {
  h2 {
    min-width: auto;
    width: calc(100% - 4rem);
    font-size: 1.6rem;
    padding-left: 0;
    padding-right: 0;
    margin: 0 2rem 1.6rem 2rem;
    border-bottom: 1px solid #e60012;
  }
}

h3 {
  min-width: 1100px;
  width: auto;
  background: #f1f1f1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-family:
    "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: #333333;
  padding: 6px 10px;
  margin: 0 calc(50% - 550px) 32px calc(50% - 550px);
  box-sizing: border-box;
}
@media (max-width: 780px) {
  h3 {
    min-width: auto;
    width: calc(100% - 2.4rem);
    font-size: 1.44rem;
    padding: 0.8rem;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
    margin-bottom: 1.6rem;
  }
}
h3.simple {
  color: #003366;
  background: none;
  padding: 0;
}

h4 {
  position: relative;
  font-family:
    "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125rem;
  font-weight: normal;
  color: #333333;
  padding: 0 0 0 24px;
  box-sizing: border-box;
  margin: 0 0 20px 0;
}
h4::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #003366;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  margin: 0 0 1.6rem 0;
}
@media (max-width: 780px) {
  h4 {
    font-size: 1.28rem;
    padding-left: 1.92rem;
  }
  h4::before {
    width: 1.28rem;
    height: 1.28rem;
  }
}

ul.wp-block-list {
  position: relative;
  font-size: 1rem;
  font-weight: normal;
  color: #333333;
  padding: 0;
  margin: 0 0 60px 0;
  box-sizing: border-box;
  list-style: none;
}
ul.wp-block-list li {
  position: relative;
  margin-bottom: 24px;
  padding-left: 18px;
}
ul.wp-block-list li::before {
  content: " ";
  width: 11px;
  height: 11px;
  position: absolute;
  left: 0;
  top: 50%;
  background-image: url(../images/common/list_arrow.svg);
  background-size: 11px 11px;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
}
ul.wp-block-list li img {
  vertical-align: middle;
}
ul.wp-block-list a,
ul.wp-block-list a:visited,
ul.wp-block-list a:hover,
ul.wp-block-list a:active {
  color: #000000;
}
@media (max-width: 780px) {
  ul.wp-block-list {
    font-size: 1.28rem;
    margin: 0 0 2.88rem 0;
  }
  ul.wp-block-list li {
    margin-bottom: 1.92rem;
    padding-left: 1.44rem;
  }
  ul.wp-block-list li::before {
    width: 0.88rem;
    height: 0.88rem;
    top: 0.5rem;
    background-size: 0.88rem 0.88rem;
    transform: none;
  }
}

.link-arrow {
  position: relative;
  margin-bottom: 24px;
}
.link-arrow a,
.link-arrow a:visited,
.link-arrow a:hover,
.link-arrow a:active {
  color: #333333;
  font-family:
    "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 20px;
  padding-left: 32px;
}
.link-arrow a::before,
.link-arrow a:visited::before,
.link-arrow a:hover::before,
.link-arrow a:active::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/common/nav_arrow_red_transparent.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
}
.link-arrow a:hover::before {
  background-image: url(../images/common/nav_arrow_red.svg);
}
@media (max-width: 780px) {
  .link-arrow {
    margin-bottom: 1rem;
  }
  .link-arrow a,
  .link-arrow a:visited,
  .link-arrow a:hover,
  .link-arrow a:active {
    font-size: 1.44rem;
    padding-left: 2.56rem;
  }
  .link-arrow a::before,
  .link-arrow a:visited::before,
  .link-arrow a:hover::before,
  .link-arrow a:active::before {
    width: 1.6rem;
    height: 1.6rem;
    background-size: 1.6rem 1.6rem;
  }
}

figure.wp-block-image {
  padding: 0;
  margin: 0 0 8px 0;
}
figure.wp-block-image p {
  margin-bottom: 1rem !important;
}
figure.wp-block-image.size-full {
  width: 100%;
}
figure.wp-block-image.size-full img {
  width: 100%;
  vertical-align: baseline;
}

/* liveAreaWaku直下のみ反映するスタイル */
#liveAreaWaku {
  width: 100svw;
  width: 100cqw;
  min-width: 1200px;
}
@media (max-width: 780px) {
  #liveAreaWaku {
    min-width: auto;
  }
}

#liveAreaWaku > h4 {
  min-width: 1100px;
  width: auto;
  margin: 0 calc(50% - 550px) 20px calc(50% - 550px);
}
@media (max-width: 780px) {
  #liveAreaWaku > h4 {
    min-width: auto;
    width: calc(100% - 4rem);
    margin: 0 2rem 1.6rem 2rem;
  }
}

#liveAreaWaku > p {
  width: 100%;
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  margin: 0 0 46px 0;
  color: #000000;
}
@media (max-width: 780px) {
  #liveAreaWaku > p {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 0 2.88rem 0;
  }
}

#liveAreaWaku > .wp-block-wrap {
  width: 100%;
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  margin: 0 0 60px 0;
  color: #000000;
}
@media (max-width: 780px) {
  #liveAreaWaku > .wp-block-wrap {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 0 2.4rem 0;
  }
}

#liveAreaWaku > .wp-block-list {
  min-width: 1100px;
  width: auto;
  margin: 0 calc(50% - 550px) 60px calc(50% - 550px);
}
@media (max-width: 780px) {
  #liveAreaWaku > .wp-block-list {
    min-width: auto;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 0 2.88rem 0;
  }
}

#liveAreaWaku > .wp-block-columns.is-layout-flex {
  min-width: 1100px;
  width: auto;
  position: relative;
  padding: 0;
  margin: 0 calc(50% - 550px) 20px calc(50% - 550px);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#liveAreaWaku > .wp-block-columns > div {
  position: relative;
  padding-left: 20px;
  margin-bottom: 40px;
}
#liveAreaWaku > .wp-block-columns > div:first-child {
  padding-left: 0;
}
#liveAreaWaku > .wp-block-columns > div div:last-child,
#liveAreaWaku > .wp-block-columns > div p:last-child {
  margin-bottom: 0;
}
#liveAreaWaku > .wp-block-columns p {
  margin-bottom: 20px;
}
#liveAreaWaku > .wp-block-columns.reverse.is-layout-flex {
  flex-direction: row-reverse;
}
#liveAreaWaku > .wp-block-columns.reverse.is-layout-flex > div {
  position: relative;
  padding-left: 0;
}
#liveAreaWaku > .wp-block-columns.reverse.is-layout-flex > div:first-child {
  padding-left: 20px;
}
#liveAreaWaku > .wp-block-columns.columns-2-1 > div {
  width: 33.33%;
}
#liveAreaWaku > .wp-block-columns.columns-2-1 > div:first-child {
  width: 66.66%;
}
#liveAreaWaku > .wp-block-columns.columns-1-2 > div {
  width: 66.66%;
}
#liveAreaWaku > .wp-block-columns.columns-1-2 > div:first-child {
  width: 33.33%;
}
#liveAreaWaku > .wp-block-columns.columns-2 > div {
  width: calc(50% - 50px);
  padding-left: 0;
}
#liveAreaWaku > .wp-block-columns.columns-3 > div {
  width: calc(33% - 42px);
  padding-left: 0;
}
#liveAreaWaku > .wp-block-columns.columns-4 > div {
  width: calc(25% - 22px);
  padding-left: 0;
}
#liveAreaWaku > .wp-block-columns.blue > div {
  background: #f1f1f1;
  padding: 70px 19px 22px 19px;
}
#liveAreaWaku > .wp-block-columns.blue > div::before {
  content: " ";
  width: 170px;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 35px;
  background-color: #003366;
  background-image: linear-gradient(-45deg, #f1f1f1 28px, transparent 0);
  color: #ffffff;
  font-family:
    "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125rem;
  font-weight: normal;
}
#liveAreaWaku > .wp-block-columns.blue > div.Summary::before {
  content: "Summary";
}
#liveAreaWaku > .wp-block-columns.blue > div.Speciality::before {
  content: "Speciality";
}
@media (max-width: 780px) {
  #liveAreaWaku > .wp-block-columns.is-layout-flex {
    min-width: auto;
    width: calc(100% - 4rem);
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 2.4rem;
  }
  #liveAreaWaku > .wp-block-columns.reverse.is-layout-flex > div:first-child {
    padding-left: 0;
  }
  #liveAreaWaku > .wp-block-columns.columns-1-2 > div,
  #liveAreaWaku > .wp-block-columns.columns-2-1 > div {
    width: 100%;
    padding-left: 0;
  }
  #liveAreaWaku > .wp-block-columns.columns-1-2 > div:first-child,
  #liveAreaWaku > .wp-block-columns.columns-2-1 > div:first-child {
    width: 100%;
  }
  #liveAreaWaku > .wp-block-columns.columns-sp-1 > div {
    width: 100%;
    margin-bottom: 2.4rem;
  }
  #liveAreaWaku > .wp-block-columns.columns-sp-1 > div:last-child {
    margin-bottom: 0;
  }
  #liveAreaWaku > .wp-block-columns.columns-sp-2 > div {
    width: calc(50% - 0.36rem);
    padding-left: 0;
  }
  #liveAreaWaku > .wp-block-columns.columns-sp-2 > div:last-child {
    margin-bottom: 0;
  }
  #liveAreaWaku > .wp-block-columns.blue > div {
    padding: 3.84rem 1.52rem 1.76rem 1.52rem;
  }
  #liveAreaWaku > .wp-block-columns.blue > div::before {
    content: " ";
    width: 13.6rem;
    height: 3.2rem;
    font-size: 1.44rem;
    background-image: linear-gradient(-45deg, #f1f1f1 2.24rem, transparent 0);
  }
}

#liveAreaWaku > .wp-block-table {
  min-width: 1100px;
  width: auto;
  position: relative;
  padding: 0;
  margin: 0 calc(50% - 550px) 60px calc(50% - 550px);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
#liveAreaWaku > .wp-block-table table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 100%;
}
#liveAreaWaku > .wp-block-table table thead tr th,
#liveAreaWaku > .wp-block-table table thead tr td,
#liveAreaWaku > .wp-block-table table:not(.company) tbody tr th {
  font-size: 0.8125rem;
  background-color: #003366;
  color: #ffffff;
  font-weight: bold;
  border-right: 1px solid #ffffff;
  padding: 10px;
}
#liveAreaWaku > .wp-block-table table tbody tr td {
  font-size: 0.8125rem;
  padding: 10px;
  border-right: 1px solid #a0a0a5;
  border-top: 1px solid #a0a0a5;
}
#liveAreaWaku > .wp-block-table table tbody tr td:last-child {
  border-right: none;
}
#liveAreaWaku > .wp-block-table table tbody tr:first-child td {
  border-top: none;
}
#liveAreaWaku > .wp-block-table.company table tbody tr th {
  font-size: 0.8125rem;
  background-color: #003366;
  color: #ffffff;
  font-weight: bold;
  border-right: 1px solid #ffffff;
}
#liveAreaWaku > .wp-block-table table tbody tr th:last-child {
  border-right: none;
}
#liveAreaWaku > .wp-block-table table tbody tr:nth-child(odd) td {
  background-color: #f5f5f6;
  color: #333333;
}
#liveAreaWaku > .wp-block-table table tbody tr:nth-child(even) td {
  background-color: #e3e8ee;
  color: #333333;
}
#liveAreaWaku > .wp-block-table table.company tbody tr td {
  padding: 12px 10px;
  border: 0;
}
#liveAreaWaku > .wp-block-table table.company tbody th {
  font-size: 0.8rem;
  font-weight: bold;
  border-bottom: 1px solid #003366;
  text-align: left;
  padding-left: 28px;
}
#liveAreaWaku > .wp-block-table table.company tbody tr:nth-child(odd) td {
  background-color: transparent;
  color: #333333;
  border-bottom: 1px solid #c4c4c4;
  padding-left: 36px;
}
#liveAreaWaku > .wp-block-table table.company tbody tr:nth-child(even) td {
  background-color: transparent;
  color: #333333;
  border-bottom: 1px solid #c4c4c4;
  padding-left: 36px;
}
#liveAreaWaku > .wp-block-table table.company tbody tr:first-child td {
  background-color: transparent;
  color: #333333;
  font-weight: normal;
  border-bottom: 1px solid #c4c4c4;
  padding-left: 36px;
}
#liveAreaWaku > .wp-block-table table.company tbody td:last-child {
  text-align: right;
  padding-left: 16px;
  padding-right: 16px;
}
#liveAreaWaku > .wp-block-table table.company tbody td:last-child a,
#liveAreaWaku > .wp-block-table table.company tbody td:last-child a:visited,
#liveAreaWaku > .wp-block-table table.company tbody td:last-child a:hover,
#liveAreaWaku > .wp-block-table table.company tbody td:last-child a:active {
  color: #003366;
  font-weight: bold;
}
#liveAreaWaku > .wp-block-table table.company tbody td:last-child a {
  background-color: #f5f5f6;
  display: inline-flex;
  width: 76px;
  height: 36px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 32px;
  box-sizing: border-box;
  position: relative;
}
#liveAreaWaku > .wp-block-table table.company tbody td:last-child a::before {
  content: " ";
  width: 15px;
  height: 22px;
  position: absolute;
  top: 7px;
  left: 11px;
  background-image: url(../images/common/map.svg);
  background-repeat: no-repeat;
}
#liveAreaWaku > .wp-block-table table.company tbody td:last-child a:hover {
  opacity: 0.8;
}
@media (max-width: 780px) {
  #liveAreaWaku > .wp-block-table {
    min-width: auto;
    width: 100%;
    margin: 0 0 3.2rem 0;
    overflow-x: auto;
  }
  #liveAreaWaku > .wp-block-table table {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  #liveAreaWaku > .wp-block-table table tbody tr td {
    font-size: 1.04rem;
    white-space: nowrap;
    line-height: 1.2rem;
  }
  #liveAreaWaku > .wp-block-table table.company tbody tr td {
    padding-top: 1.84rem;
    padding-bottom: 0.88rem;
  }
  #liveAreaWaku > .wp-block-table table.company tbody tr td:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }
  #liveAreaWaku > .wp-block-table table.company tbody tr td:nth-child(2) p {
    font-size: 1.04rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  #liveAreaWaku > .wp-block-table table.company tbody tr td:last-child {
    padding-left: 0;
    padding-right: 0;
    vertical-align: bottom;
  }
  #liveAreaWaku > .wp-block-table table.company tbody tr td:last-child a {
    padding-left: 2.64rem;
    width: 6rem;
    height: 3.84rem;
  }
  #liveAreaWaku
    > .wp-block-table
    table.company
    tbody
    tr
    td:last-child
    a::before {
    top: 1.2rem;
    left: 1.1rem;
  }
}

#liveAreaWaku > .wp-scroll-table {
  min-width: 1100px;
  width: auto;
  position: relative;
  padding: 0;
  margin: 0 calc(50% - 550px) 60px calc(50% - 550px);
  box-sizing: border-box;
  display: block;
}
#liveAreaWaku > .wp-scroll-table .caption {
  display: flex;
  width: 100%;
  min-height: 54px;
  position: relative;
  justify-content: space-between;
}
#liveAreaWaku > .wp-scroll-table .caption .caption-name {
  font-family:
    "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #003366;
  width: 250px;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#liveAreaWaku > .wp-scroll-table .caption .caption-name img {
  margin-left: 16px;
}
#liveAreaWaku > .wp-scroll-table .caption .caption-unit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  border-left: 1px solid #a0a0a5;
}
#liveAreaWaku > .wp-scroll-table .caption .caption-unit P:first-child {
  color: #003366;
  font-size: 1.25rem;
  font-weight: normal;
  padding: 8px 14px 16px 14px;
  margin: 0;
  flex-grow: 1;
}
#liveAreaWaku > .wp-scroll-table .caption .caption-unit p:last-child {
  color: #333333;
  font-size: 0.875rem;
  font-weight: normal;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#liveAreaWaku > .wp-scroll-table .scroll {
  width: 100%;
  overflow-x: scroll;
}
#liveAreaWaku > .wp-scroll-table table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 100%;
}
#liveAreaWaku > .wp-scroll-table table tbody tr td,
#liveAreaWaku > .wp-scroll-table table tbody tr th {
  font-size: 0.8125rem;
  padding: 10px 32px 10px 10px;
  background-color: #f5f5f6;
  color: #333333;
  line-height: 1.125rem;
  text-align: left;
  z-index: 0;
  min-width: 100px;
  border-right: 1px solid #a0a0a5;
  border-top: 1px solid #a0a0a5;
}
#liveAreaWaku > .wp-scroll-table table tbody tr td:last-child,
#liveAreaWaku > .wp-scroll-table table tbody tr th:last-child {
  border-right: none;
}
#liveAreaWaku > .wp-scroll-table table tbody tr td.fixed,
#liveAreaWaku > .wp-scroll-table table tbody tr th.fixed {
  position: sticky;
  z-index: 2;
}
#liveAreaWaku > .wp-scroll-table table tbody tr td.fixed.pos1,
#liveAreaWaku > .wp-scroll-table table tbody tr th.fixed.pos1 {
  left: 0;
  width: 120px;
  min-width: 120px;
}
#liveAreaWaku > .wp-scroll-table table tbody tr td.fixed.pos2,
#liveAreaWaku > .wp-scroll-table table tbody tr th.fixed.pos2 {
  left: 120px;
  width: 120px;
  min-width: 120px;
}
#liveAreaWaku > .wp-scroll-table table tbody tr:last-child td {
  border-top: none;
}
#liveAreaWaku > .wp-scroll-table table tbody tr.header td,
#liveAreaWaku > .wp-scroll-table table tbody tr.header th {
  font-weight: bold;
  background-color: #003366;
  color: #ffffff;
  border-top: none;
  border-right: 1px solid #ffffff;
}
#liveAreaWaku > .wp-scroll-table table tbody tr.header td.fixed,
#liveAreaWaku > .wp-scroll-table table tbody tr.header th.fixed {
  background-color: #96b9db;
  color: #003366;
}
@media (max-width: 780px) {
  #liveAreaWaku > .wp-scroll-table {
    min-width: auto;
    width: calc(100% - 1.2rem);
    margin: 0 0 3.2rem 1.2rem;
    overflow-x: auto;
  }
  #liveAreaWaku > .wp-scroll-table .name {
    font-size: 1.92rem;
  }
  #liveAreaWaku > .wp-scroll-table .caption {
    min-height: 3.52rem;
  }
  #liveAreaWaku > .wp-scroll-table .caption .caption-name {
    width: 12rem;
  }
  #liveAreaWaku > .wp-scroll-table .caption .caption-unit {
    flex-direction: column;
    align-items: self-start;
  }
  #liveAreaWaku > .wp-scroll-table .caption .caption-unit P:first-child {
    font-size: 1.28rem;
    font-weight: bold;
    line-height: 2.28rem;
    padding: 0 0 0 calc(0.625rem + 4px);
    height: auto;
  }
  #liveAreaWaku > .wp-scroll-table .caption .caption-unit p:last-child {
    font-size: 1.12rem;
    line-height: 2.12rem;
    padding-left: calc(0.625rem + 4px);
    height: auto;
  }
  #liveAreaWaku > .wp-scroll-table table {
    padding-left: 0;
    padding-right: 1.2rem;
  }
  #liveAreaWaku > .wp-scroll-table table tbody tr td,
  #liveAreaWaku > .wp-scroll-table table tbody tr th {
    font-size: 1.04rem;
    padding: 0.4rem 0 0.4rem 0.8rem;
    white-space: unset;
  }
  #liveAreaWaku > .wp-scroll-table table tbody tr td.fixed,
  #liveAreaWaku > .wp-scroll-table table tbody tr th.fixed {
    position: sticky;
    z-index: 2;
  }
  #liveAreaWaku > .wp-scroll-table table tbody tr td.fixed.pos1,
  #liveAreaWaku > .wp-scroll-table table tbody tr th.fixed.pos1 {
    left: 0;
    width: 5rem;
    min-width: 5rem;
  }
  #liveAreaWaku > .wp-scroll-table table tbody tr td.fixed.pos2,
  #liveAreaWaku > .wp-scroll-table table tbody tr th.fixed.pos2 {
    left: 5rem;
    width: 7rem;
    min-width: 7rem;
  }
  #liveAreaWaku > .wp-scroll-table table tbody tr.header td,
  #liveAreaWaku > .wp-scroll-table table tbody tr.header th {
    padding-top: 1.12rem;
    padding-bottom: 0.8rem;
  }
}

#liveAreaWaku > .wp-block-image {
  width: 100%;
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  margin: 0 0 46px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
@media (max-width: 780px) {
  #liveAreaWaku > .wp-block-image {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 0 2.88rem 0;
  }
  #liveAreaWaku > .wp-block-image img {
    max-width: 100%;
  }
}

#liveAreaWaku > .wp-block-buttons {
  width: 100%;
  padding-left: calc(50% - 550px);
  padding-right: calc(50% - 550px);
  margin: 0 0 46px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
#liveAreaWaku > .wp-block-buttons > div {
  padding-left: 100px;
}
#liveAreaWaku > .wp-block-buttons > div:first-child {
  padding-left: 0;
}
#liveAreaWaku > .wp-block-buttons > div:hover {
  opacity: 0.8;
}
@media (max-width: 780px) {
  #liveAreaWaku > .wp-block-buttons {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 0 2.88rem 0;
  }
  #liveAreaWaku > .wp-block-buttons > div {
    padding-left: 2rem;
  }
}

.medicalBodyColumn {
  display: flex;
  flex-flow: row wrap;
  width: 40%;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 auto 1rem auto;
  padding: 10px;
  border: 1px solid #ccc;
}
.medicalBodyColumn dt {
  flex-basis: 25%;
  margin: 0;
  padding: 0;
  font-weight: bold;
  text-align: right;
}
.medicalBodyColumn dd {
  flex-basis: 75%;
  margin: 0;
  padding: 0;
}
@media (max-width: 780px) {
  .medicalBodyColumn {
    width: 100%;
  }
}

.wp-block-button a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  min-width: 250px;
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #f5f5f6;
  color: #003366;
}
.wp-block-button.primary a {
  background-color: #e60012;
  color: #ffffff;
}
.wp-block-button.secondary a {
  background-color: #003366;
  color: #ffffff;
}
@media (max-width: 780px) {
  .wp-block-button a {
    min-height: 4rem;
    min-width: 10.8rem;
    font-size: 1.28rem;
  }
}

.pagetop {
  display: none;
}
@media (max-width: 780px) {
  .pagetop {
    position: absolute;
    z-index: 300;
    height: 2.4rem;
    width: 6.64rem;
    font-size: 1.44rem;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 4rem;
    user-select: none;
    cursor: pointer;
    top: 4rem;
    right: 0;
    transform: rotate(90deg);
  }
  .pagetop::before {
    width: 1.53rem;
    height: 1.53rem;
    content: " ";
    position: absolute;
    top: 0px;
    left: 0;
    width: 2.32rem;
    height: 2.32rem;
    background: url(../images/common/nav_arrow_red.svg) no-repeat;
    transition: 0.3s left;
    transform: scaleX(-1);
  }
  .pagetop a,
  .pagetop a:visited,
  .pagetop a:active,
  .pagetop a:hover {
    color: #ffffff;
  }
}

section.contact {
  width: 100svw;
  width: 100cqw;
  min-width: 1200px;
  max-width: 100svw;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  margin: 100px 0 70px 0;
}
section.contact .contact-wrap {
  width: 1100px;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section.contact .contact-column {
  background-repeat: no-repeat;
  background-size: 52px;
  padding-left: 70px;
}
section.contact .contact-column.icon1 {
  background-image: url(../images/common/contact_icon1.svg);
}
section.contact .contact-column.icon2 {
  background-image: url(../images/common/contact_icon2.svg);
}
section.contact .contact-column.icon3 {
  background-image: url(../images/common/contact_icon3.svg);
}
section.contact .contact-column .contact-column-heading {
  height: 52px;
  font-size: 1.125rem;
  color: #003366;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.contact .contact-column .contact-column-detail {
  font-size: 0.875rem;
  color: #333333;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}
section.contact .contact-column .contact-column-phone {
  height: 46px;
  padding-left: 36px;
  font-size: 1.625rem;
  color: #003366;
  background-image: url(../images/common/contact_icon4.svg);
  background-repeat: no-repeat;
  background-size: 26px;
  background-position-y: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.contact .contact-column .contact-column-mail {
  height: 46px;
  padding-left: 36px;
  font-size: 0.875rem;
  color: #003366;
  background-image: url(../images/common/contact_icon5.svg);
  background-repeat: no-repeat;
  background-size: 26px;
  background-position-y: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.contact .contact-column .contact-column-link {
  height: 46px;
  padding-left: 36px;
  font-size: 0.875rem;
  color: #003366;
  background-image: url(../images/common/contact_icon6.svg);
  background-repeat: no-repeat;
  background-size: 26px;
  background-position-y: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.contact .contact-column a,
section.contact .contact-column a:visited,
section.contact .contact-column a:active {
  text-decoration: none;
  color: #003366;
}
section.contact .contact-column a:hover {
  text-decoration: underline;
  color: #003366;
}

@media (max-width: 780px) {
  section.contact {
    min-width: auto;
    margin: 3.07rem 0 0 0;
  }
  section.contact .contact-wrap {
    flex-direction: column;
    align-items: center;
  }
  section.contact .contact-wrap .contact-column {
    width: 24.2rem;
    background-size: 3.07rem;
    padding-left: 4.23rem;
    margin-bottom: 3.07rem;
  }
  section.contact .contact-wrap .contact-column .contact-column-heading {
    height: auto;
    font-size: 1.3rem;
    margin-bottom: 0.76rem;
  }
  section.contact .contact-wrap .contact-column .contact-column-detail {
    height: auto;
    font-size: 1rem;
    line-height: 1.7rem;
    margin-bottom: 0.76rem;
  }
  section.contact .contact-wrap .contact-column .contact-column-phone {
    height: 2.07rem;
    padding-left: 3.2rem;
    margin-bottom: 0.76rem;
    font-size: 1.73rem;
    background-size: 2.07rem;
    background-position-y: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  section.contact .contact-wrap .contact-column .contact-column-mail {
    height: 2.07rem;
    padding-left: 3.2rem;
    margin-bottom: 0.76rem;
    font-size: 1rem;
    background-size: 2.07rem;
    background-position-y: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  section.contact .contact-wrap .contact-column .contact-column-link {
    height: 1.53rem;
    padding-left: 2.3rem;
    font-size: 1rem;
    background-size: 1.53rem;
    background-position-y: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

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