@charset "UTF-8";
/* 共通スタイル */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
.js-parallax {
  background: pink;
  overflow: hidden;
}
.js-parallax img {
  display: block;
  height: 120%;
  width: 120%;
  max-width: unset;
}

.js-recommend-img {
  position: relative;
  overflow: hidden;
}
.js-recommend-img img {
  display: block;
  transform: scale(1.2);
  transition: transform 1.4s ease-out;
  transition-delay: 0.3s;
}
.js-recommend-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  clip-path: inset(0% 0% 0% 0%);
  transition: clip-path 0.5s ease-in-out;
  transition-delay: 0.3s;
}

.js-recommend-img.is-visible img {
  transform: scale(1);
}
.js-recommend-img.is-visible::after {
  clip-path: inset(0% 0% 100% 0%);
}

.js-text {
  overflow: hidden;
}
.js-text span {
  display: inline-block;
}

.js-rotate span {
  display: inline-block;
}

.js-fadeIn2 span {
  --blur:0px;
  filter: blur(var(--blur));
  display: inline-block;
}

.js-image {
  overflow: hidden;
}
.js-image img {
  display: inline-block;
}

.js-parallax2 {
  overflow: hidden;
}
.js-parallax2 img {
  height: 120%;
  max-width: unset;
}

main.home .majors__box__item h4.hthsci {
  background: #7b5a99;
}
main.home .majors__box__item h4.wellsci {
  background: #eb7421;
}
main.home .majors__box__item h4.welfsci {
  background: #3fb136;
}
main.home .majors__box__item h4.medbiz {
  background: #895f50;
}
main.home .majors__box__item h4.medwelf {
  background: #3a9c96;
}
main.home .majors__box__item .degree.hthsci__degree {
  background-color: rgba(123, 90, 153, 0.08);
}
main.home .majors__box__item .degree.wellsci__degree {
  background-color: rgba(235, 116, 33, 0.08);
}
main.home .majors__box__item .degree.welfsci__degree {
  background-color: rgba(63, 177, 54, 0.08);
}
main.home .majors__box__item .degree.medbiz__degree {
  background-color: rgba(137, 95, 80, 0.08);
}
main.home .majors__box__item .degree.medwelf__degree {
  background-color: rgba(58, 156, 150, 0.08);
}
main.home .majors__box__item ul li.ptherap {
  border-left-color: #714f8c;
}
main.home .majors__box__item ul li.otherap {
  border-left-color: #27579f;
}
main.home .majors__box__item ul li.speech {
  border-left-color: #0291d7;
}
main.home .majors__box__item ul li.prosth {
  border-left-color: #029389;
}
main.home .majors__box__item ul li.medsafe {
  border-left-color: #005da8;
}
main.home .majors__box__item ul li.visual {
  border-left-color: #0f51aa;
}
main.home .majors__box__item ul li.emergen {
  border-left-color: #007dc7;
}
main.home .majors__box__item ul li.radiation {
  border-left-color: #0090b1;
}
main.home .majors__box__item ul li.anthrop {
  border-left-color: #b28246;
}
main.home .majors__box__item ul li.healthn {
  border-left-color: #f08201;
}
main.home .majors__box__item ul li.healths {
  border-left-color: #d93625;
}
main.home .majors__box__item ul li.nursing {
  border-left-color: #ee4777;
}
main.home .majors__box__item ul li.welfare {
  border-left-color: #3fb136;
}
main.home .majors__box__item ul li.welfman {
  border-left-color: #269d38;
}
main.home .majors__box__item ul li.medinfo {
  border-left-color: #a74d85;
}
main.home .majors__box__item ul li.medical {
  border-left-color: #3a9c96;
}
main.home .majors__box__item ul li.standard {
  border-left-color: #0164b2;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-weight: 400;
  line-height: 1.8;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.none {
  display: none !important;
}

.inner {
  width: 100%;
  max-width: 1074px;
  margin: 0 auto;
}

h2 {
  position: relative;
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.5em !important;
    margin-bottom: 2rem;
  }
}
h2 span {
  position: relative;
  font-size: 0.53em;
  padding-left: 1.5rem;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  h2 span {
    padding-left: 1rem;
    margin-left: 1rem;
  }
}
h2 span::before {
  content: "";
  position: absolute;
  background: #0164b2;
  width: 3px;
  height: 36px;
  left: 0;
  top: 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  h2 span::before {
    width: 3px;
    height: 24px;
  }
}

.top-btn {
  position: relative;
  background: #000000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 1px;
  max-width: 490px;
  padding: 2.125rem 1rem;
  margin: 0 auto;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.0901960784);
}
@media screen and (max-width: 768px) {
  .top-btn {
    font-size: 1.125em;
    padding: 1rem;
  }
}
.top-btn::after {
  content: "";
  position: absolute;
  background: url(./images/arrow.svg) no-repeat;
  background-size: cover;
  top: 50%;
  right: 2.25rem;
  width: 26px;
  height: 26px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .top-btn::after {
    right: 1rem;
    width: 20px;
    height: 20px;
  }
}

header {
  z-index: 9999;
  position: relative;
}
header .header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  background: #fff;
  align-items: center;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  padding: 1rem 2.25rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.062745098);
}
@media (max-width: 1400px) {
  header .header {
    width: 100%;
    top: 0;
    padding: 12px;
    border-radius: 0;
  }
}
header .header__logo {
  width: 300px;
}
@media screen and (max-width: 768px) {
  header .header__logo {
    width: 220px;
  }
}
header .header__inner--menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1400px) {
  header .header__inner--menu {
    flex-direction: column;
    gap: 0;
    background: #0164b2;
    width: 375px;
    height: 100vh;
    padding-top: 2rem;
  }
}
header .header__inner--menu .has-submenu {
  font-size: 15px;
  letter-spacing: 1px;
}
header .header__inner--menu .has-submenu:last-child {
  background: #f0c201;
  padding: 10px 1.2rem;
  border-radius: 5px;
}
@media (max-width: 1400px) {
  header .header__inner--menu .has-submenu {
    position: relative;
    color: #fff;
    width: 90%;
    padding: 1.5rem;
    border-bottom: solid 1px #fff;
  }
  header .header__inner--menu .has-submenu:last-child {
    color: #000;
    padding: 1rem !important;
    margin-top: 2rem;
    border: none;
  }
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.65rem;
}
@media screen and (min-width: 1400px) {
  header .nav__btn {
    display: none;
  }
  header .has-submenu {
    position: relative;
  }
  header .has-submenu:hover .submenu {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  header .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    transform: translateX(-50%);
  }
  header .submenu li {
    border-bottom: 1px solid #eee;
  }
  header .submenu li a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #333;
  }
}
@media (max-width: 1400px) {
  header .submenu {
    display: none !important;
  }
  header .nav__btn {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 40px;
    height: 23px;
    z-index: 200;
    transform: translate(-50%, -50%);
  }
  header .nav__btn:hover {
    cursor: pointer;
  }
  header .nav__btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0164b2;
    margin-top: 10px;
    border-radius: 10px;
    transition: ease-out 0.3s;
  }
  header .nav__btn span::before, header .nav__btn span::after {
    content: "";
    display: block;
    height: 2px;
    background: #0164b2;
    position: absolute;
    transition: ease-out 0.3s;
  }
  header .nav__btn span::before {
    top: 0;
    width: 100%;
  }
  header .nav__btn span::after {
    right: 0;
    bottom: 0;
    width: 100%;
  }
  header .nav__btn .hmb.open {
    background: transparent;
  }
  header .nav__btn .hmb.open::before {
    background: #fff;
    transform: rotate(45deg);
    opacity: 1;
    top: 50%;
  }
  header .nav__btn .hmb.open::after {
    background: #fff;
    transform: rotate(-45deg);
    opacity: 1;
    top: 50%;
    width: 100%;
  }
  header nav.hide {
    left: 200%;
    opacity: 0;
  }
  header nav {
    position: fixed;
    background: rgba(0, 0, 0, 0.3019607843);
    left: 50%;
    top: 0;
    width: 100%;
    height: 100vh;
    align-items: start;
    gap: 30px;
    z-index: 100;
    transition: ease-out 0.3s;
    opacity: 1;
    overflow-y: scroll;
    transform: translate(-50%, 0);
  }
  header nav::-webkit-scrollbar {
    display: none;
  }
}

main.home a {
  transition: ease-in 0.3s;
}
main.home a:hover {
  cursor: pointer;
  transform: translateY(-5px);
}
main.home section {
  padding: 120px 2.25rem;
}
@media screen and (max-width: 768px) {
  main.home section {
    padding: 3rem 1.5rem;
  }
}
main.home .mv {
  position: relative;
  background: url(./images/mv-bg.png);
  background-position: top right;
  background-size: cover;
  height: 90vh;
  padding: 0;
}
@media screen and (max-width: 768px) {
  main.home .mv {
    height: 80vh;
  }
}
main.home .mv__bg01 {
  position: absolute;
  width: 50%;
  top: -20rem;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.home .mv__bg01 {
    width: 65%;
    top: inherit;
    bottom: -12rem;
  }
}
main.home .mv__inner {
  position: absolute;
  top: 18rem;
  right: 10vw;
  padding-left: 1rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.home .mv__inner {
    top: 6rem;
    right: 2rem;
  }
}
main.home .mv__inner h1 {
  color: #0c334a;
  font-size: 2.75em !important;
  line-height: 1.6 !important;
  letter-spacing: 2px;
  margin-bottom: 2.25rem;
  text-shadow: 0 0 20px #fff;
}
@media screen and (max-width: 768px) {
  main.home .mv__inner h1 {
    font-size: 1.5em !important;
    line-height: 1.5 !important;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
}
main.home .mv__inner .sub {
  color: #0c334a;
  font-size: 17px;
  text-shadow: 0 0 20px #fff;
}
@media screen and (max-width: 768px) {
  main.home .mv__inner .sub {
    font-size: 14px;
  }
}
main.home .mv__inner img {
  max-width: 360px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  main.home .mv__inner img {
    width: 240px;
    margin-top: 3rem;
  }
}
main.home .research {
  background: linear-gradient(to top, #f7f7f7, #fff);
  z-index: 0;
}
main.home .research h2 {
  position: relative;
  text-shadow: 0 0 20px #fff;
  z-index: 1;
}
main.home .research .top-btn,
main.home .research p {
  position: relative;
  z-index: 1;
}
main.home .research__bg {
  position: absolute;
  width: 35%;
  top: -20rem;
  right: -2.25rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main.home .research__bg {
    width: 90%;
    top: -4rem;
    right: -1.5rem;
  }
}
main.home .research__box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  main.home .research__box {
    margin-bottom: 1.5rem;
  }
}
main.home .research__box__item {
  background: #fff;
  flex-basis: 23.5%;
  border: solid 1px #0164b2;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.062745098);
}
@media (max-width: 1200px) {
  main.home .research__box__item {
    flex-basis: 48.5%;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  main.home .research__box__item {
    flex-basis: 100%;
  }
}
main.home .research__box__item img {
  border-radius: 5px 5px 0 0;
}
main.home .research__box__item-inner {
  padding: 1.5rem;
}
main.home .research__box__item-inner h3 {
  margin-bottom: 1rem;
}
main.home .research__box__item-inner p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
main.home .research__box__item-inner ul {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
main.home .research__box__item-inner ul li {
  position: relative;
  padding-left: 0.75rem;
}
main.home .research__box__item-inner ul li::before {
  position: absolute;
  content: "#";
  top: 0;
  left: 0;
}
main.home .research__box__item-inner ul li a {
  color: #000000;
  text-decoration: underline;
  margin-top: 0;
}
main.home .research__box__item-inner a {
  color: #0164b2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
}
main.home .research__box__item-inner a img {
  background: #0164b2;
  width: 35px;
  padding: 11px;
  border-radius: 50%;
}
main.home .topics {
  position: relative;
  z-index: 1;
}
main.home .topics h2 {
  text-align: left;
}
main.home .topics__box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  main.home .topics__box {
    display: block;
  }
}
main.home .topics__box__tab {
  width: 18%;
}
@media (max-width: 1000px) {
  main.home .topics__box__tab {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
main.home .topics__box__tab * {
  font-size: 15px;
}
main.home .topics__box__tab .tab-ttl {
  color: #0164b2;
  font-weight: bold;
}
@media (max-width: 1000px) {
  main.home .topics__box__tab ul {
    display: flex;
    gap: 1rem;
  }
}
main.home .topics__box__tab li {
  margin-top: 1.25rem;
  text-decoration: underline;
}
main.home .topics__box__tab li:hover {
  cursor: pointer;
}
@media (max-width: 1000px) {
  main.home .topics__box__tab li {
    margin-top: 0.5rem;
  }
}
main.home .topics__box__tab .top-btn {
  justify-content: flex-start;
  font-size: 14px;
  padding: 15px 1.75rem;
  margin-top: 2.25rem;
}
main.home .topics__box__tab .top-btn::after {
  width: 23px;
  height: 23px;
  right: 1.125rem;
}
@media (max-width: 1000px) {
  main.home .topics__box__tab .btn01 {
    display: none !important;
  }
}
main.home .topics__box__panel {
  width: 70%;
}
@media (max-width: 1000px) {
  main.home .topics__box__panel {
    width: 100%;
  }
}
main.home .topics__box__panel-inner {
  position: relative;
  display: block;
  background: #f7f7f7;
  padding: 1.25rem 4rem 1.25rem 2.25rem;
  margin-bottom: 12px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  main.home .topics__box__panel-inner {
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.home .topics__box__panel-inner::after {
  position: absolute;
  content: "";
  background: url(./images/n-arrow.svg);
  background-size: cover;
  top: 50%;
  right: 1.5rem;
  width: 35px;
  height: 35px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.home .topics__box__panel-inner::after {
    right: 1rem;
    width: 25px;
    height: 25px;
  }
}
main.home .topics__box__panel-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  main.home .topics__box__panel-info {
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
}
main.home .topics__box__panel-info .date {
  font-size: 13px;
}
main.home .topics__box__panel-info .category {
  color: #0164b2;
  font-size: 15px;
  font-weight: bold;
}
main.home .topics__box .btn02 {
  display: none !important;
}
@media (max-width: 1000px) {
  main.home .topics__box .btn02 {
    display: flex !important;
    margin-top: 2.25rem;
  }
}
main.home .bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 0;
}
main.home .bnr a {
  flex-basis: 32%;
}
@media screen and (max-width: 768px) {
  main.home .bnr a {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
}
main.home .majors {
  background: #f7f7f7;
}
main.home .majors__title {
  text-align: center;
  font-size: 3.4em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.home .majors__title {
    font-size: 2.3em;
  }
}
main.home .majors h3 {
  font-size: 2em;
  margin-bottom: 1.375rem;
}
@media screen and (max-width: 768px) {
  main.home .majors h3 {
    font-size: 1.25em;
    margin-bottom: 1rem;
  }
}
main.home .majors__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main.home .majors__box__item {
  background: #fff;
  flex-basis: 23.5%;
  border-radius: 5px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  main.home .majors__box__item {
    flex-basis: 48.5%;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  main.home .majors__box__item {
    flex-basis: 100%;
  }
}
main.home .majors__box__item h4 {
  background: #7b5a99;
  color: #fff;
  font-size: 1.25em;
  text-align: center;
  padding: 10px;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 768px) {
  main.home .majors__box__item h4 {
    font-size: 1em;
  }
}
main.home .majors__box__item .degree {
  background: #f5f2f7;
  font-size: 14px;
  text-align: center;
  padding: 7px;
}
main.home .majors__box__item ul {
  padding: 1.5rem;
}
main.home .majors__box__item ul li {
  padding-left: 15px;
  margin-bottom: 14px;
  border-left: solid 3px #714f8c;
}
main.home .majors__box__item ul li span {
  font-size: 14px;
}
main.home .contents {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
main.home .contents__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main.home .contents__box__item {
  background: url(./images/contents01.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 33.3%;
  padding: 1.5rem;
  aspect-ratio: 6/5;
  background-position: center;
  border: solid 0.5px #fff;
}
@media (max-width: 1200px) {
  main.home .contents__box__item {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 768px) {
  main.home .contents__box__item {
    flex-basis: 100%;
  }
}
main.home .contents__box__item:nth-child(2) {
  background: url(./images/contents02.jpg);
}
main.home .contents__box__item:nth-child(3) {
  background: url(./images/contents03.jpg);
}
main.home .contents__box__item:nth-child(4) {
  background: url(./images/contents04.jpg);
}
main.home .contents__box__item:nth-child(5) {
  background: url(./images/contents05.jpg);
}
main.home .contents__box__item:nth-child(6) {
  background: url(./images/contents06.jpg);
}
main.home .contents__box__item:hover {
  transform: none;
  opacity: 0.7;
}
main.home .contents__box__item p {
  color: #fff;
  font-size: 1.25em;
}
@media screen and (max-width: 768px) {
  main.home .contents__box__item p {
    font-size: 1.125em;
  }
}
main.home .contents__box__item .ttl {
  text-align: center;
  font-weight: bold;
}
main.home .contents__box__item .link {
  width: 35px;
  height: 35px;
  padding: 11px;
  margin-left: auto;
  border-radius: 50%;
  border: solid 1px rgba(255, 255, 255, 0.3960784314);
}
main.home .support {
  background: #0164b2;
}
main.home .support h2 {
  color: #fff;
  font-size: 2.3em;
  width: fit-content;
  padding: 0 3.75rem;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 768px) {
  main.home .support h2 {
    font-size: 1.5em;
    padding: 0 2rem;
    margin: 0 auto 2rem;
  }
}
main.home .support h2::before, main.home .support h2::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 3px;
  height: 56px;
  transform: rotate(45deg);
  top: 0;
}
@media screen and (max-width: 768px) {
  main.home .support h2::before, main.home .support h2::after {
    height: 36px;
  }
}
main.home .support h2::before {
  left: 0;
}
main.home .support h2::after {
  right: 0;
}
main.home .support__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main.home .support__box {
    display: block;
  }
}
main.home .support__box__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 32%;
}
@media screen and (max-width: 768px) {
  main.home .support__box__item {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
}

.fixed {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 6px;
  top: 8.125rem;
  right: 0;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .fixed {
    flex-direction: row;
    justify-content: space-between;
    top: inherit;
    bottom: 0;
    right: 0;
    gap: 0;
    width: 100%;
  }
}
.fixed a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 11px;
  background: #d9001d;
  color: #fff;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  padding: 1.5rem 1rem;
  border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 768px) {
  .fixed a {
    align-items: center;
    gap: 6px;
    font-size: 14px;
    letter-spacing: 1px;
    width: 50%;
    padding: 1rem;
    writing-mode: horizontal-tb;
    border-radius: 5px 5px 0 0;
  }
}
.fixed a img {
  width: 25px;
}
@media screen and (max-width: 768px) {
  .fixed a img {
    width: 18px;
  }
}
.fixed .session {
  background: #860011;
}

.footer__box {
  background: #002f53;
  display: flex;
  justify-content: space-between;
  padding: 120px 4.5rem 60px;
}
@media (max-width: 1200px) {
  .footer__box {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer__box {
    padding: 2rem 1rem;
  }
}
.footer__box__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__box__left-logo {
  background: #fff;
  width: 300px;
  padding: 1rem;
  margin-bottom: 2.25rem;
}
@media (max-width: 1200px) {
  .footer__box__left-logo {
    margin-bottom: 1rem;
  }
}
.footer__box__left-nsg {
  display: inline;
  width: fit-content;
  margin-top: auto;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .footer__box__left-nsg {
    margin-top: 1rem;
  }
}
.footer__box__left-nsg img {
  width: 72px;
}
.footer__box__right {
  width: 60%;
}
@media (max-width: 1200px) {
  .footer__box__right {
    width: 100%;
    margin-top: 2rem;
  }
}
.footer__box__right h4 {
  position: relative;
  color: #fff;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer__box__right h4::before {
  content: "";
  position: absolute;
  background: #fff;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 18px;
  transform: rotate(45deg);
}
.footer__box__right__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 15px;
}
.footer__box__right__link a {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  color: #002f53;
  width: 49%;
  padding: 14px 1rem;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .footer__box__right__link a {
    width: 100%;
  }
}
.footer__box__right__link a::after {
  content: "";
  position: absolute;
  background: url(./images/link.svg) no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  top: 50%;
  right: 1rem;
  transform: translate(-50%, -50%);
}
.footer__box__right-x {
  display: flex;
  justify-content: flex-end;
  margin: 3rem 0 0;
}
@media screen and (max-width: 768px) {
  .footer__box__right-x {
    margin: 1rem 0 0;
  }
}
.footer__box__right-x img {
  width: 32px;
}
.footer p {
  color: #fff;
}
.footer__copy {
  background: #001627;
  font-size: 13px;
  text-align: right;
  padding: 1rem 4.5rem;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    padding: 0.5rem 1rem 5.5rem;
  }
}

main.lower.ptherap {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap {
    padding: 4.5rem 0 0;
  }
}
main.lower.ptherap .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.ptherap #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap #page_ttl {
    padding: 2rem;
  }
}
main.lower.ptherap #page_ttl::after {
  position: absolute;
  content: "";
  background: #714f8c;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.ptherap #page_ttl h1,
main.lower.ptherap #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.ptherap #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.ptherap #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.ptherap #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #714f8c;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.ptherap p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.ptherap a {
  text-decoration: underline;
}
main.lower.ptherap h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.ptherap h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #714f8c;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.ptherap .page-h3 {
  color: #714f8c;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.ptherap h4 {
  position: relative;
  color: #714f8c;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap h4 {
    font-size: 1em;
  }
}
main.lower.ptherap h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.ptherap .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.ptherap .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.ptherap .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.ptherap .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.ptherap .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.ptherap .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .message {
    font-size: 1.2em;
  }
}
main.lower.ptherap .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .breadcrumb {
    padding: 1rem;
  }
}
main.lower.ptherap .breadcrumb a {
  color: #0164b2;
}
main.lower.ptherap .breadcrumb a,
main.lower.ptherap .breadcrumb span {
  font-size: 14px;
}
main.lower.ptherap .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.ptherap .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #714f8c;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.ptherap .list-number {
  counter-reset: listnum;
}
main.lower.ptherap .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.ptherap .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.ptherap .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.ptherap .ark-block-accordion__label {
  color: #141414;
}
main.lower.ptherap .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.ptherap .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.ptherap .ark-block-accordion__icon::before, main.lower.ptherap .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.ptherap .media {
  display: table-cell;
}
main.lower.ptherap .wp-block-table,
main.lower.ptherap .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.ptherap .wp-block-table table,
main.lower.ptherap .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #714f8c;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .wp-block-table table,
  main.lower.ptherap .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.ptherap .wp-block-table table thead,
