@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #373737;
  font-size: 1.5rem;
  line-height: 32px;
  font-weight: 400;
  background-color: #fff;
}

a {
  display: inline-block;
  color: #373737;
}

img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
.l-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    padding: 0 24px;
  }
}

.l-pageInner {
  padding: 180px 0;
}
@media screen and (max-width: 767px) {
  .l-pageInner {
    padding: 80px 0;
  }
}

/* compornents */
.c-h2Ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #009A5B;
  font-size: 3.2rem;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .c-h2Ttl {
    font-size: 2.6rem;
    line-height: 42px;
  }
}
.c-h2Ttl__blue {
  color: #0075BE;
}

.c-h3Ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .c-h3Ttl {
    font-size: 1.9rem;
    line-height: 33px;
  }
}
.c-h3Ttl__b {
  background-color: #EEF4F0;
  padding: 8px 16px;
  border-radius: 8px;
}

.c-button {
  background-color: #373737;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  height: 56px;
  padding: 8px 24px;
  border: 1px solid #373737;
  border-radius: 999px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
.c-button:hover {
  color: #373737;
  background-color: #fff;
}
.c-button:hover p:after {
  filter: none;
}
.c-button p {
  padding-right: 20px;
  position: relative;
}
.c-button p:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-button p:after {
  filter: brightness(0) invert(1);
}
.c-button p.window:after {
  background: url("/assets/image/common/ic-window.svg") no-repeat;
  background-size: contain;
}
.c-button__large {
  height: 80px;
  padding: 8px 40px;
}
.c-button__outline {
  color: #373737;
  background-color: #fff;
}
.c-button__outline:hover {
  color: #fff;
  background-color: #373737;
}
.c-button__outline:hover p:after {
  filter: brightness(0) invert(1);
}
.c-button__outline p {
  position: relative;
}
.c-button__outline p:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-button__outline p:after {
  filter: none;
}

.c-outsideBtn {
  background-color: #F8F8F9;
  border: 1px dashed #D9D9D9;
  width: 100%;
  padding: 16px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s all;
}
.c-outsideBtn:hover {
  background-color: #EEF4F0;
}
.c-outsideBtn:hover p {
  color: #009A5B;
}
.c-outsideBtn p {
  font-size: 1.4rem;
  line-height: 140%;
  padding: 0 32px;
  position: relative;
  transition: 0.3s all;
}
.c-outsideBtn p:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-outsideBtn p:before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-window.svg") no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-outsideBtn p.modal:before {
  background: url("/assets/image/common/ic-modal.svg") no-repeat;
  background-size: contain;
}
.c-outsideBtn p.movie:before {
  background: url("/assets/image/common/ic-movie.svg") no-repeat;
  background-size: contain;
}

.c-textBtn {
  font-size: 1.6rem;
  line-height: 140%;
  text-decoration: underline;
  padding-right: 20px;
  position: relative;
  transition: 0.3s all;
}
.c-textBtn:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-textBtn:hover {
  color: #009A5B;
}

.c-pageMain {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pageMain {
    padding: 0 16px;
  }
}
.c-pageMain figure {
  display: flex;
}
.c-pageMain figure img {
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .c-pageMain figure img {
    height: 200px;
    border-radius: 8px;
  }
}
.c-pageMain h1 {
  position: absolute;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  line-height: 40px;
  letter-spacing: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-pageMain h1 {
    font-size: 2rem;
    line-height: 32px;
    letter-spacing: 2px;
    width: 280px;
  }
}

.c-breadcrumb {
  max-width: 1360px;
  margin: 0 auto;
  padding: 8px 40px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 8px 16px;
  }
}
.c-breadcrumb ul {
  display: flex;
  gap: 0 24px;
  align-items: center;
}
.c-breadcrumb ul li {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: -0.132px;
  white-space: nowrap;
}
.c-breadcrumb ul li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.c-breadcrumb ul li:not(:last-child) {
  position: relative;
}
.c-breadcrumb ul li:not(:last-child):after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-breadcrumb ul li:not(:last-child):after {
  right: -20px;
}
.c-breadcrumb ul li a {
  color: #009A5B;
  text-decoration: underline;
}

.c-lower ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-lower ul {
    flex-direction: column;
  }
}
.c-lower ul li {
  width: 33.3333333333%;
  background-color: #E9E9E9;
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-lower ul li {
    width: 100%;
  }
}
.c-lower ul li:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/image/common/texture.png");
  background-repeat: repeat;
  background-size: 100%;
  opacity: 0.5;
  z-index: 0;
}
.c-lower ul li:not(:last-child) {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .c-lower ul li:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}
.c-lower ul li a {
  padding: 40px 96px 40px 40px;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
  position: relative;
  transition: 0.3s all;
}
.c-lower ul li a:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-lower ul li a {
    padding: 24px 64px 24px 24px;
  }
}
.c-lower ul li a:after {
  width: 40px;
  height: 40px;
  right: 15px;
}
.c-lower ul li a:hover {
  background-color: #373737;
  color: #fff;
}
.c-lower ul li a:hover:after {
  filter: brightness(0) invert(1);
}
.c-lower ul li a .ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.6rem;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .c-lower ul li a .ttl {
    font-size: 2rem;
  }
}
.c-lower ul li a .txt {
  padding-top: 16px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .c-lower ul li a .txt {
    padding-top: 8px;
  }
}
.c-lower__two ul li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-lower__two ul li {
    width: 100%;
  }
}

