@charset "UTF-8";
/* CSS Document */
/* CSS Document */
#bgFade {
  position: relative;
  width: 100%;
  height: 100% !important;
  padding: 0 0 0 0;
  margin: 0 auto 0 auto;
}

#bgFade div {
  position: absolute;
  transform: scale(1.1);
}

.infotop_area {
  position: relative;
  width: 100%;
  max-width: 935px;
  background: #fff;
  padding: 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  border-bottom: 1px solid #ddd;
}
.infotop_area .date {
  width: 8em;
  padding: 5px 0 5px 2em;
  color: #2fc5cf;
}
.infotop_area .article {
  width: calc(100% - 16em);
  padding: 5px;
  flex-grow: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.infotop_area .check {
  background: #2fc5cf;
}
.infotop_area .check a {
  padding: 5px;
  color: #fff;
  display: block;
  text-align: center;
  width: 8em;
}

#bgFade .button_area {
  position: absolute;
  width: 100%;
  max-width: 1100px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 100px;
  z-index: 250;
}

#bgFade .buttons {
  position: absolute;
  text-align: center;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 250;
  display: inline;
  width: 240px;
  line-height: 2em;
  border-radius: 4px;
  padding: 5px;
}

#bgFade .buttons span.button {
  background: #ccc;
  width: 1em;
  height: 1em;
  line-height: 1em;
  display: inline-block;
  border-radius: 3em;
  cursor: pointer;
  transition: 300ms ease;
  vertical-align: middle;
  margin: 5px;
}

#bgFade .buttons span.button.now {
  background: steelblue;
  width: 1.5em;
  height: 1.5em;
  border-radius: 1.5em;
}

#bgFade .buttons span.button:hover {
  background: rgba(70, 130, 180, 0.7);
}

#bgFade .buttons span.next, #bgFade .buttons span.prev {
  color: white;
  height: 1em;
  width: 1.0em;
  line-height: 1em;
  cursor: pointer;
  display: inline-block;
  font-size: 2em;
  transition: 300ms ease;
  vertical-align: middle;
}

#bgFade .buttons span.next:hover, #bgFade .buttons span.prev:hover {
  color: steelblue;
}

#parts {
  z-index: 100;
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  transform: translateZ(1px);
  position: relative;
}
#parts li {
  display: none;
  width: 98vw;
  max-width: 1100px;
  margin: auto 1vw;
  z-index: 0;
  animation: bgzoomin ease-out;
  font-family: 'Noto Serif JP', serif;
  font-size: min(4.5vw, 4rem);
}
#parts li img {
  top: 0;
  opacity: 0;
  z-index: 500;
  transform: translate3d(0px, 0px, 15px);
}

#bgFade div.vegas-wrapper {
  transform: scale(1);
}

.vegas-animation-bgzoomin {
  animation: bgzoomin ease-out;
}

@keyframes bgzoomin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes bg {
  0% {
    background: rgba(0, 0, 0, 0.5);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
#container {
  margin-top: 60px;
}

.page_img {
  height: calc(100vw / 96 * 35);
  max-height: 700px;
  background-size: contain;
  z-index: -1;
}

.headline {
  display: flex;
  border: 1px solid #222;
  border-radius: 4px;
  margin: 0px 0 10px;
  overflow: hidden;
}

.headline h2 {
  width: 30%;
  max-width: 10em;
  border-radius: 4px 0 0 4px;
  color: #fff;
  background-color: #e3010c;
  position: relative;
  margin: 0;
  flex-grow: 0;
}

.headline h2::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: -10px;
  top: 0;
  bottom: 0;
  border-style: solid;
  border-color: transparent transparent transparent #e3010c;
  border-width: 50px 0 50px 10px;
  z-index: 1;
  margin: auto;
}

.headline h2 span {
  position: absolute;
  height: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  font-size: 1.6rem;
  line-height: 1;
  right: 0;
  display: inline-block;
  text-align: center;
}

.headline div {
  padding: 10px;
  margin-left: 1em;
  font-size: 1.4rem;
  flex-grow: 2;
}

.frame {
  position: absolute;
  margin: auto;
  overflow: hidden;
  height: calc((100vw / 96 * 35) );
  max-height: 700px;
  max-width: 1920px;
  width: 100%;
}