main.lower.ptherap .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.ptherap .wp-block-table table thead th,
main.lower.ptherap .wp-block-table table thead td,
main.lower.ptherap .wp-block-flexible-table-block-table table thead th,
main.lower.ptherap .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.ptherap .wp-block-table table thead th,
main.lower.ptherap .wp-block-flexible-table-block-table table thead th {
  background: #714f8c;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.ptherap .wp-block-table table thead td:first-child,
main.lower.ptherap .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.ptherap .wp-block-table table tr th,
main.lower.ptherap .wp-block-flexible-table-block-table table tr th {
  background-color: #714f8c;
  border: solid 1px #714f8c;
}
main.lower.ptherap .wp-block-table table tr td,
main.lower.ptherap .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #714f8c;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .wp-block-table table tr td,
  main.lower.ptherap .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.ptherap .wp-block-table table tr td:first-child,
main.lower.ptherap .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.ptherap .wp-block-table table tr th,
main.lower.ptherap .wp-block-table table tr td,
main.lower.ptherap .wp-block-flexible-table-block-table table tr th,
main.lower.ptherap .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.ptherap .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .sample dl {
    display: block;
  }
}
main.lower.ptherap .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.ptherap .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .sample dd {
    width: 100%;
  }
}
main.lower.ptherap .sample .face dt {
  background: #ffecf5;
}
main.lower.ptherap .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.ptherap .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.ptherap table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.ptherap table th,
main.lower.ptherap table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.ptherap table th {
  background: #714f8c;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.ptherap table td {
  border: solid 1px #714f8c;
}
main.lower.ptherap table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.ptherap table thead th:first-of-type {
  width: 11%;
}
main.lower.ptherap table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.ptherap table .min-h th,
main.lower.ptherap table .min-h td {
  height: 45px;
}
main.lower.ptherap table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.ptherap table td.on-campus-job span, main.lower.ptherap table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.ptherap table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.ptherap table td.off-campus span {
  background-color: #bbb;
}
main.lower.ptherap table td.lecture {
  background-color: #ffecf5;
}
main.lower.ptherap table .media {
  color: #f00;
}
main.lower.ptherap table.society {
  border-collapse: collapse;
}
main.lower.ptherap table.society th {
  color: #000;
  background: rgba(113, 79, 140, 0.3);
  border: solid 1px #714f8c;
}
main.lower.ptherap .hyou1 {
  border: 1px solid #666666;
}
main.lower.ptherap .hyou1 th,
main.lower.ptherap .hyou1 td {
  font-size: 16px;
}
main.lower.ptherap .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.ptherap .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.ptherap .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.ptherap #wrapper #contents .classification {
  border-right: none;
}
main.lower.ptherap #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.ptherap .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.ptherap .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.ptherap .hyou1 a {
  text-decoration: none;
}
main.lower.ptherap .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.ptherap .bgc01 {
  background-color: #ffecf5;
}
main.lower.ptherap .bgc02 {
  background-color: #eadfff;
}
main.lower.ptherap .bgc03 {
  background-color: #e6ffdd;
}
main.lower.ptherap .bgc04 {
  background-color: #fff3c4;
}
main.lower.ptherap .bgc05 {
  background-color: #d2e9ff;
}
main.lower.ptherap .bgc06 {
  background-color: #efefef;
}
main.lower.ptherap .bgc07 {
  background-color: #f5e6ee;
}
main.lower.ptherap .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.ptherap .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.ptherap .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.ptherap .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.ptherap .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.ptherap .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.ptherap #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.ptherap .hyou4 {
  margin: 10px 0;
}
main.lower.ptherap .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.ptherap .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.ptherap .hyou5 {
  border: 1px solid #666666;
}
main.lower.ptherap .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.ptherap .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.ptherap .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.ptherap .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.ptherap .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.ptherap .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.ptherap .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.ptherap .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.ptherap .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #714f8c;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.ptherap .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.ptherap .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #714f8c;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #714f8c;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.ptherap .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.ptherap .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.ptherap .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.ptherap .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.ptherap .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.ptherap .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.ptherap .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.ptherap .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.ptherap .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.ptherap .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.ptherap .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.ptherap .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.ptherap .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.ptherap .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.ptherap .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.ptherap .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.ptherap .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.ptherap .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.ptherap .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.ptherap .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.ptherap .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.ptherap .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.ptherap .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.ptherap .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.ptherap .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.ptherap .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.ptherap .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.ptherap .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.ptherap .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.ptherap .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.ptherap .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.ptherap .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.ptherap .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.ptherap .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.ptherap .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.ptherap .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.ptherap .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.ptherap .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.ptherap .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.ptherap .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.ptherap .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.ptherap .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.ptherap .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.ptherap figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap figure {
    margin: 1rem auto;
  }
}
main.lower.ptherap .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.ptherap .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.ptherap .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.ptherap .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.ptherap .wp-pagenavi a.current {
  background: #714f8c;
  color: #fff;
}
main.lower.ptherap .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.ptherap #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.ptherap .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.ptherap .uni .main,
main.lower.ptherap .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .uni .main,
  main.lower.ptherap .uni .sub {
    padding: 1rem;
  }
}
main.lower.ptherap .uni .sub a {
  text-decoration: underline;
}
main.lower.ptherap .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.ptherap .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.ptherap .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.ptherap .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.ptherap .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.ptherap .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.ptherap .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.ptherap .uni .main .fields.no2 h4 a,
main.lower.ptherap .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.ptherap .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.ptherap .uni .main .fields.no3 h4 a,
main.lower.ptherap .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.ptherap .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.ptherap .uni .main .fields.no4 h4 a,
main.lower.ptherap .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.ptherap .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.ptherap .uni .main .fields.no5 h4 a,
main.lower.ptherap .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.ptherap .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .uni .main .fields h4 {
    border: none;
  }
}
main.lower.ptherap .uni .main .fields h4 a,
main.lower.ptherap .uni .main .fields h4 span {
  display: block;
}
main.lower.ptherap .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.ptherap .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .uni .main .fields > div {
    display: block;
  }
}
main.lower.ptherap .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.ptherap .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.ptherap .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.ptherap .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.ptherap .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.ptherap .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.ptherap .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.ptherap .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.ptherap .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.ptherap .uni .main .fields .field li::before {
  content: "●";
}
main.lower.ptherap .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.ptherap .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.ptherap a:link {
  color: inherit;
}
main.lower.ptherap #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.ptherap #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.ptherap #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.ptherap #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.ptherap #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.ptherap #contents .policy th,
main.lower.ptherap #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.ptherap #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.ptherap #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.ptherap #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.otherap {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.otherap {
    padding: 4.5rem 0 0;
  }
}
main.lower.otherap .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.otherap #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.otherap #page_ttl {
    padding: 2rem;
  }
}
main.lower.otherap #page_ttl::after {
  position: absolute;
  content: "";
  background: #27579f;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.otherap #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.otherap #page_ttl h1,
main.lower.otherap #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.otherap #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.otherap #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.otherap #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.otherap #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.otherap #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #27579f;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.otherap p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.otherap a {
  text-decoration: underline;
}
main.lower.otherap h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.otherap h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.otherap h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #27579f;
}
@media screen and (max-width: 768px) {
  main.lower.otherap h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.otherap .page-h3 {
  color: #27579f;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.otherap h4 {
  position: relative;
  color: #27579f;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.otherap h4 {
    font-size: 1em;
  }
}
main.lower.otherap h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.otherap .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.otherap .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.otherap .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.otherap .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.otherap .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.otherap .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .message {
    font-size: 1.2em;
  }
}
main.lower.otherap .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .breadcrumb {
    padding: 1rem;
  }
}
main.lower.otherap .breadcrumb a {
  color: #0164b2;
}
main.lower.otherap .breadcrumb a,
main.lower.otherap .breadcrumb span {
  font-size: 14px;
}
main.lower.otherap .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.otherap .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #27579f;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.otherap .list-number {
  counter-reset: listnum;
}
main.lower.otherap .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.otherap .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.otherap .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.otherap .ark-block-accordion__label {
  color: #141414;
}
main.lower.otherap .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.otherap .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.otherap .ark-block-accordion__icon::before, main.lower.otherap .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.otherap .media {
  display: table-cell;
}
main.lower.otherap .wp-block-table,
main.lower.otherap .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.otherap .wp-block-table table,
main.lower.otherap .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #27579f;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .wp-block-table table,
  main.lower.otherap .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.otherap .wp-block-table table thead,
main.lower.otherap .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.otherap .wp-block-table table thead th,
main.lower.otherap .wp-block-table table thead td,
main.lower.otherap .wp-block-flexible-table-block-table table thead th,
main.lower.otherap .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.otherap .wp-block-table table thead th,
main.lower.otherap .wp-block-flexible-table-block-table table thead th {
  background: #27579f;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.otherap .wp-block-table table thead td:first-child,
main.lower.otherap .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.otherap .wp-block-table table tr th,
main.lower.otherap .wp-block-flexible-table-block-table table tr th {
  background-color: #27579f;
  border: solid 1px #27579f;
}
main.lower.otherap .wp-block-table table tr td,
main.lower.otherap .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #27579f;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .wp-block-table table tr td,
  main.lower.otherap .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.otherap .wp-block-table table tr td:first-child,
main.lower.otherap .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.otherap .wp-block-table table tr th,
main.lower.otherap .wp-block-table table tr td,
main.lower.otherap .wp-block-flexible-table-block-table table tr th,
main.lower.otherap .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.otherap .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .sample dl {
    display: block;
  }
}
main.lower.otherap .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.otherap .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .sample dd {
    width: 100%;
  }
}
main.lower.otherap .sample .face dt {
  background: #ffecf5;
}
main.lower.otherap .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.otherap .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.otherap table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.otherap table th,
main.lower.otherap table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.otherap table th {
  background: #27579f;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.otherap table td {
  border: solid 1px #27579f;
}
main.lower.otherap table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.otherap table thead th:first-of-type {
  width: 11%;
}
main.lower.otherap table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.otherap table .min-h th,
main.lower.otherap table .min-h td {
  height: 45px;
}
main.lower.otherap table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.otherap table td.on-campus-job span, main.lower.otherap table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.otherap table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.otherap table td.off-campus span {
  background-color: #bbb;
}
main.lower.otherap table td.lecture {
  background-color: #ffecf5;
}
main.lower.otherap table .media {
  color: #f00;
}
main.lower.otherap table.society {
  border-collapse: collapse;
}
main.lower.otherap table.society th {
  color: #000;
  background: rgba(39, 87, 159, 0.3);
  border: solid 1px #27579f;
}
main.lower.otherap .hyou1 {
  border: 1px solid #666666;
}
main.lower.otherap .hyou1 th,
main.lower.otherap .hyou1 td {
  font-size: 16px;
}
main.lower.otherap .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.otherap .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.otherap .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.otherap #wrapper #contents .classification {
  border-right: none;
}
main.lower.otherap #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.otherap .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.otherap .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.otherap .hyou1 a {
  text-decoration: none;
}
main.lower.otherap .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.otherap .bgc01 {
  background-color: #ffecf5;
}
main.lower.otherap .bgc02 {
  background-color: #eadfff;
}
main.lower.otherap .bgc03 {
  background-color: #e6ffdd;
}
main.lower.otherap .bgc04 {
  background-color: #fff3c4;
}
main.lower.otherap .bgc05 {
  background-color: #d2e9ff;
}
main.lower.otherap .bgc06 {
  background-color: #efefef;
}
main.lower.otherap .bgc07 {
  background-color: #f5e6ee;
}
main.lower.otherap .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.otherap .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.otherap .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.otherap .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.otherap .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.otherap .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.otherap #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.otherap .hyou4 {
  margin: 10px 0;
}
main.lower.otherap .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.otherap .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.otherap .hyou5 {
  border: 1px solid #666666;
}
main.lower.otherap .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.otherap .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.otherap .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.otherap .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.otherap .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.otherap .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.otherap .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.otherap .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.otherap .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #27579f;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.otherap .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.otherap .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.otherap .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.otherap .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #27579f;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #27579f;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.otherap .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.otherap .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.otherap .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.otherap .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.otherap .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.otherap .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.otherap .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.otherap .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.otherap .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.otherap .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.otherap .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.otherap .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.otherap .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.otherap .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.otherap .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.otherap .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.otherap .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.otherap .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.otherap .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.otherap .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.otherap .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.otherap .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.otherap .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.otherap .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.otherap .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.otherap .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.otherap .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.otherap .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.otherap .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.otherap .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.otherap .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.otherap .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.otherap .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.otherap .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.otherap .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.otherap .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.otherap .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.otherap .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.otherap .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.otherap .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.otherap .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.otherap .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.otherap .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.otherap .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.otherap .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.otherap .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.otherap figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.otherap figure {
    margin: 1rem auto;
  }
}
main.lower.otherap .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.otherap .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.otherap .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.otherap .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.otherap .wp-pagenavi a.current {
  background: #27579f;
  color: #fff;
}
main.lower.otherap .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.otherap #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.otherap .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.otherap .uni .main,
main.lower.otherap .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.otherap .uni .main,
  main.lower.otherap .uni .sub {
    padding: 1rem;
  }
}
main.lower.otherap .uni .sub a {
  text-decoration: underline;
}
main.lower.otherap .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.otherap .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.otherap .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.otherap .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.otherap .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.otherap .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.otherap .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.otherap .uni .main .fields.no2 h4 a,
main.lower.otherap .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.otherap .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.otherap .uni .main .fields.no3 h4 a,
main.lower.otherap .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.otherap .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.otherap .uni .main .fields.no4 h4 a,
main.lower.otherap .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.otherap .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.otherap .uni .main .fields.no5 h4 a,
main.lower.otherap .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.otherap .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .uni .main .fields h4 {
    border: none;
  }
}
main.lower.otherap .uni .main .fields h4 a,
main.lower.otherap .uni .main .fields h4 span {
  display: block;
}
main.lower.otherap .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.otherap .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .uni .main .fields > div {
    display: block;
  }
}
main.lower.otherap .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.otherap .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.otherap .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.otherap .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.otherap .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.otherap .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.otherap .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.otherap .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.otherap .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.otherap .uni .main .fields .field li::before {
  content: "●";
}
main.lower.otherap .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.otherap .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.otherap a:link {
  color: inherit;
}
main.lower.otherap #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.otherap #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.otherap #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.otherap #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.otherap #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.otherap #contents .policy th,
main.lower.otherap #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.otherap #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.otherap #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.otherap #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.speech {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.speech {
    padding: 4.5rem 0 0;
  }
}
main.lower.speech .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.speech .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.speech #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.speech #page_ttl {
    padding: 2rem;
  }
}
main.lower.speech #page_ttl::after {
  position: absolute;
  content: "";
  background: #0291d7;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.speech #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.speech #page_ttl h1,
main.lower.speech #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.speech #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.speech #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.speech #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.speech #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.speech #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #0291d7;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.speech p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.speech a {
  text-decoration: underline;
}
main.lower.speech h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.speech h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.speech h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.speech h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.speech .page-h3 {
  color: #0291d7;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.speech .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.speech h4 {
  position: relative;
  color: #0291d7;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.speech h4 {
    font-size: 1em;
  }
}
main.lower.speech h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.speech .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.speech .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.speech .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.speech .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.speech .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.speech .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.speech .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.speech .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.speech .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.speech .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.speech .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.speech .message {
    font-size: 1.2em;
  }
}
main.lower.speech .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.speech .breadcrumb {
    padding: 1rem;
  }
}
main.lower.speech .breadcrumb a {
  color: #0164b2;
}
main.lower.speech .breadcrumb a,
main.lower.speech .breadcrumb span {
  font-size: 14px;
}
main.lower.speech .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.speech .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #0291d7;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.speech .list-number {
  counter-reset: listnum;
}
main.lower.speech .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.speech .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.speech .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.speech .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.speech .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.speech .ark-block-accordion__label {
  color: #141414;
}
main.lower.speech .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.speech .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.speech .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.speech .ark-block-accordion__icon::before, main.lower.speech .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.speech .media {
  display: table-cell;
}
main.lower.speech .wp-block-table,
main.lower.speech .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.speech .wp-block-table table,
main.lower.speech .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.speech .wp-block-table table,
  main.lower.speech .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.speech .wp-block-table table thead,
main.lower.speech .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.speech .wp-block-table table thead th,
main.lower.speech .wp-block-table table thead td,
main.lower.speech .wp-block-flexible-table-block-table table thead th,
main.lower.speech .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.speech .wp-block-table table thead th,
main.lower.speech .wp-block-flexible-table-block-table table thead th {
  background: #0291d7;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.speech .wp-block-table table thead td:first-child,
main.lower.speech .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.speech .wp-block-table table tr th,
main.lower.speech .wp-block-flexible-table-block-table table tr th {
  background-color: #0291d7;
  border: solid 1px #0291d7;
}
main.lower.speech .wp-block-table table tr td,
main.lower.speech .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #0291d7;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.speech .wp-block-table table tr td,
  main.lower.speech .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.speech .wp-block-table table tr td:first-child,
main.lower.speech .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.speech .wp-block-table table tr th,
main.lower.speech .wp-block-table table tr td,
main.lower.speech .wp-block-flexible-table-block-table table tr th,
main.lower.speech .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.speech .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.speech .sample dl {
    display: block;
  }
}
main.lower.speech .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.speech .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.speech .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.speech .sample dd {
    width: 100%;
  }
}
main.lower.speech .sample .face dt {
  background: #ffecf5;
}
main.lower.speech .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.speech .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.speech table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.speech table th,
main.lower.speech table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.speech table th {
  background: #0291d7;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.speech table td {
  border: solid 1px #0291d7;
}
main.lower.speech table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.speech table thead th:first-of-type {
  width: 11%;
}
main.lower.speech table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.speech table .min-h th,
main.lower.speech table .min-h td {
  height: 45px;
}
main.lower.speech table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.speech table td.on-campus-job span, main.lower.speech table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.speech table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.speech table td.off-campus span {
  background-color: #bbb;
}
main.lower.speech table td.lecture {
  background-color: #ffecf5;
}
main.lower.speech table .media {
  color: #f00;
}
main.lower.speech table.society {
  border-collapse: collapse;
}
main.lower.speech table.society th {
  color: #000;
  background: rgba(2, 145, 215, 0.3);
  border: solid 1px #0291d7;
}
main.lower.speech .hyou1 {
  border: 1px solid #666666;
}
main.lower.speech .hyou1 th,
main.lower.speech .hyou1 td {
  font-size: 16px;
}
main.lower.speech .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.speech .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.speech .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.speech #wrapper #contents .classification {
  border-right: none;
}
main.lower.speech #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.speech .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.speech .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.speech .hyou1 a {
  text-decoration: none;
}
main.lower.speech .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.speech .bgc01 {
  background-color: #ffecf5;
}
main.lower.speech .bgc02 {
  background-color: #eadfff;
}
main.lower.speech .bgc03 {
  background-color: #e6ffdd;
}
main.lower.speech .bgc04 {
  background-color: #fff3c4;
}
main.lower.speech .bgc05 {
  background-color: #d2e9ff;
}
main.lower.speech .bgc06 {
  background-color: #efefef;
}
main.lower.speech .bgc07 {
  background-color: #f5e6ee;
}
main.lower.speech .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.speech .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.speech .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.speech .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.speech .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.speech .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.speech #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.speech .hyou4 {
  margin: 10px 0;
}
main.lower.speech .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.speech .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.speech .hyou5 {
  border: 1px solid #666666;
}
main.lower.speech .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.speech .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.speech .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.speech .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.speech .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.speech .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.speech .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.speech .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.speech .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.speech .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #0291d7;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.speech .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.speech .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.speech .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.speech .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #0291d7;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #0291d7;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.speech .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.speech .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.speech .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.speech .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.speech .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.speech .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.speech .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.speech .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.speech .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.speech .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.speech .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.speech .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.speech .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.speech .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.speech .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.speech .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.speech .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.speech .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.speech .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.speech .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.speech .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.speech .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.speech .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.speech .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.speech .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.speech .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.speech .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.speech .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.speech .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.speech .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.speech .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.speech .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.speech .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.speech .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.speech .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.speech .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.speech .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.speech .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.speech .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.speech .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.speech .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.speech .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.speech .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.speech .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.speech .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.speech .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.speech .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.speech .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.speech .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.speech .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.speech .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.speech .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.speech figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.speech figure {
    margin: 1rem auto;
  }
}
main.lower.speech .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.speech .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.speech .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.speech .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.speech .wp-pagenavi a.current {
  background: #0291d7;
  color: #fff;
}
main.lower.speech .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.speech .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.speech #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.speech .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.speech .uni .main,
main.lower.speech .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.speech .uni .main,
  main.lower.speech .uni .sub {
    padding: 1rem;
  }
}
main.lower.speech .uni .sub a {
  text-decoration: underline;
}
main.lower.speech .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.speech .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.speech .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.speech .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.speech .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.speech .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.speech .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.speech .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.speech .uni .main .fields.no2 h4 a,
main.lower.speech .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.speech .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.speech .uni .main .fields.no3 h4 a,
main.lower.speech .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.speech .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.speech .uni .main .fields.no4 h4 a,
main.lower.speech .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.speech .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.speech .uni .main .fields.no5 h4 a,
main.lower.speech .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.speech .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.speech .uni .main .fields h4 {
    border: none;
  }
}
main.lower.speech .uni .main .fields h4 a,
main.lower.speech .uni .main .fields h4 span {
  display: block;
}
main.lower.speech .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.speech .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.speech .uni .main .fields > div {
    display: block;
  }
}
main.lower.speech .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.speech .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.speech .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.speech .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.speech .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.speech .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.speech .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.speech .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.speech .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.speech .uni .main .fields .field li::before {
  content: "●";
}
main.lower.speech .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.speech .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.speech a:link {
  color: inherit;
}
main.lower.speech #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.speech #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.speech #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.speech #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.speech #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.speech #contents .policy th,
main.lower.speech #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.speech #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.speech #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.speech #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.prosth {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.prosth {
    padding: 4.5rem 0 0;
  }
}
main.lower.prosth .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.prosth #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.prosth #page_ttl {
    padding: 2rem;
  }
}
main.lower.prosth #page_ttl::after {
  position: absolute;
  content: "";
  background: #029389;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.prosth #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.prosth #page_ttl h1,