.c-anchor {
  padding-left: 24px;
  border-left: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.c-anchor li {
  font-size: 1.4rem;
  line-height: 140%;
}
.c-anchor a {
  text-decoration: underline;
  padding-right: 20px;
  position: relative;
}
.c-anchor a:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-anchor a:after {
  transform: translateY(-50%) rotate(90deg);
}

.c-note {
  display: flex;
  gap: 0 4px;
  padding-top: 8px;
}
.c-note span {
  font-size: 1.2rem;
  line-height: 200%;
  padding-top: 0;
}

.c-hospitalList {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  padding: 48px 0;
}
@media screen and (max-width: 767px) {
  .c-hospitalList {
    padding: 40px 16px;
  }
}
.c-hospitalList:not(:first-child) {
  border-top: 1px dashed #D9D9D9;
}
.c-hospitalList__ttl {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-hospitalList__ttl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c-hospitalList__ttl .ttl {
  color: #009A5B;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 30px;
  padding-right: 24px;
  max-width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-hospitalList__ttl .ttl {
    padding-right: 0;
    padding-bottom: 16px;
    max-width: initial;
  }
}
.c-hospitalList__ttl .lead {
  font-size: 1.4rem;
  line-height: 30px;
  padding-left: 24px;
  border-left: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .c-hospitalList__ttl .lead {
    padding-left: 0;
    border-left: none;
    padding-top: 16px;
    border-top: 1px solid #D9D9D9;
  }
}
.c-hospitalList__info {
  display: flex;
  gap: 24px 40px;
}
@media screen and (max-width: 767px) {
  .c-hospitalList__info {
    flex-direction: column;
  }
}
.c-hospitalList__info .info {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.c-hospitalList__info .info figure {
  display: flex;
}
.c-hospitalList__info .info table tr {
  display: flex;
  gap: 0 16px;
  line-height: 30px;
  font-size: 1.4rem;
}
.c-hospitalList__info .info table tr:not(:first-child) {
  padding-top: 8px;
}
.c-hospitalList__info .info table tr th {
  width: 60px;
  text-align: left;
}
.c-hospitalList__info .detail .ttl {
  background-color: #EEF4F0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 200%;
  padding: 0 8px;
  border-radius: 4px;
}
.c-hospitalList__info .detail .ttl:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .c-hospitalList__info .detail .ttl:not(:first-child) {
    margin-top: 16px;
  }
}
.c-hospitalList__info .detail .txt {
  padding-top: 8px;
  font-size: 1.4rem;
  line-height: 30px;
}

/* layout */
.top .topTtl {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
@media screen and (max-width: 767px) {
  .top .topTtl {
    gap: 4px 0;
  }
}
.top .topTtl .en {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: 12px;
}
@media screen and (max-width: 767px) {
  .top .topTtl .en {
    font-size: 2rem;
    line-height: 120%;
    letter-spacing: 10px;
  }
}
.top .topTtl .en::first-letter {
  color: #0075BE;
}
.top .topTtl .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .top .topTtl .ja {
    font-size: 3rem;
    line-height: 40px;
  }
}
.top__main {
  position: relative;
}
.top__main .mainTtl {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(249, 249, 249, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 2;
  height: 100%;
  max-width: 560px;
  padding: 0 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__main .mainTtl {
    background: #fff;
    position: relative;
    padding: 40px 0;
    gap: 24px;
    margin: 0 auto;
  }
}
.top__main .mainTtl__logo {
  display: flex;
}
.top__main .mainTtl__logo img {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .top__main .mainTtl__logo img {
    width: 130px;
  }
}
.top__main .mainTtl__ttl {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__main .mainTtl__ttl {
    flex-direction: column-reverse;
    gap: 8px 0;
    padding-top: 16px;
  }
}
.top__main .mainTtl__ttl h1 {
  display: flex;
}
.top__main .mainTtl__ttl h1 img {
  width: 400px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .top__main .mainTtl__ttl h1 img {
    width: 240px;
  }
}
.top__main .mainTtl__ttl .en {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .top__main .mainTtl__ttl .en {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }
}
.top__main .topSwiper,
.top__main .topSwiper-top {
  overflow: hidden;
}
.top__main .swiper-wrapper {
  transition-timing-function: linear;
}
.top__main .swiper-slide {
  max-height: 700px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top__main .swiper-slide {
    height: 120px;
    width: auto !important; /* SwiperのJS上書きを防ぐ保険 */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.top__main .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top__main .swiper-slide img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
  }
}
.top__movie {
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__movie {
    padding: 95px 0 80px;
  }
}
.top__movie:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/top/bg_green.png") no-repeat;
  background-size: contain;
  bottom: -230px;
  left: 0;
  width: 441px;
  height: 558px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__movie:after {
    width: 180px;
    height: 288px;
    bottom: -120px;
  }
}
.top__movie--inner {
  position: relative;
}
.top__movie--inner iframe {
  width: 960px;
  height: 540px;
  aspect-ratio: 16/9;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .top__movie--inner iframe {
    width: 100%;
    height: 183px;
  }
}
.top__movie--inner .ttl {
  position: absolute;
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
  color: #787878;
  line-height: 140%;
  letter-spacing: 12px;
}
@media screen and (min-width: 768px) {
  .top__movie--inner .ttl {
    transform: rotate(90deg);
    top: 30%;
    right: -80px;
  }
}
@media screen and (max-width: 767px) {
  .top__movie--inner .ttl {
    font-size: 1.6rem;
    letter-spacing: 8px;
    transform: translateX(-50%);
    left: 50%;
    top: -40px;
    white-space: nowrap;
  }
}
.top__movie--inner .ttl::first-letter {
  color: #009A5B;
}
.top__archive {
  background-color: #EEF4F0;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .top__archive {
    padding: 80px 24px;
  }
}
.top__archive--inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px 0;
}
@media screen and (max-width: 767px) {
  .top__archive--inner {
    gap: 16px 0;
  }
}
.top__archive--inner .ttl {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
  color: #787878;
  line-height: 140%;
  letter-spacing: 12px;
}
@media screen and (max-width: 767px) {
  .top__archive--inner .ttl {
    font-size: 1.6rem;
    letter-spacing: 8px;
  }
}
.top__archive--inner .ttl::first-letter {
  color: #009A5B;
}
.top__archive--inner .image a {
  display: flex;
  opacity: 1;
  transition: 0.3s all;
}
.top__archive--inner .image a:hover {
  opacity: 0.5;
}
.top__news {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 80px 0;
}
@media screen and (max-width: 767px) {
  .top__news {
    padding: 80px 24px 0;
  }
}
.top__news--ttl {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .top__news--ttl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.top__news--ttl .topTtl .en::first-letter {
  color: #009A5B;
}
.top__news--ttl .catList {
  display: flex;
  gap: 0 24px;
}
@media screen and (max-width: 767px) {
  .top__news--ttl .catList {
    gap: 0 8px;
  }
}
.top__news--news {
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  .top__news--news {
    padding-top: 56px;
  }
}
.top__news--list {
  display: none;
}
.top__news--list.active {
  display: block;
}
.top__news--btn {
  padding-top: 40px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .top__news--btn {
    padding-top: 32px;
  }
}
.top__news--btn .button {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .top__news--btn .button {
    display: block;
  }
}
.top__program {
  position: relative;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .top__program {
    margin-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
  }
}
.top__program:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/top/bg_yellow.png") no-repeat;
  background-size: contain;
  bottom: 0;
  right: 0;
  width: 467px;
  height: 470px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__program:after {
    width: 233px;
    height: 235px;
    right: -60px;
  }
}
.top__program--lead {
  position: absolute;
  top: 95px;
  left: 50%;
}
@media screen and (max-width: 880px) {
  .top__program--lead {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__program--lead {
    position: relative;
    left: initial;
    top: initial;
    padding: 0 24px;
  }
}
.top__program--lead img.sp {
  display: none;
}
@media screen and (max-width: 1280px) {
  .top__program--lead img {
    width: 80%;
  }
}
@media screen and (max-width: 880px) {
  .top__program--lead img.pc {
    display: none;
  }
  .top__program--lead img.sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .top__program--lead img {
    width: 100%;
  }
}
.top__program .image {
  width: 456px;
}
@media screen and (max-width: 1280px) {
  .top__program .image {
    width: 335px;
  }
}
@media screen and (max-width: 767px) {
  .top__program .image--1 {
    margin: 80px 0 0 auto;
  }
}
.top__program .image--1 img {
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 767px) {
  .top__program .image--1 img {
    border-radius: 8px 0 0 8px;
  }
}
.top__program .image--1 p {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .top__program .image--1 p {
    padding-right: 16px;
  }
}
.top__program .image--2 {
  margin: -180px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .top__program .image--2 {
    margin: 24px -40px 0 auto;
  }
  .top__program .image--2 p {
    font-size: 1.4rem !important;
    letter-spacing: 7px !important;
    white-space: nowrap;
    margin-left: -60px;
  }
}
.top__program .image--2 img {
  border-radius: 12px 0 0 12px;
}
.top__program .image--3 {
  margin: -80px 0 0 50%;
}
@media screen and (max-width: 767px) {
  .top__program .image--3 {
    margin: 80px auto 0 0;
  }
}
.top__program .image--3 img {
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .top__program .image--3 img {
    border-radius: 0 8px 8px 0;
  }
}
.top__program .image--3 p {
  text-align: right;
}
.top__program .image figure {
  display: flex;
}
.top__program .image p {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #787878;
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: 8px;
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .top__program .image p {
    font-size: 1.6rem;
  }
}
.top__program .image p::first-letter {
  color: #F8B62D;
}
.top__program--info {
  max-width: 560px;
  padding-left: 80px;
  margin-top: -100px;
}
@media screen and (max-width: 1280px) {
  .top__program--info {
    max-width: 400px;
  }
}
@media screen and (max-width: 999px) {
  .top__program--info {
    max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .top__program--info {
    padding: 56px 24px 0;
    margin-top: 0;
  }
}
.top__program--info .txt {
  font-size: 1.4rem;
  line-height: 300%;
}
@media screen and (max-width: 767px) {
  .top__program--info .txt {
    line-height: 220%;
  }
}
.top__program--info .button {
  padding-top: 40px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .top__program--info .button {
    display: block;
  }
}
.top__message {
  padding: 120px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__message {
    padding: 80px 24px;
  }
}
.top__message:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/top/bg_blue.png") no-repeat;
  background-size: contain;
  bottom: 75px;
  left: 0;
  width: 360px;
  height: 671px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__message:after {
    width: 179px;
    height: 335px;
    bottom: 0;
  }
}
.top__message .topTtl {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .top__message .topTtl {
    padding: 0;
  }
}
.top__message--slider {
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  .top__message--slider {
    padding-top: 40px;
  }
}
.top__message--btn {
  padding-top: 64px;
  text-align: center;
}
.top__message--btn .button {
  display: inline-block;
}

.error__inner {
  text-align: center;
}
.error__inner .text {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .error__inner .text {
    padding-top: 32px;
    text-align: left;
  }
}
.error__inner .button {
  padding-top: 64px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .error__inner .button {
    padding-top: 56px;
  }
}

/* template-parts */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header {
    background: rgba(255, 255, 255, 0.95);
  }
}
.header.hidden {
  transform: translateY(-100%);
}
.header__inner {
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 24px;
  }
}
.header__logo .logo svg {
  width: 140px;
  height: 25px;
}
.header__button {
  display: flex;
  align-items: center;
  gap: 0 24px;
}
.header__navBtn {
  position: relative;
  cursor: pointer;
  width: 44px;
  height: 44px;
  z-index: 9999;
}
.header__navBtn span {
  display: inline-block;
  position: absolute;
  left: 4px;
  height: 2px;
  width: 34px;
  border-radius: 4px;
  background-color: #333;
  transition: all 0.3s;
}
.header__navBtn span:nth-of-type(1) {
  top: 8px;
}
.header__navBtn span:nth-of-type(2) {
  top: 18px;
}
.header__navBtn span:nth-of-type(2):after {
  content: "メニュー";
  position: absolute;
  top: 10px;
  left: 0;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 100%;
  white-space: nowrap;
}
.header__navBtn.active span:nth-of-type(1) {
  top: 13px;
  left: 6px;
  transform: translateY(6px) rotate(-45deg);
}
.header__navBtn.active span:nth-of-type(2) {
  top: 25px;
  left: 6px;
  transform: translateY(-6px) rotate(45deg);
}
.header__navBtn.active span:nth-of-type(2):after {
  content: "閉じる";
  transform: translateY(0) rotate(-45deg);
  top: 11px;
  left: 18px;
}
.header__navInner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
.header__navInner.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.header__navInner .navInner {
  padding: 104px 80px 0;
  box-sizing: border-box;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner {
    padding: 92px 24px 40px;
    height: 100vh;
  }
}
.header__navInner .navInner__inner {
  overflow: scroll;
}
.header__navInner .navInner__head {
  display: flex;
  gap: 40px 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E9E9E9;
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__head {
    flex-direction: column;
  }
}
.header__navInner .navInner__head .pageList {
  width: calc(33.3333333333% - 40px);
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__head .pageList {
    width: 100%;
  }
}
.header__navInner .navInner__head .pageList__main {
  position: relative;
  transition: 0.3s all;
  cursor: pointer;
}
.header__navInner .navInner__head .pageList__main:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header__navInner .navInner__head .pageList__main:before {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #009A5B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header__navInner .navInner__head .pageList__main:after {
  right: 10px;
  filter: brightness(0) invert(1);
}
.header__navInner .navInner__head .pageList__main:hover:before {
  background-color: #C0DECC;
}
.header__navInner .navInner__head .pageList__main:hover:after {
  filter: brightness(0) saturate(100%) invert(30%) sepia(96%) saturate(1369%) hue-rotate(135deg) brightness(97%) contrast(104%);
}
.header__navInner .navInner__head .pageList__main a {
  width: 100%;
}
.header__navInner .navInner__head .pageList__main .en {
  font-size: 1.2rem;
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #787878;
  letter-spacing: 6px;
  line-height: normal;
}
.header__navInner .navInner__head .pageList__main .ja {
  font-size: 2rem;
  font-weight: 600;
  padding-top: 8px;
  padding-right: 56px;
  line-height: 130%;
}
.header__navInner .navInner__head .pageList__main .ja::first-letter {
  color: #009A5B;
}
.header__navInner .navInner__head .pageList__lower {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px 40px;
}
.header__navInner .navInner__head .pageList__lower li {
  line-height: 140%;
}
.header__navInner .navInner__head .pageList__lower.column {
  flex-wrap: wrap;
  flex-direction: row;
}
.header__navInner .navInner__head .pageList__lower.column li {
  width: calc(50% - 20px);
}
@media screen and (max-width: 375px) {
  .header__navInner .navInner__head .pageList__lower.column li {
    width: 100%;
  }
}
.header__navInner .navInner__recruit {
  padding-top: 40px;
  display: flex;
  gap: 24px 40px;
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__recruit {
    flex-direction: column;
  }
}
.header__navInner .navInner__recruit .navBtn {
  width: calc(33.3333333333% - 20px);
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__recruit .navBtn {
    width: 100%;
  }
}
.header__navInner .navInner__recruit .navBtn__link {
  width: 100%;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  height: 200px;
  opacity: 1;
  transition: 0.3s all;
}
.header__navInner .navInner__recruit .navBtn__link:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/image/common/texture.png");
  background-repeat: repeat;
  background-size: 100%;
  z-index: 0;
}
.header__navInner .navInner__recruit .navBtn__link p {
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__recruit .navBtn__link {
    height: 130px;
  }
}
.header__navInner .navInner__recruit .navBtn__link:not(.disabled):hover {
  opacity: 0.5;
}
.header__navInner .navInner__recruit .navBtn__link.green {
  background-color: #47B379;
}
.header__navInner .navInner__recruit .navBtn__link.green p:after {
  filter: brightness(0) saturate(100%) invert(40%) sepia(59%) saturate(7246%) hue-rotate(146deg) brightness(100%) contrast(101%);
}
.header__navInner .navInner__recruit .navBtn__link.disabled {
  background-color: #D8D8D8;
  cursor: no-drop;
}
.header__navInner .navInner__recruit .navBtn__link.disabled p:after {
  filter: brightness(0) saturate(100%) invert(91%) sepia(0%) saturate(0%) hue-rotate(156deg) brightness(86%) contrast(91%);
}
.header__navInner .navInner__recruit .navBtn__link:after {
  opacity: 0.5;
}
.header__navInner .navInner__recruit .navBtn__link p {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.6px;
  padding-bottom: 48px;
  position: relative;
}
.header__navInner .navInner__recruit .navBtn__link p:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__recruit .navBtn__link p {
    font-size: 2.4rem;
  }
}
.header__navInner .navInner__recruit .navBtn__link p:before {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__recruit .navBtn__link p:before {
    width: 24px;
    height: 24px;
  }
}
.header__navInner .navInner__recruit .navBtn__link p:after {
  top: initial;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__recruit .navBtn__link p:after {
    width: 24px;
    height: 24px;
  }
}
.header__navInner .navInner__btn {
  padding-top: 40px;
  display: flex;
  gap: 24px 40px;
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__btn {
    flex-direction: column;
  }
}
.header__navInner .navInner__btn .button {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .header__navInner .navInner__btn .button {
    width: 100%;
  }
  .header__navInner .navInner__btn .button .c-button {
    height: 56px;
  }
}