.stripe {
  background: #d5f3f5 url("/img/line.svg");
  background-size: 20px;
}

.news {
  max-width: calc(100% - 20px);
  margin: auto;
  padding: 0 0 40px;
  position: relative;
}
.news .inner {
  margin: auto;
  width: calc(100% - 20px);
  font-size: 1.6rem;
}
.news .inner .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  border-bottom: 1px solid #dddddd;
  padding-top: 20px;
}
.news .inner .title h2 {
  font-size: 4rem;
  position: relative;
}
.news .inner .title h2::after {
  content: "";
  background: url("/img/icon/info.svg");
  width: 3rem;
  height: 3rem;
  background-size: cover;
  display: inline-block;
  position: absolute;
  bottom: 3px;
  right: -3.5rem;
}
.news .inner .title a {
  font-size: 1.6rem;
  color: #646464;
}
.news .inner .title a i {
  color: #2fc5cf;
}
.news .inner dl {
  display: flex;
  flex-direction: column;
  line-height: 2;
  border-bottom: 1px solid #dddddd;
  padding: 5px 0;
}
.news .inner dl dt {
  padding: 0;
  margin-right: 10px;
}
.news .inner dl dd {
  padding: 0;
}

.introduction .inner {
  width: 1040px;
  max-width: calc(100% - 20px);
  padding: 3.4rem 0 30px;
  margin: auto;
  position: relative;
}
.introduction .inner h2 {
  color: #7a6a56;
  font-size: 2.4rem;
  position: absolute;
  margin: auto;
  top: -1.7rem;
  left: 0;
  right: 0;
  font-weight: bold;
  text-align: center;
}
.introduction .inner .flex {
  font-size: 1.4rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.introduction .inner .flex .box {
  display: flex;
  flex-direction: column;
  width: calc((100% - 10px) / 2);
  padding: 10px;
  margin: 0 auto 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5) inset;
}
.introduction .inner .flex .box a {
  color: #574d4f;
}
.introduction .inner .flex .box h3 {
  font-weight: 600;
  font-size: 1.6rem;
}
.introduction .inner .flex .box h3 span {
  display: inline-block;
}
.introduction .inner .flex .box h3 span.sub {
  margin-right: 5px;
  font-size: 1.2rem;
  line-height: 1.2;
}
.introduction .inner .flex .box img {
  width: 100%;
  display: block;
}
.introduction .inner .flex .box p {
  font-size: 1.2rem;
}
.introduction .inner .flex .box .bottom {
  margin-top: auto;
  border-top: 1px solid #dddddd;
  position: relative;
  display: block;
}
.introduction .inner .flex .box .bottom .tel, .introduction .inner .flex .box .bottom .map {
  position: relative;
  padding-left: 25px;
  margin-right: 10px;
}
.introduction .inner .flex .box .bottom .tel::before, .introduction .inner .flex .box .bottom .map::before {
  content: "";
  width: 20px;
  height: 20px;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.introduction .inner .flex .box .bottom .tel::before {
  background-image: url(/img/icon/tel.svg);
}
.introduction .inner .flex .box .bottom .map::before {
  background-image: url(/img/icon/access.svg);
}

.facility_info .inner {
  margin: auto;
  padding: 30px 0;
  width: calc(100% - 20px);
  font-size: 1.6rem;
  display: block;
}
.facility_info .inner .time_info .tab_title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  background: #2fc5cf;
  justify-content: space-around;
}
.facility_info .inner .time_info .tab_title dt {
  color: #fff;
  font-size: 2.2rem;
  flex-grow: 2;
  text-align: left;
  display: block;
  width: 95%;
  padding: 0 10px;
}
.facility_info .inner .time_info .tab_title dd {
  background: #fff;
  font-size: 1.2rem;
  margin: 5px 2px 0;
  padding: 3px 5px;
  border-radius: 2px 2px 0 0;
  border: 1px solid #fff;
  cursor: pointer;
  min-width: 33%;
}
.facility_info .inner .time_info .tab_title dd.slct {
  background: rgba(255, 255, 255, 0.9);
}
.facility_info .inner .time_info .tab_title dd p {
  line-height: 2;
  text-align: center;
}
.facility_info .inner .time_info .tab_title dd p.w {
  line-height: 1;
}
.facility_info .inner .time_info .tab_contents {
  padding: 15px;
}
.facility_info .inner .time_info .tab_contents h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  text-align: left;
}
.facility_info .inner .time_info .tab_contents h3 {
  font-size: 1.6rem;
  background: #2fc5cf;
  padding: 3px;
  border-radius: 4px;
  width: 8em;
  text-align: center;
  color: #fff;
}
.facility_info .inner .time_info .tab_contents .business_hours table {
  width: 100%;
  border: 1px solid #999;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 30px;
}
.facility_info .inner .time_info .tab_contents .business_hours table th, .facility_info .inner .time_info .tab_contents .business_hours table td {
  border: 1px solid #999;
}
.facility_info .inner .time_info .tab_contents .business_hours table thead th {
  padding: 5px;
  background: #b0e0e6;
  text-align: center;
  font-weight: normal;
}
.facility_info .inner .time_info .tab_contents .business_hours table thead th:first-child {
  width: 8em;
}
.facility_info .inner .time_info .tab_contents .business_hours table tbody th {
  background: #fff;
  text-align: center;
  padding: 5px;
  font-weight: normal;
  width: 8em;
}
.facility_info .inner .time_info .tab_contents .business_hours table tbody td {
  text-align: center;
  padding: 5px;
}
.facility_info .inner .time_info .tab_contents dl.time {
  display: flex;
  font-size: 1.4rem;
}
.facility_info .inner .time_info .tab_contents dl.time dt {
  color: #fff;
  background: #2fc5cf;
  border-radius: 4px;
  padding: 0 10px;
  margin-right: 10px;
}
.facility_info .inner .time_info .tab_contents dl.time dd {
  background: #fff;
  margin-right: 10px;
}
.facility_info .inner .time_info .tab_contents .link .btn {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.facility_info .inner .time_info .tab_contents .link .btn a {
  background-color: #d7e994;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 80%;
  padding: 0.8em 0em 0.8em 4em;
  margin: 0;
  display: inline-block;
  width: calc((100% - 10px) /2);
  border-radius: 4px;
  font-weight: bold;
}
.facility_info .inner .time_info .tab_contents .link .btn a.gairai {
  background-image: url("/img/icon/gairai.svg");
}
.facility_info .inner .time_info .tab_contents .link .btn a.close {
  background-image: url("/img/icon/close.svg");
}
.facility_info .inner .time_info .tab_contents .link a {
  display: inline-block;
}
.facility_info .inner .tel_info h2 {
  font-size: 2.2rem;
  background: #2fc5cf;
  color: #fff;
  text-align: left;
  padding: 5px;
}
.facility_info .inner .tel_info dl {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  border-bottom: 1px solid #9c9c9c;
  padding: 5px 0;
  align-items: center;
}
.facility_info .inner .tel_info dl dt {
  margin-left: 1em;
  width: calc(100% - 9em);
  line-height: 1.2;
}
.facility_info .inner .tel_info dl dt span {
  display: inline-block;
}
.facility_info .inner .tel_info dl dt span.sub {
  line-height: 1.2;
  margin-right: 5px;
  font-size: 1.2rem;
}
.facility_info .inner .tel_info dl dd {
  margin: 0 0 0 auto;
  padding: 0;
  width: 9em;
}
.facility_info .inner .tel_info dl dd i {
  color: #2fc5cf;
}

.department .inner {
  width: 100%;
  padding: 3.4rem 0 30px;
  margin: auto;
  position: relative;
  text-align: center;
}
.department .inner h2 {
  color: #7a6a56;
  font-size: 2rem;
  margin: auto;
  font-weight: bold;
  line-height: 1.4;
}
.department .inner h3 {
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  font-size: 2rem;
  margin: 40px auto;
  padding: 10px 2em;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
}
.department .inner .box {
  width: 300px !important;
}
.department .inner .box .flex {
  padding: 0;
  margin: 0 10px 20px;
  background-color: #2fc5cf;
  border-radius: 12px;
  display: flex;
}
.department .inner .box .flex h3 {
  font-weight: 600;
}
.department .inner .box .flex p.img {
  width: 45%;
  display: block;
}
.department .inner .box .flex p.img img {
  width: 100%;
  border-radius: 12px 0 0 12px;
}
.department .inner .box .flex .text {
  width: 55%;
  height: auto;
  font-size: 1.4rem;
  position: relative;
}
.department .inner .box .flex .text p.name {
  font-size: 1.6rem;
  padding-top: 60px;
  line-height: 1.2;
}
.department .inner .box .flex .text p.sub {
  font-size: 1.2rem;
  padding-top: 0;
}
.department .inner .box .flex .text p a {
  color: #fff;
}
.department .inner .box .flex .text::before {
  content: "";
  width: 50px;
  height: 50px;
  background: url(/img/scope.svg);
  background-size: cover;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 10px;
}

.bana .inner {
  width: 100%;
  max-width: 960px;
  padding: 3.4rem 0 30px;
  margin: auto;
  position: relative;
  text-align: center;
}
.bana .inner p {
  width: calc(100% - 20px);
  margin: 0 auto 20px;
}
.bana .inner p a, .bana .inner p img {
  display: block;
  width: 100%;
}
.bana .inner ul {
  width: 100%;
}
.bana .inner ul li {
  list-style-type: none;
  margin: 0;
  padding: 10px;
}
.bana .inner ul li a, .bana .inner ul li img {
  display: block;
  width: 100%;
}
.bana .inner ul li.bana3 {
  position: relative;
}
.bana .inner ul li.bana3 img {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: -1;
  width: calc(100% - 20px);
}
.bana .inner ul li.bana3 p {
  padding: 0;
  position: relative;
  text-align: left;
  padding-right: 50%;
  width: auto;
}
.bana .inner ul li.bana3 p a {
  padding-top: 68%;
  font-size: min(1.6rem, 2.5vw);
  color: #fff;
  padding-left: 1em;
  display: block;
  line-height: 1.4;
}
.bana .inner ul li.bana3 p a::before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-right: 5px;
}
.bana .inner ul li.bana3 p a span {
  display: block;
  font-size: 1rem;
  margin-left: 1em;
  text-shadow: #89c995 1px 1px 0, #89c995 -1px -1px 0, #89c995 -1px 1px 0, #89c995 1px -1px 0, #89c995 0px 1px 0, #89c995 -1px 0, #89c995 -1px 0 0, #89c995 1px 0 0;
  /*上、下*/
}
.bana .inner ul li.bana3 p a + a {
  padding-top: .5em;
}
.bana .inner ul li.bana4 {
  position: relative;
}
.bana .inner ul li.bana4 img {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: -1;
  width: calc(100% - 20px);
}
.bana .inner ul li.bana4 p {
  padding: 0;
  position: relative;
  text-align: left;
  padding-left: 50%;
  width: auto;
}
.bana .inner ul li.bana4 p a {
  padding-top: 60%;
  font-size: min(1.6rem, 2.5vw);
  color: #fff;
  padding-left: 1em;
}
.bana .inner ul li.bana4 p a::before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-right: 5px;
}
.bana .inner ul li.bana4 p a + a {
  padding-top: 0;
}