main.lower.prosth #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.prosth #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.prosth #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.prosth #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.prosth #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.prosth #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #029389;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.prosth p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.prosth a {
  text-decoration: underline;
}
main.lower.prosth h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.prosth h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.prosth h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #029389;
}
@media screen and (max-width: 768px) {
  main.lower.prosth h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.prosth .page-h3 {
  color: #029389;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.prosth h4 {
  position: relative;
  color: #029389;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.prosth h4 {
    font-size: 1em;
  }
}
main.lower.prosth h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.prosth .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.prosth .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.prosth .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.prosth .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.prosth .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.prosth .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .message {
    font-size: 1.2em;
  }
}
main.lower.prosth .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .breadcrumb {
    padding: 1rem;
  }
}
main.lower.prosth .breadcrumb a {
  color: #0164b2;
}
main.lower.prosth .breadcrumb a,
main.lower.prosth .breadcrumb span {
  font-size: 14px;
}
main.lower.prosth .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.prosth .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #029389;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.prosth .list-number {
  counter-reset: listnum;
}
main.lower.prosth .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.prosth .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.prosth .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.prosth .ark-block-accordion__label {
  color: #141414;
}
main.lower.prosth .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.prosth .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.prosth .ark-block-accordion__icon::before, main.lower.prosth .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.prosth .media {
  display: table-cell;
}
main.lower.prosth .wp-block-table,
main.lower.prosth .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.prosth .wp-block-table table,
main.lower.prosth .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #029389;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .wp-block-table table,
  main.lower.prosth .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.prosth .wp-block-table table thead,
main.lower.prosth .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.prosth .wp-block-table table thead th,
main.lower.prosth .wp-block-table table thead td,
main.lower.prosth .wp-block-flexible-table-block-table table thead th,
main.lower.prosth .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.prosth .wp-block-table table thead th,
main.lower.prosth .wp-block-flexible-table-block-table table thead th {
  background: #029389;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.prosth .wp-block-table table thead td:first-child,
main.lower.prosth .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.prosth .wp-block-table table tr th,
main.lower.prosth .wp-block-flexible-table-block-table table tr th {
  background-color: #029389;
  border: solid 1px #029389;
}
main.lower.prosth .wp-block-table table tr td,
main.lower.prosth .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #029389;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .wp-block-table table tr td,
  main.lower.prosth .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.prosth .wp-block-table table tr td:first-child,
main.lower.prosth .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.prosth .wp-block-table table tr th,
main.lower.prosth .wp-block-table table tr td,
main.lower.prosth .wp-block-flexible-table-block-table table tr th,
main.lower.prosth .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.prosth .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .sample dl {
    display: block;
  }
}
main.lower.prosth .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.prosth .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .sample dd {
    width: 100%;
  }
}
main.lower.prosth .sample .face dt {
  background: #ffecf5;
}
main.lower.prosth .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.prosth .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.prosth table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.prosth table th,
main.lower.prosth table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.prosth table th {
  background: #029389;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.prosth table td {
  border: solid 1px #029389;
}
main.lower.prosth table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.prosth table thead th:first-of-type {
  width: 11%;
}
main.lower.prosth table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.prosth table .min-h th,
main.lower.prosth table .min-h td {
  height: 45px;
}
main.lower.prosth table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.prosth table td.on-campus-job span, main.lower.prosth table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.prosth table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.prosth table td.off-campus span {
  background-color: #bbb;
}
main.lower.prosth table td.lecture {
  background-color: #ffecf5;
}
main.lower.prosth table .media {
  color: #f00;
}
main.lower.prosth table.society {
  border-collapse: collapse;
}
main.lower.prosth table.society th {
  color: #000;
  background: rgba(2, 147, 137, 0.3);
  border: solid 1px #029389;
}
main.lower.prosth .hyou1 {
  border: 1px solid #666666;
}
main.lower.prosth .hyou1 th,
main.lower.prosth .hyou1 td {
  font-size: 16px;
}
main.lower.prosth .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.prosth .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.prosth .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.prosth #wrapper #contents .classification {
  border-right: none;
}
main.lower.prosth #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.prosth .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.prosth .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.prosth .hyou1 a {
  text-decoration: none;
}
main.lower.prosth .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.prosth .bgc01 {
  background-color: #ffecf5;
}
main.lower.prosth .bgc02 {
  background-color: #eadfff;
}
main.lower.prosth .bgc03 {
  background-color: #e6ffdd;
}
main.lower.prosth .bgc04 {
  background-color: #fff3c4;
}
main.lower.prosth .bgc05 {
  background-color: #d2e9ff;
}
main.lower.prosth .bgc06 {
  background-color: #efefef;
}
main.lower.prosth .bgc07 {
  background-color: #f5e6ee;
}
main.lower.prosth .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.prosth .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.prosth .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.prosth .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.prosth .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.prosth .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.prosth #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.prosth .hyou4 {
  margin: 10px 0;
}
main.lower.prosth .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.prosth .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.prosth .hyou5 {
  border: 1px solid #666666;
}
main.lower.prosth .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.prosth .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.prosth .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.prosth .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.prosth .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.prosth .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.prosth .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.prosth .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.prosth .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #029389;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.prosth .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.prosth .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.prosth .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.prosth .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #029389;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #029389;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.prosth .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.prosth .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.prosth .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.prosth .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.prosth .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.prosth .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.prosth .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.prosth .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.prosth .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.prosth .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.prosth .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.prosth .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.prosth .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.prosth .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.prosth .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.prosth .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.prosth .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.prosth .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.prosth .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.prosth .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.prosth .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.prosth .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.prosth .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.prosth .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.prosth .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.prosth .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.prosth .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.prosth .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.prosth .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.prosth .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.prosth .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.prosth .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.prosth .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.prosth .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.prosth .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.prosth .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.prosth .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.prosth .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.prosth .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.prosth .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.prosth .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.prosth .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.prosth .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.prosth .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.prosth .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.prosth .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.prosth figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.prosth figure {
    margin: 1rem auto;
  }
}
main.lower.prosth .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.prosth .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.prosth .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.prosth .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.prosth .wp-pagenavi a.current {
  background: #029389;
  color: #fff;
}
main.lower.prosth .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.prosth #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.prosth .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.prosth .uni .main,
main.lower.prosth .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.prosth .uni .main,
  main.lower.prosth .uni .sub {
    padding: 1rem;
  }
}
main.lower.prosth .uni .sub a {
  text-decoration: underline;
}
main.lower.prosth .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.prosth .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.prosth .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.prosth .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.prosth .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.prosth .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.prosth .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.prosth .uni .main .fields.no2 h4 a,
main.lower.prosth .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.prosth .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.prosth .uni .main .fields.no3 h4 a,
main.lower.prosth .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.prosth .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.prosth .uni .main .fields.no4 h4 a,
main.lower.prosth .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.prosth .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.prosth .uni .main .fields.no5 h4 a,
main.lower.prosth .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.prosth .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .uni .main .fields h4 {
    border: none;
  }
}
main.lower.prosth .uni .main .fields h4 a,
main.lower.prosth .uni .main .fields h4 span {
  display: block;
}
main.lower.prosth .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.prosth .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .uni .main .fields > div {
    display: block;
  }
}
main.lower.prosth .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.prosth .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.prosth .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.prosth .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.prosth .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.prosth .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.prosth .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.prosth .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.prosth .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.prosth .uni .main .fields .field li::before {
  content: "●";
}
main.lower.prosth .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.prosth .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.prosth a:link {
  color: inherit;
}
main.lower.prosth #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.prosth #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.prosth #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.prosth #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.prosth #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.prosth #contents .policy th,
main.lower.prosth #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.prosth #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.prosth #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.prosth #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.medsafe {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe {
    padding: 4.5rem 0 0;
  }
}
main.lower.medsafe .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.medsafe #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe #page_ttl {
    padding: 2rem;
  }
}
main.lower.medsafe #page_ttl::after {
  position: absolute;
  content: "";
  background: #005da8;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.medsafe #page_ttl h1,
main.lower.medsafe #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.medsafe #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.medsafe #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.medsafe #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #005da8;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.medsafe p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.medsafe a {
  text-decoration: underline;
}
main.lower.medsafe h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.medsafe h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #005da8;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.medsafe .page-h3 {
  color: #005da8;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.medsafe h4 {
  position: relative;
  color: #005da8;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe h4 {
    font-size: 1em;
  }
}
main.lower.medsafe h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.medsafe .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.medsafe .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.medsafe .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.medsafe .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.medsafe .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.medsafe .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .message {
    font-size: 1.2em;
  }
}
main.lower.medsafe .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .breadcrumb {
    padding: 1rem;
  }
}
main.lower.medsafe .breadcrumb a {
  color: #0164b2;
}
main.lower.medsafe .breadcrumb a,
main.lower.medsafe .breadcrumb span {
  font-size: 14px;
}
main.lower.medsafe .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.medsafe .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #005da8;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.medsafe .list-number {
  counter-reset: listnum;
}
main.lower.medsafe .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.medsafe .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.medsafe .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.medsafe .ark-block-accordion__label {
  color: #141414;
}
main.lower.medsafe .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.medsafe .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.medsafe .ark-block-accordion__icon::before, main.lower.medsafe .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.medsafe .media {
  display: table-cell;
}
main.lower.medsafe .wp-block-table,
main.lower.medsafe .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.medsafe .wp-block-table table,
main.lower.medsafe .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #005da8;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .wp-block-table table,
  main.lower.medsafe .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.medsafe .wp-block-table table thead,
main.lower.medsafe .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.medsafe .wp-block-table table thead th,
main.lower.medsafe .wp-block-table table thead td,
main.lower.medsafe .wp-block-flexible-table-block-table table thead th,
main.lower.medsafe .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.medsafe .wp-block-table table thead th,
main.lower.medsafe .wp-block-flexible-table-block-table table thead th {
  background: #005da8;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.medsafe .wp-block-table table thead td:first-child,
main.lower.medsafe .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.medsafe .wp-block-table table tr th,
main.lower.medsafe .wp-block-flexible-table-block-table table tr th {
  background-color: #005da8;
  border: solid 1px #005da8;
}
main.lower.medsafe .wp-block-table table tr td,
main.lower.medsafe .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #005da8;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .wp-block-table table tr td,
  main.lower.medsafe .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.medsafe .wp-block-table table tr td:first-child,
main.lower.medsafe .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.medsafe .wp-block-table table tr th,
main.lower.medsafe .wp-block-table table tr td,
main.lower.medsafe .wp-block-flexible-table-block-table table tr th,
main.lower.medsafe .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.medsafe .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .sample dl {
    display: block;
  }
}
main.lower.medsafe .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.medsafe .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .sample dd {
    width: 100%;
  }
}
main.lower.medsafe .sample .face dt {
  background: #ffecf5;
}
main.lower.medsafe .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.medsafe .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.medsafe table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.medsafe table th,
main.lower.medsafe table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.medsafe table th {
  background: #005da8;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.medsafe table td {
  border: solid 1px #005da8;
}
main.lower.medsafe table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.medsafe table thead th:first-of-type {
  width: 11%;
}
main.lower.medsafe table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.medsafe table .min-h th,
main.lower.medsafe table .min-h td {
  height: 45px;
}
main.lower.medsafe table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.medsafe table td.on-campus-job span, main.lower.medsafe table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.medsafe table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.medsafe table td.off-campus span {
  background-color: #bbb;
}
main.lower.medsafe table td.lecture {
  background-color: #ffecf5;
}
main.lower.medsafe table .media {
  color: #f00;
}
main.lower.medsafe table.society {
  border-collapse: collapse;
}
main.lower.medsafe table.society th {
  color: #000;
  background: rgba(0, 93, 168, 0.3);
  border: solid 1px #005da8;
}
main.lower.medsafe .hyou1 {
  border: 1px solid #666666;
}
main.lower.medsafe .hyou1 th,
main.lower.medsafe .hyou1 td {
  font-size: 16px;
}
main.lower.medsafe .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.medsafe .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.medsafe .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.medsafe #wrapper #contents .classification {
  border-right: none;
}
main.lower.medsafe #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.medsafe .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.medsafe .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.medsafe .hyou1 a {
  text-decoration: none;
}
main.lower.medsafe .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.medsafe .bgc01 {
  background-color: #ffecf5;
}
main.lower.medsafe .bgc02 {
  background-color: #eadfff;
}
main.lower.medsafe .bgc03 {
  background-color: #e6ffdd;
}
main.lower.medsafe .bgc04 {
  background-color: #fff3c4;
}
main.lower.medsafe .bgc05 {
  background-color: #d2e9ff;
}
main.lower.medsafe .bgc06 {
  background-color: #efefef;
}
main.lower.medsafe .bgc07 {
  background-color: #f5e6ee;
}
main.lower.medsafe .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.medsafe .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.medsafe .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.medsafe .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.medsafe .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.medsafe .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.medsafe #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.medsafe .hyou4 {
  margin: 10px 0;
}
main.lower.medsafe .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.medsafe .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.medsafe .hyou5 {
  border: 1px solid #666666;
}
main.lower.medsafe .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.medsafe .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.medsafe .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.medsafe .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.medsafe .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.medsafe .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.medsafe .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.medsafe .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.medsafe .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #005da8;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.medsafe .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.medsafe .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #005da8;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #005da8;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.medsafe .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.medsafe .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.medsafe .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.medsafe .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.medsafe .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.medsafe .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.medsafe .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.medsafe .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.medsafe .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.medsafe .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.medsafe .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.medsafe .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.medsafe .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.medsafe .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.medsafe .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.medsafe .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.medsafe .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.medsafe .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.medsafe .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.medsafe .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.medsafe .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.medsafe .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.medsafe .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.medsafe .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.medsafe .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.medsafe .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.medsafe .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.medsafe .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.medsafe .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.medsafe .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.medsafe .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.medsafe .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.medsafe .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.medsafe .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.medsafe .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.medsafe .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.medsafe .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.medsafe .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.medsafe .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.medsafe .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.medsafe .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.medsafe .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.medsafe .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.medsafe figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe figure {
    margin: 1rem auto;
  }
}
main.lower.medsafe .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.medsafe .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.medsafe .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.medsafe .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.medsafe .wp-pagenavi a.current {
  background: #005da8;
  color: #fff;
}
main.lower.medsafe .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.medsafe #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.medsafe .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.medsafe .uni .main,
main.lower.medsafe .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .uni .main,
  main.lower.medsafe .uni .sub {
    padding: 1rem;
  }
}
main.lower.medsafe .uni .sub a {
  text-decoration: underline;
}
main.lower.medsafe .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.medsafe .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.medsafe .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.medsafe .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.medsafe .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.medsafe .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.medsafe .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.medsafe .uni .main .fields.no2 h4 a,
main.lower.medsafe .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.medsafe .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.medsafe .uni .main .fields.no3 h4 a,
main.lower.medsafe .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.medsafe .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.medsafe .uni .main .fields.no4 h4 a,
main.lower.medsafe .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.medsafe .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.medsafe .uni .main .fields.no5 h4 a,
main.lower.medsafe .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.medsafe .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .uni .main .fields h4 {
    border: none;
  }
}
main.lower.medsafe .uni .main .fields h4 a,
main.lower.medsafe .uni .main .fields h4 span {
  display: block;
}
main.lower.medsafe .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.medsafe .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .uni .main .fields > div {
    display: block;
  }
}
main.lower.medsafe .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.medsafe .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.medsafe .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.medsafe .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.medsafe .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.medsafe .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.medsafe .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.medsafe .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.medsafe .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.medsafe .uni .main .fields .field li::before {
  content: "●";
}
main.lower.medsafe .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.medsafe .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.medsafe a:link {
  color: inherit;
}
main.lower.medsafe #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.medsafe #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.medsafe #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.medsafe #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.medsafe #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.medsafe #contents .policy th,
main.lower.medsafe #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.medsafe #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.medsafe #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.medsafe #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.visual {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.visual {
    padding: 4.5rem 0 0;
  }
}
main.lower.visual .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.visual .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.visual #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.visual #page_ttl {
    padding: 2rem;
  }
}
main.lower.visual #page_ttl::after {
  position: absolute;
  content: "";
  background: #0f51aa;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.visual #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.visual #page_ttl h1,
main.lower.visual #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.visual #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.visual #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.visual #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.visual #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.visual #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #0f51aa;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.visual p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.visual a {
  text-decoration: underline;
}
main.lower.visual h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.visual h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.visual h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #0f51aa;
}
@media screen and (max-width: 768px) {
  main.lower.visual h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.visual .page-h3 {
  color: #0f51aa;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.visual .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.visual h4 {
  position: relative;
  color: #0f51aa;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.visual h4 {
    font-size: 1em;
  }
}
main.lower.visual h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.visual .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.visual .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.visual .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.visual .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.visual .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.visual .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.visual .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.visual .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.visual .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.visual .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.visual .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.visual .message {
    font-size: 1.2em;
  }
}
main.lower.visual .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.visual .breadcrumb {
    padding: 1rem;
  }
}
main.lower.visual .breadcrumb a {
  color: #0164b2;
}
main.lower.visual .breadcrumb a,
main.lower.visual .breadcrumb span {
  font-size: 14px;
}
main.lower.visual .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.visual .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #0f51aa;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.visual .list-number {
  counter-reset: listnum;
}
main.lower.visual .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.visual .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.visual .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.visual .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.visual .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.visual .ark-block-accordion__label {
  color: #141414;
}
main.lower.visual .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.visual .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.visual .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.visual .ark-block-accordion__icon::before, main.lower.visual .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.visual .media {
  display: table-cell;
}
main.lower.visual .wp-block-table,
main.lower.visual .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.visual .wp-block-table table,
main.lower.visual .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #0f51aa;
}
@media screen and (max-width: 768px) {
  main.lower.visual .wp-block-table table,
  main.lower.visual .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.visual .wp-block-table table thead,
main.lower.visual .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.visual .wp-block-table table thead th,
main.lower.visual .wp-block-table table thead td,
main.lower.visual .wp-block-flexible-table-block-table table thead th,
main.lower.visual .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.visual .wp-block-table table thead th,
main.lower.visual .wp-block-flexible-table-block-table table thead th {
  background: #0f51aa;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.visual .wp-block-table table thead td:first-child,
main.lower.visual .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.visual .wp-block-table table tr th,
main.lower.visual .wp-block-flexible-table-block-table table tr th {
  background-color: #0f51aa;
  border: solid 1px #0f51aa;
}
main.lower.visual .wp-block-table table tr td,
main.lower.visual .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #0f51aa;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.visual .wp-block-table table tr td,
  main.lower.visual .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.visual .wp-block-table table tr td:first-child,
main.lower.visual .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.visual .wp-block-table table tr th,
main.lower.visual .wp-block-table table tr td,
main.lower.visual .wp-block-flexible-table-block-table table tr th,
main.lower.visual .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.visual .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.visual .sample dl {
    display: block;
  }
}
main.lower.visual .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.visual .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.visual .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.visual .sample dd {
    width: 100%;
  }
}
main.lower.visual .sample .face dt {
  background: #ffecf5;
}
main.lower.visual .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.visual .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.visual table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.visual table th,
main.lower.visual table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.visual table th {
  background: #0f51aa;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.visual table td {
  border: solid 1px #0f51aa;
}
main.lower.visual table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.visual table thead th:first-of-type {
  width: 11%;
}
main.lower.visual table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.visual table .min-h th,
main.lower.visual table .min-h td {
  height: 45px;
}
main.lower.visual table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.visual table td.on-campus-job span, main.lower.visual table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.visual table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.visual table td.off-campus span {
  background-color: #bbb;
}
main.lower.visual table td.lecture {
  background-color: #ffecf5;
}
main.lower.visual table .media {
  color: #f00;
}
main.lower.visual table.society {
  border-collapse: collapse;
}
main.lower.visual table.society th {
  color: #000;
  background: rgba(15, 81, 170, 0.3);
  border: solid 1px #0f51aa;
}
main.lower.visual .hyou1 {
  border: 1px solid #666666;
}
main.lower.visual .hyou1 th,
main.lower.visual .hyou1 td {
  font-size: 16px;
}
main.lower.visual .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.visual .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.visual .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.visual #wrapper #contents .classification {
  border-right: none;
}
main.lower.visual #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.visual .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.visual .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.visual .hyou1 a {
  text-decoration: none;
}
main.lower.visual .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.visual .bgc01 {
  background-color: #ffecf5;
}
main.lower.visual .bgc02 {
  background-color: #eadfff;
}
main.lower.visual .bgc03 {
  background-color: #e6ffdd;
}
main.lower.visual .bgc04 {
  background-color: #fff3c4;
}
main.lower.visual .bgc05 {
  background-color: #d2e9ff;
}
main.lower.visual .bgc06 {
  background-color: #efefef;
}
main.lower.visual .bgc07 {
  background-color: #f5e6ee;
}
main.lower.visual .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.visual .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.visual .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.visual .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.visual .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.visual .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.visual #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.visual .hyou4 {
  margin: 10px 0;
}
main.lower.visual .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.visual .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.visual .hyou5 {
  border: 1px solid #666666;
}
main.lower.visual .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.visual .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.visual .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.visual .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.visual .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.visual .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.visual .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.visual .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.visual .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.visual .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #0f51aa;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.visual .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.visual .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.visual .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.visual .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #0f51aa;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #0f51aa;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.visual .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.visual .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.visual .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.visual .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.visual .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.visual .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.visual .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.visual .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.visual .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.visual .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.visual .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.visual .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.visual .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.visual .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.visual .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.visual .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.visual .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.visual .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.visual .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.visual .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.visual .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.visual .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.visual .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.visual .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.visual .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.visual .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.visual .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.visual .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.visual .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.visual .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.visual .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.visual .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.visual .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.visual .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.visual .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.visual .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.visual .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.visual .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.visual .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.visual .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.visual .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.visual .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.visual .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.visual .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.visual .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.visual .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.visual .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.visual .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.visual .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.visual .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.visual .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.visual .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.visual figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.visual figure {
    margin: 1rem auto;
  }
}
main.lower.visual .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.visual .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.visual .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.visual .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.visual .wp-pagenavi a.current {
  background: #0f51aa;
  color: #fff;
}
main.lower.visual .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.visual .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.visual #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.visual .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.visual .uni .main,
main.lower.visual .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.visual .uni .main,
  main.lower.visual .uni .sub {
    padding: 1rem;
  }
}
main.lower.visual .uni .sub a {
  text-decoration: underline;
}
main.lower.visual .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.visual .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.visual .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.visual .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.visual .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.visual .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.visual .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.visual .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.visual .uni .main .fields.no2 h4 a,
main.lower.visual .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.visual .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.visual .uni .main .fields.no3 h4 a,
main.lower.visual .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.visual .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.visual .uni .main .fields.no4 h4 a,
main.lower.visual .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.visual .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.visual .uni .main .fields.no5 h4 a,
main.lower.visual .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.visual .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.visual .uni .main .fields h4 {
    border: none;
  }
}
main.lower.visual .uni .main .fields h4 a,
main.lower.visual .uni .main .fields h4 span {
  display: block;
}
main.lower.visual .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.visual .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.visual .uni .main .fields > div {
    display: block;
  }
}
main.lower.visual .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.visual .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.visual .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.visual .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.visual .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.visual .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.visual .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.visual .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.visual .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.visual .uni .main .fields .field li::before {
  content: "●";
}
main.lower.visual .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.visual .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.visual a:link {
  color: inherit;
}
main.lower.visual #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.visual #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.visual #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.visual #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.visual #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.visual #contents .policy th,
main.lower.visual #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.visual #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.visual #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.visual #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.emergen {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.emergen {
    padding: 4.5rem 0 0;
  }
}
main.lower.emergen .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.emergen #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.emergen #page_ttl {
    padding: 2rem;
  }
}
main.lower.emergen #page_ttl::after {
  position: absolute;
  content: "";
  background: #007dc7;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.emergen #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.emergen #page_ttl h1,