.footer {
  background-color: #F8F8F9;
}
.footer__inner {
  padding: 64px 120px 24px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 40px 24px 24px;
  }
}
.footer__inner .footerMain {
  display: flex;
  gap: 40px 80px;
}
@media screen and (max-width: 767px) {
  .footer__inner .footerMain {
    flex-direction: column;
  }
}
.footer__inner .footerMain__info {
  flex: 0 0 17%;
}
.footer__inner .footerMain__info .logo {
  display: flex;
  justify-content: center;
  transition: 0.3s all;
}
.footer__inner .footerMain__info .logo:hover {
  opacity: 0.7;
}
.footer__inner .footerMain__info .logo img {
  width: 120px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .footer__inner .footerMain__info .logo img {
    width: 94px;
  }
}
.footer__inner .footerMain__info .buttonArea {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media screen and (max-width: 767px) {
  .footer__inner .footerMain__info .buttonArea {
    padding-top: 24px;
    gap: 16px 0;
  }
}
.footer__inner .footerMain__link {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 64px;
}
@media screen and (max-width: 767px) {
  .footer__inner .footerMain__link {
    flex-direction: column;
  }
}
.footer__inner .footerMain__link .linkList {
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  width: calc(25% - 48px);
}
@media screen and (max-width: 767px) {
  .footer__inner .footerMain__link .linkList {
    width: 100%;
  }
}
.footer__inner .footerMain__link .linkList--one a {
  font-weight: 700;
}
.footer__inner .footerMain__link .linkList li {
  line-height: 140%;
}
.footer__inner .footerMain__link .linkList li:first-child a {
  font-weight: 700;
}
.footer__inner .footerMain__link .linkList li p {
  display: inline-block;
  color: #9C9C9C;
  cursor: no-drop;
}
.footer__inner .footerMain__link .linkList li p:after {
  filter: brightness(0) saturate(100%) invert(73%) sepia(2%) saturate(18%) hue-rotate(315deg) brightness(84%) contrast(94%);
}
.footer__inner .footerMain__link .linkList li p:hover {
  color: #9C9C9C;
}
.footer__inner .logoArea {
  display: flex;
  justify-content: flex-end;
  gap: 0 24px;
  padding: 64px 0 40px;
}
@media screen and (max-width: 767px) {
  .footer__inner .logoArea {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.footer__inner .logoArea a {
  width: 212px;
  opacity: 1;
  transition: 0.3s all;
}
.footer__inner .logoArea a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .footer__inner .logoArea a {
    width: calc(50% - 8px);
  }
}
.footer__inner .logoArea .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
}
.footer__inner .logoArea .icon svg {
  width: 180px;
  height: 32px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .footer__inner .logoArea .icon svg {
    width: 135px;
    height: 24px;
  }
}
.footer__inner .otherLink {
  padding-top: 24px;
  border-top: 1px solid #D9D9D9;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner .otherLink {
    flex-direction: column;
  }
}
.footer__inner .otherLink a {
  font-size: 1.4rem;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .footer__inner .otherLink .pagetop {
    text-align: right;
    padding-top: 24px;
  }
}
.footer__inner .otherLink .pagetop a {
  text-decoration: none;
  letter-spacing: 1.4px;
  padding-right: 32px;
  position: relative;
}
.footer__inner .otherLink .pagetop a:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.footer__inner .otherLink .pagetop a:before {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #009A5B;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer__inner .otherLink .pagetop a:before {
    width: 24px;
    height: 24px;
  }
}
.footer__inner .otherLink .pagetop a:after {
  right: 4px;
  transform: translateY(-50%) rotate(-90deg);
  filter: brightness(0) invert(1);
}
.footer__copy {
  padding-bottom: 40px;
  text-align: center;
  font-size: 1.2rem;
  line-height: normal;
  letter-spacing: 1.2px;
}