.category_icon {
  font-size: 1.2rem;
  padding: 3px 10px;
  margin-right: 1em;
  border-radius: 20px;
}
.category_icon i {
  font-style: normal;
}

#googlemap {
  width: 100%;
  height: 250px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  #bgFade .infotop_area {
    position: absolute;
    width: 100%;
    max-width: 935px;
    background: #fff;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 20px;
    z-index: 250;
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
    border-bottom: 0;
  }
  #bgFade .infotop_area .date {
    padding: 5px 0 5px 2em;
    color: #2fc5cf;
  }
  #bgFade .infotop_area .article {
    padding: 5px;
    flex-grow: 2;
  }
  #bgFade .infotop_area .check {
    background: #2fc5cf;
  }
  #bgFade .infotop_area .check a {
    padding: 5px;
    color: #fff;
    display: block;
    text-align: center;
  }

  #googlemap {
    width: 100%;
    height: 390px;
  }

  .shadow_border {
    width: 1100px;
    max-width: calc(100% - 40px);
    margin: auto;
    position: relative;
  }
  .shadow_border::before, .shadow_border::after {
    content: "";
    width: 20px;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
  }
  .shadow_border::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    left: -20px;
  }
  .shadow_border::after {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    right: -20px;
  }

  .news {
    width: 1100px;
    max-width: calc(100% - 40px);
    margin: auto;
    position: relative;
  }
  .news .inner {
    margin: auto;
    width: calc(100% - 300px);
    font-size: 1.6rem;
  }
  .news .inner .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    border-bottom: 1px solid #dddddd;
    padding-top: 20px;
  }
  .news .inner .title h2 {
    font-size: 4rem;
    position: relative;
  }
  .news .inner .title h2::after {
    content: "";
    background: url("/img/icon/info.svg");
    width: 3rem;
    height: 3rem;
    background-size: cover;
    display: inline-block;
    position: absolute;
    bottom: 0;
  }
  .news .inner .title a {
    font-size: 1.6rem;
    color: #646464;
  }
  .news .inner .title a i {
    color: #2fc5cf;
  }
  .news .inner dl {
    display: flex;
    flex-direction: row;
    line-height: 2;
    border-bottom: 1px solid #dddddd;
    padding: 5px 0;
  }
  .news .inner dl dt {
    padding: 0;
    margin-right: 10px;
  }
  .news .inner dl dd {
    padding: 0;
  }

  .introduction .inner {
    width: 1040px;
    max-width: calc(100% - 100px);
    padding: 3.4rem 0 30px;
    margin: auto;
    position: relative;
  }
  .introduction .inner h2 {
    color: #7a6a56;
    font-size: 3.4rem;
    position: absolute;
    margin: auto;
    top: -1.7rem;
    left: 0;
    right: 0;
    font-weight: bold;
  }
  .introduction .inner .flex {
    font-size: 1.6rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .introduction .inner .flex .box {
    width: calc((100% - 48px) / 3);
    padding: 10px;
    margin: 0 8px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5) inset;
  }
  .introduction .inner .flex .box h3 {
    font-weight: 600;
  }
  .introduction .inner .flex .box h3 span {
    font-size: 2rem;
  }
  .introduction .inner .flex .box h3 span.sub {
    font-size: 1.4rem;
  }
  .introduction .inner .flex .box img {
    width: 100%;
    display: block;
  }
  .introduction .inner .flex .box p {
    font-size: 1.4rem;
  }
  .introduction .inner .flex .box .bottom {
    border-top: 1px solid #dddddd;
    position: relative;
    display: flex;
  }
  .introduction .inner .flex .box .bottom .tel, .introduction .inner .flex .box .bottom .map {
    position: relative;
    padding-left: 25px;
    margin-right: 10px;
  }
  .introduction .inner .flex .box .bottom .tel::before, .introduction .inner .flex .box .bottom .map::before {
    content: "";
    width: 20px;
    height: 20px;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .introduction .inner .flex .box .bottom .tel::before {
    background-image: url(/img/icon/tel.svg);
  }
  .introduction .inner .flex .box .bottom .map::before {
    background-image: url(/img/icon/access.svg);
  }

  .facility_info .inner {
    margin: auto;
    padding: 30px 0;
    width: calc(100% - 100px);
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
  }
  .facility_info .inner .time_info {
    width: 60%;
  }
  .facility_info .inner .time_info .tab_title {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    background: #2fc5cf;
    padding: 0 10px;
  }
  .facility_info .inner .time_info .tab_title dt {
    color: #fff;
    font-size: 2.2rem;
    flex-grow: 2;
    text-align: left;
    width: 20%;
  }
  .facility_info .inner .time_info .tab_title dd {
    min-width: 18%;
    background: #fff;
    font-size: 1.4rem;
    margin: 5px 2px 0;
    padding: 3px  5px;
    border-radius: 2px 2px 0 0;
    border: 1px solid #fff;
    cursor: pointer;
  }
  .facility_info .inner .time_info .tab_title dd.slct {
    background: rgba(255, 255, 255, 0.9);
  }
  .facility_info .inner .time_info .tab_contents dl.time {
    display: flex;
  }
  .facility_info .inner .time_info .tab_contents .link .btn {
    display: flex;
    justify-content: flex-start;
  }
  .facility_info .inner .time_info .tab_contents .link .btn a {
    margin-right: 5px;
    max-width: 200px;
  }
  .facility_info .inner .time_info .tab_contents .link .external a {
    display: inline-block;
    margin-right: 1em;
  }
  .facility_info .inner .time_info .tab_contents .link .external a::after {
    font-family: "Font Awesome 5 Free";
    content: "";
    font-weight: 900;
    margin-left: 5px;
  }
  .facility_info .inner .tel_info {
    width: 39%;
  }
  .facility_info .inner .tel_info h2 {
    font-size: 2.2rem;
    background: #2fc5cf;
    color: #fff;
    text-align: left;
    padding: 5px;
  }
  .facility_info .inner .tel_info dl {
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
    border-bottom: 1px solid #9c9c9c;
  }
  .facility_info .inner .tel_info dl dt {
    margin-left: 1em;
  }
  .facility_info .inner .tel_info dl dd {
    margin: 0;
    padding: 0;
  }
  .facility_info .inner .tel_info dl dd i {
    color: #2fc5cf;
  }

  .department .inner {
    width: 100%;
    padding: 3.4rem 0 30px;
    margin: auto;
    position: relative;
    text-align: center;
  }
  .department .inner h2 {
    font-size: 3.4rem;
  }
  .department .inner h3 {
    font-size: 2.8rem;
  }
  .department .inner .box {
    width: 320px !important;
  }
  .department .inner .box .flex {
    padding: 0;
    margin: 0 10px 20px;
    background-color: #2fc5cf;
    border-radius: 12px;
    display: flex;
  }
  .department .inner .box .flex h3 {
    font-weight: 600;
  }
  .department .inner .box .flex p.img {
    display: block;
  }
  .department .inner .box .flex p.img img {
    width: 100%;
    border-radius: 12px 0 0 12px;
  }
  .department .inner .box .flex .text {
    height: auto;
    font-size: 1.4rem;
    position: relative;
  }
  .department .inner .box .flex .text p.name {
    font-size: 1.8rem;
    padding-top: 60px;
    line-height: 1.2;
  }
  .department .inner .box .flex .text p.sub {
    font-size: 1.4rem;
    padding-top: 0;
  }
  .department .inner .box .flex .text p a {
    color: #fff;
  }
  .department .inner .box .flex .text::before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(/img/scope.svg);
    background-size: cover;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 10px;
  }

  h2 {
    text-align: center;
    font-size: 5.6rem;
    font-weight: normal;
    line-height: 1;
  }

  h2 span {
    display: block;
    text-align: center;
    font-size: 1.7rem;
  }

  .tab-menu {
    font-size: 1.5rem;
  }

  .tab-contents h3 {
    font-size: 2rem;
  }

  .page_img {
    margin: auto;
    height: calc((100vw / 96 * 35) - 10px);
    max-height: 700px;
    max-width: 1920px;
    width: 100%;
    background-size: 100%;
    animation: zoomin 3s ease-out forwards;
    opacity: .5;
  }

  .headline {
    display: flex;
    border: 1px solid #222;
    border-radius: 4px;
    margin: 0px 20px 10px;
    overflow: hidden;
    font-size: 2rem;
  }

  .headline h2 {
    width: 20%;
    max-width: 10em;
    border-radius: 4px 0 0 4px;
    color: #fff;
    background-color: #e3010c;
    position: relative;
    margin: 0;
  }

  .headline h2::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: -10px;
    top: 0;
    bottom: 0;
    border-style: solid;
    border-color: transparent transparent transparent #e3010c;
    border-width: 7rem 0 7rem 10px;
    z-index: 1;
    margin: auto;
  }

  .headline h2 span {
    position: absolute;
    height: 1em;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    font-size: 2rem;
    line-height: 1;
    right: 0;
    display: inline-block;
    text-align: center;
  }

  .headline div {
    width: calc(100% - 10em);
    padding: 10px;
    margin-left: 1em;
    font-size: 2rem;
  }
}
@keyframes zoomin {
  100% {
    background-size: 115%;
    opacity: 1;
  }
}
@media (min-width: 850px) {
  #container #body {
    width: 540px;
    padding-top: 18px;
  }

  .slider {
    width: 850px;
    margin: auto;
  }

  #outer_links {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    width: 850px;
    margin: 25px auto;
    padding: 0;
  }

  #outer_links li {
    display: block;
    margin: 0 5px 10px;
  }
}