main.lower.emergen #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.emergen #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.emergen #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.emergen #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.emergen #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.emergen #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #007dc7;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.emergen p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.emergen a {
  text-decoration: underline;
}
main.lower.emergen h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.emergen h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.emergen h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #007dc7;
}
@media screen and (max-width: 768px) {
  main.lower.emergen h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.emergen .page-h3 {
  color: #007dc7;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.emergen h4 {
  position: relative;
  color: #007dc7;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.emergen h4 {
    font-size: 1em;
  }
}
main.lower.emergen h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.emergen .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.emergen .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.emergen .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.emergen .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.emergen .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.emergen .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .message {
    font-size: 1.2em;
  }
}
main.lower.emergen .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .breadcrumb {
    padding: 1rem;
  }
}
main.lower.emergen .breadcrumb a {
  color: #0164b2;
}
main.lower.emergen .breadcrumb a,
main.lower.emergen .breadcrumb span {
  font-size: 14px;
}
main.lower.emergen .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.emergen .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #007dc7;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.emergen .list-number {
  counter-reset: listnum;
}
main.lower.emergen .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.emergen .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.emergen .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.emergen .ark-block-accordion__label {
  color: #141414;
}
main.lower.emergen .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.emergen .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.emergen .ark-block-accordion__icon::before, main.lower.emergen .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.emergen .media {
  display: table-cell;
}
main.lower.emergen .wp-block-table,
main.lower.emergen .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.emergen .wp-block-table table,
main.lower.emergen .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #007dc7;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .wp-block-table table,
  main.lower.emergen .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.emergen .wp-block-table table thead,
main.lower.emergen .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.emergen .wp-block-table table thead th,
main.lower.emergen .wp-block-table table thead td,
main.lower.emergen .wp-block-flexible-table-block-table table thead th,
main.lower.emergen .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.emergen .wp-block-table table thead th,
main.lower.emergen .wp-block-flexible-table-block-table table thead th {
  background: #007dc7;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.emergen .wp-block-table table thead td:first-child,
main.lower.emergen .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.emergen .wp-block-table table tr th,
main.lower.emergen .wp-block-flexible-table-block-table table tr th {
  background-color: #007dc7;
  border: solid 1px #007dc7;
}
main.lower.emergen .wp-block-table table tr td,
main.lower.emergen .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #007dc7;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .wp-block-table table tr td,
  main.lower.emergen .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.emergen .wp-block-table table tr td:first-child,
main.lower.emergen .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.emergen .wp-block-table table tr th,
main.lower.emergen .wp-block-table table tr td,
main.lower.emergen .wp-block-flexible-table-block-table table tr th,
main.lower.emergen .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.emergen .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .sample dl {
    display: block;
  }
}
main.lower.emergen .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.emergen .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .sample dd {
    width: 100%;
  }
}
main.lower.emergen .sample .face dt {
  background: #ffecf5;
}
main.lower.emergen .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.emergen .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.emergen table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.emergen table th,
main.lower.emergen table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.emergen table th {
  background: #007dc7;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.emergen table td {
  border: solid 1px #007dc7;
}
main.lower.emergen table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.emergen table thead th:first-of-type {
  width: 11%;
}
main.lower.emergen table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.emergen table .min-h th,
main.lower.emergen table .min-h td {
  height: 45px;
}
main.lower.emergen table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.emergen table td.on-campus-job span, main.lower.emergen table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.emergen table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.emergen table td.off-campus span {
  background-color: #bbb;
}
main.lower.emergen table td.lecture {
  background-color: #ffecf5;
}
main.lower.emergen table .media {
  color: #f00;
}
main.lower.emergen table.society {
  border-collapse: collapse;
}
main.lower.emergen table.society th {
  color: #000;
  background: rgba(0, 125, 199, 0.3);
  border: solid 1px #007dc7;
}
main.lower.emergen .hyou1 {
  border: 1px solid #666666;
}
main.lower.emergen .hyou1 th,
main.lower.emergen .hyou1 td {
  font-size: 16px;
}
main.lower.emergen .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.emergen .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.emergen .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.emergen #wrapper #contents .classification {
  border-right: none;
}
main.lower.emergen #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.emergen .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.emergen .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.emergen .hyou1 a {
  text-decoration: none;
}
main.lower.emergen .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.emergen .bgc01 {
  background-color: #ffecf5;
}
main.lower.emergen .bgc02 {
  background-color: #eadfff;
}
main.lower.emergen .bgc03 {
  background-color: #e6ffdd;
}
main.lower.emergen .bgc04 {
  background-color: #fff3c4;
}
main.lower.emergen .bgc05 {
  background-color: #d2e9ff;
}
main.lower.emergen .bgc06 {
  background-color: #efefef;
}
main.lower.emergen .bgc07 {
  background-color: #f5e6ee;
}
main.lower.emergen .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.emergen .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.emergen .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.emergen .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.emergen .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.emergen .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.emergen #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.emergen .hyou4 {
  margin: 10px 0;
}
main.lower.emergen .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.emergen .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.emergen .hyou5 {
  border: 1px solid #666666;
}
main.lower.emergen .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.emergen .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.emergen .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.emergen .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.emergen .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.emergen .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.emergen .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.emergen .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.emergen .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #007dc7;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.emergen .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.emergen .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.emergen .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.emergen .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #007dc7;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #007dc7;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.emergen .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.emergen .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.emergen .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.emergen .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.emergen .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.emergen .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.emergen .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.emergen .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.emergen .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.emergen .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.emergen .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.emergen .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.emergen .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.emergen .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.emergen .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.emergen .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.emergen .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.emergen .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.emergen .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.emergen .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.emergen .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.emergen .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.emergen .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.emergen .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.emergen .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.emergen .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.emergen .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.emergen .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.emergen .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.emergen .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.emergen .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.emergen .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.emergen .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.emergen .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.emergen .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.emergen .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.emergen .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.emergen .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.emergen .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.emergen .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.emergen .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.emergen .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.emergen .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.emergen .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.emergen .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.emergen .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.emergen figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.emergen figure {
    margin: 1rem auto;
  }
}
main.lower.emergen .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.emergen .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.emergen .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.emergen .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.emergen .wp-pagenavi a.current {
  background: #007dc7;
  color: #fff;
}
main.lower.emergen .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.emergen #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.emergen .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.emergen .uni .main,
main.lower.emergen .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.emergen .uni .main,
  main.lower.emergen .uni .sub {
    padding: 1rem;
  }
}
main.lower.emergen .uni .sub a {
  text-decoration: underline;
}
main.lower.emergen .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.emergen .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.emergen .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.emergen .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.emergen .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.emergen .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.emergen .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.emergen .uni .main .fields.no2 h4 a,
main.lower.emergen .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.emergen .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.emergen .uni .main .fields.no3 h4 a,
main.lower.emergen .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.emergen .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.emergen .uni .main .fields.no4 h4 a,
main.lower.emergen .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.emergen .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.emergen .uni .main .fields.no5 h4 a,
main.lower.emergen .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.emergen .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .uni .main .fields h4 {
    border: none;
  }
}
main.lower.emergen .uni .main .fields h4 a,
main.lower.emergen .uni .main .fields h4 span {
  display: block;
}
main.lower.emergen .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.emergen .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .uni .main .fields > div {
    display: block;
  }
}
main.lower.emergen .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.emergen .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.emergen .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.emergen .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.emergen .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.emergen .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.emergen .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.emergen .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.emergen .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.emergen .uni .main .fields .field li::before {
  content: "●";
}
main.lower.emergen .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.emergen .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.emergen a:link {
  color: inherit;
}
main.lower.emergen #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.emergen #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.emergen #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.emergen #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.emergen #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.emergen #contents .policy th,
main.lower.emergen #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.emergen #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.emergen #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.emergen #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.radiation {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.radiation {
    padding: 4.5rem 0 0;
  }
}
main.lower.radiation .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.radiation #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.radiation #page_ttl {
    padding: 2rem;
  }
}
main.lower.radiation #page_ttl::after {
  position: absolute;
  content: "";
  background: #0090b1;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.radiation #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.radiation #page_ttl h1,
main.lower.radiation #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.radiation #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.radiation #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.radiation #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.radiation #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.radiation #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #0090b1;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.radiation p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.radiation a {
  text-decoration: underline;
}
main.lower.radiation h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.radiation h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.radiation h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #0090b1;
}
@media screen and (max-width: 768px) {
  main.lower.radiation h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.radiation .page-h3 {
  color: #0090b1;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.radiation h4 {
  position: relative;
  color: #0090b1;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.radiation h4 {
    font-size: 1em;
  }
}
main.lower.radiation h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.radiation .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.radiation .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.radiation .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.radiation .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.radiation .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.radiation .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .message {
    font-size: 1.2em;
  }
}
main.lower.radiation .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .breadcrumb {
    padding: 1rem;
  }
}
main.lower.radiation .breadcrumb a {
  color: #0164b2;
}
main.lower.radiation .breadcrumb a,
main.lower.radiation .breadcrumb span {
  font-size: 14px;
}
main.lower.radiation .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.radiation .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #0090b1;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.radiation .list-number {
  counter-reset: listnum;
}
main.lower.radiation .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.radiation .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.radiation .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.radiation .ark-block-accordion__label {
  color: #141414;
}
main.lower.radiation .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.radiation .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.radiation .ark-block-accordion__icon::before, main.lower.radiation .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.radiation .media {
  display: table-cell;
}
main.lower.radiation .wp-block-table,
main.lower.radiation .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.radiation .wp-block-table table,
main.lower.radiation .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #0090b1;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .wp-block-table table,
  main.lower.radiation .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.radiation .wp-block-table table thead,
main.lower.radiation .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.radiation .wp-block-table table thead th,
main.lower.radiation .wp-block-table table thead td,
main.lower.radiation .wp-block-flexible-table-block-table table thead th,
main.lower.radiation .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.radiation .wp-block-table table thead th,
main.lower.radiation .wp-block-flexible-table-block-table table thead th {
  background: #0090b1;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.radiation .wp-block-table table thead td:first-child,
main.lower.radiation .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.radiation .wp-block-table table tr th,
main.lower.radiation .wp-block-flexible-table-block-table table tr th {
  background-color: #0090b1;
  border: solid 1px #0090b1;
}
main.lower.radiation .wp-block-table table tr td,
main.lower.radiation .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #0090b1;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .wp-block-table table tr td,
  main.lower.radiation .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.radiation .wp-block-table table tr td:first-child,
main.lower.radiation .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.radiation .wp-block-table table tr th,
main.lower.radiation .wp-block-table table tr td,
main.lower.radiation .wp-block-flexible-table-block-table table tr th,
main.lower.radiation .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.radiation .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .sample dl {
    display: block;
  }
}
main.lower.radiation .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.radiation .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .sample dd {
    width: 100%;
  }
}
main.lower.radiation .sample .face dt {
  background: #ffecf5;
}
main.lower.radiation .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.radiation .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.radiation table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.radiation table th,
main.lower.radiation table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.radiation table th {
  background: #0090b1;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.radiation table td {
  border: solid 1px #0090b1;
}
main.lower.radiation table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.radiation table thead th:first-of-type {
  width: 11%;
}
main.lower.radiation table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.radiation table .min-h th,
main.lower.radiation table .min-h td {
  height: 45px;
}
main.lower.radiation table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.radiation table td.on-campus-job span, main.lower.radiation table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.radiation table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.radiation table td.off-campus span {
  background-color: #bbb;
}
main.lower.radiation table td.lecture {
  background-color: #ffecf5;
}
main.lower.radiation table .media {
  color: #f00;
}
main.lower.radiation table.society {
  border-collapse: collapse;
}
main.lower.radiation table.society th {
  color: #000;
  background: rgba(0, 144, 177, 0.3);
  border: solid 1px #0090b1;
}
main.lower.radiation .hyou1 {
  border: 1px solid #666666;
}
main.lower.radiation .hyou1 th,
main.lower.radiation .hyou1 td {
  font-size: 16px;
}
main.lower.radiation .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.radiation .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.radiation .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.radiation #wrapper #contents .classification {
  border-right: none;
}
main.lower.radiation #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.radiation .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.radiation .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.radiation .hyou1 a {
  text-decoration: none;
}
main.lower.radiation .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.radiation .bgc01 {
  background-color: #ffecf5;
}
main.lower.radiation .bgc02 {
  background-color: #eadfff;
}
main.lower.radiation .bgc03 {
  background-color: #e6ffdd;
}
main.lower.radiation .bgc04 {
  background-color: #fff3c4;
}
main.lower.radiation .bgc05 {
  background-color: #d2e9ff;
}
main.lower.radiation .bgc06 {
  background-color: #efefef;
}
main.lower.radiation .bgc07 {
  background-color: #f5e6ee;
}
main.lower.radiation .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.radiation .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.radiation .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.radiation .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.radiation .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.radiation .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.radiation #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.radiation .hyou4 {
  margin: 10px 0;
}
main.lower.radiation .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.radiation .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.radiation .hyou5 {
  border: 1px solid #666666;
}
main.lower.radiation .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.radiation .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.radiation .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.radiation .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.radiation .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.radiation .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.radiation .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.radiation .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.radiation .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #0090b1;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.radiation .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.radiation .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.radiation .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.radiation .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #0090b1;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #0090b1;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.radiation .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.radiation .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.radiation .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.radiation .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.radiation .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.radiation .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.radiation .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.radiation .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.radiation .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.radiation .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.radiation .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.radiation .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.radiation .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.radiation .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.radiation .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.radiation .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.radiation .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.radiation .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.radiation .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.radiation .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.radiation .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.radiation .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.radiation .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.radiation .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.radiation .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.radiation .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.radiation .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.radiation .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.radiation .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.radiation .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.radiation .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.radiation .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.radiation .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.radiation .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.radiation .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.radiation .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.radiation .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.radiation .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.radiation .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.radiation .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.radiation .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.radiation .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.radiation .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.radiation .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.radiation .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.radiation .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.radiation figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.radiation figure {
    margin: 1rem auto;
  }
}
main.lower.radiation .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.radiation .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.radiation .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.radiation .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.radiation .wp-pagenavi a.current {
  background: #0090b1;
  color: #fff;
}
main.lower.radiation .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.radiation #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.radiation .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.radiation .uni .main,
main.lower.radiation .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.radiation .uni .main,
  main.lower.radiation .uni .sub {
    padding: 1rem;
  }
}
main.lower.radiation .uni .sub a {
  text-decoration: underline;
}
main.lower.radiation .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.radiation .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.radiation .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.radiation .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.radiation .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.radiation .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.radiation .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.radiation .uni .main .fields.no2 h4 a,
main.lower.radiation .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.radiation .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.radiation .uni .main .fields.no3 h4 a,
main.lower.radiation .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.radiation .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.radiation .uni .main .fields.no4 h4 a,
main.lower.radiation .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.radiation .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.radiation .uni .main .fields.no5 h4 a,
main.lower.radiation .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.radiation .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .uni .main .fields h4 {
    border: none;
  }
}
main.lower.radiation .uni .main .fields h4 a,
main.lower.radiation .uni .main .fields h4 span {
  display: block;
}
main.lower.radiation .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.radiation .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .uni .main .fields > div {
    display: block;
  }
}
main.lower.radiation .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.radiation .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.radiation .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.radiation .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.radiation .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.radiation .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.radiation .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.radiation .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.radiation .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.radiation .uni .main .fields .field li::before {
  content: "●";
}
main.lower.radiation .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.radiation .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.radiation a:link {
  color: inherit;
}
main.lower.radiation #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.radiation #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.radiation #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.radiation #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.radiation #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.radiation #contents .policy th,
main.lower.radiation #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.radiation #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.radiation #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.radiation #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.anthrop {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop {
    padding: 4.5rem 0 0;
  }
}
main.lower.anthrop .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.anthrop #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop #page_ttl {
    padding: 2rem;
  }
}
main.lower.anthrop #page_ttl::after {
  position: absolute;
  content: "";
  background: #b28246;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.anthrop #page_ttl h1,
main.lower.anthrop #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.anthrop #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.anthrop #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.anthrop #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #b28246;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.anthrop p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.anthrop a {
  text-decoration: underline;
}
main.lower.anthrop h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.anthrop h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #b28246;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.anthrop .page-h3 {
  color: #b28246;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.anthrop h4 {
  position: relative;
  color: #b28246;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop h4 {
    font-size: 1em;
  }
}
main.lower.anthrop h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.anthrop .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.anthrop .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.anthrop .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.anthrop .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.anthrop .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.anthrop .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .message {
    font-size: 1.2em;
  }
}
main.lower.anthrop .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .breadcrumb {
    padding: 1rem;
  }
}
main.lower.anthrop .breadcrumb a {
  color: #0164b2;
}
main.lower.anthrop .breadcrumb a,
main.lower.anthrop .breadcrumb span {
  font-size: 14px;
}
main.lower.anthrop .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.anthrop .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #b28246;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.anthrop .list-number {
  counter-reset: listnum;
}
main.lower.anthrop .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.anthrop .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.anthrop .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.anthrop .ark-block-accordion__label {
  color: #141414;
}
main.lower.anthrop .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.anthrop .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.anthrop .ark-block-accordion__icon::before, main.lower.anthrop .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.anthrop .media {
  display: table-cell;
}
main.lower.anthrop .wp-block-table,
main.lower.anthrop .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.anthrop .wp-block-table table,
main.lower.anthrop .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #b28246;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .wp-block-table table,
  main.lower.anthrop .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.anthrop .wp-block-table table thead,
main.lower.anthrop .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.anthrop .wp-block-table table thead th,
main.lower.anthrop .wp-block-table table thead td,
main.lower.anthrop .wp-block-flexible-table-block-table table thead th,
main.lower.anthrop .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.anthrop .wp-block-table table thead th,
main.lower.anthrop .wp-block-flexible-table-block-table table thead th {
  background: #b28246;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.anthrop .wp-block-table table thead td:first-child,
main.lower.anthrop .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.anthrop .wp-block-table table tr th,
main.lower.anthrop .wp-block-flexible-table-block-table table tr th {
  background-color: #b28246;
  border: solid 1px #b28246;
}
main.lower.anthrop .wp-block-table table tr td,
main.lower.anthrop .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #b28246;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .wp-block-table table tr td,
  main.lower.anthrop .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.anthrop .wp-block-table table tr td:first-child,
main.lower.anthrop .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.anthrop .wp-block-table table tr th,
main.lower.anthrop .wp-block-table table tr td,
main.lower.anthrop .wp-block-flexible-table-block-table table tr th,
main.lower.anthrop .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.anthrop .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .sample dl {
    display: block;
  }
}
main.lower.anthrop .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.anthrop .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .sample dd {
    width: 100%;
  }
}
main.lower.anthrop .sample .face dt {
  background: #ffecf5;
}
main.lower.anthrop .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.anthrop .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.anthrop table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.anthrop table th,
main.lower.anthrop table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.anthrop table th {
  background: #b28246;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.anthrop table td {
  border: solid 1px #b28246;
}
main.lower.anthrop table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.anthrop table thead th:first-of-type {
  width: 11%;
}
main.lower.anthrop table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.anthrop table .min-h th,
main.lower.anthrop table .min-h td {
  height: 45px;
}
main.lower.anthrop table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.anthrop table td.on-campus-job span, main.lower.anthrop table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.anthrop table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.anthrop table td.off-campus span {
  background-color: #bbb;
}
main.lower.anthrop table td.lecture {
  background-color: #ffecf5;
}
main.lower.anthrop table .media {
  color: #f00;
}
main.lower.anthrop table.society {
  border-collapse: collapse;
}
main.lower.anthrop table.society th {
  color: #000;
  background: rgba(178, 130, 70, 0.3);
  border: solid 1px #b28246;
}
main.lower.anthrop .hyou1 {
  border: 1px solid #666666;
}
main.lower.anthrop .hyou1 th,
main.lower.anthrop .hyou1 td {
  font-size: 16px;
}
main.lower.anthrop .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.anthrop .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.anthrop .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.anthrop #wrapper #contents .classification {
  border-right: none;
}
main.lower.anthrop #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.anthrop .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.anthrop .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.anthrop .hyou1 a {
  text-decoration: none;
}
main.lower.anthrop .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.anthrop .bgc01 {
  background-color: #ffecf5;
}
main.lower.anthrop .bgc02 {
  background-color: #eadfff;
}
main.lower.anthrop .bgc03 {
  background-color: #e6ffdd;
}
main.lower.anthrop .bgc04 {
  background-color: #fff3c4;
}
main.lower.anthrop .bgc05 {
  background-color: #d2e9ff;
}
main.lower.anthrop .bgc06 {
  background-color: #efefef;
}
main.lower.anthrop .bgc07 {
  background-color: #f5e6ee;
}
main.lower.anthrop .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.anthrop .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.anthrop .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.anthrop .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.anthrop .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.anthrop .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.anthrop #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.anthrop .hyou4 {
  margin: 10px 0;
}
main.lower.anthrop .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.anthrop .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.anthrop .hyou5 {
  border: 1px solid #666666;
}
main.lower.anthrop .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.anthrop .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.anthrop .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.anthrop .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.anthrop .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.anthrop .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.anthrop .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.anthrop .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.anthrop .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #b28246;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.anthrop .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.anthrop .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #b28246;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #b28246;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.anthrop .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.anthrop .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.anthrop .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.anthrop .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.anthrop .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.anthrop .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.anthrop .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.anthrop .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.anthrop .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.anthrop .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.anthrop .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.anthrop .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.anthrop .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.anthrop .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.anthrop .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.anthrop .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.anthrop .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.anthrop .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.anthrop .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.anthrop .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.anthrop .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.anthrop .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.anthrop .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.anthrop .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.anthrop .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.anthrop .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.anthrop .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.anthrop .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.anthrop .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.anthrop .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.anthrop .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.anthrop .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.anthrop .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.anthrop .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.anthrop .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.anthrop .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.anthrop .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.anthrop .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.anthrop .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.anthrop .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.anthrop .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.anthrop .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.anthrop .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.anthrop figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop figure {
    margin: 1rem auto;
  }
}
main.lower.anthrop .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.anthrop .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.anthrop .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.anthrop .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.anthrop .wp-pagenavi a.current {
  background: #b28246;
  color: #fff;
}
main.lower.anthrop .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.anthrop #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.anthrop .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.anthrop .uni .main,
main.lower.anthrop .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .uni .main,
  main.lower.anthrop .uni .sub {
    padding: 1rem;
  }
}
main.lower.anthrop .uni .sub a {
  text-decoration: underline;
}
main.lower.anthrop .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.anthrop .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.anthrop .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.anthrop .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.anthrop .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.anthrop .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.anthrop .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.anthrop .uni .main .fields.no2 h4 a,
main.lower.anthrop .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.anthrop .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.anthrop .uni .main .fields.no3 h4 a,
main.lower.anthrop .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.anthrop .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.anthrop .uni .main .fields.no4 h4 a,
main.lower.anthrop .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.anthrop .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.anthrop .uni .main .fields.no5 h4 a,
main.lower.anthrop .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.anthrop .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .uni .main .fields h4 {
    border: none;
  }
}
main.lower.anthrop .uni .main .fields h4 a,
main.lower.anthrop .uni .main .fields h4 span {
  display: block;
}
main.lower.anthrop .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.anthrop .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .uni .main .fields > div {
    display: block;
  }
}
main.lower.anthrop .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.anthrop .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.anthrop .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.anthrop .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.anthrop .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.anthrop .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.anthrop .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.anthrop .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.anthrop .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.anthrop .uni .main .fields .field li::before {
  content: "●";
}
main.lower.anthrop .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.anthrop .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.anthrop a:link {
  color: inherit;
}
main.lower.anthrop #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.anthrop #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.anthrop #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.anthrop #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.anthrop #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.anthrop #contents .policy th,
main.lower.anthrop #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.anthrop #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.anthrop #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.anthrop #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.healthn {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.healthn {
    padding: 4.5rem 0 0;
  }
}
main.lower.healthn .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.healthn #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.healthn #page_ttl {
    padding: 2rem;
  }
}
main.lower.healthn #page_ttl::after {
  position: absolute;
  content: "";
  background: #f08201;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.healthn #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.healthn #page_ttl h1,