.bnrArea {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .bnrArea {
    padding: 64px 0;
  }
}
.bnrArea__inner a {
  opacity: 1;
  transition: 0.3s all;
}
.bnrArea__inner a:hover {
  opacity: 0.7;
}
.bnrArea__inner .mainBnr {
  padding-bottom: 40px;
}
.bnrArea__inner .mainBnr a {
  display: flex;
}
.bnrArea__inner .btnArea {
  display: flex;
  gap: 24px 40px;
}
@media screen and (max-width: 767px) {
  .bnrArea__inner .btnArea {
    flex-direction: column;
  }
}
.bnrArea__inner .btnArea .button {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .bnrArea__inner .btnArea .button {
    width: 100%;
  }
}
.bnrArea__inner .btnArea .button a {
  width: 100%;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  height: 120px;
  background-color: #373737;
}
.bnrArea__inner .btnArea .button a:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/image/common/texture.png");
  background-repeat: repeat;
  background-size: 100%;
  z-index: 0;
}
.bnrArea__inner .btnArea .button a p {
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .bnrArea__inner .btnArea .button a {
    height: 89px;
    padding: 24px;
    justify-content: flex-start;
  }
}
.bnrArea__inner .btnArea .button a:after {
  opacity: 0.5;
}
.bnrArea__inner .btnArea .button a p {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 5.6px;
  padding-right: 64px;
  position: relative;
}
.bnrArea__inner .btnArea .button a p:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .bnrArea__inner .btnArea .button a p {
    font-size: 1.8rem;
    letter-spacing: 1.8px;
    width: 100%;
  }
}
.bnrArea__inner .btnArea .button a p:before {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .bnrArea__inner .btnArea .button a p:before {
    width: 24px;
    height: 24px;
  }
}
.bnrArea__inner .btnArea .button a p:after {
  width: 40px;
  height: 40px;
  right: -3px;
}
@media screen and (max-width: 767px) {
  .bnrArea__inner .btnArea .button a p:after {
    width: 24px;
    height: 24px;
    right: -1px;
  }
}

.voiceSlider {
  position: relative;
}
.voiceSlider a:hover img {
  opacity: 0.5;
}
.voiceSlider a:hover .c-textBtn {
  color: #009A5B;
}
.voiceSlider__img {
  display: flex;
}
.voiceSlider__img img {
  transition: 0.3s all;
}
.voiceSlider__lead {
  font-size: 2rem;
  padding-top: 16px;
  line-height: 170%;
  font-weight: 500;
}
.voiceSlider__name {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.voiceSlider__name .tag {
  color: #0075BE;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 100%;
}
.voiceSlider__name .name {
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
}
.voiceSlider__name .group {
  font-size: 1.2rem;
  line-height: 200%;
}
.voiceSlider__btn {
  padding-top: 24px;
}
.voiceSlider__btn p {
  display: inline-block;
}

/* pages */
.about__inner:not(:first-child) {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .about__inner:not(:first-child) {
    padding-top: 80px;
  }
}
.about__inner .inner {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .about__inner .inner {
    padding-top: 32px;
  }
}
.about__inner .inner .c-h3Ttl {
  padding-bottom: 8px;
}
.about__inner .inner > p:not(:first-child) {
  padding-top: 16px;
}
.about__inner .inner .image {
  padding-top: 64px;
  max-width: 800px;
  margin: 0 auto;
}
.about__inner .inner .green {
  color: #009A5B;
  font-weight: 700;
}
.about__inner .inner .button {
  max-width: 316px;
  padding-top: 40px;
}

.message__main {
  display: flex;
  gap: 32px 80px;
}
@media screen and (max-width: 767px) {
  .message__main {
    flex-direction: column;
  }
}
.message__main .pic {
  flex: 0 0 32%;
}
.message__main .pic figure {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .message__main .pic figure img {
    width: 240px;
    object-fit: contain;
  }
}
.message__main .pic .name {
  padding-top: 16px;
  font-size: 1.4rem;
  line-height: 200%;
  text-align: center;
}
.message__main .lead .c-h3Ttl {
  padding-bottom: 8px;
}
.message__main .lead p {
  padding-top: 16px;
}
.message__book {
  display: flex;
  gap: 16px 32px;
  max-width: 682px;
  margin: 80px auto 0;
  background-color: #FFF9F2;
  padding: 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .message__book {
    flex-direction: column;
    margin: 32px auto 0;
    padding: 24px;
  }
}
.message__book figure {
  flex: 0 0 28%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .message__book figure img {
    width: 168px;
    object-fit: contain;
  }
}
.message__book .bookInfo .ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .message__book .bookInfo .ttl {
    font-size: 1.9rem;
  }
}
.message__book .bookInfo .txt {
  padding-top: 24px;
}
.message__book .bookInfo .button {
  padding-top: 16px;
  display: inline-block;
}

.policy__anchor {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .policy__anchor {
    padding-top: 80px;
  }
}
.policy__inner {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .policy__inner {
    padding-top: 80px;
  }
}
.policy__inner .txt {
  padding-top: 24px;
}
.policy__inner .img {
  padding-top: 40px;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .policy__inner .img {
    padding-top: 32px;
  }
}
.policy__inner .button {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .policy__inner .button {
    padding-top: 32px;
  }
}
.policy__inner .button:not(:first-child) {
  padding-top: 16px;
}