main.lower.healthn #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.healthn #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.healthn #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.healthn #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.healthn #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.healthn #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #f08201;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.healthn p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.healthn a {
  text-decoration: underline;
}
main.lower.healthn h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.healthn h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.healthn h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #f08201;
}
@media screen and (max-width: 768px) {
  main.lower.healthn h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.healthn .page-h3 {
  color: #f08201;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.healthn h4 {
  position: relative;
  color: #f08201;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.healthn h4 {
    font-size: 1em;
  }
}
main.lower.healthn h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.healthn .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.healthn .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.healthn .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.healthn .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.healthn .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.healthn .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .message {
    font-size: 1.2em;
  }
}
main.lower.healthn .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .breadcrumb {
    padding: 1rem;
  }
}
main.lower.healthn .breadcrumb a {
  color: #0164b2;
}
main.lower.healthn .breadcrumb a,
main.lower.healthn .breadcrumb span {
  font-size: 14px;
}
main.lower.healthn .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.healthn .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #f08201;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.healthn .list-number {
  counter-reset: listnum;
}
main.lower.healthn .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.healthn .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.healthn .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.healthn .ark-block-accordion__label {
  color: #141414;
}
main.lower.healthn .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.healthn .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.healthn .ark-block-accordion__icon::before, main.lower.healthn .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.healthn .media {
  display: table-cell;
}
main.lower.healthn .wp-block-table,
main.lower.healthn .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.healthn .wp-block-table table,
main.lower.healthn .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #f08201;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .wp-block-table table,
  main.lower.healthn .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.healthn .wp-block-table table thead,
main.lower.healthn .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.healthn .wp-block-table table thead th,
main.lower.healthn .wp-block-table table thead td,
main.lower.healthn .wp-block-flexible-table-block-table table thead th,
main.lower.healthn .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.healthn .wp-block-table table thead th,
main.lower.healthn .wp-block-flexible-table-block-table table thead th {
  background: #f08201;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.healthn .wp-block-table table thead td:first-child,
main.lower.healthn .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.healthn .wp-block-table table tr th,
main.lower.healthn .wp-block-flexible-table-block-table table tr th {
  background-color: #f08201;
  border: solid 1px #f08201;
}
main.lower.healthn .wp-block-table table tr td,
main.lower.healthn .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #f08201;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .wp-block-table table tr td,
  main.lower.healthn .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.healthn .wp-block-table table tr td:first-child,
main.lower.healthn .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.healthn .wp-block-table table tr th,
main.lower.healthn .wp-block-table table tr td,
main.lower.healthn .wp-block-flexible-table-block-table table tr th,
main.lower.healthn .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.healthn .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .sample dl {
    display: block;
  }
}
main.lower.healthn .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.healthn .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .sample dd {
    width: 100%;
  }
}
main.lower.healthn .sample .face dt {
  background: #ffecf5;
}
main.lower.healthn .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.healthn .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.healthn table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.healthn table th,
main.lower.healthn table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.healthn table th {
  background: #f08201;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.healthn table td {
  border: solid 1px #f08201;
}
main.lower.healthn table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.healthn table thead th:first-of-type {
  width: 11%;
}
main.lower.healthn table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.healthn table .min-h th,
main.lower.healthn table .min-h td {
  height: 45px;
}
main.lower.healthn table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.healthn table td.on-campus-job span, main.lower.healthn table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.healthn table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.healthn table td.off-campus span {
  background-color: #bbb;
}
main.lower.healthn table td.lecture {
  background-color: #ffecf5;
}
main.lower.healthn table .media {
  color: #f00;
}
main.lower.healthn table.society {
  border-collapse: collapse;
}
main.lower.healthn table.society th {
  color: #000;
  background: rgba(240, 130, 1, 0.3);
  border: solid 1px #f08201;
}
main.lower.healthn .hyou1 {
  border: 1px solid #666666;
}
main.lower.healthn .hyou1 th,
main.lower.healthn .hyou1 td {
  font-size: 16px;
}
main.lower.healthn .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.healthn .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.healthn .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.healthn #wrapper #contents .classification {
  border-right: none;
}
main.lower.healthn #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.healthn .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.healthn .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.healthn .hyou1 a {
  text-decoration: none;
}
main.lower.healthn .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.healthn .bgc01 {
  background-color: #ffecf5;
}
main.lower.healthn .bgc02 {
  background-color: #eadfff;
}
main.lower.healthn .bgc03 {
  background-color: #e6ffdd;
}
main.lower.healthn .bgc04 {
  background-color: #fff3c4;
}
main.lower.healthn .bgc05 {
  background-color: #d2e9ff;
}
main.lower.healthn .bgc06 {
  background-color: #efefef;
}
main.lower.healthn .bgc07 {
  background-color: #f5e6ee;
}
main.lower.healthn .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.healthn .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.healthn .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.healthn .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.healthn .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.healthn .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.healthn #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.healthn .hyou4 {
  margin: 10px 0;
}
main.lower.healthn .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.healthn .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.healthn .hyou5 {
  border: 1px solid #666666;
}
main.lower.healthn .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.healthn .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.healthn .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.healthn .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.healthn .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.healthn .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.healthn .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.healthn .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.healthn .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #f08201;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.healthn .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.healthn .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.healthn .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.healthn .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #f08201;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #f08201;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.healthn .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.healthn .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.healthn .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.healthn .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.healthn .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.healthn .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.healthn .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.healthn .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.healthn .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.healthn .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.healthn .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.healthn .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.healthn .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.healthn .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.healthn .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.healthn .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.healthn .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.healthn .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.healthn .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.healthn .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.healthn .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.healthn .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.healthn .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.healthn .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.healthn .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.healthn .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.healthn .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.healthn .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.healthn .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.healthn .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.healthn .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.healthn .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.healthn .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.healthn .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.healthn .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.healthn .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.healthn .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.healthn .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.healthn .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.healthn .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.healthn .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.healthn .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.healthn .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.healthn .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.healthn .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.healthn .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.healthn figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.healthn figure {
    margin: 1rem auto;
  }
}
main.lower.healthn .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.healthn .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.healthn .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.healthn .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.healthn .wp-pagenavi a.current {
  background: #f08201;
  color: #fff;
}
main.lower.healthn .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.healthn #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.healthn .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.healthn .uni .main,
main.lower.healthn .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.healthn .uni .main,
  main.lower.healthn .uni .sub {
    padding: 1rem;
  }
}
main.lower.healthn .uni .sub a {
  text-decoration: underline;
}
main.lower.healthn .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.healthn .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.healthn .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.healthn .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.healthn .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.healthn .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.healthn .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.healthn .uni .main .fields.no2 h4 a,
main.lower.healthn .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.healthn .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.healthn .uni .main .fields.no3 h4 a,
main.lower.healthn .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.healthn .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.healthn .uni .main .fields.no4 h4 a,
main.lower.healthn .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.healthn .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.healthn .uni .main .fields.no5 h4 a,
main.lower.healthn .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.healthn .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .uni .main .fields h4 {
    border: none;
  }
}
main.lower.healthn .uni .main .fields h4 a,
main.lower.healthn .uni .main .fields h4 span {
  display: block;
}
main.lower.healthn .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.healthn .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .uni .main .fields > div {
    display: block;
  }
}
main.lower.healthn .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.healthn .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.healthn .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.healthn .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.healthn .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.healthn .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.healthn .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.healthn .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.healthn .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.healthn .uni .main .fields .field li::before {
  content: "●";
}
main.lower.healthn .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.healthn .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.healthn a:link {
  color: inherit;
}
main.lower.healthn #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.healthn #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.healthn #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.healthn #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.healthn #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.healthn #contents .policy th,
main.lower.healthn #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.healthn #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.healthn #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.healthn #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.healths {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.healths {
    padding: 4.5rem 0 0;
  }
}
main.lower.healths .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.healths .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.healths #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.healths #page_ttl {
    padding: 2rem;
  }
}
main.lower.healths #page_ttl::after {
  position: absolute;
  content: "";
  background: #d93625;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.healths #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.healths #page_ttl h1,
main.lower.healths #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.healths #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.healths #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.healths #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.healths #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.healths #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #d93625;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.healths p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.healths a {
  text-decoration: underline;
}
main.lower.healths h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.healths h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.healths h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #d93625;
}
@media screen and (max-width: 768px) {
  main.lower.healths h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.healths .page-h3 {
  color: #d93625;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.healths .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.healths h4 {
  position: relative;
  color: #d93625;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.healths h4 {
    font-size: 1em;
  }
}
main.lower.healths h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.healths .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.healths .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.healths .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.healths .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.healths .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.healths .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.healths .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.healths .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.healths .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.healths .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.healths .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.healths .message {
    font-size: 1.2em;
  }
}
main.lower.healths .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.healths .breadcrumb {
    padding: 1rem;
  }
}
main.lower.healths .breadcrumb a {
  color: #0164b2;
}
main.lower.healths .breadcrumb a,
main.lower.healths .breadcrumb span {
  font-size: 14px;
}
main.lower.healths .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.healths .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #d93625;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.healths .list-number {
  counter-reset: listnum;
}
main.lower.healths .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.healths .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.healths .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.healths .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.healths .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.healths .ark-block-accordion__label {
  color: #141414;
}
main.lower.healths .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.healths .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.healths .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.healths .ark-block-accordion__icon::before, main.lower.healths .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.healths .media {
  display: table-cell;
}
main.lower.healths .wp-block-table,
main.lower.healths .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.healths .wp-block-table table,
main.lower.healths .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #d93625;
}
@media screen and (max-width: 768px) {
  main.lower.healths .wp-block-table table,
  main.lower.healths .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.healths .wp-block-table table thead,
main.lower.healths .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.healths .wp-block-table table thead th,
main.lower.healths .wp-block-table table thead td,
main.lower.healths .wp-block-flexible-table-block-table table thead th,
main.lower.healths .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.healths .wp-block-table table thead th,
main.lower.healths .wp-block-flexible-table-block-table table thead th {
  background: #d93625;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.healths .wp-block-table table thead td:first-child,
main.lower.healths .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.healths .wp-block-table table tr th,
main.lower.healths .wp-block-flexible-table-block-table table tr th {
  background-color: #d93625;
  border: solid 1px #d93625;
}
main.lower.healths .wp-block-table table tr td,
main.lower.healths .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #d93625;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.healths .wp-block-table table tr td,
  main.lower.healths .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.healths .wp-block-table table tr td:first-child,
main.lower.healths .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.healths .wp-block-table table tr th,
main.lower.healths .wp-block-table table tr td,
main.lower.healths .wp-block-flexible-table-block-table table tr th,
main.lower.healths .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.healths .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.healths .sample dl {
    display: block;
  }
}
main.lower.healths .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.healths .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.healths .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.healths .sample dd {
    width: 100%;
  }
}
main.lower.healths .sample .face dt {
  background: #ffecf5;
}
main.lower.healths .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.healths .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.healths table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.healths table th,
main.lower.healths table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.healths table th {
  background: #d93625;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.healths table td {
  border: solid 1px #d93625;
}
main.lower.healths table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.healths table thead th:first-of-type {
  width: 11%;
}
main.lower.healths table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.healths table .min-h th,
main.lower.healths table .min-h td {
  height: 45px;
}
main.lower.healths table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.healths table td.on-campus-job span, main.lower.healths table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.healths table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.healths table td.off-campus span {
  background-color: #bbb;
}
main.lower.healths table td.lecture {
  background-color: #ffecf5;
}
main.lower.healths table .media {
  color: #f00;
}
main.lower.healths table.society {
  border-collapse: collapse;
}
main.lower.healths table.society th {
  color: #000;
  background: rgba(217, 54, 37, 0.3);
  border: solid 1px #d93625;
}
main.lower.healths .hyou1 {
  border: 1px solid #666666;
}
main.lower.healths .hyou1 th,
main.lower.healths .hyou1 td {
  font-size: 16px;
}
main.lower.healths .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.healths .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.healths .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.healths #wrapper #contents .classification {
  border-right: none;
}
main.lower.healths #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.healths .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.healths .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.healths .hyou1 a {
  text-decoration: none;
}
main.lower.healths .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.healths .bgc01 {
  background-color: #ffecf5;
}
main.lower.healths .bgc02 {
  background-color: #eadfff;
}
main.lower.healths .bgc03 {
  background-color: #e6ffdd;
}
main.lower.healths .bgc04 {
  background-color: #fff3c4;
}
main.lower.healths .bgc05 {
  background-color: #d2e9ff;
}
main.lower.healths .bgc06 {
  background-color: #efefef;
}
main.lower.healths .bgc07 {
  background-color: #f5e6ee;
}
main.lower.healths .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.healths .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.healths .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.healths .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.healths .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.healths .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.healths #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.healths .hyou4 {
  margin: 10px 0;
}
main.lower.healths .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.healths .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.healths .hyou5 {
  border: 1px solid #666666;
}
main.lower.healths .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.healths .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.healths .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.healths .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.healths .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.healths .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.healths .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.healths .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.healths .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.healths .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #d93625;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.healths .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.healths .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.healths .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.healths .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #d93625;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #d93625;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.healths .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.healths .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.healths .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.healths .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.healths .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.healths .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.healths .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.healths .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.healths .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.healths .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.healths .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.healths .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.healths .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.healths .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.healths .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.healths .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.healths .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.healths .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.healths .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.healths .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.healths .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.healths .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.healths .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.healths .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.healths .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.healths .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.healths .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.healths .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.healths .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.healths .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.healths .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.healths .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.healths .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.healths .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.healths .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.healths .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.healths .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.healths .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.healths .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.healths .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.healths .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.healths .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.healths .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.healths .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.healths .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.healths .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.healths .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.healths .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.healths .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.healths .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.healths .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.healths .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.healths figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.healths figure {
    margin: 1rem auto;
  }
}
main.lower.healths .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.healths .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.healths .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.healths .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.healths .wp-pagenavi a.current {
  background: #d93625;
  color: #fff;
}
main.lower.healths .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.healths .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.healths #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.healths .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.healths .uni .main,
main.lower.healths .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.healths .uni .main,
  main.lower.healths .uni .sub {
    padding: 1rem;
  }
}
main.lower.healths .uni .sub a {
  text-decoration: underline;
}
main.lower.healths .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.healths .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.healths .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.healths .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.healths .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.healths .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.healths .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.healths .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.healths .uni .main .fields.no2 h4 a,
main.lower.healths .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.healths .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.healths .uni .main .fields.no3 h4 a,
main.lower.healths .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.healths .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.healths .uni .main .fields.no4 h4 a,
main.lower.healths .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.healths .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.healths .uni .main .fields.no5 h4 a,
main.lower.healths .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.healths .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.healths .uni .main .fields h4 {
    border: none;
  }
}
main.lower.healths .uni .main .fields h4 a,
main.lower.healths .uni .main .fields h4 span {
  display: block;
}
main.lower.healths .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.healths .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.healths .uni .main .fields > div {
    display: block;
  }
}
main.lower.healths .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.healths .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.healths .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.healths .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.healths .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.healths .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.healths .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.healths .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.healths .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.healths .uni .main .fields .field li::before {
  content: "●";
}
main.lower.healths .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.healths .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.healths a:link {
  color: inherit;
}
main.lower.healths #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.healths #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.healths #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.healths #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.healths #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.healths #contents .policy th,
main.lower.healths #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.healths #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.healths #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.healths #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.nursing {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.nursing {
    padding: 4.5rem 0 0;
  }
}
main.lower.nursing .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.nursing #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.nursing #page_ttl {
    padding: 2rem;
  }
}
main.lower.nursing #page_ttl::after {
  position: absolute;
  content: "";
  background: #ee4777;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.nursing #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.nursing #page_ttl h1,
main.lower.nursing #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.nursing #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.nursing #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.nursing #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.nursing #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.nursing #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #ee4777;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.nursing p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.nursing a {
  text-decoration: underline;
}
main.lower.nursing h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.nursing h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.nursing h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #ee4777;
}
@media screen and (max-width: 768px) {
  main.lower.nursing h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.nursing .page-h3 {
  color: #ee4777;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.nursing h4 {
  position: relative;
  color: #ee4777;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.nursing h4 {
    font-size: 1em;
  }
}
main.lower.nursing h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.nursing .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.nursing .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.nursing .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.nursing .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.nursing .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.nursing .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .message {
    font-size: 1.2em;
  }
}
main.lower.nursing .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .breadcrumb {
    padding: 1rem;
  }
}
main.lower.nursing .breadcrumb a {
  color: #0164b2;
}
main.lower.nursing .breadcrumb a,
main.lower.nursing .breadcrumb span {
  font-size: 14px;
}
main.lower.nursing .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.nursing .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #ee4777;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.nursing .list-number {
  counter-reset: listnum;
}
main.lower.nursing .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.nursing .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.nursing .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.nursing .ark-block-accordion__label {
  color: #141414;
}
main.lower.nursing .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.nursing .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.nursing .ark-block-accordion__icon::before, main.lower.nursing .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.nursing .media {
  display: table-cell;
}
main.lower.nursing .wp-block-table,
main.lower.nursing .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.nursing .wp-block-table table,
main.lower.nursing .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #ee4777;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .wp-block-table table,
  main.lower.nursing .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.nursing .wp-block-table table thead,
main.lower.nursing .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.nursing .wp-block-table table thead th,
main.lower.nursing .wp-block-table table thead td,
main.lower.nursing .wp-block-flexible-table-block-table table thead th,
main.lower.nursing .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.nursing .wp-block-table table thead th,
main.lower.nursing .wp-block-flexible-table-block-table table thead th {
  background: #ee4777;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.nursing .wp-block-table table thead td:first-child,
main.lower.nursing .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.nursing .wp-block-table table tr th,
main.lower.nursing .wp-block-flexible-table-block-table table tr th {
  background-color: #ee4777;
  border: solid 1px #ee4777;
}
main.lower.nursing .wp-block-table table tr td,
main.lower.nursing .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #ee4777;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .wp-block-table table tr td,
  main.lower.nursing .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.nursing .wp-block-table table tr td:first-child,
main.lower.nursing .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.nursing .wp-block-table table tr th,
main.lower.nursing .wp-block-table table tr td,
main.lower.nursing .wp-block-flexible-table-block-table table tr th,
main.lower.nursing .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.nursing .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .sample dl {
    display: block;
  }
}
main.lower.nursing .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.nursing .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .sample dd {
    width: 100%;
  }
}
main.lower.nursing .sample .face dt {
  background: #ffecf5;
}
main.lower.nursing .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.nursing .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.nursing table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.nursing table th,
main.lower.nursing table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.nursing table th {
  background: #ee4777;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.nursing table td {
  border: solid 1px #ee4777;
}
main.lower.nursing table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.nursing table thead th:first-of-type {
  width: 11%;
}
main.lower.nursing table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.nursing table .min-h th,
main.lower.nursing table .min-h td {
  height: 45px;
}
main.lower.nursing table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.nursing table td.on-campus-job span, main.lower.nursing table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.nursing table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.nursing table td.off-campus span {
  background-color: #bbb;
}
main.lower.nursing table td.lecture {
  background-color: #ffecf5;
}
main.lower.nursing table .media {
  color: #f00;
}
main.lower.nursing table.society {
  border-collapse: collapse;
}
main.lower.nursing table.society th {
  color: #000;
  background: rgba(238, 71, 119, 0.3);
  border: solid 1px #ee4777;
}
main.lower.nursing .hyou1 {
  border: 1px solid #666666;
}
main.lower.nursing .hyou1 th,
main.lower.nursing .hyou1 td {
  font-size: 16px;
}
main.lower.nursing .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.nursing .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.nursing .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.nursing #wrapper #contents .classification {
  border-right: none;
}
main.lower.nursing #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.nursing .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.nursing .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.nursing .hyou1 a {
  text-decoration: none;
}
main.lower.nursing .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.nursing .bgc01 {
  background-color: #ffecf5;
}
main.lower.nursing .bgc02 {
  background-color: #eadfff;
}
main.lower.nursing .bgc03 {
  background-color: #e6ffdd;
}
main.lower.nursing .bgc04 {
  background-color: #fff3c4;
}
main.lower.nursing .bgc05 {
  background-color: #d2e9ff;
}
main.lower.nursing .bgc06 {
  background-color: #efefef;
}
main.lower.nursing .bgc07 {
  background-color: #f5e6ee;
}
main.lower.nursing .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.nursing .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.nursing .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.nursing .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.nursing .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.nursing .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.nursing #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.nursing .hyou4 {
  margin: 10px 0;
}
main.lower.nursing .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.nursing .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.nursing .hyou5 {
  border: 1px solid #666666;
}
main.lower.nursing .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.nursing .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.nursing .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.nursing .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.nursing .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.nursing .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.nursing .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.nursing .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.nursing .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #ee4777;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.nursing .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.nursing .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.nursing .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.nursing .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #ee4777;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #ee4777;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.nursing .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.nursing .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.nursing .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.nursing .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.nursing .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.nursing .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.nursing .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.nursing .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.nursing .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.nursing .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.nursing .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.nursing .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.nursing .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.nursing .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.nursing .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.nursing .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.nursing .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.nursing .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.nursing .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.nursing .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.nursing .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.nursing .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.nursing .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.nursing .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.nursing .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.nursing .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.nursing .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.nursing .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.nursing .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.nursing .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.nursing .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.nursing .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.nursing .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.nursing .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.nursing .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.nursing .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.nursing .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.nursing .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.nursing .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.nursing .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.nursing .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.nursing .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.nursing .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.nursing .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.nursing .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.nursing .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.nursing figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.nursing figure {
    margin: 1rem auto;
  }
}
main.lower.nursing .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.nursing .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.nursing .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.nursing .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.nursing .wp-pagenavi a.current {
  background: #ee4777;
  color: #fff;
}
main.lower.nursing .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.nursing #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.nursing .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.nursing .uni .main,
main.lower.nursing .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.nursing .uni .main,
  main.lower.nursing .uni .sub {
    padding: 1rem;
  }
}
main.lower.nursing .uni .sub a {
  text-decoration: underline;
}
main.lower.nursing .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.nursing .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.nursing .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.nursing .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.nursing .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.nursing .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.nursing .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.nursing .uni .main .fields.no2 h4 a,
main.lower.nursing .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.nursing .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.nursing .uni .main .fields.no3 h4 a,
main.lower.nursing .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.nursing .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.nursing .uni .main .fields.no4 h4 a,
main.lower.nursing .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.nursing .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.nursing .uni .main .fields.no5 h4 a,
main.lower.nursing .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.nursing .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .uni .main .fields h4 {
    border: none;
  }
}
main.lower.nursing .uni .main .fields h4 a,
main.lower.nursing .uni .main .fields h4 span {
  display: block;
}
main.lower.nursing .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.nursing .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .uni .main .fields > div {
    display: block;
  }
}
main.lower.nursing .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.nursing .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.nursing .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.nursing .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.nursing .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.nursing .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.nursing .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.nursing .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.nursing .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.nursing .uni .main .fields .field li::before {
  content: "●";
}
main.lower.nursing .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.nursing .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.nursing a:link {
  color: inherit;
}
main.lower.nursing #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.nursing #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.nursing #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.nursing #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.nursing #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.nursing #contents .policy th,
main.lower.nursing #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.nursing #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.nursing #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.nursing #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.welfare {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfare {
    padding: 4.5rem 0 0;
  }
}
main.lower.welfare .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.welfare #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.welfare #page_ttl {
    padding: 2rem;
  }
}
main.lower.welfare #page_ttl::after {
  position: absolute;
  content: "";
  background: #3fb136;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfare #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.welfare #page_ttl h1,