.js-modalInner {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}
.js-modalInner.is-visible {
  display: flex;
  justify-content: center;
  align-items: center;
}
.js-modalInner__inner {
  position: relative;
}
.js-modalInner__contents {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow-y: hidden;
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .js-modalInner__contents {
    width: calc(100vw - 20px);
  }
}
.js-modalInner__image {
  width: 4793px;
  height: 488px;
  aspect-ratio: 4793/488;
}
.js-modalInner__front {
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.js-modalInner__hand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.js-modalInner__hand.scrolled {
  display: none;
}
.js-modalInner__hand p {
  font-weight: 700;
  color: #fff;
}
.js-modalInner__hand figure {
  text-align: center;
}
.js-modalInner__hand figure img {
  width: 86px;
}

.js-modalClose__btn {
  position: absolute;
  top: -44px;
  right: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background-color: #fff;
  z-index: 9;
}
.js-modalClose__btn span {
  display: inline-block;
  position: absolute;
  left: 4px;
  height: 2px;
  width: 34px;
  border-radius: 4px;
  background-color: #333;
  transition: all 0.3s;
}
.js-modalClose__btn span:nth-of-type(1) {
  top: 11px;
  left: 5px;
  transform: translateY(6px) rotate(-45deg);
}
.js-modalClose__btn span:nth-of-type(2) {
  top: 23px;
  left: 5px;
  transform: translateY(-6px) rotate(45deg);
}
.js-modalClose__btn span:nth-of-type(2):after {
  content: "閉じる";
  position: absolute;
  transform: translateY(0) rotate(-45deg);
  top: 10px;
  left: 17px;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 100%;
  white-space: nowrap;
}
.js-modalClose__back {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.business .c-h2Ttl {
  text-align: center;
}
.business__map {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .business__map {
    padding-top: 80px;
  }
}
.business__map iframe {
  padding-top: 48px;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .business__map iframe {
    padding-top: 24px;
    height: 500px;
  }
}
.business__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 767px) {
  .business__wrapper {
    padding: 0 24px;
  }
}
.business__inner {
  padding-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 64px;
}
@media screen and (max-width: 767px) {
  .business__inner {
    padding-top: 56px;
    gap: 56px 0;
  }
}
.business__inner .businessList {
  width: calc(33.3333333333% - 43px);
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
@media screen and (max-width: 767px) {
  .business__inner .businessList {
    width: 100%;
  }
}
.business__inner .businessList__ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .business__inner .businessList__ttl {
    font-size: 1.9rem;
  }
}
.business__inner .businessList figure {
  display: flex;
}
.business__inner .businessList figure img {
  border-radius: 4px;
}
.business__inner .businessList__txt {
  font-size: 1.4rem;
  line-height: 30px;
}
.business__inner .businessList__button {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.business__department {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .business__department {
    padding-top: 80px;
  }
}
.business__department .lead {
  padding-top: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .business__department .lead {
    padding-top: 32px;
  }
}
.business__department--inner {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .business__department--inner {
    padding-top: 80px;
  }
}
.business__department--inner .c-h3Ttl__b:not(:first-child) {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .business__department--inner .c-h3Ttl__b:not(:first-child) {
    margin-top: 56px;
  }
}
.business__department--inner .departmentList {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .business__department--inner .departmentList {
    flex-direction: column;
    gap: 24px 0;
  }
}
.business__department--inner .departmentList__inner {
  width: calc(25% - 30px);
  display: flex;
  flex-direction: column;
  gap: 18px 0;
}
@media screen and (max-width: 767px) {
  .business__department--inner .departmentList__inner {
    width: 100%;
  }
}
.business__department--inner .departmentList figure {
  display: flex;
}
.business__department--inner .departmentList figure img {
  border-radius: 4px;
}
.business__department--inner .departmentList__ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .business__department--inner .departmentList__ttl {
    font-size: 1.9rem;
  }
}
.business__department--inner .departmentList__txt {
  font-size: 1.4rem;
  line-height: 30px;
}

.program__lead p:not(:first-child) {
  padding-top: 16px;
}
.program__point {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .program__point {
    padding-top: 80px;
  }
}
.program__point--inner {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .program__point--inner {
    padding-top: 32px;
  }
}
.program__point--inner ul {
  display: flex;
  flex-wrap: wrap;
}
.program__point--inner ul:not(:first-child) {
  padding-top: 40px;
}
.program__point--inner ul:not(:last-child) {
  padding-bottom: 40px;
  border-bottom: 1px dashed #D9D9D9;
}
.program__point--inner ul li {
  width: calc(50% - 25px);
  display: flex;
  align-items: center;
  gap: 16px 24px;
}
@media screen and (max-width: 767px) {
  .program__point--inner ul li {
    width: 100%;
    gap: 0 16px;
  }
}
@media screen and (min-width: 768px) {
  .program__point--inner ul li:not(:first-child) {
    padding-left: 24px;
  }
  .program__point--inner ul li:not(:last-child) {
    padding-right: 24px;
    border-right: 1px dashed #D9D9D9;
  }
}
@media screen and (max-width: 767px) {
  .program__point--inner ul li:not(:first-child) {
    padding-top: 24px;
  }
  .program__point--inner ul li:not(:last-child) {
    padding-bottom: 24px;
    border-bottom: 1px dashed #D9D9D9;
  }
}
.program__point--inner ul li .point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px 0;
}
.program__point--inner ul li .point__txt {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  line-height: 100%;
}
.program__point--inner ul li .point__num {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  color: #F8B62D;
  line-height: 100%;
}
.program__point--inner ul li .pointInner__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 30px;
}
.program__point--inner ul li .pointInner__txt {
  padding-top: 16px;
  font-size: 1.4rem;
  line-height: 30px;
}
.program__hospital {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .program__hospital {
    padding-top: 80px;
  }
}
.program__hospital .hospitalArea {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .program__hospital .hospitalArea {
    padding-top: 32px;
  }
}
.program__hospital .hospitalArea__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .program__hospital .hospitalArea__inner {
    padding: 0;
  }
}
.program__model {
  padding-top: 96px;
}
@media screen and (max-width: 767px) {
  .program__model {
    padding-top: 56px;
  }
}
.program__model .c-h3Ttl {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .program__model .c-h3Ttl {
    margin-top: 32px;
  }
}
.program__model .lead {
  padding-top: 24px;
}
.program__model .image {
  padding-top: 24px;
  overflow-x: scroll;
}
.program__model .image img {
  width: 1000px;
}

.programInner__contents {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .programInner__contents {
    padding-top: 80px;
  }
}
.programInner__contents .tab {
  display: flex;
}
.programInner__contents .tab li {
  width: 50%;
}
.programInner__contents .tab li a {
  transition: 0.3s all;
}
.programInner__contents .tab li a:hover {
  background-color: #C0DECC;
}
.programInner__contents .tab li a:hover:before {
  border-top: 15px solid #C0DECC;
}
.programInner__contents .tab .tabTxt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  padding: 24px;
  background-color: #F8F8F9;
  position: relative;
}
.programInner__contents .tab .tabTxt:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 15px solid transparent;
  border-top: 15px solid #F8F8F9;
  transform: translate(-50%);
  transition: 0.3s all;
}
.programInner__contents .tab .tabTxt.current {
  background-color: #009A5B;
  color: #fff;
}
.programInner__contents .tab .tabTxt.current:before {
  border-top: 15px solid #009A5B;
}