main.lower.welfare #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.welfare #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.welfare #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.welfare #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfare #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.welfare #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #3fb136;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.welfare p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.welfare a {
  text-decoration: underline;
}
main.lower.welfare h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.welfare h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.welfare h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #3fb136;
}
@media screen and (max-width: 768px) {
  main.lower.welfare h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.welfare .page-h3 {
  color: #3fb136;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.welfare h4 {
  position: relative;
  color: #3fb136;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfare h4 {
    font-size: 1em;
  }
}
main.lower.welfare h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.welfare .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.welfare .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.welfare .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.welfare .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.welfare .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.welfare .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .message {
    font-size: 1.2em;
  }
}
main.lower.welfare .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .breadcrumb {
    padding: 1rem;
  }
}
main.lower.welfare .breadcrumb a {
  color: #0164b2;
}
main.lower.welfare .breadcrumb a,
main.lower.welfare .breadcrumb span {
  font-size: 14px;
}
main.lower.welfare .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.welfare .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #3fb136;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.welfare .list-number {
  counter-reset: listnum;
}
main.lower.welfare .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.welfare .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.welfare .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.welfare .ark-block-accordion__label {
  color: #141414;
}
main.lower.welfare .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.welfare .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.welfare .ark-block-accordion__icon::before, main.lower.welfare .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.welfare .media {
  display: table-cell;
}
main.lower.welfare .wp-block-table,
main.lower.welfare .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.welfare .wp-block-table table,
main.lower.welfare .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #3fb136;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .wp-block-table table,
  main.lower.welfare .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.welfare .wp-block-table table thead,
main.lower.welfare .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.welfare .wp-block-table table thead th,
main.lower.welfare .wp-block-table table thead td,
main.lower.welfare .wp-block-flexible-table-block-table table thead th,
main.lower.welfare .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.welfare .wp-block-table table thead th,
main.lower.welfare .wp-block-flexible-table-block-table table thead th {
  background: #3fb136;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.welfare .wp-block-table table thead td:first-child,
main.lower.welfare .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.welfare .wp-block-table table tr th,
main.lower.welfare .wp-block-flexible-table-block-table table tr th {
  background-color: #3fb136;
  border: solid 1px #3fb136;
}
main.lower.welfare .wp-block-table table tr td,
main.lower.welfare .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #3fb136;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .wp-block-table table tr td,
  main.lower.welfare .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.welfare .wp-block-table table tr td:first-child,
main.lower.welfare .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.welfare .wp-block-table table tr th,
main.lower.welfare .wp-block-table table tr td,
main.lower.welfare .wp-block-flexible-table-block-table table tr th,
main.lower.welfare .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.welfare .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .sample dl {
    display: block;
  }
}
main.lower.welfare .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.welfare .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .sample dd {
    width: 100%;
  }
}
main.lower.welfare .sample .face dt {
  background: #ffecf5;
}
main.lower.welfare .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.welfare .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.welfare table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.welfare table th,
main.lower.welfare table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.welfare table th {
  background: #3fb136;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.welfare table td {
  border: solid 1px #3fb136;
}
main.lower.welfare table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.welfare table thead th:first-of-type {
  width: 11%;
}
main.lower.welfare table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.welfare table .min-h th,
main.lower.welfare table .min-h td {
  height: 45px;
}
main.lower.welfare table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.welfare table td.on-campus-job span, main.lower.welfare table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.welfare table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.welfare table td.off-campus span {
  background-color: #bbb;
}
main.lower.welfare table td.lecture {
  background-color: #ffecf5;
}
main.lower.welfare table .media {
  color: #f00;
}
main.lower.welfare table.society {
  border-collapse: collapse;
}
main.lower.welfare table.society th {
  color: #000;
  background: rgba(63, 177, 54, 0.3);
  border: solid 1px #3fb136;
}
main.lower.welfare .hyou1 {
  border: 1px solid #666666;
}
main.lower.welfare .hyou1 th,
main.lower.welfare .hyou1 td {
  font-size: 16px;
}
main.lower.welfare .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.welfare .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.welfare .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.welfare #wrapper #contents .classification {
  border-right: none;
}
main.lower.welfare #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.welfare .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.welfare .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.welfare .hyou1 a {
  text-decoration: none;
}
main.lower.welfare .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.welfare .bgc01 {
  background-color: #ffecf5;
}
main.lower.welfare .bgc02 {
  background-color: #eadfff;
}
main.lower.welfare .bgc03 {
  background-color: #e6ffdd;
}
main.lower.welfare .bgc04 {
  background-color: #fff3c4;
}
main.lower.welfare .bgc05 {
  background-color: #d2e9ff;
}
main.lower.welfare .bgc06 {
  background-color: #efefef;
}
main.lower.welfare .bgc07 {
  background-color: #f5e6ee;
}
main.lower.welfare .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.welfare .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.welfare .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.welfare .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.welfare .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.welfare .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.welfare #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.welfare .hyou4 {
  margin: 10px 0;
}
main.lower.welfare .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.welfare .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.welfare .hyou5 {
  border: 1px solid #666666;
}
main.lower.welfare .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.welfare .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.welfare .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.welfare .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.welfare .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.welfare .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.welfare .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.welfare .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.welfare .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #3fb136;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.welfare .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.welfare .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.welfare .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.welfare .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #3fb136;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #3fb136;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.welfare .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.welfare .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.welfare .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.welfare .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.welfare .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.welfare .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.welfare .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.welfare .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.welfare .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.welfare .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.welfare .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.welfare .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.welfare .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.welfare .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.welfare .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.welfare .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.welfare .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.welfare .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.welfare .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.welfare .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.welfare .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.welfare .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.welfare .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.welfare .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.welfare .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.welfare .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.welfare .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.welfare .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.welfare .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.welfare .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.welfare .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.welfare .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.welfare .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.welfare .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.welfare .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.welfare .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.welfare .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.welfare .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.welfare .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.welfare .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.welfare .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.welfare .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.welfare .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.welfare .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.welfare .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.welfare .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.welfare figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.welfare figure {
    margin: 1rem auto;
  }
}
main.lower.welfare .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.welfare .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.welfare .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.welfare .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.welfare .wp-pagenavi a.current {
  background: #3fb136;
  color: #fff;
}
main.lower.welfare .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.welfare #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.welfare .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.welfare .uni .main,
main.lower.welfare .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.welfare .uni .main,
  main.lower.welfare .uni .sub {
    padding: 1rem;
  }
}
main.lower.welfare .uni .sub a {
  text-decoration: underline;
}
main.lower.welfare .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.welfare .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.welfare .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.welfare .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.welfare .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.welfare .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.welfare .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.welfare .uni .main .fields.no2 h4 a,
main.lower.welfare .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.welfare .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.welfare .uni .main .fields.no3 h4 a,
main.lower.welfare .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.welfare .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.welfare .uni .main .fields.no4 h4 a,
main.lower.welfare .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.welfare .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.welfare .uni .main .fields.no5 h4 a,
main.lower.welfare .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.welfare .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .uni .main .fields h4 {
    border: none;
  }
}
main.lower.welfare .uni .main .fields h4 a,
main.lower.welfare .uni .main .fields h4 span {
  display: block;
}
main.lower.welfare .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.welfare .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .uni .main .fields > div {
    display: block;
  }
}
main.lower.welfare .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.welfare .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.welfare .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.welfare .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.welfare .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.welfare .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.welfare .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.welfare .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.welfare .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.welfare .uni .main .fields .field li::before {
  content: "●";
}
main.lower.welfare .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.welfare .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.welfare a:link {
  color: inherit;
}
main.lower.welfare #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.welfare #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.welfare #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.welfare #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.welfare #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.welfare #contents .policy th,
main.lower.welfare #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.welfare #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.welfare #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.welfare #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.welfman {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfman {
    padding: 4.5rem 0 0;
  }
}
main.lower.welfman .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.welfman #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.welfman #page_ttl {
    padding: 2rem;
  }
}
main.lower.welfman #page_ttl::after {
  position: absolute;
  content: "";
  background: #269d38;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfman #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.welfman #page_ttl h1,
main.lower.welfman #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.welfman #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.welfman #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.welfman #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfman #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.welfman #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #269d38;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.welfman p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.welfman a {
  text-decoration: underline;
}
main.lower.welfman h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.welfman h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.welfman h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #269d38;
}
@media screen and (max-width: 768px) {
  main.lower.welfman h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.welfman .page-h3 {
  color: #269d38;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.welfman h4 {
  position: relative;
  color: #269d38;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfman h4 {
    font-size: 1em;
  }
}
main.lower.welfman h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.welfman .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.welfman .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.welfman .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.welfman .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.welfman .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.welfman .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .message {
    font-size: 1.2em;
  }
}
main.lower.welfman .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .breadcrumb {
    padding: 1rem;
  }
}
main.lower.welfman .breadcrumb a {
  color: #0164b2;
}
main.lower.welfman .breadcrumb a,
main.lower.welfman .breadcrumb span {
  font-size: 14px;
}
main.lower.welfman .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.welfman .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #269d38;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.welfman .list-number {
  counter-reset: listnum;
}
main.lower.welfman .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.welfman .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.welfman .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.welfman .ark-block-accordion__label {
  color: #141414;
}
main.lower.welfman .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.welfman .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.welfman .ark-block-accordion__icon::before, main.lower.welfman .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.welfman .media {
  display: table-cell;
}
main.lower.welfman .wp-block-table,
main.lower.welfman .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.welfman .wp-block-table table,
main.lower.welfman .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #269d38;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .wp-block-table table,
  main.lower.welfman .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.welfman .wp-block-table table thead,
main.lower.welfman .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.welfman .wp-block-table table thead th,
main.lower.welfman .wp-block-table table thead td,
main.lower.welfman .wp-block-flexible-table-block-table table thead th,
main.lower.welfman .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.welfman .wp-block-table table thead th,
main.lower.welfman .wp-block-flexible-table-block-table table thead th {
  background: #269d38;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.welfman .wp-block-table table thead td:first-child,
main.lower.welfman .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.welfman .wp-block-table table tr th,
main.lower.welfman .wp-block-flexible-table-block-table table tr th {
  background-color: #269d38;
  border: solid 1px #269d38;
}
main.lower.welfman .wp-block-table table tr td,
main.lower.welfman .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #269d38;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .wp-block-table table tr td,
  main.lower.welfman .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.welfman .wp-block-table table tr td:first-child,
main.lower.welfman .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.welfman .wp-block-table table tr th,
main.lower.welfman .wp-block-table table tr td,
main.lower.welfman .wp-block-flexible-table-block-table table tr th,
main.lower.welfman .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.welfman .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .sample dl {
    display: block;
  }
}
main.lower.welfman .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.welfman .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .sample dd {
    width: 100%;
  }
}
main.lower.welfman .sample .face dt {
  background: #ffecf5;
}
main.lower.welfman .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.welfman .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.welfman table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.welfman table th,
main.lower.welfman table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.welfman table th {
  background: #269d38;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.welfman table td {
  border: solid 1px #269d38;
}
main.lower.welfman table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.welfman table thead th:first-of-type {
  width: 11%;
}
main.lower.welfman table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.welfman table .min-h th,
main.lower.welfman table .min-h td {
  height: 45px;
}
main.lower.welfman table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.welfman table td.on-campus-job span, main.lower.welfman table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.welfman table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.welfman table td.off-campus span {
  background-color: #bbb;
}
main.lower.welfman table td.lecture {
  background-color: #ffecf5;
}
main.lower.welfman table .media {
  color: #f00;
}
main.lower.welfman table.society {
  border-collapse: collapse;
}
main.lower.welfman table.society th {
  color: #000;
  background: rgba(38, 157, 56, 0.3);
  border: solid 1px #269d38;
}
main.lower.welfman .hyou1 {
  border: 1px solid #666666;
}
main.lower.welfman .hyou1 th,
main.lower.welfman .hyou1 td {
  font-size: 16px;
}
main.lower.welfman .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.welfman .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.welfman .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.welfman #wrapper #contents .classification {
  border-right: none;
}
main.lower.welfman #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.welfman .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.welfman .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.welfman .hyou1 a {
  text-decoration: none;
}
main.lower.welfman .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.welfman .bgc01 {
  background-color: #ffecf5;
}
main.lower.welfman .bgc02 {
  background-color: #eadfff;
}
main.lower.welfman .bgc03 {
  background-color: #e6ffdd;
}
main.lower.welfman .bgc04 {
  background-color: #fff3c4;
}
main.lower.welfman .bgc05 {
  background-color: #d2e9ff;
}
main.lower.welfman .bgc06 {
  background-color: #efefef;
}
main.lower.welfman .bgc07 {
  background-color: #f5e6ee;
}
main.lower.welfman .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.welfman .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.welfman .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.welfman .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.welfman .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.welfman .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.welfman #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.welfman .hyou4 {
  margin: 10px 0;
}
main.lower.welfman .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.welfman .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.welfman .hyou5 {
  border: 1px solid #666666;
}
main.lower.welfman .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.welfman .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.welfman .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.welfman .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.welfman .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.welfman .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.welfman .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.welfman .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.welfman .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #269d38;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.welfman .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.welfman .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.welfman .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.welfman .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #269d38;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #269d38;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.welfman .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.welfman .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.welfman .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.welfman .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.welfman .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.welfman .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.welfman .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.welfman .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.welfman .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.welfman .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.welfman .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.welfman .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.welfman .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.welfman .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.welfman .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.welfman .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.welfman .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.welfman .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.welfman .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.welfman .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.welfman .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.welfman .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.welfman .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.welfman .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.welfman .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.welfman .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.welfman .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.welfman .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.welfman .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.welfman .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.welfman .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.welfman .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.welfman .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.welfman .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.welfman .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.welfman .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.welfman .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.welfman .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.welfman .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.welfman .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.welfman .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.welfman .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.welfman .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.welfman .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.welfman .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.welfman .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.welfman figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.welfman figure {
    margin: 1rem auto;
  }
}
main.lower.welfman .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.welfman .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.welfman .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.welfman .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.welfman .wp-pagenavi a.current {
  background: #269d38;
  color: #fff;
}
main.lower.welfman .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.welfman #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.welfman .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.welfman .uni .main,
main.lower.welfman .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.welfman .uni .main,
  main.lower.welfman .uni .sub {
    padding: 1rem;
  }
}
main.lower.welfman .uni .sub a {
  text-decoration: underline;
}
main.lower.welfman .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.welfman .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.welfman .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.welfman .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.welfman .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.welfman .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.welfman .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.welfman .uni .main .fields.no2 h4 a,
main.lower.welfman .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.welfman .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.welfman .uni .main .fields.no3 h4 a,
main.lower.welfman .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.welfman .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.welfman .uni .main .fields.no4 h4 a,
main.lower.welfman .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.welfman .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.welfman .uni .main .fields.no5 h4 a,
main.lower.welfman .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.welfman .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .uni .main .fields h4 {
    border: none;
  }
}
main.lower.welfman .uni .main .fields h4 a,
main.lower.welfman .uni .main .fields h4 span {
  display: block;
}
main.lower.welfman .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.welfman .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .uni .main .fields > div {
    display: block;
  }
}
main.lower.welfman .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.welfman .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.welfman .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.welfman .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.welfman .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.welfman .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.welfman .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.welfman .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.welfman .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.welfman .uni .main .fields .field li::before {
  content: "●";
}
main.lower.welfman .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.welfman .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.welfman a:link {
  color: inherit;
}
main.lower.welfman #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.welfman #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.welfman #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.welfman #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.welfman #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.welfman #contents .policy th,
main.lower.welfman #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.welfman #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.welfman #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.welfman #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.medinfo {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo {
    padding: 4.5rem 0 0;
  }
}
main.lower.medinfo .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.medinfo #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo #page_ttl {
    padding: 2rem;
  }
}
main.lower.medinfo #page_ttl::after {
  position: absolute;
  content: "";
  background: #a74d85;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.medinfo #page_ttl h1,
main.lower.medinfo #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.medinfo #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.medinfo #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.medinfo #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #a74d85;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.medinfo p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.medinfo a {
  text-decoration: underline;
}
main.lower.medinfo h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.medinfo h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #a74d85;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.medinfo .page-h3 {
  color: #a74d85;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.medinfo h4 {
  position: relative;
  color: #a74d85;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo h4 {
    font-size: 1em;
  }
}
main.lower.medinfo h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.medinfo .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.medinfo .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.medinfo .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.medinfo .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.medinfo .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.medinfo .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .message {
    font-size: 1.2em;
  }
}
main.lower.medinfo .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .breadcrumb {
    padding: 1rem;
  }
}
main.lower.medinfo .breadcrumb a {
  color: #0164b2;
}
main.lower.medinfo .breadcrumb a,
main.lower.medinfo .breadcrumb span {
  font-size: 14px;
}
main.lower.medinfo .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.medinfo .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #a74d85;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.medinfo .list-number {
  counter-reset: listnum;
}
main.lower.medinfo .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.medinfo .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.medinfo .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.medinfo .ark-block-accordion__label {
  color: #141414;
}
main.lower.medinfo .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.medinfo .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.medinfo .ark-block-accordion__icon::before, main.lower.medinfo .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.medinfo .media {
  display: table-cell;
}
main.lower.medinfo .wp-block-table,
main.lower.medinfo .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.medinfo .wp-block-table table,
main.lower.medinfo .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #a74d85;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .wp-block-table table,
  main.lower.medinfo .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.medinfo .wp-block-table table thead,
main.lower.medinfo .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.medinfo .wp-block-table table thead th,
main.lower.medinfo .wp-block-table table thead td,
main.lower.medinfo .wp-block-flexible-table-block-table table thead th,
main.lower.medinfo .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.medinfo .wp-block-table table thead th,
main.lower.medinfo .wp-block-flexible-table-block-table table thead th {
  background: #a74d85;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.medinfo .wp-block-table table thead td:first-child,
main.lower.medinfo .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.medinfo .wp-block-table table tr th,
main.lower.medinfo .wp-block-flexible-table-block-table table tr th {
  background-color: #a74d85;
  border: solid 1px #a74d85;
}
main.lower.medinfo .wp-block-table table tr td,
main.lower.medinfo .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #a74d85;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .wp-block-table table tr td,
  main.lower.medinfo .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.medinfo .wp-block-table table tr td:first-child,
main.lower.medinfo .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.medinfo .wp-block-table table tr th,
main.lower.medinfo .wp-block-table table tr td,
main.lower.medinfo .wp-block-flexible-table-block-table table tr th,
main.lower.medinfo .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.medinfo .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .sample dl {
    display: block;
  }
}
main.lower.medinfo .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.medinfo .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .sample dd {
    width: 100%;
  }
}
main.lower.medinfo .sample .face dt {
  background: #ffecf5;
}
main.lower.medinfo .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.medinfo .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.medinfo table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.medinfo table th,
main.lower.medinfo table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.medinfo table th {
  background: #a74d85;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.medinfo table td {
  border: solid 1px #a74d85;
}
main.lower.medinfo table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.medinfo table thead th:first-of-type {
  width: 11%;
}
main.lower.medinfo table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.medinfo table .min-h th,
main.lower.medinfo table .min-h td {
  height: 45px;
}
main.lower.medinfo table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.medinfo table td.on-campus-job span, main.lower.medinfo table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.medinfo table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.medinfo table td.off-campus span {
  background-color: #bbb;
}
main.lower.medinfo table td.lecture {
  background-color: #ffecf5;
}
main.lower.medinfo table .media {
  color: #f00;
}
main.lower.medinfo table.society {
  border-collapse: collapse;
}
main.lower.medinfo table.society th {
  color: #000;
  background: rgba(167, 77, 133, 0.3);
  border: solid 1px #a74d85;
}
main.lower.medinfo .hyou1 {
  border: 1px solid #666666;
}
main.lower.medinfo .hyou1 th,
main.lower.medinfo .hyou1 td {
  font-size: 16px;
}
main.lower.medinfo .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.medinfo .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.medinfo .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.medinfo #wrapper #contents .classification {
  border-right: none;
}
main.lower.medinfo #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.medinfo .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.medinfo .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.medinfo .hyou1 a {
  text-decoration: none;
}
main.lower.medinfo .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.medinfo .bgc01 {
  background-color: #ffecf5;
}
main.lower.medinfo .bgc02 {
  background-color: #eadfff;
}
main.lower.medinfo .bgc03 {
  background-color: #e6ffdd;
}
main.lower.medinfo .bgc04 {
  background-color: #fff3c4;
}
main.lower.medinfo .bgc05 {
  background-color: #d2e9ff;
}
main.lower.medinfo .bgc06 {
  background-color: #efefef;
}
main.lower.medinfo .bgc07 {
  background-color: #f5e6ee;
}
main.lower.medinfo .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.medinfo .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.medinfo .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.medinfo .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.medinfo .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.medinfo .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.medinfo #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.medinfo .hyou4 {
  margin: 10px 0;
}
main.lower.medinfo .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.medinfo .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.medinfo .hyou5 {
  border: 1px solid #666666;
}
main.lower.medinfo .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.medinfo .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.medinfo .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.medinfo .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.medinfo .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.medinfo .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.medinfo .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.medinfo .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.medinfo .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #a74d85;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.medinfo .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.medinfo .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #a74d85;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #a74d85;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.medinfo .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.medinfo .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.medinfo .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.medinfo .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.medinfo .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.medinfo .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.medinfo .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.medinfo .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.medinfo .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.medinfo .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.medinfo .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.medinfo .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.medinfo .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.medinfo .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.medinfo .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.medinfo .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.medinfo .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.medinfo .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.medinfo .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.medinfo .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.medinfo .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.medinfo .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.medinfo .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.medinfo .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.medinfo .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.medinfo .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.medinfo .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.medinfo .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.medinfo .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.medinfo .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.medinfo .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.medinfo .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.medinfo .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.medinfo .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.medinfo .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.medinfo .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.medinfo .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.medinfo .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.medinfo .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.medinfo .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.medinfo .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.medinfo .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.medinfo .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.medinfo figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo figure {
    margin: 1rem auto;
  }
}
main.lower.medinfo .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.medinfo .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.medinfo .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.medinfo .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.medinfo .wp-pagenavi a.current {
  background: #a74d85;
  color: #fff;
}
main.lower.medinfo .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.medinfo #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.medinfo .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.medinfo .uni .main,
main.lower.medinfo .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .uni .main,
  main.lower.medinfo .uni .sub {
    padding: 1rem;
  }
}
main.lower.medinfo .uni .sub a {
  text-decoration: underline;
}
main.lower.medinfo .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.medinfo .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.medinfo .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.medinfo .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.medinfo .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.medinfo .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.medinfo .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.medinfo .uni .main .fields.no2 h4 a,
main.lower.medinfo .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.medinfo .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.medinfo .uni .main .fields.no3 h4 a,
main.lower.medinfo .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.medinfo .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.medinfo .uni .main .fields.no4 h4 a,
main.lower.medinfo .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.medinfo .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.medinfo .uni .main .fields.no5 h4 a,
main.lower.medinfo .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.medinfo .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .uni .main .fields h4 {
    border: none;
  }
}
main.lower.medinfo .uni .main .fields h4 a,
main.lower.medinfo .uni .main .fields h4 span {
  display: block;
}
main.lower.medinfo .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.medinfo .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .uni .main .fields > div {
    display: block;
  }
}
main.lower.medinfo .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.medinfo .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.medinfo .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.medinfo .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.medinfo .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.medinfo .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.medinfo .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.medinfo .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.medinfo .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.medinfo .uni .main .fields .field li::before {
  content: "●";
}
main.lower.medinfo .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.medinfo .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.medinfo a:link {
  color: inherit;
}
main.lower.medinfo #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.medinfo #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.medinfo #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.medinfo #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.medinfo #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.medinfo #contents .policy th,
main.lower.medinfo #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.medinfo #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.medinfo #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.medinfo #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.medical {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.medical {
    padding: 4.5rem 0 0;
  }
}
main.lower.medical .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.medical .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.medical #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.medical #page_ttl {
    padding: 2rem;
  }
}
main.lower.medical #page_ttl::after {
  position: absolute;
  content: "";
  background: #3a9c96;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medical #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.medical #page_ttl h1,
main.lower.medical #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.medical #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.medical #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.medical #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medical #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.medical #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #3a9c96;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.medical p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.medical a {
  text-decoration: underline;
}
main.lower.medical h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.medical h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.medical h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #3a9c96;
}
@media screen and (max-width: 768px) {
  main.lower.medical h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.medical .page-h3 {
  color: #3a9c96;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.medical .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.medical h4 {
  position: relative;
  color: #3a9c96;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.medical h4 {
    font-size: 1em;
  }
}
main.lower.medical h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.medical .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.medical .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.medical .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.medical .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.medical .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.medical .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.medical .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.medical .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.medical .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.medical .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.medical .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.medical .message {
    font-size: 1.2em;
  }
}
main.lower.medical .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.medical .breadcrumb {
    padding: 1rem;
  }
}
main.lower.medical .breadcrumb a {
  color: #0164b2;
}
main.lower.medical .breadcrumb a,
main.lower.medical .breadcrumb span {
  font-size: 14px;
}
main.lower.medical .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.medical .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #3a9c96;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.medical .list-number {
  counter-reset: listnum;
}
main.lower.medical .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.medical .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.medical .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.medical .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medical .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.medical .ark-block-accordion__label {
  color: #141414;
}
main.lower.medical .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medical .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.medical .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.medical .ark-block-accordion__icon::before, main.lower.medical .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.medical .media {
  display: table-cell;
}
main.lower.medical .wp-block-table,
main.lower.medical .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.medical .wp-block-table table,
main.lower.medical .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #3a9c96;
}
@media screen and (max-width: 768px) {
  main.lower.medical .wp-block-table table,
  main.lower.medical .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.medical .wp-block-table table thead,
main.lower.medical .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.medical .wp-block-table table thead th,
main.lower.medical .wp-block-table table thead td,
main.lower.medical .wp-block-flexible-table-block-table table thead th,
main.lower.medical .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.medical .wp-block-table table thead th,
main.lower.medical .wp-block-flexible-table-block-table table thead th {
  background: #3a9c96;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.medical .wp-block-table table thead td:first-child,
main.lower.medical .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.medical .wp-block-table table tr th,
main.lower.medical .wp-block-flexible-table-block-table table tr th {
  background-color: #3a9c96;
  border: solid 1px #3a9c96;
}
main.lower.medical .wp-block-table table tr td,
main.lower.medical .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #3a9c96;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.medical .wp-block-table table tr td,
  main.lower.medical .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.medical .wp-block-table table tr td:first-child,
main.lower.medical .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.medical .wp-block-table table tr th,
main.lower.medical .wp-block-table table tr td,
main.lower.medical .wp-block-flexible-table-block-table table tr th,
main.lower.medical .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.medical .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.medical .sample dl {
    display: block;
  }
}
main.lower.medical .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.medical .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.medical .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medical .sample dd {
    width: 100%;
  }
}
main.lower.medical .sample .face dt {
  background: #ffecf5;
}
main.lower.medical .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.medical .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.medical table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.medical table th,
main.lower.medical table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.medical table th {
  background: #3a9c96;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.medical table td {
  border: solid 1px #3a9c96;
}
main.lower.medical table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.medical table thead th:first-of-type {
  width: 11%;
}
main.lower.medical table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.medical table .min-h th,
main.lower.medical table .min-h td {
  height: 45px;
}
main.lower.medical table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.medical table td.on-campus-job span, main.lower.medical table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.medical table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.medical table td.off-campus span {
  background-color: #bbb;
}
main.lower.medical table td.lecture {
  background-color: #ffecf5;
}
main.lower.medical table .media {
  color: #f00;
}
main.lower.medical table.society {
  border-collapse: collapse;
}
main.lower.medical table.society th {
  color: #000;
  background: rgba(58, 156, 150, 0.3);
  border: solid 1px #3a9c96;
}
main.lower.medical .hyou1 {
  border: 1px solid #666666;
}
main.lower.medical .hyou1 th,
main.lower.medical .hyou1 td {
  font-size: 16px;
}
main.lower.medical .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.medical .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.medical .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.medical #wrapper #contents .classification {
  border-right: none;
}
main.lower.medical #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.medical .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.medical .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.medical .hyou1 a {
  text-decoration: none;
}
main.lower.medical .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.medical .bgc01 {
  background-color: #ffecf5;
}
main.lower.medical .bgc02 {
  background-color: #eadfff;
}
main.lower.medical .bgc03 {
  background-color: #e6ffdd;
}
main.lower.medical .bgc04 {
  background-color: #fff3c4;
}
main.lower.medical .bgc05 {
  background-color: #d2e9ff;
}
main.lower.medical .bgc06 {
  background-color: #efefef;
}
main.lower.medical .bgc07 {
  background-color: #f5e6ee;
}
main.lower.medical .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.medical .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.medical .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.medical .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.medical .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.medical .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.medical #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.medical .hyou4 {
  margin: 10px 0;
}
main.lower.medical .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.medical .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.medical .hyou5 {
  border: 1px solid #666666;
}
main.lower.medical .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.medical .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.medical .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.medical .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.medical .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.medical .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.medical .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.medical .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.medical .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.medical .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #3a9c96;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.medical .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.medical .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.medical .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.medical .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #3a9c96;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #3a9c96;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medical .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.medical .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.medical .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.medical .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.medical .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.medical .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.medical .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.medical .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.medical .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.medical .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.medical .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.medical .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.medical .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.medical .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.medical .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.medical .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.medical .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.medical .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.medical .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.medical .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.medical .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.medical .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.medical .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.medical .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.medical .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.medical .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.medical .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.medical .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.medical .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.medical .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.medical .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.medical .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.medical .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.medical .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.medical .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.medical .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.medical .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.medical .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.medical .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.medical .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.medical .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.medical .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.medical .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.medical .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.medical .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.medical .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.medical .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.medical .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.medical .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.medical .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.medical .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.medical .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.medical figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.medical figure {
    margin: 1rem auto;
  }
}
main.lower.medical .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.medical .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.medical .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.medical .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.medical .wp-pagenavi a.current {
  background: #3a9c96;
  color: #fff;
}
main.lower.medical .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.medical .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.medical #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.medical .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.medical .uni .main,
main.lower.medical .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.medical .uni .main,
  main.lower.medical .uni .sub {
    padding: 1rem;
  }
}
main.lower.medical .uni .sub a {
  text-decoration: underline;
}
main.lower.medical .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.medical .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.medical .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.medical .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.medical .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.medical .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.medical .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.medical .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.medical .uni .main .fields.no2 h4 a,
main.lower.medical .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.medical .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.medical .uni .main .fields.no3 h4 a,
main.lower.medical .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.medical .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.medical .uni .main .fields.no4 h4 a,
main.lower.medical .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.medical .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.medical .uni .main .fields.no5 h4 a,
main.lower.medical .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.medical .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.medical .uni .main .fields h4 {
    border: none;
  }
}
main.lower.medical .uni .main .fields h4 a,
main.lower.medical .uni .main .fields h4 span {
  display: block;
}
main.lower.medical .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.medical .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.medical .uni .main .fields > div {
    display: block;
  }
}
main.lower.medical .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.medical .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.medical .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.medical .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.medical .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.medical .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.medical .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.medical .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.medical .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.medical .uni .main .fields .field li::before {
  content: "●";
}
main.lower.medical .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.medical .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.medical a:link {
  color: inherit;
}
main.lower.medical #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.medical #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.medical #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.medical #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.medical #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.medical #contents .policy th,
main.lower.medical #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.medical #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.medical #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.medical #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower.standard {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  main.lower.standard {
    padding: 4.5rem 0 0;
  }
}
main.lower.standard .inner {
  padding: 120px 2.5rem;
  max-width: 1100px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower.standard .inner {
    padding: 2rem 1rem;
    min-height: inherit;
  }
}
main.lower.standard #page_ttl {
  position: relative;
  background: #f7f7f7;
  padding: 5.625rem 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.lower.standard #page_ttl {
    padding: 2rem;
  }
}
main.lower.standard #page_ttl::after {
  position: absolute;
  content: "";
  background: #0164b2;
  width: 84px;
  height: 200%;
  top: -50%;
  right: 10%;
  transform: rotate(45deg);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main.lower.standard #page_ttl::after {
    width: 30px;
    right: -1rem;
  }
}
main.lower.standard #page_ttl h1,
main.lower.standard #page_ttl p {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  z-index: 1;
}
main.lower.standard #page_ttl h1 {
  font-family: "Outfit", sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 768px) {
  main.lower.standard #page_ttl h1 {
    font-size: 1.7em;
    margin-bottom: 0.5rem !important;
  }
}
main.lower.standard #page_ttl p.english {
  position: relative;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.standard #page_ttl p.english {
    font-size: 1em;
  }
}
main.lower.standard #page_ttl p.english::after {
  position: absolute;
  content: "";
  background: #0164b2;
  width: 2px;
  height: 26px;
  left: 0.5rem;
  top: 0;
  transform: rotate(45deg);
}
main.lower.standard p {
  margin: 1.5em 0;
  line-height: 1.8;
}
main.lower.standard a {
  text-decoration: underline;
}
main.lower.standard h2 {
  text-align: left;
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 1.625rem;
  margin: 5rem auto 2rem;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.standard h2 {
    font-size: 1.3em;
    padding-bottom: 1rem;
    margin: 2.5rem auto 2rem;
  }
}
main.lower.standard h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding-left: 12px;
  margin: 5rem auto 1.5rem;
  border-left: solid 5px #0164b2;
}
@media screen and (max-width: 768px) {
  main.lower.standard h3 {
    font-size: 1.125em;
    margin: 2.5rem auto 1rem;
  }
}
main.lower.standard .page-h3 {
  color: #0164b2;
  padding-left: 0;
  margin-top: 1rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.standard .page-h3 {
    font-size: 1.125em;
  }
}
main.lower.standard h4 {
  position: relative;
  color: #0164b2;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.standard h4 {
    font-size: 1em;
  }
}
main.lower.standard h5 {
  font-size: 1.1em;
  font-weight: bold;
}
main.lower.standard .lower__contact {
  display: flex;
  justify-content: space-between;
  background: #d0efed;
  padding: 2rem;
  margin-top: 5rem;
  border: solid 1px #16726c;
}
@media screen and (max-width: 768px) {
  main.lower.standard .lower__contact {
    display: block;
    padding: 1rem;
    margin-top: 2rem;
  }
}
main.lower.standard .lower__contact a {
  background: #3a9c96;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  width: 49%;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  main.lower.standard .lower__contact a {
    font-size: 1.125em;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.standard .lower__contact a:last-child {
  background: #0291d7;
}
@media screen and (max-width: 768px) {
  main.lower.standard .lower__contact a:last-child {
    margin-bottom: 0;
  }
}
main.lower.standard .lower__contact a:last-child img {
  width: 20px;
}
@media screen and (max-width: 768px) {
  main.lower.standard .lower__contact a:last-child img {
    width: 15px;
  }
}
main.lower.standard .lower__contact a img {
  width: 30px;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.standard .lower__contact a img {
    width: 20px;
    margin-right: 0.5rem;
  }
}
main.lower.standard .message {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.standard .message {
    font-size: 1.2em;
  }
}
main.lower.standard .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  main.lower.standard .breadcrumb {
    padding: 1rem;
  }
}
main.lower.standard .breadcrumb a {
  color: #0164b2;
}
main.lower.standard .breadcrumb a,
main.lower.standard .breadcrumb span {
  font-size: 14px;
}
main.lower.standard .wp-block-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
}
main.lower.standard .wp-block-list li::before {
  position: absolute;
  content: "";
  background: #0164b2;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
}
main.lower.standard .list-number {
  counter-reset: listnum;
}
main.lower.standard .list-number li::before {
  background: none;
  counter-increment: listnum;
  content: counter(listnum) ".";
  top: 0;
}
main.lower.standard .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower.standard .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower.standard .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.standard .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower.standard .ark-block-accordion__label {
  color: #141414;
}
main.lower.standard .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower.standard .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower.standard .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower.standard .ark-block-accordion__icon::before, main.lower.standard .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower.standard .media {
  display: table-cell;
}
main.lower.standard .wp-block-table,
main.lower.standard .wp-block-flexible-table-block-table {
  width: 100%;
}
main.lower.standard .wp-block-table table,
main.lower.standard .wp-block-flexible-table-block-table table {
  width: 100%;
  margin-bottom: 2rem;
  border: solid 1px #0164b2;
}
@media screen and (max-width: 768px) {
  main.lower.standard .wp-block-table table,
  main.lower.standard .wp-block-flexible-table-block-table table {
    width: 720px;
    overflow-x: scroll;
  }
}
main.lower.standard .wp-block-table table thead,
main.lower.standard .wp-block-flexible-table-block-table table thead {
  border-bottom: none !important;
}
main.lower.standard .wp-block-table table thead th,
main.lower.standard .wp-block-table table thead td,
main.lower.standard .wp-block-flexible-table-block-table table thead th,
main.lower.standard .wp-block-flexible-table-block-table table thead td {
  font-size: 16px;
}
main.lower.standard .wp-block-table table thead th,
main.lower.standard .wp-block-flexible-table-block-table table thead th {
  background: #0164b2;
  border: solid 1px #eee !important;
  font-weight: 500;
}
main.lower.standard .wp-block-table table thead td:first-child,
main.lower.standard .wp-block-flexible-table-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower.standard .wp-block-table table tr th,
main.lower.standard .wp-block-flexible-table-block-table table tr th {
  background-color: #0164b2;
  border: solid 1px #0164b2;
}
main.lower.standard .wp-block-table table tr td,
main.lower.standard .wp-block-flexible-table-block-table table tr td {
  text-align: left;
  border: solid 1px #0164b2;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower.standard .wp-block-table table tr td,
  main.lower.standard .wp-block-flexible-table-block-table table tr td {
    padding: 0.5rem 1rem;
  }
}
main.lower.standard .wp-block-table table tr td:first-child,
main.lower.standard .wp-block-flexible-table-block-table table tr td:first-child {
  width: 25%;
}
main.lower.standard .wp-block-table table tr th,
main.lower.standard .wp-block-table table tr td,
main.lower.standard .wp-block-flexible-table-block-table table tr th,
main.lower.standard .wp-block-flexible-table-block-table table tr td {
  font-size: 16px;
}
main.lower.standard .sample dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower.standard .sample dl {
    display: block;
  }
}
main.lower.standard .sample dt {
  display: block;
  width: 7%;
  padding: 0.3em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main.lower.standard .sample dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.lower.standard .sample dd {
  width: 90%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  main.lower.standard .sample dd {
    width: 100%;
  }
}
main.lower.standard .sample .face dt {
  background: #ffecf5;
}
main.lower.standard .sample .media dt {
  background: #ffecf5;
  color: #f00;
}
main.lower.standard .sample .study dt {
  background: #e3fcf1;
  color: #008833;
}
main.lower.standard table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
main.lower.standard table th,
main.lower.standard table td {
  padding: 0.5rem;
  font-size: 0.75em;
  text-align: center;
  line-height: 1.3;
}
main.lower.standard table th {
  background: #0164b2;
  color: #fff;
  width: 15%;
  border: solid 1px #fff;
}
main.lower.standard table td {
  border: solid 1px #0164b2;
}
main.lower.standard table thead th span {
  display: block;
  font-size: 0.875em;
}
main.lower.standard table thead th:first-of-type {
  width: 11%;
}
main.lower.standard table tbody th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
main.lower.standard table .min-h th,
main.lower.standard table .min-h td {
  height: 45px;
}
main.lower.standard table td.study {
  background-color: #e3fcf1;
  color: #008833;
}
main.lower.standard table td.on-campus-job span, main.lower.standard table td.off-campus span {
  display: block;
  padding: 0.5em 0.3em;
  color: #fff;
}
main.lower.standard table td.on-campus-job span {
  background-color: #ff963b;
}
main.lower.standard table td.off-campus span {
  background-color: #bbb;
}
main.lower.standard table td.lecture {
  background-color: #ffecf5;
}
main.lower.standard table .media {
  color: #f00;
}
main.lower.standard table.society {
  border-collapse: collapse;
}
main.lower.standard table.society th {
  color: #000;
  background: rgba(1, 100, 178, 0.3);
  border: solid 1px #0164b2;
}
main.lower.standard .hyou1 {
  border: 1px solid #666666;
}
main.lower.standard .hyou1 th,
main.lower.standard .hyou1 td {
  font-size: 16px;
}
main.lower.standard .hyou1 th {
  padding: 0.5rem !important;
}
main.lower.standard .hyou1 td {
  border: 1px dotted #999999;
  line-height: normal;
}
main.lower.standard .hyou1 td.separate {
  border-bottom: 2px solid #999999;
}
main.lower.standard #wrapper #contents .classification {
  border-right: none;
}
main.lower.standard #wrapper #contents .td_course {
  border-left: 1px solid #999999;
}
main.lower.standard .hyou1 td.top-solid {
  border-top: 1px solid #999999;
}
main.lower.standard .hyou1 th {
  border: 1px solid #666666;
  padding: 1px;
  font-weight: normal;
  line-height: normal;
}
main.lower.standard .hyou1 a {
  text-decoration: none;
}
main.lower.standard .hyou1 a:hover {
  text-decoration: underline;
}
main.lower.standard .bgc01 {
  background-color: #ffecf5;
}
main.lower.standard .bgc02 {
  background-color: #eadfff;
}
main.lower.standard .bgc03 {
  background-color: #e6ffdd;
}
main.lower.standard .bgc04 {
  background-color: #fff3c4;
}
main.lower.standard .bgc05 {
  background-color: #d2e9ff;
}
main.lower.standard .bgc06 {
  background-color: #efefef;
}
main.lower.standard .bgc07 {
  background-color: #f5e6ee;
}
main.lower.standard .hyou3 {
  border: 1px solid #666666;
  border-collapse: collapse;
}
main.lower.standard .hyou3 td {
  border: 1px solid #666;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.standard .hyou3 p {
  padding: 0;
  margin: 0;
}
main.lower.standard .hyou3 th.top {
  background-color: #003366;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.standard .hyou3 th.top2 {
  background-color: #003366;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: #ffffff;
  font-weight: normal;
  padding: 0.5rem;
}
main.lower.standard .hyou3 th.top3 {
  background-color: #003366;
  border-left: 1px solid #fff;
  color: #ffffff;
  padding: 0.5rem;
}
main.lower.standard #contents .hyou3 th.left {
  background-color: #d2e9ff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  padding: 0.5rem;
  border: 1px solid #666;
  text-align: left !important;
}
main.lower.standard .hyou4 {
  margin: 10px 0;
}
main.lower.standard .hyou4 th {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.standard .hyou4 td {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  padding: 0.5rem;
  line-height: 1.3;
}
main.lower.standard .hyou5 {
  border: 1px solid #666666;
}
main.lower.standard .hyou5 td {
  border: 1px solid #999999;
  padding: 0.5rem;
  line-height: normal;
}
main.lower.standard .hyou5 th {
  border: 1px solid #666666;
  padding: 0.5rem;
  font-weight: normal;
  line-height: normal;
}
main.lower.standard .scholar1 {
  background-color: #ffeeee;
  font-weight: bold;
}
main.lower.standard .scholar2 {
  background-color: #ffcccc;
  font-weight: bold;
}
main.lower.standard .scholar3 {
  background-color: #cc6666;
  font-weight: bold;
  color: #ffffff;
}
main.lower.standard .wp-block-button {
  width: 100%;
  margin: 1rem 0;
}
main.lower.standard .wp-block-button__link {
  position: relative;
  display: block;
  background: #fff;
  color: #000;
  font-size: 1.175em;
  font-weight: bold;
  width: 100%;
  padding: 2.375rem 4rem 2.375rem 3rem;
  text-align: left;
  text-decoration: none !important;
  border: solid 1px #dddddd;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower.standard .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.standard .wp-block-button__link:hover {
  transform: translateY(-5px);
}
main.lower.standard .wp-block-button__link::before {
  content: "";
  position: absolute;
  background: #0164b2;
  width: 35px;
  height: 35px;
  top: 50%;
  right: 1.5rem;
  border-radius: 30px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.standard .wp-block-button__link::before {
    width: 26px;
    height: 26px;
    right: 1rem;
  }
}
main.lower.standard .wp-block-button__link::after {
  content: "";
  position: absolute;
  background: url(images/arrow.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower.standard .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 1.5rem;
  }
}
main.lower.standard .btn-a .wp-block-button__link {
  position: relative;
  display: block;
  background: none;
  color: #0164b2;
  font-size: 1.125em;
  padding: 0 2rem 1rem 0;
  border: none;
  border-bottom: solid 2px #0164b2;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  main.lower.standard .btn-a .wp-block-button__link {
    font-size: 1em;
  }
}
main.lower.standard .btn-a .wp-block-button__link:hover {
  transform: translateY(0);
}
main.lower.standard .btn-a .wp-block-button__link::before {
  top: inherit;
  bottom: 12px;
  right: 0;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.standard .btn-a .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.standard .btn-a .wp-block-button__link::after {
  top: inherit;
  bottom: 1.5rem;
  right: 0.75rem;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  main.lower.standard .btn-a .wp-block-button__link::after {
    width: 10px;
    height: 10px;
    right: 0.5rem;
    bottom: 1.25rem;
  }
}
main.lower.standard .wp-block-button.ptherap .wp-block-button__link {
  color: #714f8c;
  border-bottom: solid 2px #714f8c;
}
main.lower.standard .wp-block-button.ptherap .wp-block-button__link::before {
  background: #714f8c;
}
main.lower.standard .wp-block-button.otherap .wp-block-button__link {
  color: #27579f;
  border-bottom: solid 2px #27579f;
}
main.lower.standard .wp-block-button.otherap .wp-block-button__link::before {
  background: #27579f;
}
main.lower.standard .wp-block-button.speech .wp-block-button__link {
  color: #0291d7;
  border-bottom: solid 2px #0291d7;
}
main.lower.standard .wp-block-button.speech .wp-block-button__link::before {
  background: #0291d7;
}
main.lower.standard .wp-block-button.prosth .wp-block-button__link {
  color: #029389;
  border-bottom: solid 2px #029389;
}
main.lower.standard .wp-block-button.prosth .wp-block-button__link::before {
  background: #029389;
}
main.lower.standard .wp-block-button.medsafe .wp-block-button__link {
  color: #005da8;
  border-bottom: solid 2px #005da8;
}
main.lower.standard .wp-block-button.medsafe .wp-block-button__link::before {
  background: #005da8;
}
main.lower.standard .wp-block-button.visual .wp-block-button__link {
  color: #0f51aa;
  border-bottom: solid 2px #0f51aa;
}
main.lower.standard .wp-block-button.visual .wp-block-button__link::before {
  background: #0f51aa;
}
main.lower.standard .wp-block-button.emergen .wp-block-button__link {
  color: #007dc7;
  border-bottom: solid 2px #007dc7;
}
main.lower.standard .wp-block-button.emergen .wp-block-button__link::before {
  background: #007dc7;
}
main.lower.standard .wp-block-button.radiation .wp-block-button__link {
  color: #0090b1;
  border-bottom: solid 2px #0090b1;
}
main.lower.standard .wp-block-button.radiation .wp-block-button__link::before {
  background: #0090b1;
}
main.lower.standard .wp-block-button.anthrop .wp-block-button__link {
  color: #b28246;
  border-bottom: solid 2px #b28246;
}
main.lower.standard .wp-block-button.anthrop .wp-block-button__link::before {
  background: #b28246;
}
main.lower.standard .wp-block-button.healthn .wp-block-button__link {
  color: #f08201;
  border-bottom: solid 2px #f08201;
}
main.lower.standard .wp-block-button.healthn .wp-block-button__link::before {
  background: #f08201;
}
main.lower.standard .wp-block-button.healths .wp-block-button__link {
  color: #d93625;
  border-bottom: solid 2px #d93625;
}
main.lower.standard .wp-block-button.healths .wp-block-button__link::before {
  background: #d93625;
}
main.lower.standard .wp-block-button.nursing .wp-block-button__link {
  color: #ee4777;
  border-bottom: solid 2px #ee4777;
}
main.lower.standard .wp-block-button.nursing .wp-block-button__link::before {
  background: #ee4777;
}
main.lower.standard .wp-block-button.welfare .wp-block-button__link {
  color: #3fb136;
  border-bottom: solid 2px #3fb136;
}
main.lower.standard .wp-block-button.welfare .wp-block-button__link::before {
  background: #3fb136;
}
main.lower.standard .wp-block-button.welfman .wp-block-button__link {
  color: #269d38;
  border-bottom: solid 2px #269d38;
}
main.lower.standard .wp-block-button.welfman .wp-block-button__link::before {
  background: #269d38;
}
main.lower.standard .wp-block-button.medinfo .wp-block-button__link {
  color: #a74d85;
  border-bottom: solid 2px #a74d85;
}
main.lower.standard .wp-block-button.medinfo .wp-block-button__link::before {
  background: #a74d85;
}
main.lower.standard .wp-block-button.medical .wp-block-button__link {
  color: #3a9c96;
  border-bottom: solid 2px #3a9c96;
}
main.lower.standard .wp-block-button.medical .wp-block-button__link::before {
  background: #3a9c96;
}
main.lower.standard .wp-block-button.standard .wp-block-button__link {
  color: #0164b2;
  border-bottom: solid 2px #0164b2;
}
main.lower.standard .wp-block-button.standard .wp-block-button__link::before {
  background: #0164b2;
}
main.lower.standard .btn-b .wp-block-button__link {
  position: relative;
  display: block;
  background: #0164b2;
  color: #fff;
  font-size: 1.125em;
  padding: 1.5rem 4rem 1.5rem 2rem;
  border: none;
}
@media screen and (max-width: 768px) {
  main.lower.standard .btn-b .wp-block-button__link {
    font-size: 1em;
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower.standard .btn-b .wp-block-button__link:hover {
  transform: translateY(5px);
}
main.lower.standard .btn-b .wp-block-button__link::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.standard .btn-b .wp-block-button__link::before {
    width: 26px;
    height: 26px;
  }
}
main.lower.standard .btn-b .wp-block-button__link::after {
  background: url(images/arrow-b.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
  top: 43%;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  main.lower.standard .btn-b .wp-block-button__link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  main.lower.standard .wp-block-columns {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower.standard .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower.standard .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower.standard .wp-block-columns .wp-block-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.lower.standard .wp-block-columns .wp-block-button:last-of-type {
    margin-bottom: 0;
  }
}
main.lower.standard figure {
  margin: 1.5rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.standard figure {
    margin: 1rem auto;
  }
}
main.lower.standard .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower.standard .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower.standard .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower.standard .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower.standard .wp-pagenavi a.current {
  background: #0164b2;
  color: #fff;
}
main.lower.standard .wp-block-separator {
  border: dashed 1px #d4d4d4;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  main.lower.standard .wp-block-separator {
    margin: 2rem auto;
  }
}
main.lower.standard #contents .note {
  float: right;
  font-size: 12px;
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
main.lower.standard .uni {
  position: relative;
  padding: 60px 20px 20px;
  border: 2px solid #ff8585;
}
main.lower.standard .uni .main,
main.lower.standard .uni .sub {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  main.lower.standard .uni .main,
  main.lower.standard .uni .sub {
    padding: 1rem;
  }
}
main.lower.standard .uni .sub a {
  text-decoration: underline;
}
main.lower.standard .uni .sub a:hover {
  opacity: 0.4;
}
main.lower.standard .uni .main {
  margin-top: 10px;
  border: 2px solid #069;
}
main.lower.standard .uni .main .fields {
  margin-top: 1em;
  padding: 20px 30px;
  border: 10px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  main.lower.standard .uni .main .fields {
    padding: 1rem;
  }
}
main.lower.standard .uni .main .fields.no1 {
  background-color: #f6f9f9;
}
main.lower.standard .uni .main .fields.no1 h4 a {
  color: #3aa6a0;
}
main.lower.standard .uni .main .fields.no1 li::before {
  color: #3aa6a0;
}
main.lower.standard .uni .main .fields.no2 {
  background-color: #f3eef5;
}
main.lower.standard .uni .main .fields.no2 h4 a,
main.lower.standard .uni .main .fields.no2 li::before {
  color: #7b5aa3;
}
main.lower.standard .uni .main .fields.no3 {
  background-color: #fef5f1;
}
main.lower.standard .uni .main .fields.no3 h4 a,
main.lower.standard .uni .main .fields.no3 li::before {
  color: #f08200;
}
main.lower.standard .uni .main .fields.no4 {
  background-color: #f3f7ef;
}
main.lower.standard .uni .main .fields.no4 h4 a,
main.lower.standard .uni .main .fields.no4 li::before {
  color: #3fb135;
}
main.lower.standard .uni .main .fields.no5 {
  background-color: #f5f1ee;
}
main.lower.standard .uni .main .fields.no5 h4 a,
main.lower.standard .uni .main .fields.no5 li::before {
  color: #935f50;
}
main.lower.standard .uni .main .fields h4 {
  width: 200px;
  margin-right: 30px;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  main.lower.standard .uni .main .fields h4 {
    border: none;
  }
}
main.lower.standard .uni .main .fields h4 a,
main.lower.standard .uni .main .fields h4 span {
  display: block;
}
main.lower.standard .uni .main .fields h4 a:hover {
  opacity: 0.4;
}
main.lower.standard .uni .main .fields > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main.lower.standard .uni .main .fields > div {
    display: block;
  }
}
main.lower.standard .uni .main .fields > div ul {
  font-size: 14px;
  line-height: 1.6;
}
main.lower.standard .uni .main .fields > div ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main.lower.standard .uni .main .fields > div ul li::before {
  content: "◆";
  padding-right: 0.25em;
}
main.lower.standard .uni .main .fields .course {
  display: block;
  width: 10em;
  margin-bottom: 0.5em;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: #666;
}
main.lower.standard .uni .main .fields.other h4 {
  width: 100%;
  margin: 0;
  border: none;
}
main.lower.standard .uni .main .fields.other h4 a {
  text-decoration: underline;
}
main.lower.standard .uni .main .fields .field {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}
main.lower.standard .uni .main .fields .field li {
  margin-right: 1em;
}
main.lower.standard .uni .main .fields .field li a {
  text-decoration: underline;
}
main.lower.standard .uni .main .fields .field li::before {
  content: "●";
}
main.lower.standard .uni .name {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: #ff8585;
  line-height: 1;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main.lower.standard .uni .name {
    font-size: 1.125em;
    padding: 10px 1rem;
  }
}
main.lower.standard a:link {
  color: inherit;
}
main.lower.standard #wrapper #contents tr:first-child th:first-child {
  width: 179px;
}
main.lower.standard #wrapper #contents tr:first-child th:nth-child(2) {
  width: 261px;
}
main.lower.standard #wrapper #contents tr:first-child th:nth-child(3) {
  width: 310px;
}
main.lower.standard #wrapper #contents tr:first-child th:nth-child(4) {
  width: 180px;
}
main.lower.standard #contents .policy {
  border-collapse: collapse;
  font-size: 0.875em;
}
main.lower.standard #contents .policy th,
main.lower.standard #contents .policy td {
  border: solid 1px;
  padding: 0.5em;
}
main.lower.standard #contents .policy .links a {
  display: block;
  padding: 10px 5px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-color: #ffb059;
  color: #555;
}
main.lower.standard #wrapper #contents .policy .links td {
  font-size: 1em;
}
main.lower.standard #contents .policy .links a:hover {
  opacity: 0.5;
}
main.lower .research {
  background: linear-gradient(to top, #f7f7f7, #fff);
  z-index: 0;
}
main.lower .research__box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  main.lower .research__box {
    margin-bottom: 1.5rem;
  }
}
main.lower .research__box__item {
  background: #fff;
  flex-basis: 32%;
  border: solid 1px #0164b2;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.062745098);
  margin-bottom: 1.5rem;
}
@media (max-width: 1200px) {
  main.lower .research__box__item {
    flex-basis: 48.5%;
  }
}
@media screen and (max-width: 768px) {
  main.lower .research__box__item {
    flex-basis: 100%;
  }
}
main.lower .research__box__item img {
  border-radius: 5px 5px 0 0;
}
main.lower .research__box__item-inner {
  padding: 1.5rem;
}
main.lower .research__box__item-inner h3 {
  margin: 1rem auto;
}
main.lower .research__box__item-inner p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 1rem auto;
}
main.lower .research__box__item-inner ul {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
main.lower .research__box__item-inner ul li {
  position: relative;
  padding-left: 0.75rem;
}
main.lower .research__box__item-inner ul li::before {
  position: absolute;
  content: "#";
  top: 0;
  left: 0;
}
main.lower .research__box__item-inner ul li a {
  color: #000000;
  text-decoration: underline;
  margin-top: 0;
}
main.lower .research__box__item-inner a {
  color: #0164b2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
}
main.lower .research__box__item-inner a img {
  background: #0164b2;
  width: 35px;
  padding: 11px;
  border-radius: 50%;
}
main.lower .contact .title-contactform7 {
  font-weight: bold;
}
main.lower .contact .title-contactform7 span {
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 3px;
  margin-left: 0.35rem;
  border-radius: 3px;
}
main.lower .contact__form {
  padding: 0.5rem;
  width: 100%;
  max-width: 680px;
}
main.lower .contact__sform {
  padding: 0.5rem;
  width: 100%;
  max-width: 320px;
}
main.lower .contact__textarea {
  padding: 0.5rem;
  width: 100%;
  max-width: 680px;
}
main.lower .contact .wpcf7-list-item {
  background: #eee;
  padding: 0.5rem;
  margin: 0 0.5rem 0.5rem 0;
  border-radius: 3px;
}
main.lower .contact .wpcf7-list-item:hover {
  cursor: pointer;
}
main.lower .contact__btn {
  background: #002f54;
  color: #fff;
  font-weight: bold;
  padding: 1rem 3rem;
  border: none;
  border-radius: 5px;
}
main.lower .confirm .title-contactform7 span {
  display: none;
}
main.lower .confirm input {
  border: none;
}
main.lower .confirm .wpcf7-previous {
  background: #fff;
  color: #002f54;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border: solid 1px #002f54;
  border-radius: 5px;
}
main.lower .topics h2 {
  text-align: left;
}
main.lower .topics__box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  main.lower .topics__box {
    display: block;
  }
}
main.lower .topics__box__panel {
  width: 100%;
}
main.lower .topics__box__panel * {
  text-decoration: none !important;
}
main.lower .topics__box__panel-inner {
  position: relative;
  display: block;
  background: #f7f7f7;
  padding: 1.25rem 4rem 1.25rem 2.25rem;
  margin-bottom: 12px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  main.lower .topics__box__panel-inner {
    padding: 1rem 3rem 1rem 1rem;
  }
}
main.lower .topics__box__panel-inner::after {
  position: absolute;
  content: "";
  background: url(./images/n-arrow.svg);
  background-size: cover;
  top: 50%;
  right: 1.5rem;
  width: 35px;
  height: 35px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  main.lower .topics__box__panel-inner::after {
    right: 1rem;
    width: 25px;
    height: 25px;
  }
}
main.lower .topics__box__panel-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  main.lower .topics__box__panel-info {
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
}
main.lower .topics__box__panel-info .date {
  font-size: 13px;
  margin: 0;
}
main.lower .topics__box__panel-info .category {
  color: #0164b2;
  font-size: 15px;
  font-weight: bold;
  margin: 0;
}
main.lower .topics__box__panel .ttl {
  margin: 0.5rem auto 0;
}
main.lower .topics__box .btn02 {
  display: none !important;
}
@media (max-width: 1000px) {
  main.lower .topics__box .btn02 {
    display: flex !important;
    margin-top: 2.25rem;
  }
}