.voice .c-h2Ttl {
  text-align: center;
}
.voice__message {
  background-color: #F8F8F9;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .voice__message {
    padding: 64px 0;
  }
}
.voice__interview {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .voice__interview {
    padding: 40px 0;
  }
}
.voice__interview .interviewInner {
  padding-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .voice__interview .interviewInner {
    padding-top: 32px;
    gap: 80px;
  }
}
.voice__interview .interviewInner li {
  width: calc(50% - 60px);
}
@media screen and (max-width: 767px) {
  .voice__interview .interviewInner li {
    width: 100%;
  }
}
.voice__interview .interviewInner li figure {
  display: flex;
}
.voice__interview .interviewInner__comment {
  padding-top: 16px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .voice__interview .interviewInner__comment {
    font-size: 1.8rem;
  }
}
.voice__interview .interviewInner__profile {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.voice__interview .interviewInner__profile .tag {
  color: #0075BE;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 100%;
}
.voice__interview .interviewInner__profile .name {
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
}
.voice__interview .interviewInner__profile .group {
  font-size: 1.2rem;
  line-height: 200%;
}
.voice__interview .interviewInner__button {
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .voice__interview .interviewInner__button {
    padding-top: 16px;
  }
}

.voiceInner__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 767px) {
  .voiceInner__main {
    padding: 0 24px;
  }
}
.voiceInner__main .profile {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .voiceInner__main .profile {
    flex-direction: column;
  }
}
.voiceInner__main .profile__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.2rem;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .voiceInner__main .profile__lead {
    font-size: 2.6rem;
    line-height: 42px;
  }
}
.voiceInner__main .profile__name {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
@media screen and (max-width: 767px) {
  .voiceInner__main .profile__name {
    padding-top: 16px;
  }
}
.voiceInner__main .profile__name .tag {
  color: #0075BE;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 200%;
}
.voiceInner__main .profile__name .name {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .voiceInner__main .profile__name .name {
    font-size: 2rem;
    line-height: 140%;
  }
}
.voiceInner__main figure {
  display: flex;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .voiceInner__main figure {
    padding-top: 32px;
  }
}
.voiceInner__contents {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 80px 0;
}
@media screen and (max-width: 767px) {
  .voiceInner__contents {
    padding: 80px 24px 0;
  }
}
.voiceInner__contents section:not(:first-child) {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .voiceInner__contents section:not(:first-child) {
    padding-top: 80px;
  }
}
.voiceInner__contents section .ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 180%;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voiceInner__contents section .ttl {
    font-size: 1.9rem;
    line-height: 33px;
  }
}
.voiceInner__contents section .ttl:before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #373737;
  width: 32px;
  height: 1px;
  left: 0;
  top: 18px;
}
@media screen and (max-width: 767px) {
  .voiceInner__contents section .ttl:before {
    top: 16.5px;
  }
}
.voiceInner__contents section .txt {
  padding-top: 32px;
  font-size: 1.4rem;
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .voiceInner__contents section .txt {
    padding-top: 24px;
  }
}
.voiceInner__contents section .txt br {
  display: block;
  content: "";
  margin: 16px 0;
}
.voiceInner__contents section .image {
  padding-top: 40px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .voiceInner__contents section .image {
    padding-top: 32px;
  }
}
.voiceInner__contents section .image figure {
  display: flex;
}
.voiceInner__contents section .image .caption {
  font-size: 1.2rem;
  line-height: 200%;
  padding-top: 8px;
}
.voiceInner__slider {
  background-color: #F8F8F9;
  padding: 180px 24px;
}
@media screen and (max-width: 767px) {
  .voiceInner__slider {
    padding: 80px 24px;
  }
}
.voiceInner__slider .c-h2Ttl {
  text-align: center;
}
.voiceInner__slider .voiceSlider {
  padding-top: 48px;
}

.recruit__inner:not(:first-child) {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .recruit__inner:not(:first-child) {
    padding-top: 80px;
  }
}
.recruit__inner .inner {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .recruit__inner .inner {
    padding-top: 32px;
  }
}
.recruit__inner .inner .c-h3Ttl {
  margin: 64px 0 24px;
}
@media screen and (max-width: 767px) {
  .recruit__inner .inner .c-h3Ttl {
    margin: 56px 0 24px;
  }
}
.recruit__inner .inner > p:not(:first-child) {
  padding-top: 16px;
}
.recruit__list {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.recruit__list li {
  text-indent: -1em;
  padding-left: 1em;
}
.recruit__button {
  max-width: 360px;
  margin: 64px auto 0;
}
@media screen and (max-width: 767px) {
  .recruit__button {
    margin: 56px auto 0;
  }
}
.recruit__flow {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
  padding-bottom: 12px;
}
.recruit__flow li {
  display: flex;
  align-items: center;
  border: 1px solid #F8B62D;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .recruit__flow li {
    flex-direction: column;
  }
}
.recruit__flow li:not(:last-child) {
  position: relative;
}
.recruit__flow li:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 16px solid #F8B62D;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  transform: translateX(-50%);
}
.recruit__flow li .ttlArea {
  display: flex;
  align-items: center;
  gap: 0 16px;
  padding: 16px 24px;
  background-color: #FFF9F2;
  box-sizing: border-box;
  flex: 0 0 26%;
  min-height: 96px;
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 767px) {
  .recruit__flow li .ttlArea {
    width: 100%;
    min-height: auto;
    border-radius: 8px 8px 0 0;
  }
}
.recruit__flow li .ttlArea__num {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #F8B62D;
  font-size: 4rem;
  line-height: 100%;
}
.recruit__flow li .ttlArea__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 30px;
}
.recruit__flow li .txtArea {
  padding: 16px;
}
.recruit__table table {
  width: 100%;
}
.recruit__table tr {
  display: flex;
  gap: 0 24px;
  padding: 24px 0;
  border-bottom: 1px solid #D9D9D9;
}
.recruit__table th {
  font-weight: 400;
  min-width: 100px;
  text-align: left;
}

.c-catTag {
  padding: 0 16px 0 32px;
  position: relative;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-catTag {
    padding: 8px 16px 8px 24px;
    line-height: 100%;
  }
}
.c-catTag:hover:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #009A5B;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-catTag:hover:before {
    left: 10px;
  }
}
.c-catTag.selected {
  background-color: #EEF4F0;
  border-radius: 8px;
}
.c-catTag.selected:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #009A5B;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-catTag.selected:before {
    left: 10px;
  }
}