.pum-theme-default-theme {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.pum-title {
  font-size: 1.125em !important;
  font-weight: bold !important;
}

.pop {
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem;
}
@media screen and (max-width: 768px) {
  .pop {
    display: block;
  }
}
.pop p {
  color: #000;
}
.pop__left {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .pop__left {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.pop__right {
  width: 73%;
}
@media screen and (max-width: 768px) {
  .pop__right {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.pop__right h4 {
  color: #0164b2;
  margin-bottom: 1rem;
}

.grecaptcha-badge {
  display: none;
}

.popbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.popItem {
  display: flex;
  justify-content: space-between;
  width: 48%;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .popItem {
    display: block;
    margin-bottom: 2rem;
  }
}
.popItem .name {
  font-weight: bold;
}
.popItem p {
  color: #000;
  margin: 0 auto !important;
}
.popItem__left {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .popItem__left {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.popItem__left img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.popItem__right {
  width: 73%;
}
@media screen and (max-width: 768px) {
  .popItem__right {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.popItem__right h4 {
  color: #0164b2;
  margin-bottom: 1rem;
}
.popItem .modal-btn {
  background: #fff;
  font-size: 14px !important;
  padding: 0.2rem 0;
  margin-top: 1rem;
  border: none;
  border-bottom: solid 1px #000;
}
.popItem .modal-btn:hover {
  cursor: pointer;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.modal-content {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 5% auto;
  padding: 2rem;
  width: 95%;
  max-width: 1000px;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .modal-content {
    display: block;
    padding: 3rem 1rem 2rem;
  }
}
.modal-content p {
  margin: 0 auto 1rem !important;
}
.modal-content .modal-left {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .modal-content .modal-left {
    width: 100%;
  }
}
.modal-content .modal-left img {
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 1rem;
}
.modal-content .modal-left .name {
  font-weight: bold;
  margin: 0;
}
.modal-content .modal-right {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .modal-content .modal-right {
    width: 100%;
  }
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
}
@media screen and (max-width: 768px) {
  .modal-close {
    top: 0.3rem;
    right: 0.5rem;
  }
}

.single .inner {
  max-width: 870px;
}
.single h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8em !important;
  font-weight: bold !important;
  padding-left: 0 !important;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .single h1 {
    font-size: 1.5em !important;
  }
}
.single h1::after {
  display: none !important;
}
.single .thumn {
  display: block;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.archive__item {
  padding: 1.5em;
  border-bottom: solid 1px #0164b2;
  margin: 0 !important;
}
.archive__item::before {
  display: none;
}
.archive__item-category {
  background: #eee;
  color: #fff;
  padding: 0.5em 1em;
  margin-right: 0.75em;
  font-size: 0.75em;
  border-radius: 6px;
}
.archive__item a {
  color: #0164b2 !important;
  text-decoration: none !important;
}

main.home .majors__box__item h4.hthsci {
  background: #7b5a99;
}
main.home .majors__box__item h4.wellsci {
  background: #eb7421;
}
main.home .majors__box__item h4.welfsci {
  background: #3fb136;
}
main.home .majors__box__item h4.medbiz {
  background: #895f50;
}
main.home .majors__box__item h4.medwelf {
  background: #3a9c96;
}
main.home .majors__box__item .degree.hthsci__degree {
  background-color: rgba(123, 90, 153, 0.08);
}
main.home .majors__box__item .degree.wellsci__degree {
  background-color: rgba(235, 116, 33, 0.08);
}
main.home .majors__box__item .degree.welfsci__degree {
  background-color: rgba(63, 177, 54, 0.08);
}
main.home .majors__box__item .degree.medbiz__degree {
  background-color: rgba(137, 95, 80, 0.08);
}
main.home .majors__box__item .degree.medwelf__degree {
  background-color: rgba(58, 156, 150, 0.08);
}
main.home .majors__box__item ul li.ptherap {
  border-left-color: #714f8c;
}
main.home .majors__box__item ul li.otherap {
  border-left-color: #27579f;
}
main.home .majors__box__item ul li.speech {
  border-left-color: #0291d7;
}
main.home .majors__box__item ul li.prosth {
  border-left-color: #029389;
}
main.home .majors__box__item ul li.medsafe {
  border-left-color: #005da8;
}
main.home .majors__box__item ul li.visual {
  border-left-color: #0f51aa;
}
main.home .majors__box__item ul li.emergen {
  border-left-color: #007dc7;
}
main.home .majors__box__item ul li.radiation {
  border-left-color: #0090b1;
}
main.home .majors__box__item ul li.anthrop {
  border-left-color: #b28246;
}
main.home .majors__box__item ul li.healthn {
  border-left-color: #f08201;
}
main.home .majors__box__item ul li.healths {
  border-left-color: #d93625;
}
main.home .majors__box__item ul li.nursing {
  border-left-color: #ee4777;
}
main.home .majors__box__item ul li.welfare {
  border-left-color: #3fb136;
}
main.home .majors__box__item ul li.welfman {
  border-left-color: #269d38;
}
main.home .majors__box__item ul li.medinfo {
  border-left-color: #a74d85;
}
main.home .majors__box__item ul li.medical {
  border-left-color: #3a9c96;
}
main.home .majors__box__item ul li.standard {
  border-left-color: #0164b2;
}

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