.c-newsInner:not(:first-child) {
  padding-top: 24px;
}
.c-newsInner__inner {
  display: flex;
  align-items: center;
  gap: 8px 40px;
  font-size: 1.4rem;
  line-height: 30px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #D9D9D9;
}
@media screen and (max-width: 767px) {
  .c-newsInner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
  }
}
.c-newsInner__inner:hover .c-newsInner__ttl {
  color: #009A5B;
}
.c-newsInner__inner:hover .c-newsInner__ttl:after {
  filter: brightness(0) saturate(100%) invert(34%) sepia(50%) saturate(6247%) hue-rotate(145deg) brightness(99%) contrast(101%);
}
.c-newsInner__head {
  display: flex;
  align-items: center;
  gap: 0 8px;
  min-width: 150px;
}
.c-newsInner__sticker {
  background-color: #BBE8FF;
  padding: 4px;
  border-radius: 4px;
  line-height: 140%;
}
.c-newsInner__sticker.event {
  background-color: #FFE0A8;
}
.c-newsInner__ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  padding-right: 40px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  transition: 0.3s all;
}
.c-newsInner__ttl:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.newsArchive__inner {
  display: flex;
  gap: 56px 40px;
}
@media screen and (max-width: 767px) {
  .newsArchive__inner {
    flex-direction: column;
  }
}
.newsArchive__inner .catArea {
  min-width: 140px;
}
.newsArchive__inner .catArea .ttl {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .newsArchive__inner .catArea .ttl {
    font-size: 2rem;
  }
}
.newsArchive__inner .catArea ul {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media screen and (max-width: 767px) {
  .newsArchive__inner .catArea ul {
    padding-top: 24px;
    flex-direction: initial;
  }
}
.newsArchive__inner .newsArea {
  width: 100%;
}
.newsArchive__inner .newsArea .ttl {
  font-size: 2.4rem;
  padding-bottom: 16px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .newsArchive__inner .newsArea .ttl {
    font-size: 2rem;
  }
}
.newsArchive__inner .newsArea ul {
  padding-top: 40px;
}

.navigation {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .navigation {
    padding-top: 16px;
  }
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
}
.page-numbers li .page-numbers {
  width: 32px;
  height: 32px;
  border: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1.4rem;
  line-height: 150%;
  transition: 0.3s all;
}
.page-numbers li .page-numbers:hover {
  background-color: #009A5B;
  border: 1px solid #009A5B;
  color: #fff;
}
.page-numbers li .page-numbers:hover img {
  filter: brightness(0) invert(1);
}
.page-numbers li .page-numbers.current {
  background-color: #009A5B;
  border: 1px solid #009A5B;
  color: #fff;
}
.page-numbers li .page-numbers img {
  width: 16px;
}
.page-numbers li .page-numbers.prev img {
  transform: scale(-1, 1);
}

.article__inner {
  width: 100%;
}
.article__inner article {
  padding-top: 40px;
  padding-bottom: 120px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .article__inner article {
    padding-bottom: 56px;
  }
}
.article__inner article .wp-block-image {
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.article__inner article .wp-block-image:not(:first-child) {
  padding-top: 40px;
}
.article__inner article p + p {
  padding-top: 24px;
}
.article__inner article p strong {
  font-size: 1.7rem;
}
.article__inner article p a {
  text-decoration: underline;
}
.article__inner article .wp-block-button {
  padding-top: 24px;
}
.article__inner article .wp-block-button__link {
  color: #373737;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  height: 56px;
  padding: 8px 44px 8px 24px;
  border: 1px solid #373737;
  border-radius: 999px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s all;
}
.article__inner article .wp-block-button__link:after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.article__inner article .wp-block-button__link:after {
  right: 15px;
}
.article__inner article .wp-block-button__link:hover {
  color: #fff;
  background-color: #373737;
}
.article__inner article .wp-block-button__link:hover:after {
  filter: brightness(0) invert(1);
}
.article__inner article h2 {
  font-size: 2rem;
  color: #009A5B;
  line-height: 190%;
  font-weight: 500;
  padding: 64px 0 24px;
}
.article__info {
  display: flex;
  align-items: center;
  gap: 0 16px;
  font-size: 1.4rem;
}
.article__info .cat {
  background-color: #BBE8FF;
  padding: 4px;
  border-radius: 4px;
  line-height: 140%;
}
.article__info .cat.event {
  background-color: #FFE0A8;
}
.article__ttl {
  padding-top: 40px;
  font-size: 2.4rem;
  line-height: 40px;
  font-weight: 400;
  padding-bottom: 16px;
  border-bottom: 1px dashed #009A5B;
}
.article__page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  gap: 0 120px;
}
@media screen and (max-width: 767px) {
  .article__page {
    padding-top: 56px;
    gap: 0 24px;
  }
}
.article__page a {
  display: flex;
  align-items: center;
  gap: 0 4px;
  text-decoration: underline;
  font-size: 1.6rem;
  line-height: 140%;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .article__page a {
    font-size: 1.4rem;
  }
}
.article__page a:hover {
  opacity: 0.5;
}
.article__page a img {
  width: 16px;
}
.article__page a img.prev {
  transform: scale(-1, 1);
}
.article__page .newstop a {
  padding-left: 20px;
  position: relative;
}
.article__page .newstop a:before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("/assets/image/common/ic-list.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* lp */
@media screen and (max-width: 767px) {
  .voiceSlider__button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 56px;
  }
}
.voiceSlider .swiper {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
}
.voiceSlider .swiper-slide {
  max-width: 260px;
}
@media screen and (max-width: 767px) {
  .voiceSlider .swiper-slide {
    max-width: 200px;
  }
}
.voiceSlider .swiper-pagination {
  position: static !important;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .voiceSlider .swiper-pagination {
    margin-top: 0;
  }
}
.voiceSlider .swiper-pagination span {
  width: 67px;
  height: 4px;
  border-radius: 2px;
  background-color: #C1C1C1;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .voiceSlider .swiper-pagination span {
    width: 33px;
    height: 6px;
  }
}
.voiceSlider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0075BE;
}
.voiceSlider .swiper-button-prev::after,
.voiceSlider .swiper-button-next::after {
  display: none;
}
.voiceSlider .swiper-button-prev, .voiceSlider .swiper-button-next {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .voiceSlider .swiper-button-prev, .voiceSlider .swiper-button-next {
    position: relative;
    margin-top: 0;
    width: 48px;
    height: 48px;
  }
}
.voiceSlider .swiper-button-prev {
  transform: scale(-1, 1);
}

.yb-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.yb-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  margin: 5% auto;
}
@media screen and (max-width: 767px) {
  .yb-modal-content {
    width: 90%;
  }
}

.close {
  position: absolute;
  top: -40px;
  right: 0px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */